From 886034d368751c6799aa95aaac8e198dc7512987 Mon Sep 17 00:00:00 2001 From: alek13 Date: Mon, 29 Dec 2025 04:18:57 +0300 Subject: [PATCH 01/79] `debug_tooltips`: add raw item:name and groups list in tooltips if debug is on. --- mods/lord/Game/Debug/debug_tooltips/init.lua | 36 ++++++++++++++++++++ mods/lord/Game/Debug/debug_tooltips/mod.conf | 2 ++ 2 files changed, 38 insertions(+) create mode 100644 mods/lord/Game/Debug/debug_tooltips/init.lua create mode 100644 mods/lord/Game/Debug/debug_tooltips/mod.conf diff --git a/mods/lord/Game/Debug/debug_tooltips/init.lua b/mods/lord/Game/Debug/debug_tooltips/init.lua new file mode 100644 index 000000000..51931d202 --- /dev/null +++ b/mods/lord/Game/Debug/debug_tooltips/init.lua @@ -0,0 +1,36 @@ +local colorize = core.colorize + + +minetest.mod(function(mod) + + --- @diagnostic disable-next-line: need-check-nil + local debug = core.settings:get_bool('debug', false) + if not debug then + return + end + + + local items = minetest.registered_items + + --- @param item_string string + --- @return string|nil + tt.register_snippet(function(item_string) + local groups = items[item_string].groups + + local groups_strings = {} + for group, value in pairs(groups or {}) do + groups_strings[#groups_strings + 1] = ' • ' .. group .. ': ' .. value + end + + + return '\n\n' .. colorize('#aaa', '' + .. '--------------------\n' + .. item_string + .. (#groups_strings ~= 0 + and '\ngroups:\n' .. table.concat(groups_strings, '\n') + or '' + ) + ) + end) + +end) diff --git a/mods/lord/Game/Debug/debug_tooltips/mod.conf b/mods/lord/Game/Debug/debug_tooltips/mod.conf new file mode 100644 index 000000000..4eb26ba00 --- /dev/null +++ b/mods/lord/Game/Debug/debug_tooltips/mod.conf @@ -0,0 +1,2 @@ +name = debug_tooltips +depends = builtin_ext, tt From 702cfdad50b5b61d0b80cfb06f246fd34c7fb697 Mon Sep 17 00:00:00 2001 From: alek13 Date: Tue, 6 Jan 2026 04:49:29 +0300 Subject: [PATCH 02/79] Update annotations `util/ide-helper`. LG-2048 --- util/ide-helper | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/ide-helper b/util/ide-helper index de7460713..0d406ec1d 160000 --- a/util/ide-helper +++ b/util/ide-helper @@ -1 +1 @@ -Subproject commit de74607136f28ecef916aa62acaf8775ee1d2d41 +Subproject commit 0d406ec1d318ee70b14e772023207c6d4efcee1e From 15283cd8de0ec1867fc7620959a667f9ded5a8b5 Mon Sep 17 00:00:00 2001 From: alek13 Date: Tue, 6 Jan 2026 19:28:34 +0300 Subject: [PATCH 03/79] `helpers`: move `term.lua` up from `lua_ext/`. --- mods/lord/Core/helpers/init.lua | 4 ++-- mods/lord/Core/helpers/src/{lua_ext.lua => helpers.lua} | 3 +-- mods/lord/Core/helpers/src/lua_ext/math.lua | 1 + mods/lord/Core/helpers/src/{lua_ext => }/term.lua | 0 4 files changed, 4 insertions(+), 4 deletions(-) rename mods/lord/Core/helpers/src/{lua_ext.lua => helpers.lua} (87%) rename mods/lord/Core/helpers/src/{lua_ext => }/term.lua (100%) diff --git a/mods/lord/Core/helpers/init.lua b/mods/lord/Core/helpers/init.lua index fab6c3632..62ccecd18 100644 --- a/mods/lord/Core/helpers/init.lua +++ b/mods/lord/Core/helpers/init.lua @@ -1,9 +1,9 @@ local mod_path = minetest.get_modpath(minetest.get_current_modname()) local old_require = require -require = function(name) return dofile(mod_path .. "/src/" .. name:gsub("%.", "/") .. ".lua") end +require = function(name) return dofile(mod_path .. '/src/' .. name:gsub('%.', '/') .. '.lua') end -require("lua_ext") +require('helpers') require = old_require diff --git a/mods/lord/Core/helpers/src/lua_ext.lua b/mods/lord/Core/helpers/src/helpers.lua similarity index 87% rename from mods/lord/Core/helpers/src/lua_ext.lua rename to mods/lord/Core/helpers/src/helpers.lua index 8cb5300d1..0818ebb9d 100644 --- a/mods/lord/Core/helpers/src/lua_ext.lua +++ b/mods/lord/Core/helpers/src/helpers.lua @@ -1,9 +1,8 @@ - +require('term') require('lua_ext.global') require('lua_ext.table') require('lua_ext.string') require('lua_ext.math') require('lua_ext.io') require('lua_ext.os') -require('lua_ext.term') require('lua_ext.debug') diff --git a/mods/lord/Core/helpers/src/lua_ext/math.lua b/mods/lord/Core/helpers/src/lua_ext/math.lua index c0034e5fd..792f17301 100644 --- a/mods/lord/Core/helpers/src/lua_ext/math.lua +++ b/mods/lord/Core/helpers/src/lua_ext/math.lua @@ -6,6 +6,7 @@ local math_min, math_max, math_sqrt, math_cos, math_sin --- If the number is lower than the minimum, the minimum value is returned. --- If the number is higher than the maximum, the maximum value is returned. --- +--- @overload fun(value:integer, min:integer, max:integer) --- @param value number --- @param min number --- @param max number diff --git a/mods/lord/Core/helpers/src/lua_ext/term.lua b/mods/lord/Core/helpers/src/term.lua similarity index 100% rename from mods/lord/Core/helpers/src/lua_ext/term.lua rename to mods/lord/Core/helpers/src/term.lua From 71a7ac9af74aa940abc59e48a076ae7760d36176 Mon Sep 17 00:00:00 2001 From: BadgerDwarf Date: Wed, 7 Jan 2026 22:04:17 +0300 Subject: [PATCH 04/79] New textures of wool and add source file. LG-2013 --- .../lord/_overwrites/MTG/wool/textures/wool.xcf | Bin 0 -> 9118 bytes .../MTG/wool/textures/wool_black.png | Bin 241 -> 292 bytes .../_overwrites/MTG/wool/textures/wool_blue.png | Bin 165 -> 375 bytes .../MTG/wool/textures/wool_brown.png | Bin 200 -> 361 bytes .../_overwrites/MTG/wool/textures/wool_cyan.png | Bin 235 -> 380 bytes .../MTG/wool/textures/wool_dark_green.png | Bin 226 -> 378 bytes .../MTG/wool/textures/wool_dark_grey.png | Bin 231 -> 374 bytes .../MTG/wool/textures/wool_green.png | Bin 239 -> 374 bytes .../_overwrites/MTG/wool/textures/wool_grey.png | Bin 239 -> 352 bytes .../MTG/wool/textures/wool_magenta.png | Bin 237 -> 365 bytes .../MTG/wool/textures/wool_orange.png | Bin 234 -> 375 bytes .../_overwrites/MTG/wool/textures/wool_pink.png | Bin 363 -> 365 bytes .../_overwrites/MTG/wool/textures/wool_red.png | Bin 242 -> 288 bytes .../MTG/wool/textures/wool_violet.png | Bin 231 -> 369 bytes .../MTG/wool/textures/wool_white.png | Bin 236 -> 294 bytes .../MTG/wool/textures/wool_yellow.png | Bin 232 -> 378 bytes 16 files changed, 0 insertions(+), 0 deletions(-) create mode 100644 mods/lord/_overwrites/MTG/wool/textures/wool.xcf diff --git a/mods/lord/_overwrites/MTG/wool/textures/wool.xcf b/mods/lord/_overwrites/MTG/wool/textures/wool.xcf new file mode 100644 index 0000000000000000000000000000000000000000..e612914d1ac47053c8ced1669b10059a8bb7bc00 GIT binary patch literal 9118 zcmeHNZ)_W98Mn{PpQcHdrfotB>#lA`Iy5J7a&kwVx~3JBf)Q2A#Fzr>#Xg^}weQ^X zIkD3oJ0h25~_yZqOz95*GDk0I*ewfsL=pT`V-*b0Q zdJgH@41}zSH+t^*`#$gU{_cI>JKIsUTwW|C)8gdt$fysk+a;1;2WY!9;$4|IUI{&MIQT$ZDylI(DYj zq>(ku4iRmqEsDXz0|y574SYdNXARj3is6VD93TFOzmehL@m;%u;_y>QII)U^PDeZQ zM~QCcQXwxVHC+|M!x*RBpt(w@sB4y}>B)>zKupOU?3l;;qW2dHDikX$sNz@IDlr(aAQz;ZQ zLl-{}ed4(4dT3lHCZ8$0lBMMo$5xOhm5^o1IwoT(y5(4nJR-Ddj4x*u%W`AWhMAKs zF(?-;BZx6DMnrEZS$`o@Gx~ydz&6r|t zsX}|Du_d_QRAdWKOlej|JaF)9hfp42waK#}bBZOWWJ`826hdQrOS!B#sh9-Xo`LY- z@PMf3Nh5{Zy=UOrZ+t2A%)s7Q#~62vVZDx7vMTCwPT3RuB4#~!kk$7 zRUC|sJS6_P`yGO@T_Zye%m1xMjz5$!EMss#9SldX=YXRpH$hI@O%bum(^_dy(9+WB zpjb4sdx9Cu%I_W;(hGxf%9v0Fu`GtjJ%n326pW1xE%jb@Kc36w2PtrHMaag6?%#P@ zG@jP-S4U|ZaCm#(;cMS<__~0@I}ba&>n9Fhf8F8T_PL9b_MD^l{L$f?KJD<$Nr(6T z!r^^)9Nxd*;g5gU;VWMGIH!}jbpmI^aSCe%;q3M;g0_*ocNSNi?;x^M3xY@{+h<%E z%tw2PV?>YqIgh-~BX@e_E|2^eWXjF04FctT8uTQ|i;Ii@1mEGxRO@zE{t(=K{`j^) z_O#Z&c@!2I1-I^2%EgU+(A)ahc-rrK(nA!_afD>cM7F3<>}r6dj?E0DyWD76)Y|Dr zEN={g3uOD3Jpt^4sr@M10b&cN7c>Q04rJ?uX-w%9yc#4azL}Av+B|LTq(@k=D*VA@0fc3yrW z*QLm_cli3BHtM#ZjT`%*chkF;-2mXvJ+ypDw$rB`e8iwwIsmEhHvc4q0PUJs@lrq~WV-v{-B-UBViw9UYWaCOyhm^6Gd zLrGsDd0Nk_9)(4Q%Z0LM>HP-*?1R{|wEqb{(CeVDt^j3AUej0onTOVIGXuG_HyzYA z{>kADR|d-ka^uqb52DxyansWNcY*vN_^T@bxyDpdGyv~yTC>jHo+b0r-X@v$42|3D zI8uF{w)qK^t67u*q;KYP^0PdB zhkuHuy}U78E|mS=uR+*{KK-;@R=+5KnGS3t|5Y@ITUY?vY+h9u61rA0~c|4Srk zELv#ptXKS&jb_H*vh_puv@Hic3X6=En{$i3GhHY9pl&(E9cKML{X*%*vllK*T4&B_ z-+B49^s$+_VrJ&T^d&8KzI3d7&XDKM&1Ed3G*hrnTBoPapHNw8vSIc}Yv)V_VH zJg4h(ug#pxt6FK=P@f++i&IlC&c1vqd7^l-Tukf7a^;idqf@24Y|WjWE}cDgJahJy zj5;?{n4Y_M@r2=y%XRR$TnCTKb?~@c2an5j@VHzDkIQxNxLn7q??WE?<3TX~F(FX@ zLkPxC{dXYntN&jG>VuAv5!xvaJ4PsmpKT;J^D!b&f%n_iH}A_NZTr1P=Oe>CPPTfV zgX}~2)<19`f7M^PRc2gdc$>xMxwYt)nB`XT%^#5Rm9$)49@U&J+`?f zRBxjmdjQH^zlsQGRA7Y)v#Ui(wW?6RQbPrH68O-`o(_e(LS3l&D*;r!fSOTz)Gu92 zM5FO|G$BRf3A*446BE`Z|Bt{opp@Ivs z#jp^&9tlfQI83f^SVAnxkys$&kD+($W&{q2ys%1P0SWI?Zz+ua3&;|P-HT9fxbDzM z6c>>Ekz2?`3XLcs_6B8ehPUgn%@IMmje6_>D0l2CBA`)$VJgh779~X_A$BE#3hX5C zp_4rw3U`H=5b=itsCof4`z80}pe@j0|Gup%YL>Ka5_T74t7zK4{*rCY@a|#a{8mga zAkN$JESY`$6I=|k{c_Oh3(rH|0b1kA^wE>$L6Sk#=+`2aLy&twt%W51WdMSYUKFX3 zhkj&RXaC}F|AUH;9Jmno9~$a(fr$&&s@H6`TYE^=6{R7-$8rn@QO{IW#c)3&Ff X@Kh)b+V+hW>xAyY literal 0 HcmV?d00001 diff --git a/mods/lord/_overwrites/MTG/wool/textures/wool_black.png b/mods/lord/_overwrites/MTG/wool/textures/wool_black.png index 3d4640fbd328da52e3593e63e4cef177bd803280..e4e04f0f99f7d9d26c7951f319cfbfe3b5ae6edf 100644 GIT binary patch literal 292 zcmV+<0o(qGP)W=viQF5;bWzguytJ{J`97m zZR^{%`F-Ev+c=It0APanBE7CFV&8|T;Y*E?=(;W(83mA$0|?f`kGLECvq0X&N_}Bu@aCAz)biqvG2F7%7Pv zAW{7az+6N~F+N3_lX8Xw0S4oDkn%M|wabh!Vxi#Qp0hi#Y|q)9ShnZvPAuDVb|;qY qIlB|f_MF{`WqZ!<#IikSck%)U6K6Q6%K;hy0000(Bx_C^U9?{x=!$iwpN|wsazs#u_(}Ckut~E&<)pbwa>VF z>qYrI#vo(i8~t&LGUcid?d=SExOW?Hvl*x?mk_C9c8oJr@fVQ0zv1K)`^?0kqtQEj nRK463v+g}tI4yT&QK0>#Jg+7Zq0omw7c+Re`njxgN@xNA9m7@T diff --git a/mods/lord/_overwrites/MTG/wool/textures/wool_blue.png b/mods/lord/_overwrites/MTG/wool/textures/wool_blue.png index 4753a68a51236b61f6b018ae9fa62c6392814d5e..eca0365f2ec8aefa195cb243e186370220a148de 100644 GIT binary patch literal 375 zcmV--0f_#IP)$3fii!Ak7JW6#)<+L0E6H!b=x zY^KHX+ zJf524za-FdDx2`{0KisI6M{pS~y6v&m`Ar!p<10)e zWmQtWLm>Y%b^g@LM6}8fg(BHQ{*dbJ3^vYGhE9W8&Dn{)i8%xSPl{)c(8BK4CKG-| zv?TKf?=%DE6#koYv?mhHIocD6<{a&bM01YzM4~xIdm_=Cqdk#m&e5JoH0NkfegI^? Vhv??T7^MIJ002ovPDHLkV1k~HtU3Sy literal 165 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnL3?x0byx0z;*aCb)Tv^4+S;dO&_qHAcibQ$3 zIEHXsPfkckVPIqxczA$;QAeSPd8#Ob(v|}{j0zVwG$pb+FJNe9U>5h#R`$>q582J! z%*GxN+{4k#!ORY1a4-kRvfpWA6DVYG(P4<>*(}QVz-y)nLo*-8ylq!k$^va+@O1Ta JS?83{1OOx$DC+pkga7|A&Nq?rjXX^4CNt^obfWVE*+(T?4Q2O* z?6vfmbA2qk8pxhbQhp{o?a3y)vgfI6y_8j5nHGK7!&vrGdO_Xu7=YW6?0eyb%YE7V z+=-}JjT}@cn6@2&1Yba4=8ggYF9)8xEByO7aRPzb9LnZ-Sr~Wz{)#vMJoY}6H;^J$TvejmZq}C%G8nQ` t5?(QAT63i_wemHnh-WnTBo-zxFm&t?dDgaTQVIz1l?a4b$_`~0AP^5c@JGyKX4)SxIgX}}_#sN{B=`DWTRP`K zH$G}zos>FwsC50cw%BsFrS`5%9X?k&daE@X7rL~c>+q%0?eCec92Y7i2aoAv@21r3 zB*g&q?@HbJn%c+qS>MZoS=uw4H>Rkik18Hj+| zy$sqqDvV+0XQrE<(>Vb7_GvNyge;S?mz!h(1y;OZaYi4kR0IfG`9w9mZ*mK}zbcCn z$;ylRL1%#s8)k8C9p+XgZ;${8XEPDj#w0G92l!%ulf+1j3@T*thC4CS#z`mUnVHdx zETY3e+?d$N#UmC~Sr`86vo|N=_1T*f@%rq|iFkeX=0v{8pvVGG z7sn8e>!N4Yave&LaCrDRPe*djqg{b}*bcK>t(n&EdeB-xd7m9#F*9H@ zV`^Wk-f@Pf=VWK3Mn8$-SaVuHQjBY73gf0#OdnQDq_5(aDBQH%bW`g$O`{7hcRI^l j-~VNP=s)2ti+?a)d1uTSnAH6r=vD?#S3j3^P6@1;upo=dF4FCqVxD;N$=8CX8%H@@2t?hyL#=u zsWY}#ti85BMB4WE-`!E)4I+!xZ@zHNeY`wzZl=*oxynb2Z=G7L9`kc~^OR(Uw(_jk z_fU&ZFKuYJWgVXVemT#E zpSL%B4F7qhnBkpx-~Y)O+-{$5pZjufQ!zmE#HIEPRd6u(0Hz+6e`F%v0{b2iTY9{Zm}0G(UIEaTxxqb85zEG zRvfu$WbZt=CCX(|NA~Q*sj)Mj7MrLG{ggS|>0;+ztTgfb#W@~NphBM45~jiU^>h2X VmpW?MCIiEi!PC{xWt~$(697_ds9yj8 literal 226 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnL3?x0byx0z;*aCb)T#XZ$jbfQ)|Ard@MW%bY zIEHXsSMA%&dB{QLX#GTyNp9UsHe0Oe%SljHw>TgwIQtHtxkF2WXpn{T2CjByi-x`l ztU;-5A^)0>{%&A@Z|ldNzhHKjff|!Y&bdXM58lghnwobje)+-^8X|P>3{Tzb6V_`B zr*Y>-YoFpdz2%wf*29L`eIhHDFc#T)zbsz3{*7UgylaqubJ&rTR+rzYR{Ks(4*k!( Y=#xSzkM)MrKqoSIy85}Sb4q9e0NdSC-v9sr diff --git a/mods/lord/_overwrites/MTG/wool/textures/wool_dark_grey.png b/mods/lord/_overwrites/MTG/wool/textures/wool_dark_grey.png index 1e1e195323f33827fe54b92264382e0f11c98355..4da9d700fcde5a06f068999aa1076f9aacf5d372 100644 GIT binary patch literal 374 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4(FKV6^pgaSXBWZ=G~{-5~=Wm%o)9 zE`qvKn3nG0>Tqvd#clTI_k!e=<&}FogseaI7$<9YIjz6$z5A};@yCJRf8R|G3k|)M zW40?sugXSl*4Z?vUbkIw>wneQd0h@Mn}5F4YHrEyyL%K)8}&0<$nd?|b&gxSyLI0A z<-&oR@4uJ5GVS!zNh*a5LT?%loRMW^n3np|(&6U$=bPvAUb&jJ^kvDaWtm_8)?MAU z*8bJ!%6b1qFRIG&wmV-f)m%>M_y+#5cGcfDW>vr;yf;7L(fdp+CzUf%Y7 z0>WlTno^BsS_tGbG)&pt&7r+WK}h^>^T&!e2^)fX{A!x{3cJehNHQ|~5&qb5QOVml zeZd0piAs;Y|9;DzQ2x+<{$k6GC!S~c>3p)BCEQ)p_w0xghR_rC9m{2(cC>|s0>hKR M)78&qol`;+0D}mpRsaA1 literal 231 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnL3?x0byx0z;*aCb)T+`ChGBPr5*SviW6q)1c z;uyklJvksDVL~EDX{t`bkEKWdc0cr9@jtwcHR^S|p+!rZe|p4$FWIKd%#Y>E*w~iI zd-3p`sb^_8VyvdXm||dH-pC>DwqOz~4-X$ttAn1iD?9VzWZnrE|14+J_#Yn7R7x35WB%}~h^?FVdQ&MBb@0F5zDAOHXW diff --git a/mods/lord/_overwrites/MTG/wool/textures/wool_green.png b/mods/lord/_overwrites/MTG/wool/textures/wool_green.png index 1655d229458dcc90535190ce8942bad5fd676eea..64fbbb49c0726f571ec3f6d0ed8bf5141969161b 100644 GIT binary patch literal 374 zcmV-+0g3*JP)Gt9hR&1BEz+65hlG0P3W9-01~pWRfs$ zVwRVCGW3P2kqiI%9LR literal 239 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnL3?x0byx0z;*aCb)TvPTlB<^DPys9S|D6+)U z#W95AI_tr;T!#V}8ZN&7#cVYB#UcqEyXI349~i}AZf}s%O$s#csh(um9NJdVte+sb z_^8RjCl1HT);}-M->m)Hf`5hYG$!RfsV~dSOqAKa$RsL5#|lKuOh zMOLVW6`q<|Z=IbYwCu;-Us9%PG`48lT$#yzG~$Pb#7Bm96ArPIKHJB_az$~v<=!1% mkELuqyg-++*iXj$FZ**x+b27&=6C|#%i!ti=d#Wzp$Pyk3|sO5 diff --git a/mods/lord/_overwrites/MTG/wool/textures/wool_grey.png b/mods/lord/_overwrites/MTG/wool/textures/wool_grey.png index 3cf1c863f631135c938c576481cf17c016d549f0..36895cd56ebb694d9157797e5811ab5742cf9493 100644 GIT binary patch literal 352 zcmV-m0iXVfP)>A4*WE37Rl-GG9c&h+OPq+-|zbQe6;I29fm>Q@3-kl z+qT*?jn4C|%d%)u6q+Q7zFsdqjzhC7Q^7cnqa_lY=eg+sJfBb9_uUf9veb25tq?js zK!py{G&KMWynq0Pj|2egx;9(i_x4WHWFP`+RaJVuUJc+pPyK$s7W8;L%znGweo4?W zDsf_z1r(}M4dD+zssacITuGuE;)%l+MUhGz$JPNA2nfTZ8pGm$xm+vv()r?b*8%@%HT9 yiFkYV?nJyjdv_w0QM(N8UqrW%|gq%CS}Ylt4fA;<6)+FUfHu_uw+ z&>9gs)YMc%FHulS5{TWubGZM?6KhqaG;Yf#EtT20XRl3HF~Ic=k3yRna_13>g>LGe=NrCx1laLY;#(+j;;1002ovPDHLkV1l=GVW0p2 diff --git a/mods/lord/_overwrites/MTG/wool/textures/wool_magenta.png b/mods/lord/_overwrites/MTG/wool/textures/wool_magenta.png index ec6c3d46c067b0ac820b0115cd0b3cf29cfff0a4..de41c472b413ff5c7659ea2d0f514ccec0b85001 100644 GIT binary patch literal 365 zcmV-z0h0cSP)+fw^| zV{fe5*2VV;4Ow5=C!16IOA1sYk@Bt#A5=;Y~KK%cFUiI?UO#t}w zWik~pmW^`z9e_&}qY}EJ1;#(~*;s)QAlV|aBG`~W`l6dJ6_5sc`5;;_Xtuk`#G*@j zcbamD0b+U~B3%&$kqC?l$^2+wbRBhK4AUwYImCnq0L%%^LCn_vp~-s`aU2(oFnqR! z|Mu+NiFkYV?nJyjdv_woD6+`Y z#W95AI_p70zJmcW2Oi$fzC0nyqojzLnLS}eM+9$NkKe_>sEsCK;R4&Fs@Me06~Y9A zRn;!B)Yjj3zg)EY%ogEKxodgyZBOnj3wpTp=^;}?&3#&G7yhXl7=%VhaIY_6dc*tU z+l9o~$|FCT4=C@dO}er%V1uc2NPN`|cHxCZof_RL6_-CW&0b=ib@0Z*k9VS2Hm#qW kdfGC5=kJb`1z$VtZ|$<mdKI;Vst03sAz+W-In diff --git a/mods/lord/_overwrites/MTG/wool/textures/wool_orange.png b/mods/lord/_overwrites/MTG/wool/textures/wool_orange.png index 7f75eb488122e52fc7275426049c85ff83c54182..16e899f518b1dd981faf60d9e4a1415d056e62df 100644 GIT binary patch literal 375 zcmV--0f_#IP){?B2~~(Lv0%d)2Y=6r*x`lsp8eZ1<6=6Vl-}#o zbw#?Jlb)Bu$1Z22i?Z~%Aia3JH70EhNKcE>_qwz{DpT8o_cbqE@?8;$=8~`b>!iMorf3Ttmkb_bbp@z1|BevP+0L^~sY&!bCnhj%^ zurVxW(e7}lB!?Ct<-ZsrXzlKhc<3c;4+a>ls9;XCfkHNg5`VM80f0Uk9zL@`B1S=P zh!o*})Wcj=DEMd3*_~Ln=j=`_+jDj&mhCya6U+9T-HBy;&hEsrJ!f}f*`BjI`2~wE V)5qM!9~A%q002ovPDHLkV1i1NricIl literal 234 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnL3?x0byx0z;*aCb)T>npW`ajM4Nhog(P-MQR zi(?4Kb>1^;xef&|G+cb2r}Mk{wcE^_X*(7i&f2N-i>E2+jtOrq!|RAS59T=@ahE7- z?l`G*=-)bRbvZVJw6{^(T+2g0hu-Ty;mK`xYQON?*CLu){B5Z`VK>=6XPTVJywPZq zE>>H}HR0W*Hg`Ftyr~VjvdU^xkL-EIn6#MrLuu3A0QVjh+Y2+dvED7tF*v1Xd(ZQ8 hs#S~AeutZr>{Y@|%0d`!wgR2X;OXk;vd$@?2>?eUTpj=b diff --git a/mods/lord/_overwrites/MTG/wool/textures/wool_pink.png b/mods/lord/_overwrites/MTG/wool/textures/wool_pink.png index aacf9345fcc6387ef52f47306f9c0d1136b6d979..42542b60488327d553503987c2b237a7d88425d8 100644 GIT binary patch literal 365 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4(FKU^MY`aSXBWZ=H13kI7M><#%hZ zTe5&@(+;N7N+;Iqc!~7RuK4gkc-m**_KMB?lV{GGxo*|FtjkZ_e%+rPn^c?s*@c=5uxGmp=-7b(cKdYm!yXb70w&eP#1FE*`(t zd7@G(E#UGNWzlp#25xHwgU@bE4WF&|uXf+J-^Zvi^~%k)CK;B8{gq9l|9`ph_4miG z@j|H!S5)id9_M7x+@Lh^=*(XUu7V0rTh$k~Z3;LR`&@&u!Q_4A-vyg9)N)L;H?F9E zr}fjBb3)NM-bD zx2|7uD)z_m=NW!FpDbqych~eiJEAmyvE{}S7(zc;FPll7H=S%O3=BpFPgg&ebxsLQ E09>c0T>t<8 literal 363 zcmV-x0hIoUP)1GztNTBH{ zKWnr~uxUaxJ$naB7Y-{Qd$1#-k1~zG`mSU8%!CMvuyWFkA!Y8hEJuNJ-Mg^D2z@tA z{O4RD)Q{Ix1RQ;t{v9bffZ+T`baWTLQWnf}>+884PghHV%t~{Ut>=5V)2(dk2gpJD zu4UA|kcMwh=hat^`KOgM*`7oc#_@FPfFsLZ?1sr0!ZF!2JB%@yvo)_g+%JU~>R^Rr z;Ttt26*|4ki8Wjb7>w<=ck>KY+Ssla1qWclaAk@ytw?Ac{R7j8mD)h(`)2?E002ov JPDHLkV1jc7qB;No diff --git a/mods/lord/_overwrites/MTG/wool/textures/wool_red.png b/mods/lord/_overwrites/MTG/wool/textures/wool_red.png index f9f8d5337182d1f5ff93b4a372852f2a7eee18d3..c4eeea0060f50c867151e9f70323b57d9b225009 100644 GIT binary patch literal 288 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`&pllnLo9k*C!OYNa^P|O{l8w( z&QU|u--XGn)zUNfdym@p++j#rjdr`UHYCBZUC8fRpvPd-iocBgC^N(WHiBsDG zeHJ~w)Nw!|ZjS8HxelV6yQ3B-b{{wsBee73qZ9jFuRQ0@F1{-K^2aabdEAY*f}a=9 zV_-crtt0C2k^gQ+MH89(g#tg{JjKdo^djKB=CjtMofq;7(;Zfvc3tE7aYx64&uklA zj_BS$vGvsV9Jd8ZXJbWY+ztmvuZm?WVxq{ zV+hA})`N!JjEM{l55E^I-5ij2g;#7hujW(sIiGS1K;UiOC(!$kA3yh?U0Gz zD6&Atc%{`}#s@9s%@SwI^$Zeb-#k$o(fPM8NFd>g@UpF^7sRc2HG7*~#vdjh*MAc> z?pLZm&879_MVo1&W?HHKo|Wg5x2h9!q-7w2{B1ulzTeum{REBD4bKAU$& zrezukXm#t)xbi$>QDnE;&qWmhi}eqj$r61xxqHn8zsSz_1qlrQFP|-b6Za!$rk=*E y7fQ$9zd5pLRl!61`I{{jKU>ZgHp0o6EYEE6$9Dd$&c(o>WbkzLb6Mw<&;$Ts*r6)` literal 231 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnL3?x0byx0z;*aCb)T&FXXOkyZ_e|l>yP-Kp$ zi(?4KbHM{%C&1%975hu%oFtPd5_k9wgM`tba(!=I;4 zNlD^)s$3{D`&K}Yl6Q8-${??Mho&fn9&|ePSKhWo--^T5Y@YOI(dZt7gcmOiEm`Gt c4XSnRqh4!HT+fhk1L#f$Pgg&ebxsLQ0AONLJOBUy diff --git a/mods/lord/_overwrites/MTG/wool/textures/wool_white.png b/mods/lord/_overwrites/MTG/wool/textures/wool_white.png index c65488580e05e920e5cf920e9731526ed3afd26a..292625a3aef710dd7d3957d67a605b92dae68bfa 100644 GIT binary patch literal 294 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`Z#`WcLo9k*Cwca<8ge-A{C_ZO zp8M6zA5|XjQmX}3Ego3Rn6XTA{p(Yykwv$+*__{;l=#`^`M&q9{D&vx-hNgn^K)PR zx7zuP9*PPlyA&g?o6di(nIm&tsd35->qicb*GpX)4)`&p-0_q&>~<?>j;ORQQl$^eHDt+yedFS-a;eek`kE&?Z+z2!07_NVxZ=UtEn16Rp3vR|AhD-KY VoF^Y&odfhZgQu&X%Q~loCIE5xg+~AY literal 236 zcmVFI7zdTamy0HH}lK~xCW4a^}9f?ybc;rD})4B{r;XtG(Hfz2_ig%K@Yz@o{CCZ-3l zG9ra5=$uDj8kxx%G%1@3zmz9Fw4u+!F=l)_^^%wC7mK}S$(P6L#}S%S|k3|RyMXd%nLmL0000KNr-3EjA>o;PE5o#pSBgr_?yufu%*430LtSn8+Ie5MS6^RO zcb7RP(vH8!IXG48aPXqV4BG-48N<>JK0Nn3!BtQ}W6{ZHA`yXZdD5~gj$BNfV7~Et z_{puZZJg4Fn^a@x&+^KuU~;&V+p)n&r0t6JMR5ahW}fm8fzLgOVHywT&#+}PFpE5L zX3=!pO>K!CCW7T(FY&E9)B3;W+cy`R`Fm{z&!^}6ANhRqw(v&`p~?39pMCqC>$$WH P7^V!Ku6{1-oD!M<+cKmu literal 232 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnL3?x0byx0z;*aCb)T))0%`2C4NLH)*3pvYWL z7sn8e>!LmDxef)$xSh}6lvLQ1&9->WZFZ|Q(@rmXAk8srd6@ixD#LpZ<|Q6Xk`J5A zktX=zopr09&bG@Bjb+ From 419730f4863ad36853dc38a3221aa4514459a4e0 Mon Sep 17 00:00:00 2001 From: alek13 Date: Thu, 8 Jan 2026 01:19:06 +0300 Subject: [PATCH 05/79] Gen.Library: Extend `VoxelArea`: add `:set_data[_param2|light]()`, `:foreach()`, `:set_node_at()`, `:fill_with()` & `:place_pile()`. LG-2049 --- .luacheckrc | 6 +- mods/lord/Core/builtin_ext/init.lua | 1 + .../Core/builtin_ext/src/map/VoxelArea.lua | 135 ++++++++++++++++++ .../builtin_ext/src/map/manipulations.lua | 21 +-- 4 files changed, 153 insertions(+), 10 deletions(-) create mode 100644 mods/lord/Core/builtin_ext/src/map/VoxelArea.lua diff --git a/.luacheckrc b/.luacheckrc index bf14c6a82..2659409f7 100644 --- a/.luacheckrc +++ b/.luacheckrc @@ -102,8 +102,12 @@ exclude_files = { -- Don't report on legacy definitions of globals. files["mods/_minetest_game/default/legacy.lua"].global = false +-- Extend built-in globals only in specific files: +files["mods/lord/Core/builtin_ext/src/**/*.lua"] = { + globals = { "VoxelArea", }, +} --- Lua extending: +-- Lua extending only in specific files: files["mods/lord/Core/helpers/src/lua_ext/**/*.lua"] = { globals = { "table", "string", "math", "io", "os", "debug" } } diff --git a/mods/lord/Core/builtin_ext/init.lua b/mods/lord/Core/builtin_ext/init.lua index 462f4da3f..a9f233446 100644 --- a/mods/lord/Core/builtin_ext/init.lua +++ b/mods/lord/Core/builtin_ext/init.lua @@ -4,6 +4,7 @@ local old_require = require require = function(name) return dofile(mod_path .. DS .. 'src' .. DS .. name:gsub('%.', DS) .. '.lua') end +require('map.VoxelArea') require('map.manipulations') require('map.dungeons_gen') require('FormSpec') diff --git a/mods/lord/Core/builtin_ext/src/map/VoxelArea.lua b/mods/lord/Core/builtin_ext/src/map/VoxelArea.lua new file mode 100644 index 000000000..58a8cb0e6 --- /dev/null +++ b/mods/lord/Core/builtin_ext/src/map/VoxelArea.lua @@ -0,0 +1,135 @@ +local type, math_random, v, id + = type, math.random, vector.new, core.get_content_id + + +local id_air = id('air') + +--- @param data integer[] +function VoxelArea:set_data(data) + self.data = data +end + +--- @param data_param2 integer[] +function VoxelArea:set_data_param2(data_param2) + self.data_param2 = data_param2 +end + +--- @param data_light integer[] +function VoxelArea:set_data_light(data_light) + self.data_light = data_light +end + +--- Iterate over positions in area. +--- Use `data[i]` to set/get node at position. +--- Usage: +--- ```lua +--- vox_area:foreach(function(i, data, data_param2, data_light) +--- data[i] = id('default:stone') -- id('default:stone') <==> core.get_content_id('default:stone') +--- end) +--- ``` +--- Note: use preloaded ids for better performance. +--- +--- @overload fun(callback: fun(i:integer, data:integer[], data_param2:integer[], data_light:integer[])):self +--- @param from Position +--- @param to Position +--- @param callback fun(i:integer, data:integer[], data_param2:integer[], data_light:integer[]) +--- @return self +function VoxelArea:foreach(from, to, callback) + if type(from) == 'function' then + callback = from + from = self.MinEdge + to = self.MaxEdge + end + + local data = self.data + for i in self:iterp(from, to) do + callback(i, data) + end + + return self +end + +--- Sets the node at the specified position to the given node ID. +--- Preloaded node IDs are recommended for better performance; use `core.get_content_id(name)` to preload. +--- @param position Position +--- @param node_id integer +--- +--- @return self +function VoxelArea:set_node_at(position, node_id, param2, light) + local i = self:indexp(position) + self.data[i] = node_id + if param2 then self.data_param2[i] = param2 end + if light then self.data_light [i] = light end + + return self +end + +--- Sets all nodes in the specified area to the given node ID or random IDs. +--- @param node_id integer|integer[] if is array of integers, than area part wil be filled with random nodes from it. +--- @param from? Position +--- @param to? Position +--- +--- @return self +function VoxelArea:fill_with(node_id, from, to) + from = from or self.MinEdge + to = to or self.MaxEdge + local data = self.data + + local is_random = type(node_id) == 'table' + if is_random then + local nodes_count = #node_id + for i in self:iterp(from, to) do + data[i] = node_id[math_random(nodes_count)] + end + else + for i in self:iterp(from, to) do + data[i] = node_id + end + end + + return self +end + +--- Places a pile of nodes randomly within the specified area in cuboid [from, to]. +--- @param node_id integer|integer[] if is array, random nodes will be placed. +--- @param from? Position position from which to start placing pile. +--- @param to? Position position to which to place pile. +--- @param param2? integer|integer[] if is array, random param2 will be set. +--- @return self +function VoxelArea:place_pile(node_id, from, to, param2) + from = from or self.MinEdge + to = to or self.MaxEdge + + local data = self.data + + local is_random = type(node_id) == 'table' + local is_random_param2 = type(param2) == 'table' + local nodes_count = is_random and #node_id or 0 + local param2_count = is_random_param2 and #param2 or 0 + + self:foreach(from, to, function(i) + + local pos = self:position(i) + -- place above, only if below is not air + local below_i = self:indexp(v(pos) - v(0, 1, 0)) + local is_below_inside = self:containsi(below_i) + if + ( + not is_below_inside + or (is_below_inside and data[below_i] ~= id_air) + ) + and math_random() <= 0.5 + then + data[i] = is_random + and node_id[math_random(nodes_count)] + or node_id--[[@as integer]] + if param2 then + self.data_param2[i] = is_random_param2 + and param2[math_random(param2_count)] + or param2--[[@as integer]] + end + end + end) + + return self +end diff --git a/mods/lord/Core/builtin_ext/src/map/manipulations.lua b/mods/lord/Core/builtin_ext/src/map/manipulations.lua index f012b3dda..9052099f0 100644 --- a/mods/lord/Core/builtin_ext/src/map/manipulations.lua +++ b/mods/lord/Core/builtin_ext/src/map/manipulations.lua @@ -1,28 +1,31 @@ --- @param pos1 Position min position of loaded part of map. --- @param pos2 Position max position of loaded part of map. ---- @param callback fun(area:VoxelArea,data:number[],param2_data:number[],light_data:number[]) ---- @param is_on_mapgen? boolean this function is called inside "on_generated()" callbacks. +--- @param callback fun(area: VoxelArea, data:integer[], param2_data:integer[], light_data:integer[]) +--- @param is_on_mapgen? boolean this function is called inside 'on_generated()' callbacks. --- @param with_param2? boolean also load param2 data & pass in specified `callback()` function as `param2_data` arg.. --- @param with_light? boolean also load light data & pass in specified `callback()` function as `light_data` arg.. -function minetest.with_map_part_do(pos1, pos2, callback, is_on_mapgen, with_param2, with_light) +function core.with_map_part_do(pos1, pos2, callback, is_on_mapgen, with_param2, with_light) is_on_mapgen = is_on_mapgen or false --- @type VoxelManip, Position, Position local voxel_manipulator, e_min, e_max if is_on_mapgen then - voxel_manipulator, e_min, e_max = minetest.get_mapgen_object("voxelmanip") + voxel_manipulator, e_min, e_max = core.get_mapgen_object('voxelmanip') else - voxel_manipulator = minetest.get_voxel_manip() + voxel_manipulator = core.get_voxel_manip() e_min, e_max = voxel_manipulator:read_from_map(pos1, pos2) end local area = VoxelArea:new({ MinEdge = e_min, MaxEdge = e_max }) - --- @type number[], number[], number[] + --- @type integer[], integer[], integer[] local data, param2_data, light_data + data = voxel_manipulator:get_data() - if with_param2 then param2_data = voxel_manipulator:get_param2_data() end - if with_light then light_data = voxel_manipulator:get_light_data() end + area:set_data(data) + + if with_param2 then param2_data = voxel_manipulator:get_param2_data(); area:set_data_param2(param2_data) end + if with_light then light_data = voxel_manipulator:get_light_data() ; area:set_data_light(light_data) end callback(area, data, param2_data, light_data) @@ -31,7 +34,7 @@ function minetest.with_map_part_do(pos1, pos2, callback, is_on_mapgen, with_para voxel_manipulator:set_data(data) if with_param2 then voxel_manipulator:set_param2_data(param2_data) end if with_light then voxel_manipulator:set_light_data(light_data) end - voxel_manipulator:set_lighting({ day =0, night =0}) + voxel_manipulator:set_lighting({ day = 0, night = 0 }) voxel_manipulator:calc_lighting() voxel_manipulator:write_to_map(true) end From 52e5e600d3c73c98d33d18d3b4966f2b7a698121 Mon Sep 17 00:00:00 2001 From: alek13 Date: Thu, 8 Jan 2026 18:16:38 +0300 Subject: [PATCH 06/79] Gen.Library: Extend `VoxelArea`: improve `:place_pile()`: add peak and fillnes. LG-2049 --- .../Core/builtin_ext/src/map/VoxelArea.lua | 62 ++++++++++++++----- 1 file changed, 48 insertions(+), 14 deletions(-) diff --git a/mods/lord/Core/builtin_ext/src/map/VoxelArea.lua b/mods/lord/Core/builtin_ext/src/map/VoxelArea.lua index 58a8cb0e6..6a0886e3c 100644 --- a/mods/lord/Core/builtin_ext/src/map/VoxelArea.lua +++ b/mods/lord/Core/builtin_ext/src/map/VoxelArea.lua @@ -1,5 +1,5 @@ -local type, math_random, v, id - = type, math.random, vector.new, core.get_content_id +local type, math_floor, math_random, math_is_among, vector_sort, v, id + = type, math.floor, math.random, math.is_among, vector.sort, vector.new, core.get_content_id local id_air = id('air') @@ -91,14 +91,35 @@ function VoxelArea:fill_with(node_id, from, to) end --- Places a pile of nodes randomly within the specified area in cuboid [from, to]. ---- @param node_id integer|integer[] if is array, random nodes will be placed. ---- @param from? Position position from which to start placing pile. ---- @param to? Position position to which to place pile. ---- @param param2? integer|integer[] if is array, random param2 will be set. +--- Nodes are only placed above non-air nodes, with a 50% chance at each valid position. +--- Note: Preloaded node IDs are recommended for better performance; use `core.get_content_id(name)` to preload. +--- Cubaoid [from, to] is inclusive and will be sorted automatically. +--- +--- @param node_id integer|integer[] if is array, random nodes will be placed. +--- @param from? Position position from which to start placing pile. +--- @param to? Position position to which to place pile. +--- @param peak? Position peak position of the pile. +--- @param fillness? number fillness of the pile, 0..1 (default is 0.75). +--- @param param2? integer|integer[] if is array, random param2 will be set. +--- --- @return self -function VoxelArea:place_pile(node_id, from, to, param2) - from = from or self.MinEdge - to = to or self.MaxEdge +function VoxelArea:place_pile(node_id, from, to, peak, fillness, param2) + from = from or self.MinEdge + to = to or self.MaxEdge + fillness = fillness or 0.75 + from, to = vector_sort(from, to) + + peak = peak or v( + math_floor((from.x + to.x) / 2), + to.y, + math_floor((from.z + to.z) / 2) + ) + local height = to.y - from.y + 1 + -- Deltas from peak to sides of base of pile (pyramid) + local peak_from_dx = peak.x - from.x + local peak_from_dz = peak.z - from.z + local peak_to_dx = to.x - peak.x + local peak_to_dz = to.z - peak.z local data = self.data @@ -110,15 +131,28 @@ function VoxelArea:place_pile(node_id, from, to, param2) self:foreach(from, to, function(i) local pos = self:position(i) + -- place above, only if below is not air local below_i = self:indexp(v(pos) - v(0, 1, 0)) local is_below_inside = self:containsi(below_i) + if not ( + not is_below_inside + or (is_below_inside and data[below_i] ~= id_air) + ) then + return + end + + local layer = pos.y - from.y -- 0..height-1 + + local layer_from_dx = from.x + peak_from_dx * layer / height + local layer_to_dx = to.x - peak_to_dx * layer / height + local layer_from_dz = from.z + peak_from_dz * layer / height + local layer_to_dz = to.z - peak_to_dz * layer / height + if - ( - not is_below_inside - or (is_below_inside and data[below_i] ~= id_air) - ) - and math_random() <= 0.5 + math_is_among(pos.x, layer_from_dx, layer_to_dx) and + math_is_among(pos.z, layer_from_dz, layer_to_dz) and + math_random() <= fillness then data[i] = is_random and node_id[math_random(nodes_count)] From 54a24c4859820f2e6038450f3801621ee1673851 Mon Sep 17 00:00:00 2001 From: alek13 Date: Sat, 10 Jan 2026 03:42:41 +0300 Subject: [PATCH 07/79] Gen.Library: extend `vector`: add `:at_{north|south|east|west}()` & `:{above|under}()` helpers. Relates to LG-2049 --- .luacheckrc | 2 +- mods/lord/Core/builtin_ext/init.lua | 1 + mods/lord/Core/builtin_ext/src/vector.lua | 30 +++++++++++++++++++++++ 3 files changed, 32 insertions(+), 1 deletion(-) create mode 100644 mods/lord/Core/builtin_ext/src/vector.lua diff --git a/.luacheckrc b/.luacheckrc index 2659409f7..265d22fd1 100644 --- a/.luacheckrc +++ b/.luacheckrc @@ -104,7 +104,7 @@ files["mods/_minetest_game/default/legacy.lua"].global = false -- Extend built-in globals only in specific files: files["mods/lord/Core/builtin_ext/src/**/*.lua"] = { - globals = { "VoxelArea", }, + globals = { "VoxelArea", "vector" }, } -- Lua extending only in specific files: diff --git a/mods/lord/Core/builtin_ext/init.lua b/mods/lord/Core/builtin_ext/init.lua index a9f233446..81ef09f78 100644 --- a/mods/lord/Core/builtin_ext/init.lua +++ b/mods/lord/Core/builtin_ext/init.lua @@ -15,6 +15,7 @@ require('stack') require('craft') require('Texture') require('Tile') +require('vector') require = old_require diff --git a/mods/lord/Core/builtin_ext/src/vector.lua b/mods/lord/Core/builtin_ext/src/vector.lua new file mode 100644 index 000000000..7c4f95277 --- /dev/null +++ b/mods/lord/Core/builtin_ext/src/vector.lua @@ -0,0 +1,30 @@ + +--- @return vector +function vector:above() + return self:offset(0, 1, 0) +end + +--- @return vector +function vector:under() + return self:offset(0, -1, 0) +end + +--- @return vector +function vector:at_north() + return self:offset(0, 0, 1) +end + +--- @return vector +function vector:at_south() + return self:offset(0, 0, -1) +end + +--- @return vector +function vector:at_east() + return self:offset(1, 0, 0) +end + +--- @return vector +function vector:at_west() + return self:offset(-1, 0, 0) +end From b2e9587d7748d6c5b5083572ec0714f584df16b6 Mon Sep 17 00:00:00 2001 From: alek13 Date: Sat, 10 Jan 2026 03:53:10 +0300 Subject: [PATCH 08/79] Gen.Library: Extend `VoxelArea`: add `:content_of()`, `:is[_not]()`, `:fill_with()` can take `chance` arg, abbility to break `:foreach()`, improve `:place_pile()` readability. LG-2049. --- .../Core/builtin_ext/src/map/VoxelArea.lua | 117 ++++++++++++++---- 1 file changed, 90 insertions(+), 27 deletions(-) diff --git a/mods/lord/Core/builtin_ext/src/map/VoxelArea.lua b/mods/lord/Core/builtin_ext/src/map/VoxelArea.lua index 6a0886e3c..6ab86140d 100644 --- a/mods/lord/Core/builtin_ext/src/map/VoxelArea.lua +++ b/mods/lord/Core/builtin_ext/src/map/VoxelArea.lua @@ -25,14 +25,16 @@ end --- ```lua --- vox_area:foreach(function(i, data, data_param2, data_light) --- data[i] = id('default:stone') -- id('default:stone') <==> core.get_content_id('default:stone') +--- +--- return true -- [optional] return true if you want to break `foreach` loop --- end) --- ``` ---- Note: use preloaded ids for better performance. +--- **Note:** use preloaded ids for better performance. --- ---- @overload fun(callback: fun(i:integer, data:integer[], data_param2:integer[], data_light:integer[])):self +--- @overload fun(callback: fun(i:integer, data:integer[], data_param2:integer[], data_light:integer[]):boolean?):self --- @param from Position --- @param to Position ---- @param callback fun(i:integer, data:integer[], data_param2:integer[], data_light:integer[]) +--- @param callback fun(i:integer, data:integer[], data_param2:integer[], data_light:integer[]):boolean? --- @return self function VoxelArea:foreach(from, to, callback) if type(from) == 'function' then @@ -43,7 +45,7 @@ function VoxelArea:foreach(from, to, callback) local data = self.data for i in self:iterp(from, to) do - callback(i, data) + if callback(i, data) then break end end return self @@ -64,32 +66,98 @@ function VoxelArea:set_node_at(position, node_id, param2, light) return self end +--- Calculates the fraction of the area occupied by the specified node ID(s). +--- @param node_id table|integer if table, counts all IDs in the table. +--- @return number # content of area occupied by the node ID (0..1) +function VoxelArea:content_of(node_id) + --- @type integer[] + node_id = type(node_id) == 'table' and node_id or { node_id } + + local count = 0 + self:foreach(function(i, data, data_param2, data_light) + if table.contains(node_id, data[i]) then + count = count + 1 + end + end) + + return count / self:getVolume() +end + +--- @protected +--- @param node_id integer|integer[] +--- @param from Position +--- @param to Position +--- @param chance number +--- +--- @return self +function VoxelArea:fill_with_chance(node_id, from, to, chance) + local is_random = type(node_id) == 'table' + local nodes_count = is_random and #node_id or 0 + local data = self.data + for i in self:iterp(from, to) do + if math_random() <= chance then + data[i] = is_random + and node_id[math_random(nodes_count)] + or node_id--[[@as integer]] + end + end + + return self +end + --- Sets all nodes in the specified area to the given node ID or random IDs. --- @param node_id integer|integer[] if is array of integers, than area part wil be filled with random nodes from it. ---- @param from? Position ---- @param to? Position +--- @param from? Position position from which to start filling. +--- @param to? Position position to which to fill. +--- @param chance? number chance to fill each node (0..1), default is 1 (fill all). --- --- @return self -function VoxelArea:fill_with(node_id, from, to) - from = from or self.MinEdge - to = to or self.MaxEdge - local data = self.data +function VoxelArea:fill_with(node_id, from, to, chance) + from = from or self.MinEdge + to = to or self.MaxEdge - local is_random = type(node_id) == 'table' - if is_random then - local nodes_count = #node_id - for i in self:iterp(from, to) do - data[i] = node_id[math_random(nodes_count)] - end - else - for i in self:iterp(from, to) do - data[i] = node_id - end + if chance and chance < 1 then + return self:fill_with_chance(node_id, from, to, chance) + end + + local is_random = type(node_id) == 'table' + local nodes_count = is_random and #node_id or 0 + local data = self.data + for i in self:iterp(from, to) do + data[i] = is_random + and node_id[math_random(nodes_count)] + or node_id--[[@as integer]] end return self end +--- Checks if the node at the specified position matches the given node ID. +--- @param position vector|nil if nil, returns false. +--- @param node_id integer node ID to check against. +--- @param check_contain? boolean if true, checks if position is inside area, default is false. +--- @return boolean +function VoxelArea:is(position, node_id, check_contain) + check_contain = check_contain or false + + return position and (not check_contain or self:containsp(position)) + and self.data[self:indexp(position)] == node_id + or false +end + +--- Checks if the node at the specified position does not match the given node ID. +--- @param position vector|nil if nil, returns false. +--- @param node_id integer node ID to check against. +--- @param check_contain? boolean if true, checks if position is inside area, default is false. +--- @return boolean +function VoxelArea:is_not(position, node_id, check_contain) + check_contain = check_contain or false + + return position and (not check_contain or self:containsp(position)) + and self.data[self:indexp(position)] ~= node_id + or false +end + --- Places a pile of nodes randomly within the specified area in cuboid [from, to]. --- Nodes are only placed above non-air nodes, with a 50% chance at each valid position. --- Note: Preloaded node IDs are recommended for better performance; use `core.get_content_id(name)` to preload. @@ -130,15 +198,10 @@ function VoxelArea:place_pile(node_id, from, to, peak, fillness, param2) self:foreach(from, to, function(i) - local pos = self:position(i) + local pos = v(self:position(i)) -- place above, only if below is not air - local below_i = self:indexp(v(pos) - v(0, 1, 0)) - local is_below_inside = self:containsi(below_i) - if not ( - not is_below_inside - or (is_below_inside and data[below_i] ~= id_air) - ) then + if self:is(pos:under(), id_air, true) then return end From e0cba5e2a6cb0bf9ca7d79eec6e24b1141039cb7 Mon Sep 17 00:00:00 2001 From: alek13 Date: Sat, 10 Jan 2026 03:57:16 +0300 Subject: [PATCH 09/79] Fix warnings about calling `:set_lighting()`/`:calc_lighting()` on not mapgen `VoxelManip`. --- mods/lord/Core/builtin_ext/src/map/manipulations.lua | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/mods/lord/Core/builtin_ext/src/map/manipulations.lua b/mods/lord/Core/builtin_ext/src/map/manipulations.lua index 9052099f0..e40c0ac28 100644 --- a/mods/lord/Core/builtin_ext/src/map/manipulations.lua +++ b/mods/lord/Core/builtin_ext/src/map/manipulations.lua @@ -34,7 +34,9 @@ function core.with_map_part_do(pos1, pos2, callback, is_on_mapgen, with_param2, voxel_manipulator:set_data(data) if with_param2 then voxel_manipulator:set_param2_data(param2_data) end if with_light then voxel_manipulator:set_light_data(light_data) end - voxel_manipulator:set_lighting({ day = 0, night = 0 }) - voxel_manipulator:calc_lighting() + if is_on_mapgen then + voxel_manipulator:set_lighting({ day = 0, night = 0 }) + voxel_manipulator:calc_lighting() + end voxel_manipulator:write_to_map(true) end From af69965b17329a085f1f5e3858d384a85d68ae65 Mon Sep 17 00:00:00 2001 From: alek13 Date: Mon, 12 Jan 2026 23:47:34 +0300 Subject: [PATCH 10/79] Gen.`buildings`: dwarven dungeons: fix linter errors, use some helpers to improve readability. --- .../buildings/src/dungeons/dwarf_tomb.lua | 13 +-- .../buildings/src/dungeons/interior.lua | 91 ++++++++++--------- .../buildings/src/dungeons/remains.lua | 21 +++-- .../buildings/src/dungeons/walls.lua | 14 +-- 4 files changed, 69 insertions(+), 70 deletions(-) diff --git a/mods/lord/World/Generation/buildings/src/dungeons/dwarf_tomb.lua b/mods/lord/World/Generation/buildings/src/dungeons/dwarf_tomb.lua index 544b3367d..4f7b0f143 100644 --- a/mods/lord/World/Generation/buildings/src/dungeons/dwarf_tomb.lua +++ b/mods/lord/World/Generation/buildings/src/dungeons/dwarf_tomb.lua @@ -1,5 +1,6 @@ -local pairs, math_random, id - = pairs, math.random, minetest.get_content_id +local pairs, math_random, v, id + = pairs, math.random, vector.new, minetest.get_content_id + local id_air = id('air') local id_mossy_cobble = id('default:mossycobble') @@ -19,9 +20,9 @@ local TOMB = { -- So ~ 22% - it's quite rarely. } ---- @param x number ---- @param y number ---- @param z number +--- @param x integer +--- @param y integer +--- @param z integer --- @param with_drop boolean place nodes with additional drop or not --- @param data table --- @param area VoxelArea @@ -48,7 +49,7 @@ local function is_enough_space(room_center, data, area) for dy = 0, 1 do -- needs two layers: 1 - for gold & cobble, 2 - for tomb for dx = -1, 1 do -- width 3: 1 on right, 1 on left (for gold) for dz = -1, 2 do -- tomb takes 2 blocks, & additional 1 on each side (head/legs) - if data[area:index(room_center.x + dx, room_center.y + dy, room_center.z + dz)] ~= id_air then + if area:is_not(room_center + v(dx, dy, dz), id_air) then return false end end diff --git a/mods/lord/World/Generation/buildings/src/dungeons/interior.lua b/mods/lord/World/Generation/buildings/src/dungeons/interior.lua index 308b2b696..79f1aaa15 100644 --- a/mods/lord/World/Generation/buildings/src/dungeons/interior.lua +++ b/mods/lord/World/Generation/buildings/src/dungeons/interior.lua @@ -1,6 +1,7 @@ -local pairs, math_random, table_is_empty, vector_new, id +local pairs, math_random, table_is_empty, v, id = pairs, math.random, table.is_empty, vector.new, minetest.get_content_id + local INTERIOR_CHANCE = 3 local INTERIOR_Y_MAX = -50 @@ -17,9 +18,12 @@ local id_chair = id('lord_wooden_stuff:chair_alder') local id_barrel = id('barrel:barrel') local id_torch = id('default:torch_wall') ---- @param data table map data taken from `VoxelManip:get_data()` ---- @param area VoxelArea map data indexer ---- @param ... Position all args after `area` must be `Position`s +--- @param data table map data taken from `VoxelManip:get_data()` +--- @param area VoxelArea map data indexer +--- @param ... Position|integer all args after `area` must be indices in `data` linear array or `Position` \ +--- to be checked for air/ignore nodes +--- +--- @return boolean # `true` if all specified positions are air or ignore nodes, `false` otherwise local function is_air(data, area, ...) for _, value in pairs({...}) do local index = type(value) == 'table' and area:indexp(value) or value @@ -28,6 +32,7 @@ local function is_air(data, area, ...) return false end end + return true end @@ -35,11 +40,11 @@ end --- @class dungeons.Interior local Interior = { --- @type table map data (linear array) with nodes IDs taken from `VoxelManip:get_data()` - data = nil, + data = nil, --- @diagnostic disable-line: assign-type-mismatch --- @type table map data (linear array) with nodes `param2` values taken from `VoxelManip:get_param2_data()` - param2_data = nil, + param2_data = nil, --- @diagnostic disable-line: assign-type-mismatch --- @type VoxelArea map data indexer for positioning in `data` linear array - area = nil, + area = nil, --- @diagnostic disable-line: assign-type-mismatch } --- Constructor @@ -59,16 +64,11 @@ function Interior:new(data, param2_data, area) return self end ---- @param x number ---- @param y number ---- @param z number ---- @param param2 number -function Interior:place_torch_if_possible(x, y, z, param2) - local torch_pos_index = self.area:index(x, y, z) - local current_node_id = self.data[torch_pos_index] - if current_node_id == id_air or current_node_id == id_ignore then - self.data [torch_pos_index] = id_torch - self.param2_data[torch_pos_index] = param2 +--- @param pos Position +--- @param param2 integer +function Interior:place_torch_if_possible(pos, param2) + if self.area:is(pos, id_air) then + self.area:set_node_at(pos, id_torch, param2) end end @@ -78,16 +78,15 @@ function Interior:place_north_wall_bad_and_chest(wall, corner) local sign = corner == 'left' and 1 or -1 local corner_pos = corner == 'left' and wall.start_pos - or vector_new(wall.end_pos.x, wall.start_pos.y, wall.start_pos.z) - - local bed_top_pos = corner_pos:add(vector_new(sign * 1, 1, -1)) - local bed_bottom_pos = corner_pos:add(vector_new(sign * 1, 1, -2)) - local chest_pos = corner_pos:add(vector_new(sign * 2, 1, -1)) + or v(wall.end_pos.x, wall.start_pos.y, wall.start_pos.z) + local bed_top_pos = corner_pos:add(v(sign * 1, 1, -1)) + local bed_bottom_pos = corner_pos:add(v(sign * 1, 1, -2)) + local chest_pos = corner_pos:add(v(sign * 2, 1, -1)) if is_air(self.data, self.area, bed_top_pos, bed_bottom_pos, chest_pos) then - self.data[self.area:indexp(bed_top_pos)] = id_bed_top - self.data[self.area:indexp(bed_bottom_pos)] = id_bed_bottom - self.data[self.area:indexp(chest_pos)] = id_dwarf_chest_spawner + self.area:set_node_at(bed_top_pos , id_bed_top) + self.area:set_node_at(bed_bottom_pos, id_bed_bottom) + self.area:set_node_at(chest_pos , id_dwarf_chest_spawner) end end @@ -108,7 +107,7 @@ function Interior:place_north_wall_shelves(wall) end for x = from_x, to_x do - local shelf_pos = vector_new(x, wall.start_pos.y + 3, wall.start_pos.z) + local shelf_pos = v(x, wall.start_pos.y + 3, wall.start_pos.z) local data_index = self.area:indexp(shelf_pos) if not is_air(self.data, self.area, data_index) then self.data[data_index] = id_bookshelf @@ -123,18 +122,18 @@ function Interior:place_south_wall_barrels(wall, corner) --- @type vector local corner_pos = corner == 'left' and wall.start_pos - or vector_new(wall.end_pos.x, wall.start_pos.y, wall.start_pos.z) + or v(wall.end_pos.x, wall.start_pos.y, wall.start_pos.z) local barrels_pos = { - corner_pos:add(vector_new(sign * 1, 1, 1)), - corner_pos:add(vector_new(sign * 2, 1, 1)), - corner_pos:add(vector_new(sign * 1, 2, 1)), - corner_pos:add(vector_new(sign * 1, 1, 2)), + corner_pos:add(v(sign * 1, 1, 1)), + corner_pos:add(v(sign * 2, 1, 1)), + corner_pos:add(v(sign * 1, 2, 1)), + corner_pos:add(v(sign * 1, 1, 2)), } - for i = 1, #barrels_pos do - if is_air(self.data, self.area, barrels_pos[i]) then - self.data[self.area:indexp(barrels_pos[i])] = id_barrel + for i, barrel_pos in ipairs(barrels_pos) do + if is_air(self.data, self.area, barrel_pos) then + self.data[self.area:indexp(barrel_pos)] = id_barrel end end end @@ -144,17 +143,17 @@ end function Interior:place_diner_zone(side, wall) local sign = side == 'west' and 1 or -1 local wall_z_center = wall.start_pos.z + math.floor((wall.end_pos.z - wall.start_pos.z) / 2) - local wall_center_bottom_pos = vector_new(wall.start_pos.x, wall.start_pos.y, wall_z_center) + local wall_center_bottom_pos = v(wall.start_pos.x, wall.start_pos.y, wall_z_center) - local table_leg_pos = wall_center_bottom_pos:add(vector_new(sign * 1, 1, 0)) - local table_top_pos = wall_center_bottom_pos:add(vector_new(sign * 1, 2, 0)) + local table_leg_pos = wall_center_bottom_pos:add(v(sign * 1, 1, 0)) + local table_top_pos = wall_center_bottom_pos:add(v(sign * 1, 2, 0)) if is_air(self.data, self.area, table_leg_pos, table_top_pos) then self.data[self.area:indexp(table_leg_pos)] = id_fence self.data[self.area:indexp(table_top_pos)] = id_hatch end - local chair1_pos = wall_center_bottom_pos:add(vector_new(sign * 1, 1, -1)) - local chair2_pos = wall_center_bottom_pos:add(vector_new(sign * 1, 1, 1)) + local chair1_pos = wall_center_bottom_pos:add(v(sign * 1, 1, -1)) + local chair2_pos = wall_center_bottom_pos:add(v(sign * 1, 1, 1)) if is_air(self.data, self.area, chair1_pos) then local pos_index = self.area:indexp(chair1_pos) self.data [pos_index] = id_chair @@ -170,15 +169,15 @@ end --- @param wall RoomWall function Interior:place_north_wall_torches(wall) local s, e = wall.start_pos, wall.end_pos - self:place_torch_if_possible(s.x + 1, e.y - 1, s.z - 1, 4) - self:place_torch_if_possible(e.x - 1, e.y - 1, e.z - 1, 4) + self:place_torch_if_possible(v(s.x + 1, e.y - 1, s.z - 1), 4) + self:place_torch_if_possible(v(e.x - 1, e.y - 1, e.z - 1), 4) end --- @param wall RoomWall function Interior:place_south_wall_torches(wall) local s_pos, e_pos = wall.start_pos, wall.end_pos - self:place_torch_if_possible(s_pos.x + 1, e_pos.y - 1, s_pos.z + 1, 5) - self:place_torch_if_possible(e_pos.x - 1, e_pos.y - 1, e_pos.z + 1, 5) + self:place_torch_if_possible(v(s_pos.x + 1, e_pos.y - 1, s_pos.z + 1), 5) + self:place_torch_if_possible(v(e_pos.x - 1, e_pos.y - 1, e_pos.z + 1), 5) end --- @param room_walls RoomWalls list of room walls @@ -209,8 +208,10 @@ end --- @param rooms_walls RoomWalls[] function Interior:generate(rooms_centers, rooms_walls) for i, room_center in pairs(rooms_centers) do - if (math_random(INTERIOR_CHANCE) == 1 and not table_is_empty(rooms_walls[i])) then - self:place_room_interior(rooms_walls[i], room_center) + --- @type RoomWalls + local room_walls = rooms_walls[i] or {} + if (math_random(INTERIOR_CHANCE) == 1 and not table_is_empty(room_walls)) then + self:place_room_interior(room_walls, room_center) end end end diff --git a/mods/lord/World/Generation/buildings/src/dungeons/remains.lua b/mods/lord/World/Generation/buildings/src/dungeons/remains.lua index aadcec6c9..a4c5c4709 100644 --- a/mods/lord/World/Generation/buildings/src/dungeons/remains.lua +++ b/mods/lord/World/Generation/buildings/src/dungeons/remains.lua @@ -3,7 +3,7 @@ local pairs, math_random, table_is_empty, id local REMAINS_Y_MAX = -100 -local REMAINS_CHANCE = 100/60 -- 60% +local REMAINS_CHANCE = 0.6 -- 60% local REMAINS_IN_TOMB_ROOM = 3 local FIND_FREE_PLACE_ATTEMPTS = 10 @@ -17,11 +17,11 @@ local ids_remains = { --- @class dungeons.Remains local Remains = { --- @type table map data (linear array) with nodes IDs taken from `VoxelManip:get_data()` - data = nil, + data = nil, --- @diagnostic disable-line: assign-type-mismatch --- @type table map data (linear array) with nodes `param2` values taken from `VoxelManip:get_param2_data()` - param2_data = nil, + param2_data = nil, --- @diagnostic disable-line: assign-type-mismatch --- @type VoxelArea map data indexer for positioning in `data` or `param2_data` linear arrays - area = nil, + area = nil, --- @diagnostic disable-line: assign-type-mismatch } --- Constructor @@ -62,8 +62,7 @@ function Remains:find_free_place_index(room_floor) end --- @param room_floor RoomWall ---- @param room_center Position -function Remains:place_remains_in_tomb_room(room_floor, room_center) +function Remains:place_remains_in_tomb_room(room_floor) for i = 1, REMAINS_IN_TOMB_ROOM do local index = self:find_free_place_index(room_floor) if index then @@ -87,11 +86,13 @@ end --- @param tomb_room_index number room index, where tomb was placed or `nil` function Remains:generate(rooms_centers, rooms_walls, tomb_room_index) for i, room_center in pairs(rooms_centers) do - if not table_is_empty(rooms_walls[i]) then + --- @type RoomWalls + local room_walls = rooms_walls[i] or {} + if not table_is_empty(room_walls) then if i == tomb_room_index then - self:place_remains_in_tomb_room(rooms_walls[i].floor) - elseif math_random(REMAINS_CHANCE) == 1 then - self:place_remains(rooms_walls[i].floor) + self:place_remains_in_tomb_room(room_walls.floor) + elseif math_random() < REMAINS_CHANCE then + self:place_remains(room_walls.floor) end end end diff --git a/mods/lord/World/Generation/buildings/src/dungeons/walls.lua b/mods/lord/World/Generation/buildings/src/dungeons/walls.lua index 4aa4690da..bf96d5883 100644 --- a/mods/lord/World/Generation/buildings/src/dungeons/walls.lua +++ b/mods/lord/World/Generation/buildings/src/dungeons/walls.lua @@ -34,16 +34,12 @@ local ids_wall_blocks = { --- @param data table --- @param area VoxelArea local function fill_wall(wall_type, start_pos, end_pos, data, area) - local wall_blocks = ids_wall_blocks[wall_type] - for x = start_pos.x, end_pos.x do - for y = start_pos.y, end_pos.y do - for z = start_pos.z, end_pos.z do - if (data[area:index(x, y, z)] ~= id_air) then - data[area:index(x, y, z)] = wall_blocks[math_random(#wall_blocks)] - end - end + local wall_blocks = ids_wall_blocks[wall_type] --- @as integer[] + area:foreach(start_pos, end_pos, function(i) + if (data[i] ~= id_air) then + data[i] = wall_blocks[math_random(#wall_blocks)] end - end + end) end return { From 5b9f387c6cb0902804600c4d92f42b8586c1d497 Mon Sep 17 00:00:00 2001 From: alek13 Date: Tue, 13 Jan 2026 00:50:13 +0300 Subject: [PATCH 11/79] `ide-helper`: update submodule. --- util/ide-helper | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/ide-helper b/util/ide-helper index 0d406ec1d..138ceae16 160000 --- a/util/ide-helper +++ b/util/ide-helper @@ -1 +1 @@ -Subproject commit 0d406ec1d318ee70b14e772023207c6d4efcee1e +Subproject commit 138ceae16594443524c6cfc9ec63cc0d98e3e3f7 From 9e651891d6a3185319cd2c7a445aec15f94b92a6 Mon Sep 17 00:00:00 2001 From: alek13 Date: Thu, 22 Jan 2026 15:41:59 +0300 Subject: [PATCH 12/79] `ide-helper`: update to last version. --- util/ide-helper | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/ide-helper b/util/ide-helper index 138ceae16..a8a2da405 160000 --- a/util/ide-helper +++ b/util/ide-helper @@ -1 +1 @@ -Subproject commit 138ceae16594443524c6cfc9ec63cc0d98e3e3f7 +Subproject commit a8a2da4059bf6a0c22ee69239e5ebfb6a96f7304 From 10d6a8cb7602c5a22cac1095e59e71399f5634d4 Mon Sep 17 00:00:00 2001 From: mmakart <48837462+mmakart@users.noreply.github.com> Date: Fri, 23 Jan 2026 14:31:11 +0600 Subject: [PATCH 13/79] Underground spawn: get rocks from api. LG-1318 (#2350) Note! The set of rocks to register spawning of underground mobs changed thus: List before "default:stone", "lord_rocks:andesite", "lord_rocks:basalt", "lord_rocks:diorite", "lord_rocks:granite", "lord_rocks:grey_quartzite", "lord_rocks:grey_tuff", "lord_rocks:peridotite", "lord_rocks:pink_quartzite", "lord_rocks:pyroxenite", "lord_rocks:red_tuff", "lord_rocks:shale", List after + "default:desert_sandstone", + "default:desert_stone", + "default:sandstone", + "default:silver_sandstone", "default:stone", "lord_rocks:andesite", "lord_rocks:basalt", "lord_rocks:diorite", "lord_rocks:granite", "lord_rocks:grey_quartzite", "lord_rocks:grey_tuff", + "lord_rocks:mordor_stone", "lord_rocks:peridotite", "lord_rocks:pink_quartzite", "lord_rocks:pyroxenite", "lord_rocks:red_tuff", "lord_rocks:shale", + "lord_rocks:white_tuff", --- mods/lord/Entities/lottmobs/src/spawn.lua | 38 +++++++---------------- 1 file changed, 11 insertions(+), 27 deletions(-) diff --git a/mods/lord/Entities/lottmobs/src/spawn.lua b/mods/lord/Entities/lottmobs/src/spawn.lua index 6cd8f9291..95828e254 100644 --- a/mods/lord/Entities/lottmobs/src/spawn.lua +++ b/mods/lord/Entities/lottmobs/src/spawn.lua @@ -1,18 +1,4 @@ --- TODO: #1525 ability to get cave_rocks from API. -local cave_rocks = { - "default:stone", - "lord_rocks:diorite", - "lord_rocks:granite", - "lord_rocks:basalt", - "lord_rocks:andesite", - "lord_rocks:peridotite", - "lord_rocks:grey_tuff", - "lord_rocks:red_tuff", - "lord_rocks:grey_quartzite", - "lord_rocks:pink_quartzite", - "lord_rocks:shale", - "lord_rocks:pyroxenite", -} +local stones = table.keys(rocks.get_nodes()) --------------------------- S U R F A C E --------------------------- --dwarfs.lua @@ -115,18 +101,16 @@ mobs:spawn_specific("lottmobs:troll", {"lottmapgen:angsnowblock"}, {"air"}, -1, mobs:spawn_specific("lottmobs:dead_men", {"default:mossycobble"}, {"air"}, -1, 7, 45, 2, 5, -31000, -50) -for _, cave_rock in pairs(cave_rocks) do - mobs:spawn_specific("lottmobs:rat", {cave_rock}, {"air"}, -1, 8, 30, 6000, 2, -31000, 0) +mobs:spawn_specific("lottmobs:rat", stones, {"air"}, -1, 8, 30, 6000, 2, -31000, 0) - mobs:spawn_specific("lottmobs:dwarf", {cave_rock}, {"air"}, 8, 15, 30, 9000, 2, -31000, -10) - mobs:spawn_specific("lottmobs:dwarf1", {cave_rock}, {"air"}, 8, 15, 30, 9000, 2, -31000, -10) - mobs:spawn_specific("lottmobs:dwarf2", {cave_rock}, {"air"}, 8, 15, 30, 9000, 2, -31000, -10) +mobs:spawn_specific("lottmobs:dwarf", stones, {"air"}, 8, 15, 30, 9000, 2, -31000, -10) +mobs:spawn_specific("lottmobs:dwarf1", stones, {"air"}, 8, 15, 30, 9000, 2, -31000, -10) +mobs:spawn_specific("lottmobs:dwarf2", stones, {"air"}, 8, 15, 30, 9000, 2, -31000, -10) - mobs:spawn_specific("lottmobs:orc", {cave_rock}, {"air"}, -1, 6, 30, 4000, 3, -31000, -10) - mobs:spawn_specific("lottmobs:troll", {cave_rock}, {"air"}, -1, 5, 30, 12000, 3, -31000, -10) - mobs:spawn_specific("lottmobs:spider", {cave_rock}, {"air"}, -1, 4, 30, 12000, 2, -31000, -10) +mobs:spawn_specific("lottmobs:orc", stones, {"air"}, -1, 6, 30, 4000, 3, -31000, -10) +mobs:spawn_specific("lottmobs:troll", stones, {"air"}, -1, 5, 30, 12000, 3, -31000, -10) +mobs:spawn_specific("lottmobs:spider", stones, {"air"}, -1, 4, 30, 12000, 2, -31000, -10) - mobs:spawn_specific("lottmobs:nazgul", {cave_rock}, {"air"}, -1, 2, 30, 30000, 2, -31000, -100) - mobs:spawn_specific("lottmobs:witch_king", {cave_rock}, {"air"}, -1, 2, 30, 60000, 1, -31000, -1000) - mobs:spawn_specific("lottmobs:balrog", {cave_rock}, {"air"}, -1, 2, 30, 100000, 1, -31000, -10000) -end +mobs:spawn_specific("lottmobs:nazgul", stones, {"air"}, -1, 2, 30, 30000, 2, -31000, -100) +mobs:spawn_specific("lottmobs:witch_king", stones, {"air"}, -1, 2, 30, 60000, 1, -31000, -1000) +mobs:spawn_specific("lottmobs:balrog", stones, {"air"}, -1, 2, 30, 100000, 1, -31000, -10000) From 4bd14153f04121f10dc8513d063abac11e6f7e73 Mon Sep 17 00:00:00 2001 From: alek13 Date: Fri, 23 Jan 2026 15:43:34 +0300 Subject: [PATCH 14/79] Gen.Library: Extend `VoxelArea`: ability to pass `param2` into `:fill_with()`. LG-2049 --- .../Core/builtin_ext/src/map/VoxelArea.lua | 28 +++++++++++++------ 1 file changed, 19 insertions(+), 9 deletions(-) diff --git a/mods/lord/Core/builtin_ext/src/map/VoxelArea.lua b/mods/lord/Core/builtin_ext/src/map/VoxelArea.lua index 6ab86140d..805a488e6 100644 --- a/mods/lord/Core/builtin_ext/src/map/VoxelArea.lua +++ b/mods/lord/Core/builtin_ext/src/map/VoxelArea.lua @@ -85,20 +85,29 @@ end --- @protected --- @param node_id integer|integer[] ---- @param from Position ---- @param to Position ---- @param chance number +--- @param from Position +--- @param to Position +--- @param chance number +--- @param param2? integer|integer[] --- --- @return self -function VoxelArea:fill_with_chance(node_id, from, to, chance) - local is_random = type(node_id) == 'table' - local nodes_count = is_random and #node_id or 0 - local data = self.data +function VoxelArea:fill_with_chance(node_id, from, to, chance, param2) + local is_random = type(node_id) == 'table' + local is_random_param2 = type(param2) == 'table' + local nodes_count = is_random and #node_id or 0 + local param2_count = is_random_param2 and #param2 or 0 + local data = self.data + local data_param2 = self.data_param2 for i in self:iterp(from, to) do if math_random() <= chance then data[i] = is_random and node_id[math_random(nodes_count)] or node_id--[[@as integer]] + if param2 then + data_param2[i] = is_random_param2 + and param2[math_random(param2_count)] + or param2--[[@as integer]] + end end end @@ -110,14 +119,15 @@ end --- @param from? Position position from which to start filling. --- @param to? Position position to which to fill. --- @param chance? number chance to fill each node (0..1), default is 1 (fill all). +--- @param param2? integer|integer[] if is array of integers, than random param2 will be set from it. --- --- @return self -function VoxelArea:fill_with(node_id, from, to, chance) +function VoxelArea:fill_with(node_id, from, to, chance, param2) from = from or self.MinEdge to = to or self.MaxEdge if chance and chance < 1 then - return self:fill_with_chance(node_id, from, to, chance) + return self:fill_with_chance(node_id, from, to, chance, param2) end local is_random = type(node_id) == 'table' From 7b76c69f4bcfe6edac43bf38782163f9fcbf5065 Mon Sep 17 00:00:00 2001 From: alek13 Date: Fri, 23 Jan 2026 17:04:21 +0300 Subject: [PATCH 15/79] Gen.Library: Extend `VoxelArea`: reduce cyclomatic complexity. LG-2049 --- .../Core/builtin_ext/src/map/VoxelArea.lua | 41 ++++++++++--------- 1 file changed, 22 insertions(+), 19 deletions(-) diff --git a/mods/lord/Core/builtin_ext/src/map/VoxelArea.lua b/mods/lord/Core/builtin_ext/src/map/VoxelArea.lua index 805a488e6..303c19e5c 100644 --- a/mods/lord/Core/builtin_ext/src/map/VoxelArea.lua +++ b/mods/lord/Core/builtin_ext/src/map/VoxelArea.lua @@ -4,6 +4,20 @@ local type, math_floor, math_random, math_is_among, vector_sort, v, id local id_air = id('air') +--- Returns just `value` if `is_random` is false, +--- or random value from `value` if `value` is array and `is_random` is true. +--- +--- @param value integer|integer[] +--- @param is_random boolean +--- @param count integer +--- @return integer +local function get_self_or_random(value, is_random, count) + return is_random + and value[math_random(count)] + or value--[[@as integer]] +end + + --- @param data integer[] function VoxelArea:set_data(data) self.data = data @@ -96,20 +110,15 @@ function VoxelArea:fill_with_chance(node_id, from, to, chance, param2) local is_random_param2 = type(param2) == 'table' local nodes_count = is_random and #node_id or 0 local param2_count = is_random_param2 and #param2 or 0 - local data = self.data - local data_param2 = self.data_param2 - for i in self:iterp(from, to) do + + self:foreach(from, to, function(i, data, data_param2) if math_random() <= chance then - data[i] = is_random - and node_id[math_random(nodes_count)] - or node_id--[[@as integer]] + data[i] = get_self_or_random(node_id, is_random, nodes_count) if param2 then - data_param2[i] = is_random_param2 - and param2[math_random(param2_count)] - or param2--[[@as integer]] + data_param2[i] = get_self_or_random(param2, is_random_param2, param2_count) end end - end + end) return self end @@ -134,9 +143,7 @@ function VoxelArea:fill_with(node_id, from, to, chance, param2) local nodes_count = is_random and #node_id or 0 local data = self.data for i in self:iterp(from, to) do - data[i] = is_random - and node_id[math_random(nodes_count)] - or node_id--[[@as integer]] + data[i] = get_self_or_random(node_id, is_random, nodes_count) end return self @@ -227,13 +234,9 @@ function VoxelArea:place_pile(node_id, from, to, peak, fillness, param2) math_is_among(pos.z, layer_from_dz, layer_to_dz) and math_random() <= fillness then - data[i] = is_random - and node_id[math_random(nodes_count)] - or node_id--[[@as integer]] + data[i] = get_self_or_random(node_id, is_random, nodes_count) if param2 then - self.data_param2[i] = is_random_param2 - and param2[math_random(param2_count)] - or param2--[[@as integer]] + self.data_param2[i] = get_self_or_random(param2, is_random_param2, param2_count) end end end) From e287cd50da3553b3e22801c4211b97dee85ab4ee Mon Sep 17 00:00:00 2001 From: alek13 Date: Fri, 23 Jan 2026 17:58:07 +0300 Subject: [PATCH 16/79] Gen.Library: `Voxrame.map` module: `Room` class. LG-2051 --- .vscode/settings.json | 1 + mods/lord/Core/map/init.lua | 5 + mods/lord/Core/map/license.md | 7 + mods/lord/Core/map/mod.conf | 5 + mods/lord/Core/map/src/map.lua | 8 + mods/lord/Core/map/src/map/Cuboid.lua | 8 + mods/lord/Core/map/src/map/Room.lua | 239 ++++++++++++++++++ mods/lord/Core/map/src/map/Room/Wall.lua | 13 + mods/lord/Core/map/src/map/Room/Wall/Type.lua | 13 + mods/lord/Core/map/src/map/Room/Walls.lua | 8 + 10 files changed, 307 insertions(+) create mode 100644 mods/lord/Core/map/init.lua create mode 100644 mods/lord/Core/map/license.md create mode 100644 mods/lord/Core/map/mod.conf create mode 100644 mods/lord/Core/map/src/map.lua create mode 100644 mods/lord/Core/map/src/map/Cuboid.lua create mode 100644 mods/lord/Core/map/src/map/Room.lua create mode 100644 mods/lord/Core/map/src/map/Room/Wall.lua create mode 100644 mods/lord/Core/map/src/map/Room/Wall/Type.lua create mode 100644 mods/lord/Core/map/src/map/Room/Walls.lua diff --git a/.vscode/settings.json b/.vscode/settings.json index c1baec193..0b28dc1b2 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -4,6 +4,7 @@ "editor.defaultFormatter": "CppCXY.emmylua-codestyle", }, "emmylua.spell.dict": [ + "Voxrame", "minetest", "leaveplayer", "joinplayer", diff --git a/mods/lord/Core/map/init.lua b/mods/lord/Core/map/init.lua new file mode 100644 index 000000000..500327166 --- /dev/null +++ b/mods/lord/Core/map/init.lua @@ -0,0 +1,5 @@ + + +core.mod(function(mod) + require('map') +end) diff --git a/mods/lord/Core/map/license.md b/mods/lord/Core/map/license.md new file mode 100644 index 000000000..49284af3d --- /dev/null +++ b/mods/lord/Core/map/license.md @@ -0,0 +1,7 @@ +Copyright (c) [Александр Чибрикин](https://github.com/alek13) & [Lord Team](https://github.com/lord-server/lord?tab=readme-ov-file#contributors--%D1%83%D1%87%D0%B0%D1%81%D1%82%D0%BD%D0%B8%D0%BA%D0%B8) + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/mods/lord/Core/map/mod.conf b/mods/lord/Core/map/mod.conf new file mode 100644 index 000000000..80517b70d --- /dev/null +++ b/mods/lord/Core/map/mod.conf @@ -0,0 +1,5 @@ +name = voxrame_map +title = Easy Map Manipulations +description = Handly common classes to make generation easier +depends = dev_helpers, builtin_ext +author = lord-games diff --git a/mods/lord/Core/map/src/map.lua b/mods/lord/Core/map/src/map.lua new file mode 100644 index 000000000..98ea290cd --- /dev/null +++ b/mods/lord/Core/map/src/map.lua @@ -0,0 +1,8 @@ + +Voxrame = Voxrame or {} + +--- @module 'Voxrame.map' +Voxrame.map = { + --- @type Voxrame.map.Room + Room = require('map.Room'), +} diff --git a/mods/lord/Core/map/src/map/Cuboid.lua b/mods/lord/Core/map/src/map/Cuboid.lua new file mode 100644 index 000000000..d543b1ba8 --- /dev/null +++ b/mods/lord/Core/map/src/map/Cuboid.lua @@ -0,0 +1,8 @@ + +--- @class Voxrame.map.Cuboid +--- @field public from Position +--- @field public to Position +local Cuboid = {} + + +return Cuboid diff --git a/mods/lord/Core/map/src/map/Room.lua b/mods/lord/Core/map/src/map/Room.lua new file mode 100644 index 000000000..ce1d34cdb --- /dev/null +++ b/mods/lord/Core/map/src/map/Room.lua @@ -0,0 +1,239 @@ +local setmetatable, v, id + = setmetatable, vector.new, core.get_content_id + +local RoomWall = require('map.Room.Wall') +local WallType = require('map.Room.Wall.Type') + + + +local id_air = id('air') + +--- @abstract +--- @class Voxrame.map.Room: Voxrame.map.Cuboid +local Room = { + --- @type vector + center = nil, --- @diagnostic disable-line: assign-type-mismatch + --- @type vector + size = nil, --- @diagnostic disable-line: assign-type-mismatch + --- @type Voxrame.map.Room.Walls + walls = nil, --- @diagnostic disable-line: assign-type-mismatch + --- @protected + --- @type VoxelArea + area = nil, --- @diagnostic disable-line: assign-type-mismatch + --- @protected + --- @type integer[] + data = nil, --- @diagnostic disable-line: assign-type-mismatch + --- @protected + --- @type boolean + debug = false, + --- @protected + --- @static + --- @type integer + debug_node_id = 0, + + Wall = RoomWall, +} +core.register_on_mods_loaded(function() + Room.debug_node_id = Room.debug_node_id ~= 0 -- already set by another mod? + and Room.debug_node_id + or (core.registered_nodes['default:stone'] + and id('default:stone') + or id_air + ) +end) + +--- @static +--- @param node_id integer +--- @return Voxrame.map.Room +function Room.set_debug_node_id(node_id) + Room.debug_node_id = node_id + + return Room +end + +--- @param position vector +--- @param size vector? +function Room:new(position, size) + size = size or self.size or v(9, 5, 9) + + local class = self + self = {} + self.center = position + self.size = size + self.from = position - (size/2):ceil():subtract(1) + self.to = position + (size/2):floor() + + return setmetatable(self, { __index = class }) +end + +--- @param debug boolean? +--- @return self +function Room:set_debug(debug) + self.debug = debug or false + + return self +end + +--- @param name Voxrame.map.Room.Wall.Type name of wall. +--- @param inside_room boolean? if true, corners will be shifted one node inside the room. +--- @return Voxrame.map.Room.Wall +function Room:get_wall(name, inside_room) + inside_room = inside_room or false + + local wall = self.walls[name] + + if inside_room then + wall = table.copy(wall) + wall.from = wall.from + self:to_center_from(wall.from):sign() + wall.to = wall.to + self:to_center_from(wall.to):sign() + end + + return wall +end + +--- @param name Voxrame.map.Room.Wall.Type name of wall. +--- @param inside_room boolean? if true, corners will be shifted one node inside the room. +--- @return vector[] +function Room:get_corners_of(name, inside_room) + inside_room = inside_room or false + + --- @type Voxrame.map.Room.Wall + local wall = self.walls[name] + local from = wall.from + local to = wall.to + + local corners = {} + if name == WallType.floor or name == WallType.ceiling then + corners = { + from:copy(), + v(from.x, from.y, to.z), + to:copy(), + v(to.x, from.y, from.z), + } + elseif name == WallType.north or name == WallType.south then + corners = { + from:copy(), + v(to.x, from.y, from.z), + to:copy(), + v(from.x, to.y, from.z), + } + elseif name == WallType.west or name == WallType.east then + corners = { + from:copy(), + v(from.x, from.y, to.z), + to:copy(), + v(from.x, to.y, from.z), + } + end + + if inside_room then + for index, corner in pairs(corners) do + local direction = self:to_center_from(corner):sign() + corners[index] = corner + direction + end + end + + return corners +end + +--- @param position vector +--- @param length? number +--- @return vector +function Room:to_center_from(position, length) + length = length or 1 + + return ((self.center - position):normalize() * length) +end + +--- @param position vector +--- @param length? number +--- @return vector +function Room:from_center_to(position, length) + length = length or 1 + + return ((position - self.center):normalize() * length) +end + + +--- You can override method `:initialize()` for your purposes. +--- It will be called before `:do_generation()` inside `generate()` inside `init()` +--- @protected +--- @return self +function Room:initialize() + return self +end + +--- @protected +--- @return self +function Room:init_walls() + local s = self.from + local e = self.to + + self.walls = { + west = { from = v(s.x - 1, s.y - 1, s.z - 1), to = v(s.x - 1, e.y + 1, e.z + 1), }, + east = { from = v(e.x + 1, s.y - 1, s.z - 1), to = v(e.x + 1, e.y + 1, e.z + 1), }, + south = { from = v(s.x - 1, s.y - 1, s.z - 1), to = v(e.x + 1, e.y + 1, s.z - 1), }, + north = { from = v(s.x - 1, s.y - 1, e.z + 1), to = v(e.x + 1, e.y + 1, e.z + 1), }, + floor = { from = v(s.x - 1, s.y - 1, s.z - 1), to = v(e.x + 1, s.y - 1, e.z + 1), }, + ceiling = { from = v(s.x - 1, e.y + 1, s.z - 1), to = v(e.x + 1, e.y + 1, e.z + 1), }, + } + + return self +end + +--- @private +--- @return self +function Room:init() + return self + :init_walls() + :initialize() +end + +--- @protected +--- @return self +function Room:fill_with_air() + self.area:fill_with(id_air, self.from, self.to) + + return self +end + +--- @protected +--- @return self +function Room:debug_things() + if not self.debug then + return self + end + + local center = self.center + local node_id = self.debug_node_id + self.area + :set_node_at(center + v(1, 0, 0), node_id) + :set_node_at(center + v(0, 0, 1), node_id) + :set_node_at(center - v(1, 0, 0), node_id) + :set_node_at(center - v(0, 0, 1), node_id) + + return self +end + +--- @abstract +--- @protected +--- @return self +function Room:do_generation() + error('You should override method `:do_generation()` in your child class.') +end + +--- @param area VoxelArea +--- @param data integer[] +function Room:generate(area, data) + self.area = area + self.data = data + + return self + :init() + :fill_with_air() + :debug_things() + :do_generation() +end + + +return Room diff --git a/mods/lord/Core/map/src/map/Room/Wall.lua b/mods/lord/Core/map/src/map/Room/Wall.lua new file mode 100644 index 000000000..fbf53b30e --- /dev/null +++ b/mods/lord/Core/map/src/map/Room/Wall.lua @@ -0,0 +1,13 @@ +local WallType = require('map.Room.Wall.Type') + + +--- @class Voxrame.map.Room.Wall: Voxrame.map.Cuboid +--- @field public from vector +--- @field public to vector +--local Wall = {} + + +return { + --- @type Voxrame.map.Room.Wall.Type + Type = WallType +} diff --git a/mods/lord/Core/map/src/map/Room/Wall/Type.lua b/mods/lord/Core/map/src/map/Room/Wall/Type.lua new file mode 100644 index 000000000..51c1bc27e --- /dev/null +++ b/mods/lord/Core/map/src/map/Room/Wall/Type.lua @@ -0,0 +1,13 @@ + +--- @enum Voxrame.map.Room.Wall.Type: string +local WallType = { + floor = 'floor', + ceiling = 'ceiling', + north = 'north', + south = 'south', + east = 'east', + west = 'west', +} + + +return WallType diff --git a/mods/lord/Core/map/src/map/Room/Walls.lua b/mods/lord/Core/map/src/map/Room/Walls.lua new file mode 100644 index 000000000..55bce02c0 --- /dev/null +++ b/mods/lord/Core/map/src/map/Room/Walls.lua @@ -0,0 +1,8 @@ + +--- @class Voxrame.map.Room.Walls +--- @field north Voxrame.map.Room.Wall +--- @field south Voxrame.map.Room.Wall +--- @field east Voxrame.map.Room.Wall +--- @field west Voxrame.map.Room.Wall +--- @field floor Voxrame.map.Room.Wall +--- @field ceiling Voxrame.map.Room.Wall From 76da5a8065db45d6a630986944e404d6887e3968 Mon Sep 17 00:00:00 2001 From: alek13 Date: Fri, 23 Jan 2026 18:06:55 +0300 Subject: [PATCH 17/79] Distribution: CDB: excleude `Holidays` mod. Relates to #2276 LG-1893 --- .distribution-exclude | 1 + 1 file changed, 1 insertion(+) diff --git a/.distribution-exclude b/.distribution-exclude index b2c58f52a..c7bb920c2 100644 --- a/.distribution-exclude +++ b/.distribution-exclude @@ -2,6 +2,7 @@ .github/* /mods/_minetest_game/up /mods/lord/_experimental/* +/mods/lord/Blocks/Holidays/* /mods/lord/Blocks/clan_node/* /mods/lord/Blocks/clans_tapestries/* /mods/lord/Blocks/holding_points/* From 129b7a174c7d5b7eae671011254f4f12b08048a7 Mon Sep 17 00:00:00 2001 From: alek13 Date: Fri, 23 Jan 2026 19:35:26 +0300 Subject: [PATCH 18/79] Gen.Library: Extend `VoxelArea`: fix `:fill_with[_chance]()`. LG-2049 `:foreach()` method does not pass `data_param2`, so we cant use it. --- mods/lord/Core/builtin_ext/src/map/VoxelArea.lua | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/mods/lord/Core/builtin_ext/src/map/VoxelArea.lua b/mods/lord/Core/builtin_ext/src/map/VoxelArea.lua index 303c19e5c..be799ec5e 100644 --- a/mods/lord/Core/builtin_ext/src/map/VoxelArea.lua +++ b/mods/lord/Core/builtin_ext/src/map/VoxelArea.lua @@ -111,14 +111,17 @@ function VoxelArea:fill_with_chance(node_id, from, to, chance, param2) local nodes_count = is_random and #node_id or 0 local param2_count = is_random_param2 and #param2 or 0 - self:foreach(from, to, function(i, data, data_param2) + local data = self.data + local data_param2 = self.data_param2 + + for i in self:iterp(from, to) do if math_random() <= chance then data[i] = get_self_or_random(node_id, is_random, nodes_count) if param2 then data_param2[i] = get_self_or_random(param2, is_random_param2, param2_count) end end - end) + end return self end From ed3408cfecb7d0fe74265d85cb5a26baf6dc0bf3 Mon Sep 17 00:00:00 2001 From: alek13 Date: Mon, 26 Jan 2026 17:10:44 +0300 Subject: [PATCH 19/79] Generation: add "bone" as node for testing dungeons. LG-2054 --- minetest.conf.test-featured | 213 ++++++++++++++++++ mods/lord/Player/bones/items.lua | 84 +++++-- .../lord/Player/bones/textures/bones_bone.png | Bin 144 -> 566 bytes .../Player/bones/textures/bones_bone_inv.png | Bin 0 -> 144 bytes 4 files changed, 281 insertions(+), 16 deletions(-) create mode 100644 minetest.conf.test-featured create mode 100644 mods/lord/Player/bones/textures/bones_bone_inv.png diff --git a/minetest.conf.test-featured b/minetest.conf.test-featured new file mode 100644 index 000000000..880e6ebc4 --- /dev/null +++ b/minetest.conf.test-featured @@ -0,0 +1,213 @@ +# +# ! Файл автоматически выкатывается и применяется на ВтороМ ткстовом сервере ! +# +# ----------------------------------------------------------------------------------- +# +# Настройки для Test-Featured +# (тестируем экспериментальные и промежуточные варианты фич) +# +# На базе файла `minetest.conf.test` +# +# ----------------------------------------------------------------------------------- + +# +# Клиентские настройки выпилены и всё что не используется или используется значение по умолчанию +# + +# +# Server / Singleplayer +# + +server_name = [RU] L.O.R.D. Полигон stable +server_description = L.O.R.D.: Test-Featured server (все фичи включены) +server_address = test-Featured.lord-server.ru +server_url = http://lord-server.ru/ +server_announce = false + +## Network + +port = 30005 + + +## Game + +default_game = lord +motd = На сервере включены все фичи, тестирование обычно требует комлексного подхода и рельной игры +max_users = 6 +enable_damage = true +creative_mode = false +fixed_map_seed = badger +default_password = 456852 +disallow_empty_password = true +default_privs = shout, interact, spawn, info, news, home +player_transfer_distance = 1000 +enable_pvp = true + +static_spawnpoint = 330, 20, 160 + +enable_rollback_recording = true +ask_reconnect_on_crash = true +time_speed = 24 + +## Security +# А НА ПРОДЕ `false` !!! +secure.enable_security = true +secure.trusted_mods = lp_api +secure.http_mods = lp_api, http + + +# +# Client and Server +# + +name = Alek +language = ru +debug_log_level = action +chat_log_level = warning + + +# +# Mapgen +# + +mg_name = v7 + + +# ---------------------------------------------------------------------------------------------------------- +# +# Далее секция с дополнительными настройками, +# которых нет в основном предоставляемом MT конфиге (`minetest.conf.example`) +# и которые используются модами (MTG, сторонними, нашими) +# +# ---------------------------------------------------------------------------------------------------------- + +# +# Core/Voxrame +# + +# Default: `production` +environment = test + +# Общая настройка отладки. Влияет в том числе на все настройки вида `.debug`. +# Если настройка мода `.debug` не указана, то `.debug` устанавливается из этой настройки. +# Default: false +debug = true + +# ------- Core/http ------- +#http.debug = true + + +# +# MTG +# + +# ------- MTG/fire ------- +# отключение пожара +disable_fire = true + +# ------- MTG/{default|doors|walls} ------- +# If enabled, fences and walls cannot be jumped over. +enable_fence_tall = true + +# ------- MTG/give_initial_stuff ------- +# Gives some stuff to players at the beginning +give_initial_stuff = true +initial_stuff = lord_money:copper_coin 100,lottmobs:horsemeat_cooked 99,tools:pick_mithril,tools:axe_mithril,tools:spear_stone + + +# +# Various +# + +# ------- _various/areas ------- +# разрешить игрокам защищать области +areas.self_protection = false + +# ------- _various/mobs/api.lua ------- +# отключить спавн мобов в районе протектора? (на данный момент вообще спавн) +mobs_spawn_protected = 0 + +# ------- _various/protector_lott ------- +protector_pvp = true +protector_spawn = 10 +#protector_damage = 3 + +# -------- _various/discord --------- +# For Discord +lp_api.channel_id = 284678831866904578 +lp_api.router.cmd = true +lp_api.system_name = lord-test + + +# +# Ours (LORD) +# + +# ---- FEATURE TOGGLE ---- +toggle_dungeons = true + + +# ------- lord/lord_spawns ------- +# также см. настройку `static_spawnpoint` в основном разделе выше +lord_spawns.common_spawn_pos = 330, 20, 160 +lord_spawns.dynamic_spawn = true + +# Spawns (Racial, by command /spawn) +lord_spawns.racial.elf_pos = 440, 22, 98 +lord_spawns.racial.orc_pos = 380, 2, -6 +lord_spawns.racial.hobbit_pos = 430, 22, 287 + +# Halls (Teleport by command points) +lord_spawns.halls.center.position = 330, 20, 160 +lord_spawns.halls.center.description = Dol Guldur +lord_spawns.halls.death.position = 380, 2, -6 +lord_spawns.halls.death.description = Hall of Death +#lord_spawns.halls.bree.position = 417, 23, 193 +#lord_spawns.halls.bree.description = Bree + +# ------- lord/lord_classes +sauron_curse_area = 5 + +# ------- lord_ground ------- +# границы, до которых происходит расползание мордорских земель: +lord_ground.mordor_lands.from = -633, 465 +lord_ground.mordor_lands.to = -380, 810 + +# ------- lord/player ------- +# арены, на которых отображается здоровье: +arenas = 2 + +# ------- lord/christmas ------- +# дата праздника / генерации подарков (format: "MM/DD hh:mm") +christmas_date = 12/24 00:00 +# список подарков +christmas_tree_gifts = lottfarming:salad 23,lord_alcohol:cider 23,default:blueberries 23,lottfarming:cookie_cracker 23,default:charcoalblock 23,default:apple 23,lottfarming:carrot_item 23,lottmobs:meat 23,lottores:tin_lump 23,default:silver_sandstone 23 + +# ------- lord/lottmapgen +# Земер времени генерации чанка. Default: false +# Постоянно сыпет в лог, использовать локально при разработке или при крайней необходимости. +mapgen_measure_chunk_gene_time = false +# Логгирование координат герерируемого чанка. +mapgen_chunk_pos_log = true + +# ------- lord/nazgul_area +# Минас-Моргул, где на зеленом мраморе спавнятся назгулы. Координаты 395, -120 +nazgul_areas = 140 + +# ------- lord/Game/lord_web_api +#lord_web_api.base_url = https://lord-server.ru/api + +# ------- lord/World/Generation/Caves/caves_debug +caves_debug.enabled = false + + +# ------- holding_points ------- + +# Если что-то пошло не так можно отключить мод полностью (уже установленные ноды будут как `unknown`) +# Default: false +#holding_points.disabled = false + +# Используется для тестирования и отладки. Общая настройка `debug` также включает этот параметр. +# Т.е. включаем только тогда, когда общий `debug` отключен и нужно включить `debug` только для этого мода. +# Default: `debug` option +#holding_points.debug = false diff --git a/mods/lord/Player/bones/items.lua b/mods/lord/Player/bones/items.lua index e848b8eb8..c3039867c 100644 --- a/mods/lord/Player/bones/items.lua +++ b/mods/lord/Player/bones/items.lua @@ -1,27 +1,79 @@ local S = minetest.get_mod_translator() -minetest.register_craftitem("bones:bonedust", { - description = S("Bone Dust"), - inventory_image = "bones_bonedust.png", +minetest.register_craftitem('bones:bonedust', { + description = S('Bone Dust'), + inventory_image = 'bones_bonedust.png', liquids_pointable = false, - stack_max = 99, + stack_max = 99, }) -minetest.register_craftitem("bones:bone", { - description = S("Bone"), - inventory_image = "bones_bone.png", +minetest.register_craftitem('bones:bone', { + description = S('Bone'), + inventory_image = 'bones_bone_inv.png', }) -minetest.register_tool("bones:bone_scythe", { - description = S("Bone Scythe"), - inventory_image = "bones_scythe.png", - range = 7, +-- As for now, used only for dungeons generation testing +-- Full implementation later +if minetest.settings:get_bool('toggle_dungeons', false) then + -- Move into main declaration later + core.override_item('bones:bone', { + on_place = function(itemstack, placer, pointed_thing) + local stack = ItemStack('bones:bone_' .. math.random(1, 1)) + local placed = minetest.item_place(stack, placer, pointed_thing, math.random(0, 3)) + + return placed + and ItemStack('bones:bone ' .. (itemstack:get_count() - (1 - placed:get_count()))) + or itemstack + end, + }) + + local px = 1 / 16 + minetest.register_node('bones:bone_1', { + description = S('Bone'), + inventory_image = 'bones_bone_inv.png', + wield_image = 'bones_bone_inv.png', + paramtype = 'light', + paramtype2 = 'facedir', + is_ground_content = false, + drawtype = 'nodebox', + tiles = { 'bones_bone.png' }, + groups = { dig_immediate = 2 }, + drop = 'bones:bone', + node_box = { + type = 'fixed', + fixed = { + { -6*px, -8*px, -7*px, -4*px, -7*px, -5*px }, + { -7*px, -8*px, -6*px, -5*px, -7*px, -4*px }, + + { 6*px, -8*px, 7*px, 4*px, -7*px, 5*px }, + { 7*px, -8*px, 6*px, 5*px, -7*px, 4*px }, + + { -6*px, -8*px, -6*px, -4*px, -7*px, -4*px }, + { -5*px, -8*px, -5*px, -3*px, -7*px, -3*px }, + { -4*px, -8*px, -4*px, -2*px, -7*px, -2*px }, + { -3*px, -8*px, -3*px, -1*px, -7*px, -1*px }, + { -2*px, -8*px, -2*px, 0*px, -7*px, 0*px }, + { -1*px, -8*px, -1*px, 1*px, -7*px, 1*px }, + { 0*px, -8*px, 0*px, 2*px, -7*px, 2*px }, + { 1*px, -8*px, 1*px, 3*px, -7*px, 3*px }, + { 2*px, -8*px, 2*px, 4*px, -7*px, 4*px }, + { 3*px, -8*px, 3*px, 5*px, -7*px, 5*px }, + { 4*px, -8*px, 4*px, 6*px, -7*px, 6*px }, + }, + }, + }) +end + +minetest.register_tool('bones:bone_scythe', { + description = S('Bone Scythe'), + inventory_image = 'bones_scythe.png', + range = 7, tool_capabilities = { full_punch_interval = 1.5, - max_drop_level=1, - groupcaps={ - snappy={times={[1]=2.0, [2]=1.00, [3]=0.35}, uses=30, maxlevel=3}, + max_drop_level = 1, + groupcaps = { + snappy = { times = { [1] = 2.0, [2] = 1.00, [3] = 0.35 }, uses = 30, maxlevel = 3 }, }, - damage_groups = {fleshy=4}, - } + damage_groups = { fleshy = 4 }, + }, }) diff --git a/mods/lord/Player/bones/textures/bones_bone.png b/mods/lord/Player/bones/textures/bones_bone.png index 02cbd97fed9dbe6b4a50f85fd503deedfb63f028..4beed693aa3af885f516da756eeb29e96dfcd6db 100644 GIT binary patch delta 542 zcmV+(0^$9T0k#B?BYy$?NklQAP zkPTkvV=Q_x!n}a?$9-JZBlOh@LBpa3tN4bdtvE)ekA=kd_J0wJ^o;|O!#bb*_&G?> ztaIDDtl4SJE>c7L;IZDV>{AfqvYin zSG^=jNV0LV-U5qLc2bINlU((>fNa%91?11GW%;J=JQI9^L)U#WPMqjh1L&#Z;&z&1dsucBW(azNkl3D5Zb*Zps2oW$d}O)`xmlC8nyu)$5e1t&xee6}gx*kh8#k>~8;xA8@0>mrfv s9FCi82Qnr|+|-<=a`r}$jt>um%LA3(Nr88!0Igu~boFyt=akR{0Cz?)cmMzZ literal 0 HcmV?d00001 From 2d3ee0dbaf17fdf76310c9fc15e39346503ab595 Mon Sep 17 00:00:00 2001 From: alek13 Date: Mon, 26 Jan 2026 17:14:51 +0300 Subject: [PATCH 20/79] Fix `item_place()` overriden in `protector_lott`. --- mods/lord/Blocks/protector_lott/init.lua | 26 ++++++++++++------------ 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/mods/lord/Blocks/protector_lott/init.lua b/mods/lord/Blocks/protector_lott/init.lua index aae12d1c8..dd03e6722 100644 --- a/mods/lord/Blocks/protector_lott/init.lua +++ b/mods/lord/Blocks/protector_lott/init.lua @@ -228,22 +228,22 @@ end protector.old_node_place = minetest.item_place -function minetest.item_place(itemstack, placer, pointed_thing) - - local item_name = minetest.registered_items[itemstack:get_name()] - if item_name then - if item_name.groups.protector then - local user = placer:get_player_name() - local pos = pointed_thing.under - if not protector.can_dig(protector.radius * 2, pos, user, true, 3) then - minetest.chat_send_player(user, - S("Overlaps into another protected area!")) - return protector.old_node_place(itemstack, placer, pos) - end +function minetest.item_place(itemstack, placer, pointed_thing, param2) + + local item_definition = minetest.registered_items[itemstack:get_name()] + if item_definition then + if item_definition.groups and item_definition.groups.protector then + local user = placer:get_player_name() + local pos = pointed_thing.under + if not protector.can_dig(protector.radius * 2, pos, user, true, 3) then + minetest.chat_send_player(user, S("Overlaps into another protected area!")) + + return protector.old_node_place(itemstack, placer, pos, param2) + end end end - return protector.old_node_place(itemstack, placer, pointed_thing) + return protector.old_node_place(itemstack, placer, pointed_thing, param2) end -- END From 1c6f262dc619b6f35e3b0f8e154dbb003dfd54a9 Mon Sep 17 00:00:00 2001 From: alek13 Date: Mon, 26 Jan 2026 17:15:57 +0300 Subject: [PATCH 21/79] `ide-helper`: update to last version. --- util/ide-helper | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/ide-helper b/util/ide-helper index a8a2da405..966a08b59 160000 --- a/util/ide-helper +++ b/util/ide-helper @@ -1 +1 @@ -Subproject commit a8a2da4059bf6a0c22ee69239e5ebfb6a96f7304 +Subproject commit 966a08b597a13bbf4a3122162a5b371185db9bde From 9a884801957720c2b39c1ba6e0f9f16086e5e7e8 Mon Sep 17 00:00:00 2001 From: alek13 Date: Mon, 26 Jan 2026 17:32:55 +0300 Subject: [PATCH 22/79] `lord_beds`: Reduce cyclomatic comlexity. --- .github/workflows/luacheck.yml | 3 +-- mods/lord/Blocks/lord_beds/src/api.lua | 17 +++++++++++------ 2 files changed, 12 insertions(+), 8 deletions(-) diff --git a/.github/workflows/luacheck.yml b/.github/workflows/luacheck.yml index 61ea424f6..887c4834e 100644 --- a/.github/workflows/luacheck.yml +++ b/.github/workflows/luacheck.yml @@ -55,5 +55,4 @@ jobs: mods/lord/Tools/lord_books/ \ mods/lord/Tools/lord_boats/ \ mods/lord/World/Generation/lottmapgen/ \ - mods/lord/Player/Help/lord_tooltips/src/snippet/properties/node.lua \ - mods/lord/Blocks/lord_beds/src/api.lua + mods/lord/Player/Help/lord_tooltips/src/snippet/properties/node.lua diff --git a/mods/lord/Blocks/lord_beds/src/api.lua b/mods/lord/Blocks/lord_beds/src/api.lua index 1f3750247..2d13ffd0a 100644 --- a/mods/lord/Blocks/lord_beds/src/api.lua +++ b/mods/lord/Blocks/lord_beds/src/api.lua @@ -67,6 +67,15 @@ local function can_not_place(player_name, pos, botpos) return false end +--- @param pointed_thing pointed_thing +--- @param under_definition NodeDefinition|nil of pointed_thing.under node +--- @return Position +local function get_position_to_place(pointed_thing, under_definition) + return (under_definition and under_definition.buildable_to) + and pointed_thing.under + or pointed_thing.above +end + function beds.register_bed(name, def) minetest.register_node(name .. "_bottom", { description = def.description, @@ -98,12 +107,7 @@ function beds.register_bed(name, def) return udef.on_rightclick(under, node, placer, itemstack, pointed_thing) or itemstack end - local pos - if udef and udef.buildable_to then - pos = under - else - pos = pointed_thing.above - end + local pos = get_position_to_place(pointed_thing, udef) local player_name = placer and placer:get_player_name() or "" local dir = placer and placer:get_look_dir() and @@ -119,6 +123,7 @@ function beds.register_bed(name, def) if not minetest.is_creative_enabled(player_name) then itemstack:take_item() end + return itemstack end, From 7a69caa4b1e6ea72a325705eaa2559d982b842c1 Mon Sep 17 00:00:00 2001 From: alek13 Date: Tue, 27 Jan 2026 04:06:05 +0300 Subject: [PATCH 23/79] Gen.Library: actualize types and use new `IntegerVector`/`PositionVector` types. LG-2051 --- mods/lord/Core/map/src/map/Cuboid.lua | 4 ++-- mods/lord/Core/map/src/map/Room.lua | 18 +++++++++++------- mods/lord/Core/map/src/map/Room/Wall.lua | 2 -- util/ide-helper | 2 +- 4 files changed, 14 insertions(+), 12 deletions(-) diff --git a/mods/lord/Core/map/src/map/Cuboid.lua b/mods/lord/Core/map/src/map/Cuboid.lua index d543b1ba8..187b2cbde 100644 --- a/mods/lord/Core/map/src/map/Cuboid.lua +++ b/mods/lord/Core/map/src/map/Cuboid.lua @@ -1,7 +1,7 @@ --- @class Voxrame.map.Cuboid ---- @field public from Position ---- @field public to Position +--- @field public from PositionVector +--- @field public to PositionVector local Cuboid = {} diff --git a/mods/lord/Core/map/src/map/Room.lua b/mods/lord/Core/map/src/map/Room.lua index ce1d34cdb..85895bab3 100644 --- a/mods/lord/Core/map/src/map/Room.lua +++ b/mods/lord/Core/map/src/map/Room.lua @@ -11,12 +11,14 @@ local id_air = id('air') --- @abstract --- @class Voxrame.map.Room: Voxrame.map.Cuboid local Room = { - --- @type vector + --- @type PositionVector center = nil, --- @diagnostic disable-line: assign-type-mismatch - --- @type vector + --- @type IntegerVector size = nil, --- @diagnostic disable-line: assign-type-mismatch --- @type Voxrame.map.Room.Walls walls = nil, --- @diagnostic disable-line: assign-type-mismatch + --- @type Voxrame.map.Room.Exit[] + exits = nil, --- @diagnostic disable-line: assign-type-mismatch --- @protected --- @type VoxelArea area = nil, --- @diagnostic disable-line: assign-type-mismatch @@ -51,8 +53,9 @@ function Room.set_debug_node_id(node_id) return Room end ---- @param position vector ---- @param size vector? +--- @param position PositionVector +--- @param size IntegerVector? +--- @return self function Room:new(position, size) size = size or self.size or v(9, 5, 9) @@ -93,7 +96,7 @@ end --- @param name Voxrame.map.Room.Wall.Type name of wall. --- @param inside_room boolean? if true, corners will be shifted one node inside the room. ---- @return vector[] +--- @return PositionVector[] function Room:get_corners_of(name, inside_room) inside_room = inside_room or false @@ -136,7 +139,7 @@ function Room:get_corners_of(name, inside_room) return corners end ---- @param position vector +--- @param position PositionVector --- @param length? number --- @return vector function Room:to_center_from(position, length) @@ -145,7 +148,7 @@ function Room:to_center_from(position, length) return ((self.center - position):normalize() * length) end ---- @param position vector +--- @param position PositionVector --- @param length? number --- @return vector function Room:from_center_to(position, length) @@ -224,6 +227,7 @@ end --- @param area VoxelArea --- @param data integer[] +--- @return self function Room:generate(area, data) self.area = area self.data = data diff --git a/mods/lord/Core/map/src/map/Room/Wall.lua b/mods/lord/Core/map/src/map/Room/Wall.lua index fbf53b30e..e12a097f1 100644 --- a/mods/lord/Core/map/src/map/Room/Wall.lua +++ b/mods/lord/Core/map/src/map/Room/Wall.lua @@ -2,8 +2,6 @@ local WallType = require('map.Room.Wall.Type') --- @class Voxrame.map.Room.Wall: Voxrame.map.Cuboid ---- @field public from vector ---- @field public to vector --local Wall = {} diff --git a/util/ide-helper b/util/ide-helper index 966a08b59..e21367325 160000 --- a/util/ide-helper +++ b/util/ide-helper @@ -1 +1 @@ -Subproject commit 966a08b597a13bbf4a3122162a5b371185db9bde +Subproject commit e21367325ccb69994656a5280e542220d0f1815b From 85056cf0ecda205c1662ceb8228da9b71b929730 Mon Sep 17 00:00:00 2001 From: alek13 Date: Wed, 28 Jan 2026 02:24:02 +0300 Subject: [PATCH 24/79] Gen.Library: change namespace naming. LG-2051 --- mods/lord/Core/map/src/map.lua | 10 ++++++++++ mods/lord/Core/map/src/map/Room.lua | 17 +++++++---------- mods/lord/Core/map/src/map/Room/Wall.lua | 11 ----------- mods/lord/Core/map/src/map/Room/Walls.lua | 8 -------- mods/lord/Core/map/src/map/room/Wall.lua | 9 +++++++++ mods/lord/Core/map/src/map/room/Walls.lua | 8 ++++++++ .../src/map/{Room/Wall => room/wall}/Type.lua | 2 +- 7 files changed, 35 insertions(+), 30 deletions(-) delete mode 100644 mods/lord/Core/map/src/map/Room/Wall.lua delete mode 100644 mods/lord/Core/map/src/map/Room/Walls.lua create mode 100644 mods/lord/Core/map/src/map/room/Wall.lua create mode 100644 mods/lord/Core/map/src/map/room/Walls.lua rename mods/lord/Core/map/src/map/{Room/Wall => room/wall}/Type.lua (78%) diff --git a/mods/lord/Core/map/src/map.lua b/mods/lord/Core/map/src/map.lua index 98ea290cd..1cbebb2f0 100644 --- a/mods/lord/Core/map/src/map.lua +++ b/mods/lord/Core/map/src/map.lua @@ -5,4 +5,14 @@ Voxrame = Voxrame or {} Voxrame.map = { --- @type Voxrame.map.Room Room = require('map.Room'), + --- @namespace Voxrame.map.room + room = { + Wall = require('map.room.Wall'), + --- @namespace Voxrame.map.room.wall + wall = { + Type = require('map.room.wall.Type') + }, + Walls = require('map.room.Walls'), + -- TODO: Exit = require('map.room.Exit'), + }, } diff --git a/mods/lord/Core/map/src/map/Room.lua b/mods/lord/Core/map/src/map/Room.lua index 85895bab3..b20a4a6dd 100644 --- a/mods/lord/Core/map/src/map/Room.lua +++ b/mods/lord/Core/map/src/map/Room.lua @@ -1,8 +1,7 @@ local setmetatable, v, id = setmetatable, vector.new, core.get_content_id -local RoomWall = require('map.Room.Wall') -local WallType = require('map.Room.Wall.Type') +local WallType = require('map.room.wall.Type') @@ -15,9 +14,9 @@ local Room = { center = nil, --- @diagnostic disable-line: assign-type-mismatch --- @type IntegerVector size = nil, --- @diagnostic disable-line: assign-type-mismatch - --- @type Voxrame.map.Room.Walls + --- @type Voxrame.map.room.Walls walls = nil, --- @diagnostic disable-line: assign-type-mismatch - --- @type Voxrame.map.Room.Exit[] + --- @type Voxrame.map.room.Exit[] exits = nil, --- @diagnostic disable-line: assign-type-mismatch --- @protected --- @type VoxelArea @@ -32,8 +31,6 @@ local Room = { --- @static --- @type integer debug_node_id = 0, - - Wall = RoomWall, } core.register_on_mods_loaded(function() Room.debug_node_id = Room.debug_node_id ~= 0 -- already set by another mod? @@ -77,9 +74,9 @@ function Room:set_debug(debug) return self end ---- @param name Voxrame.map.Room.Wall.Type name of wall. +--- @param name Voxrame.map.room.wall.Type name of wall. --- @param inside_room boolean? if true, corners will be shifted one node inside the room. ---- @return Voxrame.map.Room.Wall +--- @return Voxrame.map.room.Wall function Room:get_wall(name, inside_room) inside_room = inside_room or false @@ -94,13 +91,13 @@ function Room:get_wall(name, inside_room) return wall end ---- @param name Voxrame.map.Room.Wall.Type name of wall. +--- @param name Voxrame.map.room.wall.Type name of wall. --- @param inside_room boolean? if true, corners will be shifted one node inside the room. --- @return PositionVector[] function Room:get_corners_of(name, inside_room) inside_room = inside_room or false - --- @type Voxrame.map.Room.Wall + --- @type Voxrame.map.room.Wall local wall = self.walls[name] local from = wall.from local to = wall.to diff --git a/mods/lord/Core/map/src/map/Room/Wall.lua b/mods/lord/Core/map/src/map/Room/Wall.lua deleted file mode 100644 index e12a097f1..000000000 --- a/mods/lord/Core/map/src/map/Room/Wall.lua +++ /dev/null @@ -1,11 +0,0 @@ -local WallType = require('map.Room.Wall.Type') - - ---- @class Voxrame.map.Room.Wall: Voxrame.map.Cuboid ---local Wall = {} - - -return { - --- @type Voxrame.map.Room.Wall.Type - Type = WallType -} diff --git a/mods/lord/Core/map/src/map/Room/Walls.lua b/mods/lord/Core/map/src/map/Room/Walls.lua deleted file mode 100644 index 55bce02c0..000000000 --- a/mods/lord/Core/map/src/map/Room/Walls.lua +++ /dev/null @@ -1,8 +0,0 @@ - ---- @class Voxrame.map.Room.Walls ---- @field north Voxrame.map.Room.Wall ---- @field south Voxrame.map.Room.Wall ---- @field east Voxrame.map.Room.Wall ---- @field west Voxrame.map.Room.Wall ---- @field floor Voxrame.map.Room.Wall ---- @field ceiling Voxrame.map.Room.Wall diff --git a/mods/lord/Core/map/src/map/room/Wall.lua b/mods/lord/Core/map/src/map/room/Wall.lua new file mode 100644 index 000000000..3c06f7dff --- /dev/null +++ b/mods/lord/Core/map/src/map/room/Wall.lua @@ -0,0 +1,9 @@ +local Cuboid = require('map.Cuboid') + + +--- @class Voxrame.map.room.Wall: Voxrame.map.Cuboid +local Wall = {} +setmetatable(Wall, { __index = Cuboid }) + + +return Wall diff --git a/mods/lord/Core/map/src/map/room/Walls.lua b/mods/lord/Core/map/src/map/room/Walls.lua new file mode 100644 index 000000000..e86752173 --- /dev/null +++ b/mods/lord/Core/map/src/map/room/Walls.lua @@ -0,0 +1,8 @@ + +--- @class Voxrame.map.room.Walls: table +--- @field north Voxrame.map.room.Wall +--- @field south Voxrame.map.room.Wall +--- @field east Voxrame.map.room.Wall +--- @field west Voxrame.map.room.Wall +--- @field floor Voxrame.map.room.Wall +--- @field ceiling Voxrame.map.room.Wall diff --git a/mods/lord/Core/map/src/map/Room/Wall/Type.lua b/mods/lord/Core/map/src/map/room/wall/Type.lua similarity index 78% rename from mods/lord/Core/map/src/map/Room/Wall/Type.lua rename to mods/lord/Core/map/src/map/room/wall/Type.lua index 51c1bc27e..0ed4368a9 100644 --- a/mods/lord/Core/map/src/map/Room/Wall/Type.lua +++ b/mods/lord/Core/map/src/map/room/wall/Type.lua @@ -1,5 +1,5 @@ ---- @enum Voxrame.map.Room.Wall.Type: string +--- @enum Voxrame.map.room.wall.Type: string local WallType = { floor = 'floor', ceiling = 'ceiling', From eedc1b292c34a1fd4c12ed127f52b199a76f89b1 Mon Sep 17 00:00:00 2001 From: alek13 Date: Wed, 28 Jan 2026 04:18:46 +0300 Subject: [PATCH 25/79] Gen.Library: `Voxrame.map.Cuboid` draft as class. LG-2059 --- mods/lord/Core/map/src/map/Cuboid.lua | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/mods/lord/Core/map/src/map/Cuboid.lua b/mods/lord/Core/map/src/map/Cuboid.lua index 187b2cbde..4bf0fc608 100644 --- a/mods/lord/Core/map/src/map/Cuboid.lua +++ b/mods/lord/Core/map/src/map/Cuboid.lua @@ -4,5 +4,28 @@ --- @field public to PositionVector local Cuboid = {} +-- TODO: +-- also needed to create cuboids by `Cuboid:new`, and fix creation of child classes + +-- --- @param from Position +-- --- @param to Position +-- --- @return self +-- function Cuboid:new(from, to) +-- from, to = vector.sort(from, to) + +-- local class = self +-- self = {} +-- self.from = from +-- self.to = to + +-- return setmetatable(self, { __index = class }) +-- end + +-- --- @param position Position +-- --- @return boolean +-- function Cuboid:contains(position) +-- return vector.in_area(position, self.from, self.to) +-- end + return Cuboid From f50bf9a599d63a6216667b6db188fedf1399f123 Mon Sep 17 00:00:00 2001 From: alek13 Date: Fri, 30 Jan 2026 00:05:22 +0300 Subject: [PATCH 26/79] Gen.Library: `Voxrame.map.room.Exit` class. LG-2053 --- mods/lord/Core/map/src/map.lua | 2 +- mods/lord/Core/map/src/map/Room.lua | 17 ++++ mods/lord/Core/map/src/map/room/Exit.lua | 117 +++++++++++++++++++++++ 3 files changed, 135 insertions(+), 1 deletion(-) create mode 100644 mods/lord/Core/map/src/map/room/Exit.lua diff --git a/mods/lord/Core/map/src/map.lua b/mods/lord/Core/map/src/map.lua index 1cbebb2f0..e68f67474 100644 --- a/mods/lord/Core/map/src/map.lua +++ b/mods/lord/Core/map/src/map.lua @@ -13,6 +13,6 @@ Voxrame.map = { Type = require('map.room.wall.Type') }, Walls = require('map.room.Walls'), - -- TODO: Exit = require('map.room.Exit'), + Exit = require('map.room.Exit'), }, } diff --git a/mods/lord/Core/map/src/map/Room.lua b/mods/lord/Core/map/src/map/Room.lua index b20a4a6dd..8fc97792f 100644 --- a/mods/lord/Core/map/src/map/Room.lua +++ b/mods/lord/Core/map/src/map/Room.lua @@ -136,6 +136,23 @@ function Room:get_corners_of(name, inside_room) return corners end +--- @param wall_type Voxrame.map.room.wall.Type +--- @return PositionVector +function Room:center_of(wall_type) + local wall = self:get_wall(wall_type) + + return ((wall.from + wall.to) / 2):floor() +end + +--- @param side Voxrame.map.room.wall.Type +--- @return PositionVector +function Room:floor_center_of(side) + local position = self:center_of(side) + position.y = self.walls['floor'].from.y + 1 + + return position +end + --- @param position PositionVector --- @param length? number --- @return vector diff --git a/mods/lord/Core/map/src/map/room/Exit.lua b/mods/lord/Core/map/src/map/room/Exit.lua new file mode 100644 index 000000000..4fc167b8e --- /dev/null +++ b/mods/lord/Core/map/src/map/room/Exit.lua @@ -0,0 +1,117 @@ +local type, v + = type, vector.new + +local WallType = require('map.room.wall.Type') + + +--- @class Voxrame.map.room.Exit +--- @field public direction vector direction from room to outside (normalized). +--- @field public frame Voxrame.map.Cuboid coordinates of exit frame. If only `to` is set, its used to store size. +local Exit = {} + +--- @protected +--- @return self +function Exit:new(direction, frame) + self = setmetatable({}, { __index = self }) + self.direction = direction or nil + self.frame = frame or { + from = nil, + to = nil, + } + + return self +end + +--- Sets exit direction to specified wall side or vector. +--- If `side` is a vector, it is normalized and used as `.direction` property. +--- If `side` is a wall type, the `.direction` sets to vector to a corresponding wall. +--- +--- @static +--- @param side Voxrame.map.room.wall.Type|vector +--- @return self +function Exit.to(side) + --- @type vector + local direction + + if type(side) ~= 'string' then + --- @cast side vector + direction = side:normalize() + + return Exit:new(direction) + end + + --- @cast side string + assert(side:is_one_of(WallType)) + local directions = { + [WallType.north] = v( 0, 0, 1), + [WallType.south] = v( 0, 0, -1), + [WallType.east] = v( 1, 0, 0), + [WallType.west] = v(-1, 0, 0), + [WallType.floor] = v( 0, -1, 0), + [WallType.ceiling] = v( 0, 1, 0), + } + direction = directions[side] or v(0, 0, 0) + + return Exit:new(direction) +end + +--- Configures exit position and calculates exit `.frame` coordinates. +--- * If exit size was not set before, default size (1x2) is used. +--- * If called multiple times, exit is repositioned to new `position` keeping its size. +--- @param position PositionVector position of the exit (bottom center of the exit frame). +--- @return self +function Exit:at(position) + + --- @type IntegerVector + local size = self.frame.to + and (self.frame.from -- both `from` and `to` are set + -- here we assume that this is already a "repositioning" of the exit to a new `position` + and self.frame.to - self.frame.from + v(1, 1, 1) + -- here size is stored in `to` because `from` was not set yet + -- and `with_size()` was called before `at()`, so we use it as size + or self.frame.to + ) + -- default size if neither `from` nor `to` were set + or v(1, 2, 1) + + self.frame.from = position - (size / 2):floor() + self.frame.from.y = position.y + self.frame.to = self.frame.from + size - v(1, 1, 1) + + return self +end + +--- @param width number +--- @param height number +--- @return self +function Exit:with_size(width, height) + --- @type IntegerVector + local size + + if self.direction.x ~= 0 then + size = v(1, height, width) + elseif self.direction.y ~= 0 then + size = v(width, 1, height) + else + size = v(width, height, 1) + end + + if not self.frame.from then + -- here size is stores in `to` because `from` was not set yet, + -- and `at()` was not called yet + self.frame.to = size + else + -- keeping exit's bottom center position + local position_y = self.frame.from.y + local center = ((self.frame.from + self.frame.to) / 2):floor() + self.frame.from = center - (size / 2):floor() + self.frame.from.y = position_y + + self.frame.to = self.frame.from + size - v(1, 1, 1) + end + + return self +end + + +return Exit From 02b88f392d19ef8c9f8503fb1b5d0449d5c516e1 Mon Sep 17 00:00:00 2001 From: Van <82447582+varttist@users.noreply.github.com> Date: Mon, 2 Feb 2026 03:09:32 +0300 Subject: [PATCH 27/79] Rename modpack `Tools` -> `Items` (#2351) * Rename modpack `Tools` -> `Items`. Edit .`distribution-exclude` * Renaming remaining references to Tools to Items * Review changes --- .distribution-exclude | 4 ++-- .github/workflows/luacheck.yml | 6 +++--- .../{Tools => Items}/Admin/admin_tools/init.lua | 0 .../{Tools => Items}/Admin/admin_tools/mod.conf | 0 .../admin_tools/textures/lord_tools_pointer.png | Bin .../Admin/admin_tools/textures/tool_admin_pick.png | Bin .../Admin/admin_tools/textures/tool_magic_stick.png | Bin mods/lord/Items/Admin/modpack.conf | 1 + mods/lord/{Tools => Items}/bags/init.lua | 0 mods/lord/{Tools => Items}/bags/locale/bags.en.tr | 0 mods/lord/{Tools => Items}/bags/locale/bags.ru.tr | 0 mods/lord/{Tools => Items}/bags/locale/template.txt | 0 mods/lord/{Tools => Items}/bags/mod.conf | 0 .../{Tools => Items}/bags/textures/bags_large.png | Bin .../{Tools => Items}/bags/textures/bags_medium.png | Bin .../{Tools => Items}/bags/textures/bags_small.png | Bin mods/lord/{Tools => Items}/clans_clothes/init.lua | 0 .../clans_clothes/locale/clans_clothes.en.tr | 0 .../clans_clothes/locale/clans_clothes.ru.tr | 0 mods/lord/{Tools => Items}/clans_clothes/mod.conf | 0 .../textures/clans_clothes_cloak_bmg.png | Bin .../textures/clans_clothes_cloak_bmg_inv.png | Bin .../textures/clans_clothes_cloak_hansa.png | Bin .../textures/clans_clothes_cloak_hansa_inv.png | Bin .../textures/clans_clothes_cloak_international.png | Bin .../clans_clothes_cloak_international_inv.png | Bin .../textures/clans_clothes_cloak_masons.png | Bin .../textures/clans_clothes_cloak_masons_inv.png | Bin .../textures/clans_clothes_cloak_vassals.png | Bin .../textures/clans_clothes_cloak_vassals_inv.png | Bin mods/lord/{Tools => Items}/clans_tools/init.lua | 0 .../clans_tools/locale/cert-text.en.lua | 0 .../clans_tools/locale/cert-text.ru.lua | 0 .../clans_tools/locale/clans_tools.ru.tr | 0 mods/lord/{Tools => Items}/clans_tools/mod.conf | 0 .../clans_tools/src/base_certificate.lua | 0 .../clans_tools/src/base_certificate/Form.lua | 0 .../textures/clans_tools_base_certificate.png | Bin .../clans_tools_base_certificate_form_bg.png | Bin mods/lord/{Tools => Items}/easter/init.lua | 0 .../{Tools => Items}/easter/locale/easter.ru.tr | 0 mods/lord/{Tools => Items}/easter/mod.conf | 0 mods/lord/{Tools => Items}/easter/src/easter.lua | 0 .../easter/textures/easter_blue_egg.png | Bin .../easter/textures/easter_green_egg.png | Bin .../easter/textures/easter_red_egg.png | Bin .../easter/textures/easter_yellow_egg.png | Bin mods/lord/{Tools => Items}/lord_alcohol/init.lua | 0 mods/lord/{Tools => Items}/lord_alcohol/legacy.lua | 0 .../lord_alcohol/locale/lord_alcohol.en.tr | 0 .../lord_alcohol/locale/lord_alcohol.ru.tr | 0 mods/lord/{Tools => Items}/lord_alcohol/mod.conf | 0 .../lord_alcohol/src/lord_alcohol.lua | 0 .../lord_alcohol/src/lord_alcohol/api.lua | 0 .../lord_alcohol/src/lord_alcohol/config.lua | 0 .../lord_alcohol/textures/empty_16x16.png | Bin .../lord_alcohol/textures/lord_alcohol_ale.png | Bin .../lord_alcohol/textures/lord_alcohol_beer.png | Bin .../lord_alcohol/textures/lord_alcohol_cider.png | Bin .../lord_alcohol/textures/lord_alcohol_mead.png | Bin .../lord_alcohol/textures/lord_alcohol_wine.png | Bin mods/lord/{Tools => Items}/lord_archery/init.lua | 0 .../lord_archery/locale/lord_bows.en.tr | 0 .../lord_archery/locale/lord_bows.ru.tr | 0 mods/lord/{Tools => Items}/lord_archery/mod.conf | 0 .../{Tools => Items}/lord_archery/sounds/LICENSE | 0 .../sounds/lord_archery_arrow_release.ogg | Bin .../lord_archery/sounds/lord_archery_bow_charge.ogg | Bin .../lord_archery/src/lord_archery.lua | 0 .../lord_archery/src/lord_archery/config.lua | 0 .../lord_archery/src/lord_archery/config/bows.lua | 0 .../lord_archery/src/lord_archery/config/crafts.lua | 0 .../src/lord_archery/config/crafts/bows.lua | 0 .../src/lord_archery/config/crafts/crossbows.lua | 0 .../src/lord_archery/config/crafts/throwables.lua | 0 .../src/lord_archery/config/crossbows.lua | 0 .../src/lord_archery/config/throwables.lua | 0 .../textures/bows/lord_archery_alder_wood_bow.png | Bin .../textures/bows/lord_archery_alder_wood_bow_1.png | Bin .../textures/bows/lord_archery_alder_wood_bow_2.png | Bin .../textures/bows/lord_archery_alder_wood_bow_3.png | Bin .../textures/bows/lord_archery_apple_wood_bow.png | Bin .../textures/bows/lord_archery_apple_wood_bow_1.png | Bin .../textures/bows/lord_archery_apple_wood_bow_2.png | Bin .../textures/bows/lord_archery_apple_wood_bow_3.png | Bin .../textures/bows/lord_archery_birch_wood_bow.png | Bin .../textures/bows/lord_archery_birch_wood_bow_1.png | Bin .../textures/bows/lord_archery_birch_wood_bow_2.png | Bin .../textures/bows/lord_archery_birch_wood_bow_3.png | Bin .../bows/lord_archery_lebethron_wood_bow.png | Bin .../bows/lord_archery_lebethron_wood_bow_1.png | Bin .../bows/lord_archery_lebethron_wood_bow_2.png | Bin .../bows/lord_archery_lebethron_wood_bow_3.png | Bin .../textures/bows/lord_archery_mallorn_wood_bow.png | Bin .../bows/lord_archery_mallorn_wood_bow_1.png | Bin .../bows/lord_archery_mallorn_wood_bow_2.png | Bin .../bows/lord_archery_mallorn_wood_bow_3.png | Bin .../crossbows/lord_archery_galvorn_crossbow.png | Bin .../crossbows/lord_archery_galvorn_crossbow_1.png | Bin .../crossbows/lord_archery_galvorn_crossbow_2.png | Bin .../crossbows/lord_archery_galvorn_crossbow_3.png | Bin .../crossbows/lord_archery_gold_crossbow.png | Bin .../crossbows/lord_archery_gold_crossbow_1.png | Bin .../crossbows/lord_archery_gold_crossbow_2.png | Bin .../crossbows/lord_archery_gold_crossbow_3.png | Bin .../crossbows/lord_archery_mithril_crossbow.png | Bin .../crossbows/lord_archery_mithril_crossbow_1.png | Bin .../crossbows/lord_archery_mithril_crossbow_2.png | Bin .../crossbows/lord_archery_mithril_crossbow_3.png | Bin .../crossbows/lord_archery_silver_crossbow.png | Bin .../crossbows/lord_archery_silver_crossbow_1.png | Bin .../crossbows/lord_archery_silver_crossbow_2.png | Bin .../crossbows/lord_archery_silver_crossbow_3.png | Bin .../crossbows/lord_archery_steel_crossbow.png | Bin .../crossbows/lord_archery_steel_crossbow_1.png | Bin .../crossbows/lord_archery_steel_crossbow_2.png | Bin .../crossbows/lord_archery_steel_crossbow_3.png | Bin .../crossbows/lord_archery_tin_crossbow.png | Bin .../crossbows/lord_archery_tin_crossbow_1.png | Bin .../crossbows/lord_archery_tin_crossbow_2.png | Bin .../crossbows/lord_archery_tin_crossbow_3.png | Bin .../crossbows/lord_archery_wooden_crossbow.png | Bin .../crossbows/lord_archery_wooden_crossbow_1.png | Bin .../crossbows/lord_archery_wooden_crossbow_2.png | Bin .../crossbows/lord_archery_wooden_crossbow_3.png | Bin .../throwables/lord_archery_bronze_throwing_axe.png | Bin .../lord_archery_galvorn_throwing_axe.png | Bin .../lord_archery_mithril_throwing_axe.png | Bin .../throwables/lord_archery_steel_throwing_axe.png | Bin mods/lord/{Tools => Items}/lord_armor/init.lua | 0 .../lord_armor/locale/lord_armor.en.tr | 0 .../lord_armor/locale/lord_armor.ru.tr | 0 .../{Tools => Items}/lord_armor/locale/template.txt | 0 mods/lord/{Tools => Items}/lord_armor/mod.conf | 0 mods/lord/{Tools => Items}/lord_armor/src/armor.lua | 0 .../lord/{Tools => Items}/lord_armor/src/shield.lua | 0 .../lord_armor/textures/lottarmor_boots_bronze.png | Bin .../textures/lottarmor_boots_bronze_preview.png | Bin .../lord_armor/textures/lottarmor_boots_copper.png | Bin .../textures/lottarmor_boots_copper_preview.png | Bin .../lord_armor/textures/lottarmor_boots_galvorn.png | Bin .../textures/lottarmor_boots_galvorn_preview.png | Bin .../lord_armor/textures/lottarmor_boots_gold.png | Bin .../textures/lottarmor_boots_gold_preview.png | Bin .../lord_armor/textures/lottarmor_boots_mithril.png | Bin .../textures/lottarmor_boots_mithril_preview.png | Bin .../lord_armor/textures/lottarmor_boots_silver.png | Bin .../textures/lottarmor_boots_silver_preview.png | Bin .../lord_armor/textures/lottarmor_boots_steel.png | Bin .../textures/lottarmor_boots_steel_preview.png | Bin .../lord_armor/textures/lottarmor_boots_tin.png | Bin .../textures/lottarmor_boots_tin_preview.png | Bin .../lord_armor/textures/lottarmor_boots_wood.png | Bin .../textures/lottarmor_boots_wood_preview.png | Bin .../textures/lottarmor_chestplate_bronze.png | Bin .../lottarmor_chestplate_bronze_preview.png | Bin .../textures/lottarmor_chestplate_copper.png | Bin .../lottarmor_chestplate_copper_preview.png | Bin .../textures/lottarmor_chestplate_galvorn.png | Bin .../lottarmor_chestplate_galvorn_preview.png | Bin .../textures/lottarmor_chestplate_gold.png | Bin .../textures/lottarmor_chestplate_gold_preview.png | Bin .../textures/lottarmor_chestplate_mithril.png | Bin .../lottarmor_chestplate_mithril_preview.png | Bin .../textures/lottarmor_chestplate_silver.png | Bin .../lottarmor_chestplate_silver_preview.png | Bin .../textures/lottarmor_chestplate_steel.png | Bin .../textures/lottarmor_chestplate_steel_preview.png | Bin .../textures/lottarmor_chestplate_tin.png | Bin .../textures/lottarmor_chestplate_tin_preview.png | Bin .../textures/lottarmor_chestplate_wood.png | Bin .../textures/lottarmor_chestplate_wood_preview.png | Bin .../lord_armor/textures/lottarmor_helmet_bronze.png | Bin .../textures/lottarmor_helmet_bronze_preview.png | Bin .../lord_armor/textures/lottarmor_helmet_copper.png | Bin .../textures/lottarmor_helmet_copper_preview.png | Bin .../textures/lottarmor_helmet_galvorn.png | Bin .../textures/lottarmor_helmet_galvorn_preview.png | Bin .../lord_armor/textures/lottarmor_helmet_gold.png | Bin .../textures/lottarmor_helmet_gold_preview.png | Bin .../textures/lottarmor_helmet_mithril.png | Bin .../textures/lottarmor_helmet_mithril_preview.png | Bin .../lord_armor/textures/lottarmor_helmet_silver.png | Bin .../textures/lottarmor_helmet_silver_preview.png | Bin .../lord_armor/textures/lottarmor_helmet_steel.png | Bin .../textures/lottarmor_helmet_steel_preview.png | Bin .../lord_armor/textures/lottarmor_helmet_tin.png | Bin .../textures/lottarmor_helmet_tin_preview.png | Bin .../lord_armor/textures/lottarmor_helmet_wood.png | Bin .../textures/lottarmor_helmet_wood_preview.png | Bin .../textures/lottarmor_inv_boots_bronze.png | Bin .../textures/lottarmor_inv_boots_copper.png | Bin .../textures/lottarmor_inv_boots_galvorn.png | Bin .../textures/lottarmor_inv_boots_gold.png | Bin .../textures/lottarmor_inv_boots_mithril.png | Bin .../textures/lottarmor_inv_boots_silver.png | Bin .../textures/lottarmor_inv_boots_steel.png | Bin .../lord_armor/textures/lottarmor_inv_boots_tin.png | Bin .../textures/lottarmor_inv_boots_wood.png | Bin .../textures/lottarmor_inv_chestplate_bronze.png | Bin .../textures/lottarmor_inv_chestplate_copper.png | Bin .../textures/lottarmor_inv_chestplate_galvorn.png | Bin .../textures/lottarmor_inv_chestplate_gold.png | Bin .../textures/lottarmor_inv_chestplate_mithril.png | Bin .../textures/lottarmor_inv_chestplate_silver.png | Bin .../textures/lottarmor_inv_chestplate_steel.png | Bin .../textures/lottarmor_inv_chestplate_tin.png | Bin .../textures/lottarmor_inv_chestplate_wood.png | Bin .../textures/lottarmor_inv_helmet_bronze.png | Bin .../textures/lottarmor_inv_helmet_copper.png | Bin .../textures/lottarmor_inv_helmet_galvorn.png | Bin .../textures/lottarmor_inv_helmet_gold.png | Bin .../textures/lottarmor_inv_helmet_mithril.png | Bin .../textures/lottarmor_inv_helmet_silver.png | Bin .../textures/lottarmor_inv_helmet_steel.png | Bin .../textures/lottarmor_inv_helmet_tin.png | Bin .../textures/lottarmor_inv_helmet_wood.png | Bin .../textures/lottarmor_inv_leggings_bronze.png | Bin .../textures/lottarmor_inv_leggings_copper.png | Bin .../textures/lottarmor_inv_leggings_galvorn.png | Bin .../textures/lottarmor_inv_leggings_gold.png | Bin .../textures/lottarmor_inv_leggings_mithril.png | Bin .../textures/lottarmor_inv_leggings_silver.png | Bin .../textures/lottarmor_inv_leggings_steel.png | Bin .../textures/lottarmor_inv_leggings_tin.png | Bin .../textures/lottarmor_inv_leggings_wood.png | Bin .../textures/lottarmor_inv_shield_bronze.png | Bin .../textures/lottarmor_inv_shield_copper.png | Bin .../textures/lottarmor_inv_shield_galvorn.png | Bin .../textures/lottarmor_inv_shield_gold.png | Bin .../textures/lottarmor_inv_shield_mithril.png | Bin .../textures/lottarmor_inv_shield_silver.png | Bin .../textures/lottarmor_inv_shield_steel.png | Bin .../textures/lottarmor_inv_shield_tin.png | Bin .../textures/lottarmor_inv_shield_wood.png | Bin .../textures/lottarmor_leggings_bronze.png | Bin .../textures/lottarmor_leggings_bronze_preview.png | Bin .../textures/lottarmor_leggings_copper.png | Bin .../textures/lottarmor_leggings_copper_preview.png | Bin .../textures/lottarmor_leggings_galvorn.png | Bin .../textures/lottarmor_leggings_galvorn_preview.png | Bin .../lord_armor/textures/lottarmor_leggings_gold.png | Bin .../textures/lottarmor_leggings_gold_preview.png | Bin .../textures/lottarmor_leggings_mithril.png | Bin .../textures/lottarmor_leggings_mithril_preview.png | Bin .../textures/lottarmor_leggings_silver.png | Bin .../textures/lottarmor_leggings_silver_preview.png | Bin .../textures/lottarmor_leggings_steel.png | Bin .../textures/lottarmor_leggings_steel_preview.png | Bin .../lord_armor/textures/lottarmor_leggings_tin.png | Bin .../textures/lottarmor_leggings_tin_preview.png | Bin .../lord_armor/textures/lottarmor_leggings_wood.png | Bin .../textures/lottarmor_leggings_wood_preview.png | Bin .../lord_armor/textures/lottarmor_shield_bronze.png | Bin .../textures/lottarmor_shield_bronze_preview.png | Bin .../lord_armor/textures/lottarmor_shield_copper.png | Bin .../textures/lottarmor_shield_copper_preview.png | Bin .../textures/lottarmor_shield_galvorn.png | Bin .../textures/lottarmor_shield_galvorn_preview.png | Bin .../lord_armor/textures/lottarmor_shield_gold.png | Bin .../textures/lottarmor_shield_gold_preview.png | Bin .../textures/lottarmor_shield_mithril.png | Bin .../textures/lottarmor_shield_mithril_preview.png | Bin .../lord_armor/textures/lottarmor_shield_silver.png | Bin .../textures/lottarmor_shield_silver_preview.png | Bin .../lord_armor/textures/lottarmor_shield_steel.png | Bin .../textures/lottarmor_shield_steel_preview.png | Bin .../lord_armor/textures/lottarmor_shield_tin.png | Bin .../textures/lottarmor_shield_tin_preview.png | Bin .../lord_armor/textures/lottarmor_shield_wood.png | Bin .../textures/lottarmor_shield_wood_preview.png | Bin mods/lord/{Tools => Items}/lord_boats/functions.lua | 0 mods/lord/{Tools => Items}/lord_boats/init.lua | 0 mods/lord/{Tools => Items}/lord_boats/license.txt | 0 .../lord_boats/locale/lord_boats.ru.tr | 0 .../{Tools => Items}/lord_boats/locale/template.txt | 0 mods/lord/{Tools => Items}/lord_boats/mod.conf | 0 .../{Tools => Items}/lord_boats/models/rowboat.b3d | Bin .../{Tools => Items}/lord_boats/models/rowboat.obj | 0 .../{Tools => Items}/lord_boats/models/sailboat.b3d | Bin .../{Tools => Items}/lord_boats/models/sailboat.obj | 0 .../lord_boats/textures/rowboat_inventory.png | Bin .../lord_boats/textures/rowboat_wield.png | Bin .../lord_boats/textures/sailboat.png | Bin .../lord_boats/textures/sailboat_inventory.png | Bin .../lord_boats/textures/sailboat_wield.png | Bin mods/lord/{Tools => Items}/lord_books/alcohol.lua | 0 mods/lord/{Tools => Items}/lord_books/cooking.lua | 0 mods/lord/{Tools => Items}/lord_books/crafts.lua | 0 mods/lord/{Tools => Items}/lord_books/forbidden.lua | 0 mods/lord/{Tools => Items}/lord_books/init.lua | 0 mods/lord/{Tools => Items}/lord_books/license.txt | 0 .../lord_books/locale/lord_books.en.tr | 0 .../lord_books/locale/lord_books.ru.tr | 0 .../{Tools => Items}/lord_books/locale/template.txt | 0 mods/lord/{Tools => Items}/lord_books/master.lua | 0 mods/lord/{Tools => Items}/lord_books/mod.conf | 0 mods/lord/{Tools => Items}/lord_books/potions.lua | 0 .../lord/{Tools => Items}/lord_books/protection.lua | 0 mods/lord/{Tools => Items}/lord_books/scroll.lua | 0 .../lord_books/textures/books_craft_arrow.png | Bin .../lord_books/textures/books_formbg.png | Bin .../lord_books/textures/books_method_cooking.png | Bin .../lord_books/textures/books_method_normal.png | Bin .../lord_books/textures/books_next.png | Bin .../lord_books/textures/books_next_inactive.png | Bin .../lord_books/textures/books_next_press.png | Bin .../lord_books/textures/books_previous.png | Bin .../lord_books/textures/books_previous_inactive.png | Bin .../lord_books/textures/books_previous_press.png | Bin .../lord_books/textures/brewing_book.png | Bin .../lord_books/textures/cooking_book.png | Bin .../lord_books/textures/crafts_book.png | Bin .../lord_books/textures/forbidden_book.png | Bin .../lord_books/textures/master_book.png | Bin .../lord_books/textures/potion_book.png | Bin .../lord_books/textures/protection_book.png | Bin .../{Tools => Items}/lord_books/textures/scroll.png | Bin mods/lord/{Tools => Items}/lord_bucket/init.lua | 0 .../lord_bucket/locale/lord_bucket.ru.tr | 0 .../lord_bucket/locale/template.txt | 0 mods/lord/{Tools => Items}/lord_bucket/mod.conf | 0 .../lord_bucket/textures/bucket_ice.png | Bin .../lord_bucket/textures/bucket_salt.png | Bin .../lord_bucket/textures/bucket_snow.png | Bin mods/lord/{Tools => Items}/lord_food/init.lua | 0 .../lord_food/locale/lord_food.ru.tr | 0 .../{Tools => Items}/lord_food/locale/template.txt | 0 mods/lord/{Tools => Items}/lord_food/mod.conf | 0 .../lord_food/textures/lord_food_lembas.png | Bin .../lord_food/textures/lord_food_pancakes.png | Bin .../textures/lord_food_pancakes_with_honey.png | Bin mods/lord/{Tools => Items}/lord_money/init.lua | 0 .../lord_money/locale/lord_money.ru.tr | 0 .../{Tools => Items}/lord_money/locale/template.txt | 0 mods/lord/{Tools => Items}/lord_money/mod.conf | 0 mods/lord/{Tools => Items}/lord_money/money.lua | 0 mods/lord/{Tools => Items}/lord_money/shop.lua | 0 .../lord_money/textures/lord_money_copper_coin.png | Bin .../lord_money/textures/lord_money_diamond_coin.png | Bin .../lord_money/textures/lord_money_gold_coin.png | Bin .../lord_money/textures/lord_money_silver_coin.png | Bin .../lord_money/textures/shop_chest_top.png | Bin .../lord_money/textures/shop_license.png | Bin mods/lord/{Tools => Items}/lord_potions/init.lua | 0 mods/lord/{Tools => Items}/lord_potions/legacy.lua | 0 .../lord_potions/locale/lord_potions.en.tr | 0 .../lord_potions/locale/lord_potions.ru.tr | 0 mods/lord/{Tools => Items}/lord_potions/mod.conf | 0 .../lord_potions/src/lord_potions.lua | 0 .../lord_potions/src/lord_potions/api.lua | 0 .../src/lord_potions/api/ingredient.lua | 0 .../lord_potions/src/lord_potions/api/potion.lua | 0 .../lord_potions/src/lord_potions/config.lua | 0 .../src/lord_potions/config/ingredients.lua | 0 .../src/lord_potions/config/potions.lua | 0 .../lord_potions_ingredient_bonedust.png | Bin .../ingredients/lord_potions_ingredient_geodes.png | Bin .../ingredients/lord_potions_ingredient_mese.png | Bin .../ingredients/lord_potions_ingredient_mordor.png | Bin .../lord_potions_ingredient_obsidian.png | Bin .../ingredients/lord_potions_ingredient_seregon.png | Bin .../lord_potions/textures/lord_potions_bottle.png | Bin .../textures/lord_potions_bottle_content_mask.png | Bin .../lord/{Tools => Items}/lord_projectiles/init.lua | 0 .../lord_projectiles/locale/lord_projectiles.ru.tr | 0 .../lord/{Tools => Items}/lord_projectiles/mod.conf | 0 .../models/lord_projectiles_arrow.obj | 0 .../lord_projectiles/sounds/LICENSE | 0 .../sounds/lord_projectiles_arrow_hit_node.ogg | Bin .../sounds/lord_projectiles_arrow_hit_object.ogg | Bin .../sounds/lord_projectiles_explosion.ogg | Bin .../lord_projectiles/src/lord_projectiles.lua | 0 .../src/lord_projectiles/config.lua | 0 .../src/lord_projectiles/crafts.lua | 0 ...projectiles_arrow_trajectory_normal_particle.png | Bin ..._projectiles_arrow_trajectory_water_particle.png | Bin ..._projectiles_bolt_trajectory_normal_particle.png | Bin ...d_projectiles_bolt_trajectory_water_particle.png | Bin .../textures/lord_projectiles_bronze_arrow.png | Bin .../lord_projectiles_bronze_arrow_entity.png | Bin .../textures/lord_projectiles_bronze_bolt.png | Bin .../lord_projectiles_bronze_bolt_entity.png | Bin .../lord_projectiles_explosion_particle.png | Bin ...ctiles_fire_magic_trajectory_normal_particle.png | Bin ...ectiles_fire_magic_trajectory_water_particle.png | Bin .../textures/lord_projectiles_flint_arrow.png | Bin .../lord_projectiles_flint_arrow_entity.png | Bin .../textures/lord_projectiles_galvorn_arrow.png | Bin .../lord_projectiles_galvorn_arrow_entity.png | Bin .../textures/lord_projectiles_galvorn_bolt.png | Bin .../lord_projectiles_galvorn_bolt_entity.png | Bin .../textures/lord_projectiles_mithril_arrow.png | Bin .../lord_projectiles_mithril_arrow_entity.png | Bin .../textures/lord_projectiles_mithril_bolt.png | Bin .../lord_projectiles_mithril_bolt_entity.png | Bin ...ctiles_soul_magic_trajectory_normal_particle.png | Bin ...ectiles_soul_magic_trajectory_water_particle.png | Bin .../textures/lord_projectiles_steel_arrow.png | Bin .../lord_projectiles_steel_arrow_entity.png | Bin .../textures/lord_projectiles_steel_bolt.png | Bin .../textures/lord_projectiles_steel_bolt_entity.png | Bin ...ectiles_throwable_trajectory_normal_particle.png | Bin ...jectiles_throwable_trajectory_water_particle.png | Bin .../lord_projectiles/textures/lottmobs_darkball.png | Bin .../lord_projectiles/textures/lottmobs_egg.png | Bin .../lord_projectiles/textures/mobs_fireball.png | Bin .../lord/{Tools => Items}/lord_replacer/LICENSE.txt | 0 mods/lord/{Tools => Items}/lord_replacer/init.lua | 0 .../lord_replacer/locale/lord_replacer.ru.tr | 0 mods/lord/{Tools => Items}/lord_replacer/mod.conf | 0 .../textures/lord_replacer_replacer.png | Bin .../lord/{Tools => Items}/lord_screwdriver/init.lua | 0 .../lord_screwdriver/locale/lord_screwdriver.ru.tr | 0 .../lord_screwdriver/locale/template.txt | 0 .../lord/{Tools => Items}/lord_screwdriver/mod.conf | 0 .../lord_screwdriver/textures/screwdriver.png | Bin .../textures/screwdriver_galvorn.png | Bin mods/lord/{Tools => Items}/lord_vessels/init.lua | 0 mods/lord/{Tools => Items}/lord_vessels/legacy.lua | 0 mods/lord/{Tools => Items}/lord_vessels/license.md | 0 .../lord_vessels/locale/lord_vessels.en.tr | 0 .../lord_vessels/locale/lord_vessels.ru.tr | 0 mods/lord/{Tools => Items}/lord_vessels/mod.conf | 0 .../models/bowls/lord_vessels_bowl_1.blend | Bin .../models/bowls/lord_vessels_bowl_1.obj | 0 .../models/bowls/lord_vessels_bowl_2.blend | Bin .../models/bowls/lord_vessels_bowl_2.obj | 0 .../models/bowls/lord_vessels_bowl_3.blend | Bin .../models/bowls/lord_vessels_bowl_3.obj | 0 .../models/bowls/lord_vessels_bowl_4.blend | Bin .../models/bowls/lord_vessels_bowl_4.obj | 0 .../models/bowls/lord_vessels_bowl_5.blend | Bin .../models/bowls/lord_vessels_bowl_5.obj | 0 .../models/bowls/lord_vessels_bowl_6.blend | Bin .../models/bowls/lord_vessels_bowl_6.obj | 0 .../lord_vessels/models/lord_vessels_pint.blend | Bin .../lord_vessels/models/lord_vessels_pint.obj | 0 .../models/lord_vessels_steel_can.blend | Bin .../lord_vessels/models/lord_vessels_steel_can.obj | 0 .../lord_vessels/models/lord_vessels_vase_1.blend | Bin .../lord_vessels/models/lord_vessels_vase_1.obj | 0 .../lord_vessels/models/lord_vessels_vase_2.blend | Bin .../lord_vessels/models/lord_vessels_vase_2.obj | 0 .../{Tools => Items}/lord_vessels/src/bottles.lua | 0 mods/lord/{Tools => Items}/lord_vessels/src/can.lua | 0 .../lord_vessels/src/cauldron/usage.lua | 0 .../{Tools => Items}/lord_vessels/src/glasses.lua | 0 .../{Tools => Items}/lord_vessels/src/pints.lua | 0 .../{Tools => Items}/lord_vessels/src/plates.lua | 0 .../{Tools => Items}/lord_vessels/src/vases.lua | 0 .../textures/lord_vessels_bottle_closed.png | Bin .../lord_vessels/textures/lord_vessels_bowl_inv.png | Bin .../textures/lord_vessels_bowl_wood_1.png | Bin .../textures/lord_vessels_bowl_wood_2.png | Bin .../textures/lord_vessels_bowl_wood_3.png | Bin .../textures/lord_vessels_glass_water.png | Bin .../textures/lord_vessels_pint_wood.png | Bin .../textures/lord_vessels_salt_bottle.png | Bin .../textures/lord_vessels_steel_can.png | Bin .../textures/lord_vessels_steel_can_wield.png | Bin .../lord_vessels/textures/lord_vessels_vase_1.png | Bin .../textures/lord_vessels_vase_1_inv.png | Bin .../textures/lord_vessels_vase_1_raw_inv.png | Bin .../lord_vessels/textures/lord_vessels_vase_2.png | Bin .../textures/lord_vessels_vase_2_inv.png | Bin .../textures/lord_vessels_vase_2_raw_inv.png | Bin .../lord_vessels/textures/lord_vessels_water.png | Bin .../textures/vessels_drinking_glass.png | Bin .../textures/vessels_drinking_glass_inv.png | Bin .../lord_vessels/textures/vessels_glass_bottle.png | Bin .../{Tools => Items}/lottclothes/brandybuck.lua | 0 mods/lord/{Tools => Items}/lottclothes/chetwood.lua | 0 mods/lord/{Tools => Items}/lottclothes/cloaks.lua | 0 mods/lord/{Tools => Items}/lottclothes/elven.lua | 0 .../lord/{Tools => Items}/lottclothes/ettenmoor.lua | 0 mods/lord/{Tools => Items}/lottclothes/fabrics.lua | 0 mods/lord/{Tools => Items}/lottclothes/hobbit.lua | 0 mods/lord/{Tools => Items}/lottclothes/init.lua | 0 mods/lord/{Tools => Items}/lottclothes/license.txt | 0 .../lottclothes/locale/lottclothes.en.tr | 0 .../lottclothes/locale/lottclothes.ru.tr | 0 .../lottclothes/locale/template.txt | 0 .../{Tools => Items}/lottclothes/midgewater.lua | 0 mods/lord/{Tools => Items}/lottclothes/mod.conf | 0 .../textures/lottclothes_boots_chetwood.png | Bin .../textures/lottclothes_boots_chetwood_preview.png | Bin .../textures/lottclothes_boots_dwarf.png | Bin .../textures/lottclothes_boots_dwarf_preview.png | Bin .../textures/lottclothes_boots_midgewater.png | Bin .../lottclothes_boots_midgewater_preview.png | Bin .../textures/lottclothes_cap_chetwood.png | Bin .../textures/lottclothes_cap_chetwood_preview.png | Bin .../textures/lottclothes_cap_midgewater.png | Bin .../textures/lottclothes_cap_midgewater_preview.png | Bin .../textures/lottclothes_cloak_elven.png | Bin .../textures/lottclothes_cloak_hobbit_blue.png | Bin .../textures/lottclothes_cloak_hobbit_brown.png | Bin .../textures/lottclothes_cloak_hobbit_green.png | Bin .../textures/lottclothes_cloak_hobbit_grey.png | Bin .../textures/lottclothes_cloak_hobbit_pink.png | Bin .../textures/lottclothes_cloak_hobbit_red.png | Bin .../textures/lottclothes_cloak_hobbit_white.png | Bin .../textures/lottclothes_cloak_hobbit_yellow.png | Bin .../textures/lottclothes_cloak_mordor.png | Bin .../textures/lottclothes_cloak_ranger.png | Bin .../textures/lottclothes_cloak_wizard_grey.png | Bin .../textures/lottclothes_cloak_wizard_white.png | Bin .../textures/lottclothes_felt_basemodel.xcf | Bin .../lottclothes/textures/lottclothes_felt_black.png | Bin .../lottclothes/textures/lottclothes_felt_blue.png | Bin .../lottclothes/textures/lottclothes_felt_brown.png | Bin .../lottclothes/textures/lottclothes_felt_green.png | Bin .../lottclothes/textures/lottclothes_felt_grey.png | Bin .../textures/lottclothes_felt_orange.png | Bin .../lottclothes/textures/lottclothes_felt_pink.png | Bin .../lottclothes/textures/lottclothes_felt_red.png | Bin .../lottclothes/textures/lottclothes_felt_white.png | Bin .../textures/lottclothes_felt_yellow.png | Bin .../lottclothes/textures/lottclothes_feltthread.png | Bin .../textures/lottclothes_flax_basemodel.xcf | Bin .../lottclothes/textures/lottclothes_flax_black.png | Bin .../lottclothes/textures/lottclothes_flax_blue.png | Bin .../lottclothes/textures/lottclothes_flax_brown.png | Bin .../lottclothes/textures/lottclothes_flax_green.png | Bin .../lottclothes/textures/lottclothes_flax_grey.png | Bin .../lottclothes/textures/lottclothes_flax_pink.png | Bin .../lottclothes/textures/lottclothes_flax_red.png | Bin .../lottclothes/textures/lottclothes_flax_white.png | Bin .../textures/lottclothes_flax_yellow.png | Bin .../lottclothes/textures/lottclothes_flaxthread.png | Bin .../lottclothes/textures/lottclothes_hood_elven.png | Bin .../textures/lottclothes_hood_elven_preview.png | Bin .../textures/lottclothes_hood_ettenmoor.png | Bin .../textures/lottclothes_hood_ettenmoor_preview.png | Bin .../textures/lottclothes_hood_wizard_blue.png | Bin .../lottclothes_hood_wizard_blue_preview.png | Bin .../textures/lottclothes_hood_wizard_white.png | Bin .../lottclothes_hood_wizard_white_preivew.png | Bin .../textures/lottclothes_inv_boots_chetwood.png | Bin .../textures/lottclothes_inv_boots_dwarf.png | Bin .../textures/lottclothes_inv_boots_midgewater.png | Bin .../textures/lottclothes_inv_cap_chetwood.png | Bin .../textures/lottclothes_inv_cap_midgewater.png | Bin .../textures/lottclothes_inv_cloak_elven.png | Bin .../textures/lottclothes_inv_cloak_hobbit_blue.png | Bin .../textures/lottclothes_inv_cloak_hobbit_brown.png | Bin .../textures/lottclothes_inv_cloak_hobbit_green.png | Bin .../textures/lottclothes_inv_cloak_hobbit_grey.png | Bin .../textures/lottclothes_inv_cloak_hobbit_pink.png | Bin .../textures/lottclothes_inv_cloak_hobbit_red.png | Bin .../textures/lottclothes_inv_cloak_hobbit_white.png | Bin .../lottclothes_inv_cloak_hobbit_yellow.png | Bin .../textures/lottclothes_inv_cloak_mordor.png | Bin .../textures/lottclothes_inv_cloak_ranger.png | Bin .../textures/lottclothes_inv_cloak_wizard_grey.png | Bin .../textures/lottclothes_inv_cloak_wizard_white.png | Bin .../textures/lottclothes_inv_hood_elven.png | Bin .../textures/lottclothes_inv_hood_ettenmoor.png | Bin .../textures/lottclothes_inv_hood_wizard_blue.png | Bin .../textures/lottclothes_inv_hood_wizard_white.png | Bin .../textures/lottclothes_inv_jacket_chetwood.png | Bin .../textures/lottclothes_inv_jacket_midgewater.png | Bin .../textures/lottclothes_inv_pants_chetwood.png | Bin .../textures/lottclothes_inv_pants_midgewater.png | Bin .../textures/lottclothes_inv_robe_ettenmoor.png | Bin .../textures/lottclothes_inv_robe_wizard_grey.png | Bin .../textures/lottclothes_inv_robe_wizard_white.png | Bin .../textures/lottclothes_inv_shirt_brandybuck.png | Bin .../textures/lottclothes_inv_shirt_elven.png | Bin .../textures/lottclothes_inv_shirt_hobbit_blue.png | Bin .../textures/lottclothes_inv_shirt_hobbit_brown.png | Bin .../textures/lottclothes_inv_shirt_hobbit_green.png | Bin .../textures/lottclothes_inv_shirt_hobbit_grey.png | Bin .../textures/lottclothes_inv_shirt_hobbit_pink.png | Bin .../textures/lottclothes_inv_shirt_hobbit_red.png | Bin .../textures/lottclothes_inv_shirt_hobbit_white.png | Bin .../lottclothes_inv_shirt_hobbit_yellow.png | Bin .../lottclothes/textures/lottclothes_inv_shoes.xcf | Bin .../textures/lottclothes_inv_shoes_brandybuck.png | Bin .../textures/lottclothes_inv_shoes_elven.png | Bin .../textures/lottclothes_inv_shoes_hobbit_blue.png | Bin .../textures/lottclothes_inv_shoes_hobbit_brown.png | Bin .../textures/lottclothes_inv_shoes_hobbit_green.png | Bin .../textures/lottclothes_inv_shoes_hobbit_grey.png | Bin .../textures/lottclothes_inv_shoes_hobbit_pink.png | Bin .../textures/lottclothes_inv_shoes_hobbit_red.png | Bin .../textures/lottclothes_inv_shoes_hobbit_white.png | Bin .../lottclothes_inv_shoes_hobbit_yellow.png | Bin .../textures/lottclothes_inv_shorts_hobbit_blue.png | Bin .../lottclothes_inv_shorts_hobbit_brown.png | Bin .../lottclothes_inv_shorts_hobbit_green.png | Bin .../textures/lottclothes_inv_shorts_hobbit_grey.png | Bin .../textures/lottclothes_inv_shorts_hobbit_pink.png | Bin .../textures/lottclothes_inv_shorts_hobbit_red.png | Bin .../lottclothes_inv_shorts_hobbit_white.png | Bin .../lottclothes_inv_shorts_hobbit_yellow.png | Bin .../lottclothes_inv_trousers_brandybuck.png | Bin .../textures/lottclothes_inv_trousers_elven.png | Bin .../textures/lottclothes_inv_trousers_ettenmoor.png | Bin .../lottclothes_inv_trousers_wizard_white.png | Bin .../textures/lottclothes_jacket_chetwood.png | Bin .../lottclothes_jacket_chetwood_preview.png | Bin .../textures/lottclothes_jacket_midgewater.png | Bin .../lottclothes_jacket_midgewater_preview.png | Bin .../textures/lottclothes_pants_chetwood.png | Bin .../textures/lottclothes_pants_chetwood_preview.png | Bin .../textures/lottclothes_pants_midgewater.png | Bin .../lottclothes_pants_midgewater_preview.png | Bin .../textures/lottclothes_robe_ettenmoor.png | Bin .../textures/lottclothes_robe_ettenmoor_preview.png | Bin .../textures/lottclothes_robe_wizard_grey.png | Bin .../lottclothes_robe_wizard_grey_preview.png | Bin .../textures/lottclothes_robe_wizard_white.png | Bin .../lottclothes_robe_wizard_white_preview.png | Bin .../textures/lottclothes_shirt_brandybuck.png | Bin .../lottclothes_shirt_brandybuck_preview.png | Bin .../textures/lottclothes_shirt_elven.png | Bin .../textures/lottclothes_shirt_elven_preview.png | Bin .../textures/lottclothes_shirt_hobbit_base.xcf | Bin .../lottclothes_shirt_hobbit_base_preview.xcf | Bin .../textures/lottclothes_shirt_hobbit_blue.png | Bin .../lottclothes_shirt_hobbit_blue_preview.png | Bin .../textures/lottclothes_shirt_hobbit_brown.png | Bin .../lottclothes_shirt_hobbit_brown_preview.png | Bin .../textures/lottclothes_shirt_hobbit_green.png | Bin .../lottclothes_shirt_hobbit_green_preview.png | Bin .../textures/lottclothes_shirt_hobbit_grey.png | Bin .../lottclothes_shirt_hobbit_grey_preview.png | Bin .../textures/lottclothes_shirt_hobbit_pink.png | Bin .../lottclothes_shirt_hobbit_pink_preview.png | Bin .../textures/lottclothes_shirt_hobbit_red.png | Bin .../lottclothes_shirt_hobbit_red_preview.png | Bin .../textures/lottclothes_shirt_hobbit_white.png | Bin .../lottclothes_shirt_hobbit_white_preview.png | Bin .../textures/lottclothes_shirt_hobbit_yellow.png | Bin .../lottclothes_shirt_hobbit_yellow_preview.png | Bin .../textures/lottclothes_shoes_brandybuck.png | Bin .../lottclothes_shoes_brandybuck_preview.png | Bin .../textures/lottclothes_shoes_elven.png | Bin .../textures/lottclothes_shoes_elven_preview.png | Bin .../textures/lottclothes_shoes_hobbit_base.xcf | Bin .../lottclothes_shoes_hobbit_base_preview.xcf | Bin .../textures/lottclothes_shoes_hobbit_blue.png | Bin .../lottclothes_shoes_hobbit_blue_preview.png | Bin .../textures/lottclothes_shoes_hobbit_brown.png | Bin .../lottclothes_shoes_hobbit_brown_preview.png | Bin .../textures/lottclothes_shoes_hobbit_green.png | Bin .../lottclothes_shoes_hobbit_green_preview.png | Bin .../textures/lottclothes_shoes_hobbit_grey.png | Bin .../lottclothes_shoes_hobbit_grey_preview.png | Bin .../textures/lottclothes_shoes_hobbit_pink.png | Bin .../lottclothes_shoes_hobbit_pink_preview.png | Bin .../textures/lottclothes_shoes_hobbit_red.png | Bin .../lottclothes_shoes_hobbit_red_preview.png | Bin .../textures/lottclothes_shoes_hobbit_white.png | Bin .../lottclothes_shoes_hobbit_white_preview.png | Bin .../textures/lottclothes_shoes_hobbit_yellow.png | Bin .../lottclothes_shoes_hobbit_yellow_preview.png | Bin .../textures/lottclothes_shorts_hobbit_base.xcf | Bin .../lottclothes_shorts_hobbit_base_preview.xcf | Bin .../textures/lottclothes_shorts_hobbit_blue.png | Bin .../lottclothes_shorts_hobbit_blue_preview.png | Bin .../textures/lottclothes_shorts_hobbit_brown.png | Bin .../lottclothes_shorts_hobbit_brown_preview.png | Bin .../textures/lottclothes_shorts_hobbit_green.png | Bin .../lottclothes_shorts_hobbit_green_preview.png | Bin .../textures/lottclothes_shorts_hobbit_grey.png | Bin .../lottclothes_shorts_hobbit_grey_preview.png | Bin .../textures/lottclothes_shorts_hobbit_pink.png | Bin .../lottclothes_shorts_hobbit_pink_preview.png | Bin .../textures/lottclothes_shorts_hobbit_red.png | Bin .../lottclothes_shorts_hobbit_red_preview.png | Bin .../textures/lottclothes_shorts_hobbit_white.png | Bin .../lottclothes_shorts_hobbit_white_preview.png | Bin .../textures/lottclothes_shorts_hobbit_yellow.png | Bin .../lottclothes_shorts_hobbit_yellow_preview.png | Bin .../textures/lottclothes_trousers_brandybuck.png | Bin .../lottclothes_trousers_brandybuck_preview.png | Bin .../textures/lottclothes_trousers_elven.png | Bin .../textures/lottclothes_trousers_elven_preview.png | Bin .../textures/lottclothes_trousers_ettenmoor.png | Bin .../lottclothes_trousers_ettenmoor_preview.png | Bin .../textures/lottclothes_trousers_wizard_white.png | Bin .../lottclothes_trousers_wizard_white_preview.png | Bin mods/lord/{Tools => Items}/lottclothes/wizard.lua | 0 mods/lord/Items/modpack.conf | 1 + mods/lord/{Tools => Items}/readme.md | 2 +- mods/lord/{Tools => Items}/tools/LICENSE | 0 mods/lord/{Tools => Items}/tools/aliases.lua | 0 mods/lord/{Tools => Items}/tools/init.lua | 0 .../lord/{Tools => Items}/tools/locale/template.txt | 0 mods/lord/{Tools => Items}/tools/locale/tools.en.tr | 0 mods/lord/{Tools => Items}/tools/locale/tools.ru.tr | 0 mods/lord/{Tools => Items}/tools/mod.conf | 0 mods/lord/{Tools => Items}/tools/src/axes.lua | 0 mods/lord/{Tools => Items}/tools/src/battleaxes.lua | 0 mods/lord/{Tools => Items}/tools/src/daggers.lua | 0 mods/lord/{Tools => Items}/tools/src/picks.lua | 0 mods/lord/{Tools => Items}/tools/src/racial.lua | 0 mods/lord/{Tools => Items}/tools/src/shovels.lua | 0 mods/lord/{Tools => Items}/tools/src/spears.lua | 0 mods/lord/{Tools => Items}/tools/src/special.lua | 0 mods/lord/{Tools => Items}/tools/src/swords.lua | 0 mods/lord/{Tools => Items}/tools/src/warhammers.lua | 0 .../tools/textures/axes/tools_axe_bronze.png | Bin .../tools/textures/axes/tools_axe_copper.png | Bin .../tools/textures/axes/tools_axe_galvorn.png | Bin .../tools/textures/axes/tools_axe_gold.png | Bin .../tools/textures/axes/tools_axe_mithril.png | Bin .../tools/textures/axes/tools_axe_silver.png | Bin .../tools/textures/axes/tools_axe_steel.png | Bin .../tools/textures/axes/tools_axe_stone.png | Bin .../tools/textures/axes/tools_axe_tin.png | Bin .../tools/textures/axes/tools_axe_wood.png | Bin .../textures/battleaxes/tools_battleaxe_bronze.png | Bin .../textures/battleaxes/tools_battleaxe_copper.png | Bin .../textures/battleaxes/tools_battleaxe_galvorn.png | Bin .../textures/battleaxes/tools_battleaxe_gold.png | Bin .../textures/battleaxes/tools_battleaxe_mithril.png | Bin .../textures/battleaxes/tools_battleaxe_silver.png | Bin .../textures/battleaxes/tools_battleaxe_steel.png | Bin .../textures/battleaxes/tools_battleaxe_stone.png | Bin .../textures/battleaxes/tools_battleaxe_tin.png | Bin .../textures/battleaxes/tools_battleaxe_wood.png | Bin .../tools/textures/daggers/tools_dagger_bronze.png | Bin .../tools/textures/daggers/tools_dagger_copper.png | Bin .../tools/textures/daggers/tools_dagger_galvorn.png | Bin .../tools/textures/daggers/tools_dagger_gold.png | Bin .../tools/textures/daggers/tools_dagger_mithril.png | Bin .../tools/textures/daggers/tools_dagger_silver.png | Bin .../tools/textures/daggers/tools_dagger_steel.png | Bin .../tools/textures/daggers/tools_dagger_stone.png | Bin .../tools/textures/daggers/tools_dagger_tin.png | Bin .../tools/textures/daggers/tools_dagger_wood.png | Bin .../tools/textures/pickaxes/tools_pick_bronze.png | Bin .../tools/textures/pickaxes/tools_pick_copper.png | Bin .../tools/textures/pickaxes/tools_pick_galvorn.png | Bin .../tools/textures/pickaxes/tools_pick_gold.png | Bin .../tools/textures/pickaxes/tools_pick_mithril.png | Bin .../tools/textures/pickaxes/tools_pick_silver.png | Bin .../tools/textures/pickaxes/tools_pick_steel.png | Bin .../tools/textures/pickaxes/tools_pick_stone.png | Bin .../tools/textures/pickaxes/tools_pick_tin.png | Bin .../tools/textures/pickaxes/tools_pick_wood.png | Bin .../tools/textures/racial/tools_battleaxe_dwarf.png | Bin .../tools/textures/racial/tools_dagger_hobbit.png | Bin .../tools/textures/racial/tools_sword_elven.png | Bin .../tools/textures/racial/tools_sword_human.png | Bin .../tools/textures/racial/tools_sword_orcish.png | Bin .../tools/textures/shovels/tools_shovel_bronze.png | Bin .../tools/textures/shovels/tools_shovel_copper.png | Bin .../tools/textures/shovels/tools_shovel_galvorn.png | Bin .../tools/textures/shovels/tools_shovel_gold.png | Bin .../tools/textures/shovels/tools_shovel_mithril.png | Bin .../tools/textures/shovels/tools_shovel_silver.png | Bin .../tools/textures/shovels/tools_shovel_steel.png | Bin .../tools/textures/shovels/tools_shovel_stone.png | Bin .../tools/textures/shovels/tools_shovel_tin.png | Bin .../tools/textures/shovels/tools_shovel_wood.png | Bin .../tools/textures/spears/tools_spear_bronze.png | Bin .../tools/textures/spears/tools_spear_copper.png | Bin .../tools/textures/spears/tools_spear_galvorn.png | Bin .../tools/textures/spears/tools_spear_gold.png | Bin .../tools/textures/spears/tools_spear_mithril.png | Bin .../tools/textures/spears/tools_spear_silver.png | Bin .../tools/textures/spears/tools_spear_steel.png | Bin .../tools/textures/spears/tools_spear_stone.png | Bin .../tools/textures/spears/tools_spear_tin.png | Bin .../tools/textures/spears/tools_spear_wood.png | Bin .../tools/textures/special/tools_sword_orc.png | 0 .../tools/textures/special/tools_sword_urukhai.png | Bin .../tools/textures/swords/tools_sword_bronze.png | Bin .../tools/textures/swords/tools_sword_copper.png | Bin .../tools/textures/swords/tools_sword_galvorn.png | Bin .../tools/textures/swords/tools_sword_gold.png | Bin .../tools/textures/swords/tools_sword_mithril.png | Bin .../tools/textures/swords/tools_sword_silver.png | Bin .../tools/textures/swords/tools_sword_steel.png | Bin .../tools/textures/swords/tools_sword_stone.png | Bin .../tools/textures/swords/tools_sword_tin.png | Bin .../tools/textures/swords/tools_sword_wood.png | Bin .../textures/warhammers/tools_warhammer_bronze.png | Bin .../textures/warhammers/tools_warhammer_copper.png | Bin .../textures/warhammers/tools_warhammer_galvorn.png | Bin .../textures/warhammers/tools_warhammer_gold.png | Bin .../textures/warhammers/tools_warhammer_mithril.png | Bin .../textures/warhammers/tools_warhammer_silver.png | Bin .../textures/warhammers/tools_warhammer_steel.png | Bin .../textures/warhammers/tools_warhammer_stone.png | Bin .../textures/warhammers/tools_warhammer_tin.png | Bin .../textures/warhammers/tools_warhammer_wood.png | Bin mods/lord/Tools/Admin/modpack.conf | 1 - mods/lord/Tools/modpack.conf | 1 - mods/lord/readme.md | 2 +- 795 files changed, 9 insertions(+), 9 deletions(-) rename mods/lord/{Tools => Items}/Admin/admin_tools/init.lua (100%) rename mods/lord/{Tools => Items}/Admin/admin_tools/mod.conf (100%) rename mods/lord/{Tools => Items}/Admin/admin_tools/textures/lord_tools_pointer.png (100%) rename mods/lord/{Tools => Items}/Admin/admin_tools/textures/tool_admin_pick.png (100%) rename mods/lord/{Tools => Items}/Admin/admin_tools/textures/tool_magic_stick.png (100%) create mode 100644 mods/lord/Items/Admin/modpack.conf rename mods/lord/{Tools => Items}/bags/init.lua (100%) rename mods/lord/{Tools => Items}/bags/locale/bags.en.tr (100%) rename mods/lord/{Tools => Items}/bags/locale/bags.ru.tr (100%) rename mods/lord/{Tools => Items}/bags/locale/template.txt (100%) rename mods/lord/{Tools => Items}/bags/mod.conf (100%) rename mods/lord/{Tools => Items}/bags/textures/bags_large.png (100%) rename mods/lord/{Tools => Items}/bags/textures/bags_medium.png (100%) rename mods/lord/{Tools => Items}/bags/textures/bags_small.png (100%) rename mods/lord/{Tools => Items}/clans_clothes/init.lua (100%) rename mods/lord/{Tools => Items}/clans_clothes/locale/clans_clothes.en.tr (100%) rename mods/lord/{Tools => Items}/clans_clothes/locale/clans_clothes.ru.tr (100%) rename mods/lord/{Tools => Items}/clans_clothes/mod.conf (100%) rename mods/lord/{Tools => Items}/clans_clothes/textures/clans_clothes_cloak_bmg.png (100%) rename mods/lord/{Tools => Items}/clans_clothes/textures/clans_clothes_cloak_bmg_inv.png (100%) rename mods/lord/{Tools => Items}/clans_clothes/textures/clans_clothes_cloak_hansa.png (100%) rename mods/lord/{Tools => Items}/clans_clothes/textures/clans_clothes_cloak_hansa_inv.png (100%) rename mods/lord/{Tools => Items}/clans_clothes/textures/clans_clothes_cloak_international.png (100%) rename mods/lord/{Tools => Items}/clans_clothes/textures/clans_clothes_cloak_international_inv.png (100%) rename mods/lord/{Tools => Items}/clans_clothes/textures/clans_clothes_cloak_masons.png (100%) rename mods/lord/{Tools => Items}/clans_clothes/textures/clans_clothes_cloak_masons_inv.png (100%) rename mods/lord/{Tools => Items}/clans_clothes/textures/clans_clothes_cloak_vassals.png (100%) rename mods/lord/{Tools => Items}/clans_clothes/textures/clans_clothes_cloak_vassals_inv.png (100%) rename mods/lord/{Tools => Items}/clans_tools/init.lua (100%) rename mods/lord/{Tools => Items}/clans_tools/locale/cert-text.en.lua (100%) rename mods/lord/{Tools => Items}/clans_tools/locale/cert-text.ru.lua (100%) rename mods/lord/{Tools => Items}/clans_tools/locale/clans_tools.ru.tr (100%) rename mods/lord/{Tools => Items}/clans_tools/mod.conf (100%) rename mods/lord/{Tools => Items}/clans_tools/src/base_certificate.lua (100%) rename mods/lord/{Tools => Items}/clans_tools/src/base_certificate/Form.lua (100%) rename mods/lord/{Tools => Items}/clans_tools/textures/clans_tools_base_certificate.png (100%) rename mods/lord/{Tools => Items}/clans_tools/textures/clans_tools_base_certificate_form_bg.png (100%) rename mods/lord/{Tools => Items}/easter/init.lua (100%) rename mods/lord/{Tools => Items}/easter/locale/easter.ru.tr (100%) rename mods/lord/{Tools => Items}/easter/mod.conf (100%) rename mods/lord/{Tools => Items}/easter/src/easter.lua (100%) rename mods/lord/{Tools => Items}/easter/textures/easter_blue_egg.png (100%) rename mods/lord/{Tools => Items}/easter/textures/easter_green_egg.png (100%) rename mods/lord/{Tools => Items}/easter/textures/easter_red_egg.png (100%) rename mods/lord/{Tools => Items}/easter/textures/easter_yellow_egg.png (100%) rename mods/lord/{Tools => Items}/lord_alcohol/init.lua (100%) rename mods/lord/{Tools => Items}/lord_alcohol/legacy.lua (100%) rename mods/lord/{Tools => Items}/lord_alcohol/locale/lord_alcohol.en.tr (100%) rename mods/lord/{Tools => Items}/lord_alcohol/locale/lord_alcohol.ru.tr (100%) rename mods/lord/{Tools => Items}/lord_alcohol/mod.conf (100%) rename mods/lord/{Tools => Items}/lord_alcohol/src/lord_alcohol.lua (100%) rename mods/lord/{Tools => Items}/lord_alcohol/src/lord_alcohol/api.lua (100%) rename mods/lord/{Tools => Items}/lord_alcohol/src/lord_alcohol/config.lua (100%) rename mods/lord/{Tools => Items}/lord_alcohol/textures/empty_16x16.png (100%) rename mods/lord/{Tools => Items}/lord_alcohol/textures/lord_alcohol_ale.png (100%) rename mods/lord/{Tools => Items}/lord_alcohol/textures/lord_alcohol_beer.png (100%) rename mods/lord/{Tools => Items}/lord_alcohol/textures/lord_alcohol_cider.png (100%) rename mods/lord/{Tools => Items}/lord_alcohol/textures/lord_alcohol_mead.png (100%) rename mods/lord/{Tools => Items}/lord_alcohol/textures/lord_alcohol_wine.png (100%) rename mods/lord/{Tools => Items}/lord_archery/init.lua (100%) rename mods/lord/{Tools => Items}/lord_archery/locale/lord_bows.en.tr (100%) rename mods/lord/{Tools => Items}/lord_archery/locale/lord_bows.ru.tr (100%) rename mods/lord/{Tools => Items}/lord_archery/mod.conf (100%) rename mods/lord/{Tools => Items}/lord_archery/sounds/LICENSE (100%) rename mods/lord/{Tools => Items}/lord_archery/sounds/lord_archery_arrow_release.ogg (100%) rename mods/lord/{Tools => Items}/lord_archery/sounds/lord_archery_bow_charge.ogg (100%) rename mods/lord/{Tools => Items}/lord_archery/src/lord_archery.lua (100%) rename mods/lord/{Tools => Items}/lord_archery/src/lord_archery/config.lua (100%) rename mods/lord/{Tools => Items}/lord_archery/src/lord_archery/config/bows.lua (100%) rename mods/lord/{Tools => Items}/lord_archery/src/lord_archery/config/crafts.lua (100%) rename mods/lord/{Tools => Items}/lord_archery/src/lord_archery/config/crafts/bows.lua (100%) rename mods/lord/{Tools => Items}/lord_archery/src/lord_archery/config/crafts/crossbows.lua (100%) rename mods/lord/{Tools => Items}/lord_archery/src/lord_archery/config/crafts/throwables.lua (100%) rename mods/lord/{Tools => Items}/lord_archery/src/lord_archery/config/crossbows.lua (100%) rename mods/lord/{Tools => Items}/lord_archery/src/lord_archery/config/throwables.lua (100%) rename mods/lord/{Tools => Items}/lord_archery/textures/bows/lord_archery_alder_wood_bow.png (100%) rename mods/lord/{Tools => Items}/lord_archery/textures/bows/lord_archery_alder_wood_bow_1.png (100%) rename mods/lord/{Tools => Items}/lord_archery/textures/bows/lord_archery_alder_wood_bow_2.png (100%) rename mods/lord/{Tools => Items}/lord_archery/textures/bows/lord_archery_alder_wood_bow_3.png (100%) rename mods/lord/{Tools => Items}/lord_archery/textures/bows/lord_archery_apple_wood_bow.png (100%) rename mods/lord/{Tools => Items}/lord_archery/textures/bows/lord_archery_apple_wood_bow_1.png (100%) rename mods/lord/{Tools => Items}/lord_archery/textures/bows/lord_archery_apple_wood_bow_2.png (100%) rename mods/lord/{Tools => Items}/lord_archery/textures/bows/lord_archery_apple_wood_bow_3.png (100%) rename mods/lord/{Tools => Items}/lord_archery/textures/bows/lord_archery_birch_wood_bow.png (100%) rename mods/lord/{Tools => Items}/lord_archery/textures/bows/lord_archery_birch_wood_bow_1.png (100%) rename mods/lord/{Tools => Items}/lord_archery/textures/bows/lord_archery_birch_wood_bow_2.png (100%) rename mods/lord/{Tools => Items}/lord_archery/textures/bows/lord_archery_birch_wood_bow_3.png (100%) rename mods/lord/{Tools => Items}/lord_archery/textures/bows/lord_archery_lebethron_wood_bow.png (100%) rename mods/lord/{Tools => Items}/lord_archery/textures/bows/lord_archery_lebethron_wood_bow_1.png (100%) rename mods/lord/{Tools => Items}/lord_archery/textures/bows/lord_archery_lebethron_wood_bow_2.png (100%) rename mods/lord/{Tools => Items}/lord_archery/textures/bows/lord_archery_lebethron_wood_bow_3.png (100%) rename mods/lord/{Tools => Items}/lord_archery/textures/bows/lord_archery_mallorn_wood_bow.png (100%) rename mods/lord/{Tools => Items}/lord_archery/textures/bows/lord_archery_mallorn_wood_bow_1.png (100%) rename mods/lord/{Tools => Items}/lord_archery/textures/bows/lord_archery_mallorn_wood_bow_2.png (100%) rename mods/lord/{Tools => Items}/lord_archery/textures/bows/lord_archery_mallorn_wood_bow_3.png (100%) rename mods/lord/{Tools => Items}/lord_archery/textures/crossbows/lord_archery_galvorn_crossbow.png (100%) rename mods/lord/{Tools => Items}/lord_archery/textures/crossbows/lord_archery_galvorn_crossbow_1.png (100%) rename mods/lord/{Tools => Items}/lord_archery/textures/crossbows/lord_archery_galvorn_crossbow_2.png (100%) rename mods/lord/{Tools => Items}/lord_archery/textures/crossbows/lord_archery_galvorn_crossbow_3.png (100%) rename mods/lord/{Tools => Items}/lord_archery/textures/crossbows/lord_archery_gold_crossbow.png (100%) rename mods/lord/{Tools => Items}/lord_archery/textures/crossbows/lord_archery_gold_crossbow_1.png (100%) rename mods/lord/{Tools => Items}/lord_archery/textures/crossbows/lord_archery_gold_crossbow_2.png (100%) rename mods/lord/{Tools => Items}/lord_archery/textures/crossbows/lord_archery_gold_crossbow_3.png (100%) rename mods/lord/{Tools => Items}/lord_archery/textures/crossbows/lord_archery_mithril_crossbow.png (100%) rename mods/lord/{Tools => Items}/lord_archery/textures/crossbows/lord_archery_mithril_crossbow_1.png (100%) rename mods/lord/{Tools => Items}/lord_archery/textures/crossbows/lord_archery_mithril_crossbow_2.png (100%) rename mods/lord/{Tools => Items}/lord_archery/textures/crossbows/lord_archery_mithril_crossbow_3.png (100%) rename mods/lord/{Tools => Items}/lord_archery/textures/crossbows/lord_archery_silver_crossbow.png (100%) rename mods/lord/{Tools => Items}/lord_archery/textures/crossbows/lord_archery_silver_crossbow_1.png (100%) rename mods/lord/{Tools => Items}/lord_archery/textures/crossbows/lord_archery_silver_crossbow_2.png (100%) rename mods/lord/{Tools => Items}/lord_archery/textures/crossbows/lord_archery_silver_crossbow_3.png (100%) rename mods/lord/{Tools => Items}/lord_archery/textures/crossbows/lord_archery_steel_crossbow.png (100%) rename mods/lord/{Tools => Items}/lord_archery/textures/crossbows/lord_archery_steel_crossbow_1.png (100%) rename mods/lord/{Tools => Items}/lord_archery/textures/crossbows/lord_archery_steel_crossbow_2.png (100%) rename mods/lord/{Tools => Items}/lord_archery/textures/crossbows/lord_archery_steel_crossbow_3.png (100%) rename mods/lord/{Tools => Items}/lord_archery/textures/crossbows/lord_archery_tin_crossbow.png (100%) rename mods/lord/{Tools => Items}/lord_archery/textures/crossbows/lord_archery_tin_crossbow_1.png (100%) rename mods/lord/{Tools => Items}/lord_archery/textures/crossbows/lord_archery_tin_crossbow_2.png (100%) rename mods/lord/{Tools => Items}/lord_archery/textures/crossbows/lord_archery_tin_crossbow_3.png (100%) rename mods/lord/{Tools => Items}/lord_archery/textures/crossbows/lord_archery_wooden_crossbow.png (100%) rename mods/lord/{Tools => Items}/lord_archery/textures/crossbows/lord_archery_wooden_crossbow_1.png (100%) rename mods/lord/{Tools => Items}/lord_archery/textures/crossbows/lord_archery_wooden_crossbow_2.png (100%) rename mods/lord/{Tools => Items}/lord_archery/textures/crossbows/lord_archery_wooden_crossbow_3.png (100%) rename mods/lord/{Tools => Items}/lord_archery/textures/throwables/lord_archery_bronze_throwing_axe.png (100%) rename mods/lord/{Tools => Items}/lord_archery/textures/throwables/lord_archery_galvorn_throwing_axe.png (100%) rename mods/lord/{Tools => Items}/lord_archery/textures/throwables/lord_archery_mithril_throwing_axe.png (100%) rename mods/lord/{Tools => Items}/lord_archery/textures/throwables/lord_archery_steel_throwing_axe.png (100%) rename mods/lord/{Tools => Items}/lord_armor/init.lua (100%) rename mods/lord/{Tools => Items}/lord_armor/locale/lord_armor.en.tr (100%) rename mods/lord/{Tools => Items}/lord_armor/locale/lord_armor.ru.tr (100%) rename mods/lord/{Tools => Items}/lord_armor/locale/template.txt (100%) rename mods/lord/{Tools => Items}/lord_armor/mod.conf (100%) rename mods/lord/{Tools => Items}/lord_armor/src/armor.lua (100%) rename mods/lord/{Tools => Items}/lord_armor/src/shield.lua (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_boots_bronze.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_boots_bronze_preview.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_boots_copper.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_boots_copper_preview.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_boots_galvorn.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_boots_galvorn_preview.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_boots_gold.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_boots_gold_preview.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_boots_mithril.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_boots_mithril_preview.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_boots_silver.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_boots_silver_preview.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_boots_steel.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_boots_steel_preview.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_boots_tin.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_boots_tin_preview.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_boots_wood.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_boots_wood_preview.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_chestplate_bronze.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_chestplate_bronze_preview.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_chestplate_copper.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_chestplate_copper_preview.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_chestplate_galvorn.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_chestplate_galvorn_preview.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_chestplate_gold.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_chestplate_gold_preview.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_chestplate_mithril.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_chestplate_mithril_preview.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_chestplate_silver.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_chestplate_silver_preview.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_chestplate_steel.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_chestplate_steel_preview.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_chestplate_tin.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_chestplate_tin_preview.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_chestplate_wood.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_chestplate_wood_preview.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_helmet_bronze.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_helmet_bronze_preview.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_helmet_copper.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_helmet_copper_preview.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_helmet_galvorn.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_helmet_galvorn_preview.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_helmet_gold.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_helmet_gold_preview.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_helmet_mithril.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_helmet_mithril_preview.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_helmet_silver.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_helmet_silver_preview.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_helmet_steel.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_helmet_steel_preview.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_helmet_tin.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_helmet_tin_preview.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_helmet_wood.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_helmet_wood_preview.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_inv_boots_bronze.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_inv_boots_copper.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_inv_boots_galvorn.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_inv_boots_gold.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_inv_boots_mithril.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_inv_boots_silver.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_inv_boots_steel.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_inv_boots_tin.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_inv_boots_wood.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_inv_chestplate_bronze.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_inv_chestplate_copper.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_inv_chestplate_galvorn.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_inv_chestplate_gold.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_inv_chestplate_mithril.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_inv_chestplate_silver.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_inv_chestplate_steel.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_inv_chestplate_tin.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_inv_chestplate_wood.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_inv_helmet_bronze.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_inv_helmet_copper.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_inv_helmet_galvorn.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_inv_helmet_gold.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_inv_helmet_mithril.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_inv_helmet_silver.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_inv_helmet_steel.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_inv_helmet_tin.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_inv_helmet_wood.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_inv_leggings_bronze.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_inv_leggings_copper.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_inv_leggings_galvorn.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_inv_leggings_gold.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_inv_leggings_mithril.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_inv_leggings_silver.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_inv_leggings_steel.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_inv_leggings_tin.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_inv_leggings_wood.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_inv_shield_bronze.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_inv_shield_copper.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_inv_shield_galvorn.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_inv_shield_gold.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_inv_shield_mithril.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_inv_shield_silver.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_inv_shield_steel.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_inv_shield_tin.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_inv_shield_wood.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_leggings_bronze.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_leggings_bronze_preview.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_leggings_copper.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_leggings_copper_preview.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_leggings_galvorn.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_leggings_galvorn_preview.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_leggings_gold.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_leggings_gold_preview.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_leggings_mithril.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_leggings_mithril_preview.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_leggings_silver.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_leggings_silver_preview.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_leggings_steel.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_leggings_steel_preview.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_leggings_tin.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_leggings_tin_preview.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_leggings_wood.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_leggings_wood_preview.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_shield_bronze.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_shield_bronze_preview.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_shield_copper.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_shield_copper_preview.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_shield_galvorn.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_shield_galvorn_preview.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_shield_gold.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_shield_gold_preview.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_shield_mithril.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_shield_mithril_preview.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_shield_silver.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_shield_silver_preview.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_shield_steel.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_shield_steel_preview.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_shield_tin.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_shield_tin_preview.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_shield_wood.png (100%) rename mods/lord/{Tools => Items}/lord_armor/textures/lottarmor_shield_wood_preview.png (100%) rename mods/lord/{Tools => Items}/lord_boats/functions.lua (100%) rename mods/lord/{Tools => Items}/lord_boats/init.lua (100%) rename mods/lord/{Tools => Items}/lord_boats/license.txt (100%) rename mods/lord/{Tools => Items}/lord_boats/locale/lord_boats.ru.tr (100%) rename mods/lord/{Tools => Items}/lord_boats/locale/template.txt (100%) rename mods/lord/{Tools => Items}/lord_boats/mod.conf (100%) rename mods/lord/{Tools => Items}/lord_boats/models/rowboat.b3d (100%) rename mods/lord/{Tools => Items}/lord_boats/models/rowboat.obj (100%) rename mods/lord/{Tools => Items}/lord_boats/models/sailboat.b3d (100%) rename mods/lord/{Tools => Items}/lord_boats/models/sailboat.obj (100%) rename mods/lord/{Tools => Items}/lord_boats/textures/rowboat_inventory.png (100%) rename mods/lord/{Tools => Items}/lord_boats/textures/rowboat_wield.png (100%) rename mods/lord/{Tools => Items}/lord_boats/textures/sailboat.png (100%) rename mods/lord/{Tools => Items}/lord_boats/textures/sailboat_inventory.png (100%) rename mods/lord/{Tools => Items}/lord_boats/textures/sailboat_wield.png (100%) rename mods/lord/{Tools => Items}/lord_books/alcohol.lua (100%) rename mods/lord/{Tools => Items}/lord_books/cooking.lua (100%) rename mods/lord/{Tools => Items}/lord_books/crafts.lua (100%) rename mods/lord/{Tools => Items}/lord_books/forbidden.lua (100%) rename mods/lord/{Tools => Items}/lord_books/init.lua (100%) rename mods/lord/{Tools => Items}/lord_books/license.txt (100%) rename mods/lord/{Tools => Items}/lord_books/locale/lord_books.en.tr (100%) rename mods/lord/{Tools => Items}/lord_books/locale/lord_books.ru.tr (100%) rename mods/lord/{Tools => Items}/lord_books/locale/template.txt (100%) rename mods/lord/{Tools => Items}/lord_books/master.lua (100%) rename mods/lord/{Tools => Items}/lord_books/mod.conf (100%) rename mods/lord/{Tools => Items}/lord_books/potions.lua (100%) rename mods/lord/{Tools => Items}/lord_books/protection.lua (100%) rename mods/lord/{Tools => Items}/lord_books/scroll.lua (100%) rename mods/lord/{Tools => Items}/lord_books/textures/books_craft_arrow.png (100%) rename mods/lord/{Tools => Items}/lord_books/textures/books_formbg.png (100%) rename mods/lord/{Tools => Items}/lord_books/textures/books_method_cooking.png (100%) rename mods/lord/{Tools => Items}/lord_books/textures/books_method_normal.png (100%) rename mods/lord/{Tools => Items}/lord_books/textures/books_next.png (100%) rename mods/lord/{Tools => Items}/lord_books/textures/books_next_inactive.png (100%) rename mods/lord/{Tools => Items}/lord_books/textures/books_next_press.png (100%) rename mods/lord/{Tools => Items}/lord_books/textures/books_previous.png (100%) rename mods/lord/{Tools => Items}/lord_books/textures/books_previous_inactive.png (100%) rename mods/lord/{Tools => Items}/lord_books/textures/books_previous_press.png (100%) rename mods/lord/{Tools => Items}/lord_books/textures/brewing_book.png (100%) rename mods/lord/{Tools => Items}/lord_books/textures/cooking_book.png (100%) rename mods/lord/{Tools => Items}/lord_books/textures/crafts_book.png (100%) rename mods/lord/{Tools => Items}/lord_books/textures/forbidden_book.png (100%) rename mods/lord/{Tools => Items}/lord_books/textures/master_book.png (100%) rename mods/lord/{Tools => Items}/lord_books/textures/potion_book.png (100%) rename mods/lord/{Tools => Items}/lord_books/textures/protection_book.png (100%) rename mods/lord/{Tools => Items}/lord_books/textures/scroll.png (100%) rename mods/lord/{Tools => Items}/lord_bucket/init.lua (100%) rename mods/lord/{Tools => Items}/lord_bucket/locale/lord_bucket.ru.tr (100%) rename mods/lord/{Tools => Items}/lord_bucket/locale/template.txt (100%) rename mods/lord/{Tools => Items}/lord_bucket/mod.conf (100%) rename mods/lord/{Tools => Items}/lord_bucket/textures/bucket_ice.png (100%) rename mods/lord/{Tools => Items}/lord_bucket/textures/bucket_salt.png (100%) rename mods/lord/{Tools => Items}/lord_bucket/textures/bucket_snow.png (100%) rename mods/lord/{Tools => Items}/lord_food/init.lua (100%) rename mods/lord/{Tools => Items}/lord_food/locale/lord_food.ru.tr (100%) rename mods/lord/{Tools => Items}/lord_food/locale/template.txt (100%) rename mods/lord/{Tools => Items}/lord_food/mod.conf (100%) rename mods/lord/{Tools => Items}/lord_food/textures/lord_food_lembas.png (100%) rename mods/lord/{Tools => Items}/lord_food/textures/lord_food_pancakes.png (100%) rename mods/lord/{Tools => Items}/lord_food/textures/lord_food_pancakes_with_honey.png (100%) rename mods/lord/{Tools => Items}/lord_money/init.lua (100%) rename mods/lord/{Tools => Items}/lord_money/locale/lord_money.ru.tr (100%) rename mods/lord/{Tools => Items}/lord_money/locale/template.txt (100%) rename mods/lord/{Tools => Items}/lord_money/mod.conf (100%) rename mods/lord/{Tools => Items}/lord_money/money.lua (100%) rename mods/lord/{Tools => Items}/lord_money/shop.lua (100%) rename mods/lord/{Tools => Items}/lord_money/textures/lord_money_copper_coin.png (100%) rename mods/lord/{Tools => Items}/lord_money/textures/lord_money_diamond_coin.png (100%) rename mods/lord/{Tools => Items}/lord_money/textures/lord_money_gold_coin.png (100%) rename mods/lord/{Tools => Items}/lord_money/textures/lord_money_silver_coin.png (100%) rename mods/lord/{Tools => Items}/lord_money/textures/shop_chest_top.png (100%) rename mods/lord/{Tools => Items}/lord_money/textures/shop_license.png (100%) rename mods/lord/{Tools => Items}/lord_potions/init.lua (100%) rename mods/lord/{Tools => Items}/lord_potions/legacy.lua (100%) rename mods/lord/{Tools => Items}/lord_potions/locale/lord_potions.en.tr (100%) rename mods/lord/{Tools => Items}/lord_potions/locale/lord_potions.ru.tr (100%) rename mods/lord/{Tools => Items}/lord_potions/mod.conf (100%) rename mods/lord/{Tools => Items}/lord_potions/src/lord_potions.lua (100%) rename mods/lord/{Tools => Items}/lord_potions/src/lord_potions/api.lua (100%) rename mods/lord/{Tools => Items}/lord_potions/src/lord_potions/api/ingredient.lua (100%) rename mods/lord/{Tools => Items}/lord_potions/src/lord_potions/api/potion.lua (100%) rename mods/lord/{Tools => Items}/lord_potions/src/lord_potions/config.lua (100%) rename mods/lord/{Tools => Items}/lord_potions/src/lord_potions/config/ingredients.lua (100%) rename mods/lord/{Tools => Items}/lord_potions/src/lord_potions/config/potions.lua (100%) rename mods/lord/{Tools => Items}/lord_potions/textures/ingredients/lord_potions_ingredient_bonedust.png (100%) rename mods/lord/{Tools => Items}/lord_potions/textures/ingredients/lord_potions_ingredient_geodes.png (100%) rename mods/lord/{Tools => Items}/lord_potions/textures/ingredients/lord_potions_ingredient_mese.png (100%) rename mods/lord/{Tools => Items}/lord_potions/textures/ingredients/lord_potions_ingredient_mordor.png (100%) rename mods/lord/{Tools => Items}/lord_potions/textures/ingredients/lord_potions_ingredient_obsidian.png (100%) rename mods/lord/{Tools => Items}/lord_potions/textures/ingredients/lord_potions_ingredient_seregon.png (100%) rename mods/lord/{Tools => Items}/lord_potions/textures/lord_potions_bottle.png (100%) rename mods/lord/{Tools => Items}/lord_potions/textures/lord_potions_bottle_content_mask.png (100%) rename mods/lord/{Tools => Items}/lord_projectiles/init.lua (100%) rename mods/lord/{Tools => Items}/lord_projectiles/locale/lord_projectiles.ru.tr (100%) rename mods/lord/{Tools => Items}/lord_projectiles/mod.conf (100%) rename mods/lord/{Tools => Items}/lord_projectiles/models/lord_projectiles_arrow.obj (100%) rename mods/lord/{Tools => Items}/lord_projectiles/sounds/LICENSE (100%) rename mods/lord/{Tools => Items}/lord_projectiles/sounds/lord_projectiles_arrow_hit_node.ogg (100%) rename mods/lord/{Tools => Items}/lord_projectiles/sounds/lord_projectiles_arrow_hit_object.ogg (100%) rename mods/lord/{Tools => Items}/lord_projectiles/sounds/lord_projectiles_explosion.ogg (100%) rename mods/lord/{Tools => Items}/lord_projectiles/src/lord_projectiles.lua (100%) rename mods/lord/{Tools => Items}/lord_projectiles/src/lord_projectiles/config.lua (100%) rename mods/lord/{Tools => Items}/lord_projectiles/src/lord_projectiles/crafts.lua (100%) rename mods/lord/{Tools => Items}/lord_projectiles/textures/lord_projectiles_arrow_trajectory_normal_particle.png (100%) rename mods/lord/{Tools => Items}/lord_projectiles/textures/lord_projectiles_arrow_trajectory_water_particle.png (100%) rename mods/lord/{Tools => Items}/lord_projectiles/textures/lord_projectiles_bolt_trajectory_normal_particle.png (100%) rename mods/lord/{Tools => Items}/lord_projectiles/textures/lord_projectiles_bolt_trajectory_water_particle.png (100%) rename mods/lord/{Tools => Items}/lord_projectiles/textures/lord_projectiles_bronze_arrow.png (100%) rename mods/lord/{Tools => Items}/lord_projectiles/textures/lord_projectiles_bronze_arrow_entity.png (100%) rename mods/lord/{Tools => Items}/lord_projectiles/textures/lord_projectiles_bronze_bolt.png (100%) rename mods/lord/{Tools => Items}/lord_projectiles/textures/lord_projectiles_bronze_bolt_entity.png (100%) rename mods/lord/{Tools => Items}/lord_projectiles/textures/lord_projectiles_explosion_particle.png (100%) rename mods/lord/{Tools => Items}/lord_projectiles/textures/lord_projectiles_fire_magic_trajectory_normal_particle.png (100%) rename mods/lord/{Tools => Items}/lord_projectiles/textures/lord_projectiles_fire_magic_trajectory_water_particle.png (100%) rename mods/lord/{Tools => Items}/lord_projectiles/textures/lord_projectiles_flint_arrow.png (100%) rename mods/lord/{Tools => Items}/lord_projectiles/textures/lord_projectiles_flint_arrow_entity.png (100%) rename mods/lord/{Tools => Items}/lord_projectiles/textures/lord_projectiles_galvorn_arrow.png (100%) rename mods/lord/{Tools => Items}/lord_projectiles/textures/lord_projectiles_galvorn_arrow_entity.png (100%) rename mods/lord/{Tools => Items}/lord_projectiles/textures/lord_projectiles_galvorn_bolt.png (100%) rename mods/lord/{Tools => Items}/lord_projectiles/textures/lord_projectiles_galvorn_bolt_entity.png (100%) rename mods/lord/{Tools => Items}/lord_projectiles/textures/lord_projectiles_mithril_arrow.png (100%) rename mods/lord/{Tools => Items}/lord_projectiles/textures/lord_projectiles_mithril_arrow_entity.png (100%) rename mods/lord/{Tools => Items}/lord_projectiles/textures/lord_projectiles_mithril_bolt.png (100%) rename mods/lord/{Tools => Items}/lord_projectiles/textures/lord_projectiles_mithril_bolt_entity.png (100%) rename mods/lord/{Tools => Items}/lord_projectiles/textures/lord_projectiles_soul_magic_trajectory_normal_particle.png (100%) rename mods/lord/{Tools => Items}/lord_projectiles/textures/lord_projectiles_soul_magic_trajectory_water_particle.png (100%) rename mods/lord/{Tools => Items}/lord_projectiles/textures/lord_projectiles_steel_arrow.png (100%) rename mods/lord/{Tools => Items}/lord_projectiles/textures/lord_projectiles_steel_arrow_entity.png (100%) rename mods/lord/{Tools => Items}/lord_projectiles/textures/lord_projectiles_steel_bolt.png (100%) rename mods/lord/{Tools => Items}/lord_projectiles/textures/lord_projectiles_steel_bolt_entity.png (100%) rename mods/lord/{Tools => Items}/lord_projectiles/textures/lord_projectiles_throwable_trajectory_normal_particle.png (100%) rename mods/lord/{Tools => Items}/lord_projectiles/textures/lord_projectiles_throwable_trajectory_water_particle.png (100%) rename mods/lord/{Tools => Items}/lord_projectiles/textures/lottmobs_darkball.png (100%) rename mods/lord/{Tools => Items}/lord_projectiles/textures/lottmobs_egg.png (100%) rename mods/lord/{Tools => Items}/lord_projectiles/textures/mobs_fireball.png (100%) rename mods/lord/{Tools => Items}/lord_replacer/LICENSE.txt (100%) rename mods/lord/{Tools => Items}/lord_replacer/init.lua (100%) rename mods/lord/{Tools => Items}/lord_replacer/locale/lord_replacer.ru.tr (100%) rename mods/lord/{Tools => Items}/lord_replacer/mod.conf (100%) rename mods/lord/{Tools => Items}/lord_replacer/textures/lord_replacer_replacer.png (100%) rename mods/lord/{Tools => Items}/lord_screwdriver/init.lua (100%) rename mods/lord/{Tools => Items}/lord_screwdriver/locale/lord_screwdriver.ru.tr (100%) rename mods/lord/{Tools => Items}/lord_screwdriver/locale/template.txt (100%) rename mods/lord/{Tools => Items}/lord_screwdriver/mod.conf (100%) rename mods/lord/{Tools => Items}/lord_screwdriver/textures/screwdriver.png (100%) rename mods/lord/{Tools => Items}/lord_screwdriver/textures/screwdriver_galvorn.png (100%) rename mods/lord/{Tools => Items}/lord_vessels/init.lua (100%) rename mods/lord/{Tools => Items}/lord_vessels/legacy.lua (100%) rename mods/lord/{Tools => Items}/lord_vessels/license.md (100%) rename mods/lord/{Tools => Items}/lord_vessels/locale/lord_vessels.en.tr (100%) rename mods/lord/{Tools => Items}/lord_vessels/locale/lord_vessels.ru.tr (100%) rename mods/lord/{Tools => Items}/lord_vessels/mod.conf (100%) rename mods/lord/{Tools => Items}/lord_vessels/models/bowls/lord_vessels_bowl_1.blend (100%) rename mods/lord/{Tools => Items}/lord_vessels/models/bowls/lord_vessels_bowl_1.obj (100%) rename mods/lord/{Tools => Items}/lord_vessels/models/bowls/lord_vessels_bowl_2.blend (100%) rename mods/lord/{Tools => Items}/lord_vessels/models/bowls/lord_vessels_bowl_2.obj (100%) rename mods/lord/{Tools => Items}/lord_vessels/models/bowls/lord_vessels_bowl_3.blend (100%) rename mods/lord/{Tools => Items}/lord_vessels/models/bowls/lord_vessels_bowl_3.obj (100%) rename mods/lord/{Tools => Items}/lord_vessels/models/bowls/lord_vessels_bowl_4.blend (100%) rename mods/lord/{Tools => Items}/lord_vessels/models/bowls/lord_vessels_bowl_4.obj (100%) rename mods/lord/{Tools => Items}/lord_vessels/models/bowls/lord_vessels_bowl_5.blend (100%) rename mods/lord/{Tools => Items}/lord_vessels/models/bowls/lord_vessels_bowl_5.obj (100%) rename mods/lord/{Tools => Items}/lord_vessels/models/bowls/lord_vessels_bowl_6.blend (100%) rename mods/lord/{Tools => Items}/lord_vessels/models/bowls/lord_vessels_bowl_6.obj (100%) rename mods/lord/{Tools => Items}/lord_vessels/models/lord_vessels_pint.blend (100%) rename mods/lord/{Tools => Items}/lord_vessels/models/lord_vessels_pint.obj (100%) rename mods/lord/{Tools => Items}/lord_vessels/models/lord_vessels_steel_can.blend (100%) rename mods/lord/{Tools => Items}/lord_vessels/models/lord_vessels_steel_can.obj (100%) rename mods/lord/{Tools => Items}/lord_vessels/models/lord_vessels_vase_1.blend (100%) rename mods/lord/{Tools => Items}/lord_vessels/models/lord_vessels_vase_1.obj (100%) rename mods/lord/{Tools => Items}/lord_vessels/models/lord_vessels_vase_2.blend (100%) rename mods/lord/{Tools => Items}/lord_vessels/models/lord_vessels_vase_2.obj (100%) rename mods/lord/{Tools => Items}/lord_vessels/src/bottles.lua (100%) rename mods/lord/{Tools => Items}/lord_vessels/src/can.lua (100%) rename mods/lord/{Tools => Items}/lord_vessels/src/cauldron/usage.lua (100%) rename mods/lord/{Tools => Items}/lord_vessels/src/glasses.lua (100%) rename mods/lord/{Tools => Items}/lord_vessels/src/pints.lua (100%) rename mods/lord/{Tools => Items}/lord_vessels/src/plates.lua (100%) rename mods/lord/{Tools => Items}/lord_vessels/src/vases.lua (100%) rename mods/lord/{Tools => Items}/lord_vessels/textures/lord_vessels_bottle_closed.png (100%) rename mods/lord/{Tools => Items}/lord_vessels/textures/lord_vessels_bowl_inv.png (100%) rename mods/lord/{Tools => Items}/lord_vessels/textures/lord_vessels_bowl_wood_1.png (100%) rename mods/lord/{Tools => Items}/lord_vessels/textures/lord_vessels_bowl_wood_2.png (100%) rename mods/lord/{Tools => Items}/lord_vessels/textures/lord_vessels_bowl_wood_3.png (100%) rename mods/lord/{Tools => Items}/lord_vessels/textures/lord_vessels_glass_water.png (100%) rename mods/lord/{Tools => Items}/lord_vessels/textures/lord_vessels_pint_wood.png (100%) rename mods/lord/{Tools => Items}/lord_vessels/textures/lord_vessels_salt_bottle.png (100%) rename mods/lord/{Tools => Items}/lord_vessels/textures/lord_vessels_steel_can.png (100%) rename mods/lord/{Tools => Items}/lord_vessels/textures/lord_vessels_steel_can_wield.png (100%) rename mods/lord/{Tools => Items}/lord_vessels/textures/lord_vessels_vase_1.png (100%) rename mods/lord/{Tools => Items}/lord_vessels/textures/lord_vessels_vase_1_inv.png (100%) rename mods/lord/{Tools => Items}/lord_vessels/textures/lord_vessels_vase_1_raw_inv.png (100%) rename mods/lord/{Tools => Items}/lord_vessels/textures/lord_vessels_vase_2.png (100%) rename mods/lord/{Tools => Items}/lord_vessels/textures/lord_vessels_vase_2_inv.png (100%) rename mods/lord/{Tools => Items}/lord_vessels/textures/lord_vessels_vase_2_raw_inv.png (100%) rename mods/lord/{Tools => Items}/lord_vessels/textures/lord_vessels_water.png (100%) rename mods/lord/{Tools => Items}/lord_vessels/textures/vessels_drinking_glass.png (100%) rename mods/lord/{Tools => Items}/lord_vessels/textures/vessels_drinking_glass_inv.png (100%) rename mods/lord/{Tools => Items}/lord_vessels/textures/vessels_glass_bottle.png (100%) rename mods/lord/{Tools => Items}/lottclothes/brandybuck.lua (100%) rename mods/lord/{Tools => Items}/lottclothes/chetwood.lua (100%) rename mods/lord/{Tools => Items}/lottclothes/cloaks.lua (100%) rename mods/lord/{Tools => Items}/lottclothes/elven.lua (100%) rename mods/lord/{Tools => Items}/lottclothes/ettenmoor.lua (100%) rename mods/lord/{Tools => Items}/lottclothes/fabrics.lua (100%) rename mods/lord/{Tools => Items}/lottclothes/hobbit.lua (100%) rename mods/lord/{Tools => Items}/lottclothes/init.lua (100%) rename mods/lord/{Tools => Items}/lottclothes/license.txt (100%) rename mods/lord/{Tools => Items}/lottclothes/locale/lottclothes.en.tr (100%) rename mods/lord/{Tools => Items}/lottclothes/locale/lottclothes.ru.tr (100%) rename mods/lord/{Tools => Items}/lottclothes/locale/template.txt (100%) rename mods/lord/{Tools => Items}/lottclothes/midgewater.lua (100%) rename mods/lord/{Tools => Items}/lottclothes/mod.conf (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_boots_chetwood.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_boots_chetwood_preview.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_boots_dwarf.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_boots_dwarf_preview.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_boots_midgewater.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_boots_midgewater_preview.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_cap_chetwood.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_cap_chetwood_preview.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_cap_midgewater.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_cap_midgewater_preview.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_cloak_elven.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_cloak_hobbit_blue.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_cloak_hobbit_brown.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_cloak_hobbit_green.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_cloak_hobbit_grey.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_cloak_hobbit_pink.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_cloak_hobbit_red.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_cloak_hobbit_white.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_cloak_hobbit_yellow.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_cloak_mordor.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_cloak_ranger.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_cloak_wizard_grey.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_cloak_wizard_white.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_felt_basemodel.xcf (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_felt_black.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_felt_blue.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_felt_brown.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_felt_green.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_felt_grey.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_felt_orange.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_felt_pink.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_felt_red.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_felt_white.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_felt_yellow.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_feltthread.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_flax_basemodel.xcf (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_flax_black.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_flax_blue.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_flax_brown.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_flax_green.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_flax_grey.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_flax_pink.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_flax_red.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_flax_white.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_flax_yellow.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_flaxthread.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_hood_elven.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_hood_elven_preview.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_hood_ettenmoor.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_hood_ettenmoor_preview.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_hood_wizard_blue.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_hood_wizard_blue_preview.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_hood_wizard_white.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_hood_wizard_white_preivew.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_inv_boots_chetwood.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_inv_boots_dwarf.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_inv_boots_midgewater.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_inv_cap_chetwood.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_inv_cap_midgewater.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_inv_cloak_elven.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_inv_cloak_hobbit_blue.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_inv_cloak_hobbit_brown.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_inv_cloak_hobbit_green.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_inv_cloak_hobbit_grey.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_inv_cloak_hobbit_pink.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_inv_cloak_hobbit_red.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_inv_cloak_hobbit_white.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_inv_cloak_hobbit_yellow.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_inv_cloak_mordor.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_inv_cloak_ranger.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_inv_cloak_wizard_grey.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_inv_cloak_wizard_white.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_inv_hood_elven.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_inv_hood_ettenmoor.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_inv_hood_wizard_blue.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_inv_hood_wizard_white.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_inv_jacket_chetwood.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_inv_jacket_midgewater.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_inv_pants_chetwood.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_inv_pants_midgewater.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_inv_robe_ettenmoor.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_inv_robe_wizard_grey.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_inv_robe_wizard_white.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_inv_shirt_brandybuck.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_inv_shirt_elven.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_inv_shirt_hobbit_blue.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_inv_shirt_hobbit_brown.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_inv_shirt_hobbit_green.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_inv_shirt_hobbit_grey.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_inv_shirt_hobbit_pink.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_inv_shirt_hobbit_red.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_inv_shirt_hobbit_white.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_inv_shirt_hobbit_yellow.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_inv_shoes.xcf (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_inv_shoes_brandybuck.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_inv_shoes_elven.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_inv_shoes_hobbit_blue.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_inv_shoes_hobbit_brown.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_inv_shoes_hobbit_green.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_inv_shoes_hobbit_grey.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_inv_shoes_hobbit_pink.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_inv_shoes_hobbit_red.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_inv_shoes_hobbit_white.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_inv_shoes_hobbit_yellow.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_inv_shorts_hobbit_blue.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_inv_shorts_hobbit_brown.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_inv_shorts_hobbit_green.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_inv_shorts_hobbit_grey.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_inv_shorts_hobbit_pink.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_inv_shorts_hobbit_red.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_inv_shorts_hobbit_white.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_inv_shorts_hobbit_yellow.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_inv_trousers_brandybuck.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_inv_trousers_elven.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_inv_trousers_ettenmoor.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_inv_trousers_wizard_white.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_jacket_chetwood.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_jacket_chetwood_preview.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_jacket_midgewater.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_jacket_midgewater_preview.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_pants_chetwood.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_pants_chetwood_preview.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_pants_midgewater.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_pants_midgewater_preview.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_robe_ettenmoor.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_robe_ettenmoor_preview.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_robe_wizard_grey.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_robe_wizard_grey_preview.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_robe_wizard_white.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_robe_wizard_white_preview.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_shirt_brandybuck.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_shirt_brandybuck_preview.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_shirt_elven.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_shirt_elven_preview.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_shirt_hobbit_base.xcf (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_shirt_hobbit_base_preview.xcf (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_shirt_hobbit_blue.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_shirt_hobbit_blue_preview.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_shirt_hobbit_brown.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_shirt_hobbit_brown_preview.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_shirt_hobbit_green.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_shirt_hobbit_green_preview.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_shirt_hobbit_grey.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_shirt_hobbit_grey_preview.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_shirt_hobbit_pink.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_shirt_hobbit_pink_preview.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_shirt_hobbit_red.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_shirt_hobbit_red_preview.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_shirt_hobbit_white.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_shirt_hobbit_white_preview.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_shirt_hobbit_yellow.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_shirt_hobbit_yellow_preview.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_shoes_brandybuck.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_shoes_brandybuck_preview.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_shoes_elven.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_shoes_elven_preview.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_shoes_hobbit_base.xcf (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_shoes_hobbit_base_preview.xcf (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_shoes_hobbit_blue.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_shoes_hobbit_blue_preview.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_shoes_hobbit_brown.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_shoes_hobbit_brown_preview.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_shoes_hobbit_green.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_shoes_hobbit_green_preview.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_shoes_hobbit_grey.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_shoes_hobbit_grey_preview.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_shoes_hobbit_pink.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_shoes_hobbit_pink_preview.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_shoes_hobbit_red.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_shoes_hobbit_red_preview.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_shoes_hobbit_white.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_shoes_hobbit_white_preview.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_shoes_hobbit_yellow.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_shoes_hobbit_yellow_preview.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_shorts_hobbit_base.xcf (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_shorts_hobbit_base_preview.xcf (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_shorts_hobbit_blue.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_shorts_hobbit_blue_preview.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_shorts_hobbit_brown.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_shorts_hobbit_brown_preview.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_shorts_hobbit_green.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_shorts_hobbit_green_preview.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_shorts_hobbit_grey.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_shorts_hobbit_grey_preview.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_shorts_hobbit_pink.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_shorts_hobbit_pink_preview.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_shorts_hobbit_red.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_shorts_hobbit_red_preview.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_shorts_hobbit_white.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_shorts_hobbit_white_preview.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_shorts_hobbit_yellow.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_shorts_hobbit_yellow_preview.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_trousers_brandybuck.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_trousers_brandybuck_preview.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_trousers_elven.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_trousers_elven_preview.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_trousers_ettenmoor.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_trousers_ettenmoor_preview.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_trousers_wizard_white.png (100%) rename mods/lord/{Tools => Items}/lottclothes/textures/lottclothes_trousers_wizard_white_preview.png (100%) rename mods/lord/{Tools => Items}/lottclothes/wizard.lua (100%) create mode 100644 mods/lord/Items/modpack.conf rename mods/lord/{Tools => Items}/readme.md (98%) rename mods/lord/{Tools => Items}/tools/LICENSE (100%) rename mods/lord/{Tools => Items}/tools/aliases.lua (100%) rename mods/lord/{Tools => Items}/tools/init.lua (100%) rename mods/lord/{Tools => Items}/tools/locale/template.txt (100%) rename mods/lord/{Tools => Items}/tools/locale/tools.en.tr (100%) rename mods/lord/{Tools => Items}/tools/locale/tools.ru.tr (100%) rename mods/lord/{Tools => Items}/tools/mod.conf (100%) rename mods/lord/{Tools => Items}/tools/src/axes.lua (100%) rename mods/lord/{Tools => Items}/tools/src/battleaxes.lua (100%) rename mods/lord/{Tools => Items}/tools/src/daggers.lua (100%) rename mods/lord/{Tools => Items}/tools/src/picks.lua (100%) rename mods/lord/{Tools => Items}/tools/src/racial.lua (100%) rename mods/lord/{Tools => Items}/tools/src/shovels.lua (100%) rename mods/lord/{Tools => Items}/tools/src/spears.lua (100%) rename mods/lord/{Tools => Items}/tools/src/special.lua (100%) rename mods/lord/{Tools => Items}/tools/src/swords.lua (100%) rename mods/lord/{Tools => Items}/tools/src/warhammers.lua (100%) rename mods/lord/{Tools => Items}/tools/textures/axes/tools_axe_bronze.png (100%) rename mods/lord/{Tools => Items}/tools/textures/axes/tools_axe_copper.png (100%) rename mods/lord/{Tools => Items}/tools/textures/axes/tools_axe_galvorn.png (100%) rename mods/lord/{Tools => Items}/tools/textures/axes/tools_axe_gold.png (100%) rename mods/lord/{Tools => Items}/tools/textures/axes/tools_axe_mithril.png (100%) rename mods/lord/{Tools => Items}/tools/textures/axes/tools_axe_silver.png (100%) rename mods/lord/{Tools => Items}/tools/textures/axes/tools_axe_steel.png (100%) rename mods/lord/{Tools => Items}/tools/textures/axes/tools_axe_stone.png (100%) rename mods/lord/{Tools => Items}/tools/textures/axes/tools_axe_tin.png (100%) rename mods/lord/{Tools => Items}/tools/textures/axes/tools_axe_wood.png (100%) rename mods/lord/{Tools => Items}/tools/textures/battleaxes/tools_battleaxe_bronze.png (100%) rename mods/lord/{Tools => Items}/tools/textures/battleaxes/tools_battleaxe_copper.png (100%) rename mods/lord/{Tools => Items}/tools/textures/battleaxes/tools_battleaxe_galvorn.png (100%) rename mods/lord/{Tools => Items}/tools/textures/battleaxes/tools_battleaxe_gold.png (100%) rename mods/lord/{Tools => Items}/tools/textures/battleaxes/tools_battleaxe_mithril.png (100%) rename mods/lord/{Tools => Items}/tools/textures/battleaxes/tools_battleaxe_silver.png (100%) rename mods/lord/{Tools => Items}/tools/textures/battleaxes/tools_battleaxe_steel.png (100%) rename mods/lord/{Tools => Items}/tools/textures/battleaxes/tools_battleaxe_stone.png (100%) rename mods/lord/{Tools => Items}/tools/textures/battleaxes/tools_battleaxe_tin.png (100%) rename mods/lord/{Tools => Items}/tools/textures/battleaxes/tools_battleaxe_wood.png (100%) rename mods/lord/{Tools => Items}/tools/textures/daggers/tools_dagger_bronze.png (100%) rename mods/lord/{Tools => Items}/tools/textures/daggers/tools_dagger_copper.png (100%) rename mods/lord/{Tools => Items}/tools/textures/daggers/tools_dagger_galvorn.png (100%) rename mods/lord/{Tools => Items}/tools/textures/daggers/tools_dagger_gold.png (100%) rename mods/lord/{Tools => Items}/tools/textures/daggers/tools_dagger_mithril.png (100%) rename mods/lord/{Tools => Items}/tools/textures/daggers/tools_dagger_silver.png (100%) rename mods/lord/{Tools => Items}/tools/textures/daggers/tools_dagger_steel.png (100%) rename mods/lord/{Tools => Items}/tools/textures/daggers/tools_dagger_stone.png (100%) rename mods/lord/{Tools => Items}/tools/textures/daggers/tools_dagger_tin.png (100%) rename mods/lord/{Tools => Items}/tools/textures/daggers/tools_dagger_wood.png (100%) rename mods/lord/{Tools => Items}/tools/textures/pickaxes/tools_pick_bronze.png (100%) rename mods/lord/{Tools => Items}/tools/textures/pickaxes/tools_pick_copper.png (100%) rename mods/lord/{Tools => Items}/tools/textures/pickaxes/tools_pick_galvorn.png (100%) rename mods/lord/{Tools => Items}/tools/textures/pickaxes/tools_pick_gold.png (100%) rename mods/lord/{Tools => Items}/tools/textures/pickaxes/tools_pick_mithril.png (100%) rename mods/lord/{Tools => Items}/tools/textures/pickaxes/tools_pick_silver.png (100%) rename mods/lord/{Tools => Items}/tools/textures/pickaxes/tools_pick_steel.png (100%) rename mods/lord/{Tools => Items}/tools/textures/pickaxes/tools_pick_stone.png (100%) rename mods/lord/{Tools => Items}/tools/textures/pickaxes/tools_pick_tin.png (100%) rename mods/lord/{Tools => Items}/tools/textures/pickaxes/tools_pick_wood.png (100%) rename mods/lord/{Tools => Items}/tools/textures/racial/tools_battleaxe_dwarf.png (100%) rename mods/lord/{Tools => Items}/tools/textures/racial/tools_dagger_hobbit.png (100%) rename mods/lord/{Tools => Items}/tools/textures/racial/tools_sword_elven.png (100%) rename mods/lord/{Tools => Items}/tools/textures/racial/tools_sword_human.png (100%) rename mods/lord/{Tools => Items}/tools/textures/racial/tools_sword_orcish.png (100%) rename mods/lord/{Tools => Items}/tools/textures/shovels/tools_shovel_bronze.png (100%) rename mods/lord/{Tools => Items}/tools/textures/shovels/tools_shovel_copper.png (100%) rename mods/lord/{Tools => Items}/tools/textures/shovels/tools_shovel_galvorn.png (100%) rename mods/lord/{Tools => Items}/tools/textures/shovels/tools_shovel_gold.png (100%) rename mods/lord/{Tools => Items}/tools/textures/shovels/tools_shovel_mithril.png (100%) rename mods/lord/{Tools => Items}/tools/textures/shovels/tools_shovel_silver.png (100%) rename mods/lord/{Tools => Items}/tools/textures/shovels/tools_shovel_steel.png (100%) rename mods/lord/{Tools => Items}/tools/textures/shovels/tools_shovel_stone.png (100%) rename mods/lord/{Tools => Items}/tools/textures/shovels/tools_shovel_tin.png (100%) rename mods/lord/{Tools => Items}/tools/textures/shovels/tools_shovel_wood.png (100%) rename mods/lord/{Tools => Items}/tools/textures/spears/tools_spear_bronze.png (100%) rename mods/lord/{Tools => Items}/tools/textures/spears/tools_spear_copper.png (100%) rename mods/lord/{Tools => Items}/tools/textures/spears/tools_spear_galvorn.png (100%) rename mods/lord/{Tools => Items}/tools/textures/spears/tools_spear_gold.png (100%) rename mods/lord/{Tools => Items}/tools/textures/spears/tools_spear_mithril.png (100%) rename mods/lord/{Tools => Items}/tools/textures/spears/tools_spear_silver.png (100%) rename mods/lord/{Tools => Items}/tools/textures/spears/tools_spear_steel.png (100%) rename mods/lord/{Tools => Items}/tools/textures/spears/tools_spear_stone.png (100%) rename mods/lord/{Tools => Items}/tools/textures/spears/tools_spear_tin.png (100%) rename mods/lord/{Tools => Items}/tools/textures/spears/tools_spear_wood.png (100%) rename mods/lord/{Tools => Items}/tools/textures/special/tools_sword_orc.png (100%) rename mods/lord/{Tools => Items}/tools/textures/special/tools_sword_urukhai.png (100%) rename mods/lord/{Tools => Items}/tools/textures/swords/tools_sword_bronze.png (100%) rename mods/lord/{Tools => Items}/tools/textures/swords/tools_sword_copper.png (100%) rename mods/lord/{Tools => Items}/tools/textures/swords/tools_sword_galvorn.png (100%) rename mods/lord/{Tools => Items}/tools/textures/swords/tools_sword_gold.png (100%) rename mods/lord/{Tools => Items}/tools/textures/swords/tools_sword_mithril.png (100%) rename mods/lord/{Tools => Items}/tools/textures/swords/tools_sword_silver.png (100%) rename mods/lord/{Tools => Items}/tools/textures/swords/tools_sword_steel.png (100%) rename mods/lord/{Tools => Items}/tools/textures/swords/tools_sword_stone.png (100%) rename mods/lord/{Tools => Items}/tools/textures/swords/tools_sword_tin.png (100%) rename mods/lord/{Tools => Items}/tools/textures/swords/tools_sword_wood.png (100%) rename mods/lord/{Tools => Items}/tools/textures/warhammers/tools_warhammer_bronze.png (100%) rename mods/lord/{Tools => Items}/tools/textures/warhammers/tools_warhammer_copper.png (100%) rename mods/lord/{Tools => Items}/tools/textures/warhammers/tools_warhammer_galvorn.png (100%) rename mods/lord/{Tools => Items}/tools/textures/warhammers/tools_warhammer_gold.png (100%) rename mods/lord/{Tools => Items}/tools/textures/warhammers/tools_warhammer_mithril.png (100%) rename mods/lord/{Tools => Items}/tools/textures/warhammers/tools_warhammer_silver.png (100%) rename mods/lord/{Tools => Items}/tools/textures/warhammers/tools_warhammer_steel.png (100%) rename mods/lord/{Tools => Items}/tools/textures/warhammers/tools_warhammer_stone.png (100%) rename mods/lord/{Tools => Items}/tools/textures/warhammers/tools_warhammer_tin.png (100%) rename mods/lord/{Tools => Items}/tools/textures/warhammers/tools_warhammer_wood.png (100%) delete mode 100644 mods/lord/Tools/Admin/modpack.conf delete mode 100644 mods/lord/Tools/modpack.conf diff --git a/.distribution-exclude b/.distribution-exclude index c7bb920c2..51949d175 100644 --- a/.distribution-exclude +++ b/.distribution-exclude @@ -15,8 +15,8 @@ /mods/lord/Game/lord_web_api/* /mods/lord/Game/lord_web_integration/* /mods/lord/Player/clans/* -/mods/lord/Tools/clans_clothes/* -/mods/lord/Tools/clans_tools/* +/mods/lord/Items/clans_clothes/* +/mods/lord/Items/clans_tools/* /mods/lord/World/arena/* /mods/lord/World/lord_events/* /util/* diff --git a/.github/workflows/luacheck.yml b/.github/workflows/luacheck.yml index 887c4834e..4dbc1602a 100644 --- a/.github/workflows/luacheck.yml +++ b/.github/workflows/luacheck.yml @@ -51,8 +51,8 @@ jobs: mods/lord/Player/hud_modpack/hbhunger/ \ mods/lord/Player/hud_modpack/hbsprint/ \ mods/lord/Player/hud_modpack/hudbars/ \ - mods/lord/Tools/lord_replacer/ \ - mods/lord/Tools/lord_books/ \ - mods/lord/Tools/lord_boats/ \ + mods/lord/Items/lord_replacer/ \ + mods/lord/Items/lord_books/ \ + mods/lord/Items/lord_boats/ \ mods/lord/World/Generation/lottmapgen/ \ mods/lord/Player/Help/lord_tooltips/src/snippet/properties/node.lua diff --git a/mods/lord/Tools/Admin/admin_tools/init.lua b/mods/lord/Items/Admin/admin_tools/init.lua similarity index 100% rename from mods/lord/Tools/Admin/admin_tools/init.lua rename to mods/lord/Items/Admin/admin_tools/init.lua diff --git a/mods/lord/Tools/Admin/admin_tools/mod.conf b/mods/lord/Items/Admin/admin_tools/mod.conf similarity index 100% rename from mods/lord/Tools/Admin/admin_tools/mod.conf rename to mods/lord/Items/Admin/admin_tools/mod.conf diff --git a/mods/lord/Tools/Admin/admin_tools/textures/lord_tools_pointer.png b/mods/lord/Items/Admin/admin_tools/textures/lord_tools_pointer.png similarity index 100% rename from mods/lord/Tools/Admin/admin_tools/textures/lord_tools_pointer.png rename to mods/lord/Items/Admin/admin_tools/textures/lord_tools_pointer.png diff --git a/mods/lord/Tools/Admin/admin_tools/textures/tool_admin_pick.png b/mods/lord/Items/Admin/admin_tools/textures/tool_admin_pick.png similarity index 100% rename from mods/lord/Tools/Admin/admin_tools/textures/tool_admin_pick.png rename to mods/lord/Items/Admin/admin_tools/textures/tool_admin_pick.png diff --git a/mods/lord/Tools/Admin/admin_tools/textures/tool_magic_stick.png b/mods/lord/Items/Admin/admin_tools/textures/tool_magic_stick.png similarity index 100% rename from mods/lord/Tools/Admin/admin_tools/textures/tool_magic_stick.png rename to mods/lord/Items/Admin/admin_tools/textures/tool_magic_stick.png diff --git a/mods/lord/Items/Admin/modpack.conf b/mods/lord/Items/Admin/modpack.conf new file mode 100644 index 000000000..e7064d834 --- /dev/null +++ b/mods/lord/Items/Admin/modpack.conf @@ -0,0 +1 @@ +name = Items_Admin diff --git a/mods/lord/Tools/bags/init.lua b/mods/lord/Items/bags/init.lua similarity index 100% rename from mods/lord/Tools/bags/init.lua rename to mods/lord/Items/bags/init.lua diff --git a/mods/lord/Tools/bags/locale/bags.en.tr b/mods/lord/Items/bags/locale/bags.en.tr similarity index 100% rename from mods/lord/Tools/bags/locale/bags.en.tr rename to mods/lord/Items/bags/locale/bags.en.tr diff --git a/mods/lord/Tools/bags/locale/bags.ru.tr b/mods/lord/Items/bags/locale/bags.ru.tr similarity index 100% rename from mods/lord/Tools/bags/locale/bags.ru.tr rename to mods/lord/Items/bags/locale/bags.ru.tr diff --git a/mods/lord/Tools/bags/locale/template.txt b/mods/lord/Items/bags/locale/template.txt similarity index 100% rename from mods/lord/Tools/bags/locale/template.txt rename to mods/lord/Items/bags/locale/template.txt diff --git a/mods/lord/Tools/bags/mod.conf b/mods/lord/Items/bags/mod.conf similarity index 100% rename from mods/lord/Tools/bags/mod.conf rename to mods/lord/Items/bags/mod.conf diff --git a/mods/lord/Tools/bags/textures/bags_large.png b/mods/lord/Items/bags/textures/bags_large.png similarity index 100% rename from mods/lord/Tools/bags/textures/bags_large.png rename to mods/lord/Items/bags/textures/bags_large.png diff --git a/mods/lord/Tools/bags/textures/bags_medium.png b/mods/lord/Items/bags/textures/bags_medium.png similarity index 100% rename from mods/lord/Tools/bags/textures/bags_medium.png rename to mods/lord/Items/bags/textures/bags_medium.png diff --git a/mods/lord/Tools/bags/textures/bags_small.png b/mods/lord/Items/bags/textures/bags_small.png similarity index 100% rename from mods/lord/Tools/bags/textures/bags_small.png rename to mods/lord/Items/bags/textures/bags_small.png diff --git a/mods/lord/Tools/clans_clothes/init.lua b/mods/lord/Items/clans_clothes/init.lua similarity index 100% rename from mods/lord/Tools/clans_clothes/init.lua rename to mods/lord/Items/clans_clothes/init.lua diff --git a/mods/lord/Tools/clans_clothes/locale/clans_clothes.en.tr b/mods/lord/Items/clans_clothes/locale/clans_clothes.en.tr similarity index 100% rename from mods/lord/Tools/clans_clothes/locale/clans_clothes.en.tr rename to mods/lord/Items/clans_clothes/locale/clans_clothes.en.tr diff --git a/mods/lord/Tools/clans_clothes/locale/clans_clothes.ru.tr b/mods/lord/Items/clans_clothes/locale/clans_clothes.ru.tr similarity index 100% rename from mods/lord/Tools/clans_clothes/locale/clans_clothes.ru.tr rename to mods/lord/Items/clans_clothes/locale/clans_clothes.ru.tr diff --git a/mods/lord/Tools/clans_clothes/mod.conf b/mods/lord/Items/clans_clothes/mod.conf similarity index 100% rename from mods/lord/Tools/clans_clothes/mod.conf rename to mods/lord/Items/clans_clothes/mod.conf diff --git a/mods/lord/Tools/clans_clothes/textures/clans_clothes_cloak_bmg.png b/mods/lord/Items/clans_clothes/textures/clans_clothes_cloak_bmg.png similarity index 100% rename from mods/lord/Tools/clans_clothes/textures/clans_clothes_cloak_bmg.png rename to mods/lord/Items/clans_clothes/textures/clans_clothes_cloak_bmg.png diff --git a/mods/lord/Tools/clans_clothes/textures/clans_clothes_cloak_bmg_inv.png b/mods/lord/Items/clans_clothes/textures/clans_clothes_cloak_bmg_inv.png similarity index 100% rename from mods/lord/Tools/clans_clothes/textures/clans_clothes_cloak_bmg_inv.png rename to mods/lord/Items/clans_clothes/textures/clans_clothes_cloak_bmg_inv.png diff --git a/mods/lord/Tools/clans_clothes/textures/clans_clothes_cloak_hansa.png b/mods/lord/Items/clans_clothes/textures/clans_clothes_cloak_hansa.png similarity index 100% rename from mods/lord/Tools/clans_clothes/textures/clans_clothes_cloak_hansa.png rename to mods/lord/Items/clans_clothes/textures/clans_clothes_cloak_hansa.png diff --git a/mods/lord/Tools/clans_clothes/textures/clans_clothes_cloak_hansa_inv.png b/mods/lord/Items/clans_clothes/textures/clans_clothes_cloak_hansa_inv.png similarity index 100% rename from mods/lord/Tools/clans_clothes/textures/clans_clothes_cloak_hansa_inv.png rename to mods/lord/Items/clans_clothes/textures/clans_clothes_cloak_hansa_inv.png diff --git a/mods/lord/Tools/clans_clothes/textures/clans_clothes_cloak_international.png b/mods/lord/Items/clans_clothes/textures/clans_clothes_cloak_international.png similarity index 100% rename from mods/lord/Tools/clans_clothes/textures/clans_clothes_cloak_international.png rename to mods/lord/Items/clans_clothes/textures/clans_clothes_cloak_international.png diff --git a/mods/lord/Tools/clans_clothes/textures/clans_clothes_cloak_international_inv.png b/mods/lord/Items/clans_clothes/textures/clans_clothes_cloak_international_inv.png similarity index 100% rename from mods/lord/Tools/clans_clothes/textures/clans_clothes_cloak_international_inv.png rename to mods/lord/Items/clans_clothes/textures/clans_clothes_cloak_international_inv.png diff --git a/mods/lord/Tools/clans_clothes/textures/clans_clothes_cloak_masons.png b/mods/lord/Items/clans_clothes/textures/clans_clothes_cloak_masons.png similarity index 100% rename from mods/lord/Tools/clans_clothes/textures/clans_clothes_cloak_masons.png rename to mods/lord/Items/clans_clothes/textures/clans_clothes_cloak_masons.png diff --git a/mods/lord/Tools/clans_clothes/textures/clans_clothes_cloak_masons_inv.png b/mods/lord/Items/clans_clothes/textures/clans_clothes_cloak_masons_inv.png similarity index 100% rename from mods/lord/Tools/clans_clothes/textures/clans_clothes_cloak_masons_inv.png rename to mods/lord/Items/clans_clothes/textures/clans_clothes_cloak_masons_inv.png diff --git a/mods/lord/Tools/clans_clothes/textures/clans_clothes_cloak_vassals.png b/mods/lord/Items/clans_clothes/textures/clans_clothes_cloak_vassals.png similarity index 100% rename from mods/lord/Tools/clans_clothes/textures/clans_clothes_cloak_vassals.png rename to mods/lord/Items/clans_clothes/textures/clans_clothes_cloak_vassals.png diff --git a/mods/lord/Tools/clans_clothes/textures/clans_clothes_cloak_vassals_inv.png b/mods/lord/Items/clans_clothes/textures/clans_clothes_cloak_vassals_inv.png similarity index 100% rename from mods/lord/Tools/clans_clothes/textures/clans_clothes_cloak_vassals_inv.png rename to mods/lord/Items/clans_clothes/textures/clans_clothes_cloak_vassals_inv.png diff --git a/mods/lord/Tools/clans_tools/init.lua b/mods/lord/Items/clans_tools/init.lua similarity index 100% rename from mods/lord/Tools/clans_tools/init.lua rename to mods/lord/Items/clans_tools/init.lua diff --git a/mods/lord/Tools/clans_tools/locale/cert-text.en.lua b/mods/lord/Items/clans_tools/locale/cert-text.en.lua similarity index 100% rename from mods/lord/Tools/clans_tools/locale/cert-text.en.lua rename to mods/lord/Items/clans_tools/locale/cert-text.en.lua diff --git a/mods/lord/Tools/clans_tools/locale/cert-text.ru.lua b/mods/lord/Items/clans_tools/locale/cert-text.ru.lua similarity index 100% rename from mods/lord/Tools/clans_tools/locale/cert-text.ru.lua rename to mods/lord/Items/clans_tools/locale/cert-text.ru.lua diff --git a/mods/lord/Tools/clans_tools/locale/clans_tools.ru.tr b/mods/lord/Items/clans_tools/locale/clans_tools.ru.tr similarity index 100% rename from mods/lord/Tools/clans_tools/locale/clans_tools.ru.tr rename to mods/lord/Items/clans_tools/locale/clans_tools.ru.tr diff --git a/mods/lord/Tools/clans_tools/mod.conf b/mods/lord/Items/clans_tools/mod.conf similarity index 100% rename from mods/lord/Tools/clans_tools/mod.conf rename to mods/lord/Items/clans_tools/mod.conf diff --git a/mods/lord/Tools/clans_tools/src/base_certificate.lua b/mods/lord/Items/clans_tools/src/base_certificate.lua similarity index 100% rename from mods/lord/Tools/clans_tools/src/base_certificate.lua rename to mods/lord/Items/clans_tools/src/base_certificate.lua diff --git a/mods/lord/Tools/clans_tools/src/base_certificate/Form.lua b/mods/lord/Items/clans_tools/src/base_certificate/Form.lua similarity index 100% rename from mods/lord/Tools/clans_tools/src/base_certificate/Form.lua rename to mods/lord/Items/clans_tools/src/base_certificate/Form.lua diff --git a/mods/lord/Tools/clans_tools/textures/clans_tools_base_certificate.png b/mods/lord/Items/clans_tools/textures/clans_tools_base_certificate.png similarity index 100% rename from mods/lord/Tools/clans_tools/textures/clans_tools_base_certificate.png rename to mods/lord/Items/clans_tools/textures/clans_tools_base_certificate.png diff --git a/mods/lord/Tools/clans_tools/textures/clans_tools_base_certificate_form_bg.png b/mods/lord/Items/clans_tools/textures/clans_tools_base_certificate_form_bg.png similarity index 100% rename from mods/lord/Tools/clans_tools/textures/clans_tools_base_certificate_form_bg.png rename to mods/lord/Items/clans_tools/textures/clans_tools_base_certificate_form_bg.png diff --git a/mods/lord/Tools/easter/init.lua b/mods/lord/Items/easter/init.lua similarity index 100% rename from mods/lord/Tools/easter/init.lua rename to mods/lord/Items/easter/init.lua diff --git a/mods/lord/Tools/easter/locale/easter.ru.tr b/mods/lord/Items/easter/locale/easter.ru.tr similarity index 100% rename from mods/lord/Tools/easter/locale/easter.ru.tr rename to mods/lord/Items/easter/locale/easter.ru.tr diff --git a/mods/lord/Tools/easter/mod.conf b/mods/lord/Items/easter/mod.conf similarity index 100% rename from mods/lord/Tools/easter/mod.conf rename to mods/lord/Items/easter/mod.conf diff --git a/mods/lord/Tools/easter/src/easter.lua b/mods/lord/Items/easter/src/easter.lua similarity index 100% rename from mods/lord/Tools/easter/src/easter.lua rename to mods/lord/Items/easter/src/easter.lua diff --git a/mods/lord/Tools/easter/textures/easter_blue_egg.png b/mods/lord/Items/easter/textures/easter_blue_egg.png similarity index 100% rename from mods/lord/Tools/easter/textures/easter_blue_egg.png rename to mods/lord/Items/easter/textures/easter_blue_egg.png diff --git a/mods/lord/Tools/easter/textures/easter_green_egg.png b/mods/lord/Items/easter/textures/easter_green_egg.png similarity index 100% rename from mods/lord/Tools/easter/textures/easter_green_egg.png rename to mods/lord/Items/easter/textures/easter_green_egg.png diff --git a/mods/lord/Tools/easter/textures/easter_red_egg.png b/mods/lord/Items/easter/textures/easter_red_egg.png similarity index 100% rename from mods/lord/Tools/easter/textures/easter_red_egg.png rename to mods/lord/Items/easter/textures/easter_red_egg.png diff --git a/mods/lord/Tools/easter/textures/easter_yellow_egg.png b/mods/lord/Items/easter/textures/easter_yellow_egg.png similarity index 100% rename from mods/lord/Tools/easter/textures/easter_yellow_egg.png rename to mods/lord/Items/easter/textures/easter_yellow_egg.png diff --git a/mods/lord/Tools/lord_alcohol/init.lua b/mods/lord/Items/lord_alcohol/init.lua similarity index 100% rename from mods/lord/Tools/lord_alcohol/init.lua rename to mods/lord/Items/lord_alcohol/init.lua diff --git a/mods/lord/Tools/lord_alcohol/legacy.lua b/mods/lord/Items/lord_alcohol/legacy.lua similarity index 100% rename from mods/lord/Tools/lord_alcohol/legacy.lua rename to mods/lord/Items/lord_alcohol/legacy.lua diff --git a/mods/lord/Tools/lord_alcohol/locale/lord_alcohol.en.tr b/mods/lord/Items/lord_alcohol/locale/lord_alcohol.en.tr similarity index 100% rename from mods/lord/Tools/lord_alcohol/locale/lord_alcohol.en.tr rename to mods/lord/Items/lord_alcohol/locale/lord_alcohol.en.tr diff --git a/mods/lord/Tools/lord_alcohol/locale/lord_alcohol.ru.tr b/mods/lord/Items/lord_alcohol/locale/lord_alcohol.ru.tr similarity index 100% rename from mods/lord/Tools/lord_alcohol/locale/lord_alcohol.ru.tr rename to mods/lord/Items/lord_alcohol/locale/lord_alcohol.ru.tr diff --git a/mods/lord/Tools/lord_alcohol/mod.conf b/mods/lord/Items/lord_alcohol/mod.conf similarity index 100% rename from mods/lord/Tools/lord_alcohol/mod.conf rename to mods/lord/Items/lord_alcohol/mod.conf diff --git a/mods/lord/Tools/lord_alcohol/src/lord_alcohol.lua b/mods/lord/Items/lord_alcohol/src/lord_alcohol.lua similarity index 100% rename from mods/lord/Tools/lord_alcohol/src/lord_alcohol.lua rename to mods/lord/Items/lord_alcohol/src/lord_alcohol.lua diff --git a/mods/lord/Tools/lord_alcohol/src/lord_alcohol/api.lua b/mods/lord/Items/lord_alcohol/src/lord_alcohol/api.lua similarity index 100% rename from mods/lord/Tools/lord_alcohol/src/lord_alcohol/api.lua rename to mods/lord/Items/lord_alcohol/src/lord_alcohol/api.lua diff --git a/mods/lord/Tools/lord_alcohol/src/lord_alcohol/config.lua b/mods/lord/Items/lord_alcohol/src/lord_alcohol/config.lua similarity index 100% rename from mods/lord/Tools/lord_alcohol/src/lord_alcohol/config.lua rename to mods/lord/Items/lord_alcohol/src/lord_alcohol/config.lua diff --git a/mods/lord/Tools/lord_alcohol/textures/empty_16x16.png b/mods/lord/Items/lord_alcohol/textures/empty_16x16.png similarity index 100% rename from mods/lord/Tools/lord_alcohol/textures/empty_16x16.png rename to mods/lord/Items/lord_alcohol/textures/empty_16x16.png diff --git a/mods/lord/Tools/lord_alcohol/textures/lord_alcohol_ale.png b/mods/lord/Items/lord_alcohol/textures/lord_alcohol_ale.png similarity index 100% rename from mods/lord/Tools/lord_alcohol/textures/lord_alcohol_ale.png rename to mods/lord/Items/lord_alcohol/textures/lord_alcohol_ale.png diff --git a/mods/lord/Tools/lord_alcohol/textures/lord_alcohol_beer.png b/mods/lord/Items/lord_alcohol/textures/lord_alcohol_beer.png similarity index 100% rename from mods/lord/Tools/lord_alcohol/textures/lord_alcohol_beer.png rename to mods/lord/Items/lord_alcohol/textures/lord_alcohol_beer.png diff --git a/mods/lord/Tools/lord_alcohol/textures/lord_alcohol_cider.png b/mods/lord/Items/lord_alcohol/textures/lord_alcohol_cider.png similarity index 100% rename from mods/lord/Tools/lord_alcohol/textures/lord_alcohol_cider.png rename to mods/lord/Items/lord_alcohol/textures/lord_alcohol_cider.png diff --git a/mods/lord/Tools/lord_alcohol/textures/lord_alcohol_mead.png b/mods/lord/Items/lord_alcohol/textures/lord_alcohol_mead.png similarity index 100% rename from mods/lord/Tools/lord_alcohol/textures/lord_alcohol_mead.png rename to mods/lord/Items/lord_alcohol/textures/lord_alcohol_mead.png diff --git a/mods/lord/Tools/lord_alcohol/textures/lord_alcohol_wine.png b/mods/lord/Items/lord_alcohol/textures/lord_alcohol_wine.png similarity index 100% rename from mods/lord/Tools/lord_alcohol/textures/lord_alcohol_wine.png rename to mods/lord/Items/lord_alcohol/textures/lord_alcohol_wine.png diff --git a/mods/lord/Tools/lord_archery/init.lua b/mods/lord/Items/lord_archery/init.lua similarity index 100% rename from mods/lord/Tools/lord_archery/init.lua rename to mods/lord/Items/lord_archery/init.lua diff --git a/mods/lord/Tools/lord_archery/locale/lord_bows.en.tr b/mods/lord/Items/lord_archery/locale/lord_bows.en.tr similarity index 100% rename from mods/lord/Tools/lord_archery/locale/lord_bows.en.tr rename to mods/lord/Items/lord_archery/locale/lord_bows.en.tr diff --git a/mods/lord/Tools/lord_archery/locale/lord_bows.ru.tr b/mods/lord/Items/lord_archery/locale/lord_bows.ru.tr similarity index 100% rename from mods/lord/Tools/lord_archery/locale/lord_bows.ru.tr rename to mods/lord/Items/lord_archery/locale/lord_bows.ru.tr diff --git a/mods/lord/Tools/lord_archery/mod.conf b/mods/lord/Items/lord_archery/mod.conf similarity index 100% rename from mods/lord/Tools/lord_archery/mod.conf rename to mods/lord/Items/lord_archery/mod.conf diff --git a/mods/lord/Tools/lord_archery/sounds/LICENSE b/mods/lord/Items/lord_archery/sounds/LICENSE similarity index 100% rename from mods/lord/Tools/lord_archery/sounds/LICENSE rename to mods/lord/Items/lord_archery/sounds/LICENSE diff --git a/mods/lord/Tools/lord_archery/sounds/lord_archery_arrow_release.ogg b/mods/lord/Items/lord_archery/sounds/lord_archery_arrow_release.ogg similarity index 100% rename from mods/lord/Tools/lord_archery/sounds/lord_archery_arrow_release.ogg rename to mods/lord/Items/lord_archery/sounds/lord_archery_arrow_release.ogg diff --git a/mods/lord/Tools/lord_archery/sounds/lord_archery_bow_charge.ogg b/mods/lord/Items/lord_archery/sounds/lord_archery_bow_charge.ogg similarity index 100% rename from mods/lord/Tools/lord_archery/sounds/lord_archery_bow_charge.ogg rename to mods/lord/Items/lord_archery/sounds/lord_archery_bow_charge.ogg diff --git a/mods/lord/Tools/lord_archery/src/lord_archery.lua b/mods/lord/Items/lord_archery/src/lord_archery.lua similarity index 100% rename from mods/lord/Tools/lord_archery/src/lord_archery.lua rename to mods/lord/Items/lord_archery/src/lord_archery.lua diff --git a/mods/lord/Tools/lord_archery/src/lord_archery/config.lua b/mods/lord/Items/lord_archery/src/lord_archery/config.lua similarity index 100% rename from mods/lord/Tools/lord_archery/src/lord_archery/config.lua rename to mods/lord/Items/lord_archery/src/lord_archery/config.lua diff --git a/mods/lord/Tools/lord_archery/src/lord_archery/config/bows.lua b/mods/lord/Items/lord_archery/src/lord_archery/config/bows.lua similarity index 100% rename from mods/lord/Tools/lord_archery/src/lord_archery/config/bows.lua rename to mods/lord/Items/lord_archery/src/lord_archery/config/bows.lua diff --git a/mods/lord/Tools/lord_archery/src/lord_archery/config/crafts.lua b/mods/lord/Items/lord_archery/src/lord_archery/config/crafts.lua similarity index 100% rename from mods/lord/Tools/lord_archery/src/lord_archery/config/crafts.lua rename to mods/lord/Items/lord_archery/src/lord_archery/config/crafts.lua diff --git a/mods/lord/Tools/lord_archery/src/lord_archery/config/crafts/bows.lua b/mods/lord/Items/lord_archery/src/lord_archery/config/crafts/bows.lua similarity index 100% rename from mods/lord/Tools/lord_archery/src/lord_archery/config/crafts/bows.lua rename to mods/lord/Items/lord_archery/src/lord_archery/config/crafts/bows.lua diff --git a/mods/lord/Tools/lord_archery/src/lord_archery/config/crafts/crossbows.lua b/mods/lord/Items/lord_archery/src/lord_archery/config/crafts/crossbows.lua similarity index 100% rename from mods/lord/Tools/lord_archery/src/lord_archery/config/crafts/crossbows.lua rename to mods/lord/Items/lord_archery/src/lord_archery/config/crafts/crossbows.lua diff --git a/mods/lord/Tools/lord_archery/src/lord_archery/config/crafts/throwables.lua b/mods/lord/Items/lord_archery/src/lord_archery/config/crafts/throwables.lua similarity index 100% rename from mods/lord/Tools/lord_archery/src/lord_archery/config/crafts/throwables.lua rename to mods/lord/Items/lord_archery/src/lord_archery/config/crafts/throwables.lua diff --git a/mods/lord/Tools/lord_archery/src/lord_archery/config/crossbows.lua b/mods/lord/Items/lord_archery/src/lord_archery/config/crossbows.lua similarity index 100% rename from mods/lord/Tools/lord_archery/src/lord_archery/config/crossbows.lua rename to mods/lord/Items/lord_archery/src/lord_archery/config/crossbows.lua diff --git a/mods/lord/Tools/lord_archery/src/lord_archery/config/throwables.lua b/mods/lord/Items/lord_archery/src/lord_archery/config/throwables.lua similarity index 100% rename from mods/lord/Tools/lord_archery/src/lord_archery/config/throwables.lua rename to mods/lord/Items/lord_archery/src/lord_archery/config/throwables.lua diff --git a/mods/lord/Tools/lord_archery/textures/bows/lord_archery_alder_wood_bow.png b/mods/lord/Items/lord_archery/textures/bows/lord_archery_alder_wood_bow.png similarity index 100% rename from mods/lord/Tools/lord_archery/textures/bows/lord_archery_alder_wood_bow.png rename to mods/lord/Items/lord_archery/textures/bows/lord_archery_alder_wood_bow.png diff --git a/mods/lord/Tools/lord_archery/textures/bows/lord_archery_alder_wood_bow_1.png b/mods/lord/Items/lord_archery/textures/bows/lord_archery_alder_wood_bow_1.png similarity index 100% rename from mods/lord/Tools/lord_archery/textures/bows/lord_archery_alder_wood_bow_1.png rename to mods/lord/Items/lord_archery/textures/bows/lord_archery_alder_wood_bow_1.png diff --git a/mods/lord/Tools/lord_archery/textures/bows/lord_archery_alder_wood_bow_2.png b/mods/lord/Items/lord_archery/textures/bows/lord_archery_alder_wood_bow_2.png similarity index 100% rename from mods/lord/Tools/lord_archery/textures/bows/lord_archery_alder_wood_bow_2.png rename to mods/lord/Items/lord_archery/textures/bows/lord_archery_alder_wood_bow_2.png diff --git a/mods/lord/Tools/lord_archery/textures/bows/lord_archery_alder_wood_bow_3.png b/mods/lord/Items/lord_archery/textures/bows/lord_archery_alder_wood_bow_3.png similarity index 100% rename from mods/lord/Tools/lord_archery/textures/bows/lord_archery_alder_wood_bow_3.png rename to mods/lord/Items/lord_archery/textures/bows/lord_archery_alder_wood_bow_3.png diff --git a/mods/lord/Tools/lord_archery/textures/bows/lord_archery_apple_wood_bow.png b/mods/lord/Items/lord_archery/textures/bows/lord_archery_apple_wood_bow.png similarity index 100% rename from mods/lord/Tools/lord_archery/textures/bows/lord_archery_apple_wood_bow.png rename to mods/lord/Items/lord_archery/textures/bows/lord_archery_apple_wood_bow.png diff --git a/mods/lord/Tools/lord_archery/textures/bows/lord_archery_apple_wood_bow_1.png b/mods/lord/Items/lord_archery/textures/bows/lord_archery_apple_wood_bow_1.png similarity index 100% rename from mods/lord/Tools/lord_archery/textures/bows/lord_archery_apple_wood_bow_1.png rename to mods/lord/Items/lord_archery/textures/bows/lord_archery_apple_wood_bow_1.png diff --git a/mods/lord/Tools/lord_archery/textures/bows/lord_archery_apple_wood_bow_2.png b/mods/lord/Items/lord_archery/textures/bows/lord_archery_apple_wood_bow_2.png similarity index 100% rename from mods/lord/Tools/lord_archery/textures/bows/lord_archery_apple_wood_bow_2.png rename to mods/lord/Items/lord_archery/textures/bows/lord_archery_apple_wood_bow_2.png diff --git a/mods/lord/Tools/lord_archery/textures/bows/lord_archery_apple_wood_bow_3.png b/mods/lord/Items/lord_archery/textures/bows/lord_archery_apple_wood_bow_3.png similarity index 100% rename from mods/lord/Tools/lord_archery/textures/bows/lord_archery_apple_wood_bow_3.png rename to mods/lord/Items/lord_archery/textures/bows/lord_archery_apple_wood_bow_3.png diff --git a/mods/lord/Tools/lord_archery/textures/bows/lord_archery_birch_wood_bow.png b/mods/lord/Items/lord_archery/textures/bows/lord_archery_birch_wood_bow.png similarity index 100% rename from mods/lord/Tools/lord_archery/textures/bows/lord_archery_birch_wood_bow.png rename to mods/lord/Items/lord_archery/textures/bows/lord_archery_birch_wood_bow.png diff --git a/mods/lord/Tools/lord_archery/textures/bows/lord_archery_birch_wood_bow_1.png b/mods/lord/Items/lord_archery/textures/bows/lord_archery_birch_wood_bow_1.png similarity index 100% rename from mods/lord/Tools/lord_archery/textures/bows/lord_archery_birch_wood_bow_1.png rename to mods/lord/Items/lord_archery/textures/bows/lord_archery_birch_wood_bow_1.png diff --git a/mods/lord/Tools/lord_archery/textures/bows/lord_archery_birch_wood_bow_2.png b/mods/lord/Items/lord_archery/textures/bows/lord_archery_birch_wood_bow_2.png similarity index 100% rename from mods/lord/Tools/lord_archery/textures/bows/lord_archery_birch_wood_bow_2.png rename to mods/lord/Items/lord_archery/textures/bows/lord_archery_birch_wood_bow_2.png diff --git a/mods/lord/Tools/lord_archery/textures/bows/lord_archery_birch_wood_bow_3.png b/mods/lord/Items/lord_archery/textures/bows/lord_archery_birch_wood_bow_3.png similarity index 100% rename from mods/lord/Tools/lord_archery/textures/bows/lord_archery_birch_wood_bow_3.png rename to mods/lord/Items/lord_archery/textures/bows/lord_archery_birch_wood_bow_3.png diff --git a/mods/lord/Tools/lord_archery/textures/bows/lord_archery_lebethron_wood_bow.png b/mods/lord/Items/lord_archery/textures/bows/lord_archery_lebethron_wood_bow.png similarity index 100% rename from mods/lord/Tools/lord_archery/textures/bows/lord_archery_lebethron_wood_bow.png rename to mods/lord/Items/lord_archery/textures/bows/lord_archery_lebethron_wood_bow.png diff --git a/mods/lord/Tools/lord_archery/textures/bows/lord_archery_lebethron_wood_bow_1.png b/mods/lord/Items/lord_archery/textures/bows/lord_archery_lebethron_wood_bow_1.png similarity index 100% rename from mods/lord/Tools/lord_archery/textures/bows/lord_archery_lebethron_wood_bow_1.png rename to mods/lord/Items/lord_archery/textures/bows/lord_archery_lebethron_wood_bow_1.png diff --git a/mods/lord/Tools/lord_archery/textures/bows/lord_archery_lebethron_wood_bow_2.png b/mods/lord/Items/lord_archery/textures/bows/lord_archery_lebethron_wood_bow_2.png similarity index 100% rename from mods/lord/Tools/lord_archery/textures/bows/lord_archery_lebethron_wood_bow_2.png rename to mods/lord/Items/lord_archery/textures/bows/lord_archery_lebethron_wood_bow_2.png diff --git a/mods/lord/Tools/lord_archery/textures/bows/lord_archery_lebethron_wood_bow_3.png b/mods/lord/Items/lord_archery/textures/bows/lord_archery_lebethron_wood_bow_3.png similarity index 100% rename from mods/lord/Tools/lord_archery/textures/bows/lord_archery_lebethron_wood_bow_3.png rename to mods/lord/Items/lord_archery/textures/bows/lord_archery_lebethron_wood_bow_3.png diff --git a/mods/lord/Tools/lord_archery/textures/bows/lord_archery_mallorn_wood_bow.png b/mods/lord/Items/lord_archery/textures/bows/lord_archery_mallorn_wood_bow.png similarity index 100% rename from mods/lord/Tools/lord_archery/textures/bows/lord_archery_mallorn_wood_bow.png rename to mods/lord/Items/lord_archery/textures/bows/lord_archery_mallorn_wood_bow.png diff --git a/mods/lord/Tools/lord_archery/textures/bows/lord_archery_mallorn_wood_bow_1.png b/mods/lord/Items/lord_archery/textures/bows/lord_archery_mallorn_wood_bow_1.png similarity index 100% rename from mods/lord/Tools/lord_archery/textures/bows/lord_archery_mallorn_wood_bow_1.png rename to mods/lord/Items/lord_archery/textures/bows/lord_archery_mallorn_wood_bow_1.png diff --git a/mods/lord/Tools/lord_archery/textures/bows/lord_archery_mallorn_wood_bow_2.png b/mods/lord/Items/lord_archery/textures/bows/lord_archery_mallorn_wood_bow_2.png similarity index 100% rename from mods/lord/Tools/lord_archery/textures/bows/lord_archery_mallorn_wood_bow_2.png rename to mods/lord/Items/lord_archery/textures/bows/lord_archery_mallorn_wood_bow_2.png diff --git a/mods/lord/Tools/lord_archery/textures/bows/lord_archery_mallorn_wood_bow_3.png b/mods/lord/Items/lord_archery/textures/bows/lord_archery_mallorn_wood_bow_3.png similarity index 100% rename from mods/lord/Tools/lord_archery/textures/bows/lord_archery_mallorn_wood_bow_3.png rename to mods/lord/Items/lord_archery/textures/bows/lord_archery_mallorn_wood_bow_3.png diff --git a/mods/lord/Tools/lord_archery/textures/crossbows/lord_archery_galvorn_crossbow.png b/mods/lord/Items/lord_archery/textures/crossbows/lord_archery_galvorn_crossbow.png similarity index 100% rename from mods/lord/Tools/lord_archery/textures/crossbows/lord_archery_galvorn_crossbow.png rename to mods/lord/Items/lord_archery/textures/crossbows/lord_archery_galvorn_crossbow.png diff --git a/mods/lord/Tools/lord_archery/textures/crossbows/lord_archery_galvorn_crossbow_1.png b/mods/lord/Items/lord_archery/textures/crossbows/lord_archery_galvorn_crossbow_1.png similarity index 100% rename from mods/lord/Tools/lord_archery/textures/crossbows/lord_archery_galvorn_crossbow_1.png rename to mods/lord/Items/lord_archery/textures/crossbows/lord_archery_galvorn_crossbow_1.png diff --git a/mods/lord/Tools/lord_archery/textures/crossbows/lord_archery_galvorn_crossbow_2.png b/mods/lord/Items/lord_archery/textures/crossbows/lord_archery_galvorn_crossbow_2.png similarity index 100% rename from mods/lord/Tools/lord_archery/textures/crossbows/lord_archery_galvorn_crossbow_2.png rename to mods/lord/Items/lord_archery/textures/crossbows/lord_archery_galvorn_crossbow_2.png diff --git a/mods/lord/Tools/lord_archery/textures/crossbows/lord_archery_galvorn_crossbow_3.png b/mods/lord/Items/lord_archery/textures/crossbows/lord_archery_galvorn_crossbow_3.png similarity index 100% rename from mods/lord/Tools/lord_archery/textures/crossbows/lord_archery_galvorn_crossbow_3.png rename to mods/lord/Items/lord_archery/textures/crossbows/lord_archery_galvorn_crossbow_3.png diff --git a/mods/lord/Tools/lord_archery/textures/crossbows/lord_archery_gold_crossbow.png b/mods/lord/Items/lord_archery/textures/crossbows/lord_archery_gold_crossbow.png similarity index 100% rename from mods/lord/Tools/lord_archery/textures/crossbows/lord_archery_gold_crossbow.png rename to mods/lord/Items/lord_archery/textures/crossbows/lord_archery_gold_crossbow.png diff --git a/mods/lord/Tools/lord_archery/textures/crossbows/lord_archery_gold_crossbow_1.png b/mods/lord/Items/lord_archery/textures/crossbows/lord_archery_gold_crossbow_1.png similarity index 100% rename from mods/lord/Tools/lord_archery/textures/crossbows/lord_archery_gold_crossbow_1.png rename to mods/lord/Items/lord_archery/textures/crossbows/lord_archery_gold_crossbow_1.png diff --git a/mods/lord/Tools/lord_archery/textures/crossbows/lord_archery_gold_crossbow_2.png b/mods/lord/Items/lord_archery/textures/crossbows/lord_archery_gold_crossbow_2.png similarity index 100% rename from mods/lord/Tools/lord_archery/textures/crossbows/lord_archery_gold_crossbow_2.png rename to mods/lord/Items/lord_archery/textures/crossbows/lord_archery_gold_crossbow_2.png diff --git a/mods/lord/Tools/lord_archery/textures/crossbows/lord_archery_gold_crossbow_3.png b/mods/lord/Items/lord_archery/textures/crossbows/lord_archery_gold_crossbow_3.png similarity index 100% rename from mods/lord/Tools/lord_archery/textures/crossbows/lord_archery_gold_crossbow_3.png rename to mods/lord/Items/lord_archery/textures/crossbows/lord_archery_gold_crossbow_3.png diff --git a/mods/lord/Tools/lord_archery/textures/crossbows/lord_archery_mithril_crossbow.png b/mods/lord/Items/lord_archery/textures/crossbows/lord_archery_mithril_crossbow.png similarity index 100% rename from mods/lord/Tools/lord_archery/textures/crossbows/lord_archery_mithril_crossbow.png rename to mods/lord/Items/lord_archery/textures/crossbows/lord_archery_mithril_crossbow.png diff --git a/mods/lord/Tools/lord_archery/textures/crossbows/lord_archery_mithril_crossbow_1.png b/mods/lord/Items/lord_archery/textures/crossbows/lord_archery_mithril_crossbow_1.png similarity index 100% rename from mods/lord/Tools/lord_archery/textures/crossbows/lord_archery_mithril_crossbow_1.png rename to mods/lord/Items/lord_archery/textures/crossbows/lord_archery_mithril_crossbow_1.png diff --git a/mods/lord/Tools/lord_archery/textures/crossbows/lord_archery_mithril_crossbow_2.png b/mods/lord/Items/lord_archery/textures/crossbows/lord_archery_mithril_crossbow_2.png similarity index 100% rename from mods/lord/Tools/lord_archery/textures/crossbows/lord_archery_mithril_crossbow_2.png rename to mods/lord/Items/lord_archery/textures/crossbows/lord_archery_mithril_crossbow_2.png diff --git a/mods/lord/Tools/lord_archery/textures/crossbows/lord_archery_mithril_crossbow_3.png b/mods/lord/Items/lord_archery/textures/crossbows/lord_archery_mithril_crossbow_3.png similarity index 100% rename from mods/lord/Tools/lord_archery/textures/crossbows/lord_archery_mithril_crossbow_3.png rename to mods/lord/Items/lord_archery/textures/crossbows/lord_archery_mithril_crossbow_3.png diff --git a/mods/lord/Tools/lord_archery/textures/crossbows/lord_archery_silver_crossbow.png b/mods/lord/Items/lord_archery/textures/crossbows/lord_archery_silver_crossbow.png similarity index 100% rename from mods/lord/Tools/lord_archery/textures/crossbows/lord_archery_silver_crossbow.png rename to mods/lord/Items/lord_archery/textures/crossbows/lord_archery_silver_crossbow.png diff --git a/mods/lord/Tools/lord_archery/textures/crossbows/lord_archery_silver_crossbow_1.png b/mods/lord/Items/lord_archery/textures/crossbows/lord_archery_silver_crossbow_1.png similarity index 100% rename from mods/lord/Tools/lord_archery/textures/crossbows/lord_archery_silver_crossbow_1.png rename to mods/lord/Items/lord_archery/textures/crossbows/lord_archery_silver_crossbow_1.png diff --git a/mods/lord/Tools/lord_archery/textures/crossbows/lord_archery_silver_crossbow_2.png b/mods/lord/Items/lord_archery/textures/crossbows/lord_archery_silver_crossbow_2.png similarity index 100% rename from mods/lord/Tools/lord_archery/textures/crossbows/lord_archery_silver_crossbow_2.png rename to mods/lord/Items/lord_archery/textures/crossbows/lord_archery_silver_crossbow_2.png diff --git a/mods/lord/Tools/lord_archery/textures/crossbows/lord_archery_silver_crossbow_3.png b/mods/lord/Items/lord_archery/textures/crossbows/lord_archery_silver_crossbow_3.png similarity index 100% rename from mods/lord/Tools/lord_archery/textures/crossbows/lord_archery_silver_crossbow_3.png rename to mods/lord/Items/lord_archery/textures/crossbows/lord_archery_silver_crossbow_3.png diff --git a/mods/lord/Tools/lord_archery/textures/crossbows/lord_archery_steel_crossbow.png b/mods/lord/Items/lord_archery/textures/crossbows/lord_archery_steel_crossbow.png similarity index 100% rename from mods/lord/Tools/lord_archery/textures/crossbows/lord_archery_steel_crossbow.png rename to mods/lord/Items/lord_archery/textures/crossbows/lord_archery_steel_crossbow.png diff --git a/mods/lord/Tools/lord_archery/textures/crossbows/lord_archery_steel_crossbow_1.png b/mods/lord/Items/lord_archery/textures/crossbows/lord_archery_steel_crossbow_1.png similarity index 100% rename from mods/lord/Tools/lord_archery/textures/crossbows/lord_archery_steel_crossbow_1.png rename to mods/lord/Items/lord_archery/textures/crossbows/lord_archery_steel_crossbow_1.png diff --git a/mods/lord/Tools/lord_archery/textures/crossbows/lord_archery_steel_crossbow_2.png b/mods/lord/Items/lord_archery/textures/crossbows/lord_archery_steel_crossbow_2.png similarity index 100% rename from mods/lord/Tools/lord_archery/textures/crossbows/lord_archery_steel_crossbow_2.png rename to mods/lord/Items/lord_archery/textures/crossbows/lord_archery_steel_crossbow_2.png diff --git a/mods/lord/Tools/lord_archery/textures/crossbows/lord_archery_steel_crossbow_3.png b/mods/lord/Items/lord_archery/textures/crossbows/lord_archery_steel_crossbow_3.png similarity index 100% rename from mods/lord/Tools/lord_archery/textures/crossbows/lord_archery_steel_crossbow_3.png rename to mods/lord/Items/lord_archery/textures/crossbows/lord_archery_steel_crossbow_3.png diff --git a/mods/lord/Tools/lord_archery/textures/crossbows/lord_archery_tin_crossbow.png b/mods/lord/Items/lord_archery/textures/crossbows/lord_archery_tin_crossbow.png similarity index 100% rename from mods/lord/Tools/lord_archery/textures/crossbows/lord_archery_tin_crossbow.png rename to mods/lord/Items/lord_archery/textures/crossbows/lord_archery_tin_crossbow.png diff --git a/mods/lord/Tools/lord_archery/textures/crossbows/lord_archery_tin_crossbow_1.png b/mods/lord/Items/lord_archery/textures/crossbows/lord_archery_tin_crossbow_1.png similarity index 100% rename from mods/lord/Tools/lord_archery/textures/crossbows/lord_archery_tin_crossbow_1.png rename to mods/lord/Items/lord_archery/textures/crossbows/lord_archery_tin_crossbow_1.png diff --git a/mods/lord/Tools/lord_archery/textures/crossbows/lord_archery_tin_crossbow_2.png b/mods/lord/Items/lord_archery/textures/crossbows/lord_archery_tin_crossbow_2.png similarity index 100% rename from mods/lord/Tools/lord_archery/textures/crossbows/lord_archery_tin_crossbow_2.png rename to mods/lord/Items/lord_archery/textures/crossbows/lord_archery_tin_crossbow_2.png diff --git a/mods/lord/Tools/lord_archery/textures/crossbows/lord_archery_tin_crossbow_3.png b/mods/lord/Items/lord_archery/textures/crossbows/lord_archery_tin_crossbow_3.png similarity index 100% rename from mods/lord/Tools/lord_archery/textures/crossbows/lord_archery_tin_crossbow_3.png rename to mods/lord/Items/lord_archery/textures/crossbows/lord_archery_tin_crossbow_3.png diff --git a/mods/lord/Tools/lord_archery/textures/crossbows/lord_archery_wooden_crossbow.png b/mods/lord/Items/lord_archery/textures/crossbows/lord_archery_wooden_crossbow.png similarity index 100% rename from mods/lord/Tools/lord_archery/textures/crossbows/lord_archery_wooden_crossbow.png rename to mods/lord/Items/lord_archery/textures/crossbows/lord_archery_wooden_crossbow.png diff --git a/mods/lord/Tools/lord_archery/textures/crossbows/lord_archery_wooden_crossbow_1.png b/mods/lord/Items/lord_archery/textures/crossbows/lord_archery_wooden_crossbow_1.png similarity index 100% rename from mods/lord/Tools/lord_archery/textures/crossbows/lord_archery_wooden_crossbow_1.png rename to mods/lord/Items/lord_archery/textures/crossbows/lord_archery_wooden_crossbow_1.png diff --git a/mods/lord/Tools/lord_archery/textures/crossbows/lord_archery_wooden_crossbow_2.png b/mods/lord/Items/lord_archery/textures/crossbows/lord_archery_wooden_crossbow_2.png similarity index 100% rename from mods/lord/Tools/lord_archery/textures/crossbows/lord_archery_wooden_crossbow_2.png rename to mods/lord/Items/lord_archery/textures/crossbows/lord_archery_wooden_crossbow_2.png diff --git a/mods/lord/Tools/lord_archery/textures/crossbows/lord_archery_wooden_crossbow_3.png b/mods/lord/Items/lord_archery/textures/crossbows/lord_archery_wooden_crossbow_3.png similarity index 100% rename from mods/lord/Tools/lord_archery/textures/crossbows/lord_archery_wooden_crossbow_3.png rename to mods/lord/Items/lord_archery/textures/crossbows/lord_archery_wooden_crossbow_3.png diff --git a/mods/lord/Tools/lord_archery/textures/throwables/lord_archery_bronze_throwing_axe.png b/mods/lord/Items/lord_archery/textures/throwables/lord_archery_bronze_throwing_axe.png similarity index 100% rename from mods/lord/Tools/lord_archery/textures/throwables/lord_archery_bronze_throwing_axe.png rename to mods/lord/Items/lord_archery/textures/throwables/lord_archery_bronze_throwing_axe.png diff --git a/mods/lord/Tools/lord_archery/textures/throwables/lord_archery_galvorn_throwing_axe.png b/mods/lord/Items/lord_archery/textures/throwables/lord_archery_galvorn_throwing_axe.png similarity index 100% rename from mods/lord/Tools/lord_archery/textures/throwables/lord_archery_galvorn_throwing_axe.png rename to mods/lord/Items/lord_archery/textures/throwables/lord_archery_galvorn_throwing_axe.png diff --git a/mods/lord/Tools/lord_archery/textures/throwables/lord_archery_mithril_throwing_axe.png b/mods/lord/Items/lord_archery/textures/throwables/lord_archery_mithril_throwing_axe.png similarity index 100% rename from mods/lord/Tools/lord_archery/textures/throwables/lord_archery_mithril_throwing_axe.png rename to mods/lord/Items/lord_archery/textures/throwables/lord_archery_mithril_throwing_axe.png diff --git a/mods/lord/Tools/lord_archery/textures/throwables/lord_archery_steel_throwing_axe.png b/mods/lord/Items/lord_archery/textures/throwables/lord_archery_steel_throwing_axe.png similarity index 100% rename from mods/lord/Tools/lord_archery/textures/throwables/lord_archery_steel_throwing_axe.png rename to mods/lord/Items/lord_archery/textures/throwables/lord_archery_steel_throwing_axe.png diff --git a/mods/lord/Tools/lord_armor/init.lua b/mods/lord/Items/lord_armor/init.lua similarity index 100% rename from mods/lord/Tools/lord_armor/init.lua rename to mods/lord/Items/lord_armor/init.lua diff --git a/mods/lord/Tools/lord_armor/locale/lord_armor.en.tr b/mods/lord/Items/lord_armor/locale/lord_armor.en.tr similarity index 100% rename from mods/lord/Tools/lord_armor/locale/lord_armor.en.tr rename to mods/lord/Items/lord_armor/locale/lord_armor.en.tr diff --git a/mods/lord/Tools/lord_armor/locale/lord_armor.ru.tr b/mods/lord/Items/lord_armor/locale/lord_armor.ru.tr similarity index 100% rename from mods/lord/Tools/lord_armor/locale/lord_armor.ru.tr rename to mods/lord/Items/lord_armor/locale/lord_armor.ru.tr diff --git a/mods/lord/Tools/lord_armor/locale/template.txt b/mods/lord/Items/lord_armor/locale/template.txt similarity index 100% rename from mods/lord/Tools/lord_armor/locale/template.txt rename to mods/lord/Items/lord_armor/locale/template.txt diff --git a/mods/lord/Tools/lord_armor/mod.conf b/mods/lord/Items/lord_armor/mod.conf similarity index 100% rename from mods/lord/Tools/lord_armor/mod.conf rename to mods/lord/Items/lord_armor/mod.conf diff --git a/mods/lord/Tools/lord_armor/src/armor.lua b/mods/lord/Items/lord_armor/src/armor.lua similarity index 100% rename from mods/lord/Tools/lord_armor/src/armor.lua rename to mods/lord/Items/lord_armor/src/armor.lua diff --git a/mods/lord/Tools/lord_armor/src/shield.lua b/mods/lord/Items/lord_armor/src/shield.lua similarity index 100% rename from mods/lord/Tools/lord_armor/src/shield.lua rename to mods/lord/Items/lord_armor/src/shield.lua diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_boots_bronze.png b/mods/lord/Items/lord_armor/textures/lottarmor_boots_bronze.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_boots_bronze.png rename to mods/lord/Items/lord_armor/textures/lottarmor_boots_bronze.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_boots_bronze_preview.png b/mods/lord/Items/lord_armor/textures/lottarmor_boots_bronze_preview.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_boots_bronze_preview.png rename to mods/lord/Items/lord_armor/textures/lottarmor_boots_bronze_preview.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_boots_copper.png b/mods/lord/Items/lord_armor/textures/lottarmor_boots_copper.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_boots_copper.png rename to mods/lord/Items/lord_armor/textures/lottarmor_boots_copper.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_boots_copper_preview.png b/mods/lord/Items/lord_armor/textures/lottarmor_boots_copper_preview.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_boots_copper_preview.png rename to mods/lord/Items/lord_armor/textures/lottarmor_boots_copper_preview.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_boots_galvorn.png b/mods/lord/Items/lord_armor/textures/lottarmor_boots_galvorn.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_boots_galvorn.png rename to mods/lord/Items/lord_armor/textures/lottarmor_boots_galvorn.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_boots_galvorn_preview.png b/mods/lord/Items/lord_armor/textures/lottarmor_boots_galvorn_preview.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_boots_galvorn_preview.png rename to mods/lord/Items/lord_armor/textures/lottarmor_boots_galvorn_preview.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_boots_gold.png b/mods/lord/Items/lord_armor/textures/lottarmor_boots_gold.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_boots_gold.png rename to mods/lord/Items/lord_armor/textures/lottarmor_boots_gold.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_boots_gold_preview.png b/mods/lord/Items/lord_armor/textures/lottarmor_boots_gold_preview.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_boots_gold_preview.png rename to mods/lord/Items/lord_armor/textures/lottarmor_boots_gold_preview.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_boots_mithril.png b/mods/lord/Items/lord_armor/textures/lottarmor_boots_mithril.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_boots_mithril.png rename to mods/lord/Items/lord_armor/textures/lottarmor_boots_mithril.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_boots_mithril_preview.png b/mods/lord/Items/lord_armor/textures/lottarmor_boots_mithril_preview.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_boots_mithril_preview.png rename to mods/lord/Items/lord_armor/textures/lottarmor_boots_mithril_preview.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_boots_silver.png b/mods/lord/Items/lord_armor/textures/lottarmor_boots_silver.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_boots_silver.png rename to mods/lord/Items/lord_armor/textures/lottarmor_boots_silver.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_boots_silver_preview.png b/mods/lord/Items/lord_armor/textures/lottarmor_boots_silver_preview.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_boots_silver_preview.png rename to mods/lord/Items/lord_armor/textures/lottarmor_boots_silver_preview.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_boots_steel.png b/mods/lord/Items/lord_armor/textures/lottarmor_boots_steel.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_boots_steel.png rename to mods/lord/Items/lord_armor/textures/lottarmor_boots_steel.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_boots_steel_preview.png b/mods/lord/Items/lord_armor/textures/lottarmor_boots_steel_preview.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_boots_steel_preview.png rename to mods/lord/Items/lord_armor/textures/lottarmor_boots_steel_preview.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_boots_tin.png b/mods/lord/Items/lord_armor/textures/lottarmor_boots_tin.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_boots_tin.png rename to mods/lord/Items/lord_armor/textures/lottarmor_boots_tin.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_boots_tin_preview.png b/mods/lord/Items/lord_armor/textures/lottarmor_boots_tin_preview.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_boots_tin_preview.png rename to mods/lord/Items/lord_armor/textures/lottarmor_boots_tin_preview.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_boots_wood.png b/mods/lord/Items/lord_armor/textures/lottarmor_boots_wood.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_boots_wood.png rename to mods/lord/Items/lord_armor/textures/lottarmor_boots_wood.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_boots_wood_preview.png b/mods/lord/Items/lord_armor/textures/lottarmor_boots_wood_preview.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_boots_wood_preview.png rename to mods/lord/Items/lord_armor/textures/lottarmor_boots_wood_preview.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_chestplate_bronze.png b/mods/lord/Items/lord_armor/textures/lottarmor_chestplate_bronze.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_chestplate_bronze.png rename to mods/lord/Items/lord_armor/textures/lottarmor_chestplate_bronze.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_chestplate_bronze_preview.png b/mods/lord/Items/lord_armor/textures/lottarmor_chestplate_bronze_preview.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_chestplate_bronze_preview.png rename to mods/lord/Items/lord_armor/textures/lottarmor_chestplate_bronze_preview.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_chestplate_copper.png b/mods/lord/Items/lord_armor/textures/lottarmor_chestplate_copper.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_chestplate_copper.png rename to mods/lord/Items/lord_armor/textures/lottarmor_chestplate_copper.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_chestplate_copper_preview.png b/mods/lord/Items/lord_armor/textures/lottarmor_chestplate_copper_preview.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_chestplate_copper_preview.png rename to mods/lord/Items/lord_armor/textures/lottarmor_chestplate_copper_preview.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_chestplate_galvorn.png b/mods/lord/Items/lord_armor/textures/lottarmor_chestplate_galvorn.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_chestplate_galvorn.png rename to mods/lord/Items/lord_armor/textures/lottarmor_chestplate_galvorn.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_chestplate_galvorn_preview.png b/mods/lord/Items/lord_armor/textures/lottarmor_chestplate_galvorn_preview.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_chestplate_galvorn_preview.png rename to mods/lord/Items/lord_armor/textures/lottarmor_chestplate_galvorn_preview.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_chestplate_gold.png b/mods/lord/Items/lord_armor/textures/lottarmor_chestplate_gold.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_chestplate_gold.png rename to mods/lord/Items/lord_armor/textures/lottarmor_chestplate_gold.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_chestplate_gold_preview.png b/mods/lord/Items/lord_armor/textures/lottarmor_chestplate_gold_preview.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_chestplate_gold_preview.png rename to mods/lord/Items/lord_armor/textures/lottarmor_chestplate_gold_preview.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_chestplate_mithril.png b/mods/lord/Items/lord_armor/textures/lottarmor_chestplate_mithril.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_chestplate_mithril.png rename to mods/lord/Items/lord_armor/textures/lottarmor_chestplate_mithril.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_chestplate_mithril_preview.png b/mods/lord/Items/lord_armor/textures/lottarmor_chestplate_mithril_preview.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_chestplate_mithril_preview.png rename to mods/lord/Items/lord_armor/textures/lottarmor_chestplate_mithril_preview.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_chestplate_silver.png b/mods/lord/Items/lord_armor/textures/lottarmor_chestplate_silver.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_chestplate_silver.png rename to mods/lord/Items/lord_armor/textures/lottarmor_chestplate_silver.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_chestplate_silver_preview.png b/mods/lord/Items/lord_armor/textures/lottarmor_chestplate_silver_preview.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_chestplate_silver_preview.png rename to mods/lord/Items/lord_armor/textures/lottarmor_chestplate_silver_preview.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_chestplate_steel.png b/mods/lord/Items/lord_armor/textures/lottarmor_chestplate_steel.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_chestplate_steel.png rename to mods/lord/Items/lord_armor/textures/lottarmor_chestplate_steel.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_chestplate_steel_preview.png b/mods/lord/Items/lord_armor/textures/lottarmor_chestplate_steel_preview.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_chestplate_steel_preview.png rename to mods/lord/Items/lord_armor/textures/lottarmor_chestplate_steel_preview.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_chestplate_tin.png b/mods/lord/Items/lord_armor/textures/lottarmor_chestplate_tin.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_chestplate_tin.png rename to mods/lord/Items/lord_armor/textures/lottarmor_chestplate_tin.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_chestplate_tin_preview.png b/mods/lord/Items/lord_armor/textures/lottarmor_chestplate_tin_preview.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_chestplate_tin_preview.png rename to mods/lord/Items/lord_armor/textures/lottarmor_chestplate_tin_preview.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_chestplate_wood.png b/mods/lord/Items/lord_armor/textures/lottarmor_chestplate_wood.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_chestplate_wood.png rename to mods/lord/Items/lord_armor/textures/lottarmor_chestplate_wood.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_chestplate_wood_preview.png b/mods/lord/Items/lord_armor/textures/lottarmor_chestplate_wood_preview.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_chestplate_wood_preview.png rename to mods/lord/Items/lord_armor/textures/lottarmor_chestplate_wood_preview.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_helmet_bronze.png b/mods/lord/Items/lord_armor/textures/lottarmor_helmet_bronze.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_helmet_bronze.png rename to mods/lord/Items/lord_armor/textures/lottarmor_helmet_bronze.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_helmet_bronze_preview.png b/mods/lord/Items/lord_armor/textures/lottarmor_helmet_bronze_preview.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_helmet_bronze_preview.png rename to mods/lord/Items/lord_armor/textures/lottarmor_helmet_bronze_preview.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_helmet_copper.png b/mods/lord/Items/lord_armor/textures/lottarmor_helmet_copper.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_helmet_copper.png rename to mods/lord/Items/lord_armor/textures/lottarmor_helmet_copper.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_helmet_copper_preview.png b/mods/lord/Items/lord_armor/textures/lottarmor_helmet_copper_preview.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_helmet_copper_preview.png rename to mods/lord/Items/lord_armor/textures/lottarmor_helmet_copper_preview.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_helmet_galvorn.png b/mods/lord/Items/lord_armor/textures/lottarmor_helmet_galvorn.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_helmet_galvorn.png rename to mods/lord/Items/lord_armor/textures/lottarmor_helmet_galvorn.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_helmet_galvorn_preview.png b/mods/lord/Items/lord_armor/textures/lottarmor_helmet_galvorn_preview.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_helmet_galvorn_preview.png rename to mods/lord/Items/lord_armor/textures/lottarmor_helmet_galvorn_preview.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_helmet_gold.png b/mods/lord/Items/lord_armor/textures/lottarmor_helmet_gold.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_helmet_gold.png rename to mods/lord/Items/lord_armor/textures/lottarmor_helmet_gold.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_helmet_gold_preview.png b/mods/lord/Items/lord_armor/textures/lottarmor_helmet_gold_preview.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_helmet_gold_preview.png rename to mods/lord/Items/lord_armor/textures/lottarmor_helmet_gold_preview.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_helmet_mithril.png b/mods/lord/Items/lord_armor/textures/lottarmor_helmet_mithril.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_helmet_mithril.png rename to mods/lord/Items/lord_armor/textures/lottarmor_helmet_mithril.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_helmet_mithril_preview.png b/mods/lord/Items/lord_armor/textures/lottarmor_helmet_mithril_preview.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_helmet_mithril_preview.png rename to mods/lord/Items/lord_armor/textures/lottarmor_helmet_mithril_preview.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_helmet_silver.png b/mods/lord/Items/lord_armor/textures/lottarmor_helmet_silver.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_helmet_silver.png rename to mods/lord/Items/lord_armor/textures/lottarmor_helmet_silver.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_helmet_silver_preview.png b/mods/lord/Items/lord_armor/textures/lottarmor_helmet_silver_preview.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_helmet_silver_preview.png rename to mods/lord/Items/lord_armor/textures/lottarmor_helmet_silver_preview.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_helmet_steel.png b/mods/lord/Items/lord_armor/textures/lottarmor_helmet_steel.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_helmet_steel.png rename to mods/lord/Items/lord_armor/textures/lottarmor_helmet_steel.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_helmet_steel_preview.png b/mods/lord/Items/lord_armor/textures/lottarmor_helmet_steel_preview.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_helmet_steel_preview.png rename to mods/lord/Items/lord_armor/textures/lottarmor_helmet_steel_preview.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_helmet_tin.png b/mods/lord/Items/lord_armor/textures/lottarmor_helmet_tin.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_helmet_tin.png rename to mods/lord/Items/lord_armor/textures/lottarmor_helmet_tin.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_helmet_tin_preview.png b/mods/lord/Items/lord_armor/textures/lottarmor_helmet_tin_preview.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_helmet_tin_preview.png rename to mods/lord/Items/lord_armor/textures/lottarmor_helmet_tin_preview.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_helmet_wood.png b/mods/lord/Items/lord_armor/textures/lottarmor_helmet_wood.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_helmet_wood.png rename to mods/lord/Items/lord_armor/textures/lottarmor_helmet_wood.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_helmet_wood_preview.png b/mods/lord/Items/lord_armor/textures/lottarmor_helmet_wood_preview.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_helmet_wood_preview.png rename to mods/lord/Items/lord_armor/textures/lottarmor_helmet_wood_preview.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_inv_boots_bronze.png b/mods/lord/Items/lord_armor/textures/lottarmor_inv_boots_bronze.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_inv_boots_bronze.png rename to mods/lord/Items/lord_armor/textures/lottarmor_inv_boots_bronze.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_inv_boots_copper.png b/mods/lord/Items/lord_armor/textures/lottarmor_inv_boots_copper.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_inv_boots_copper.png rename to mods/lord/Items/lord_armor/textures/lottarmor_inv_boots_copper.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_inv_boots_galvorn.png b/mods/lord/Items/lord_armor/textures/lottarmor_inv_boots_galvorn.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_inv_boots_galvorn.png rename to mods/lord/Items/lord_armor/textures/lottarmor_inv_boots_galvorn.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_inv_boots_gold.png b/mods/lord/Items/lord_armor/textures/lottarmor_inv_boots_gold.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_inv_boots_gold.png rename to mods/lord/Items/lord_armor/textures/lottarmor_inv_boots_gold.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_inv_boots_mithril.png b/mods/lord/Items/lord_armor/textures/lottarmor_inv_boots_mithril.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_inv_boots_mithril.png rename to mods/lord/Items/lord_armor/textures/lottarmor_inv_boots_mithril.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_inv_boots_silver.png b/mods/lord/Items/lord_armor/textures/lottarmor_inv_boots_silver.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_inv_boots_silver.png rename to mods/lord/Items/lord_armor/textures/lottarmor_inv_boots_silver.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_inv_boots_steel.png b/mods/lord/Items/lord_armor/textures/lottarmor_inv_boots_steel.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_inv_boots_steel.png rename to mods/lord/Items/lord_armor/textures/lottarmor_inv_boots_steel.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_inv_boots_tin.png b/mods/lord/Items/lord_armor/textures/lottarmor_inv_boots_tin.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_inv_boots_tin.png rename to mods/lord/Items/lord_armor/textures/lottarmor_inv_boots_tin.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_inv_boots_wood.png b/mods/lord/Items/lord_armor/textures/lottarmor_inv_boots_wood.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_inv_boots_wood.png rename to mods/lord/Items/lord_armor/textures/lottarmor_inv_boots_wood.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_inv_chestplate_bronze.png b/mods/lord/Items/lord_armor/textures/lottarmor_inv_chestplate_bronze.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_inv_chestplate_bronze.png rename to mods/lord/Items/lord_armor/textures/lottarmor_inv_chestplate_bronze.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_inv_chestplate_copper.png b/mods/lord/Items/lord_armor/textures/lottarmor_inv_chestplate_copper.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_inv_chestplate_copper.png rename to mods/lord/Items/lord_armor/textures/lottarmor_inv_chestplate_copper.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_inv_chestplate_galvorn.png b/mods/lord/Items/lord_armor/textures/lottarmor_inv_chestplate_galvorn.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_inv_chestplate_galvorn.png rename to mods/lord/Items/lord_armor/textures/lottarmor_inv_chestplate_galvorn.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_inv_chestplate_gold.png b/mods/lord/Items/lord_armor/textures/lottarmor_inv_chestplate_gold.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_inv_chestplate_gold.png rename to mods/lord/Items/lord_armor/textures/lottarmor_inv_chestplate_gold.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_inv_chestplate_mithril.png b/mods/lord/Items/lord_armor/textures/lottarmor_inv_chestplate_mithril.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_inv_chestplate_mithril.png rename to mods/lord/Items/lord_armor/textures/lottarmor_inv_chestplate_mithril.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_inv_chestplate_silver.png b/mods/lord/Items/lord_armor/textures/lottarmor_inv_chestplate_silver.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_inv_chestplate_silver.png rename to mods/lord/Items/lord_armor/textures/lottarmor_inv_chestplate_silver.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_inv_chestplate_steel.png b/mods/lord/Items/lord_armor/textures/lottarmor_inv_chestplate_steel.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_inv_chestplate_steel.png rename to mods/lord/Items/lord_armor/textures/lottarmor_inv_chestplate_steel.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_inv_chestplate_tin.png b/mods/lord/Items/lord_armor/textures/lottarmor_inv_chestplate_tin.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_inv_chestplate_tin.png rename to mods/lord/Items/lord_armor/textures/lottarmor_inv_chestplate_tin.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_inv_chestplate_wood.png b/mods/lord/Items/lord_armor/textures/lottarmor_inv_chestplate_wood.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_inv_chestplate_wood.png rename to mods/lord/Items/lord_armor/textures/lottarmor_inv_chestplate_wood.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_inv_helmet_bronze.png b/mods/lord/Items/lord_armor/textures/lottarmor_inv_helmet_bronze.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_inv_helmet_bronze.png rename to mods/lord/Items/lord_armor/textures/lottarmor_inv_helmet_bronze.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_inv_helmet_copper.png b/mods/lord/Items/lord_armor/textures/lottarmor_inv_helmet_copper.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_inv_helmet_copper.png rename to mods/lord/Items/lord_armor/textures/lottarmor_inv_helmet_copper.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_inv_helmet_galvorn.png b/mods/lord/Items/lord_armor/textures/lottarmor_inv_helmet_galvorn.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_inv_helmet_galvorn.png rename to mods/lord/Items/lord_armor/textures/lottarmor_inv_helmet_galvorn.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_inv_helmet_gold.png b/mods/lord/Items/lord_armor/textures/lottarmor_inv_helmet_gold.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_inv_helmet_gold.png rename to mods/lord/Items/lord_armor/textures/lottarmor_inv_helmet_gold.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_inv_helmet_mithril.png b/mods/lord/Items/lord_armor/textures/lottarmor_inv_helmet_mithril.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_inv_helmet_mithril.png rename to mods/lord/Items/lord_armor/textures/lottarmor_inv_helmet_mithril.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_inv_helmet_silver.png b/mods/lord/Items/lord_armor/textures/lottarmor_inv_helmet_silver.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_inv_helmet_silver.png rename to mods/lord/Items/lord_armor/textures/lottarmor_inv_helmet_silver.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_inv_helmet_steel.png b/mods/lord/Items/lord_armor/textures/lottarmor_inv_helmet_steel.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_inv_helmet_steel.png rename to mods/lord/Items/lord_armor/textures/lottarmor_inv_helmet_steel.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_inv_helmet_tin.png b/mods/lord/Items/lord_armor/textures/lottarmor_inv_helmet_tin.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_inv_helmet_tin.png rename to mods/lord/Items/lord_armor/textures/lottarmor_inv_helmet_tin.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_inv_helmet_wood.png b/mods/lord/Items/lord_armor/textures/lottarmor_inv_helmet_wood.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_inv_helmet_wood.png rename to mods/lord/Items/lord_armor/textures/lottarmor_inv_helmet_wood.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_inv_leggings_bronze.png b/mods/lord/Items/lord_armor/textures/lottarmor_inv_leggings_bronze.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_inv_leggings_bronze.png rename to mods/lord/Items/lord_armor/textures/lottarmor_inv_leggings_bronze.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_inv_leggings_copper.png b/mods/lord/Items/lord_armor/textures/lottarmor_inv_leggings_copper.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_inv_leggings_copper.png rename to mods/lord/Items/lord_armor/textures/lottarmor_inv_leggings_copper.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_inv_leggings_galvorn.png b/mods/lord/Items/lord_armor/textures/lottarmor_inv_leggings_galvorn.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_inv_leggings_galvorn.png rename to mods/lord/Items/lord_armor/textures/lottarmor_inv_leggings_galvorn.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_inv_leggings_gold.png b/mods/lord/Items/lord_armor/textures/lottarmor_inv_leggings_gold.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_inv_leggings_gold.png rename to mods/lord/Items/lord_armor/textures/lottarmor_inv_leggings_gold.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_inv_leggings_mithril.png b/mods/lord/Items/lord_armor/textures/lottarmor_inv_leggings_mithril.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_inv_leggings_mithril.png rename to mods/lord/Items/lord_armor/textures/lottarmor_inv_leggings_mithril.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_inv_leggings_silver.png b/mods/lord/Items/lord_armor/textures/lottarmor_inv_leggings_silver.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_inv_leggings_silver.png rename to mods/lord/Items/lord_armor/textures/lottarmor_inv_leggings_silver.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_inv_leggings_steel.png b/mods/lord/Items/lord_armor/textures/lottarmor_inv_leggings_steel.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_inv_leggings_steel.png rename to mods/lord/Items/lord_armor/textures/lottarmor_inv_leggings_steel.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_inv_leggings_tin.png b/mods/lord/Items/lord_armor/textures/lottarmor_inv_leggings_tin.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_inv_leggings_tin.png rename to mods/lord/Items/lord_armor/textures/lottarmor_inv_leggings_tin.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_inv_leggings_wood.png b/mods/lord/Items/lord_armor/textures/lottarmor_inv_leggings_wood.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_inv_leggings_wood.png rename to mods/lord/Items/lord_armor/textures/lottarmor_inv_leggings_wood.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_inv_shield_bronze.png b/mods/lord/Items/lord_armor/textures/lottarmor_inv_shield_bronze.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_inv_shield_bronze.png rename to mods/lord/Items/lord_armor/textures/lottarmor_inv_shield_bronze.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_inv_shield_copper.png b/mods/lord/Items/lord_armor/textures/lottarmor_inv_shield_copper.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_inv_shield_copper.png rename to mods/lord/Items/lord_armor/textures/lottarmor_inv_shield_copper.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_inv_shield_galvorn.png b/mods/lord/Items/lord_armor/textures/lottarmor_inv_shield_galvorn.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_inv_shield_galvorn.png rename to mods/lord/Items/lord_armor/textures/lottarmor_inv_shield_galvorn.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_inv_shield_gold.png b/mods/lord/Items/lord_armor/textures/lottarmor_inv_shield_gold.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_inv_shield_gold.png rename to mods/lord/Items/lord_armor/textures/lottarmor_inv_shield_gold.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_inv_shield_mithril.png b/mods/lord/Items/lord_armor/textures/lottarmor_inv_shield_mithril.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_inv_shield_mithril.png rename to mods/lord/Items/lord_armor/textures/lottarmor_inv_shield_mithril.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_inv_shield_silver.png b/mods/lord/Items/lord_armor/textures/lottarmor_inv_shield_silver.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_inv_shield_silver.png rename to mods/lord/Items/lord_armor/textures/lottarmor_inv_shield_silver.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_inv_shield_steel.png b/mods/lord/Items/lord_armor/textures/lottarmor_inv_shield_steel.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_inv_shield_steel.png rename to mods/lord/Items/lord_armor/textures/lottarmor_inv_shield_steel.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_inv_shield_tin.png b/mods/lord/Items/lord_armor/textures/lottarmor_inv_shield_tin.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_inv_shield_tin.png rename to mods/lord/Items/lord_armor/textures/lottarmor_inv_shield_tin.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_inv_shield_wood.png b/mods/lord/Items/lord_armor/textures/lottarmor_inv_shield_wood.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_inv_shield_wood.png rename to mods/lord/Items/lord_armor/textures/lottarmor_inv_shield_wood.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_leggings_bronze.png b/mods/lord/Items/lord_armor/textures/lottarmor_leggings_bronze.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_leggings_bronze.png rename to mods/lord/Items/lord_armor/textures/lottarmor_leggings_bronze.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_leggings_bronze_preview.png b/mods/lord/Items/lord_armor/textures/lottarmor_leggings_bronze_preview.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_leggings_bronze_preview.png rename to mods/lord/Items/lord_armor/textures/lottarmor_leggings_bronze_preview.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_leggings_copper.png b/mods/lord/Items/lord_armor/textures/lottarmor_leggings_copper.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_leggings_copper.png rename to mods/lord/Items/lord_armor/textures/lottarmor_leggings_copper.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_leggings_copper_preview.png b/mods/lord/Items/lord_armor/textures/lottarmor_leggings_copper_preview.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_leggings_copper_preview.png rename to mods/lord/Items/lord_armor/textures/lottarmor_leggings_copper_preview.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_leggings_galvorn.png b/mods/lord/Items/lord_armor/textures/lottarmor_leggings_galvorn.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_leggings_galvorn.png rename to mods/lord/Items/lord_armor/textures/lottarmor_leggings_galvorn.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_leggings_galvorn_preview.png b/mods/lord/Items/lord_armor/textures/lottarmor_leggings_galvorn_preview.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_leggings_galvorn_preview.png rename to mods/lord/Items/lord_armor/textures/lottarmor_leggings_galvorn_preview.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_leggings_gold.png b/mods/lord/Items/lord_armor/textures/lottarmor_leggings_gold.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_leggings_gold.png rename to mods/lord/Items/lord_armor/textures/lottarmor_leggings_gold.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_leggings_gold_preview.png b/mods/lord/Items/lord_armor/textures/lottarmor_leggings_gold_preview.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_leggings_gold_preview.png rename to mods/lord/Items/lord_armor/textures/lottarmor_leggings_gold_preview.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_leggings_mithril.png b/mods/lord/Items/lord_armor/textures/lottarmor_leggings_mithril.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_leggings_mithril.png rename to mods/lord/Items/lord_armor/textures/lottarmor_leggings_mithril.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_leggings_mithril_preview.png b/mods/lord/Items/lord_armor/textures/lottarmor_leggings_mithril_preview.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_leggings_mithril_preview.png rename to mods/lord/Items/lord_armor/textures/lottarmor_leggings_mithril_preview.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_leggings_silver.png b/mods/lord/Items/lord_armor/textures/lottarmor_leggings_silver.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_leggings_silver.png rename to mods/lord/Items/lord_armor/textures/lottarmor_leggings_silver.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_leggings_silver_preview.png b/mods/lord/Items/lord_armor/textures/lottarmor_leggings_silver_preview.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_leggings_silver_preview.png rename to mods/lord/Items/lord_armor/textures/lottarmor_leggings_silver_preview.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_leggings_steel.png b/mods/lord/Items/lord_armor/textures/lottarmor_leggings_steel.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_leggings_steel.png rename to mods/lord/Items/lord_armor/textures/lottarmor_leggings_steel.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_leggings_steel_preview.png b/mods/lord/Items/lord_armor/textures/lottarmor_leggings_steel_preview.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_leggings_steel_preview.png rename to mods/lord/Items/lord_armor/textures/lottarmor_leggings_steel_preview.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_leggings_tin.png b/mods/lord/Items/lord_armor/textures/lottarmor_leggings_tin.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_leggings_tin.png rename to mods/lord/Items/lord_armor/textures/lottarmor_leggings_tin.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_leggings_tin_preview.png b/mods/lord/Items/lord_armor/textures/lottarmor_leggings_tin_preview.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_leggings_tin_preview.png rename to mods/lord/Items/lord_armor/textures/lottarmor_leggings_tin_preview.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_leggings_wood.png b/mods/lord/Items/lord_armor/textures/lottarmor_leggings_wood.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_leggings_wood.png rename to mods/lord/Items/lord_armor/textures/lottarmor_leggings_wood.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_leggings_wood_preview.png b/mods/lord/Items/lord_armor/textures/lottarmor_leggings_wood_preview.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_leggings_wood_preview.png rename to mods/lord/Items/lord_armor/textures/lottarmor_leggings_wood_preview.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_shield_bronze.png b/mods/lord/Items/lord_armor/textures/lottarmor_shield_bronze.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_shield_bronze.png rename to mods/lord/Items/lord_armor/textures/lottarmor_shield_bronze.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_shield_bronze_preview.png b/mods/lord/Items/lord_armor/textures/lottarmor_shield_bronze_preview.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_shield_bronze_preview.png rename to mods/lord/Items/lord_armor/textures/lottarmor_shield_bronze_preview.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_shield_copper.png b/mods/lord/Items/lord_armor/textures/lottarmor_shield_copper.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_shield_copper.png rename to mods/lord/Items/lord_armor/textures/lottarmor_shield_copper.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_shield_copper_preview.png b/mods/lord/Items/lord_armor/textures/lottarmor_shield_copper_preview.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_shield_copper_preview.png rename to mods/lord/Items/lord_armor/textures/lottarmor_shield_copper_preview.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_shield_galvorn.png b/mods/lord/Items/lord_armor/textures/lottarmor_shield_galvorn.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_shield_galvorn.png rename to mods/lord/Items/lord_armor/textures/lottarmor_shield_galvorn.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_shield_galvorn_preview.png b/mods/lord/Items/lord_armor/textures/lottarmor_shield_galvorn_preview.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_shield_galvorn_preview.png rename to mods/lord/Items/lord_armor/textures/lottarmor_shield_galvorn_preview.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_shield_gold.png b/mods/lord/Items/lord_armor/textures/lottarmor_shield_gold.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_shield_gold.png rename to mods/lord/Items/lord_armor/textures/lottarmor_shield_gold.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_shield_gold_preview.png b/mods/lord/Items/lord_armor/textures/lottarmor_shield_gold_preview.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_shield_gold_preview.png rename to mods/lord/Items/lord_armor/textures/lottarmor_shield_gold_preview.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_shield_mithril.png b/mods/lord/Items/lord_armor/textures/lottarmor_shield_mithril.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_shield_mithril.png rename to mods/lord/Items/lord_armor/textures/lottarmor_shield_mithril.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_shield_mithril_preview.png b/mods/lord/Items/lord_armor/textures/lottarmor_shield_mithril_preview.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_shield_mithril_preview.png rename to mods/lord/Items/lord_armor/textures/lottarmor_shield_mithril_preview.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_shield_silver.png b/mods/lord/Items/lord_armor/textures/lottarmor_shield_silver.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_shield_silver.png rename to mods/lord/Items/lord_armor/textures/lottarmor_shield_silver.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_shield_silver_preview.png b/mods/lord/Items/lord_armor/textures/lottarmor_shield_silver_preview.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_shield_silver_preview.png rename to mods/lord/Items/lord_armor/textures/lottarmor_shield_silver_preview.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_shield_steel.png b/mods/lord/Items/lord_armor/textures/lottarmor_shield_steel.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_shield_steel.png rename to mods/lord/Items/lord_armor/textures/lottarmor_shield_steel.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_shield_steel_preview.png b/mods/lord/Items/lord_armor/textures/lottarmor_shield_steel_preview.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_shield_steel_preview.png rename to mods/lord/Items/lord_armor/textures/lottarmor_shield_steel_preview.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_shield_tin.png b/mods/lord/Items/lord_armor/textures/lottarmor_shield_tin.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_shield_tin.png rename to mods/lord/Items/lord_armor/textures/lottarmor_shield_tin.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_shield_tin_preview.png b/mods/lord/Items/lord_armor/textures/lottarmor_shield_tin_preview.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_shield_tin_preview.png rename to mods/lord/Items/lord_armor/textures/lottarmor_shield_tin_preview.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_shield_wood.png b/mods/lord/Items/lord_armor/textures/lottarmor_shield_wood.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_shield_wood.png rename to mods/lord/Items/lord_armor/textures/lottarmor_shield_wood.png diff --git a/mods/lord/Tools/lord_armor/textures/lottarmor_shield_wood_preview.png b/mods/lord/Items/lord_armor/textures/lottarmor_shield_wood_preview.png similarity index 100% rename from mods/lord/Tools/lord_armor/textures/lottarmor_shield_wood_preview.png rename to mods/lord/Items/lord_armor/textures/lottarmor_shield_wood_preview.png diff --git a/mods/lord/Tools/lord_boats/functions.lua b/mods/lord/Items/lord_boats/functions.lua similarity index 100% rename from mods/lord/Tools/lord_boats/functions.lua rename to mods/lord/Items/lord_boats/functions.lua diff --git a/mods/lord/Tools/lord_boats/init.lua b/mods/lord/Items/lord_boats/init.lua similarity index 100% rename from mods/lord/Tools/lord_boats/init.lua rename to mods/lord/Items/lord_boats/init.lua diff --git a/mods/lord/Tools/lord_boats/license.txt b/mods/lord/Items/lord_boats/license.txt similarity index 100% rename from mods/lord/Tools/lord_boats/license.txt rename to mods/lord/Items/lord_boats/license.txt diff --git a/mods/lord/Tools/lord_boats/locale/lord_boats.ru.tr b/mods/lord/Items/lord_boats/locale/lord_boats.ru.tr similarity index 100% rename from mods/lord/Tools/lord_boats/locale/lord_boats.ru.tr rename to mods/lord/Items/lord_boats/locale/lord_boats.ru.tr diff --git a/mods/lord/Tools/lord_boats/locale/template.txt b/mods/lord/Items/lord_boats/locale/template.txt similarity index 100% rename from mods/lord/Tools/lord_boats/locale/template.txt rename to mods/lord/Items/lord_boats/locale/template.txt diff --git a/mods/lord/Tools/lord_boats/mod.conf b/mods/lord/Items/lord_boats/mod.conf similarity index 100% rename from mods/lord/Tools/lord_boats/mod.conf rename to mods/lord/Items/lord_boats/mod.conf diff --git a/mods/lord/Tools/lord_boats/models/rowboat.b3d b/mods/lord/Items/lord_boats/models/rowboat.b3d similarity index 100% rename from mods/lord/Tools/lord_boats/models/rowboat.b3d rename to mods/lord/Items/lord_boats/models/rowboat.b3d diff --git a/mods/lord/Tools/lord_boats/models/rowboat.obj b/mods/lord/Items/lord_boats/models/rowboat.obj similarity index 100% rename from mods/lord/Tools/lord_boats/models/rowboat.obj rename to mods/lord/Items/lord_boats/models/rowboat.obj diff --git a/mods/lord/Tools/lord_boats/models/sailboat.b3d b/mods/lord/Items/lord_boats/models/sailboat.b3d similarity index 100% rename from mods/lord/Tools/lord_boats/models/sailboat.b3d rename to mods/lord/Items/lord_boats/models/sailboat.b3d diff --git a/mods/lord/Tools/lord_boats/models/sailboat.obj b/mods/lord/Items/lord_boats/models/sailboat.obj similarity index 100% rename from mods/lord/Tools/lord_boats/models/sailboat.obj rename to mods/lord/Items/lord_boats/models/sailboat.obj diff --git a/mods/lord/Tools/lord_boats/textures/rowboat_inventory.png b/mods/lord/Items/lord_boats/textures/rowboat_inventory.png similarity index 100% rename from mods/lord/Tools/lord_boats/textures/rowboat_inventory.png rename to mods/lord/Items/lord_boats/textures/rowboat_inventory.png diff --git a/mods/lord/Tools/lord_boats/textures/rowboat_wield.png b/mods/lord/Items/lord_boats/textures/rowboat_wield.png similarity index 100% rename from mods/lord/Tools/lord_boats/textures/rowboat_wield.png rename to mods/lord/Items/lord_boats/textures/rowboat_wield.png diff --git a/mods/lord/Tools/lord_boats/textures/sailboat.png b/mods/lord/Items/lord_boats/textures/sailboat.png similarity index 100% rename from mods/lord/Tools/lord_boats/textures/sailboat.png rename to mods/lord/Items/lord_boats/textures/sailboat.png diff --git a/mods/lord/Tools/lord_boats/textures/sailboat_inventory.png b/mods/lord/Items/lord_boats/textures/sailboat_inventory.png similarity index 100% rename from mods/lord/Tools/lord_boats/textures/sailboat_inventory.png rename to mods/lord/Items/lord_boats/textures/sailboat_inventory.png diff --git a/mods/lord/Tools/lord_boats/textures/sailboat_wield.png b/mods/lord/Items/lord_boats/textures/sailboat_wield.png similarity index 100% rename from mods/lord/Tools/lord_boats/textures/sailboat_wield.png rename to mods/lord/Items/lord_boats/textures/sailboat_wield.png diff --git a/mods/lord/Tools/lord_books/alcohol.lua b/mods/lord/Items/lord_books/alcohol.lua similarity index 100% rename from mods/lord/Tools/lord_books/alcohol.lua rename to mods/lord/Items/lord_books/alcohol.lua diff --git a/mods/lord/Tools/lord_books/cooking.lua b/mods/lord/Items/lord_books/cooking.lua similarity index 100% rename from mods/lord/Tools/lord_books/cooking.lua rename to mods/lord/Items/lord_books/cooking.lua diff --git a/mods/lord/Tools/lord_books/crafts.lua b/mods/lord/Items/lord_books/crafts.lua similarity index 100% rename from mods/lord/Tools/lord_books/crafts.lua rename to mods/lord/Items/lord_books/crafts.lua diff --git a/mods/lord/Tools/lord_books/forbidden.lua b/mods/lord/Items/lord_books/forbidden.lua similarity index 100% rename from mods/lord/Tools/lord_books/forbidden.lua rename to mods/lord/Items/lord_books/forbidden.lua diff --git a/mods/lord/Tools/lord_books/init.lua b/mods/lord/Items/lord_books/init.lua similarity index 100% rename from mods/lord/Tools/lord_books/init.lua rename to mods/lord/Items/lord_books/init.lua diff --git a/mods/lord/Tools/lord_books/license.txt b/mods/lord/Items/lord_books/license.txt similarity index 100% rename from mods/lord/Tools/lord_books/license.txt rename to mods/lord/Items/lord_books/license.txt diff --git a/mods/lord/Tools/lord_books/locale/lord_books.en.tr b/mods/lord/Items/lord_books/locale/lord_books.en.tr similarity index 100% rename from mods/lord/Tools/lord_books/locale/lord_books.en.tr rename to mods/lord/Items/lord_books/locale/lord_books.en.tr diff --git a/mods/lord/Tools/lord_books/locale/lord_books.ru.tr b/mods/lord/Items/lord_books/locale/lord_books.ru.tr similarity index 100% rename from mods/lord/Tools/lord_books/locale/lord_books.ru.tr rename to mods/lord/Items/lord_books/locale/lord_books.ru.tr diff --git a/mods/lord/Tools/lord_books/locale/template.txt b/mods/lord/Items/lord_books/locale/template.txt similarity index 100% rename from mods/lord/Tools/lord_books/locale/template.txt rename to mods/lord/Items/lord_books/locale/template.txt diff --git a/mods/lord/Tools/lord_books/master.lua b/mods/lord/Items/lord_books/master.lua similarity index 100% rename from mods/lord/Tools/lord_books/master.lua rename to mods/lord/Items/lord_books/master.lua diff --git a/mods/lord/Tools/lord_books/mod.conf b/mods/lord/Items/lord_books/mod.conf similarity index 100% rename from mods/lord/Tools/lord_books/mod.conf rename to mods/lord/Items/lord_books/mod.conf diff --git a/mods/lord/Tools/lord_books/potions.lua b/mods/lord/Items/lord_books/potions.lua similarity index 100% rename from mods/lord/Tools/lord_books/potions.lua rename to mods/lord/Items/lord_books/potions.lua diff --git a/mods/lord/Tools/lord_books/protection.lua b/mods/lord/Items/lord_books/protection.lua similarity index 100% rename from mods/lord/Tools/lord_books/protection.lua rename to mods/lord/Items/lord_books/protection.lua diff --git a/mods/lord/Tools/lord_books/scroll.lua b/mods/lord/Items/lord_books/scroll.lua similarity index 100% rename from mods/lord/Tools/lord_books/scroll.lua rename to mods/lord/Items/lord_books/scroll.lua diff --git a/mods/lord/Tools/lord_books/textures/books_craft_arrow.png b/mods/lord/Items/lord_books/textures/books_craft_arrow.png similarity index 100% rename from mods/lord/Tools/lord_books/textures/books_craft_arrow.png rename to mods/lord/Items/lord_books/textures/books_craft_arrow.png diff --git a/mods/lord/Tools/lord_books/textures/books_formbg.png b/mods/lord/Items/lord_books/textures/books_formbg.png similarity index 100% rename from mods/lord/Tools/lord_books/textures/books_formbg.png rename to mods/lord/Items/lord_books/textures/books_formbg.png diff --git a/mods/lord/Tools/lord_books/textures/books_method_cooking.png b/mods/lord/Items/lord_books/textures/books_method_cooking.png similarity index 100% rename from mods/lord/Tools/lord_books/textures/books_method_cooking.png rename to mods/lord/Items/lord_books/textures/books_method_cooking.png diff --git a/mods/lord/Tools/lord_books/textures/books_method_normal.png b/mods/lord/Items/lord_books/textures/books_method_normal.png similarity index 100% rename from mods/lord/Tools/lord_books/textures/books_method_normal.png rename to mods/lord/Items/lord_books/textures/books_method_normal.png diff --git a/mods/lord/Tools/lord_books/textures/books_next.png b/mods/lord/Items/lord_books/textures/books_next.png similarity index 100% rename from mods/lord/Tools/lord_books/textures/books_next.png rename to mods/lord/Items/lord_books/textures/books_next.png diff --git a/mods/lord/Tools/lord_books/textures/books_next_inactive.png b/mods/lord/Items/lord_books/textures/books_next_inactive.png similarity index 100% rename from mods/lord/Tools/lord_books/textures/books_next_inactive.png rename to mods/lord/Items/lord_books/textures/books_next_inactive.png diff --git a/mods/lord/Tools/lord_books/textures/books_next_press.png b/mods/lord/Items/lord_books/textures/books_next_press.png similarity index 100% rename from mods/lord/Tools/lord_books/textures/books_next_press.png rename to mods/lord/Items/lord_books/textures/books_next_press.png diff --git a/mods/lord/Tools/lord_books/textures/books_previous.png b/mods/lord/Items/lord_books/textures/books_previous.png similarity index 100% rename from mods/lord/Tools/lord_books/textures/books_previous.png rename to mods/lord/Items/lord_books/textures/books_previous.png diff --git a/mods/lord/Tools/lord_books/textures/books_previous_inactive.png b/mods/lord/Items/lord_books/textures/books_previous_inactive.png similarity index 100% rename from mods/lord/Tools/lord_books/textures/books_previous_inactive.png rename to mods/lord/Items/lord_books/textures/books_previous_inactive.png diff --git a/mods/lord/Tools/lord_books/textures/books_previous_press.png b/mods/lord/Items/lord_books/textures/books_previous_press.png similarity index 100% rename from mods/lord/Tools/lord_books/textures/books_previous_press.png rename to mods/lord/Items/lord_books/textures/books_previous_press.png diff --git a/mods/lord/Tools/lord_books/textures/brewing_book.png b/mods/lord/Items/lord_books/textures/brewing_book.png similarity index 100% rename from mods/lord/Tools/lord_books/textures/brewing_book.png rename to mods/lord/Items/lord_books/textures/brewing_book.png diff --git a/mods/lord/Tools/lord_books/textures/cooking_book.png b/mods/lord/Items/lord_books/textures/cooking_book.png similarity index 100% rename from mods/lord/Tools/lord_books/textures/cooking_book.png rename to mods/lord/Items/lord_books/textures/cooking_book.png diff --git a/mods/lord/Tools/lord_books/textures/crafts_book.png b/mods/lord/Items/lord_books/textures/crafts_book.png similarity index 100% rename from mods/lord/Tools/lord_books/textures/crafts_book.png rename to mods/lord/Items/lord_books/textures/crafts_book.png diff --git a/mods/lord/Tools/lord_books/textures/forbidden_book.png b/mods/lord/Items/lord_books/textures/forbidden_book.png similarity index 100% rename from mods/lord/Tools/lord_books/textures/forbidden_book.png rename to mods/lord/Items/lord_books/textures/forbidden_book.png diff --git a/mods/lord/Tools/lord_books/textures/master_book.png b/mods/lord/Items/lord_books/textures/master_book.png similarity index 100% rename from mods/lord/Tools/lord_books/textures/master_book.png rename to mods/lord/Items/lord_books/textures/master_book.png diff --git a/mods/lord/Tools/lord_books/textures/potion_book.png b/mods/lord/Items/lord_books/textures/potion_book.png similarity index 100% rename from mods/lord/Tools/lord_books/textures/potion_book.png rename to mods/lord/Items/lord_books/textures/potion_book.png diff --git a/mods/lord/Tools/lord_books/textures/protection_book.png b/mods/lord/Items/lord_books/textures/protection_book.png similarity index 100% rename from mods/lord/Tools/lord_books/textures/protection_book.png rename to mods/lord/Items/lord_books/textures/protection_book.png diff --git a/mods/lord/Tools/lord_books/textures/scroll.png b/mods/lord/Items/lord_books/textures/scroll.png similarity index 100% rename from mods/lord/Tools/lord_books/textures/scroll.png rename to mods/lord/Items/lord_books/textures/scroll.png diff --git a/mods/lord/Tools/lord_bucket/init.lua b/mods/lord/Items/lord_bucket/init.lua similarity index 100% rename from mods/lord/Tools/lord_bucket/init.lua rename to mods/lord/Items/lord_bucket/init.lua diff --git a/mods/lord/Tools/lord_bucket/locale/lord_bucket.ru.tr b/mods/lord/Items/lord_bucket/locale/lord_bucket.ru.tr similarity index 100% rename from mods/lord/Tools/lord_bucket/locale/lord_bucket.ru.tr rename to mods/lord/Items/lord_bucket/locale/lord_bucket.ru.tr diff --git a/mods/lord/Tools/lord_bucket/locale/template.txt b/mods/lord/Items/lord_bucket/locale/template.txt similarity index 100% rename from mods/lord/Tools/lord_bucket/locale/template.txt rename to mods/lord/Items/lord_bucket/locale/template.txt diff --git a/mods/lord/Tools/lord_bucket/mod.conf b/mods/lord/Items/lord_bucket/mod.conf similarity index 100% rename from mods/lord/Tools/lord_bucket/mod.conf rename to mods/lord/Items/lord_bucket/mod.conf diff --git a/mods/lord/Tools/lord_bucket/textures/bucket_ice.png b/mods/lord/Items/lord_bucket/textures/bucket_ice.png similarity index 100% rename from mods/lord/Tools/lord_bucket/textures/bucket_ice.png rename to mods/lord/Items/lord_bucket/textures/bucket_ice.png diff --git a/mods/lord/Tools/lord_bucket/textures/bucket_salt.png b/mods/lord/Items/lord_bucket/textures/bucket_salt.png similarity index 100% rename from mods/lord/Tools/lord_bucket/textures/bucket_salt.png rename to mods/lord/Items/lord_bucket/textures/bucket_salt.png diff --git a/mods/lord/Tools/lord_bucket/textures/bucket_snow.png b/mods/lord/Items/lord_bucket/textures/bucket_snow.png similarity index 100% rename from mods/lord/Tools/lord_bucket/textures/bucket_snow.png rename to mods/lord/Items/lord_bucket/textures/bucket_snow.png diff --git a/mods/lord/Tools/lord_food/init.lua b/mods/lord/Items/lord_food/init.lua similarity index 100% rename from mods/lord/Tools/lord_food/init.lua rename to mods/lord/Items/lord_food/init.lua diff --git a/mods/lord/Tools/lord_food/locale/lord_food.ru.tr b/mods/lord/Items/lord_food/locale/lord_food.ru.tr similarity index 100% rename from mods/lord/Tools/lord_food/locale/lord_food.ru.tr rename to mods/lord/Items/lord_food/locale/lord_food.ru.tr diff --git a/mods/lord/Tools/lord_food/locale/template.txt b/mods/lord/Items/lord_food/locale/template.txt similarity index 100% rename from mods/lord/Tools/lord_food/locale/template.txt rename to mods/lord/Items/lord_food/locale/template.txt diff --git a/mods/lord/Tools/lord_food/mod.conf b/mods/lord/Items/lord_food/mod.conf similarity index 100% rename from mods/lord/Tools/lord_food/mod.conf rename to mods/lord/Items/lord_food/mod.conf diff --git a/mods/lord/Tools/lord_food/textures/lord_food_lembas.png b/mods/lord/Items/lord_food/textures/lord_food_lembas.png similarity index 100% rename from mods/lord/Tools/lord_food/textures/lord_food_lembas.png rename to mods/lord/Items/lord_food/textures/lord_food_lembas.png diff --git a/mods/lord/Tools/lord_food/textures/lord_food_pancakes.png b/mods/lord/Items/lord_food/textures/lord_food_pancakes.png similarity index 100% rename from mods/lord/Tools/lord_food/textures/lord_food_pancakes.png rename to mods/lord/Items/lord_food/textures/lord_food_pancakes.png diff --git a/mods/lord/Tools/lord_food/textures/lord_food_pancakes_with_honey.png b/mods/lord/Items/lord_food/textures/lord_food_pancakes_with_honey.png similarity index 100% rename from mods/lord/Tools/lord_food/textures/lord_food_pancakes_with_honey.png rename to mods/lord/Items/lord_food/textures/lord_food_pancakes_with_honey.png diff --git a/mods/lord/Tools/lord_money/init.lua b/mods/lord/Items/lord_money/init.lua similarity index 100% rename from mods/lord/Tools/lord_money/init.lua rename to mods/lord/Items/lord_money/init.lua diff --git a/mods/lord/Tools/lord_money/locale/lord_money.ru.tr b/mods/lord/Items/lord_money/locale/lord_money.ru.tr similarity index 100% rename from mods/lord/Tools/lord_money/locale/lord_money.ru.tr rename to mods/lord/Items/lord_money/locale/lord_money.ru.tr diff --git a/mods/lord/Tools/lord_money/locale/template.txt b/mods/lord/Items/lord_money/locale/template.txt similarity index 100% rename from mods/lord/Tools/lord_money/locale/template.txt rename to mods/lord/Items/lord_money/locale/template.txt diff --git a/mods/lord/Tools/lord_money/mod.conf b/mods/lord/Items/lord_money/mod.conf similarity index 100% rename from mods/lord/Tools/lord_money/mod.conf rename to mods/lord/Items/lord_money/mod.conf diff --git a/mods/lord/Tools/lord_money/money.lua b/mods/lord/Items/lord_money/money.lua similarity index 100% rename from mods/lord/Tools/lord_money/money.lua rename to mods/lord/Items/lord_money/money.lua diff --git a/mods/lord/Tools/lord_money/shop.lua b/mods/lord/Items/lord_money/shop.lua similarity index 100% rename from mods/lord/Tools/lord_money/shop.lua rename to mods/lord/Items/lord_money/shop.lua diff --git a/mods/lord/Tools/lord_money/textures/lord_money_copper_coin.png b/mods/lord/Items/lord_money/textures/lord_money_copper_coin.png similarity index 100% rename from mods/lord/Tools/lord_money/textures/lord_money_copper_coin.png rename to mods/lord/Items/lord_money/textures/lord_money_copper_coin.png diff --git a/mods/lord/Tools/lord_money/textures/lord_money_diamond_coin.png b/mods/lord/Items/lord_money/textures/lord_money_diamond_coin.png similarity index 100% rename from mods/lord/Tools/lord_money/textures/lord_money_diamond_coin.png rename to mods/lord/Items/lord_money/textures/lord_money_diamond_coin.png diff --git a/mods/lord/Tools/lord_money/textures/lord_money_gold_coin.png b/mods/lord/Items/lord_money/textures/lord_money_gold_coin.png similarity index 100% rename from mods/lord/Tools/lord_money/textures/lord_money_gold_coin.png rename to mods/lord/Items/lord_money/textures/lord_money_gold_coin.png diff --git a/mods/lord/Tools/lord_money/textures/lord_money_silver_coin.png b/mods/lord/Items/lord_money/textures/lord_money_silver_coin.png similarity index 100% rename from mods/lord/Tools/lord_money/textures/lord_money_silver_coin.png rename to mods/lord/Items/lord_money/textures/lord_money_silver_coin.png diff --git a/mods/lord/Tools/lord_money/textures/shop_chest_top.png b/mods/lord/Items/lord_money/textures/shop_chest_top.png similarity index 100% rename from mods/lord/Tools/lord_money/textures/shop_chest_top.png rename to mods/lord/Items/lord_money/textures/shop_chest_top.png diff --git a/mods/lord/Tools/lord_money/textures/shop_license.png b/mods/lord/Items/lord_money/textures/shop_license.png similarity index 100% rename from mods/lord/Tools/lord_money/textures/shop_license.png rename to mods/lord/Items/lord_money/textures/shop_license.png diff --git a/mods/lord/Tools/lord_potions/init.lua b/mods/lord/Items/lord_potions/init.lua similarity index 100% rename from mods/lord/Tools/lord_potions/init.lua rename to mods/lord/Items/lord_potions/init.lua diff --git a/mods/lord/Tools/lord_potions/legacy.lua b/mods/lord/Items/lord_potions/legacy.lua similarity index 100% rename from mods/lord/Tools/lord_potions/legacy.lua rename to mods/lord/Items/lord_potions/legacy.lua diff --git a/mods/lord/Tools/lord_potions/locale/lord_potions.en.tr b/mods/lord/Items/lord_potions/locale/lord_potions.en.tr similarity index 100% rename from mods/lord/Tools/lord_potions/locale/lord_potions.en.tr rename to mods/lord/Items/lord_potions/locale/lord_potions.en.tr diff --git a/mods/lord/Tools/lord_potions/locale/lord_potions.ru.tr b/mods/lord/Items/lord_potions/locale/lord_potions.ru.tr similarity index 100% rename from mods/lord/Tools/lord_potions/locale/lord_potions.ru.tr rename to mods/lord/Items/lord_potions/locale/lord_potions.ru.tr diff --git a/mods/lord/Tools/lord_potions/mod.conf b/mods/lord/Items/lord_potions/mod.conf similarity index 100% rename from mods/lord/Tools/lord_potions/mod.conf rename to mods/lord/Items/lord_potions/mod.conf diff --git a/mods/lord/Tools/lord_potions/src/lord_potions.lua b/mods/lord/Items/lord_potions/src/lord_potions.lua similarity index 100% rename from mods/lord/Tools/lord_potions/src/lord_potions.lua rename to mods/lord/Items/lord_potions/src/lord_potions.lua diff --git a/mods/lord/Tools/lord_potions/src/lord_potions/api.lua b/mods/lord/Items/lord_potions/src/lord_potions/api.lua similarity index 100% rename from mods/lord/Tools/lord_potions/src/lord_potions/api.lua rename to mods/lord/Items/lord_potions/src/lord_potions/api.lua diff --git a/mods/lord/Tools/lord_potions/src/lord_potions/api/ingredient.lua b/mods/lord/Items/lord_potions/src/lord_potions/api/ingredient.lua similarity index 100% rename from mods/lord/Tools/lord_potions/src/lord_potions/api/ingredient.lua rename to mods/lord/Items/lord_potions/src/lord_potions/api/ingredient.lua diff --git a/mods/lord/Tools/lord_potions/src/lord_potions/api/potion.lua b/mods/lord/Items/lord_potions/src/lord_potions/api/potion.lua similarity index 100% rename from mods/lord/Tools/lord_potions/src/lord_potions/api/potion.lua rename to mods/lord/Items/lord_potions/src/lord_potions/api/potion.lua diff --git a/mods/lord/Tools/lord_potions/src/lord_potions/config.lua b/mods/lord/Items/lord_potions/src/lord_potions/config.lua similarity index 100% rename from mods/lord/Tools/lord_potions/src/lord_potions/config.lua rename to mods/lord/Items/lord_potions/src/lord_potions/config.lua diff --git a/mods/lord/Tools/lord_potions/src/lord_potions/config/ingredients.lua b/mods/lord/Items/lord_potions/src/lord_potions/config/ingredients.lua similarity index 100% rename from mods/lord/Tools/lord_potions/src/lord_potions/config/ingredients.lua rename to mods/lord/Items/lord_potions/src/lord_potions/config/ingredients.lua diff --git a/mods/lord/Tools/lord_potions/src/lord_potions/config/potions.lua b/mods/lord/Items/lord_potions/src/lord_potions/config/potions.lua similarity index 100% rename from mods/lord/Tools/lord_potions/src/lord_potions/config/potions.lua rename to mods/lord/Items/lord_potions/src/lord_potions/config/potions.lua diff --git a/mods/lord/Tools/lord_potions/textures/ingredients/lord_potions_ingredient_bonedust.png b/mods/lord/Items/lord_potions/textures/ingredients/lord_potions_ingredient_bonedust.png similarity index 100% rename from mods/lord/Tools/lord_potions/textures/ingredients/lord_potions_ingredient_bonedust.png rename to mods/lord/Items/lord_potions/textures/ingredients/lord_potions_ingredient_bonedust.png diff --git a/mods/lord/Tools/lord_potions/textures/ingredients/lord_potions_ingredient_geodes.png b/mods/lord/Items/lord_potions/textures/ingredients/lord_potions_ingredient_geodes.png similarity index 100% rename from mods/lord/Tools/lord_potions/textures/ingredients/lord_potions_ingredient_geodes.png rename to mods/lord/Items/lord_potions/textures/ingredients/lord_potions_ingredient_geodes.png diff --git a/mods/lord/Tools/lord_potions/textures/ingredients/lord_potions_ingredient_mese.png b/mods/lord/Items/lord_potions/textures/ingredients/lord_potions_ingredient_mese.png similarity index 100% rename from mods/lord/Tools/lord_potions/textures/ingredients/lord_potions_ingredient_mese.png rename to mods/lord/Items/lord_potions/textures/ingredients/lord_potions_ingredient_mese.png diff --git a/mods/lord/Tools/lord_potions/textures/ingredients/lord_potions_ingredient_mordor.png b/mods/lord/Items/lord_potions/textures/ingredients/lord_potions_ingredient_mordor.png similarity index 100% rename from mods/lord/Tools/lord_potions/textures/ingredients/lord_potions_ingredient_mordor.png rename to mods/lord/Items/lord_potions/textures/ingredients/lord_potions_ingredient_mordor.png diff --git a/mods/lord/Tools/lord_potions/textures/ingredients/lord_potions_ingredient_obsidian.png b/mods/lord/Items/lord_potions/textures/ingredients/lord_potions_ingredient_obsidian.png similarity index 100% rename from mods/lord/Tools/lord_potions/textures/ingredients/lord_potions_ingredient_obsidian.png rename to mods/lord/Items/lord_potions/textures/ingredients/lord_potions_ingredient_obsidian.png diff --git a/mods/lord/Tools/lord_potions/textures/ingredients/lord_potions_ingredient_seregon.png b/mods/lord/Items/lord_potions/textures/ingredients/lord_potions_ingredient_seregon.png similarity index 100% rename from mods/lord/Tools/lord_potions/textures/ingredients/lord_potions_ingredient_seregon.png rename to mods/lord/Items/lord_potions/textures/ingredients/lord_potions_ingredient_seregon.png diff --git a/mods/lord/Tools/lord_potions/textures/lord_potions_bottle.png b/mods/lord/Items/lord_potions/textures/lord_potions_bottle.png similarity index 100% rename from mods/lord/Tools/lord_potions/textures/lord_potions_bottle.png rename to mods/lord/Items/lord_potions/textures/lord_potions_bottle.png diff --git a/mods/lord/Tools/lord_potions/textures/lord_potions_bottle_content_mask.png b/mods/lord/Items/lord_potions/textures/lord_potions_bottle_content_mask.png similarity index 100% rename from mods/lord/Tools/lord_potions/textures/lord_potions_bottle_content_mask.png rename to mods/lord/Items/lord_potions/textures/lord_potions_bottle_content_mask.png diff --git a/mods/lord/Tools/lord_projectiles/init.lua b/mods/lord/Items/lord_projectiles/init.lua similarity index 100% rename from mods/lord/Tools/lord_projectiles/init.lua rename to mods/lord/Items/lord_projectiles/init.lua diff --git a/mods/lord/Tools/lord_projectiles/locale/lord_projectiles.ru.tr b/mods/lord/Items/lord_projectiles/locale/lord_projectiles.ru.tr similarity index 100% rename from mods/lord/Tools/lord_projectiles/locale/lord_projectiles.ru.tr rename to mods/lord/Items/lord_projectiles/locale/lord_projectiles.ru.tr diff --git a/mods/lord/Tools/lord_projectiles/mod.conf b/mods/lord/Items/lord_projectiles/mod.conf similarity index 100% rename from mods/lord/Tools/lord_projectiles/mod.conf rename to mods/lord/Items/lord_projectiles/mod.conf diff --git a/mods/lord/Tools/lord_projectiles/models/lord_projectiles_arrow.obj b/mods/lord/Items/lord_projectiles/models/lord_projectiles_arrow.obj similarity index 100% rename from mods/lord/Tools/lord_projectiles/models/lord_projectiles_arrow.obj rename to mods/lord/Items/lord_projectiles/models/lord_projectiles_arrow.obj diff --git a/mods/lord/Tools/lord_projectiles/sounds/LICENSE b/mods/lord/Items/lord_projectiles/sounds/LICENSE similarity index 100% rename from mods/lord/Tools/lord_projectiles/sounds/LICENSE rename to mods/lord/Items/lord_projectiles/sounds/LICENSE diff --git a/mods/lord/Tools/lord_projectiles/sounds/lord_projectiles_arrow_hit_node.ogg b/mods/lord/Items/lord_projectiles/sounds/lord_projectiles_arrow_hit_node.ogg similarity index 100% rename from mods/lord/Tools/lord_projectiles/sounds/lord_projectiles_arrow_hit_node.ogg rename to mods/lord/Items/lord_projectiles/sounds/lord_projectiles_arrow_hit_node.ogg diff --git a/mods/lord/Tools/lord_projectiles/sounds/lord_projectiles_arrow_hit_object.ogg b/mods/lord/Items/lord_projectiles/sounds/lord_projectiles_arrow_hit_object.ogg similarity index 100% rename from mods/lord/Tools/lord_projectiles/sounds/lord_projectiles_arrow_hit_object.ogg rename to mods/lord/Items/lord_projectiles/sounds/lord_projectiles_arrow_hit_object.ogg diff --git a/mods/lord/Tools/lord_projectiles/sounds/lord_projectiles_explosion.ogg b/mods/lord/Items/lord_projectiles/sounds/lord_projectiles_explosion.ogg similarity index 100% rename from mods/lord/Tools/lord_projectiles/sounds/lord_projectiles_explosion.ogg rename to mods/lord/Items/lord_projectiles/sounds/lord_projectiles_explosion.ogg diff --git a/mods/lord/Tools/lord_projectiles/src/lord_projectiles.lua b/mods/lord/Items/lord_projectiles/src/lord_projectiles.lua similarity index 100% rename from mods/lord/Tools/lord_projectiles/src/lord_projectiles.lua rename to mods/lord/Items/lord_projectiles/src/lord_projectiles.lua diff --git a/mods/lord/Tools/lord_projectiles/src/lord_projectiles/config.lua b/mods/lord/Items/lord_projectiles/src/lord_projectiles/config.lua similarity index 100% rename from mods/lord/Tools/lord_projectiles/src/lord_projectiles/config.lua rename to mods/lord/Items/lord_projectiles/src/lord_projectiles/config.lua diff --git a/mods/lord/Tools/lord_projectiles/src/lord_projectiles/crafts.lua b/mods/lord/Items/lord_projectiles/src/lord_projectiles/crafts.lua similarity index 100% rename from mods/lord/Tools/lord_projectiles/src/lord_projectiles/crafts.lua rename to mods/lord/Items/lord_projectiles/src/lord_projectiles/crafts.lua diff --git a/mods/lord/Tools/lord_projectiles/textures/lord_projectiles_arrow_trajectory_normal_particle.png b/mods/lord/Items/lord_projectiles/textures/lord_projectiles_arrow_trajectory_normal_particle.png similarity index 100% rename from mods/lord/Tools/lord_projectiles/textures/lord_projectiles_arrow_trajectory_normal_particle.png rename to mods/lord/Items/lord_projectiles/textures/lord_projectiles_arrow_trajectory_normal_particle.png diff --git a/mods/lord/Tools/lord_projectiles/textures/lord_projectiles_arrow_trajectory_water_particle.png b/mods/lord/Items/lord_projectiles/textures/lord_projectiles_arrow_trajectory_water_particle.png similarity index 100% rename from mods/lord/Tools/lord_projectiles/textures/lord_projectiles_arrow_trajectory_water_particle.png rename to mods/lord/Items/lord_projectiles/textures/lord_projectiles_arrow_trajectory_water_particle.png diff --git a/mods/lord/Tools/lord_projectiles/textures/lord_projectiles_bolt_trajectory_normal_particle.png b/mods/lord/Items/lord_projectiles/textures/lord_projectiles_bolt_trajectory_normal_particle.png similarity index 100% rename from mods/lord/Tools/lord_projectiles/textures/lord_projectiles_bolt_trajectory_normal_particle.png rename to mods/lord/Items/lord_projectiles/textures/lord_projectiles_bolt_trajectory_normal_particle.png diff --git a/mods/lord/Tools/lord_projectiles/textures/lord_projectiles_bolt_trajectory_water_particle.png b/mods/lord/Items/lord_projectiles/textures/lord_projectiles_bolt_trajectory_water_particle.png similarity index 100% rename from mods/lord/Tools/lord_projectiles/textures/lord_projectiles_bolt_trajectory_water_particle.png rename to mods/lord/Items/lord_projectiles/textures/lord_projectiles_bolt_trajectory_water_particle.png diff --git a/mods/lord/Tools/lord_projectiles/textures/lord_projectiles_bronze_arrow.png b/mods/lord/Items/lord_projectiles/textures/lord_projectiles_bronze_arrow.png similarity index 100% rename from mods/lord/Tools/lord_projectiles/textures/lord_projectiles_bronze_arrow.png rename to mods/lord/Items/lord_projectiles/textures/lord_projectiles_bronze_arrow.png diff --git a/mods/lord/Tools/lord_projectiles/textures/lord_projectiles_bronze_arrow_entity.png b/mods/lord/Items/lord_projectiles/textures/lord_projectiles_bronze_arrow_entity.png similarity index 100% rename from mods/lord/Tools/lord_projectiles/textures/lord_projectiles_bronze_arrow_entity.png rename to mods/lord/Items/lord_projectiles/textures/lord_projectiles_bronze_arrow_entity.png diff --git a/mods/lord/Tools/lord_projectiles/textures/lord_projectiles_bronze_bolt.png b/mods/lord/Items/lord_projectiles/textures/lord_projectiles_bronze_bolt.png similarity index 100% rename from mods/lord/Tools/lord_projectiles/textures/lord_projectiles_bronze_bolt.png rename to mods/lord/Items/lord_projectiles/textures/lord_projectiles_bronze_bolt.png diff --git a/mods/lord/Tools/lord_projectiles/textures/lord_projectiles_bronze_bolt_entity.png b/mods/lord/Items/lord_projectiles/textures/lord_projectiles_bronze_bolt_entity.png similarity index 100% rename from mods/lord/Tools/lord_projectiles/textures/lord_projectiles_bronze_bolt_entity.png rename to mods/lord/Items/lord_projectiles/textures/lord_projectiles_bronze_bolt_entity.png diff --git a/mods/lord/Tools/lord_projectiles/textures/lord_projectiles_explosion_particle.png b/mods/lord/Items/lord_projectiles/textures/lord_projectiles_explosion_particle.png similarity index 100% rename from mods/lord/Tools/lord_projectiles/textures/lord_projectiles_explosion_particle.png rename to mods/lord/Items/lord_projectiles/textures/lord_projectiles_explosion_particle.png diff --git a/mods/lord/Tools/lord_projectiles/textures/lord_projectiles_fire_magic_trajectory_normal_particle.png b/mods/lord/Items/lord_projectiles/textures/lord_projectiles_fire_magic_trajectory_normal_particle.png similarity index 100% rename from mods/lord/Tools/lord_projectiles/textures/lord_projectiles_fire_magic_trajectory_normal_particle.png rename to mods/lord/Items/lord_projectiles/textures/lord_projectiles_fire_magic_trajectory_normal_particle.png diff --git a/mods/lord/Tools/lord_projectiles/textures/lord_projectiles_fire_magic_trajectory_water_particle.png b/mods/lord/Items/lord_projectiles/textures/lord_projectiles_fire_magic_trajectory_water_particle.png similarity index 100% rename from mods/lord/Tools/lord_projectiles/textures/lord_projectiles_fire_magic_trajectory_water_particle.png rename to mods/lord/Items/lord_projectiles/textures/lord_projectiles_fire_magic_trajectory_water_particle.png diff --git a/mods/lord/Tools/lord_projectiles/textures/lord_projectiles_flint_arrow.png b/mods/lord/Items/lord_projectiles/textures/lord_projectiles_flint_arrow.png similarity index 100% rename from mods/lord/Tools/lord_projectiles/textures/lord_projectiles_flint_arrow.png rename to mods/lord/Items/lord_projectiles/textures/lord_projectiles_flint_arrow.png diff --git a/mods/lord/Tools/lord_projectiles/textures/lord_projectiles_flint_arrow_entity.png b/mods/lord/Items/lord_projectiles/textures/lord_projectiles_flint_arrow_entity.png similarity index 100% rename from mods/lord/Tools/lord_projectiles/textures/lord_projectiles_flint_arrow_entity.png rename to mods/lord/Items/lord_projectiles/textures/lord_projectiles_flint_arrow_entity.png diff --git a/mods/lord/Tools/lord_projectiles/textures/lord_projectiles_galvorn_arrow.png b/mods/lord/Items/lord_projectiles/textures/lord_projectiles_galvorn_arrow.png similarity index 100% rename from mods/lord/Tools/lord_projectiles/textures/lord_projectiles_galvorn_arrow.png rename to mods/lord/Items/lord_projectiles/textures/lord_projectiles_galvorn_arrow.png diff --git a/mods/lord/Tools/lord_projectiles/textures/lord_projectiles_galvorn_arrow_entity.png b/mods/lord/Items/lord_projectiles/textures/lord_projectiles_galvorn_arrow_entity.png similarity index 100% rename from mods/lord/Tools/lord_projectiles/textures/lord_projectiles_galvorn_arrow_entity.png rename to mods/lord/Items/lord_projectiles/textures/lord_projectiles_galvorn_arrow_entity.png diff --git a/mods/lord/Tools/lord_projectiles/textures/lord_projectiles_galvorn_bolt.png b/mods/lord/Items/lord_projectiles/textures/lord_projectiles_galvorn_bolt.png similarity index 100% rename from mods/lord/Tools/lord_projectiles/textures/lord_projectiles_galvorn_bolt.png rename to mods/lord/Items/lord_projectiles/textures/lord_projectiles_galvorn_bolt.png diff --git a/mods/lord/Tools/lord_projectiles/textures/lord_projectiles_galvorn_bolt_entity.png b/mods/lord/Items/lord_projectiles/textures/lord_projectiles_galvorn_bolt_entity.png similarity index 100% rename from mods/lord/Tools/lord_projectiles/textures/lord_projectiles_galvorn_bolt_entity.png rename to mods/lord/Items/lord_projectiles/textures/lord_projectiles_galvorn_bolt_entity.png diff --git a/mods/lord/Tools/lord_projectiles/textures/lord_projectiles_mithril_arrow.png b/mods/lord/Items/lord_projectiles/textures/lord_projectiles_mithril_arrow.png similarity index 100% rename from mods/lord/Tools/lord_projectiles/textures/lord_projectiles_mithril_arrow.png rename to mods/lord/Items/lord_projectiles/textures/lord_projectiles_mithril_arrow.png diff --git a/mods/lord/Tools/lord_projectiles/textures/lord_projectiles_mithril_arrow_entity.png b/mods/lord/Items/lord_projectiles/textures/lord_projectiles_mithril_arrow_entity.png similarity index 100% rename from mods/lord/Tools/lord_projectiles/textures/lord_projectiles_mithril_arrow_entity.png rename to mods/lord/Items/lord_projectiles/textures/lord_projectiles_mithril_arrow_entity.png diff --git a/mods/lord/Tools/lord_projectiles/textures/lord_projectiles_mithril_bolt.png b/mods/lord/Items/lord_projectiles/textures/lord_projectiles_mithril_bolt.png similarity index 100% rename from mods/lord/Tools/lord_projectiles/textures/lord_projectiles_mithril_bolt.png rename to mods/lord/Items/lord_projectiles/textures/lord_projectiles_mithril_bolt.png diff --git a/mods/lord/Tools/lord_projectiles/textures/lord_projectiles_mithril_bolt_entity.png b/mods/lord/Items/lord_projectiles/textures/lord_projectiles_mithril_bolt_entity.png similarity index 100% rename from mods/lord/Tools/lord_projectiles/textures/lord_projectiles_mithril_bolt_entity.png rename to mods/lord/Items/lord_projectiles/textures/lord_projectiles_mithril_bolt_entity.png diff --git a/mods/lord/Tools/lord_projectiles/textures/lord_projectiles_soul_magic_trajectory_normal_particle.png b/mods/lord/Items/lord_projectiles/textures/lord_projectiles_soul_magic_trajectory_normal_particle.png similarity index 100% rename from mods/lord/Tools/lord_projectiles/textures/lord_projectiles_soul_magic_trajectory_normal_particle.png rename to mods/lord/Items/lord_projectiles/textures/lord_projectiles_soul_magic_trajectory_normal_particle.png diff --git a/mods/lord/Tools/lord_projectiles/textures/lord_projectiles_soul_magic_trajectory_water_particle.png b/mods/lord/Items/lord_projectiles/textures/lord_projectiles_soul_magic_trajectory_water_particle.png similarity index 100% rename from mods/lord/Tools/lord_projectiles/textures/lord_projectiles_soul_magic_trajectory_water_particle.png rename to mods/lord/Items/lord_projectiles/textures/lord_projectiles_soul_magic_trajectory_water_particle.png diff --git a/mods/lord/Tools/lord_projectiles/textures/lord_projectiles_steel_arrow.png b/mods/lord/Items/lord_projectiles/textures/lord_projectiles_steel_arrow.png similarity index 100% rename from mods/lord/Tools/lord_projectiles/textures/lord_projectiles_steel_arrow.png rename to mods/lord/Items/lord_projectiles/textures/lord_projectiles_steel_arrow.png diff --git a/mods/lord/Tools/lord_projectiles/textures/lord_projectiles_steel_arrow_entity.png b/mods/lord/Items/lord_projectiles/textures/lord_projectiles_steel_arrow_entity.png similarity index 100% rename from mods/lord/Tools/lord_projectiles/textures/lord_projectiles_steel_arrow_entity.png rename to mods/lord/Items/lord_projectiles/textures/lord_projectiles_steel_arrow_entity.png diff --git a/mods/lord/Tools/lord_projectiles/textures/lord_projectiles_steel_bolt.png b/mods/lord/Items/lord_projectiles/textures/lord_projectiles_steel_bolt.png similarity index 100% rename from mods/lord/Tools/lord_projectiles/textures/lord_projectiles_steel_bolt.png rename to mods/lord/Items/lord_projectiles/textures/lord_projectiles_steel_bolt.png diff --git a/mods/lord/Tools/lord_projectiles/textures/lord_projectiles_steel_bolt_entity.png b/mods/lord/Items/lord_projectiles/textures/lord_projectiles_steel_bolt_entity.png similarity index 100% rename from mods/lord/Tools/lord_projectiles/textures/lord_projectiles_steel_bolt_entity.png rename to mods/lord/Items/lord_projectiles/textures/lord_projectiles_steel_bolt_entity.png diff --git a/mods/lord/Tools/lord_projectiles/textures/lord_projectiles_throwable_trajectory_normal_particle.png b/mods/lord/Items/lord_projectiles/textures/lord_projectiles_throwable_trajectory_normal_particle.png similarity index 100% rename from mods/lord/Tools/lord_projectiles/textures/lord_projectiles_throwable_trajectory_normal_particle.png rename to mods/lord/Items/lord_projectiles/textures/lord_projectiles_throwable_trajectory_normal_particle.png diff --git a/mods/lord/Tools/lord_projectiles/textures/lord_projectiles_throwable_trajectory_water_particle.png b/mods/lord/Items/lord_projectiles/textures/lord_projectiles_throwable_trajectory_water_particle.png similarity index 100% rename from mods/lord/Tools/lord_projectiles/textures/lord_projectiles_throwable_trajectory_water_particle.png rename to mods/lord/Items/lord_projectiles/textures/lord_projectiles_throwable_trajectory_water_particle.png diff --git a/mods/lord/Tools/lord_projectiles/textures/lottmobs_darkball.png b/mods/lord/Items/lord_projectiles/textures/lottmobs_darkball.png similarity index 100% rename from mods/lord/Tools/lord_projectiles/textures/lottmobs_darkball.png rename to mods/lord/Items/lord_projectiles/textures/lottmobs_darkball.png diff --git a/mods/lord/Tools/lord_projectiles/textures/lottmobs_egg.png b/mods/lord/Items/lord_projectiles/textures/lottmobs_egg.png similarity index 100% rename from mods/lord/Tools/lord_projectiles/textures/lottmobs_egg.png rename to mods/lord/Items/lord_projectiles/textures/lottmobs_egg.png diff --git a/mods/lord/Tools/lord_projectiles/textures/mobs_fireball.png b/mods/lord/Items/lord_projectiles/textures/mobs_fireball.png similarity index 100% rename from mods/lord/Tools/lord_projectiles/textures/mobs_fireball.png rename to mods/lord/Items/lord_projectiles/textures/mobs_fireball.png diff --git a/mods/lord/Tools/lord_replacer/LICENSE.txt b/mods/lord/Items/lord_replacer/LICENSE.txt similarity index 100% rename from mods/lord/Tools/lord_replacer/LICENSE.txt rename to mods/lord/Items/lord_replacer/LICENSE.txt diff --git a/mods/lord/Tools/lord_replacer/init.lua b/mods/lord/Items/lord_replacer/init.lua similarity index 100% rename from mods/lord/Tools/lord_replacer/init.lua rename to mods/lord/Items/lord_replacer/init.lua diff --git a/mods/lord/Tools/lord_replacer/locale/lord_replacer.ru.tr b/mods/lord/Items/lord_replacer/locale/lord_replacer.ru.tr similarity index 100% rename from mods/lord/Tools/lord_replacer/locale/lord_replacer.ru.tr rename to mods/lord/Items/lord_replacer/locale/lord_replacer.ru.tr diff --git a/mods/lord/Tools/lord_replacer/mod.conf b/mods/lord/Items/lord_replacer/mod.conf similarity index 100% rename from mods/lord/Tools/lord_replacer/mod.conf rename to mods/lord/Items/lord_replacer/mod.conf diff --git a/mods/lord/Tools/lord_replacer/textures/lord_replacer_replacer.png b/mods/lord/Items/lord_replacer/textures/lord_replacer_replacer.png similarity index 100% rename from mods/lord/Tools/lord_replacer/textures/lord_replacer_replacer.png rename to mods/lord/Items/lord_replacer/textures/lord_replacer_replacer.png diff --git a/mods/lord/Tools/lord_screwdriver/init.lua b/mods/lord/Items/lord_screwdriver/init.lua similarity index 100% rename from mods/lord/Tools/lord_screwdriver/init.lua rename to mods/lord/Items/lord_screwdriver/init.lua diff --git a/mods/lord/Tools/lord_screwdriver/locale/lord_screwdriver.ru.tr b/mods/lord/Items/lord_screwdriver/locale/lord_screwdriver.ru.tr similarity index 100% rename from mods/lord/Tools/lord_screwdriver/locale/lord_screwdriver.ru.tr rename to mods/lord/Items/lord_screwdriver/locale/lord_screwdriver.ru.tr diff --git a/mods/lord/Tools/lord_screwdriver/locale/template.txt b/mods/lord/Items/lord_screwdriver/locale/template.txt similarity index 100% rename from mods/lord/Tools/lord_screwdriver/locale/template.txt rename to mods/lord/Items/lord_screwdriver/locale/template.txt diff --git a/mods/lord/Tools/lord_screwdriver/mod.conf b/mods/lord/Items/lord_screwdriver/mod.conf similarity index 100% rename from mods/lord/Tools/lord_screwdriver/mod.conf rename to mods/lord/Items/lord_screwdriver/mod.conf diff --git a/mods/lord/Tools/lord_screwdriver/textures/screwdriver.png b/mods/lord/Items/lord_screwdriver/textures/screwdriver.png similarity index 100% rename from mods/lord/Tools/lord_screwdriver/textures/screwdriver.png rename to mods/lord/Items/lord_screwdriver/textures/screwdriver.png diff --git a/mods/lord/Tools/lord_screwdriver/textures/screwdriver_galvorn.png b/mods/lord/Items/lord_screwdriver/textures/screwdriver_galvorn.png similarity index 100% rename from mods/lord/Tools/lord_screwdriver/textures/screwdriver_galvorn.png rename to mods/lord/Items/lord_screwdriver/textures/screwdriver_galvorn.png diff --git a/mods/lord/Tools/lord_vessels/init.lua b/mods/lord/Items/lord_vessels/init.lua similarity index 100% rename from mods/lord/Tools/lord_vessels/init.lua rename to mods/lord/Items/lord_vessels/init.lua diff --git a/mods/lord/Tools/lord_vessels/legacy.lua b/mods/lord/Items/lord_vessels/legacy.lua similarity index 100% rename from mods/lord/Tools/lord_vessels/legacy.lua rename to mods/lord/Items/lord_vessels/legacy.lua diff --git a/mods/lord/Tools/lord_vessels/license.md b/mods/lord/Items/lord_vessels/license.md similarity index 100% rename from mods/lord/Tools/lord_vessels/license.md rename to mods/lord/Items/lord_vessels/license.md diff --git a/mods/lord/Tools/lord_vessels/locale/lord_vessels.en.tr b/mods/lord/Items/lord_vessels/locale/lord_vessels.en.tr similarity index 100% rename from mods/lord/Tools/lord_vessels/locale/lord_vessels.en.tr rename to mods/lord/Items/lord_vessels/locale/lord_vessels.en.tr diff --git a/mods/lord/Tools/lord_vessels/locale/lord_vessels.ru.tr b/mods/lord/Items/lord_vessels/locale/lord_vessels.ru.tr similarity index 100% rename from mods/lord/Tools/lord_vessels/locale/lord_vessels.ru.tr rename to mods/lord/Items/lord_vessels/locale/lord_vessels.ru.tr diff --git a/mods/lord/Tools/lord_vessels/mod.conf b/mods/lord/Items/lord_vessels/mod.conf similarity index 100% rename from mods/lord/Tools/lord_vessels/mod.conf rename to mods/lord/Items/lord_vessels/mod.conf diff --git a/mods/lord/Tools/lord_vessels/models/bowls/lord_vessels_bowl_1.blend b/mods/lord/Items/lord_vessels/models/bowls/lord_vessels_bowl_1.blend similarity index 100% rename from mods/lord/Tools/lord_vessels/models/bowls/lord_vessels_bowl_1.blend rename to mods/lord/Items/lord_vessels/models/bowls/lord_vessels_bowl_1.blend diff --git a/mods/lord/Tools/lord_vessels/models/bowls/lord_vessels_bowl_1.obj b/mods/lord/Items/lord_vessels/models/bowls/lord_vessels_bowl_1.obj similarity index 100% rename from mods/lord/Tools/lord_vessels/models/bowls/lord_vessels_bowl_1.obj rename to mods/lord/Items/lord_vessels/models/bowls/lord_vessels_bowl_1.obj diff --git a/mods/lord/Tools/lord_vessels/models/bowls/lord_vessels_bowl_2.blend b/mods/lord/Items/lord_vessels/models/bowls/lord_vessels_bowl_2.blend similarity index 100% rename from mods/lord/Tools/lord_vessels/models/bowls/lord_vessels_bowl_2.blend rename to mods/lord/Items/lord_vessels/models/bowls/lord_vessels_bowl_2.blend diff --git a/mods/lord/Tools/lord_vessels/models/bowls/lord_vessels_bowl_2.obj b/mods/lord/Items/lord_vessels/models/bowls/lord_vessels_bowl_2.obj similarity index 100% rename from mods/lord/Tools/lord_vessels/models/bowls/lord_vessels_bowl_2.obj rename to mods/lord/Items/lord_vessels/models/bowls/lord_vessels_bowl_2.obj diff --git a/mods/lord/Tools/lord_vessels/models/bowls/lord_vessels_bowl_3.blend b/mods/lord/Items/lord_vessels/models/bowls/lord_vessels_bowl_3.blend similarity index 100% rename from mods/lord/Tools/lord_vessels/models/bowls/lord_vessels_bowl_3.blend rename to mods/lord/Items/lord_vessels/models/bowls/lord_vessels_bowl_3.blend diff --git a/mods/lord/Tools/lord_vessels/models/bowls/lord_vessels_bowl_3.obj b/mods/lord/Items/lord_vessels/models/bowls/lord_vessels_bowl_3.obj similarity index 100% rename from mods/lord/Tools/lord_vessels/models/bowls/lord_vessels_bowl_3.obj rename to mods/lord/Items/lord_vessels/models/bowls/lord_vessels_bowl_3.obj diff --git a/mods/lord/Tools/lord_vessels/models/bowls/lord_vessels_bowl_4.blend b/mods/lord/Items/lord_vessels/models/bowls/lord_vessels_bowl_4.blend similarity index 100% rename from mods/lord/Tools/lord_vessels/models/bowls/lord_vessels_bowl_4.blend rename to mods/lord/Items/lord_vessels/models/bowls/lord_vessels_bowl_4.blend diff --git a/mods/lord/Tools/lord_vessels/models/bowls/lord_vessels_bowl_4.obj b/mods/lord/Items/lord_vessels/models/bowls/lord_vessels_bowl_4.obj similarity index 100% rename from mods/lord/Tools/lord_vessels/models/bowls/lord_vessels_bowl_4.obj rename to mods/lord/Items/lord_vessels/models/bowls/lord_vessels_bowl_4.obj diff --git a/mods/lord/Tools/lord_vessels/models/bowls/lord_vessels_bowl_5.blend b/mods/lord/Items/lord_vessels/models/bowls/lord_vessels_bowl_5.blend similarity index 100% rename from mods/lord/Tools/lord_vessels/models/bowls/lord_vessels_bowl_5.blend rename to mods/lord/Items/lord_vessels/models/bowls/lord_vessels_bowl_5.blend diff --git a/mods/lord/Tools/lord_vessels/models/bowls/lord_vessels_bowl_5.obj b/mods/lord/Items/lord_vessels/models/bowls/lord_vessels_bowl_5.obj similarity index 100% rename from mods/lord/Tools/lord_vessels/models/bowls/lord_vessels_bowl_5.obj rename to mods/lord/Items/lord_vessels/models/bowls/lord_vessels_bowl_5.obj diff --git a/mods/lord/Tools/lord_vessels/models/bowls/lord_vessels_bowl_6.blend b/mods/lord/Items/lord_vessels/models/bowls/lord_vessels_bowl_6.blend similarity index 100% rename from mods/lord/Tools/lord_vessels/models/bowls/lord_vessels_bowl_6.blend rename to mods/lord/Items/lord_vessels/models/bowls/lord_vessels_bowl_6.blend diff --git a/mods/lord/Tools/lord_vessels/models/bowls/lord_vessels_bowl_6.obj b/mods/lord/Items/lord_vessels/models/bowls/lord_vessels_bowl_6.obj similarity index 100% rename from mods/lord/Tools/lord_vessels/models/bowls/lord_vessels_bowl_6.obj rename to mods/lord/Items/lord_vessels/models/bowls/lord_vessels_bowl_6.obj diff --git a/mods/lord/Tools/lord_vessels/models/lord_vessels_pint.blend b/mods/lord/Items/lord_vessels/models/lord_vessels_pint.blend similarity index 100% rename from mods/lord/Tools/lord_vessels/models/lord_vessels_pint.blend rename to mods/lord/Items/lord_vessels/models/lord_vessels_pint.blend diff --git a/mods/lord/Tools/lord_vessels/models/lord_vessels_pint.obj b/mods/lord/Items/lord_vessels/models/lord_vessels_pint.obj similarity index 100% rename from mods/lord/Tools/lord_vessels/models/lord_vessels_pint.obj rename to mods/lord/Items/lord_vessels/models/lord_vessels_pint.obj diff --git a/mods/lord/Tools/lord_vessels/models/lord_vessels_steel_can.blend b/mods/lord/Items/lord_vessels/models/lord_vessels_steel_can.blend similarity index 100% rename from mods/lord/Tools/lord_vessels/models/lord_vessels_steel_can.blend rename to mods/lord/Items/lord_vessels/models/lord_vessels_steel_can.blend diff --git a/mods/lord/Tools/lord_vessels/models/lord_vessels_steel_can.obj b/mods/lord/Items/lord_vessels/models/lord_vessels_steel_can.obj similarity index 100% rename from mods/lord/Tools/lord_vessels/models/lord_vessels_steel_can.obj rename to mods/lord/Items/lord_vessels/models/lord_vessels_steel_can.obj diff --git a/mods/lord/Tools/lord_vessels/models/lord_vessels_vase_1.blend b/mods/lord/Items/lord_vessels/models/lord_vessels_vase_1.blend similarity index 100% rename from mods/lord/Tools/lord_vessels/models/lord_vessels_vase_1.blend rename to mods/lord/Items/lord_vessels/models/lord_vessels_vase_1.blend diff --git a/mods/lord/Tools/lord_vessels/models/lord_vessels_vase_1.obj b/mods/lord/Items/lord_vessels/models/lord_vessels_vase_1.obj similarity index 100% rename from mods/lord/Tools/lord_vessels/models/lord_vessels_vase_1.obj rename to mods/lord/Items/lord_vessels/models/lord_vessels_vase_1.obj diff --git a/mods/lord/Tools/lord_vessels/models/lord_vessels_vase_2.blend b/mods/lord/Items/lord_vessels/models/lord_vessels_vase_2.blend similarity index 100% rename from mods/lord/Tools/lord_vessels/models/lord_vessels_vase_2.blend rename to mods/lord/Items/lord_vessels/models/lord_vessels_vase_2.blend diff --git a/mods/lord/Tools/lord_vessels/models/lord_vessels_vase_2.obj b/mods/lord/Items/lord_vessels/models/lord_vessels_vase_2.obj similarity index 100% rename from mods/lord/Tools/lord_vessels/models/lord_vessels_vase_2.obj rename to mods/lord/Items/lord_vessels/models/lord_vessels_vase_2.obj diff --git a/mods/lord/Tools/lord_vessels/src/bottles.lua b/mods/lord/Items/lord_vessels/src/bottles.lua similarity index 100% rename from mods/lord/Tools/lord_vessels/src/bottles.lua rename to mods/lord/Items/lord_vessels/src/bottles.lua diff --git a/mods/lord/Tools/lord_vessels/src/can.lua b/mods/lord/Items/lord_vessels/src/can.lua similarity index 100% rename from mods/lord/Tools/lord_vessels/src/can.lua rename to mods/lord/Items/lord_vessels/src/can.lua diff --git a/mods/lord/Tools/lord_vessels/src/cauldron/usage.lua b/mods/lord/Items/lord_vessels/src/cauldron/usage.lua similarity index 100% rename from mods/lord/Tools/lord_vessels/src/cauldron/usage.lua rename to mods/lord/Items/lord_vessels/src/cauldron/usage.lua diff --git a/mods/lord/Tools/lord_vessels/src/glasses.lua b/mods/lord/Items/lord_vessels/src/glasses.lua similarity index 100% rename from mods/lord/Tools/lord_vessels/src/glasses.lua rename to mods/lord/Items/lord_vessels/src/glasses.lua diff --git a/mods/lord/Tools/lord_vessels/src/pints.lua b/mods/lord/Items/lord_vessels/src/pints.lua similarity index 100% rename from mods/lord/Tools/lord_vessels/src/pints.lua rename to mods/lord/Items/lord_vessels/src/pints.lua diff --git a/mods/lord/Tools/lord_vessels/src/plates.lua b/mods/lord/Items/lord_vessels/src/plates.lua similarity index 100% rename from mods/lord/Tools/lord_vessels/src/plates.lua rename to mods/lord/Items/lord_vessels/src/plates.lua diff --git a/mods/lord/Tools/lord_vessels/src/vases.lua b/mods/lord/Items/lord_vessels/src/vases.lua similarity index 100% rename from mods/lord/Tools/lord_vessels/src/vases.lua rename to mods/lord/Items/lord_vessels/src/vases.lua diff --git a/mods/lord/Tools/lord_vessels/textures/lord_vessels_bottle_closed.png b/mods/lord/Items/lord_vessels/textures/lord_vessels_bottle_closed.png similarity index 100% rename from mods/lord/Tools/lord_vessels/textures/lord_vessels_bottle_closed.png rename to mods/lord/Items/lord_vessels/textures/lord_vessels_bottle_closed.png diff --git a/mods/lord/Tools/lord_vessels/textures/lord_vessels_bowl_inv.png b/mods/lord/Items/lord_vessels/textures/lord_vessels_bowl_inv.png similarity index 100% rename from mods/lord/Tools/lord_vessels/textures/lord_vessels_bowl_inv.png rename to mods/lord/Items/lord_vessels/textures/lord_vessels_bowl_inv.png diff --git a/mods/lord/Tools/lord_vessels/textures/lord_vessels_bowl_wood_1.png b/mods/lord/Items/lord_vessels/textures/lord_vessels_bowl_wood_1.png similarity index 100% rename from mods/lord/Tools/lord_vessels/textures/lord_vessels_bowl_wood_1.png rename to mods/lord/Items/lord_vessels/textures/lord_vessels_bowl_wood_1.png diff --git a/mods/lord/Tools/lord_vessels/textures/lord_vessels_bowl_wood_2.png b/mods/lord/Items/lord_vessels/textures/lord_vessels_bowl_wood_2.png similarity index 100% rename from mods/lord/Tools/lord_vessels/textures/lord_vessels_bowl_wood_2.png rename to mods/lord/Items/lord_vessels/textures/lord_vessels_bowl_wood_2.png diff --git a/mods/lord/Tools/lord_vessels/textures/lord_vessels_bowl_wood_3.png b/mods/lord/Items/lord_vessels/textures/lord_vessels_bowl_wood_3.png similarity index 100% rename from mods/lord/Tools/lord_vessels/textures/lord_vessels_bowl_wood_3.png rename to mods/lord/Items/lord_vessels/textures/lord_vessels_bowl_wood_3.png diff --git a/mods/lord/Tools/lord_vessels/textures/lord_vessels_glass_water.png b/mods/lord/Items/lord_vessels/textures/lord_vessels_glass_water.png similarity index 100% rename from mods/lord/Tools/lord_vessels/textures/lord_vessels_glass_water.png rename to mods/lord/Items/lord_vessels/textures/lord_vessels_glass_water.png diff --git a/mods/lord/Tools/lord_vessels/textures/lord_vessels_pint_wood.png b/mods/lord/Items/lord_vessels/textures/lord_vessels_pint_wood.png similarity index 100% rename from mods/lord/Tools/lord_vessels/textures/lord_vessels_pint_wood.png rename to mods/lord/Items/lord_vessels/textures/lord_vessels_pint_wood.png diff --git a/mods/lord/Tools/lord_vessels/textures/lord_vessels_salt_bottle.png b/mods/lord/Items/lord_vessels/textures/lord_vessels_salt_bottle.png similarity index 100% rename from mods/lord/Tools/lord_vessels/textures/lord_vessels_salt_bottle.png rename to mods/lord/Items/lord_vessels/textures/lord_vessels_salt_bottle.png diff --git a/mods/lord/Tools/lord_vessels/textures/lord_vessels_steel_can.png b/mods/lord/Items/lord_vessels/textures/lord_vessels_steel_can.png similarity index 100% rename from mods/lord/Tools/lord_vessels/textures/lord_vessels_steel_can.png rename to mods/lord/Items/lord_vessels/textures/lord_vessels_steel_can.png diff --git a/mods/lord/Tools/lord_vessels/textures/lord_vessels_steel_can_wield.png b/mods/lord/Items/lord_vessels/textures/lord_vessels_steel_can_wield.png similarity index 100% rename from mods/lord/Tools/lord_vessels/textures/lord_vessels_steel_can_wield.png rename to mods/lord/Items/lord_vessels/textures/lord_vessels_steel_can_wield.png diff --git a/mods/lord/Tools/lord_vessels/textures/lord_vessels_vase_1.png b/mods/lord/Items/lord_vessels/textures/lord_vessels_vase_1.png similarity index 100% rename from mods/lord/Tools/lord_vessels/textures/lord_vessels_vase_1.png rename to mods/lord/Items/lord_vessels/textures/lord_vessels_vase_1.png diff --git a/mods/lord/Tools/lord_vessels/textures/lord_vessels_vase_1_inv.png b/mods/lord/Items/lord_vessels/textures/lord_vessels_vase_1_inv.png similarity index 100% rename from mods/lord/Tools/lord_vessels/textures/lord_vessels_vase_1_inv.png rename to mods/lord/Items/lord_vessels/textures/lord_vessels_vase_1_inv.png diff --git a/mods/lord/Tools/lord_vessels/textures/lord_vessels_vase_1_raw_inv.png b/mods/lord/Items/lord_vessels/textures/lord_vessels_vase_1_raw_inv.png similarity index 100% rename from mods/lord/Tools/lord_vessels/textures/lord_vessels_vase_1_raw_inv.png rename to mods/lord/Items/lord_vessels/textures/lord_vessels_vase_1_raw_inv.png diff --git a/mods/lord/Tools/lord_vessels/textures/lord_vessels_vase_2.png b/mods/lord/Items/lord_vessels/textures/lord_vessels_vase_2.png similarity index 100% rename from mods/lord/Tools/lord_vessels/textures/lord_vessels_vase_2.png rename to mods/lord/Items/lord_vessels/textures/lord_vessels_vase_2.png diff --git a/mods/lord/Tools/lord_vessels/textures/lord_vessels_vase_2_inv.png b/mods/lord/Items/lord_vessels/textures/lord_vessels_vase_2_inv.png similarity index 100% rename from mods/lord/Tools/lord_vessels/textures/lord_vessels_vase_2_inv.png rename to mods/lord/Items/lord_vessels/textures/lord_vessels_vase_2_inv.png diff --git a/mods/lord/Tools/lord_vessels/textures/lord_vessels_vase_2_raw_inv.png b/mods/lord/Items/lord_vessels/textures/lord_vessels_vase_2_raw_inv.png similarity index 100% rename from mods/lord/Tools/lord_vessels/textures/lord_vessels_vase_2_raw_inv.png rename to mods/lord/Items/lord_vessels/textures/lord_vessels_vase_2_raw_inv.png diff --git a/mods/lord/Tools/lord_vessels/textures/lord_vessels_water.png b/mods/lord/Items/lord_vessels/textures/lord_vessels_water.png similarity index 100% rename from mods/lord/Tools/lord_vessels/textures/lord_vessels_water.png rename to mods/lord/Items/lord_vessels/textures/lord_vessels_water.png diff --git a/mods/lord/Tools/lord_vessels/textures/vessels_drinking_glass.png b/mods/lord/Items/lord_vessels/textures/vessels_drinking_glass.png similarity index 100% rename from mods/lord/Tools/lord_vessels/textures/vessels_drinking_glass.png rename to mods/lord/Items/lord_vessels/textures/vessels_drinking_glass.png diff --git a/mods/lord/Tools/lord_vessels/textures/vessels_drinking_glass_inv.png b/mods/lord/Items/lord_vessels/textures/vessels_drinking_glass_inv.png similarity index 100% rename from mods/lord/Tools/lord_vessels/textures/vessels_drinking_glass_inv.png rename to mods/lord/Items/lord_vessels/textures/vessels_drinking_glass_inv.png diff --git a/mods/lord/Tools/lord_vessels/textures/vessels_glass_bottle.png b/mods/lord/Items/lord_vessels/textures/vessels_glass_bottle.png similarity index 100% rename from mods/lord/Tools/lord_vessels/textures/vessels_glass_bottle.png rename to mods/lord/Items/lord_vessels/textures/vessels_glass_bottle.png diff --git a/mods/lord/Tools/lottclothes/brandybuck.lua b/mods/lord/Items/lottclothes/brandybuck.lua similarity index 100% rename from mods/lord/Tools/lottclothes/brandybuck.lua rename to mods/lord/Items/lottclothes/brandybuck.lua diff --git a/mods/lord/Tools/lottclothes/chetwood.lua b/mods/lord/Items/lottclothes/chetwood.lua similarity index 100% rename from mods/lord/Tools/lottclothes/chetwood.lua rename to mods/lord/Items/lottclothes/chetwood.lua diff --git a/mods/lord/Tools/lottclothes/cloaks.lua b/mods/lord/Items/lottclothes/cloaks.lua similarity index 100% rename from mods/lord/Tools/lottclothes/cloaks.lua rename to mods/lord/Items/lottclothes/cloaks.lua diff --git a/mods/lord/Tools/lottclothes/elven.lua b/mods/lord/Items/lottclothes/elven.lua similarity index 100% rename from mods/lord/Tools/lottclothes/elven.lua rename to mods/lord/Items/lottclothes/elven.lua diff --git a/mods/lord/Tools/lottclothes/ettenmoor.lua b/mods/lord/Items/lottclothes/ettenmoor.lua similarity index 100% rename from mods/lord/Tools/lottclothes/ettenmoor.lua rename to mods/lord/Items/lottclothes/ettenmoor.lua diff --git a/mods/lord/Tools/lottclothes/fabrics.lua b/mods/lord/Items/lottclothes/fabrics.lua similarity index 100% rename from mods/lord/Tools/lottclothes/fabrics.lua rename to mods/lord/Items/lottclothes/fabrics.lua diff --git a/mods/lord/Tools/lottclothes/hobbit.lua b/mods/lord/Items/lottclothes/hobbit.lua similarity index 100% rename from mods/lord/Tools/lottclothes/hobbit.lua rename to mods/lord/Items/lottclothes/hobbit.lua diff --git a/mods/lord/Tools/lottclothes/init.lua b/mods/lord/Items/lottclothes/init.lua similarity index 100% rename from mods/lord/Tools/lottclothes/init.lua rename to mods/lord/Items/lottclothes/init.lua diff --git a/mods/lord/Tools/lottclothes/license.txt b/mods/lord/Items/lottclothes/license.txt similarity index 100% rename from mods/lord/Tools/lottclothes/license.txt rename to mods/lord/Items/lottclothes/license.txt diff --git a/mods/lord/Tools/lottclothes/locale/lottclothes.en.tr b/mods/lord/Items/lottclothes/locale/lottclothes.en.tr similarity index 100% rename from mods/lord/Tools/lottclothes/locale/lottclothes.en.tr rename to mods/lord/Items/lottclothes/locale/lottclothes.en.tr diff --git a/mods/lord/Tools/lottclothes/locale/lottclothes.ru.tr b/mods/lord/Items/lottclothes/locale/lottclothes.ru.tr similarity index 100% rename from mods/lord/Tools/lottclothes/locale/lottclothes.ru.tr rename to mods/lord/Items/lottclothes/locale/lottclothes.ru.tr diff --git a/mods/lord/Tools/lottclothes/locale/template.txt b/mods/lord/Items/lottclothes/locale/template.txt similarity index 100% rename from mods/lord/Tools/lottclothes/locale/template.txt rename to mods/lord/Items/lottclothes/locale/template.txt diff --git a/mods/lord/Tools/lottclothes/midgewater.lua b/mods/lord/Items/lottclothes/midgewater.lua similarity index 100% rename from mods/lord/Tools/lottclothes/midgewater.lua rename to mods/lord/Items/lottclothes/midgewater.lua diff --git a/mods/lord/Tools/lottclothes/mod.conf b/mods/lord/Items/lottclothes/mod.conf similarity index 100% rename from mods/lord/Tools/lottclothes/mod.conf rename to mods/lord/Items/lottclothes/mod.conf diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_boots_chetwood.png b/mods/lord/Items/lottclothes/textures/lottclothes_boots_chetwood.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_boots_chetwood.png rename to mods/lord/Items/lottclothes/textures/lottclothes_boots_chetwood.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_boots_chetwood_preview.png b/mods/lord/Items/lottclothes/textures/lottclothes_boots_chetwood_preview.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_boots_chetwood_preview.png rename to mods/lord/Items/lottclothes/textures/lottclothes_boots_chetwood_preview.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_boots_dwarf.png b/mods/lord/Items/lottclothes/textures/lottclothes_boots_dwarf.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_boots_dwarf.png rename to mods/lord/Items/lottclothes/textures/lottclothes_boots_dwarf.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_boots_dwarf_preview.png b/mods/lord/Items/lottclothes/textures/lottclothes_boots_dwarf_preview.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_boots_dwarf_preview.png rename to mods/lord/Items/lottclothes/textures/lottclothes_boots_dwarf_preview.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_boots_midgewater.png b/mods/lord/Items/lottclothes/textures/lottclothes_boots_midgewater.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_boots_midgewater.png rename to mods/lord/Items/lottclothes/textures/lottclothes_boots_midgewater.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_boots_midgewater_preview.png b/mods/lord/Items/lottclothes/textures/lottclothes_boots_midgewater_preview.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_boots_midgewater_preview.png rename to mods/lord/Items/lottclothes/textures/lottclothes_boots_midgewater_preview.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_cap_chetwood.png b/mods/lord/Items/lottclothes/textures/lottclothes_cap_chetwood.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_cap_chetwood.png rename to mods/lord/Items/lottclothes/textures/lottclothes_cap_chetwood.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_cap_chetwood_preview.png b/mods/lord/Items/lottclothes/textures/lottclothes_cap_chetwood_preview.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_cap_chetwood_preview.png rename to mods/lord/Items/lottclothes/textures/lottclothes_cap_chetwood_preview.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_cap_midgewater.png b/mods/lord/Items/lottclothes/textures/lottclothes_cap_midgewater.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_cap_midgewater.png rename to mods/lord/Items/lottclothes/textures/lottclothes_cap_midgewater.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_cap_midgewater_preview.png b/mods/lord/Items/lottclothes/textures/lottclothes_cap_midgewater_preview.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_cap_midgewater_preview.png rename to mods/lord/Items/lottclothes/textures/lottclothes_cap_midgewater_preview.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_cloak_elven.png b/mods/lord/Items/lottclothes/textures/lottclothes_cloak_elven.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_cloak_elven.png rename to mods/lord/Items/lottclothes/textures/lottclothes_cloak_elven.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_cloak_hobbit_blue.png b/mods/lord/Items/lottclothes/textures/lottclothes_cloak_hobbit_blue.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_cloak_hobbit_blue.png rename to mods/lord/Items/lottclothes/textures/lottclothes_cloak_hobbit_blue.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_cloak_hobbit_brown.png b/mods/lord/Items/lottclothes/textures/lottclothes_cloak_hobbit_brown.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_cloak_hobbit_brown.png rename to mods/lord/Items/lottclothes/textures/lottclothes_cloak_hobbit_brown.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_cloak_hobbit_green.png b/mods/lord/Items/lottclothes/textures/lottclothes_cloak_hobbit_green.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_cloak_hobbit_green.png rename to mods/lord/Items/lottclothes/textures/lottclothes_cloak_hobbit_green.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_cloak_hobbit_grey.png b/mods/lord/Items/lottclothes/textures/lottclothes_cloak_hobbit_grey.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_cloak_hobbit_grey.png rename to mods/lord/Items/lottclothes/textures/lottclothes_cloak_hobbit_grey.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_cloak_hobbit_pink.png b/mods/lord/Items/lottclothes/textures/lottclothes_cloak_hobbit_pink.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_cloak_hobbit_pink.png rename to mods/lord/Items/lottclothes/textures/lottclothes_cloak_hobbit_pink.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_cloak_hobbit_red.png b/mods/lord/Items/lottclothes/textures/lottclothes_cloak_hobbit_red.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_cloak_hobbit_red.png rename to mods/lord/Items/lottclothes/textures/lottclothes_cloak_hobbit_red.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_cloak_hobbit_white.png b/mods/lord/Items/lottclothes/textures/lottclothes_cloak_hobbit_white.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_cloak_hobbit_white.png rename to mods/lord/Items/lottclothes/textures/lottclothes_cloak_hobbit_white.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_cloak_hobbit_yellow.png b/mods/lord/Items/lottclothes/textures/lottclothes_cloak_hobbit_yellow.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_cloak_hobbit_yellow.png rename to mods/lord/Items/lottclothes/textures/lottclothes_cloak_hobbit_yellow.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_cloak_mordor.png b/mods/lord/Items/lottclothes/textures/lottclothes_cloak_mordor.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_cloak_mordor.png rename to mods/lord/Items/lottclothes/textures/lottclothes_cloak_mordor.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_cloak_ranger.png b/mods/lord/Items/lottclothes/textures/lottclothes_cloak_ranger.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_cloak_ranger.png rename to mods/lord/Items/lottclothes/textures/lottclothes_cloak_ranger.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_cloak_wizard_grey.png b/mods/lord/Items/lottclothes/textures/lottclothes_cloak_wizard_grey.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_cloak_wizard_grey.png rename to mods/lord/Items/lottclothes/textures/lottclothes_cloak_wizard_grey.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_cloak_wizard_white.png b/mods/lord/Items/lottclothes/textures/lottclothes_cloak_wizard_white.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_cloak_wizard_white.png rename to mods/lord/Items/lottclothes/textures/lottclothes_cloak_wizard_white.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_felt_basemodel.xcf b/mods/lord/Items/lottclothes/textures/lottclothes_felt_basemodel.xcf similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_felt_basemodel.xcf rename to mods/lord/Items/lottclothes/textures/lottclothes_felt_basemodel.xcf diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_felt_black.png b/mods/lord/Items/lottclothes/textures/lottclothes_felt_black.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_felt_black.png rename to mods/lord/Items/lottclothes/textures/lottclothes_felt_black.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_felt_blue.png b/mods/lord/Items/lottclothes/textures/lottclothes_felt_blue.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_felt_blue.png rename to mods/lord/Items/lottclothes/textures/lottclothes_felt_blue.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_felt_brown.png b/mods/lord/Items/lottclothes/textures/lottclothes_felt_brown.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_felt_brown.png rename to mods/lord/Items/lottclothes/textures/lottclothes_felt_brown.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_felt_green.png b/mods/lord/Items/lottclothes/textures/lottclothes_felt_green.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_felt_green.png rename to mods/lord/Items/lottclothes/textures/lottclothes_felt_green.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_felt_grey.png b/mods/lord/Items/lottclothes/textures/lottclothes_felt_grey.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_felt_grey.png rename to mods/lord/Items/lottclothes/textures/lottclothes_felt_grey.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_felt_orange.png b/mods/lord/Items/lottclothes/textures/lottclothes_felt_orange.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_felt_orange.png rename to mods/lord/Items/lottclothes/textures/lottclothes_felt_orange.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_felt_pink.png b/mods/lord/Items/lottclothes/textures/lottclothes_felt_pink.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_felt_pink.png rename to mods/lord/Items/lottclothes/textures/lottclothes_felt_pink.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_felt_red.png b/mods/lord/Items/lottclothes/textures/lottclothes_felt_red.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_felt_red.png rename to mods/lord/Items/lottclothes/textures/lottclothes_felt_red.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_felt_white.png b/mods/lord/Items/lottclothes/textures/lottclothes_felt_white.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_felt_white.png rename to mods/lord/Items/lottclothes/textures/lottclothes_felt_white.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_felt_yellow.png b/mods/lord/Items/lottclothes/textures/lottclothes_felt_yellow.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_felt_yellow.png rename to mods/lord/Items/lottclothes/textures/lottclothes_felt_yellow.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_feltthread.png b/mods/lord/Items/lottclothes/textures/lottclothes_feltthread.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_feltthread.png rename to mods/lord/Items/lottclothes/textures/lottclothes_feltthread.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_flax_basemodel.xcf b/mods/lord/Items/lottclothes/textures/lottclothes_flax_basemodel.xcf similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_flax_basemodel.xcf rename to mods/lord/Items/lottclothes/textures/lottclothes_flax_basemodel.xcf diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_flax_black.png b/mods/lord/Items/lottclothes/textures/lottclothes_flax_black.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_flax_black.png rename to mods/lord/Items/lottclothes/textures/lottclothes_flax_black.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_flax_blue.png b/mods/lord/Items/lottclothes/textures/lottclothes_flax_blue.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_flax_blue.png rename to mods/lord/Items/lottclothes/textures/lottclothes_flax_blue.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_flax_brown.png b/mods/lord/Items/lottclothes/textures/lottclothes_flax_brown.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_flax_brown.png rename to mods/lord/Items/lottclothes/textures/lottclothes_flax_brown.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_flax_green.png b/mods/lord/Items/lottclothes/textures/lottclothes_flax_green.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_flax_green.png rename to mods/lord/Items/lottclothes/textures/lottclothes_flax_green.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_flax_grey.png b/mods/lord/Items/lottclothes/textures/lottclothes_flax_grey.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_flax_grey.png rename to mods/lord/Items/lottclothes/textures/lottclothes_flax_grey.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_flax_pink.png b/mods/lord/Items/lottclothes/textures/lottclothes_flax_pink.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_flax_pink.png rename to mods/lord/Items/lottclothes/textures/lottclothes_flax_pink.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_flax_red.png b/mods/lord/Items/lottclothes/textures/lottclothes_flax_red.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_flax_red.png rename to mods/lord/Items/lottclothes/textures/lottclothes_flax_red.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_flax_white.png b/mods/lord/Items/lottclothes/textures/lottclothes_flax_white.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_flax_white.png rename to mods/lord/Items/lottclothes/textures/lottclothes_flax_white.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_flax_yellow.png b/mods/lord/Items/lottclothes/textures/lottclothes_flax_yellow.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_flax_yellow.png rename to mods/lord/Items/lottclothes/textures/lottclothes_flax_yellow.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_flaxthread.png b/mods/lord/Items/lottclothes/textures/lottclothes_flaxthread.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_flaxthread.png rename to mods/lord/Items/lottclothes/textures/lottclothes_flaxthread.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_hood_elven.png b/mods/lord/Items/lottclothes/textures/lottclothes_hood_elven.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_hood_elven.png rename to mods/lord/Items/lottclothes/textures/lottclothes_hood_elven.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_hood_elven_preview.png b/mods/lord/Items/lottclothes/textures/lottclothes_hood_elven_preview.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_hood_elven_preview.png rename to mods/lord/Items/lottclothes/textures/lottclothes_hood_elven_preview.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_hood_ettenmoor.png b/mods/lord/Items/lottclothes/textures/lottclothes_hood_ettenmoor.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_hood_ettenmoor.png rename to mods/lord/Items/lottclothes/textures/lottclothes_hood_ettenmoor.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_hood_ettenmoor_preview.png b/mods/lord/Items/lottclothes/textures/lottclothes_hood_ettenmoor_preview.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_hood_ettenmoor_preview.png rename to mods/lord/Items/lottclothes/textures/lottclothes_hood_ettenmoor_preview.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_hood_wizard_blue.png b/mods/lord/Items/lottclothes/textures/lottclothes_hood_wizard_blue.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_hood_wizard_blue.png rename to mods/lord/Items/lottclothes/textures/lottclothes_hood_wizard_blue.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_hood_wizard_blue_preview.png b/mods/lord/Items/lottclothes/textures/lottclothes_hood_wizard_blue_preview.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_hood_wizard_blue_preview.png rename to mods/lord/Items/lottclothes/textures/lottclothes_hood_wizard_blue_preview.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_hood_wizard_white.png b/mods/lord/Items/lottclothes/textures/lottclothes_hood_wizard_white.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_hood_wizard_white.png rename to mods/lord/Items/lottclothes/textures/lottclothes_hood_wizard_white.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_hood_wizard_white_preivew.png b/mods/lord/Items/lottclothes/textures/lottclothes_hood_wizard_white_preivew.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_hood_wizard_white_preivew.png rename to mods/lord/Items/lottclothes/textures/lottclothes_hood_wizard_white_preivew.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_inv_boots_chetwood.png b/mods/lord/Items/lottclothes/textures/lottclothes_inv_boots_chetwood.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_inv_boots_chetwood.png rename to mods/lord/Items/lottclothes/textures/lottclothes_inv_boots_chetwood.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_inv_boots_dwarf.png b/mods/lord/Items/lottclothes/textures/lottclothes_inv_boots_dwarf.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_inv_boots_dwarf.png rename to mods/lord/Items/lottclothes/textures/lottclothes_inv_boots_dwarf.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_inv_boots_midgewater.png b/mods/lord/Items/lottclothes/textures/lottclothes_inv_boots_midgewater.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_inv_boots_midgewater.png rename to mods/lord/Items/lottclothes/textures/lottclothes_inv_boots_midgewater.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_inv_cap_chetwood.png b/mods/lord/Items/lottclothes/textures/lottclothes_inv_cap_chetwood.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_inv_cap_chetwood.png rename to mods/lord/Items/lottclothes/textures/lottclothes_inv_cap_chetwood.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_inv_cap_midgewater.png b/mods/lord/Items/lottclothes/textures/lottclothes_inv_cap_midgewater.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_inv_cap_midgewater.png rename to mods/lord/Items/lottclothes/textures/lottclothes_inv_cap_midgewater.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_inv_cloak_elven.png b/mods/lord/Items/lottclothes/textures/lottclothes_inv_cloak_elven.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_inv_cloak_elven.png rename to mods/lord/Items/lottclothes/textures/lottclothes_inv_cloak_elven.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_inv_cloak_hobbit_blue.png b/mods/lord/Items/lottclothes/textures/lottclothes_inv_cloak_hobbit_blue.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_inv_cloak_hobbit_blue.png rename to mods/lord/Items/lottclothes/textures/lottclothes_inv_cloak_hobbit_blue.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_inv_cloak_hobbit_brown.png b/mods/lord/Items/lottclothes/textures/lottclothes_inv_cloak_hobbit_brown.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_inv_cloak_hobbit_brown.png rename to mods/lord/Items/lottclothes/textures/lottclothes_inv_cloak_hobbit_brown.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_inv_cloak_hobbit_green.png b/mods/lord/Items/lottclothes/textures/lottclothes_inv_cloak_hobbit_green.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_inv_cloak_hobbit_green.png rename to mods/lord/Items/lottclothes/textures/lottclothes_inv_cloak_hobbit_green.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_inv_cloak_hobbit_grey.png b/mods/lord/Items/lottclothes/textures/lottclothes_inv_cloak_hobbit_grey.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_inv_cloak_hobbit_grey.png rename to mods/lord/Items/lottclothes/textures/lottclothes_inv_cloak_hobbit_grey.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_inv_cloak_hobbit_pink.png b/mods/lord/Items/lottclothes/textures/lottclothes_inv_cloak_hobbit_pink.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_inv_cloak_hobbit_pink.png rename to mods/lord/Items/lottclothes/textures/lottclothes_inv_cloak_hobbit_pink.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_inv_cloak_hobbit_red.png b/mods/lord/Items/lottclothes/textures/lottclothes_inv_cloak_hobbit_red.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_inv_cloak_hobbit_red.png rename to mods/lord/Items/lottclothes/textures/lottclothes_inv_cloak_hobbit_red.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_inv_cloak_hobbit_white.png b/mods/lord/Items/lottclothes/textures/lottclothes_inv_cloak_hobbit_white.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_inv_cloak_hobbit_white.png rename to mods/lord/Items/lottclothes/textures/lottclothes_inv_cloak_hobbit_white.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_inv_cloak_hobbit_yellow.png b/mods/lord/Items/lottclothes/textures/lottclothes_inv_cloak_hobbit_yellow.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_inv_cloak_hobbit_yellow.png rename to mods/lord/Items/lottclothes/textures/lottclothes_inv_cloak_hobbit_yellow.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_inv_cloak_mordor.png b/mods/lord/Items/lottclothes/textures/lottclothes_inv_cloak_mordor.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_inv_cloak_mordor.png rename to mods/lord/Items/lottclothes/textures/lottclothes_inv_cloak_mordor.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_inv_cloak_ranger.png b/mods/lord/Items/lottclothes/textures/lottclothes_inv_cloak_ranger.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_inv_cloak_ranger.png rename to mods/lord/Items/lottclothes/textures/lottclothes_inv_cloak_ranger.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_inv_cloak_wizard_grey.png b/mods/lord/Items/lottclothes/textures/lottclothes_inv_cloak_wizard_grey.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_inv_cloak_wizard_grey.png rename to mods/lord/Items/lottclothes/textures/lottclothes_inv_cloak_wizard_grey.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_inv_cloak_wizard_white.png b/mods/lord/Items/lottclothes/textures/lottclothes_inv_cloak_wizard_white.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_inv_cloak_wizard_white.png rename to mods/lord/Items/lottclothes/textures/lottclothes_inv_cloak_wizard_white.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_inv_hood_elven.png b/mods/lord/Items/lottclothes/textures/lottclothes_inv_hood_elven.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_inv_hood_elven.png rename to mods/lord/Items/lottclothes/textures/lottclothes_inv_hood_elven.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_inv_hood_ettenmoor.png b/mods/lord/Items/lottclothes/textures/lottclothes_inv_hood_ettenmoor.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_inv_hood_ettenmoor.png rename to mods/lord/Items/lottclothes/textures/lottclothes_inv_hood_ettenmoor.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_inv_hood_wizard_blue.png b/mods/lord/Items/lottclothes/textures/lottclothes_inv_hood_wizard_blue.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_inv_hood_wizard_blue.png rename to mods/lord/Items/lottclothes/textures/lottclothes_inv_hood_wizard_blue.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_inv_hood_wizard_white.png b/mods/lord/Items/lottclothes/textures/lottclothes_inv_hood_wizard_white.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_inv_hood_wizard_white.png rename to mods/lord/Items/lottclothes/textures/lottclothes_inv_hood_wizard_white.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_inv_jacket_chetwood.png b/mods/lord/Items/lottclothes/textures/lottclothes_inv_jacket_chetwood.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_inv_jacket_chetwood.png rename to mods/lord/Items/lottclothes/textures/lottclothes_inv_jacket_chetwood.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_inv_jacket_midgewater.png b/mods/lord/Items/lottclothes/textures/lottclothes_inv_jacket_midgewater.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_inv_jacket_midgewater.png rename to mods/lord/Items/lottclothes/textures/lottclothes_inv_jacket_midgewater.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_inv_pants_chetwood.png b/mods/lord/Items/lottclothes/textures/lottclothes_inv_pants_chetwood.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_inv_pants_chetwood.png rename to mods/lord/Items/lottclothes/textures/lottclothes_inv_pants_chetwood.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_inv_pants_midgewater.png b/mods/lord/Items/lottclothes/textures/lottclothes_inv_pants_midgewater.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_inv_pants_midgewater.png rename to mods/lord/Items/lottclothes/textures/lottclothes_inv_pants_midgewater.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_inv_robe_ettenmoor.png b/mods/lord/Items/lottclothes/textures/lottclothes_inv_robe_ettenmoor.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_inv_robe_ettenmoor.png rename to mods/lord/Items/lottclothes/textures/lottclothes_inv_robe_ettenmoor.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_inv_robe_wizard_grey.png b/mods/lord/Items/lottclothes/textures/lottclothes_inv_robe_wizard_grey.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_inv_robe_wizard_grey.png rename to mods/lord/Items/lottclothes/textures/lottclothes_inv_robe_wizard_grey.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_inv_robe_wizard_white.png b/mods/lord/Items/lottclothes/textures/lottclothes_inv_robe_wizard_white.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_inv_robe_wizard_white.png rename to mods/lord/Items/lottclothes/textures/lottclothes_inv_robe_wizard_white.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_inv_shirt_brandybuck.png b/mods/lord/Items/lottclothes/textures/lottclothes_inv_shirt_brandybuck.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_inv_shirt_brandybuck.png rename to mods/lord/Items/lottclothes/textures/lottclothes_inv_shirt_brandybuck.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_inv_shirt_elven.png b/mods/lord/Items/lottclothes/textures/lottclothes_inv_shirt_elven.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_inv_shirt_elven.png rename to mods/lord/Items/lottclothes/textures/lottclothes_inv_shirt_elven.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_inv_shirt_hobbit_blue.png b/mods/lord/Items/lottclothes/textures/lottclothes_inv_shirt_hobbit_blue.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_inv_shirt_hobbit_blue.png rename to mods/lord/Items/lottclothes/textures/lottclothes_inv_shirt_hobbit_blue.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_inv_shirt_hobbit_brown.png b/mods/lord/Items/lottclothes/textures/lottclothes_inv_shirt_hobbit_brown.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_inv_shirt_hobbit_brown.png rename to mods/lord/Items/lottclothes/textures/lottclothes_inv_shirt_hobbit_brown.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_inv_shirt_hobbit_green.png b/mods/lord/Items/lottclothes/textures/lottclothes_inv_shirt_hobbit_green.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_inv_shirt_hobbit_green.png rename to mods/lord/Items/lottclothes/textures/lottclothes_inv_shirt_hobbit_green.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_inv_shirt_hobbit_grey.png b/mods/lord/Items/lottclothes/textures/lottclothes_inv_shirt_hobbit_grey.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_inv_shirt_hobbit_grey.png rename to mods/lord/Items/lottclothes/textures/lottclothes_inv_shirt_hobbit_grey.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_inv_shirt_hobbit_pink.png b/mods/lord/Items/lottclothes/textures/lottclothes_inv_shirt_hobbit_pink.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_inv_shirt_hobbit_pink.png rename to mods/lord/Items/lottclothes/textures/lottclothes_inv_shirt_hobbit_pink.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_inv_shirt_hobbit_red.png b/mods/lord/Items/lottclothes/textures/lottclothes_inv_shirt_hobbit_red.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_inv_shirt_hobbit_red.png rename to mods/lord/Items/lottclothes/textures/lottclothes_inv_shirt_hobbit_red.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_inv_shirt_hobbit_white.png b/mods/lord/Items/lottclothes/textures/lottclothes_inv_shirt_hobbit_white.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_inv_shirt_hobbit_white.png rename to mods/lord/Items/lottclothes/textures/lottclothes_inv_shirt_hobbit_white.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_inv_shirt_hobbit_yellow.png b/mods/lord/Items/lottclothes/textures/lottclothes_inv_shirt_hobbit_yellow.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_inv_shirt_hobbit_yellow.png rename to mods/lord/Items/lottclothes/textures/lottclothes_inv_shirt_hobbit_yellow.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_inv_shoes.xcf b/mods/lord/Items/lottclothes/textures/lottclothes_inv_shoes.xcf similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_inv_shoes.xcf rename to mods/lord/Items/lottclothes/textures/lottclothes_inv_shoes.xcf diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_inv_shoes_brandybuck.png b/mods/lord/Items/lottclothes/textures/lottclothes_inv_shoes_brandybuck.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_inv_shoes_brandybuck.png rename to mods/lord/Items/lottclothes/textures/lottclothes_inv_shoes_brandybuck.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_inv_shoes_elven.png b/mods/lord/Items/lottclothes/textures/lottclothes_inv_shoes_elven.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_inv_shoes_elven.png rename to mods/lord/Items/lottclothes/textures/lottclothes_inv_shoes_elven.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_inv_shoes_hobbit_blue.png b/mods/lord/Items/lottclothes/textures/lottclothes_inv_shoes_hobbit_blue.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_inv_shoes_hobbit_blue.png rename to mods/lord/Items/lottclothes/textures/lottclothes_inv_shoes_hobbit_blue.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_inv_shoes_hobbit_brown.png b/mods/lord/Items/lottclothes/textures/lottclothes_inv_shoes_hobbit_brown.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_inv_shoes_hobbit_brown.png rename to mods/lord/Items/lottclothes/textures/lottclothes_inv_shoes_hobbit_brown.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_inv_shoes_hobbit_green.png b/mods/lord/Items/lottclothes/textures/lottclothes_inv_shoes_hobbit_green.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_inv_shoes_hobbit_green.png rename to mods/lord/Items/lottclothes/textures/lottclothes_inv_shoes_hobbit_green.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_inv_shoes_hobbit_grey.png b/mods/lord/Items/lottclothes/textures/lottclothes_inv_shoes_hobbit_grey.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_inv_shoes_hobbit_grey.png rename to mods/lord/Items/lottclothes/textures/lottclothes_inv_shoes_hobbit_grey.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_inv_shoes_hobbit_pink.png b/mods/lord/Items/lottclothes/textures/lottclothes_inv_shoes_hobbit_pink.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_inv_shoes_hobbit_pink.png rename to mods/lord/Items/lottclothes/textures/lottclothes_inv_shoes_hobbit_pink.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_inv_shoes_hobbit_red.png b/mods/lord/Items/lottclothes/textures/lottclothes_inv_shoes_hobbit_red.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_inv_shoes_hobbit_red.png rename to mods/lord/Items/lottclothes/textures/lottclothes_inv_shoes_hobbit_red.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_inv_shoes_hobbit_white.png b/mods/lord/Items/lottclothes/textures/lottclothes_inv_shoes_hobbit_white.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_inv_shoes_hobbit_white.png rename to mods/lord/Items/lottclothes/textures/lottclothes_inv_shoes_hobbit_white.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_inv_shoes_hobbit_yellow.png b/mods/lord/Items/lottclothes/textures/lottclothes_inv_shoes_hobbit_yellow.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_inv_shoes_hobbit_yellow.png rename to mods/lord/Items/lottclothes/textures/lottclothes_inv_shoes_hobbit_yellow.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_inv_shorts_hobbit_blue.png b/mods/lord/Items/lottclothes/textures/lottclothes_inv_shorts_hobbit_blue.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_inv_shorts_hobbit_blue.png rename to mods/lord/Items/lottclothes/textures/lottclothes_inv_shorts_hobbit_blue.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_inv_shorts_hobbit_brown.png b/mods/lord/Items/lottclothes/textures/lottclothes_inv_shorts_hobbit_brown.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_inv_shorts_hobbit_brown.png rename to mods/lord/Items/lottclothes/textures/lottclothes_inv_shorts_hobbit_brown.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_inv_shorts_hobbit_green.png b/mods/lord/Items/lottclothes/textures/lottclothes_inv_shorts_hobbit_green.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_inv_shorts_hobbit_green.png rename to mods/lord/Items/lottclothes/textures/lottclothes_inv_shorts_hobbit_green.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_inv_shorts_hobbit_grey.png b/mods/lord/Items/lottclothes/textures/lottclothes_inv_shorts_hobbit_grey.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_inv_shorts_hobbit_grey.png rename to mods/lord/Items/lottclothes/textures/lottclothes_inv_shorts_hobbit_grey.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_inv_shorts_hobbit_pink.png b/mods/lord/Items/lottclothes/textures/lottclothes_inv_shorts_hobbit_pink.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_inv_shorts_hobbit_pink.png rename to mods/lord/Items/lottclothes/textures/lottclothes_inv_shorts_hobbit_pink.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_inv_shorts_hobbit_red.png b/mods/lord/Items/lottclothes/textures/lottclothes_inv_shorts_hobbit_red.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_inv_shorts_hobbit_red.png rename to mods/lord/Items/lottclothes/textures/lottclothes_inv_shorts_hobbit_red.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_inv_shorts_hobbit_white.png b/mods/lord/Items/lottclothes/textures/lottclothes_inv_shorts_hobbit_white.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_inv_shorts_hobbit_white.png rename to mods/lord/Items/lottclothes/textures/lottclothes_inv_shorts_hobbit_white.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_inv_shorts_hobbit_yellow.png b/mods/lord/Items/lottclothes/textures/lottclothes_inv_shorts_hobbit_yellow.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_inv_shorts_hobbit_yellow.png rename to mods/lord/Items/lottclothes/textures/lottclothes_inv_shorts_hobbit_yellow.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_inv_trousers_brandybuck.png b/mods/lord/Items/lottclothes/textures/lottclothes_inv_trousers_brandybuck.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_inv_trousers_brandybuck.png rename to mods/lord/Items/lottclothes/textures/lottclothes_inv_trousers_brandybuck.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_inv_trousers_elven.png b/mods/lord/Items/lottclothes/textures/lottclothes_inv_trousers_elven.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_inv_trousers_elven.png rename to mods/lord/Items/lottclothes/textures/lottclothes_inv_trousers_elven.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_inv_trousers_ettenmoor.png b/mods/lord/Items/lottclothes/textures/lottclothes_inv_trousers_ettenmoor.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_inv_trousers_ettenmoor.png rename to mods/lord/Items/lottclothes/textures/lottclothes_inv_trousers_ettenmoor.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_inv_trousers_wizard_white.png b/mods/lord/Items/lottclothes/textures/lottclothes_inv_trousers_wizard_white.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_inv_trousers_wizard_white.png rename to mods/lord/Items/lottclothes/textures/lottclothes_inv_trousers_wizard_white.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_jacket_chetwood.png b/mods/lord/Items/lottclothes/textures/lottclothes_jacket_chetwood.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_jacket_chetwood.png rename to mods/lord/Items/lottclothes/textures/lottclothes_jacket_chetwood.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_jacket_chetwood_preview.png b/mods/lord/Items/lottclothes/textures/lottclothes_jacket_chetwood_preview.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_jacket_chetwood_preview.png rename to mods/lord/Items/lottclothes/textures/lottclothes_jacket_chetwood_preview.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_jacket_midgewater.png b/mods/lord/Items/lottclothes/textures/lottclothes_jacket_midgewater.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_jacket_midgewater.png rename to mods/lord/Items/lottclothes/textures/lottclothes_jacket_midgewater.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_jacket_midgewater_preview.png b/mods/lord/Items/lottclothes/textures/lottclothes_jacket_midgewater_preview.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_jacket_midgewater_preview.png rename to mods/lord/Items/lottclothes/textures/lottclothes_jacket_midgewater_preview.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_pants_chetwood.png b/mods/lord/Items/lottclothes/textures/lottclothes_pants_chetwood.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_pants_chetwood.png rename to mods/lord/Items/lottclothes/textures/lottclothes_pants_chetwood.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_pants_chetwood_preview.png b/mods/lord/Items/lottclothes/textures/lottclothes_pants_chetwood_preview.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_pants_chetwood_preview.png rename to mods/lord/Items/lottclothes/textures/lottclothes_pants_chetwood_preview.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_pants_midgewater.png b/mods/lord/Items/lottclothes/textures/lottclothes_pants_midgewater.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_pants_midgewater.png rename to mods/lord/Items/lottclothes/textures/lottclothes_pants_midgewater.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_pants_midgewater_preview.png b/mods/lord/Items/lottclothes/textures/lottclothes_pants_midgewater_preview.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_pants_midgewater_preview.png rename to mods/lord/Items/lottclothes/textures/lottclothes_pants_midgewater_preview.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_robe_ettenmoor.png b/mods/lord/Items/lottclothes/textures/lottclothes_robe_ettenmoor.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_robe_ettenmoor.png rename to mods/lord/Items/lottclothes/textures/lottclothes_robe_ettenmoor.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_robe_ettenmoor_preview.png b/mods/lord/Items/lottclothes/textures/lottclothes_robe_ettenmoor_preview.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_robe_ettenmoor_preview.png rename to mods/lord/Items/lottclothes/textures/lottclothes_robe_ettenmoor_preview.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_robe_wizard_grey.png b/mods/lord/Items/lottclothes/textures/lottclothes_robe_wizard_grey.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_robe_wizard_grey.png rename to mods/lord/Items/lottclothes/textures/lottclothes_robe_wizard_grey.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_robe_wizard_grey_preview.png b/mods/lord/Items/lottclothes/textures/lottclothes_robe_wizard_grey_preview.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_robe_wizard_grey_preview.png rename to mods/lord/Items/lottclothes/textures/lottclothes_robe_wizard_grey_preview.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_robe_wizard_white.png b/mods/lord/Items/lottclothes/textures/lottclothes_robe_wizard_white.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_robe_wizard_white.png rename to mods/lord/Items/lottclothes/textures/lottclothes_robe_wizard_white.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_robe_wizard_white_preview.png b/mods/lord/Items/lottclothes/textures/lottclothes_robe_wizard_white_preview.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_robe_wizard_white_preview.png rename to mods/lord/Items/lottclothes/textures/lottclothes_robe_wizard_white_preview.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_shirt_brandybuck.png b/mods/lord/Items/lottclothes/textures/lottclothes_shirt_brandybuck.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_shirt_brandybuck.png rename to mods/lord/Items/lottclothes/textures/lottclothes_shirt_brandybuck.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_shirt_brandybuck_preview.png b/mods/lord/Items/lottclothes/textures/lottclothes_shirt_brandybuck_preview.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_shirt_brandybuck_preview.png rename to mods/lord/Items/lottclothes/textures/lottclothes_shirt_brandybuck_preview.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_shirt_elven.png b/mods/lord/Items/lottclothes/textures/lottclothes_shirt_elven.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_shirt_elven.png rename to mods/lord/Items/lottclothes/textures/lottclothes_shirt_elven.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_shirt_elven_preview.png b/mods/lord/Items/lottclothes/textures/lottclothes_shirt_elven_preview.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_shirt_elven_preview.png rename to mods/lord/Items/lottclothes/textures/lottclothes_shirt_elven_preview.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_shirt_hobbit_base.xcf b/mods/lord/Items/lottclothes/textures/lottclothes_shirt_hobbit_base.xcf similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_shirt_hobbit_base.xcf rename to mods/lord/Items/lottclothes/textures/lottclothes_shirt_hobbit_base.xcf diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_shirt_hobbit_base_preview.xcf b/mods/lord/Items/lottclothes/textures/lottclothes_shirt_hobbit_base_preview.xcf similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_shirt_hobbit_base_preview.xcf rename to mods/lord/Items/lottclothes/textures/lottclothes_shirt_hobbit_base_preview.xcf diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_shirt_hobbit_blue.png b/mods/lord/Items/lottclothes/textures/lottclothes_shirt_hobbit_blue.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_shirt_hobbit_blue.png rename to mods/lord/Items/lottclothes/textures/lottclothes_shirt_hobbit_blue.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_shirt_hobbit_blue_preview.png b/mods/lord/Items/lottclothes/textures/lottclothes_shirt_hobbit_blue_preview.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_shirt_hobbit_blue_preview.png rename to mods/lord/Items/lottclothes/textures/lottclothes_shirt_hobbit_blue_preview.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_shirt_hobbit_brown.png b/mods/lord/Items/lottclothes/textures/lottclothes_shirt_hobbit_brown.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_shirt_hobbit_brown.png rename to mods/lord/Items/lottclothes/textures/lottclothes_shirt_hobbit_brown.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_shirt_hobbit_brown_preview.png b/mods/lord/Items/lottclothes/textures/lottclothes_shirt_hobbit_brown_preview.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_shirt_hobbit_brown_preview.png rename to mods/lord/Items/lottclothes/textures/lottclothes_shirt_hobbit_brown_preview.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_shirt_hobbit_green.png b/mods/lord/Items/lottclothes/textures/lottclothes_shirt_hobbit_green.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_shirt_hobbit_green.png rename to mods/lord/Items/lottclothes/textures/lottclothes_shirt_hobbit_green.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_shirt_hobbit_green_preview.png b/mods/lord/Items/lottclothes/textures/lottclothes_shirt_hobbit_green_preview.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_shirt_hobbit_green_preview.png rename to mods/lord/Items/lottclothes/textures/lottclothes_shirt_hobbit_green_preview.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_shirt_hobbit_grey.png b/mods/lord/Items/lottclothes/textures/lottclothes_shirt_hobbit_grey.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_shirt_hobbit_grey.png rename to mods/lord/Items/lottclothes/textures/lottclothes_shirt_hobbit_grey.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_shirt_hobbit_grey_preview.png b/mods/lord/Items/lottclothes/textures/lottclothes_shirt_hobbit_grey_preview.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_shirt_hobbit_grey_preview.png rename to mods/lord/Items/lottclothes/textures/lottclothes_shirt_hobbit_grey_preview.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_shirt_hobbit_pink.png b/mods/lord/Items/lottclothes/textures/lottclothes_shirt_hobbit_pink.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_shirt_hobbit_pink.png rename to mods/lord/Items/lottclothes/textures/lottclothes_shirt_hobbit_pink.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_shirt_hobbit_pink_preview.png b/mods/lord/Items/lottclothes/textures/lottclothes_shirt_hobbit_pink_preview.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_shirt_hobbit_pink_preview.png rename to mods/lord/Items/lottclothes/textures/lottclothes_shirt_hobbit_pink_preview.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_shirt_hobbit_red.png b/mods/lord/Items/lottclothes/textures/lottclothes_shirt_hobbit_red.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_shirt_hobbit_red.png rename to mods/lord/Items/lottclothes/textures/lottclothes_shirt_hobbit_red.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_shirt_hobbit_red_preview.png b/mods/lord/Items/lottclothes/textures/lottclothes_shirt_hobbit_red_preview.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_shirt_hobbit_red_preview.png rename to mods/lord/Items/lottclothes/textures/lottclothes_shirt_hobbit_red_preview.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_shirt_hobbit_white.png b/mods/lord/Items/lottclothes/textures/lottclothes_shirt_hobbit_white.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_shirt_hobbit_white.png rename to mods/lord/Items/lottclothes/textures/lottclothes_shirt_hobbit_white.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_shirt_hobbit_white_preview.png b/mods/lord/Items/lottclothes/textures/lottclothes_shirt_hobbit_white_preview.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_shirt_hobbit_white_preview.png rename to mods/lord/Items/lottclothes/textures/lottclothes_shirt_hobbit_white_preview.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_shirt_hobbit_yellow.png b/mods/lord/Items/lottclothes/textures/lottclothes_shirt_hobbit_yellow.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_shirt_hobbit_yellow.png rename to mods/lord/Items/lottclothes/textures/lottclothes_shirt_hobbit_yellow.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_shirt_hobbit_yellow_preview.png b/mods/lord/Items/lottclothes/textures/lottclothes_shirt_hobbit_yellow_preview.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_shirt_hobbit_yellow_preview.png rename to mods/lord/Items/lottclothes/textures/lottclothes_shirt_hobbit_yellow_preview.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_shoes_brandybuck.png b/mods/lord/Items/lottclothes/textures/lottclothes_shoes_brandybuck.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_shoes_brandybuck.png rename to mods/lord/Items/lottclothes/textures/lottclothes_shoes_brandybuck.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_shoes_brandybuck_preview.png b/mods/lord/Items/lottclothes/textures/lottclothes_shoes_brandybuck_preview.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_shoes_brandybuck_preview.png rename to mods/lord/Items/lottclothes/textures/lottclothes_shoes_brandybuck_preview.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_shoes_elven.png b/mods/lord/Items/lottclothes/textures/lottclothes_shoes_elven.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_shoes_elven.png rename to mods/lord/Items/lottclothes/textures/lottclothes_shoes_elven.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_shoes_elven_preview.png b/mods/lord/Items/lottclothes/textures/lottclothes_shoes_elven_preview.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_shoes_elven_preview.png rename to mods/lord/Items/lottclothes/textures/lottclothes_shoes_elven_preview.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_shoes_hobbit_base.xcf b/mods/lord/Items/lottclothes/textures/lottclothes_shoes_hobbit_base.xcf similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_shoes_hobbit_base.xcf rename to mods/lord/Items/lottclothes/textures/lottclothes_shoes_hobbit_base.xcf diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_shoes_hobbit_base_preview.xcf b/mods/lord/Items/lottclothes/textures/lottclothes_shoes_hobbit_base_preview.xcf similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_shoes_hobbit_base_preview.xcf rename to mods/lord/Items/lottclothes/textures/lottclothes_shoes_hobbit_base_preview.xcf diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_shoes_hobbit_blue.png b/mods/lord/Items/lottclothes/textures/lottclothes_shoes_hobbit_blue.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_shoes_hobbit_blue.png rename to mods/lord/Items/lottclothes/textures/lottclothes_shoes_hobbit_blue.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_shoes_hobbit_blue_preview.png b/mods/lord/Items/lottclothes/textures/lottclothes_shoes_hobbit_blue_preview.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_shoes_hobbit_blue_preview.png rename to mods/lord/Items/lottclothes/textures/lottclothes_shoes_hobbit_blue_preview.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_shoes_hobbit_brown.png b/mods/lord/Items/lottclothes/textures/lottclothes_shoes_hobbit_brown.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_shoes_hobbit_brown.png rename to mods/lord/Items/lottclothes/textures/lottclothes_shoes_hobbit_brown.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_shoes_hobbit_brown_preview.png b/mods/lord/Items/lottclothes/textures/lottclothes_shoes_hobbit_brown_preview.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_shoes_hobbit_brown_preview.png rename to mods/lord/Items/lottclothes/textures/lottclothes_shoes_hobbit_brown_preview.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_shoes_hobbit_green.png b/mods/lord/Items/lottclothes/textures/lottclothes_shoes_hobbit_green.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_shoes_hobbit_green.png rename to mods/lord/Items/lottclothes/textures/lottclothes_shoes_hobbit_green.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_shoes_hobbit_green_preview.png b/mods/lord/Items/lottclothes/textures/lottclothes_shoes_hobbit_green_preview.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_shoes_hobbit_green_preview.png rename to mods/lord/Items/lottclothes/textures/lottclothes_shoes_hobbit_green_preview.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_shoes_hobbit_grey.png b/mods/lord/Items/lottclothes/textures/lottclothes_shoes_hobbit_grey.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_shoes_hobbit_grey.png rename to mods/lord/Items/lottclothes/textures/lottclothes_shoes_hobbit_grey.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_shoes_hobbit_grey_preview.png b/mods/lord/Items/lottclothes/textures/lottclothes_shoes_hobbit_grey_preview.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_shoes_hobbit_grey_preview.png rename to mods/lord/Items/lottclothes/textures/lottclothes_shoes_hobbit_grey_preview.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_shoes_hobbit_pink.png b/mods/lord/Items/lottclothes/textures/lottclothes_shoes_hobbit_pink.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_shoes_hobbit_pink.png rename to mods/lord/Items/lottclothes/textures/lottclothes_shoes_hobbit_pink.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_shoes_hobbit_pink_preview.png b/mods/lord/Items/lottclothes/textures/lottclothes_shoes_hobbit_pink_preview.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_shoes_hobbit_pink_preview.png rename to mods/lord/Items/lottclothes/textures/lottclothes_shoes_hobbit_pink_preview.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_shoes_hobbit_red.png b/mods/lord/Items/lottclothes/textures/lottclothes_shoes_hobbit_red.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_shoes_hobbit_red.png rename to mods/lord/Items/lottclothes/textures/lottclothes_shoes_hobbit_red.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_shoes_hobbit_red_preview.png b/mods/lord/Items/lottclothes/textures/lottclothes_shoes_hobbit_red_preview.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_shoes_hobbit_red_preview.png rename to mods/lord/Items/lottclothes/textures/lottclothes_shoes_hobbit_red_preview.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_shoes_hobbit_white.png b/mods/lord/Items/lottclothes/textures/lottclothes_shoes_hobbit_white.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_shoes_hobbit_white.png rename to mods/lord/Items/lottclothes/textures/lottclothes_shoes_hobbit_white.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_shoes_hobbit_white_preview.png b/mods/lord/Items/lottclothes/textures/lottclothes_shoes_hobbit_white_preview.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_shoes_hobbit_white_preview.png rename to mods/lord/Items/lottclothes/textures/lottclothes_shoes_hobbit_white_preview.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_shoes_hobbit_yellow.png b/mods/lord/Items/lottclothes/textures/lottclothes_shoes_hobbit_yellow.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_shoes_hobbit_yellow.png rename to mods/lord/Items/lottclothes/textures/lottclothes_shoes_hobbit_yellow.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_shoes_hobbit_yellow_preview.png b/mods/lord/Items/lottclothes/textures/lottclothes_shoes_hobbit_yellow_preview.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_shoes_hobbit_yellow_preview.png rename to mods/lord/Items/lottclothes/textures/lottclothes_shoes_hobbit_yellow_preview.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_shorts_hobbit_base.xcf b/mods/lord/Items/lottclothes/textures/lottclothes_shorts_hobbit_base.xcf similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_shorts_hobbit_base.xcf rename to mods/lord/Items/lottclothes/textures/lottclothes_shorts_hobbit_base.xcf diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_shorts_hobbit_base_preview.xcf b/mods/lord/Items/lottclothes/textures/lottclothes_shorts_hobbit_base_preview.xcf similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_shorts_hobbit_base_preview.xcf rename to mods/lord/Items/lottclothes/textures/lottclothes_shorts_hobbit_base_preview.xcf diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_shorts_hobbit_blue.png b/mods/lord/Items/lottclothes/textures/lottclothes_shorts_hobbit_blue.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_shorts_hobbit_blue.png rename to mods/lord/Items/lottclothes/textures/lottclothes_shorts_hobbit_blue.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_shorts_hobbit_blue_preview.png b/mods/lord/Items/lottclothes/textures/lottclothes_shorts_hobbit_blue_preview.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_shorts_hobbit_blue_preview.png rename to mods/lord/Items/lottclothes/textures/lottclothes_shorts_hobbit_blue_preview.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_shorts_hobbit_brown.png b/mods/lord/Items/lottclothes/textures/lottclothes_shorts_hobbit_brown.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_shorts_hobbit_brown.png rename to mods/lord/Items/lottclothes/textures/lottclothes_shorts_hobbit_brown.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_shorts_hobbit_brown_preview.png b/mods/lord/Items/lottclothes/textures/lottclothes_shorts_hobbit_brown_preview.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_shorts_hobbit_brown_preview.png rename to mods/lord/Items/lottclothes/textures/lottclothes_shorts_hobbit_brown_preview.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_shorts_hobbit_green.png b/mods/lord/Items/lottclothes/textures/lottclothes_shorts_hobbit_green.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_shorts_hobbit_green.png rename to mods/lord/Items/lottclothes/textures/lottclothes_shorts_hobbit_green.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_shorts_hobbit_green_preview.png b/mods/lord/Items/lottclothes/textures/lottclothes_shorts_hobbit_green_preview.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_shorts_hobbit_green_preview.png rename to mods/lord/Items/lottclothes/textures/lottclothes_shorts_hobbit_green_preview.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_shorts_hobbit_grey.png b/mods/lord/Items/lottclothes/textures/lottclothes_shorts_hobbit_grey.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_shorts_hobbit_grey.png rename to mods/lord/Items/lottclothes/textures/lottclothes_shorts_hobbit_grey.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_shorts_hobbit_grey_preview.png b/mods/lord/Items/lottclothes/textures/lottclothes_shorts_hobbit_grey_preview.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_shorts_hobbit_grey_preview.png rename to mods/lord/Items/lottclothes/textures/lottclothes_shorts_hobbit_grey_preview.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_shorts_hobbit_pink.png b/mods/lord/Items/lottclothes/textures/lottclothes_shorts_hobbit_pink.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_shorts_hobbit_pink.png rename to mods/lord/Items/lottclothes/textures/lottclothes_shorts_hobbit_pink.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_shorts_hobbit_pink_preview.png b/mods/lord/Items/lottclothes/textures/lottclothes_shorts_hobbit_pink_preview.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_shorts_hobbit_pink_preview.png rename to mods/lord/Items/lottclothes/textures/lottclothes_shorts_hobbit_pink_preview.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_shorts_hobbit_red.png b/mods/lord/Items/lottclothes/textures/lottclothes_shorts_hobbit_red.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_shorts_hobbit_red.png rename to mods/lord/Items/lottclothes/textures/lottclothes_shorts_hobbit_red.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_shorts_hobbit_red_preview.png b/mods/lord/Items/lottclothes/textures/lottclothes_shorts_hobbit_red_preview.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_shorts_hobbit_red_preview.png rename to mods/lord/Items/lottclothes/textures/lottclothes_shorts_hobbit_red_preview.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_shorts_hobbit_white.png b/mods/lord/Items/lottclothes/textures/lottclothes_shorts_hobbit_white.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_shorts_hobbit_white.png rename to mods/lord/Items/lottclothes/textures/lottclothes_shorts_hobbit_white.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_shorts_hobbit_white_preview.png b/mods/lord/Items/lottclothes/textures/lottclothes_shorts_hobbit_white_preview.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_shorts_hobbit_white_preview.png rename to mods/lord/Items/lottclothes/textures/lottclothes_shorts_hobbit_white_preview.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_shorts_hobbit_yellow.png b/mods/lord/Items/lottclothes/textures/lottclothes_shorts_hobbit_yellow.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_shorts_hobbit_yellow.png rename to mods/lord/Items/lottclothes/textures/lottclothes_shorts_hobbit_yellow.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_shorts_hobbit_yellow_preview.png b/mods/lord/Items/lottclothes/textures/lottclothes_shorts_hobbit_yellow_preview.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_shorts_hobbit_yellow_preview.png rename to mods/lord/Items/lottclothes/textures/lottclothes_shorts_hobbit_yellow_preview.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_trousers_brandybuck.png b/mods/lord/Items/lottclothes/textures/lottclothes_trousers_brandybuck.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_trousers_brandybuck.png rename to mods/lord/Items/lottclothes/textures/lottclothes_trousers_brandybuck.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_trousers_brandybuck_preview.png b/mods/lord/Items/lottclothes/textures/lottclothes_trousers_brandybuck_preview.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_trousers_brandybuck_preview.png rename to mods/lord/Items/lottclothes/textures/lottclothes_trousers_brandybuck_preview.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_trousers_elven.png b/mods/lord/Items/lottclothes/textures/lottclothes_trousers_elven.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_trousers_elven.png rename to mods/lord/Items/lottclothes/textures/lottclothes_trousers_elven.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_trousers_elven_preview.png b/mods/lord/Items/lottclothes/textures/lottclothes_trousers_elven_preview.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_trousers_elven_preview.png rename to mods/lord/Items/lottclothes/textures/lottclothes_trousers_elven_preview.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_trousers_ettenmoor.png b/mods/lord/Items/lottclothes/textures/lottclothes_trousers_ettenmoor.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_trousers_ettenmoor.png rename to mods/lord/Items/lottclothes/textures/lottclothes_trousers_ettenmoor.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_trousers_ettenmoor_preview.png b/mods/lord/Items/lottclothes/textures/lottclothes_trousers_ettenmoor_preview.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_trousers_ettenmoor_preview.png rename to mods/lord/Items/lottclothes/textures/lottclothes_trousers_ettenmoor_preview.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_trousers_wizard_white.png b/mods/lord/Items/lottclothes/textures/lottclothes_trousers_wizard_white.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_trousers_wizard_white.png rename to mods/lord/Items/lottclothes/textures/lottclothes_trousers_wizard_white.png diff --git a/mods/lord/Tools/lottclothes/textures/lottclothes_trousers_wizard_white_preview.png b/mods/lord/Items/lottclothes/textures/lottclothes_trousers_wizard_white_preview.png similarity index 100% rename from mods/lord/Tools/lottclothes/textures/lottclothes_trousers_wizard_white_preview.png rename to mods/lord/Items/lottclothes/textures/lottclothes_trousers_wizard_white_preview.png diff --git a/mods/lord/Tools/lottclothes/wizard.lua b/mods/lord/Items/lottclothes/wizard.lua similarity index 100% rename from mods/lord/Tools/lottclothes/wizard.lua rename to mods/lord/Items/lottclothes/wizard.lua diff --git a/mods/lord/Items/modpack.conf b/mods/lord/Items/modpack.conf new file mode 100644 index 000000000..8169e4d7f --- /dev/null +++ b/mods/lord/Items/modpack.conf @@ -0,0 +1 @@ +name = Items diff --git a/mods/lord/Tools/readme.md b/mods/lord/Items/readme.md similarity index 98% rename from mods/lord/Tools/readme.md rename to mods/lord/Items/readme.md index 7ccf64a05..516837d1f 100644 --- a/mods/lord/Tools/readme.md +++ b/mods/lord/Items/readme.md @@ -1,4 +1,4 @@ -Tools +Items ===== Иногда содержат блоки/ноды, -- как, например, нода прилавка(магазина) из мода с деньгами. diff --git a/mods/lord/Tools/tools/LICENSE b/mods/lord/Items/tools/LICENSE similarity index 100% rename from mods/lord/Tools/tools/LICENSE rename to mods/lord/Items/tools/LICENSE diff --git a/mods/lord/Tools/tools/aliases.lua b/mods/lord/Items/tools/aliases.lua similarity index 100% rename from mods/lord/Tools/tools/aliases.lua rename to mods/lord/Items/tools/aliases.lua diff --git a/mods/lord/Tools/tools/init.lua b/mods/lord/Items/tools/init.lua similarity index 100% rename from mods/lord/Tools/tools/init.lua rename to mods/lord/Items/tools/init.lua diff --git a/mods/lord/Tools/tools/locale/template.txt b/mods/lord/Items/tools/locale/template.txt similarity index 100% rename from mods/lord/Tools/tools/locale/template.txt rename to mods/lord/Items/tools/locale/template.txt diff --git a/mods/lord/Tools/tools/locale/tools.en.tr b/mods/lord/Items/tools/locale/tools.en.tr similarity index 100% rename from mods/lord/Tools/tools/locale/tools.en.tr rename to mods/lord/Items/tools/locale/tools.en.tr diff --git a/mods/lord/Tools/tools/locale/tools.ru.tr b/mods/lord/Items/tools/locale/tools.ru.tr similarity index 100% rename from mods/lord/Tools/tools/locale/tools.ru.tr rename to mods/lord/Items/tools/locale/tools.ru.tr diff --git a/mods/lord/Tools/tools/mod.conf b/mods/lord/Items/tools/mod.conf similarity index 100% rename from mods/lord/Tools/tools/mod.conf rename to mods/lord/Items/tools/mod.conf diff --git a/mods/lord/Tools/tools/src/axes.lua b/mods/lord/Items/tools/src/axes.lua similarity index 100% rename from mods/lord/Tools/tools/src/axes.lua rename to mods/lord/Items/tools/src/axes.lua diff --git a/mods/lord/Tools/tools/src/battleaxes.lua b/mods/lord/Items/tools/src/battleaxes.lua similarity index 100% rename from mods/lord/Tools/tools/src/battleaxes.lua rename to mods/lord/Items/tools/src/battleaxes.lua diff --git a/mods/lord/Tools/tools/src/daggers.lua b/mods/lord/Items/tools/src/daggers.lua similarity index 100% rename from mods/lord/Tools/tools/src/daggers.lua rename to mods/lord/Items/tools/src/daggers.lua diff --git a/mods/lord/Tools/tools/src/picks.lua b/mods/lord/Items/tools/src/picks.lua similarity index 100% rename from mods/lord/Tools/tools/src/picks.lua rename to mods/lord/Items/tools/src/picks.lua diff --git a/mods/lord/Tools/tools/src/racial.lua b/mods/lord/Items/tools/src/racial.lua similarity index 100% rename from mods/lord/Tools/tools/src/racial.lua rename to mods/lord/Items/tools/src/racial.lua diff --git a/mods/lord/Tools/tools/src/shovels.lua b/mods/lord/Items/tools/src/shovels.lua similarity index 100% rename from mods/lord/Tools/tools/src/shovels.lua rename to mods/lord/Items/tools/src/shovels.lua diff --git a/mods/lord/Tools/tools/src/spears.lua b/mods/lord/Items/tools/src/spears.lua similarity index 100% rename from mods/lord/Tools/tools/src/spears.lua rename to mods/lord/Items/tools/src/spears.lua diff --git a/mods/lord/Tools/tools/src/special.lua b/mods/lord/Items/tools/src/special.lua similarity index 100% rename from mods/lord/Tools/tools/src/special.lua rename to mods/lord/Items/tools/src/special.lua diff --git a/mods/lord/Tools/tools/src/swords.lua b/mods/lord/Items/tools/src/swords.lua similarity index 100% rename from mods/lord/Tools/tools/src/swords.lua rename to mods/lord/Items/tools/src/swords.lua diff --git a/mods/lord/Tools/tools/src/warhammers.lua b/mods/lord/Items/tools/src/warhammers.lua similarity index 100% rename from mods/lord/Tools/tools/src/warhammers.lua rename to mods/lord/Items/tools/src/warhammers.lua diff --git a/mods/lord/Tools/tools/textures/axes/tools_axe_bronze.png b/mods/lord/Items/tools/textures/axes/tools_axe_bronze.png similarity index 100% rename from mods/lord/Tools/tools/textures/axes/tools_axe_bronze.png rename to mods/lord/Items/tools/textures/axes/tools_axe_bronze.png diff --git a/mods/lord/Tools/tools/textures/axes/tools_axe_copper.png b/mods/lord/Items/tools/textures/axes/tools_axe_copper.png similarity index 100% rename from mods/lord/Tools/tools/textures/axes/tools_axe_copper.png rename to mods/lord/Items/tools/textures/axes/tools_axe_copper.png diff --git a/mods/lord/Tools/tools/textures/axes/tools_axe_galvorn.png b/mods/lord/Items/tools/textures/axes/tools_axe_galvorn.png similarity index 100% rename from mods/lord/Tools/tools/textures/axes/tools_axe_galvorn.png rename to mods/lord/Items/tools/textures/axes/tools_axe_galvorn.png diff --git a/mods/lord/Tools/tools/textures/axes/tools_axe_gold.png b/mods/lord/Items/tools/textures/axes/tools_axe_gold.png similarity index 100% rename from mods/lord/Tools/tools/textures/axes/tools_axe_gold.png rename to mods/lord/Items/tools/textures/axes/tools_axe_gold.png diff --git a/mods/lord/Tools/tools/textures/axes/tools_axe_mithril.png b/mods/lord/Items/tools/textures/axes/tools_axe_mithril.png similarity index 100% rename from mods/lord/Tools/tools/textures/axes/tools_axe_mithril.png rename to mods/lord/Items/tools/textures/axes/tools_axe_mithril.png diff --git a/mods/lord/Tools/tools/textures/axes/tools_axe_silver.png b/mods/lord/Items/tools/textures/axes/tools_axe_silver.png similarity index 100% rename from mods/lord/Tools/tools/textures/axes/tools_axe_silver.png rename to mods/lord/Items/tools/textures/axes/tools_axe_silver.png diff --git a/mods/lord/Tools/tools/textures/axes/tools_axe_steel.png b/mods/lord/Items/tools/textures/axes/tools_axe_steel.png similarity index 100% rename from mods/lord/Tools/tools/textures/axes/tools_axe_steel.png rename to mods/lord/Items/tools/textures/axes/tools_axe_steel.png diff --git a/mods/lord/Tools/tools/textures/axes/tools_axe_stone.png b/mods/lord/Items/tools/textures/axes/tools_axe_stone.png similarity index 100% rename from mods/lord/Tools/tools/textures/axes/tools_axe_stone.png rename to mods/lord/Items/tools/textures/axes/tools_axe_stone.png diff --git a/mods/lord/Tools/tools/textures/axes/tools_axe_tin.png b/mods/lord/Items/tools/textures/axes/tools_axe_tin.png similarity index 100% rename from mods/lord/Tools/tools/textures/axes/tools_axe_tin.png rename to mods/lord/Items/tools/textures/axes/tools_axe_tin.png diff --git a/mods/lord/Tools/tools/textures/axes/tools_axe_wood.png b/mods/lord/Items/tools/textures/axes/tools_axe_wood.png similarity index 100% rename from mods/lord/Tools/tools/textures/axes/tools_axe_wood.png rename to mods/lord/Items/tools/textures/axes/tools_axe_wood.png diff --git a/mods/lord/Tools/tools/textures/battleaxes/tools_battleaxe_bronze.png b/mods/lord/Items/tools/textures/battleaxes/tools_battleaxe_bronze.png similarity index 100% rename from mods/lord/Tools/tools/textures/battleaxes/tools_battleaxe_bronze.png rename to mods/lord/Items/tools/textures/battleaxes/tools_battleaxe_bronze.png diff --git a/mods/lord/Tools/tools/textures/battleaxes/tools_battleaxe_copper.png b/mods/lord/Items/tools/textures/battleaxes/tools_battleaxe_copper.png similarity index 100% rename from mods/lord/Tools/tools/textures/battleaxes/tools_battleaxe_copper.png rename to mods/lord/Items/tools/textures/battleaxes/tools_battleaxe_copper.png diff --git a/mods/lord/Tools/tools/textures/battleaxes/tools_battleaxe_galvorn.png b/mods/lord/Items/tools/textures/battleaxes/tools_battleaxe_galvorn.png similarity index 100% rename from mods/lord/Tools/tools/textures/battleaxes/tools_battleaxe_galvorn.png rename to mods/lord/Items/tools/textures/battleaxes/tools_battleaxe_galvorn.png diff --git a/mods/lord/Tools/tools/textures/battleaxes/tools_battleaxe_gold.png b/mods/lord/Items/tools/textures/battleaxes/tools_battleaxe_gold.png similarity index 100% rename from mods/lord/Tools/tools/textures/battleaxes/tools_battleaxe_gold.png rename to mods/lord/Items/tools/textures/battleaxes/tools_battleaxe_gold.png diff --git a/mods/lord/Tools/tools/textures/battleaxes/tools_battleaxe_mithril.png b/mods/lord/Items/tools/textures/battleaxes/tools_battleaxe_mithril.png similarity index 100% rename from mods/lord/Tools/tools/textures/battleaxes/tools_battleaxe_mithril.png rename to mods/lord/Items/tools/textures/battleaxes/tools_battleaxe_mithril.png diff --git a/mods/lord/Tools/tools/textures/battleaxes/tools_battleaxe_silver.png b/mods/lord/Items/tools/textures/battleaxes/tools_battleaxe_silver.png similarity index 100% rename from mods/lord/Tools/tools/textures/battleaxes/tools_battleaxe_silver.png rename to mods/lord/Items/tools/textures/battleaxes/tools_battleaxe_silver.png diff --git a/mods/lord/Tools/tools/textures/battleaxes/tools_battleaxe_steel.png b/mods/lord/Items/tools/textures/battleaxes/tools_battleaxe_steel.png similarity index 100% rename from mods/lord/Tools/tools/textures/battleaxes/tools_battleaxe_steel.png rename to mods/lord/Items/tools/textures/battleaxes/tools_battleaxe_steel.png diff --git a/mods/lord/Tools/tools/textures/battleaxes/tools_battleaxe_stone.png b/mods/lord/Items/tools/textures/battleaxes/tools_battleaxe_stone.png similarity index 100% rename from mods/lord/Tools/tools/textures/battleaxes/tools_battleaxe_stone.png rename to mods/lord/Items/tools/textures/battleaxes/tools_battleaxe_stone.png diff --git a/mods/lord/Tools/tools/textures/battleaxes/tools_battleaxe_tin.png b/mods/lord/Items/tools/textures/battleaxes/tools_battleaxe_tin.png similarity index 100% rename from mods/lord/Tools/tools/textures/battleaxes/tools_battleaxe_tin.png rename to mods/lord/Items/tools/textures/battleaxes/tools_battleaxe_tin.png diff --git a/mods/lord/Tools/tools/textures/battleaxes/tools_battleaxe_wood.png b/mods/lord/Items/tools/textures/battleaxes/tools_battleaxe_wood.png similarity index 100% rename from mods/lord/Tools/tools/textures/battleaxes/tools_battleaxe_wood.png rename to mods/lord/Items/tools/textures/battleaxes/tools_battleaxe_wood.png diff --git a/mods/lord/Tools/tools/textures/daggers/tools_dagger_bronze.png b/mods/lord/Items/tools/textures/daggers/tools_dagger_bronze.png similarity index 100% rename from mods/lord/Tools/tools/textures/daggers/tools_dagger_bronze.png rename to mods/lord/Items/tools/textures/daggers/tools_dagger_bronze.png diff --git a/mods/lord/Tools/tools/textures/daggers/tools_dagger_copper.png b/mods/lord/Items/tools/textures/daggers/tools_dagger_copper.png similarity index 100% rename from mods/lord/Tools/tools/textures/daggers/tools_dagger_copper.png rename to mods/lord/Items/tools/textures/daggers/tools_dagger_copper.png diff --git a/mods/lord/Tools/tools/textures/daggers/tools_dagger_galvorn.png b/mods/lord/Items/tools/textures/daggers/tools_dagger_galvorn.png similarity index 100% rename from mods/lord/Tools/tools/textures/daggers/tools_dagger_galvorn.png rename to mods/lord/Items/tools/textures/daggers/tools_dagger_galvorn.png diff --git a/mods/lord/Tools/tools/textures/daggers/tools_dagger_gold.png b/mods/lord/Items/tools/textures/daggers/tools_dagger_gold.png similarity index 100% rename from mods/lord/Tools/tools/textures/daggers/tools_dagger_gold.png rename to mods/lord/Items/tools/textures/daggers/tools_dagger_gold.png diff --git a/mods/lord/Tools/tools/textures/daggers/tools_dagger_mithril.png b/mods/lord/Items/tools/textures/daggers/tools_dagger_mithril.png similarity index 100% rename from mods/lord/Tools/tools/textures/daggers/tools_dagger_mithril.png rename to mods/lord/Items/tools/textures/daggers/tools_dagger_mithril.png diff --git a/mods/lord/Tools/tools/textures/daggers/tools_dagger_silver.png b/mods/lord/Items/tools/textures/daggers/tools_dagger_silver.png similarity index 100% rename from mods/lord/Tools/tools/textures/daggers/tools_dagger_silver.png rename to mods/lord/Items/tools/textures/daggers/tools_dagger_silver.png diff --git a/mods/lord/Tools/tools/textures/daggers/tools_dagger_steel.png b/mods/lord/Items/tools/textures/daggers/tools_dagger_steel.png similarity index 100% rename from mods/lord/Tools/tools/textures/daggers/tools_dagger_steel.png rename to mods/lord/Items/tools/textures/daggers/tools_dagger_steel.png diff --git a/mods/lord/Tools/tools/textures/daggers/tools_dagger_stone.png b/mods/lord/Items/tools/textures/daggers/tools_dagger_stone.png similarity index 100% rename from mods/lord/Tools/tools/textures/daggers/tools_dagger_stone.png rename to mods/lord/Items/tools/textures/daggers/tools_dagger_stone.png diff --git a/mods/lord/Tools/tools/textures/daggers/tools_dagger_tin.png b/mods/lord/Items/tools/textures/daggers/tools_dagger_tin.png similarity index 100% rename from mods/lord/Tools/tools/textures/daggers/tools_dagger_tin.png rename to mods/lord/Items/tools/textures/daggers/tools_dagger_tin.png diff --git a/mods/lord/Tools/tools/textures/daggers/tools_dagger_wood.png b/mods/lord/Items/tools/textures/daggers/tools_dagger_wood.png similarity index 100% rename from mods/lord/Tools/tools/textures/daggers/tools_dagger_wood.png rename to mods/lord/Items/tools/textures/daggers/tools_dagger_wood.png diff --git a/mods/lord/Tools/tools/textures/pickaxes/tools_pick_bronze.png b/mods/lord/Items/tools/textures/pickaxes/tools_pick_bronze.png similarity index 100% rename from mods/lord/Tools/tools/textures/pickaxes/tools_pick_bronze.png rename to mods/lord/Items/tools/textures/pickaxes/tools_pick_bronze.png diff --git a/mods/lord/Tools/tools/textures/pickaxes/tools_pick_copper.png b/mods/lord/Items/tools/textures/pickaxes/tools_pick_copper.png similarity index 100% rename from mods/lord/Tools/tools/textures/pickaxes/tools_pick_copper.png rename to mods/lord/Items/tools/textures/pickaxes/tools_pick_copper.png diff --git a/mods/lord/Tools/tools/textures/pickaxes/tools_pick_galvorn.png b/mods/lord/Items/tools/textures/pickaxes/tools_pick_galvorn.png similarity index 100% rename from mods/lord/Tools/tools/textures/pickaxes/tools_pick_galvorn.png rename to mods/lord/Items/tools/textures/pickaxes/tools_pick_galvorn.png diff --git a/mods/lord/Tools/tools/textures/pickaxes/tools_pick_gold.png b/mods/lord/Items/tools/textures/pickaxes/tools_pick_gold.png similarity index 100% rename from mods/lord/Tools/tools/textures/pickaxes/tools_pick_gold.png rename to mods/lord/Items/tools/textures/pickaxes/tools_pick_gold.png diff --git a/mods/lord/Tools/tools/textures/pickaxes/tools_pick_mithril.png b/mods/lord/Items/tools/textures/pickaxes/tools_pick_mithril.png similarity index 100% rename from mods/lord/Tools/tools/textures/pickaxes/tools_pick_mithril.png rename to mods/lord/Items/tools/textures/pickaxes/tools_pick_mithril.png diff --git a/mods/lord/Tools/tools/textures/pickaxes/tools_pick_silver.png b/mods/lord/Items/tools/textures/pickaxes/tools_pick_silver.png similarity index 100% rename from mods/lord/Tools/tools/textures/pickaxes/tools_pick_silver.png rename to mods/lord/Items/tools/textures/pickaxes/tools_pick_silver.png diff --git a/mods/lord/Tools/tools/textures/pickaxes/tools_pick_steel.png b/mods/lord/Items/tools/textures/pickaxes/tools_pick_steel.png similarity index 100% rename from mods/lord/Tools/tools/textures/pickaxes/tools_pick_steel.png rename to mods/lord/Items/tools/textures/pickaxes/tools_pick_steel.png diff --git a/mods/lord/Tools/tools/textures/pickaxes/tools_pick_stone.png b/mods/lord/Items/tools/textures/pickaxes/tools_pick_stone.png similarity index 100% rename from mods/lord/Tools/tools/textures/pickaxes/tools_pick_stone.png rename to mods/lord/Items/tools/textures/pickaxes/tools_pick_stone.png diff --git a/mods/lord/Tools/tools/textures/pickaxes/tools_pick_tin.png b/mods/lord/Items/tools/textures/pickaxes/tools_pick_tin.png similarity index 100% rename from mods/lord/Tools/tools/textures/pickaxes/tools_pick_tin.png rename to mods/lord/Items/tools/textures/pickaxes/tools_pick_tin.png diff --git a/mods/lord/Tools/tools/textures/pickaxes/tools_pick_wood.png b/mods/lord/Items/tools/textures/pickaxes/tools_pick_wood.png similarity index 100% rename from mods/lord/Tools/tools/textures/pickaxes/tools_pick_wood.png rename to mods/lord/Items/tools/textures/pickaxes/tools_pick_wood.png diff --git a/mods/lord/Tools/tools/textures/racial/tools_battleaxe_dwarf.png b/mods/lord/Items/tools/textures/racial/tools_battleaxe_dwarf.png similarity index 100% rename from mods/lord/Tools/tools/textures/racial/tools_battleaxe_dwarf.png rename to mods/lord/Items/tools/textures/racial/tools_battleaxe_dwarf.png diff --git a/mods/lord/Tools/tools/textures/racial/tools_dagger_hobbit.png b/mods/lord/Items/tools/textures/racial/tools_dagger_hobbit.png similarity index 100% rename from mods/lord/Tools/tools/textures/racial/tools_dagger_hobbit.png rename to mods/lord/Items/tools/textures/racial/tools_dagger_hobbit.png diff --git a/mods/lord/Tools/tools/textures/racial/tools_sword_elven.png b/mods/lord/Items/tools/textures/racial/tools_sword_elven.png similarity index 100% rename from mods/lord/Tools/tools/textures/racial/tools_sword_elven.png rename to mods/lord/Items/tools/textures/racial/tools_sword_elven.png diff --git a/mods/lord/Tools/tools/textures/racial/tools_sword_human.png b/mods/lord/Items/tools/textures/racial/tools_sword_human.png similarity index 100% rename from mods/lord/Tools/tools/textures/racial/tools_sword_human.png rename to mods/lord/Items/tools/textures/racial/tools_sword_human.png diff --git a/mods/lord/Tools/tools/textures/racial/tools_sword_orcish.png b/mods/lord/Items/tools/textures/racial/tools_sword_orcish.png similarity index 100% rename from mods/lord/Tools/tools/textures/racial/tools_sword_orcish.png rename to mods/lord/Items/tools/textures/racial/tools_sword_orcish.png diff --git a/mods/lord/Tools/tools/textures/shovels/tools_shovel_bronze.png b/mods/lord/Items/tools/textures/shovels/tools_shovel_bronze.png similarity index 100% rename from mods/lord/Tools/tools/textures/shovels/tools_shovel_bronze.png rename to mods/lord/Items/tools/textures/shovels/tools_shovel_bronze.png diff --git a/mods/lord/Tools/tools/textures/shovels/tools_shovel_copper.png b/mods/lord/Items/tools/textures/shovels/tools_shovel_copper.png similarity index 100% rename from mods/lord/Tools/tools/textures/shovels/tools_shovel_copper.png rename to mods/lord/Items/tools/textures/shovels/tools_shovel_copper.png diff --git a/mods/lord/Tools/tools/textures/shovels/tools_shovel_galvorn.png b/mods/lord/Items/tools/textures/shovels/tools_shovel_galvorn.png similarity index 100% rename from mods/lord/Tools/tools/textures/shovels/tools_shovel_galvorn.png rename to mods/lord/Items/tools/textures/shovels/tools_shovel_galvorn.png diff --git a/mods/lord/Tools/tools/textures/shovels/tools_shovel_gold.png b/mods/lord/Items/tools/textures/shovels/tools_shovel_gold.png similarity index 100% rename from mods/lord/Tools/tools/textures/shovels/tools_shovel_gold.png rename to mods/lord/Items/tools/textures/shovels/tools_shovel_gold.png diff --git a/mods/lord/Tools/tools/textures/shovels/tools_shovel_mithril.png b/mods/lord/Items/tools/textures/shovels/tools_shovel_mithril.png similarity index 100% rename from mods/lord/Tools/tools/textures/shovels/tools_shovel_mithril.png rename to mods/lord/Items/tools/textures/shovels/tools_shovel_mithril.png diff --git a/mods/lord/Tools/tools/textures/shovels/tools_shovel_silver.png b/mods/lord/Items/tools/textures/shovels/tools_shovel_silver.png similarity index 100% rename from mods/lord/Tools/tools/textures/shovels/tools_shovel_silver.png rename to mods/lord/Items/tools/textures/shovels/tools_shovel_silver.png diff --git a/mods/lord/Tools/tools/textures/shovels/tools_shovel_steel.png b/mods/lord/Items/tools/textures/shovels/tools_shovel_steel.png similarity index 100% rename from mods/lord/Tools/tools/textures/shovels/tools_shovel_steel.png rename to mods/lord/Items/tools/textures/shovels/tools_shovel_steel.png diff --git a/mods/lord/Tools/tools/textures/shovels/tools_shovel_stone.png b/mods/lord/Items/tools/textures/shovels/tools_shovel_stone.png similarity index 100% rename from mods/lord/Tools/tools/textures/shovels/tools_shovel_stone.png rename to mods/lord/Items/tools/textures/shovels/tools_shovel_stone.png diff --git a/mods/lord/Tools/tools/textures/shovels/tools_shovel_tin.png b/mods/lord/Items/tools/textures/shovels/tools_shovel_tin.png similarity index 100% rename from mods/lord/Tools/tools/textures/shovels/tools_shovel_tin.png rename to mods/lord/Items/tools/textures/shovels/tools_shovel_tin.png diff --git a/mods/lord/Tools/tools/textures/shovels/tools_shovel_wood.png b/mods/lord/Items/tools/textures/shovels/tools_shovel_wood.png similarity index 100% rename from mods/lord/Tools/tools/textures/shovels/tools_shovel_wood.png rename to mods/lord/Items/tools/textures/shovels/tools_shovel_wood.png diff --git a/mods/lord/Tools/tools/textures/spears/tools_spear_bronze.png b/mods/lord/Items/tools/textures/spears/tools_spear_bronze.png similarity index 100% rename from mods/lord/Tools/tools/textures/spears/tools_spear_bronze.png rename to mods/lord/Items/tools/textures/spears/tools_spear_bronze.png diff --git a/mods/lord/Tools/tools/textures/spears/tools_spear_copper.png b/mods/lord/Items/tools/textures/spears/tools_spear_copper.png similarity index 100% rename from mods/lord/Tools/tools/textures/spears/tools_spear_copper.png rename to mods/lord/Items/tools/textures/spears/tools_spear_copper.png diff --git a/mods/lord/Tools/tools/textures/spears/tools_spear_galvorn.png b/mods/lord/Items/tools/textures/spears/tools_spear_galvorn.png similarity index 100% rename from mods/lord/Tools/tools/textures/spears/tools_spear_galvorn.png rename to mods/lord/Items/tools/textures/spears/tools_spear_galvorn.png diff --git a/mods/lord/Tools/tools/textures/spears/tools_spear_gold.png b/mods/lord/Items/tools/textures/spears/tools_spear_gold.png similarity index 100% rename from mods/lord/Tools/tools/textures/spears/tools_spear_gold.png rename to mods/lord/Items/tools/textures/spears/tools_spear_gold.png diff --git a/mods/lord/Tools/tools/textures/spears/tools_spear_mithril.png b/mods/lord/Items/tools/textures/spears/tools_spear_mithril.png similarity index 100% rename from mods/lord/Tools/tools/textures/spears/tools_spear_mithril.png rename to mods/lord/Items/tools/textures/spears/tools_spear_mithril.png diff --git a/mods/lord/Tools/tools/textures/spears/tools_spear_silver.png b/mods/lord/Items/tools/textures/spears/tools_spear_silver.png similarity index 100% rename from mods/lord/Tools/tools/textures/spears/tools_spear_silver.png rename to mods/lord/Items/tools/textures/spears/tools_spear_silver.png diff --git a/mods/lord/Tools/tools/textures/spears/tools_spear_steel.png b/mods/lord/Items/tools/textures/spears/tools_spear_steel.png similarity index 100% rename from mods/lord/Tools/tools/textures/spears/tools_spear_steel.png rename to mods/lord/Items/tools/textures/spears/tools_spear_steel.png diff --git a/mods/lord/Tools/tools/textures/spears/tools_spear_stone.png b/mods/lord/Items/tools/textures/spears/tools_spear_stone.png similarity index 100% rename from mods/lord/Tools/tools/textures/spears/tools_spear_stone.png rename to mods/lord/Items/tools/textures/spears/tools_spear_stone.png diff --git a/mods/lord/Tools/tools/textures/spears/tools_spear_tin.png b/mods/lord/Items/tools/textures/spears/tools_spear_tin.png similarity index 100% rename from mods/lord/Tools/tools/textures/spears/tools_spear_tin.png rename to mods/lord/Items/tools/textures/spears/tools_spear_tin.png diff --git a/mods/lord/Tools/tools/textures/spears/tools_spear_wood.png b/mods/lord/Items/tools/textures/spears/tools_spear_wood.png similarity index 100% rename from mods/lord/Tools/tools/textures/spears/tools_spear_wood.png rename to mods/lord/Items/tools/textures/spears/tools_spear_wood.png diff --git a/mods/lord/Tools/tools/textures/special/tools_sword_orc.png b/mods/lord/Items/tools/textures/special/tools_sword_orc.png similarity index 100% rename from mods/lord/Tools/tools/textures/special/tools_sword_orc.png rename to mods/lord/Items/tools/textures/special/tools_sword_orc.png diff --git a/mods/lord/Tools/tools/textures/special/tools_sword_urukhai.png b/mods/lord/Items/tools/textures/special/tools_sword_urukhai.png similarity index 100% rename from mods/lord/Tools/tools/textures/special/tools_sword_urukhai.png rename to mods/lord/Items/tools/textures/special/tools_sword_urukhai.png diff --git a/mods/lord/Tools/tools/textures/swords/tools_sword_bronze.png b/mods/lord/Items/tools/textures/swords/tools_sword_bronze.png similarity index 100% rename from mods/lord/Tools/tools/textures/swords/tools_sword_bronze.png rename to mods/lord/Items/tools/textures/swords/tools_sword_bronze.png diff --git a/mods/lord/Tools/tools/textures/swords/tools_sword_copper.png b/mods/lord/Items/tools/textures/swords/tools_sword_copper.png similarity index 100% rename from mods/lord/Tools/tools/textures/swords/tools_sword_copper.png rename to mods/lord/Items/tools/textures/swords/tools_sword_copper.png diff --git a/mods/lord/Tools/tools/textures/swords/tools_sword_galvorn.png b/mods/lord/Items/tools/textures/swords/tools_sword_galvorn.png similarity index 100% rename from mods/lord/Tools/tools/textures/swords/tools_sword_galvorn.png rename to mods/lord/Items/tools/textures/swords/tools_sword_galvorn.png diff --git a/mods/lord/Tools/tools/textures/swords/tools_sword_gold.png b/mods/lord/Items/tools/textures/swords/tools_sword_gold.png similarity index 100% rename from mods/lord/Tools/tools/textures/swords/tools_sword_gold.png rename to mods/lord/Items/tools/textures/swords/tools_sword_gold.png diff --git a/mods/lord/Tools/tools/textures/swords/tools_sword_mithril.png b/mods/lord/Items/tools/textures/swords/tools_sword_mithril.png similarity index 100% rename from mods/lord/Tools/tools/textures/swords/tools_sword_mithril.png rename to mods/lord/Items/tools/textures/swords/tools_sword_mithril.png diff --git a/mods/lord/Tools/tools/textures/swords/tools_sword_silver.png b/mods/lord/Items/tools/textures/swords/tools_sword_silver.png similarity index 100% rename from mods/lord/Tools/tools/textures/swords/tools_sword_silver.png rename to mods/lord/Items/tools/textures/swords/tools_sword_silver.png diff --git a/mods/lord/Tools/tools/textures/swords/tools_sword_steel.png b/mods/lord/Items/tools/textures/swords/tools_sword_steel.png similarity index 100% rename from mods/lord/Tools/tools/textures/swords/tools_sword_steel.png rename to mods/lord/Items/tools/textures/swords/tools_sword_steel.png diff --git a/mods/lord/Tools/tools/textures/swords/tools_sword_stone.png b/mods/lord/Items/tools/textures/swords/tools_sword_stone.png similarity index 100% rename from mods/lord/Tools/tools/textures/swords/tools_sword_stone.png rename to mods/lord/Items/tools/textures/swords/tools_sword_stone.png diff --git a/mods/lord/Tools/tools/textures/swords/tools_sword_tin.png b/mods/lord/Items/tools/textures/swords/tools_sword_tin.png similarity index 100% rename from mods/lord/Tools/tools/textures/swords/tools_sword_tin.png rename to mods/lord/Items/tools/textures/swords/tools_sword_tin.png diff --git a/mods/lord/Tools/tools/textures/swords/tools_sword_wood.png b/mods/lord/Items/tools/textures/swords/tools_sword_wood.png similarity index 100% rename from mods/lord/Tools/tools/textures/swords/tools_sword_wood.png rename to mods/lord/Items/tools/textures/swords/tools_sword_wood.png diff --git a/mods/lord/Tools/tools/textures/warhammers/tools_warhammer_bronze.png b/mods/lord/Items/tools/textures/warhammers/tools_warhammer_bronze.png similarity index 100% rename from mods/lord/Tools/tools/textures/warhammers/tools_warhammer_bronze.png rename to mods/lord/Items/tools/textures/warhammers/tools_warhammer_bronze.png diff --git a/mods/lord/Tools/tools/textures/warhammers/tools_warhammer_copper.png b/mods/lord/Items/tools/textures/warhammers/tools_warhammer_copper.png similarity index 100% rename from mods/lord/Tools/tools/textures/warhammers/tools_warhammer_copper.png rename to mods/lord/Items/tools/textures/warhammers/tools_warhammer_copper.png diff --git a/mods/lord/Tools/tools/textures/warhammers/tools_warhammer_galvorn.png b/mods/lord/Items/tools/textures/warhammers/tools_warhammer_galvorn.png similarity index 100% rename from mods/lord/Tools/tools/textures/warhammers/tools_warhammer_galvorn.png rename to mods/lord/Items/tools/textures/warhammers/tools_warhammer_galvorn.png diff --git a/mods/lord/Tools/tools/textures/warhammers/tools_warhammer_gold.png b/mods/lord/Items/tools/textures/warhammers/tools_warhammer_gold.png similarity index 100% rename from mods/lord/Tools/tools/textures/warhammers/tools_warhammer_gold.png rename to mods/lord/Items/tools/textures/warhammers/tools_warhammer_gold.png diff --git a/mods/lord/Tools/tools/textures/warhammers/tools_warhammer_mithril.png b/mods/lord/Items/tools/textures/warhammers/tools_warhammer_mithril.png similarity index 100% rename from mods/lord/Tools/tools/textures/warhammers/tools_warhammer_mithril.png rename to mods/lord/Items/tools/textures/warhammers/tools_warhammer_mithril.png diff --git a/mods/lord/Tools/tools/textures/warhammers/tools_warhammer_silver.png b/mods/lord/Items/tools/textures/warhammers/tools_warhammer_silver.png similarity index 100% rename from mods/lord/Tools/tools/textures/warhammers/tools_warhammer_silver.png rename to mods/lord/Items/tools/textures/warhammers/tools_warhammer_silver.png diff --git a/mods/lord/Tools/tools/textures/warhammers/tools_warhammer_steel.png b/mods/lord/Items/tools/textures/warhammers/tools_warhammer_steel.png similarity index 100% rename from mods/lord/Tools/tools/textures/warhammers/tools_warhammer_steel.png rename to mods/lord/Items/tools/textures/warhammers/tools_warhammer_steel.png diff --git a/mods/lord/Tools/tools/textures/warhammers/tools_warhammer_stone.png b/mods/lord/Items/tools/textures/warhammers/tools_warhammer_stone.png similarity index 100% rename from mods/lord/Tools/tools/textures/warhammers/tools_warhammer_stone.png rename to mods/lord/Items/tools/textures/warhammers/tools_warhammer_stone.png diff --git a/mods/lord/Tools/tools/textures/warhammers/tools_warhammer_tin.png b/mods/lord/Items/tools/textures/warhammers/tools_warhammer_tin.png similarity index 100% rename from mods/lord/Tools/tools/textures/warhammers/tools_warhammer_tin.png rename to mods/lord/Items/tools/textures/warhammers/tools_warhammer_tin.png diff --git a/mods/lord/Tools/tools/textures/warhammers/tools_warhammer_wood.png b/mods/lord/Items/tools/textures/warhammers/tools_warhammer_wood.png similarity index 100% rename from mods/lord/Tools/tools/textures/warhammers/tools_warhammer_wood.png rename to mods/lord/Items/tools/textures/warhammers/tools_warhammer_wood.png diff --git a/mods/lord/Tools/Admin/modpack.conf b/mods/lord/Tools/Admin/modpack.conf deleted file mode 100644 index c83bdbd9a..000000000 --- a/mods/lord/Tools/Admin/modpack.conf +++ /dev/null @@ -1 +0,0 @@ -name = Tools_Admin diff --git a/mods/lord/Tools/modpack.conf b/mods/lord/Tools/modpack.conf deleted file mode 100644 index efc795d1f..000000000 --- a/mods/lord/Tools/modpack.conf +++ /dev/null @@ -1 +0,0 @@ -name = Tools diff --git a/mods/lord/readme.md b/mods/lord/readme.md index de67ee966..6f06641ea 100644 --- a/mods/lord/readme.md +++ b/mods/lord/readme.md @@ -16,7 +16,7 @@ - [`Blocks`](Blocks/readme.md) - блоки/ноды - [`Core`](Core/readme.md) - общего назначения (хелперы, луа-расширение, ...) - [`Player`](Player/readme.md) - инвентарь, внешний вид, HUD, ... - - [`Tools`](Tools/readme.md) - кирки/лопаты/..., мечи/броня/стрелы/..., ... + - [`Items`](Items/readme.md) - кирки/лопаты/..., мечи/броня/стрелы/..., ... - [`World`](World/readme.md) - mapgen'ы, генерящиеся здания, амбиенс, музыка, арены, ... From 1227f0daf60f34bfdd36941030ea5177cb172ba5 Mon Sep 17 00:00:00 2001 From: alek13 Date: Mon, 2 Feb 2026 05:18:08 +0300 Subject: [PATCH 28/79] `ide-helper`: update version with lua_ext helpers. --- util/ide-helper | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/ide-helper b/util/ide-helper index e21367325..1d0043bfe 160000 --- a/util/ide-helper +++ b/util/ide-helper @@ -1 +1 @@ -Subproject commit e21367325ccb69994656a5280e542220d0f1815b +Subproject commit 1d0043bfe743171c5c664e248193e582441ac7a5 From 2034ef28095c20c3a5b7d94b7d7acb31cec655bb Mon Sep 17 00:00:00 2001 From: alek13 Date: Mon, 2 Feb 2026 05:22:04 +0300 Subject: [PATCH 29/79] Gen.Library: move common methods into `Cuboid` instead `Room`. LG-2059 --- .luacheckrc | 5 +- mods/lord/Core/map/src/map/Cuboid.lua | 244 ++++++++++++++++++++--- mods/lord/Core/map/src/map/Room.lua | 145 ++------------ mods/lord/Core/map/src/map/room/Exit.lua | 5 +- mods/lord/Core/map/src/map/room/Wall.lua | 2 +- 5 files changed, 241 insertions(+), 160 deletions(-) diff --git a/.luacheckrc b/.luacheckrc index 265d22fd1..fd35c625c 100644 --- a/.luacheckrc +++ b/.luacheckrc @@ -18,8 +18,9 @@ read_globals = { table = { fields = { --- @deprecated "getn", -- was in Lua, now deprecated TODO: remove usages - -- MT Builtin: - "copy", "indexof", "insert_all", "key_value_swap", + -- Luanti Builtin: + "copy", "copy_with_metatables", "indexof", "insert_all", "key_value_swap", + "pack", "unpack", "packsize", -- our Core/helpers: -- table: "contains", "has_value", "has_key", "merge", "join", "merge_values", diff --git a/mods/lord/Core/map/src/map/Cuboid.lua b/mods/lord/Core/map/src/map/Cuboid.lua index 4bf0fc608..1feb42e48 100644 --- a/mods/lord/Core/map/src/map/Cuboid.lua +++ b/mods/lord/Core/map/src/map/Cuboid.lua @@ -1,31 +1,223 @@ +local setmetatable, vector_sort, vector_in_area, v + = setmetatable, vector.sort, vector.in_area, vector.new + +local WallType = require('map.room.wall.Type') + --- @class Voxrame.map.Cuboid ---- @field public from PositionVector ---- @field public to PositionVector -local Cuboid = {} - --- TODO: --- also needed to create cuboids by `Cuboid:new`, and fix creation of child classes - --- --- @param from Position --- --- @param to Position --- --- @return self --- function Cuboid:new(from, to) --- from, to = vector.sort(from, to) - --- local class = self --- self = {} --- self.from = from --- self.to = to - --- return setmetatable(self, { __index = class }) --- end - --- --- @param position Position --- --- @return boolean --- function Cuboid:contains(position) --- return vector.in_area(position, self.from, self.to) --- end +local Cuboid = { + --- @type PositionVector + from = nil, --- @diagnostic disable-line: assign-type-mismatch + --- @type PositionVector + to = nil, --- @diagnostic disable-line: assign-type-mismatch + --- @type Voxrame.map.room.Walls + walls = nil, --- @diagnostic disable-line: assign-type-mismatch +} + +--- @generic GenericCuboid: Voxrame.map.Cuboid +--- @param child_class GenericCuboid|nil +--- @return GenericCuboid +function Cuboid:extended(child_class) + return setmetatable(child_class or {}, { __index = self }) +end + +--- @param from Position corner where cuboid starts. +--- @param to Position corner where cuboid ends. +--- @param init_walls? boolean initialize `.walls` property for use methods like `get_wall()` +--- @return self +function Cuboid:new(from, to, init_walls) + from, to = vector_sort(from, to) + init_walls = init_walls or false + + local class = self + self = {} + self.from = from + self.to = to + self = setmetatable(self, { __index = class }) + + if init_walls then + self:init_walls() + end + + return self --- @diagnostic disable-line: return-type-mismatch +end + +--- Determines whether the position is inside the cuboid. \ +--- Sides are inclusive. +--- @param position Position +--- @return boolean +function Cuboid:contains(position) + return vector_in_area(position, self.from, self.to) +end + +--- Returns center position of the cuboid. +--- @return PositionVector +function Cuboid:center() + return ((self.from + self.to) / 2):floor() +end + +--- Returns normalized direction-vector from given position to the center of the cuboid. \ +--- If `length` is specified, the resulting vector is scaled to that length. +--- @param position PositionVector +--- @param length? number +--- @return vector +function Cuboid:to_center_from(position, length) + length = length or 1 + + return ((self:center() - position):normalize() * length) +end + +--- Returns normalized direction-vector from the center of the cuboid to the given position. \ +--- If `length` is specified, the resulting vector is scaled to that length. +--- @param position PositionVector +--- @param length? number +--- @return vector +function Cuboid:from_center_to(position, length) + length = length or 1 + + return ((position - self:center()):normalize() * length) +end + +--- @private +--- @return Voxrame.map.room.Walls +function Cuboid:calc_walls() + local f = self.from + local e = self.to + + return { + west = Cuboid:new( v(f.x - 1, f.y - 1, f.z - 1), v(f.x - 1, e.y + 1, e.z + 1) ), + east = Cuboid:new( v(e.x + 1, f.y - 1, f.z - 1), v(e.x + 1, e.y + 1, e.z + 1) ), + south = Cuboid:new( v(f.x - 1, f.y - 1, f.z - 1), v(e.x + 1, e.y + 1, f.z - 1) ), + north = Cuboid:new( v(f.x - 1, f.y - 1, e.z + 1), v(e.x + 1, e.y + 1, e.z + 1) ), + floor = Cuboid:new( v(f.x - 1, f.y - 1, f.z - 1), v(e.x + 1, f.y - 1, e.z + 1) ), + ceiling = Cuboid:new( v(f.x - 1, e.y + 1, f.z - 1), v(e.x + 1, e.y + 1, e.z + 1) ), + } +end + +--- @protected +--- @return self +function Cuboid:init_walls() + self.walls = self:calc_walls() + + return self +end + +--- @param name Voxrame.map.room.wall.Type name of wall. +--- @param inside_room boolean? if true, corners will be shifted one node inside the room. +--- @return Voxrame.map.room.Wall +function Cuboid:wall(name, inside_room) + inside_room = inside_room or false + + self.walls = self.walls or self:calc_walls() + + local wall = self.walls[name] + + if inside_room then + wall = table.copy_with_metatables(wall) + wall.from = wall.from + self:to_center_from(wall.from):sign() + wall.to = wall.to + self:to_center_from(wall.to):sign() + end + + return wall +end + +--- Returns corner positions of specified wall. +--- Requires `.walls` property to be initialized (by calling `:init_walls()`). +--- @param name Voxrame.map.room.wall.Type name of wall. +--- @param inside_room boolean? if true, corners will be shifted one node inside the room. +--- @return PositionVector[] +function Cuboid:get_corners_of(name, inside_room) + inside_room = inside_room or false + + --- @type Voxrame.map.room.Wall + local wall = self:wall(name, inside_room) + local from = wall.from + local to = wall.to + + local corners = {} + if name == WallType.floor or name == WallType.ceiling then + corners = { + from:copy(), + v(from.x, from.y, to.z), + to:copy(), + v(to.x, from.y, from.z), + } + elseif name == WallType.north or name == WallType.south then + corners = { + from:copy(), + v(to.x, from.y, from.z), + to:copy(), + v(from.x, to.y, from.z), + } + elseif name == WallType.west or name == WallType.east then + corners = { + from:copy(), + v(from.x, from.y, to.z), + to:copy(), + v(from.x, to.y, from.z), + } + end + + return corners +end + +--- @param wall_type Voxrame.map.room.wall.Type +--- @return PositionVector +function Cuboid:center_of(wall_type) + return self:wall(wall_type):center() +end + +--- @param side Voxrame.map.room.wall.Type +--- @return PositionVector +function Cuboid:floor_center_of(side) + local position = self:center_of(side) + position.y = self:floor().from.y + 1 + + return position +end + +-- ----------------------------------------------------------------- + +-- #region `:floor()`, `:north()`, ... + +--- @ +--- @param inside_room boolean? +--- @return Voxrame.map.room.Wall +function Cuboid:floor(inside_room) + return self:wall(WallType.floor, inside_room) +end + +--- @param inside_room boolean? +--- @return Voxrame.map.room.Wall +function Cuboid:ceiling(inside_room) + return self:wall(WallType.ceiling, inside_room) +end + +--- @param inside_room boolean? +--- @return Voxrame.map.room.Wall +function Cuboid:north(inside_room) + return self:wall(WallType.north, inside_room) +end + +--- @param inside_room boolean? +--- @return Voxrame.map.room.Wall +function Cuboid:south(inside_room) + return self:wall(WallType.south, inside_room) +end + +--- @param inside_room boolean? +--- @return Voxrame.map.room.Wall +function Cuboid:east(inside_room) + return self:wall(WallType.east, inside_room) +end + +--- @param inside_room boolean? +--- @return Voxrame.map.room.Wall +function Cuboid:west(inside_room) + return self:wall(WallType.west, inside_room) +end + +-- #endregion return Cuboid diff --git a/mods/lord/Core/map/src/map/Room.lua b/mods/lord/Core/map/src/map/Room.lua index 8fc97792f..131e57bdd 100644 --- a/mods/lord/Core/map/src/map/Room.lua +++ b/mods/lord/Core/map/src/map/Room.lua @@ -1,8 +1,7 @@ local setmetatable, v, id = setmetatable, vector.new, core.get_content_id -local WallType = require('map.room.wall.Type') - +local Cuboid = require('map.Cuboid') local id_air = id('air') @@ -10,28 +9,30 @@ local id_air = id('air') --- @abstract --- @class Voxrame.map.Room: Voxrame.map.Cuboid local Room = { - --- @type PositionVector - center = nil, --- @diagnostic disable-line: assign-type-mismatch + --- @readonly + --- @type IntegerVector + size = nil, --- @diagnostic disable-line: assign-type-mismatch + --- @protected --- @type IntegerVector - size = nil, --- @diagnostic disable-line: assign-type-mismatch - --- @type Voxrame.map.room.Walls - walls = nil, --- @diagnostic disable-line: assign-type-mismatch + size_max = nil, --- @diagnostic disable-line: assign-type-mismatch --- @type Voxrame.map.room.Exit[] - exits = nil, --- @diagnostic disable-line: assign-type-mismatch + exits = nil, --- @diagnostic disable-line: assign-type-mismatch --- @protected --- @type VoxelArea - area = nil, --- @diagnostic disable-line: assign-type-mismatch + area = nil, --- @diagnostic disable-line: assign-type-mismatch --- @protected --- @type integer[] - data = nil, --- @diagnostic disable-line: assign-type-mismatch + data = nil, --- @diagnostic disable-line: assign-type-mismatch --- @protected --- @type boolean - debug = false, + debug = false, --- @protected --- @static --- @type integer debug_node_id = 0, } +Cuboid:extended(Room) + core.register_on_mods_loaded(function() Room.debug_node_id = Room.debug_node_id ~= 0 -- already set by another mod? and Room.debug_node_id @@ -55,10 +56,12 @@ end --- @return self function Room:new(position, size) size = size or self.size or v(9, 5, 9) + if self.size_max then + size = size:apply(math.min, self.size_max) + end local class = self self = {} - self.center = position self.size = size self.from = position - (size/2):ceil():subtract(1) self.to = position + (size/2):floor() @@ -74,104 +77,6 @@ function Room:set_debug(debug) return self end ---- @param name Voxrame.map.room.wall.Type name of wall. ---- @param inside_room boolean? if true, corners will be shifted one node inside the room. ---- @return Voxrame.map.room.Wall -function Room:get_wall(name, inside_room) - inside_room = inside_room or false - - local wall = self.walls[name] - - if inside_room then - wall = table.copy(wall) - wall.from = wall.from + self:to_center_from(wall.from):sign() - wall.to = wall.to + self:to_center_from(wall.to):sign() - end - - return wall -end - ---- @param name Voxrame.map.room.wall.Type name of wall. ---- @param inside_room boolean? if true, corners will be shifted one node inside the room. ---- @return PositionVector[] -function Room:get_corners_of(name, inside_room) - inside_room = inside_room or false - - --- @type Voxrame.map.room.Wall - local wall = self.walls[name] - local from = wall.from - local to = wall.to - - local corners = {} - if name == WallType.floor or name == WallType.ceiling then - corners = { - from:copy(), - v(from.x, from.y, to.z), - to:copy(), - v(to.x, from.y, from.z), - } - elseif name == WallType.north or name == WallType.south then - corners = { - from:copy(), - v(to.x, from.y, from.z), - to:copy(), - v(from.x, to.y, from.z), - } - elseif name == WallType.west or name == WallType.east then - corners = { - from:copy(), - v(from.x, from.y, to.z), - to:copy(), - v(from.x, to.y, from.z), - } - end - - if inside_room then - for index, corner in pairs(corners) do - local direction = self:to_center_from(corner):sign() - corners[index] = corner + direction - end - end - - return corners -end - ---- @param wall_type Voxrame.map.room.wall.Type ---- @return PositionVector -function Room:center_of(wall_type) - local wall = self:get_wall(wall_type) - - return ((wall.from + wall.to) / 2):floor() -end - ---- @param side Voxrame.map.room.wall.Type ---- @return PositionVector -function Room:floor_center_of(side) - local position = self:center_of(side) - position.y = self.walls['floor'].from.y + 1 - - return position -end - ---- @param position PositionVector ---- @param length? number ---- @return vector -function Room:to_center_from(position, length) - length = length or 1 - - return ((self.center - position):normalize() * length) -end - ---- @param position PositionVector ---- @param length? number ---- @return vector -function Room:from_center_to(position, length) - length = length or 1 - - return ((position - self.center):normalize() * length) -end - - --- You can override method `:initialize()` for your purposes. --- It will be called before `:do_generation()` inside `generate()` inside `init()` --- @protected @@ -180,24 +85,6 @@ function Room:initialize() return self end ---- @protected ---- @return self -function Room:init_walls() - local s = self.from - local e = self.to - - self.walls = { - west = { from = v(s.x - 1, s.y - 1, s.z - 1), to = v(s.x - 1, e.y + 1, e.z + 1), }, - east = { from = v(e.x + 1, s.y - 1, s.z - 1), to = v(e.x + 1, e.y + 1, e.z + 1), }, - south = { from = v(s.x - 1, s.y - 1, s.z - 1), to = v(e.x + 1, e.y + 1, s.z - 1), }, - north = { from = v(s.x - 1, s.y - 1, e.z + 1), to = v(e.x + 1, e.y + 1, e.z + 1), }, - floor = { from = v(s.x - 1, s.y - 1, s.z - 1), to = v(e.x + 1, s.y - 1, e.z + 1), }, - ceiling = { from = v(s.x - 1, e.y + 1, s.z - 1), to = v(e.x + 1, e.y + 1, e.z + 1), }, - } - - return self -end - --- @private --- @return self function Room:init() @@ -221,7 +108,7 @@ function Room:debug_things() return self end - local center = self.center + local center = self:center() local node_id = self.debug_node_id self.area :set_node_at(center + v(1, 0, 0), node_id) diff --git a/mods/lord/Core/map/src/map/room/Exit.lua b/mods/lord/Core/map/src/map/room/Exit.lua index 4fc167b8e..f2d160961 100644 --- a/mods/lord/Core/map/src/map/room/Exit.lua +++ b/mods/lord/Core/map/src/map/room/Exit.lua @@ -5,8 +5,9 @@ local WallType = require('map.room.wall.Type') --- @class Voxrame.map.room.Exit ---- @field public direction vector direction from room to outside (normalized). ---- @field public frame Voxrame.map.Cuboid coordinates of exit frame. If only `to` is set, its used to store size. +--- @field public direction vector direction from room to outside (normalized). +--- @field public frame {from:IntegerVector,to:IntegerVector} Exit frame coordinates. \ +--- If only `frame.to` is set, its used to store size. local Exit = {} --- @protected diff --git a/mods/lord/Core/map/src/map/room/Wall.lua b/mods/lord/Core/map/src/map/room/Wall.lua index 3c06f7dff..b8f3f73e1 100644 --- a/mods/lord/Core/map/src/map/room/Wall.lua +++ b/mods/lord/Core/map/src/map/room/Wall.lua @@ -3,7 +3,7 @@ local Cuboid = require('map.Cuboid') --- @class Voxrame.map.room.Wall: Voxrame.map.Cuboid local Wall = {} -setmetatable(Wall, { __index = Cuboid }) +Cuboid:extended(Wall) return Wall From 5e24511ca615dd27b6b043bd06cfa6ecc83e0973 Mon Sep 17 00:00:00 2001 From: alek13 Date: Sun, 8 Feb 2026 16:34:46 +0300 Subject: [PATCH 30/79] `helpers`: add `debug.mesure(name, callback, print_result)` & `debug.mesure_print(name)`. --- .luacheckrc | 3 +- mods/lord/Core/helpers/src/lua_ext/debug.lua | 57 +++++++++++++++++++- 2 files changed, 57 insertions(+), 3 deletions(-) diff --git a/.luacheckrc b/.luacheckrc index fd35c625c..9a71522e7 100644 --- a/.luacheckrc +++ b/.luacheckrc @@ -57,7 +57,8 @@ read_globals = { debug = { fields = { -- our Core/helpers: - "get_function_code", "get_passed_params", "get_file_code" + "get_function_code", "get_passed_params", "get_file_code", + "mesure", "mesure_print" } }, -- Builtin diff --git a/mods/lord/Core/helpers/src/lua_ext/debug.lua b/mods/lord/Core/helpers/src/lua_ext/debug.lua index 0a72d148f..2b1434e0f 100644 --- a/mods/lord/Core/helpers/src/lua_ext/debug.lua +++ b/mods/lord/Core/helpers/src/lua_ext/debug.lua @@ -1,5 +1,5 @@ -local debug_getinfo - = debug.getinfo +local debug_getinfo, math_ceil + = debug.getinfo, math.ceil local PROJECT_LOCATION = '' @@ -248,3 +248,56 @@ function core.error_handler(message, depth) return original_error_handler(message, depth) end end + +--- @type number[string] +local mesure_average = {} +--- @type number[string] +local mesure_count = {} + +--- Measures time and average time of `callback` function execution. \ +--- Prints result if `print_result` is `true`. +--- +--- @param name string ununique name of mesure +--- @param callback fun() function to mesure time of +--- @param print_result? boolean whether to print result +--- +--- @return number, number, number +function debug.mesure(name, callback, print_result) + local start = os.clock() + + callback() + + local time = math_ceil((os.clock() - start) * 1000) + if not mesure_average[name] then + mesure_average[name] = 0 + mesure_count [name] = 0 + end + mesure_average[name] = math_ceil((mesure_average[name] * mesure_count[name] + time) / (mesure_count[name] + 1)) + mesure_count [name] = mesure_count[name] + 1 + + if print_result then + -- Print mesure and average aligning them one under another + local average = mesure_average[name] + local average_str = (' '):rep(5 - #tostring(average)) .. average + local time_str = (' '):rep(5 - #tostring(time)) .. time + + print('Mesure of [' .. name .. ']: Time: ' .. time_str .. ' ms ; Average: ' .. average_str .. ' ms') + end + + return time, mesure_average[name], mesure_count[name] +end + +--- Prints results of previous `debug.mesure()` +--- +--- @param name string ununique name of mesure +function debug.mesure_print(name) + if not mesure_average[name] then + print('Mesure of [' .. name .. ']: No mesure found') + + return + end + + local average_str = (' '):rep(5 - #tostring(mesure_average[name])) .. mesure_average[name] + local count_str = (' '):rep(5 - #tostring(mesure_count[name])) .. mesure_count[name] + print('Mesure of [' .. name .. ']: Average time: ' .. average_str .. ' ms ; Count of mesures: ' .. count_str) +end From 9c425d2ca40388c1cbe36fd7445c8aa5024fdf08 Mon Sep 17 00:00:00 2001 From: alek13 Date: Sun, 8 Feb 2026 23:16:21 +0300 Subject: [PATCH 31/79] Gen.Library: `VoxelArea`: add `:get_node_{id|name}_at()`. Relates to LG-2049 LG-1829. --- .../Core/builtin_ext/src/map/VoxelArea.lua | 34 ++++++++++++++++--- 1 file changed, 30 insertions(+), 4 deletions(-) diff --git a/mods/lord/Core/builtin_ext/src/map/VoxelArea.lua b/mods/lord/Core/builtin_ext/src/map/VoxelArea.lua index be799ec5e..3cb5c034b 100644 --- a/mods/lord/Core/builtin_ext/src/map/VoxelArea.lua +++ b/mods/lord/Core/builtin_ext/src/map/VoxelArea.lua @@ -1,5 +1,7 @@ -local type, math_floor, math_random, math_is_among, vector_sort, v, id - = type, math.floor, math.random, math.is_among, vector.sort, vector.new, core.get_content_id +local type, math_floor, math_random, math_is_among, vector_sort, v + = type, math.floor, math.random, math.is_among, vector.sort, vector.new +local id, name_by_id + = core.get_content_id, core.get_name_from_content_id local id_air = id('air') @@ -57,14 +59,38 @@ function VoxelArea:foreach(from, to, callback) to = self.MaxEdge end - local data = self.data for i in self:iterp(from, to) do - if callback(i, data) then break end + if callback(i, self.data, self.data_param2, self.data_light) then + break + end end return self end +--- Returns the node ID at the specified position. +--- @param position Position +--- @return integer?, integer?, integer? +function VoxelArea:get_node_id_at(position, with_param2, with_light) + local i = self:indexp(position) + + return + self.data[i], + with_param2 and self.data_param2[i], + with_light and self.data_light[i] +end + +--- Returns the node name at the specified position. +--- Prefer to use `get_node_id_at()` and compare with preloaded node IDs. +--- +--- @param position Position +--- @return string?, integer?, integer? +function VoxelArea:get_node_name_at(position, with_param2, with_light) + local node_id, param2, light = self:get_node_id_at(position, with_param2, with_light) + + return name_by_id(node_id), param2, light +end + --- Sets the node at the specified position to the given node ID. --- Preloaded node IDs are recommended for better performance; use `core.get_content_id(name)` to preload. --- @param position Position From da011ce94de2cf9bf9931d30c692edb7a2f774b6 Mon Sep 17 00:00:00 2001 From: alek13 Date: Mon, 9 Feb 2026 01:10:31 +0300 Subject: [PATCH 32/79] `ide-helper`: update to last nightly version with: > Make `ObjectProperties` fields optional > More strict verification via `emmylua_check` (add `--warnings-as-errors`). > Add forgotten `@meta` for `classes/ItemStack.lua`. > `VoxelArea`: fix return types for iterators. --- util/ide-helper | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/ide-helper b/util/ide-helper index 1d0043bfe..e5a12d31b 160000 --- a/util/ide-helper +++ b/util/ide-helper @@ -1 +1 @@ -Subproject commit 1d0043bfe743171c5c664e248193e582441ac7a5 +Subproject commit e5a12d31babc80d125c6a37185edb52a58023b51 From 237e2be84123c9847af61dab54820cb334fee7b9 Mon Sep 17 00:00:00 2001 From: alek13 Date: Wed, 11 Feb 2026 07:50:26 +0300 Subject: [PATCH 33/79] `helpers`: `debug.measure()` also returns `print_string`; fix all diagnostic warnings --- .luacheckrc | 2 +- mods/lord/Core/helpers/src/lua_ext/debug.lua | 72 +++++++++++--------- 2 files changed, 41 insertions(+), 33 deletions(-) diff --git a/.luacheckrc b/.luacheckrc index 9a71522e7..545af5f05 100644 --- a/.luacheckrc +++ b/.luacheckrc @@ -58,7 +58,7 @@ read_globals = { debug = { fields = { -- our Core/helpers: "get_function_code", "get_passed_params", "get_file_code", - "mesure", "mesure_print" + "measure", "measure_print" } }, -- Builtin diff --git a/mods/lord/Core/helpers/src/lua_ext/debug.lua b/mods/lord/Core/helpers/src/lua_ext/debug.lua index 2b1434e0f..7f14a00d0 100644 --- a/mods/lord/Core/helpers/src/lua_ext/debug.lua +++ b/mods/lord/Core/helpers/src/lua_ext/debug.lua @@ -8,7 +8,7 @@ local debug_mode = minetest.settings:get_bool('debug', false) local x_scheme_tpl = debug_mode and minetest.settings:get('debug.editor_x_scheme_tpl') or nil --- @param file_full string ---- @param line number +--- @param line integer --- @return string local function get_x_scheme_url(file_full, line) local file_relative = file_full:replace(PROJECT_LOCATION:reg_escape(), '') @@ -21,7 +21,7 @@ local function get_x_scheme_url(file_full, line) end --- @param file_full string ---- @param line number +--- @param line integer --- @return string local function get_file_line_term_string(file_full, line) local file = file_full:replace(PROJECT_LOCATION:reg_escape(), '') @@ -42,6 +42,7 @@ end --- @return string function __FILE__(depth, full) -- luacheck: ignore unused global variable __FILE__ full = full or false + --- @diagnostic disable-next-line: need-check-nil local full_file = debug_getinfo(2 + (depth or 0), 'S').source:replace('^@', '') return full @@ -50,9 +51,9 @@ function __FILE__(depth, full) -- luacheck: ignore unused global variable __FILE end --- @param depth? integer Call stack nesting level (default: `0`) ---- @return number +--- @return integer function __LINE__(depth) -- luacheck: ignore unused global variable __LINE__ - return debug_getinfo(2 + (depth or 0), 'l').currentline + return debug_getinfo(2 + (depth or 0), 'l').currentline --- @diagnostic disable-line: need-check-nil end --- @param depth? integer Call stack nesting level (default: `0`) @@ -66,7 +67,7 @@ end --- @param depth? integer Call stack nesting level (default: `0`) --- @return string function __FUNC__(depth) -- luacheck: ignore unused global variable __FUNC__ - return debug_getinfo(2 + (depth or 0), 'n').name + return debug_getinfo(2 + (depth or 0), 'n').name --- @diagnostic disable-line: need-check-nil end --- @param depth? integer Call stack nesting level (default: `0`) @@ -119,8 +120,8 @@ function debug.get_passed_params(line_code) end --- @param file string ---- @param line_from number 1-based line number ---- @param line_to? number default: `line_from` +--- @param line_from integer 1-based line number +--- @param line_to? integer default: `line_from` --- @return string function debug.get_file_code(file, line_from, line_to) line_to = line_to or line_from @@ -139,13 +140,14 @@ end --- @param func function --- @return string function debug.get_function_code(func) - local func_info = debug_getinfo(func) + local func_info = debug_getinfo(func) --- @as debuglib.DebugInfo local name = func_info.source:replace('^@','') return debug.get_file_code(name, func_info.linedefined, func_info.lastlinedefined) or '' end ---- @param depth? number +--- @param depth? integer Call stack nesting level (default: `0`) +--- @return string local function backtrace(depth) depth = depth or 0 depth = depth + 2 @@ -180,7 +182,7 @@ end --- --- If your terminal supports links, every `@ :` will linked to open IDE, see `readme.md` to configure. --- ---- @param depth? number call stack depth to start from +--- @param depth? integer call stack depth to start from --- @param with_trace? boolean print trace or not --- @param ... any params to dump function print_dump(depth, with_trace, ...) @@ -228,7 +230,7 @@ end local original_error_handler = core.error_handler ---@overload fun(message:string) ---@param message string ----@param depth number +---@param depth integer function core.error_handler(message, depth) depth = depth or 0 message = message or term.stylize('~ no error message ~', term.style.italic .. term.style.red) @@ -250,9 +252,11 @@ function core.error_handler(message, depth) end --- @type number[string] -local mesure_average = {} +local measure_average = {} --- @type number[string] -local mesure_count = {} +local measure_count = {} +--- @type number[string] +local measure_last = {} --- Measures time and average time of `callback` function execution. \ --- Prints result if `print_result` is `true`. @@ -261,43 +265,47 @@ local mesure_count = {} --- @param callback fun() function to mesure time of --- @param print_result? boolean whether to print result --- ---- @return number, number, number -function debug.mesure(name, callback, print_result) +--- @return number, number, number, string? # time, average time, count of mesures, print string if not `print_result` +function debug.measure(name, callback, print_result) local start = os.clock() + if not measure_average[name] then + measure_average[name] = 0 + measure_count [name] = 0 + end callback() local time = math_ceil((os.clock() - start) * 1000) - if not mesure_average[name] then - mesure_average[name] = 0 - mesure_count [name] = 0 - end - mesure_average[name] = math_ceil((mesure_average[name] * mesure_count[name] + time) / (mesure_count[name] + 1)) - mesure_count [name] = mesure_count[name] + 1 + + measure_average[name] = math_ceil((measure_average[name] * measure_count[name] + time) / (measure_count[name] + 1)) + measure_count [name] = measure_count[name] + 1 + measure_last [name] = time + + -- Align results to make them one under another + local print_string = ('Measure of [%s]: Time: %5.0f ms ; Average: %5.0f ms') + :format(name, time, measure_average[name]) if print_result then - -- Print mesure and average aligning them one under another - local average = mesure_average[name] - local average_str = (' '):rep(5 - #tostring(average)) .. average - local time_str = (' '):rep(5 - #tostring(time)) .. time + print(print_string) - print('Mesure of [' .. name .. ']: Time: ' .. time_str .. ' ms ; Average: ' .. average_str .. ' ms') + return time, measure_average[name], measure_count[name] end - return time, mesure_average[name], mesure_count[name] + return time, measure_average[name], measure_count[name], print_string end --- Prints results of previous `debug.mesure()` --- --- @param name string ununique name of mesure function debug.mesure_print(name) - if not mesure_average[name] then - print('Mesure of [' .. name .. ']: No mesure found') + if not measure_average[name] then + print('Measure of [' .. name .. ']: No mesure found') return end - local average_str = (' '):rep(5 - #tostring(mesure_average[name])) .. mesure_average[name] - local count_str = (' '):rep(5 - #tostring(mesure_count[name])) .. mesure_count[name] - print('Mesure of [' .. name .. ']: Average time: ' .. average_str .. ' ms ; Count of mesures: ' .. count_str) + print( + ('Measure of [%s]: Average time: %5.0f ms ; Last time: %5.0f ms ; Count of mesures: %5.0f') + :format(name, measure_average[name], measure_last[name], measure_count[name]) + ) end From 4e63b4b60f4c56bd7d58887f777da27a3c87ce5e Mon Sep 17 00:00:00 2001 From: alek13 Date: Wed, 11 Feb 2026 08:02:12 +0300 Subject: [PATCH 34/79] `builtin_ext`: add `minetest.Mod:measure()` which is measures only if debug mod for mod is on --- mods/lord/Core/builtin_ext/src/mod.lua | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/mods/lord/Core/builtin_ext/src/mod.lua b/mods/lord/Core/builtin_ext/src/mod.lua index d682d4bb6..fae589eae 100644 --- a/mods/lord/Core/builtin_ext/src/mod.lua +++ b/mods/lord/Core/builtin_ext/src/mod.lua @@ -34,6 +34,7 @@ end --- @field translator fun(str: string, ...):string translator for this mod --- @field logger helpers.Logger lazy loaded logger instance for this mod --- @field settings Voxrame.mod.Settings lazy loaded settings for this mod +--- @field measure fun(self:self, name:string, callback:fun(), print_result?:boolean) time and avg t. of `callback` --- @param mod_init_function fun(mod:minetest.Mod) function minetest.mod(mod_init_function) @@ -51,7 +52,14 @@ function minetest.mod(mod_init_function) path = mod_path, debug = mod_debug, require = require, - translator = Translator.get() + translator = Translator.get(), + measure = function(self, name, callback, print_result) + if not self.debug then + return callback() + end + + return debug.measure(name, callback, print_result or true) + end }, { -- Lazy Loading __index = function(self, key) From 48b0ded46d50c24203a078eb33727f1266a23f40 Mon Sep 17 00:00:00 2001 From: alek13 Date: Wed, 11 Feb 2026 08:19:37 +0300 Subject: [PATCH 35/79] `icicles`: speed up generation up to 10 times --- .../Generation/Caves/icicles/src/icicles.lua | 20 ++++- .../Caves/icicles/src/icicles/MapGen.lua | 76 ++++++++++++------- .../Caves/icicles/src/icicles/Nodes.lua | 13 +++- 3 files changed, 74 insertions(+), 35 deletions(-) diff --git a/mods/lord/World/Generation/Caves/icicles/src/icicles.lua b/mods/lord/World/Generation/Caves/icicles/src/icicles.lua index 073c3ea45..7fab2b129 100644 --- a/mods/lord/World/Generation/Caves/icicles/src/icicles.lua +++ b/mods/lord/World/Generation/Caves/icicles/src/icicles.lua @@ -3,19 +3,31 @@ local Nodes = require('icicles.Nodes') local MapGen = require('icicles.MapGen') +--- Register icicle nodes and return ids of them. +--- @return integer[string] local function register_nodes() + local icicles_ids = {} for _, rock_name in pairs(config.rocks) do - Nodes.register(rock_name) + local ids = Nodes.register(rock_name) + icicles_ids = table.merge(icicles_ids, ids) end + + return icicles_ids end return { --- @param mod minetest.Mod init = function(mod) - register_nodes() - minetest.register_on_generated(function(min_pos, max_pos, seed) - MapGen.generate(min_pos, max_pos, seed) + + MapGen.id_icicle = register_nodes() + + core.register_on_generated(function(min_pos, max_pos, seed) + mod:measure('Icicles Gen', function() + core.with_map_part_do(min_pos, max_pos, function(area, data) + MapGen:new(area, data):generate(min_pos, max_pos, seed) + end, true, true) + end) end) end } diff --git a/mods/lord/World/Generation/Caves/icicles/src/icicles/MapGen.lua b/mods/lord/World/Generation/Caves/icicles/src/icicles/MapGen.lua index 9f270b5ef..5715aa258 100644 --- a/mods/lord/World/Generation/Caves/icicles/src/icicles/MapGen.lua +++ b/mods/lord/World/Generation/Caves/icicles/src/icicles/MapGen.lua @@ -1,5 +1,5 @@ -local minetest_get_node, minetest_set_node, math_min, math_max, math_floor, v - = minetest.get_node, minetest.set_node, math.min, math.max, math.floor, vector.new +local math_min, math_max, math_floor, math_random, v, id + = math.min, math.max, math.floor, math.random, vector.new, core.get_content_id local config = require('icicles.config') @@ -12,12 +12,34 @@ local icicles_per_chunk = config.map_gen.icicles_per_chunk local height_min = config.map_gen.height_min local height_max = config.map_gen.height_max +local id_air = id('air') + --- @class icicles.MapGen -local MapGen = {} +local MapGen = { + --- @type VoxelArea + area = nil, --- @diagnostic disable-line: assign-type-mismatch + --- @type integer[] + data = nil, --- @diagnostic disable-line: assign-type-mismatch + --- @static + --- @type integer[string] + id_icicle = {}, +} + +--- @param area VoxelArea +--- @param data integer[] +--- +--- @return self +function MapGen:new(area, data) + self = setmetatable({}, { __index = self }) + self.area = area + self.data = data + + return self +end --- @param callback fun(dx:number, dy:number, dz:number) -function MapGen.foreach_pos_in_chunk(callback) +function MapGen:foreach_pos_in_chunk(callback) for dx = 0, chunk_size - 1 do for dy = 0, chunk_size - 1 do for dz = 0, chunk_size - 1 do @@ -27,74 +49,72 @@ function MapGen.foreach_pos_in_chunk(callback) end end ---- @param pos Position +--- @param pos PositionVector --- @param length number -function MapGen.make_stalactite(pos, rock_name, length) +function MapGen:make_stalactite(pos, rock_name, length) local icicle_name_prefix = config_icicle_prefix[rock_name] for i = length, 1, -1 do - local under_pos = v(pos) + v(0, - i + 1, 0) - if minetest_get_node(under_pos).name ~= 'air' then + local under_pos = pos + v(0, - i + 1, 0) + if self.area:get_node_id_at(under_pos) ~= id_air then return end - minetest_set_node(under_pos, { name = icicle_name_prefix .. 5 - i }) + self.area:set_node_at(under_pos, self.id_icicle[icicle_name_prefix .. 5 - i]) end end ---- @param pos Position +--- @param pos PositionVector --- @param length number -function MapGen.make_stalagmite(pos, rock_name, length) +function MapGen:make_stalagmite(pos, rock_name, length) local icicle_name_prefix = config_icicle_prefix[rock_name] for i = 1, length do local above_pos = v(pos) + v(0, i - 1, 0) - if minetest_get_node(above_pos).name ~= 'air' then + if self.area:get_node_id_at(above_pos) ~= id_air then return end - minetest_set_node(above_pos, { name = icicle_name_prefix .. 5 - i, param2 = 1 }) + self.area:set_node_at(above_pos, self.id_icicle[icicle_name_prefix .. 5 - i], 1) end end ---@param min_pos Position ---@param max_pos Position ---@param seed number -function MapGen.generate(min_pos, max_pos, seed) +function MapGen:generate(min_pos, max_pos, seed) if max_pos.y < height_min or min_pos.y > height_max then return end local y_min = math_max(min_pos.y, height_min) local y_max = math_min(max_pos.y, height_max) local volume = (max_pos.x - min_pos.x + 1) * (y_max - y_min + 1) * (max_pos.z - min_pos.z + 1) - local pr = PseudoRandom(seed) local num_chunks = math_floor(chunks_per_volume * volume) local inverse_chance = math_floor(chunk_size * chunk_size * chunk_size / icicles_per_chunk) for i = 1, num_chunks do - local y0 = pr:next(y_min, y_max - chunk_size + 1) + local y0 = math_random(y_min, y_max - chunk_size + 1) if y0 >= height_min and y0 <= height_max and (y0 + 2) % 16 ~= 0 then - local x0 = pr:next(min_pos.x, max_pos.x - chunk_size + 1) - local z0 = pr:next(min_pos.z, max_pos.z - chunk_size + 1) + local x0 = math_random(min_pos.x, max_pos.x - chunk_size + 1) + local z0 = math_random(min_pos.z, max_pos.z - chunk_size + 1) local chunk_start_pos = v(x0, y0, z0) - MapGen.foreach_pos_in_chunk(function(dx, dy, dz) - if pr:next(1, inverse_chance) ~= 1 then + self:foreach_pos_in_chunk(function(dx, dy, dz) + if math_random(1, inverse_chance) ~= 1 then return end local cur_pos = chunk_start_pos + v(dx, dy, dz) - local above_pos = cur_pos + v(0, 1, 0) - local under_pos = cur_pos - v(0, 1, 0) - - if minetest_get_node(cur_pos).name == 'air' then + local above_pos = cur_pos:above() + local under_pos = cur_pos:under() - local above_node_name = minetest_get_node(above_pos).name + if self.area:get_node_id_at(cur_pos) == id_air then + local above_node_name = self.area:get_node_name_at(above_pos) --[[@as string]] if above_node_name:is_one_of(config_rocks) then - MapGen.make_stalactite(cur_pos, above_node_name, pr:next(2, 4)) + self:make_stalactite(cur_pos, above_node_name, math_random(2, 4)) return end - local under_node_name = minetest_get_node(under_pos).name + local under_node_name = self.area:get_node_name_at(under_pos) --[[@as string]] if under_node_name:is_one_of(config_rocks) then - MapGen.make_stalagmite(cur_pos, under_node_name, pr:next(2, 4)) + self:make_stalagmite(cur_pos, under_node_name, math_random(2, 4)) return end diff --git a/mods/lord/World/Generation/Caves/icicles/src/icicles/Nodes.lua b/mods/lord/World/Generation/Caves/icicles/src/icicles/Nodes.lua index 1c6f8c3b6..8c999e654 100644 --- a/mods/lord/World/Generation/Caves/icicles/src/icicles/Nodes.lua +++ b/mods/lord/World/Generation/Caves/icicles/src/icicles/Nodes.lua @@ -9,7 +9,6 @@ local Nodes = {} --- @param rock_definition NodeDefinition node definition of rock. --- @return string function Nodes.get_drop_item(rock_name, rock_definition) - --- @type string|table local drop = rock_definition.drop if not drop then @@ -21,18 +20,22 @@ function Nodes.get_drop_item(rock_name, rock_definition) and drop.items.items[1] or rock_name end + + return rock_name end --- @static --- @param rock_name string tech name of material node +--- @return integer[string] function Nodes.register(rock_name) local rock_definition = minetest.registered_nodes[rock_name] assert(rock_definition and type(rock_definition) == 'table', 'undefined rock: ' .. rock_name) - local node_name_prefix = 'icicles:' .. rock_name:replace(':', '_') + local ids = {} for i = 1, 4 do - minetest.register_node(node_name_prefix .. '_' .. i, { + local name = node_name_prefix .. '_' .. i + minetest.register_node(name, { description = 'Icicle ' .. i, groups = { cracky = 3, icicle = 1, oddly_breakable_by_hand = 4 - i, drop_on_dig = 1, attached_node = 1 @@ -61,7 +64,11 @@ function Nodes.register(rock_name) fixed = { -i / 10, -0.5, -i / 10, i / 10, 0.5, i / 10 } }, }) + + ids[name] = core.get_content_id(name) end + + return ids end From d17110c070c142b9168d4997ed89222712c600fb Mon Sep 17 00:00:00 2001 From: alek13 Date: Wed, 11 Feb 2026 10:36:59 +0300 Subject: [PATCH 36/79] Annotations: `buildings`: fix emmylua warnings. --- mods/lord/Core/builtin_ext/src/map/dungeons_gen.lua | 4 ++-- .../World/Generation/buildings/src/dungeons/interior.lua | 2 +- .../World/Generation/buildings/src/dungeons/remains.lua | 6 +++--- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/mods/lord/Core/builtin_ext/src/map/dungeons_gen.lua b/mods/lord/Core/builtin_ext/src/map/dungeons_gen.lua index 535cabbd9..2f5fec0a8 100644 --- a/mods/lord/Core/builtin_ext/src/map/dungeons_gen.lua +++ b/mods/lord/Core/builtin_ext/src/map/dungeons_gen.lua @@ -28,8 +28,8 @@ local MAX_NODES_TO_WALL = math.ceil((8 + 16 + 13) / 2) local MAX_NODES_TO_CEIL = 8 + 16 + 2 --- @class RoomWall ---- @field start_pos vector ---- @field end_pos vector +--- @field start_pos PositionVector +--- @field end_pos PositionVector --- @class RoomWalls --- @field north RoomWall diff --git a/mods/lord/World/Generation/buildings/src/dungeons/interior.lua b/mods/lord/World/Generation/buildings/src/dungeons/interior.lua index 79f1aaa15..09167a90b 100644 --- a/mods/lord/World/Generation/buildings/src/dungeons/interior.lua +++ b/mods/lord/World/Generation/buildings/src/dungeons/interior.lua @@ -208,7 +208,7 @@ end --- @param rooms_walls RoomWalls[] function Interior:generate(rooms_centers, rooms_walls) for i, room_center in pairs(rooms_centers) do - --- @type RoomWalls + --- @type RoomWalls|table local room_walls = rooms_walls[i] or {} if (math_random(INTERIOR_CHANCE) == 1 and not table_is_empty(room_walls)) then self:place_room_interior(room_walls, room_center) diff --git a/mods/lord/World/Generation/buildings/src/dungeons/remains.lua b/mods/lord/World/Generation/buildings/src/dungeons/remains.lua index a4c5c4709..739208682 100644 --- a/mods/lord/World/Generation/buildings/src/dungeons/remains.lua +++ b/mods/lord/World/Generation/buildings/src/dungeons/remains.lua @@ -83,10 +83,10 @@ end --- @param rooms_centers Position[] --- @param rooms_walls RoomWalls[] ---- @param tomb_room_index number room index, where tomb was placed or `nil` +--- @param tomb_room_index number? room index, where tomb was placed or `nil` function Remains:generate(rooms_centers, rooms_walls, tomb_room_index) for i, room_center in pairs(rooms_centers) do - --- @type RoomWalls + --- @type RoomWalls|table local room_walls = rooms_walls[i] or {} if not table_is_empty(room_walls) then if i == tomb_room_index then @@ -107,7 +107,7 @@ return { --- @param area VoxelArea --- @param rooms_centers Position[] --- @param rooms_walls RoomWalls[] - --- @param tomb_room_index number room index, where tomb was placed or `nil` + --- @param tomb_room_index number|nil room index, where tomb was placed or `nil` on_dungeon_generated = function(min_pos, max_pos, data, param2_data, area, rooms_centers, rooms_walls, tomb_room_index) if max_pos.y > REMAINS_Y_MAX then return From cf6b8bbc6a5f23165dc82c39032607c96894ef2c Mon Sep 17 00:00:00 2001 From: alek13 Date: Wed, 11 Feb 2026 11:09:03 +0300 Subject: [PATCH 37/79] Refactoring: buildings: dwafven dungeons: rename files. Relates to LG-2052 --- mods/lord/World/Generation/buildings/init.lua | 2 +- .../buildings/src/{dungeons.lua => dwarven.lua} | 8 ++++---- .../buildings/src/{dungeons => dwarven}/dwarf_tomb.lua | 0 .../buildings/src/{dungeons => dwarven}/interior.lua | 0 .../buildings/src/{dungeons => dwarven}/remains.lua | 0 .../buildings/src/{dungeons => dwarven}/walls.lua | 0 6 files changed, 5 insertions(+), 5 deletions(-) rename mods/lord/World/Generation/buildings/src/{dungeons.lua => dwarven.lua} (72%) rename mods/lord/World/Generation/buildings/src/{dungeons => dwarven}/dwarf_tomb.lua (100%) rename mods/lord/World/Generation/buildings/src/{dungeons => dwarven}/interior.lua (100%) rename mods/lord/World/Generation/buildings/src/{dungeons => dwarven}/remains.lua (100%) rename mods/lord/World/Generation/buildings/src/{dungeons => dwarven}/walls.lua (100%) diff --git a/mods/lord/World/Generation/buildings/init.lua b/mods/lord/World/Generation/buildings/init.lua index b23020f15..619ddbdb8 100644 --- a/mods/lord/World/Generation/buildings/init.lua +++ b/mods/lord/World/Generation/buildings/init.lua @@ -1,5 +1,5 @@ minetest.mod(function(mod) - require('dungeons') + require('dwarven') end) diff --git a/mods/lord/World/Generation/buildings/src/dungeons.lua b/mods/lord/World/Generation/buildings/src/dwarven.lua similarity index 72% rename from mods/lord/World/Generation/buildings/src/dungeons.lua rename to mods/lord/World/Generation/buildings/src/dwarven.lua index 1214f4263..bffbdcd69 100644 --- a/mods/lord/World/Generation/buildings/src/dungeons.lua +++ b/mods/lord/World/Generation/buildings/src/dwarven.lua @@ -1,7 +1,7 @@ -local dwarf_tomb = require('dungeons.dwarf_tomb') -local walls = require('dungeons.walls') -local interior = require('dungeons.interior') -local remains = require('dungeons.remains') +local dwarf_tomb = require('dwarven.dwarf_tomb') +local walls = require('dwarven.walls') +local interior = require('dwarven.interior') +local remains = require('dwarven.remains') minetest.register_on_dungeon_generated(function(minp, maxp, data, param2_data, area, rooms_centers, rooms_walls) diff --git a/mods/lord/World/Generation/buildings/src/dungeons/dwarf_tomb.lua b/mods/lord/World/Generation/buildings/src/dwarven/dwarf_tomb.lua similarity index 100% rename from mods/lord/World/Generation/buildings/src/dungeons/dwarf_tomb.lua rename to mods/lord/World/Generation/buildings/src/dwarven/dwarf_tomb.lua diff --git a/mods/lord/World/Generation/buildings/src/dungeons/interior.lua b/mods/lord/World/Generation/buildings/src/dwarven/interior.lua similarity index 100% rename from mods/lord/World/Generation/buildings/src/dungeons/interior.lua rename to mods/lord/World/Generation/buildings/src/dwarven/interior.lua diff --git a/mods/lord/World/Generation/buildings/src/dungeons/remains.lua b/mods/lord/World/Generation/buildings/src/dwarven/remains.lua similarity index 100% rename from mods/lord/World/Generation/buildings/src/dungeons/remains.lua rename to mods/lord/World/Generation/buildings/src/dwarven/remains.lua diff --git a/mods/lord/World/Generation/buildings/src/dungeons/walls.lua b/mods/lord/World/Generation/buildings/src/dwarven/walls.lua similarity index 100% rename from mods/lord/World/Generation/buildings/src/dungeons/walls.lua rename to mods/lord/World/Generation/buildings/src/dwarven/walls.lua From 6fcc3dd58b807d77a10866cf9c9bf3abe925e630 Mon Sep 17 00:00:00 2001 From: alek13 Date: Wed, 11 Feb 2026 13:55:31 +0300 Subject: [PATCH 38/79] Gen.Library: usage example on Orcish Dungeon. LG-2052 --- mods/lord/World/Generation/buildings/init.lua | 4 + .../World/Generation/buildings/src/orcish.lua | 31 ++++ .../buildings/src/orcish/Dungeon.lua | 63 ++++++++ .../buildings/src/orcish/Room/Main.lua | 138 ++++++++++++++++++ .../textures/buildings_dungeon_orcish.png | Bin 0 -> 164 bytes 5 files changed, 236 insertions(+) create mode 100644 mods/lord/World/Generation/buildings/src/orcish.lua create mode 100644 mods/lord/World/Generation/buildings/src/orcish/Dungeon.lua create mode 100644 mods/lord/World/Generation/buildings/src/orcish/Room/Main.lua create mode 100644 mods/lord/World/Generation/buildings/textures/buildings_dungeon_orcish.png diff --git a/mods/lord/World/Generation/buildings/init.lua b/mods/lord/World/Generation/buildings/init.lua index 619ddbdb8..2949a3b65 100644 --- a/mods/lord/World/Generation/buildings/init.lua +++ b/mods/lord/World/Generation/buildings/init.lua @@ -2,4 +2,8 @@ minetest.mod(function(mod) require('dwarven') + + if mod.settings:get_bool('toggle_dungeons', false) then + require('orcish').init(mod) + end end) diff --git a/mods/lord/World/Generation/buildings/src/orcish.lua b/mods/lord/World/Generation/buildings/src/orcish.lua new file mode 100644 index 000000000..5a22e2425 --- /dev/null +++ b/mods/lord/World/Generation/buildings/src/orcish.lua @@ -0,0 +1,31 @@ +local v + = vector.new + +local OrcishDungeon = require('orcish.Dungeon') + + +return { + --- @param mod minetest.Mod + init = function(mod) + + -- TODO: Регистрация генерации на карте + + + -- debug tool (spawn dungeon): + core.register_craftitem('buildings:dungeon_orcish', { + description = 'Orcish Dungeon Generator (debug tool)', + inventory_image = 'buildings_dungeon_orcish.png', + on_place = function(itemstack, placer, pointed_thing) + if not placer or not core.check_player_privs(placer, 'server') then + return ItemStack('') + end + + local rooms_count = math.random(3, 5) + local is_inside_mapgen = false + OrcishDungeon:new(v(pointed_thing.above), rooms_count) + :generate(mod.debug, is_inside_mapgen) + end + }) + + end +} diff --git a/mods/lord/World/Generation/buildings/src/orcish/Dungeon.lua b/mods/lord/World/Generation/buildings/src/orcish/Dungeon.lua new file mode 100644 index 000000000..8a859a47b --- /dev/null +++ b/mods/lord/World/Generation/buildings/src/orcish/Dungeon.lua @@ -0,0 +1,63 @@ +local v, id + = vector.new, minetest.get_content_id + + local MainRoom = require('orcish.Room.Main') + + +--- @class buildings.OrcishDungeon +local OrcishDungeon = { + --- @type vector + center = nil, --- @diagnostic disable-line: assign-type-mismatch + --- @type Voxrame.map.Room[] + rooms = {}, + --- @type integer + rooms_count = 0, + --- id of node taken from `core.get_content_id('|air')` or `nil` if no filling is required. + --- @protected + --- @type integer|nil + on_debug_fill_with = id('default:stone'), +} + +--- @param position vector +--- @param rooms_count integer +function OrcishDungeon:new(position, rooms_count) + self = setmetatable({}, { __index = self }) + self.center = position + self.rooms_count = math.limit(rooms_count, 3, 5) + + return self +end + +--- @param debug boolean +--- @param is_on_mapgen boolean +function OrcishDungeon:generate(debug, is_on_mapgen) + local half_size = v(30, 30, 30) + + local from = self.center - half_size + local to = self.center + half_size + local fill_with = self.on_debug_fill_with --- @diagnostic disable-line: access-invisible тупит плагин + core.with_map_part_do(from, to, function(area, data) + if not debug and area:content_of(id('air')) > 0.2 then + core.log('warning', 'OrcishDungeon: abort generation, area has too much air. Is this a cave or overhang?') + + return + end + + if debug and fill_with then + area:fill_with(fill_with) + end + + local main_room = MainRoom:new(self.center) + :set_debug(debug) + :generate(area, data) + + for _, exit in pairs(main_room:get_exits()) do + -- TODO: connect corridors to exits and other rooms to that corridors + -- something like: + -- exit:connect(Corridor:new(...)) + end + end, is_on_mapgen, true) +end + + +return OrcishDungeon diff --git a/mods/lord/World/Generation/buildings/src/orcish/Room/Main.lua b/mods/lord/World/Generation/buildings/src/orcish/Room/Main.lua new file mode 100644 index 000000000..f8b0ed2a9 --- /dev/null +++ b/mods/lord/World/Generation/buildings/src/orcish/Room/Main.lua @@ -0,0 +1,138 @@ +local pairs, math_random, v, id + = pairs, math.random, vector.new, minetest.get_content_id + +local Room = Voxrame.map.Room +local Exit = Voxrame.map.room.Exit +local WallType = Voxrame.map.room.wall.Type + + +local id_air = id('air') +local id_lava = id('default:lava_source') +local id_barrel = id('barrel:barrel') +local id_modor_stone = id('lord_rocks:mordor_stone') +local id_remains = id('remains:ancient_miner_1') +local id_bone_1 = id('bones:bone_1') + +local ids_wall_nodes = { + id('lord_bricks:mordor_clay_brick'), + id('lord_bricks:mordor_clay_masonry'), + id('lord_bricks:mordor_clay_masonry_large'), +} + +--- @class buildings.OrcishCave.Room.Main: Voxrame.map.Room +local Main = { + --- @type IntegerVector + size = v(19, 7, 15), + --- @private + --- @type table<'_all'|Voxrame.map.room.wall.Type, integer[]> + wall_blocks = { + _all = ids_wall_nodes, + floor = table.insert_all( + table.copy(ids_wall_nodes), + { id_modor_stone, id_modor_stone, id_modor_stone } + ) + }, + --- @type Voxrame.map.room.Exit[] + exits = {}, +} +setmetatable(Main, { __index = Room }) + +--- @private +--- @return self +function Main:lava_circle() + local area = self.area + local center = self:center() + local floor_y = self.walls['floor'].from.y + for x = center.x - 2, center.x + 2 do + area:set_node_at({ x = x, y = floor_y, z = center.z - 2 }, id_lava) + area:set_node_at({ x = x, y = floor_y, z = center.z + 2 }, id_lava) + end + for z = center.z - 1, center.z + 1 do + area:set_node_at({ x = center.x - 2, y = floor_y, z = z }, id_lava) + area:set_node_at({ x = center.x + 2, y = floor_y, z = z }, id_lava) + end + + return self +end + +--- @private +--- @return self +function Main:fill_walls() + local area = self.area + for name, wall in pairs(self.walls) do + local nodes_ids = self.wall_blocks[name] or self.wall_blocks['_all'] + area:fill_with(nodes_ids, wall.from, wall.to) + end + + return self +end + +--- @return self +function Main:add_exits() + local exits_count = math_random(4, 4) + + local walls = { WallType.north, WallType.south, WallType.east, WallType.west } + + for i = 1, exits_count do + --local side = walls[math_random(#walls)] --- @as Voxrame.map.room.wall.Type + local side = walls[i] --- @as Voxrame.map.room.wall.Type + local position = self:floor_center_of(side) + + local exit = Exit.to(side):at(position):with_size(3, 4) + self.exits[#self.exits + 1] = exit + + self.area:fill_with(id_air, exit.frame.from, exit.frame.to) + end + + return self +end + +--- Returns list of exits (areas) of the room. +--- @return Voxrame.map.room.Exit[] +function Main:get_exits() + return self.exits +end + +--- @return self +function Main:remains() + local floor = table.copy(self:wall('floor', true)) + self.area:fill_with({ id_remains, id_bone_1 }, floor.from, floor.to, 0.02, { 0, 1, 2, 3 }) + + return self +end + +--- @private +--- @return self +function Main:barrels() + local barrels_pile_size = 2 -- for all dimensions + + for _, corner in pairs(self:get_corners_of('floor')) do + local direction = self:to_center_from(corner):sign() + + local from = corner + direction + local to = from + direction * (barrels_pile_size-1) + + local pile_peak = v(from.x, to.y, from.z) + + self.area:place_pile(id_barrel, from, to, pile_peak) + + if self.debug then + self.area:set_node_at(pile_peak + v(0, 1, 0), id('default:torch')) + end + end + + return self +end + +--- @return self +function Main:do_generation() + return self + :fill_walls() + :add_exits() + :lava_circle() + :remains() + :barrels() +end + + +return Main diff --git a/mods/lord/World/Generation/buildings/textures/buildings_dungeon_orcish.png b/mods/lord/World/Generation/buildings/textures/buildings_dungeon_orcish.png new file mode 100644 index 0000000000000000000000000000000000000000..b12fabb82a6e9424d8dcafc93fcb55b86e7ee5c9 GIT binary patch literal 164 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`*`6+rAr`0CP7LI0FyL_hc~`ai zfAkgk02ii5DwzqVf3eLzAsX_tbXxLVsTnaJBqx+c^&L3L@t>W6>A{f?2K(C>EEq4| zaXPamY4N2!_Z=DT?2_7l@Q3*}25${-kIC literal 0 HcmV?d00001 From 01e6c959be77160b00d366ba4ed6ec96d315393b Mon Sep 17 00:00:00 2001 From: alek13 Date: Sat, 14 Feb 2026 06:27:01 +0300 Subject: [PATCH 39/79] `builtin_ext`: `vector`: ability to pass `n` into "side"-methods; add `:at(side, n)` --- mods/lord/Core/builtin_ext/src/vector.lua | 71 +++++++++++++++++------ 1 file changed, 53 insertions(+), 18 deletions(-) diff --git a/mods/lord/Core/builtin_ext/src/vector.lua b/mods/lord/Core/builtin_ext/src/vector.lua index 7c4f95277..5dec25701 100644 --- a/mods/lord/Core/builtin_ext/src/vector.lua +++ b/mods/lord/Core/builtin_ext/src/vector.lua @@ -1,30 +1,65 @@ ---- @return vector -function vector:above() - return self:offset(0, 1, 0) +--- @enum (key) Position.OffsetSide +local offset_method = { + ceiling = 'above', + floor = 'under', + north = 'at_north', + south = 'at_south', + east = 'at_east', + west = 'at_west', + -- additional "aliases" + up = 'above', + down = 'under', + above = 'above', + under = 'under', + below = 'under', + ['x+'] = 'at_east', + ['x-'] = 'at_west', + ['y+'] = 'above', + ['y-'] = 'under', + ['z+'] = 'at_north', + ['z-'] = 'at_south', +} + +--- @param n? integer +--- @return self +function vector:above(n) + return self:offset(0, n or 1, 0) +end + +--- @param n? integer +--- @return self +function vector:under(n) + return self:offset(0, -(n or 1), 0) end ---- @return vector -function vector:under() - return self:offset(0, -1, 0) +--- @param n? integer +--- @return self +function vector:at_north(n) + return self:offset(0, 0, n or 1) end ---- @return vector -function vector:at_north() - return self:offset(0, 0, 1) +--- @param n? integer +--- @return self +function vector:at_south(n) + return self:offset(0, 0, -(n or 1)) end ---- @return vector -function vector:at_south() - return self:offset(0, 0, -1) +--- @param n? integer +--- @return self +function vector:at_east(n) + return self:offset(n or 1, 0, 0) end ---- @return vector -function vector:at_east() - return self:offset(1, 0, 0) +--- @param n? integer +--- @return self +function vector:at_west(n) + return self:offset(-(n or 1), 0, 0) end ---- @return vector -function vector:at_west() - return self:offset(-1, 0, 0) +--- @param side Position.OffsetSide +--- @param n? integer +--- @return self +function vector:at(side, n) + return self[offset_method[side]](self, n) --- @diagnostic disable-line: param-type-mismatch end From 5ac6a217f5fe38e97e7bae37de7ff564fe1f5355 Mon Sep 17 00:00:00 2001 From: alek13 Date: Sat, 14 Feb 2026 13:28:35 +0300 Subject: [PATCH 40/79] Gen.Library: add repositioning method for `Cuboid` & `Exit`. LG-2059 LG-2053 --- mods/lord/Core/map/src/map/Cuboid.lua | 36 +++++++++++++++++++++-- mods/lord/Core/map/src/map/Room.lua | 2 +- mods/lord/Core/map/src/map/room/Exit.lua | 37 +++++++++++++++++------- 3 files changed, 61 insertions(+), 14 deletions(-) diff --git a/mods/lord/Core/map/src/map/Cuboid.lua b/mods/lord/Core/map/src/map/Cuboid.lua index 1feb42e48..9446f6c57 100644 --- a/mods/lord/Core/map/src/map/Cuboid.lua +++ b/mods/lord/Core/map/src/map/Cuboid.lua @@ -15,7 +15,7 @@ local Cuboid = { } --- @generic GenericCuboid: Voxrame.map.Cuboid ---- @param child_class GenericCuboid|nil +--- @param child_class? GenericCuboid --- @return GenericCuboid function Cuboid:extended(child_class) return setmetatable(child_class or {}, { __index = self }) @@ -176,11 +176,43 @@ function Cuboid:floor_center_of(side) return position end +--- @param offset PositionVector +--- @return self +function Cuboid:move(offset) + self.from = self.from + offset + self.to = self.to + offset + + return self +end + +--- @param position PositionVector +--- @return self +function Cuboid:move_at(position) + local size = self.to - self.from + + self.from = position + self.to = position + size + + return self +end + +--- @param wall_type Voxrame.map.room.wall.Type +--- @param delta integer? +--- @return self +function Cuboid:move_to(wall_type, delta) + assert(WallType[wall_type], 'Invalid wall type: ' .. wall_type) + delta = delta or 1 + + self.from = self.from:at(wall_type, delta) + self.to = self.to:at(wall_type, delta) + + return self +end + -- ----------------------------------------------------------------- -- #region `:floor()`, `:north()`, ... ---- @ --- @param inside_room boolean? --- @return Voxrame.map.room.Wall function Cuboid:floor(inside_room) diff --git a/mods/lord/Core/map/src/map/Room.lua b/mods/lord/Core/map/src/map/Room.lua index 131e57bdd..a3ded4368 100644 --- a/mods/lord/Core/map/src/map/Room.lua +++ b/mods/lord/Core/map/src/map/Room.lua @@ -62,7 +62,7 @@ function Room:new(position, size) local class = self self = {} - self.size = size + self.size = size --- @diagnostic disable-line: read-only self.from = position - (size/2):ceil():subtract(1) self.to = position + (size/2):floor() diff --git a/mods/lord/Core/map/src/map/room/Exit.lua b/mods/lord/Core/map/src/map/room/Exit.lua index f2d160961..892d01628 100644 --- a/mods/lord/Core/map/src/map/room/Exit.lua +++ b/mods/lord/Core/map/src/map/room/Exit.lua @@ -2,23 +2,31 @@ local type, v = type, vector.new local WallType = require('map.room.wall.Type') +local Cuboid = require('map.Cuboid') ---- @class Voxrame.map.room.Exit ---- @field public direction vector direction from room to outside (normalized). ---- @field public frame {from:IntegerVector,to:IntegerVector} Exit frame coordinates. \ ---- If only `frame.to` is set, its used to store size. -local Exit = {} +--- @class Voxrame.map.room.Exit: Voxrame.map.room.Connector +local Exit = { + --- Direction from room to outside (normalized). + --- @type vector + direction = nil, --- @diagnostic disable-line: assign-type-mismatch + --- Voxrame.map.Cuboid Exit frame coordinates. \ + --- If only `frame.to` is set, its used to store size. + --- @type Voxrame.map.Cuboid + frame = nil, --- @diagnostic disable-line: assign-type-mismatch +} + --- @protected +--- @param direction vector --- @return self -function Exit:new(direction, frame) +function Exit:new(direction) self = setmetatable({}, { __index = self }) - self.direction = direction or nil - self.frame = frame or { - from = nil, - to = nil, - } + self.direction = direction + -- here we create fake cuboid, it will be set later in `at()` & `with_size()` methods + self.frame = Cuboid:new(v(0, 0, 0), v(0, 0, 0)) + self.frame.from = nil + self.frame.to = nil return self end @@ -114,5 +122,12 @@ function Exit:with_size(width, height) return self end +--- @param delta integer +function Exit:shift(delta) + self.frame:move(delta * self.direction:cross(v(0, 1, 0))) + + return self +end + return Exit From 10e5eaefc9a4162fe58c89857a27c50e1b218e64 Mon Sep 17 00:00:00 2001 From: alek13 Date: Sat, 14 Feb 2026 14:03:25 +0300 Subject: [PATCH 41/79] Gen.Library: Orcish Example: randomize exit, add random shift; add orcish torches. LG-2052 --- .luacheckrc | 2 +- .../buildings/src/orcish/Room/Main.lua | 18 +++++++++--------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.luacheckrc b/.luacheckrc index 545af5f05..7ee35f83c 100644 --- a/.luacheckrc +++ b/.luacheckrc @@ -20,7 +20,7 @@ read_globals = { "getn", -- was in Lua, now deprecated TODO: remove usages -- Luanti Builtin: "copy", "copy_with_metatables", "indexof", "insert_all", "key_value_swap", - "pack", "unpack", "packsize", + "pack", "unpack", "packsize", "shuffle", -- our Core/helpers: -- table: "contains", "has_value", "has_key", "merge", "join", "merge_values", diff --git a/mods/lord/World/Generation/buildings/src/orcish/Room/Main.lua b/mods/lord/World/Generation/buildings/src/orcish/Room/Main.lua index f8b0ed2a9..2fd75afd2 100644 --- a/mods/lord/World/Generation/buildings/src/orcish/Room/Main.lua +++ b/mods/lord/World/Generation/buildings/src/orcish/Room/Main.lua @@ -9,6 +9,7 @@ local WallType = Voxrame.map.room.wall.Type local id_air = id('air') local id_lava = id('default:lava_source') local id_barrel = id('barrel:barrel') +local id_orc_torch = id('torches:orc_wall') local id_modor_stone = id('lord_rocks:mordor_stone') local id_remains = id('remains:ancient_miner_1') local id_bone_1 = id('bones:bone_1') @@ -69,16 +70,16 @@ end --- @return self function Main:add_exits() - local exits_count = math_random(4, 4) + local exits_count = math_random(2, 4) local walls = { WallType.north, WallType.south, WallType.east, WallType.west } + table.shuffle(walls) for i = 1, exits_count do - --local side = walls[math_random(#walls)] --- @as Voxrame.map.room.wall.Type local side = walls[i] --- @as Voxrame.map.room.wall.Type local position = self:floor_center_of(side) - local exit = Exit.to(side):at(position):with_size(3, 4) + local exit = Exit.to(side):at(position):with_size(3, 4):shift(math_random(-4, 4)) self.exits[#self.exits + 1] = exit self.area:fill_with(id_air, exit.frame.from, exit.frame.to) @@ -107,18 +108,17 @@ function Main:barrels() local barrels_pile_size = 2 -- for all dimensions for _, corner in pairs(self:get_corners_of('floor')) do - local direction = self:to_center_from(corner):sign() + local to_center = self:to_center_from(corner):sign() - local from = corner + direction - local to = from + direction * (barrels_pile_size-1) + local from = corner + to_center + local to = from + to_center * (barrels_pile_size-1) local pile_peak = v(from.x, to.y, from.z) self.area:place_pile(id_barrel, from, to, pile_peak) - if self.debug then - self.area:set_node_at(pile_peak + v(0, 1, 0), id('default:torch')) - end + local orientation = to_center.x > 0 and 3 or 2 + self.area:set_node_at(pile_peak:above(), id_orc_torch, orientation) end return self From a83e8de00221d5eb440eadf44684adc4fba00b4e Mon Sep 17 00:00:00 2001 From: alek13 Date: Mon, 16 Feb 2026 09:46:00 +0300 Subject: [PATCH 42/79] Gen.Library: `Room`: ability to just specify `wall_blocks` in child classes. LG-2051 --- mods/lord/Core/map/src/map/Room.lua | 20 +++++++++++++++++++ .../buildings/src/orcish/Room/Main.lua | 13 ------------ 2 files changed, 20 insertions(+), 13 deletions(-) diff --git a/mods/lord/Core/map/src/map/Room.lua b/mods/lord/Core/map/src/map/Room.lua index a3ded4368..8a07dcd19 100644 --- a/mods/lord/Core/map/src/map/Room.lua +++ b/mods/lord/Core/map/src/map/Room.lua @@ -15,6 +15,9 @@ local Room = { --- @protected --- @type IntegerVector size_max = nil, --- @diagnostic disable-line: assign-type-mismatch + --- @protected + --- @type table<'_all'|Voxrame.map.room.wall.Type, integer[]> + wall_blocks = nil, --- @diagnostic disable-line: assign-type-mismatch --- @type Voxrame.map.room.Exit[] exits = nil, --- @diagnostic disable-line: assign-type-mismatch --- @protected @@ -101,6 +104,22 @@ function Room:fill_with_air() return self end +--- @protected +--- @return self +function Room:fill_walls() + if not self.wall_blocks then + return self + end + + local area = self.area + for name, wall in pairs(self.walls) do + local nodes_ids = self.wall_blocks[name] or self.wall_blocks['_all'] + area:fill_with(nodes_ids, wall.from, wall.to) + end + + return self +end + --- @protected --- @return self function Room:debug_things() @@ -136,6 +155,7 @@ function Room:generate(area, data) return self :init() :fill_with_air() + :fill_walls() :debug_things() :do_generation() end diff --git a/mods/lord/World/Generation/buildings/src/orcish/Room/Main.lua b/mods/lord/World/Generation/buildings/src/orcish/Room/Main.lua index 2fd75afd2..7839682a5 100644 --- a/mods/lord/World/Generation/buildings/src/orcish/Room/Main.lua +++ b/mods/lord/World/Generation/buildings/src/orcish/Room/Main.lua @@ -56,18 +56,6 @@ function Main:lava_circle() return self end ---- @private ---- @return self -function Main:fill_walls() - local area = self.area - for name, wall in pairs(self.walls) do - local nodes_ids = self.wall_blocks[name] or self.wall_blocks['_all'] - area:fill_with(nodes_ids, wall.from, wall.to) - end - - return self -end - --- @return self function Main:add_exits() local exits_count = math_random(2, 4) @@ -127,7 +115,6 @@ end --- @return self function Main:do_generation() return self - :fill_walls() :add_exits() :lava_circle() :remains() From ec94b74bdacf6e682709f339ae37a721f35f9b68 Mon Sep 17 00:00:00 2001 From: alek13 Date: Thu, 19 Feb 2026 19:49:27 +0300 Subject: [PATCH 43/79] Gen.Library: `wall.Type`: extend with useful helpers. Relates to LG-2058 LG-2060 --- mods/lord/Core/map/src/map/Cuboid.lua | 12 +-- mods/lord/Core/map/src/map/room/Exit.lua | 6 +- mods/lord/Core/map/src/map/room/wall/Type.lua | 86 +++++++++++++++++++ 3 files changed, 96 insertions(+), 8 deletions(-) diff --git a/mods/lord/Core/map/src/map/Cuboid.lua b/mods/lord/Core/map/src/map/Cuboid.lua index 9446f6c57..27442d13b 100644 --- a/mods/lord/Core/map/src/map/Cuboid.lua +++ b/mods/lord/Core/map/src/map/Cuboid.lua @@ -196,15 +196,15 @@ function Cuboid:move_at(position) return self end ---- @param wall_type Voxrame.map.room.wall.Type ---- @param delta integer? +--- @param side Voxrame.map.room.wall.Type +--- @param delta integer? --- @return self -function Cuboid:move_to(wall_type, delta) - assert(WallType[wall_type], 'Invalid wall type: ' .. wall_type) +function Cuboid:move_to(side, delta) + WallType.assert_valid(side) delta = delta or 1 - self.from = self.from:at(wall_type, delta) - self.to = self.to:at(wall_type, delta) + self.from = self.from:at(side, delta) + self.to = self.to:at(side, delta) return self end diff --git a/mods/lord/Core/map/src/map/room/Exit.lua b/mods/lord/Core/map/src/map/room/Exit.lua index 892d01628..d19e479ca 100644 --- a/mods/lord/Core/map/src/map/room/Exit.lua +++ b/mods/lord/Core/map/src/map/room/Exit.lua @@ -49,8 +49,8 @@ function Exit.to(side) return Exit:new(direction) end - --- @cast side string - assert(side:is_one_of(WallType)) + --- @cast side Voxrame.map.room.wall.Type + WallType.assert_valid(side) local directions = { [WallType.north] = v( 0, 0, 1), [WallType.south] = v( 0, 0, -1), @@ -122,6 +122,8 @@ function Exit:with_size(width, height) return self end +--- Shifts exit by `delta` in the direction perpendicular to the exit +--- (moves exit along the wall on `delta` blocks) --- @param delta integer function Exit:shift(delta) self.frame:move(delta * self.direction:cross(v(0, 1, 0))) diff --git a/mods/lord/Core/map/src/map/room/wall/Type.lua b/mods/lord/Core/map/src/map/room/wall/Type.lua index 0ed4368a9..1157f9a8e 100644 --- a/mods/lord/Core/map/src/map/room/wall/Type.lua +++ b/mods/lord/Core/map/src/map/room/wall/Type.lua @@ -1,3 +1,5 @@ +local assert + = assert --- @enum Voxrame.map.room.wall.Type: string local WallType = { @@ -9,5 +11,89 @@ local WallType = { west = 'west', } +--- @type table +local only_values = table.copy(WallType) --- @diagnostic disable-line: assign-type-mismatch +--- @type table +local opposites = { + [WallType.east] = WallType.west, + [WallType.west] = WallType.east, + [WallType.north] = WallType.south, + [WallType.south] = WallType.north, + [WallType.ceiling] = WallType.floor, + [WallType.floor] = WallType.ceiling, +} + +--- Returns array with only valid wall sides. \ +--- If you need to ierate through all wall sides, use this method. \ +--- Don't use `pairs(WallType)` directly, \ +--- because it also contains functions like `all`, `horizontal`, `is_valid`, `assert_valid`, `of`, `opposite_for`. +--- Also don't use checks like `assert(WallType[side])` directly, because it also contains functions. +--- @static +--- @return table +function WallType.all() + return only_values +end + +--- Returns array with only horizontal wall sides: +--- - `north` +--- - `south` +--- - `east` +--- - `west` +--- @static +--- @param shuffle? boolean Whether to shuffle the array. Default is `false`. +--- @return Voxrame.map.room.wall.Type[] +function WallType.horizontal(shuffle) + local result = { + WallType.north, + WallType.south, + WallType.east, + WallType.west, + } + + if shuffle then + table.shuffle(result) + end + + return result +end + +--- Checks if the given side is a valid wall side. +--- @static +--- @param side Voxrame.map.room.wall.Type Side to check. +--- @return boolean +function WallType.is_valid(side) + return only_values[side] ~= nil +end + +--- Asserts that the given side is a valid wall side. +--- `assert()` will be called if the side is not valid. +--- @static +--- @param side Voxrame.map.room.wall.Type Side to check. +function WallType.assert_valid(side) + assert(WallType.is_valid(side), 'Invalid wall side: ' .. side) +end + +--- Converts direction vector to wall side type. +--- @static +--- @param direction vector Direction of the side. Must be horizontal. +--- @return Voxrame.map.room.wall.Type? +function WallType.of(direction) -- luacheck: ignore 561 # cyclomatic complexity + return direction.x > 0 and WallType.east + or direction.x < 0 and WallType.west + or direction.z > 0 and WallType.north + or direction.z < 0 and WallType.south + or direction.y > 0 and WallType.ceiling + or direction.y < 0 and WallType.floor + or nil +end + +--- Returns opposite wall side type. +--- @static +--- @param side Voxrame.map.room.wall.Type Side of the room. +--- @return Voxrame.map.room.wall.Type +function WallType.opposite_for(side) + return opposites[side] +end + return WallType From 65493be1c4b9b773b5abd4d128257c12599a0920 Mon Sep 17 00:00:00 2001 From: alek13 Date: Thu, 19 Feb 2026 20:31:34 +0300 Subject: [PATCH 44/79] Gen.Library: `Room`: add useful repositioning helpers. Relates to LG-2060 --- mods/lord/Core/map/src/map/Room.lua | 45 ++++++++++++++++++++++++++++- 1 file changed, 44 insertions(+), 1 deletion(-) diff --git a/mods/lord/Core/map/src/map/Room.lua b/mods/lord/Core/map/src/map/Room.lua index 8a07dcd19..c71b48138 100644 --- a/mods/lord/Core/map/src/map/Room.lua +++ b/mods/lord/Core/map/src/map/Room.lua @@ -6,6 +6,7 @@ local Cuboid = require('map.Cuboid') local id_air = id('air') +local parent = Cuboid --- @abstract --- @class Voxrame.map.Room: Voxrame.map.Cuboid local Room = { @@ -34,7 +35,7 @@ local Room = { --- @type integer debug_node_id = 0, } -Cuboid:extended(Room) +parent:extended(Room) core.register_on_mods_loaded(function() Room.debug_node_id = Room.debug_node_id ~= 0 -- already set by another mod? @@ -96,6 +97,48 @@ function Room:init() :initialize() end +--- Calls specified `method` on room and all its exits. +--- @protected +--- @param method string +--- @param ... any +--- @return self +function Room:apply(method, ...) + parent[method](self, ...) + for _, exit in pairs(self.exits) do + exit.frame[method](exit.frame, ...) + end + + return self +end + +--- Moves coordinates of room and all its exits by offset. \ +--- Use before `generate()` to set room position. +--- Be sure that exits already initialized. +--- @param offset PositionVector +--- @return self +function Room:move(offset) + return self:apply('move', offset) +end + +--- Moves coordinates of room and all its exits to `position`. \ +--- Use before `generate()` to set room position. +--- Be sure that exits already initialized. +--- @param position PositionVector +--- @return self +function Room:move_at(position) + return self:apply('move_at', position) +end + +--- Moves coordinates of room and all its exits to side with `delta`. \ +--- Use before `generate()` to set room position. +--- Be sure that exits already initialized. +--- @param side Voxrame.map.room.wall.Type +--- @param delta integer? +--- @return self +function Room:move_to(side, delta) + return self:apply('move_to', side, delta) +end + --- @protected --- @return self function Room:fill_with_air() From ae074bdcc78cf1f5ffffeb0516447784c0440a4f Mon Sep 17 00:00:00 2001 From: alek13 Date: Thu, 19 Feb 2026 22:08:47 +0300 Subject: [PATCH 45/79] Gen.Library: `Room.exits`: now associative array. Relates to LG-2060 --- mods/lord/Core/map/src/map/Room.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mods/lord/Core/map/src/map/Room.lua b/mods/lord/Core/map/src/map/Room.lua index c71b48138..e100cd0ed 100644 --- a/mods/lord/Core/map/src/map/Room.lua +++ b/mods/lord/Core/map/src/map/Room.lua @@ -19,7 +19,7 @@ local Room = { --- @protected --- @type table<'_all'|Voxrame.map.room.wall.Type, integer[]> wall_blocks = nil, --- @diagnostic disable-line: assign-type-mismatch - --- @type Voxrame.map.room.Exit[] + --- @type table exits = nil, --- @diagnostic disable-line: assign-type-mismatch --- @protected --- @type VoxelArea @@ -69,6 +69,7 @@ function Room:new(position, size) self.size = size --- @diagnostic disable-line: read-only self.from = position - (size/2):ceil():subtract(1) self.to = position + (size/2):floor() + self.exits = {} return setmetatable(self, { __index = class }) end From 69ce4ae383a021456f93b969a5c7f1d3946cbcee Mon Sep 17 00:00:00 2001 From: alek13 Date: Thu, 19 Feb 2026 23:02:02 +0300 Subject: [PATCH 46/79] Gen.Library: add `Connector`, `Connectabe` interfaces & implemetation for `Exit`,`Room`. LG-2060 --- mods/lord/Core/map/src/map/Room.lua | 53 ++++++++++++++++++- mods/lord/Core/map/src/map/room/Connector.lua | 8 +++ mods/lord/Core/map/src/map/room/Exit.lua | 20 +++++++ 3 files changed, 80 insertions(+), 1 deletion(-) create mode 100644 mods/lord/Core/map/src/map/room/Connector.lua diff --git a/mods/lord/Core/map/src/map/Room.lua b/mods/lord/Core/map/src/map/Room.lua index e100cd0ed..f88022313 100644 --- a/mods/lord/Core/map/src/map/Room.lua +++ b/mods/lord/Core/map/src/map/Room.lua @@ -2,13 +2,15 @@ local setmetatable, v, id = setmetatable, vector.new, core.get_content_id local Cuboid = require('map.Cuboid') +local Exit = require('map.room.Exit') +local WallType = require('map.room.wall.Type') local id_air = id('air') local parent = Cuboid --- @abstract ---- @class Voxrame.map.Room: Voxrame.map.Cuboid +--- @class Voxrame.map.Room: Voxrame.map.Cuboid, Voxrame.map.room.Connectable local Room = { --- @readonly --- @type IntegerVector @@ -34,6 +36,10 @@ local Room = { --- @static --- @type integer debug_node_id = 0, + --- @protected + --- @static + --- @type helpers.Logger + logger = core.get_mod_logger(), } parent:extended(Room) @@ -164,6 +170,51 @@ function Room:fill_walls() return self end +--- @param connector Voxrame.map.room.Connector +--- @return self +function Room:connect_to(connector) + local direction = connector:get_direction() + assert(direction.y == 0, 'Direction of connector must be horizontal') + + local connector_side = WallType.of(direction) + if not connector_side then + self.logger.error( + 'Cannot connect Room: Invalid connector side `%s` of direction `%s`', + dump(connector_side), dump(direction) + ) + + return self + end + local my_exit_side = WallType.opposite_for(connector_side) + if not my_exit_side then + self.logger.error( + 'Cannot connect Room: cannot find opposite side of connector side `%s`', + dump(connector_side) + ) + + return self + end + + if not self.exits[my_exit_side] then + local position = self:floor_center_of(my_exit_side) + self.exits[my_exit_side] = Exit.to(my_exit_side):at(position):with_size(3, 4) + end + local room_exit = self.exits[my_exit_side] + + -- Выход из присоединяемой комнаты может быть не в центре стены + -- Нам нужно выровнять комнату относительно расположения выхода на этой стене + local exit_offset_from_center = room_exit:floor_center() - self:floor_center_of(my_exit_side) + local alignment_offset = self.size:multiply(direction) / 2 + alignment_offset = alignment_offset - exit_offset_from_center + alignment_offset.y = self.size.y / 2 + + self:move(connector:floor_center() + alignment_offset) + + self.from, self.to = vector.sort(self.from, self.to) + + return self +end + --- @protected --- @return self function Room:debug_things() diff --git a/mods/lord/Core/map/src/map/room/Connector.lua b/mods/lord/Core/map/src/map/room/Connector.lua new file mode 100644 index 000000000..a57cf2aae --- /dev/null +++ b/mods/lord/Core/map/src/map/room/Connector.lua @@ -0,0 +1,8 @@ + +--- @interface Voxrame.map.room.Connector +--- @field floor_center fun(self: self): PositionVector Returns center position of the connector on the floor +--- @field get_direction fun(self: self): PositionVector Returns direction of the connector +--- @field connect fun(self: self, connectable: Voxrame.map.room.Connectable): self + +--- @interface Voxrame.map.room.Connectable +--- @field connect_to fun(self: self, connector: Voxrame.map.room.Connector): self diff --git a/mods/lord/Core/map/src/map/room/Exit.lua b/mods/lord/Core/map/src/map/room/Exit.lua index d19e479ca..b331fd9db 100644 --- a/mods/lord/Core/map/src/map/room/Exit.lua +++ b/mods/lord/Core/map/src/map/room/Exit.lua @@ -131,5 +131,25 @@ function Exit:shift(delta) return self end +--- Returns center position of the exit frame on the floor. +--- @return Position +function Exit:floor_center() + return self.frame:floor():center() +end + +--- @param connectable Voxrame.map.room.Connectable +--- @param ... any additional arguments passed to `connectable:connect_to()` +--- @return self +function Exit:connect(connectable, ...) + connectable:connect_to(self, ...) + + return self +end + +--- @return Position +function Exit:get_direction() + return self.direction +end + return Exit From dbe958fb4bb7f7878ebbece4521b30e2413ff515 Mon Sep 17 00:00:00 2001 From: alek13 Date: Thu, 19 Feb 2026 23:07:02 +0300 Subject: [PATCH 47/79] Gen.Library: add `Corridor` class. LG-2058 --- mods/lord/Core/map/src/map.lua | 3 ++ mods/lord/Core/map/src/map/Corridor.lua | 55 ++++++++++++++++++++++++ mods/lord/Core/map/src/map/room/Exit.lua | 11 ++++- 3 files changed, 67 insertions(+), 2 deletions(-) create mode 100644 mods/lord/Core/map/src/map/Corridor.lua diff --git a/mods/lord/Core/map/src/map.lua b/mods/lord/Core/map/src/map.lua index e68f67474..52d55f1bc 100644 --- a/mods/lord/Core/map/src/map.lua +++ b/mods/lord/Core/map/src/map.lua @@ -5,8 +5,11 @@ Voxrame = Voxrame or {} Voxrame.map = { --- @type Voxrame.map.Room Room = require('map.Room'), + --- @type Voxrame.map.Corridor + Corridor = require('map.Corridor'), --- @namespace Voxrame.map.room room = { + --- @type Voxrame.map.room.Wall Wall = require('map.room.Wall'), --- @namespace Voxrame.map.room.wall wall = { diff --git a/mods/lord/Core/map/src/map/Corridor.lua b/mods/lord/Core/map/src/map/Corridor.lua new file mode 100644 index 000000000..d13b0b5c6 --- /dev/null +++ b/mods/lord/Core/map/src/map/Corridor.lua @@ -0,0 +1,55 @@ +local v + = vector.new + +local Room = require('map.Room') +local Exit = require('map.room.Exit') +local Side = require('map.room.wall.Type') + + +--- @class Voxrame.map.Corridor: Voxrame.map.Room +local Corridor = Room:extended() + +--- @param size {width: integer, height: integer} size of corridor's vertical slice. +--- @param length integer corridor's length. +--- @param direction PositionVector direction of the corridor. Must be horizontal (y == 0). +--- @return self +function Corridor:new(size, length, direction) + assert(direction.y == 0, 'Corridor direction must be horizontal') + + local room_size + if direction.x ~= 0 then + room_size = v(length, size.height, size.width) + else + room_size = v(size.width, size.height, length) + end + + local corridor = Room.new(self, v(0, 0, 0), room_size) + + -- We need to create exits for easy connection of corridors to rooms + local start_side, end_side + if direction.x > 0 then + start_side, end_side = Side.west, Side.east + elseif direction.x < 0 then + start_side, end_side = Side.east, Side.west + elseif direction.z > 0 then + start_side, end_side = Side.south, Side.north + elseif direction.z < 0 then + start_side, end_side = Side.north, Side.south + else + error('Invalid direction for corridor') + end + + corridor.exits[start_side] = Exit.to(start_side):at(corridor:floor_center_of(start_side)):with_size(size) + corridor.exits[end_side] = Exit.to(end_side):at(corridor:floor_center_of(end_side)):with_size(size) + + return corridor +end + +--- @protected +--- @return self +function Corridor:do_generation() + return self +end + + +return Corridor diff --git a/mods/lord/Core/map/src/map/room/Exit.lua b/mods/lord/Core/map/src/map/room/Exit.lua index b331fd9db..dbbeca795 100644 --- a/mods/lord/Core/map/src/map/room/Exit.lua +++ b/mods/lord/Core/map/src/map/room/Exit.lua @@ -90,10 +90,17 @@ function Exit:at(position) return self end ---- @param width number ---- @param height number +--- Configures exit size and calculates exit `.frame` coordinates. \ +--- Usages: `exit:with_size(3, 4)` or `exit:with_size({width = 3, height = 4})` +--- @param width integer|{width:integer, height:integer} +--- @param height integer? --- @return self function Exit:with_size(width, height) + if type(width) == "table" then + height = width.height + width = width.width + end + --- @type IntegerVector local size From 6abe70b8611ad41949cb61ca4317487510fda3df Mon Sep 17 00:00:00 2001 From: alek13 Date: Fri, 20 Feb 2026 19:15:10 +0300 Subject: [PATCH 48/79] Add `.guides/code-style.ru.md`; move `style_guide.md` -> `.guides/assets-style.ru.md`; add translations `*.en.md`. LG-2077 --- .guides/assets-style.en.md | 41 +++++ style_guide.md => .guides/assets-style.ru.md | 2 + .guides/code-style.en.md | 152 +++++++++++++++++++ .guides/code-style.ru.md | 152 +++++++++++++++++++ development.md | 31 ++-- readme.md | 2 +- 6 files changed, 357 insertions(+), 23 deletions(-) create mode 100644 .guides/assets-style.en.md rename style_guide.md => .guides/assets-style.ru.md (98%) create mode 100644 .guides/code-style.en.md create mode 100644 .guides/code-style.ru.md diff --git a/.guides/assets-style.en.md b/.guides/assets-style.en.md new file mode 100644 index 000000000..cbab84d7b --- /dev/null +++ b/.guides/assets-style.en.md @@ -0,0 +1,41 @@ +# Artistic Requirements +[Русский](assets-style.ru.md) | **English** + +For convenience of references, provisions of this agreement are numbered. + +## I. Two-dimensional graphic elements +Include: block and model textures, item sprites, GUI graphic elements and +other images. + +1. **General provisions for textures**: + 1. The main texture resolution is 16px by 16px; + 2. As an exception, it is allowed to use additional texture resolutions for blocks and items; + 3. The additional texture resolution is 32px by 32px; + 4. As an exception, it is allowed to use odd and non-standard texture resolutions for particles and GUI; + 5. All textures must undergo color indexing via optipng utility before being added to the game; + 6. Recommended: use limited texture palette with specific color positions. Recommended set for one shade: from 3 to 5; + 7. Texture palette should use hue shifting; + +2. **Provisions for item textures (in inventory)**: + 1. Item textures must be easily distinguishable, not allowing ambiguous interpretation; + 2. Item textures must have an outline; + 3. The outline on item texture should follow the tone of the texture itself and have light-shadow transition; + +3. **Provisions for block textures**: + 1. Blocks that do not imply a clearly distinguishable pattern must be seamless; + +4. **Provisions for model textures**: + 1. The resolution of model textures (unwraps) may differ from the resolutions set in "1. General provisions for textures"; + 2. The resolution of model textures (unwraps) is recommended to be created equal to powers of two (8, 16, 32, 64, 128, etc.); + +## II. Three-dimensional graphic elements +Include: three-dimensional models of blocks and entities. + +1. **General provisions for models**: + 1. In cases where the model is primitive, it is recommended to use nodebox for performance purposes; + 2. The used model formats are: *.obj or .glb* (under question); + 3. Source model files (Blender, Blockbench projects, etc.) must be saved in the repository; + 4. *In models, it is forbidden to use rounded or spherical elements, faces, polyhedron shapes. The model must be built from planes and/or parallelepipeds;* + 5. The faces and planes of the model must be strictly multiples of the pixels of their textures; + 6. The scale of the model unwrap must be uniform across the entire surface; + 7. The scale of the model unwrap is recommended to correlate with the main texture resolution as 1 to 1 or be visually close to this value. diff --git a/style_guide.md b/.guides/assets-style.ru.md similarity index 98% rename from style_guide.md rename to .guides/assets-style.ru.md index 193604d1e..46036261a 100644 --- a/style_guide.md +++ b/.guides/assets-style.ru.md @@ -1,4 +1,6 @@ # Художественные требования +**Русский** | [English](assets-style.en.md) + Для удобства ссылок положения данного соглашения будут пронумерованы. ## I. Двухмерные графические элементы diff --git a/.guides/code-style.en.md b/.guides/code-style.en.md new file mode 100644 index 000000000..ef82922e0 --- /dev/null +++ b/.guides/code-style.en.md @@ -0,0 +1,152 @@ +# Code Style Guidelines +[Русский](code-style.ru.md) | **English** + +We follow generally accepted code-style standards. +And this document is not a complete description of all code-style rules, +but rather an addition to generally accepted standards in programming languages. + +## Our exceptions and additions + +### Line length +- Maximum line length: **120 characters** + +### Tabs and indentation +- Use **tabs** for indentation +- Use **spaces** for alignment/indentation within lines + +**Exception:** +**4 spaces** instead of tab in the first block with local assignments of external functions: +```lua +local math_floor, math_random, v +····= math.floor, math.random, vector.new +``` + +### Alignment +- **Tables and structures**: align values vertically for readability +- **Consecutive assignments**: align the `=` signs +- **Array/table elements**: align values + +Recommended: +- **Comments to the right of code**: align by column +- **Other alignments** that improve readability and fit well into the code + +### Spaces +- **Inside tables**: space after opening brace and before closing `{ a = 1 }` +- **After comma**: always put a space `{ a, b, c }` +- **Around operators**: + - spaces around `=`, `+`, `-`, `..`, `and`, `or` + - no spaces around `*`, `/`, `%`, `^`, `..` are allowed +- **In doc-blocks**: always put a space after `---` + +Recommendations: +- **In comments**: space after comment markers (`--`): `-- comment`, not `--comment` + +### Naming +- **Constants** are written in caps: `MAX_PLAYERS`, `DEFAULT_COLOR` +- **Variables containing "class" description** start with capital letter: `Player`, `World` +- **Other variables** start with lowercase letter in snake_case: `player_name`, `position` + +### Quotes +- **Single quotes** are used (in new files and during changes/refactoring) + +### Empty lines +- Before `return` from function/method — **1 empty line** + - **Exception**: if it's the only statement in a code block (in `if`, `for`, `function`, ...) — **0 empty lines** +- Between `local-aliases` block (local assignments of external functions) and `require` block — **1 empty line** +- After `require` block (or after `local-aliases` block if `require` block is absent) — **2 empty lines** +- Before `return` from module/class (from file) — **2 empty lines** +- Between functions/methods — **1 empty line** + - **Exception**: if these are functions inside a definition block — **0 empty lines** (as between other table elements) + +## Examples + +### Proper naming and alignment +```lua +local MAX_HEALTH = 100 +local MAX_PLAYERS = 16 +local Player = setmetatable({}, { __index = parent }) +local player_name = 'alek' +local position = { x = 0, y = 0, z = 0 } +local spawn_position = { x = 100, y = 32, z = 200 } +``` + +### Proper formatting +```lua +local require, setmetatable, math_floor, math_random, v -- this is local-aliases block + = require, setmetatable, math.floor, math.random, vector.new -- after it 1 empty line - if there's require block or 2 empty lines - if not + +local core = require('core') -- this is require block +local utils = require('utils') -- before it 1 empty line, because there's local-aliases block; after it 2 empty lines + + +-- Class/module +local Player = {} + +--- Creates new player +--- @param name string +--- @return Player +function Player:new(name) + local class = self + + self = { + name = name, + health = 100, + pos = { x = 0, y = 0, z = 0 } + } + + return setmetatable(self, { __index = class }) +end + +--- Returns player name +--- @return string +function Player:get_name() + return self.name +end + +--- Decreases player's health or kills them if health is less than or equal to 0 +--- @param amount integer +function Player:take_damage(amount) + self.health = self.health - amount + if self.health <= 0 then + self:die() + end +end + + +return Player -- before `return` of module/class (from file) 2 empty lines +``` + +### Empty lines before function `return` +```lua +local function get_player_name(player) + return player:get_player_name() -- only statement in `function` block - no empty line before `return` +end + +local function get_lower_player_name(player) + local name + name = player:get_player_name() + name = name:lower() + + return name -- not only statement in `function` block - with empty line before `return` +end + +local function is_admin(player) + if minetest.check_player_privs(player, {admin = true}) then + return true -- only statement in `if` block - no empty line before return + end + + return false -- this is already second statement in function (first - `if`) - with empty line before return +end + +local function process_command(player, cmd) + if not cmd or cmd == '' then + minetest.chat_send_player(player:get_player_name(), 'Empty command') + + return false -- `return` is not only in `if` block - with empty line before `return` + end + + -- command processing... + + return true -- not only - empty line before `return` +end +``` diff --git a/.guides/code-style.ru.md b/.guides/code-style.ru.md new file mode 100644 index 000000000..8dcec3d69 --- /dev/null +++ b/.guides/code-style.ru.md @@ -0,0 +1,152 @@ +# Code Style Guidelines +**Русский** | [English](code-style.en.md) + +Мы придерживаемся общепринятых правил code-style. +И этот документ не является полным описанием всех правил code-style, +а лишь дополнением к общепризнанным стандартам в языках программирования. + +## Наши исключения и дополнения + +### Длина строки +- Максимальная длина строки: **120 символов** + +### Табуляция и отступы +- Используйте **табы** для отступов +- Используйте **пробелы** для выравнивания/отступов внутри строк + +**Исключение:** +**4 пробела** вместо таба в первом блоке с локальными присвоениями внешних функций: +```lua +local math_floor, math_random, v +····= math.floor, math.random, vector.new +``` + +### Выравнивание +- **Таблицы и структуры**: выравнивайте значения по вертикали для читаемости +- **Подряд идущие присвоения**: выравнивайте знаки `=` +- **Элементы массивов/таблиц**: выравнивайте значения + +Рекомендуется: +- **Комментарии справа от кода**: выравнивайте по колонке +- **Другие выравнивания**, улучшающие читаемость и хорошо вписывающиеся в код + +### Пробелы +- **Внутри таблиц**: пробел после открывающей скобки и перед закрывающей `{ a = 1 }` +- **После запятой**: всегда ставьте пробел `{ a, b, c }` +- **Вокруг операторов**: + - пробелы вокруг `=`, `+`, `-`, `..`, `and`, `or` + - допускается отсутствие пробелов вокруг `*`, `/`, `%`, `^`, `..` +- **В doc-block'ах**: после `---` всегда ставьте пробел + +Рекомендации: +- **В комментариях**: пробел после знаков комментария(`--`): `-- комментарий`, не `--комментарий` + +### Именование +- **Константы** пишутся капслоком: `MAX_PLAYERS`, `DEFAULT_COLOR` +- **Переменные, содержащие описание "класса"** начинаются с большой буквы: `Player`, `World` +- **Остальные переменные** начинаются с маленькой буквы snake_case'ом: `player_name`, `position` + +### Кавычки +- Используются **одинарные кавычки** (в новых файлах и по ходу изменений/рефакторинга) + +### Пустые строки +- Перед `return` из функции/метода — **1 пустая строка** + - **Исключение**: если это единственный statement в блоке кода (в `if`, `for`, `function`, ...) — **0 пустых строк** +- Между `local-aliases`-блоком (локальных присвоений внешних функций) и `require`-блоком — **1 пустая строка** +- После `require`-блока (или после `local-aliases`-блока, если `require`-блок отсутствует) — **2 пустые строки** +- Перед `return` из модуля/класса (из файла) — **2 пустые строки** +- Между функциями/методами — **1 пустая строка** + - **Исключение**: если это функции внутри definition-блока — **0 пустых строк** (как и между остальными элементами таблицы) + +## Примеры + +### Правильное именование и выравнивание +```lua +local MAX_HEALTH = 100 +local MAX_PLAYERS = 16 +local Player = setmetatable({}, { __index = parent }) +local player_name = 'alek' +local position = { x = 0, y = 0, z = 0 } +local spawn_position = { x = 100, y = 32, z = 200 } +``` + +### Правильное форматирование +```lua +local require, setmetatable, math_floor, math_random, v -- это local-aliases-блок + = require, setmetatable, math.floor, math.random, vector.new -- после него 1 пустая - если есть require-блок или 2 пустые - если нет + +local core = require('core') -- это require-блок +local utils = require('utils') -- перед ним 1 пустая строка, т.к. есть local-aliases-блок; после него 2 пустые + + +-- Класс/модуль +local Player = {} + +--- Creates new player +--- @param name string +--- @return Player +function Player:new(name) + local class = self + + self = { + name = name, + health = 100, + pos = { x = 0, y = 0, z = 0 } + } + + return setmetatable(self, { __index = class }) +end + +--- Returns player name +--- @return string +function Player:get_name() + return self.name +end + +--- Decreases player's health or kills them if health is less than or equal to 0 +--- @param amount integer +function Player:take_damage(amount) + self.health = self.health - amount + if self.health <= 0 then + self:die() + end +end + + +return Player -- перед `return` модуля/класса (из файла) 2 пустые строки +``` + +### Пустые строки перед `return` функции +```lua +local function get_player_name(player) + return player:get_player_name() -- единственный statement в блоке `function` - без пустой строки перед `return` +end + +local function get_lower_player_name(player) + local name + name = player:get_player_name() + name = name:lower() + + return name -- не единственный statement в блоке `function` - с пустой строкой перед `return` +end + +local function is_admin(player) + if minetest.check_player_privs(player, {admin = true}) then + return true -- единственный statement в блоке `if` - без пустой строки перед return + end + + return false -- это уже второй statement в функции (первый - `if`) - с пустой строкой перед return +end + +local function process_command(player, cmd) + if not cmd or cmd == '' then + minetest.chat_send_player(player:get_player_name(), 'Empty command') + + return false -- `return` не единственный в блоке `if` - с пустой строкой перед `return` + end + + -- обработка команды... + + return true -- не единственный - пустая строка перед `return` +end +``` diff --git a/development.md b/development.md index 8ba8c6f59..6568b9a06 100644 --- a/development.md +++ b/development.md @@ -1,14 +1,14 @@ Разработка ========== - - [Разворачивание локально](#Разворачивание-локально) - - [Code-Style](#Code-Style) - - [Doc-Blocks](#Doc-Blocks) - - [Установка и настройка LuaCheck](#Установка-и-настройка-LuaCheck) - - [Обновление своего форка](#Обновление-своего-форка) - - [Оптимизация текстур](#Оптимизация-текстур) - - [Релизный процесс](#Релизный-процесс) - - [Изменение конфигов](#Изменение-конфигов) + - [Разворачивание локально](#разворачивание-локально) + - [Code-Style](#code-style) + - [Doc-Blocks](#doc-blocks) + - [Установка и настройка LuaCheck](#установка-и-настройка-luacheck) + - [Обновление своего форка](#обновление-своего-форка) + - [Оптимизация текстур](#оптимизация-текстур) + - [Релизный процесс](#релизный-процесс) + - [Изменение конфигов](#изменение-конфигов) Разворачивание локально: ------------------------ @@ -38,20 +38,7 @@ minetest # Вкладка "Начать игру" -> выбрать внизу " Code-Style ---------- -Мы придерживаемся code-style, принятого в Minetest: -https://dev.minetest.net/Lua_code_style_guidelines -Наши исключения и дополнения: - - Длина строки до 120 символов - - Константы капсом - - Переменные, содержащие описание "класса" с большой буквы, остальные с маленькой - - Используются одинарные кавычки (в новых файлах и по ходу изменений/рефакторинга) - - Пустые строки между функциями - - после `require`-блока -- 2 - - перед `return` из модуля/класса (из файла) -- 2 - - между ф-циями/методами -- 1 - - однако, если это ф-ции внутри definition-блока -- 0 (как и между остальными элементами таблицы) - -(возможно более актуальный code-style и его обсуждение есть в [ветке Discord](https://discord.com/channels/268093825975713793/842734469336793108/905237586610647151)) +см. [Code Style Guidelines](.guides/code-style.ru.md) Doc-Blocks ---------- diff --git a/readme.md b/readme.md index b7d966615..e24ade58a 100644 --- a/readme.md +++ b/readme.md @@ -61,7 +61,7 @@ - [Обновление своего форка](development.md#Обновление-своего-форка) - [Релизный процесс](development.md#Релизный-процесс) - [Изменение конфигов](development.md#Изменение-конфигов) - - [Textures & modeles Style Guide](style_guide.md) + - [Textures & modeles Style Guide](.guides/assets-style.ru.md) ## Contributors / Участники From c9af4be90fbf63f09be900e3bcc0c52b204de117 Mon Sep 17 00:00:00 2001 From: alek13 Date: Fri, 20 Feb 2026 19:32:54 +0300 Subject: [PATCH 49/79] Gen.Library: fix emmylua diagnosting warning. LG-2059 --- mods/lord/Core/map/src/map/Cuboid.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mods/lord/Core/map/src/map/Cuboid.lua b/mods/lord/Core/map/src/map/Cuboid.lua index 27442d13b..89193dd43 100644 --- a/mods/lord/Core/map/src/map/Cuboid.lua +++ b/mods/lord/Core/map/src/map/Cuboid.lua @@ -200,7 +200,7 @@ end --- @param delta integer? --- @return self function Cuboid:move_to(side, delta) - WallType.assert_valid(side) + WallType.assert_valid(side) --- @cast side Position.OffsetSide delta = delta or 1 self.from = self.from:at(side, delta) From abb0755596ebb256614f55d25e822605e82cab28 Mon Sep 17 00:00:00 2001 From: lord-papirus Date: Mon, 23 Feb 2026 14:04:30 +0300 Subject: [PATCH 50/79] LG-2064 Move bee from mod mobs to mod bees. --- mods/_various/mobs/init.lua | 2 - .../mobs => lord/Entities/bees}/bee.lua | 40 +++++++++--------- mods/lord/Entities/bees/init.lua | 7 +-- .../Entities/bees}/textures/mobs_bee.png | Bin .../Entities/bees}/textures/mobs_bee_inv.png | Bin .../Entities/bees}/textures/mobs_beehive.png | Bin .../bees}/textures/mobs_honey_block.png | Bin .../bees}/textures/mobs_honey_inv.png | Bin mods/lord/_overwrites/various/mobs/init.lua | 2 +- mods/lord/_overwrites/various/mobs/mod.conf | 2 +- 10 files changed, 27 insertions(+), 26 deletions(-) rename mods/{_various/mobs => lord/Entities/bees}/bee.lua (71%) rename mods/{_various/mobs => lord/Entities/bees}/textures/mobs_bee.png (100%) rename mods/{_various/mobs => lord/Entities/bees}/textures/mobs_bee_inv.png (100%) rename mods/{_various/mobs => lord/Entities/bees}/textures/mobs_beehive.png (100%) rename mods/{_various/mobs => lord/Entities/bees}/textures/mobs_honey_block.png (100%) rename mods/{_various/mobs => lord/Entities/bees}/textures/mobs_honey_inv.png (100%) diff --git a/mods/_various/mobs/init.lua b/mods/_various/mobs/init.lua index f6fdfce43..de04493b8 100644 --- a/mods/_various/mobs/init.lua +++ b/mods/_various/mobs/init.lua @@ -1,5 +1,3 @@ -- Mob Api dofile(minetest.get_modpath("mobs").."/api.lua") -dofile(minetest.get_modpath("mobs").."/bee.lua") - diff --git a/mods/_various/mobs/bee.lua b/mods/lord/Entities/bees/bee.lua similarity index 71% rename from mods/_various/mobs/bee.lua rename to mods/lord/Entities/bees/bee.lua index 84e80b858..13239c3a2 100644 --- a/mods/_various/mobs/bee.lua +++ b/mods/lord/Entities/bees/bee.lua @@ -2,7 +2,7 @@ local S = minetest.get_mod_translator() -- Bee by KrupnoPavel -mobs:register_mob("mobs:bee", { +mobs:register_mob('bees:bee', { type = "animal", passive = true, hp_min = 1, @@ -17,12 +17,12 @@ mobs:register_mob("mobs:bee", { makes_footstep_sound = false, sounds = { random = "mobs_bee", - }, + }, walk_velocity = 1, jump = true, drop = {""}, --drops = { - --{name = "mobs:honey", + --{name = "bees:honey", --chance = 1, min = 1, max = 2}, --}, water_damage = 1, @@ -42,21 +42,23 @@ mobs:register_mob("mobs:bee", { end, }) +mobs:alias_mob('mobs:bee', 'bees:bee') + --name, nodes, neighbors, min_light, max_light, interval, chance, active_object_count, min_height, max_height --mobs:spawn_specific(name, nodes, {"air"}, min_light, max_light, 30, chance, active_object_count, -31000, max_height) -mobs:spawn_specific("mobs:bee", {"group:flower"}, {"air"}, 10, 20, 30, 5000, 1, 0, 1000) +mobs:spawn_specific("bees:bee", {"group:flower"}, {"air"}, 10, 20, 30, 5000, 1, 0, 1000) -mobs:register_egg("mobs:bee", S("Bee"), "mobs_bee_inv.png", 0) +mobs:register_egg("bees:bee", S("Bee"), "mobs_bee_inv.png", 0) -- honey -minetest.register_craftitem("mobs:honey", { +minetest.register_craftitem("bees:honey", { description = S("Honey"), inventory_image = "mobs_honey_inv.png", on_use = minetest.item_eat(6), }) -- beehive (when placed spawns bee) -minetest.register_node("mobs:beehive", { +minetest.register_node("bees:beehive", { description = S("Beehive"), drawtype = "plantlike", visual_scale = 1.0, @@ -70,24 +72,24 @@ minetest.register_node("mobs:beehive", { drop = {""}, after_place_node = function(pos, placer, itemstack) if placer:is_player() then - minetest.set_node(pos, {name = "mobs:beehive", param2 = 1}) + minetest.set_node(pos, {name = "bees:beehive", param2 = 1}) if math.random(1, 5) == 1 then - minetest.add_entity(pos, "mobs:bee") + minetest.add_entity(pos, "bees:bee") end end end, - + }) --minetest.register_craft({ - --output = "mobs:beehive", + --output = "bees:beehive", --recipe = { - --{"mobs:bee","mobs:bee","mobs:bee"}, + --{"bees:bee","bees:bee","bees:bee"}, --} --}) -- honey block -minetest.register_node("mobs:honey_block", { +minetest.register_node("bees:honey_block", { description = S("Honey Block"), tiles = {"mobs_honey_block.png"}, groups = {snappy = 3, flammable = 2}, @@ -95,18 +97,18 @@ minetest.register_node("mobs:honey_block", { }) --minetest.register_craft({ - --output = "mobs:honey_block", + --output = "bees:honey_block", --recipe = { - --{"mobs:honey", "mobs:honey", "mobs:honey"}, - --{"mobs:honey", "mobs:honey", "mobs:honey"}, - --{"mobs:honey", "mobs:honey", "mobs:honey"}, + --{"bees:honey", "bees:honey", "bees:honey"}, + --{"bees:honey", "bees:honey", "bees:honey"}, + --{"bees:honey", "bees:honey", "bees:honey"}, --} --}) --minetest.register_craft({ - --output = "mobs:honey 9", + --output = "bees:honey 9", --recipe = { - --{"mobs:honey_block"}, + --{"bees:honey_block"}, --} --}) diff --git a/mods/lord/Entities/bees/init.lua b/mods/lord/Entities/bees/init.lua index d4ee2b52b..3befb0667 100644 --- a/mods/lord/Entities/bees/init.lua +++ b/mods/lord/Entities/bees/init.lua @@ -236,7 +236,7 @@ local S = minetest.get_mod_translator() action = function(pos) local meta = minetest.get_meta(pos) local inv = meta:get_inventory() - if inv:contains_item('queen', 'mobs:bee') then + if inv:contains_item('queen', 'bees:bee') then minetest.add_particle({ pos = {x=pos.x, y=pos.y, z=pos.z}, velocity = {x=(math.random()-0.5)*5,y=(math.random()-0.5)*5,z=(math.random()-0.5)*5}, @@ -483,13 +483,13 @@ local S = minetest.get_mod_translator() minetest.set_node(pos, { name = 'bees:hive_wild' }) local meta = minetest.get_meta(pos) local inv = meta:get_inventory() - inv:set_stack('queen', 1, 'mobs:bee') + inv:set_stack('queen', 1, 'bees:bee') end if node.name == 'bees:hive_artificial_inhabited' then minetest.set_node(pos, { name = 'bees:hive_artificial' }) local meta = minetest.get_meta(pos) local inv = meta:get_inventory() - inv:set_stack('queen', 1, 'mobs:bee') + inv:set_stack('queen', 1, 'bees:bee') local timer = minetest.get_node_timer(pos) timer:start(60) end @@ -499,5 +499,6 @@ local S = minetest.get_mod_translator() -- Load local bees_path = minetest.get_modpath("bees") +dofile(bees_path.."/bee.lua") dofile(bees_path.."/hive_wild.lua") dofile(bees_path.."/hive_artificial.lua") diff --git a/mods/_various/mobs/textures/mobs_bee.png b/mods/lord/Entities/bees/textures/mobs_bee.png similarity index 100% rename from mods/_various/mobs/textures/mobs_bee.png rename to mods/lord/Entities/bees/textures/mobs_bee.png diff --git a/mods/_various/mobs/textures/mobs_bee_inv.png b/mods/lord/Entities/bees/textures/mobs_bee_inv.png similarity index 100% rename from mods/_various/mobs/textures/mobs_bee_inv.png rename to mods/lord/Entities/bees/textures/mobs_bee_inv.png diff --git a/mods/_various/mobs/textures/mobs_beehive.png b/mods/lord/Entities/bees/textures/mobs_beehive.png similarity index 100% rename from mods/_various/mobs/textures/mobs_beehive.png rename to mods/lord/Entities/bees/textures/mobs_beehive.png diff --git a/mods/_various/mobs/textures/mobs_honey_block.png b/mods/lord/Entities/bees/textures/mobs_honey_block.png similarity index 100% rename from mods/_various/mobs/textures/mobs_honey_block.png rename to mods/lord/Entities/bees/textures/mobs_honey_block.png diff --git a/mods/_various/mobs/textures/mobs_honey_inv.png b/mods/lord/Entities/bees/textures/mobs_honey_inv.png similarity index 100% rename from mods/_various/mobs/textures/mobs_honey_inv.png rename to mods/lord/Entities/bees/textures/mobs_honey_inv.png diff --git a/mods/lord/_overwrites/various/mobs/init.lua b/mods/lord/_overwrites/various/mobs/init.lua index 7c110160e..3623e7205 100644 --- a/mods/lord/_overwrites/various/mobs/init.lua +++ b/mods/lord/_overwrites/various/mobs/init.lua @@ -1,5 +1,5 @@ -minetest.override_item("mobs:honey", { +minetest.override_item("bees:honey", { on_use = minetest.item_eat(18), _tt_food_hp = 18, }) diff --git a/mods/lord/_overwrites/various/mobs/mod.conf b/mods/lord/_overwrites/various/mobs/mod.conf index c0cebd07e..a3ff6682f 100644 --- a/mods/lord/_overwrites/various/mobs/mod.conf +++ b/mods/lord/_overwrites/various/mobs/mod.conf @@ -1,3 +1,3 @@ name = lord_overwrites_various_mobs description = Lord Overwrites of _various/mobs mod -depends = mobs +depends = bees, mobs From 28acaac5299b70f432a75922498b79eb47471344 Mon Sep 17 00:00:00 2001 From: lord-papirus Date: Mon, 9 Feb 2026 19:54:18 +0300 Subject: [PATCH 51/79] LG-2057 move mod mobs to legacy_mobs API 'mobs' as global variable rename to legacy_mobs It affected a lot of files Added global variable 'legacy_mobs' to .gitignore --- .luacheckrc | 1 + mods/_various/legacy_mobs/api.lua | 3185 ++ mods/_various/{mobs => legacy_mobs}/api.txt | 60 +- .../doc/register mob.txt | 6 +- mods/_various/legacy_mobs/init.lua | 3 + .../{mobs => legacy_mobs}/license.txt | 0 .../{mobs => legacy_mobs}/locale/mobs.ru.tr | 0 mods/_various/{mobs => legacy_mobs}/mod.conf | 2 +- .../models/character.b3d | Bin mods/_various/legacy_mobs/models/kraken.x | 35203 +++++++++++++++ .../{mobs => legacy_mobs}/models/mobs_bee.x | 0 .../models/mobs_bunny.b3d | Bin .../models/mobs_chicken.x | 0 .../{mobs => legacy_mobs}/models/mobs_cow.x | 0 .../models/mobs_oerkki.b3d | Bin .../{mobs => legacy_mobs}/models/mobs_pumba.x | 0 .../models/mobs_sand_monster.b3d | Bin .../models/mobs_sheep.b3d | Bin .../models/mobs_sheep_shaved.b3d | Bin .../models/mobs_spider.x | 0 .../models/mobs_stone_monster.b3d | Bin .../models/mobs_tree_monster.b3d | Bin mods/_various/legacy_mobs/models/tarantula.x | 37588 ++++++++++++++++ .../legacy_mobs/models/tarantula_propower.x | 37588 ++++++++++++++++ .../models/zmobs_lava_flan.x | 0 .../models/zmobs_mese_monster.x | 0 .../sounds/default_punch.ogg | Bin .../{mobs => legacy_mobs}/sounds/mobs_bee.ogg | Bin .../sounds/mobs_chicken.ogg | Bin .../{mobs => legacy_mobs}/sounds/mobs_cow.ogg | Bin .../sounds/mobs_dirtmonster.ogg | Bin .../sounds/mobs_dungeonmaster.ogg | Bin .../sounds/mobs_fireball.ogg | Bin .../sounds/mobs_kitten.ogg | Bin .../sounds/mobs_lavaflan.ogg | Bin .../sounds/mobs_mesemonster.ogg | Bin .../sounds/mobs_oerkki.ogg | Bin .../{mobs => legacy_mobs}/sounds/mobs_pig.ogg | Bin .../sounds/mobs_pig_angry.ogg | Bin .../{mobs => legacy_mobs}/sounds/mobs_rat.ogg | Bin .../sounds/mobs_sandmonster.ogg | Bin .../sounds/mobs_sheep.ogg | Bin .../sounds/mobs_spider.ogg | Bin .../sounds/mobs_stonemonster.ogg | Bin .../sounds/mobs_treemonster.ogg | Bin .../textures/bees_hive_artificial.png | Bin .../textures/bees_hive_wild_s.png | Bin .../textures/mobs_blood.png | Bin .../textures/mobs_bucket_milk.png | Bin .../textures/mobs_bunny_brown.png | Bin .../textures/mobs_bunny_evil.png | Bin .../textures/mobs_bunny_grey.png | Bin .../textures/mobs_bunny_inv.png | Bin .../textures/mobs_bunny_white.png | Bin .../textures/mobs_cheese.png | Bin .../textures/mobs_cheeseblock.png | Bin .../textures/mobs_chick.png | Bin .../textures/mobs_chicken.png | Bin .../textures/mobs_chicken_black.png | Bin .../textures/mobs_chicken_cooked.png | Bin .../textures/mobs_chicken_egg.png | Bin .../textures/mobs_chicken_egg_fried.png | Bin .../textures/mobs_chicken_egg_overlay.png | Bin .../textures/mobs_chicken_inv.png | Bin .../textures/mobs_chicken_raw.png | Bin .../textures/mobs_cobweb.png | Bin .../textures/mobs_cooked_rat.png | Bin .../textures/mobs_cow.png | Bin .../textures/mobs_dirt_monster.png | Bin .../textures/mobs_dungeon_master.png | Bin .../textures/mobs_dungeon_master2.png | Bin .../textures/mobs_dungeon_master3.png | Bin .../textures/mobs_fireball.png | Bin .../textures/mobs_leather.png | Bin .../textures/mobs_magic_lasso.png | Bin .../textures/mobs_meat.png | Bin .../textures/mobs_meat_raw.png | Bin .../textures/mobs_net.png | Bin .../textures/mobs_npc.png | Bin .../textures/mobs_npc2.png | Bin .../textures/mobs_npc_baby.png | Bin .../textures/mobs_oerkki.png | Bin .../textures/mobs_oerkki2.png | Bin .../textures/mobs_pork_cooked.png | Bin .../textures/mobs_pork_raw.png | Bin .../textures/mobs_pumba.png | Bin .../textures/mobs_rat.png | Bin .../textures/mobs_rat2.png | Bin .../textures/mobs_rat_inventory.png | Bin .../textures/mobs_sand_monster.png | Bin .../textures/mobs_shears.png | Bin .../textures/mobs_sheep.png | Bin .../textures/mobs_sheep_black.png | Bin .../textures/mobs_sheep_blue.png | Bin .../textures/mobs_sheep_brown.png | Bin .../textures/mobs_sheep_cyan.png | Bin .../textures/mobs_sheep_dark_green.png | Bin .../textures/mobs_sheep_dark_grey.png | Bin .../textures/mobs_sheep_green.png | Bin .../textures/mobs_sheep_grey.png | Bin .../textures/mobs_sheep_magenta.png | Bin .../textures/mobs_sheep_orange.png | Bin .../textures/mobs_sheep_pink.png | Bin .../textures/mobs_sheep_red.png | Bin .../textures/mobs_sheep_shaved.png | Bin .../textures/mobs_sheep_violet.png | Bin .../textures/mobs_sheep_white.png | Bin .../textures/mobs_sheep_yellow.png | Bin .../textures/mobs_spider.png | Bin .../textures/mobs_stone_monster.png | Bin .../textures/mobs_tree_monster.png | Bin .../textures/tnt_smoke.png | Bin .../textures/zmobs_lava_flan.png | Bin .../textures/zmobs_lava_orb.png | Bin .../textures/zmobs_mese_monster.png | Bin mods/_various/mobs/init.lua | 3 - mods/_various/mobs_fish/init.lua | 18 +- mods/_various/mobs_fish/mod.conf | 2 +- mods/lord/Blocks/protector_lott/init.lua | 2 +- mods/lord/Entities/bees/bee.lua | 15 +- mods/lord/Entities/bees/hive_artificial.lua | 10 +- mods/lord/Entities/bees/hive_wild.lua | 16 +- mods/lord/Entities/bees/init.lua | 2 +- mods/lord/Entities/bees/mod.conf | 2 +- mods/lord/Entities/lord_traders/mod.conf | 2 +- .../Entities/lord_traders/src/traders.lua | 11 +- .../lord_traders/src/traders/trader.lua | 4 +- mods/lord/Entities/lottmobs/mod.conf | 2 +- .../src/animals/livestock/chicken.lua | 2 +- .../lottmobs/src/animals/livestock/kitten.lua | 12 +- .../lottmobs/src/animals/livestock/sheep.lua | 6 +- .../lottmobs/src/animals/water/fishes.lua | 17 +- .../lottmobs/src/animals/wild/boar.lua | 2 +- .../lottmobs/src/animals/wild/bunny.lua | 2 +- .../lottmobs/src/animals/wild/horse.lua | 6 +- .../lottmobs/src/animals/wild/pony.lua | 4 +- .../lottmobs/src/animals/wild/rat.lua | 2 +- .../lottmobs/src/animals/wild/spider.lua | 4 +- .../lottmobs/src/animals/wild/warg.lua | 2 +- mods/lord/Entities/lottmobs/src/eggs.lua | 38 +- .../Entities/lottmobs/src/racial/dwarfs.lua | 2 +- .../Entities/lottmobs/src/racial/elves.lua | 4 +- .../Entities/lottmobs/src/racial/hobbits.lua | 4 +- .../Entities/lottmobs/src/racial/humans.lua | 6 +- .../Entities/lottmobs/src/racial/orcs.lua | 10 +- .../lottmobs/src/racial/others/balrog.lua | 2 +- .../lottmobs/src/racial/others/dead_man.lua | 2 +- .../src/racial/others/dunlendings.lua | 2 +- .../lottmobs/src/racial/others/ent.lua | 2 +- .../lottmobs/src/racial/others/half_troll.lua | 2 +- .../lottmobs/src/racial/others/nazguls.lua | 4 +- .../lottmobs/src/racial/others/trolls.lua | 4 +- mods/lord/Entities/lottmobs/src/spawn.lua | 190 +- .../lord/_experimental/lord_spawners/mod.conf | 2 +- mods/lord/_overwrites/various/mobs/mod.conf | 2 +- 155 files changed, 113812 insertions(+), 248 deletions(-) create mode 100644 mods/_various/legacy_mobs/api.lua rename mods/_various/{mobs => legacy_mobs}/api.txt (90%) rename mods/_various/{mobs => legacy_mobs}/doc/register mob.txt (97%) create mode 100644 mods/_various/legacy_mobs/init.lua rename mods/_various/{mobs => legacy_mobs}/license.txt (100%) rename mods/_various/{mobs => legacy_mobs}/locale/mobs.ru.tr (100%) rename mods/_various/{mobs => legacy_mobs}/mod.conf (68%) rename mods/_various/{mobs => legacy_mobs}/models/character.b3d (100%) create mode 100644 mods/_various/legacy_mobs/models/kraken.x rename mods/_various/{mobs => legacy_mobs}/models/mobs_bee.x (100%) rename mods/_various/{mobs => legacy_mobs}/models/mobs_bunny.b3d (100%) rename mods/_various/{mobs => legacy_mobs}/models/mobs_chicken.x (100%) rename mods/_various/{mobs => legacy_mobs}/models/mobs_cow.x (100%) rename mods/_various/{mobs => legacy_mobs}/models/mobs_oerkki.b3d (100%) rename mods/_various/{mobs => legacy_mobs}/models/mobs_pumba.x (100%) rename mods/_various/{mobs => legacy_mobs}/models/mobs_sand_monster.b3d (100%) rename mods/_various/{mobs => legacy_mobs}/models/mobs_sheep.b3d (100%) rename mods/_various/{mobs => legacy_mobs}/models/mobs_sheep_shaved.b3d (100%) rename mods/_various/{mobs => legacy_mobs}/models/mobs_spider.x (100%) rename mods/_various/{mobs => legacy_mobs}/models/mobs_stone_monster.b3d (100%) rename mods/_various/{mobs => legacy_mobs}/models/mobs_tree_monster.b3d (100%) create mode 100644 mods/_various/legacy_mobs/models/tarantula.x create mode 100644 mods/_various/legacy_mobs/models/tarantula_propower.x rename mods/_various/{mobs => legacy_mobs}/models/zmobs_lava_flan.x (100%) rename mods/_various/{mobs => legacy_mobs}/models/zmobs_mese_monster.x (100%) rename mods/_various/{mobs => legacy_mobs}/sounds/default_punch.ogg (100%) rename mods/_various/{mobs => legacy_mobs}/sounds/mobs_bee.ogg (100%) rename mods/_various/{mobs => legacy_mobs}/sounds/mobs_chicken.ogg (100%) rename mods/_various/{mobs => legacy_mobs}/sounds/mobs_cow.ogg (100%) rename mods/_various/{mobs => legacy_mobs}/sounds/mobs_dirtmonster.ogg (100%) rename mods/_various/{mobs => legacy_mobs}/sounds/mobs_dungeonmaster.ogg (100%) rename mods/_various/{mobs => legacy_mobs}/sounds/mobs_fireball.ogg (100%) rename mods/_various/{mobs => legacy_mobs}/sounds/mobs_kitten.ogg (100%) rename mods/_various/{mobs => legacy_mobs}/sounds/mobs_lavaflan.ogg (100%) rename mods/_various/{mobs => legacy_mobs}/sounds/mobs_mesemonster.ogg (100%) rename mods/_various/{mobs => legacy_mobs}/sounds/mobs_oerkki.ogg (100%) rename mods/_various/{mobs => legacy_mobs}/sounds/mobs_pig.ogg (100%) rename mods/_various/{mobs => legacy_mobs}/sounds/mobs_pig_angry.ogg (100%) rename mods/_various/{mobs => legacy_mobs}/sounds/mobs_rat.ogg (100%) rename mods/_various/{mobs => legacy_mobs}/sounds/mobs_sandmonster.ogg (100%) rename mods/_various/{mobs => legacy_mobs}/sounds/mobs_sheep.ogg (100%) rename mods/_various/{mobs => legacy_mobs}/sounds/mobs_spider.ogg (100%) rename mods/_various/{mobs => legacy_mobs}/sounds/mobs_stonemonster.ogg (100%) rename mods/_various/{mobs => legacy_mobs}/sounds/mobs_treemonster.ogg (100%) rename mods/_various/{mobs => legacy_mobs}/textures/bees_hive_artificial.png (100%) rename mods/_various/{mobs => legacy_mobs}/textures/bees_hive_wild_s.png (100%) rename mods/_various/{mobs => legacy_mobs}/textures/mobs_blood.png (100%) rename mods/_various/{mobs => legacy_mobs}/textures/mobs_bucket_milk.png (100%) rename mods/_various/{mobs => legacy_mobs}/textures/mobs_bunny_brown.png (100%) rename mods/_various/{mobs => legacy_mobs}/textures/mobs_bunny_evil.png (100%) rename mods/_various/{mobs => legacy_mobs}/textures/mobs_bunny_grey.png (100%) rename mods/_various/{mobs => legacy_mobs}/textures/mobs_bunny_inv.png (100%) rename mods/_various/{mobs => legacy_mobs}/textures/mobs_bunny_white.png (100%) rename mods/_various/{mobs => legacy_mobs}/textures/mobs_cheese.png (100%) rename mods/_various/{mobs => legacy_mobs}/textures/mobs_cheeseblock.png (100%) rename mods/_various/{mobs => legacy_mobs}/textures/mobs_chick.png (100%) rename mods/_various/{mobs => legacy_mobs}/textures/mobs_chicken.png (100%) rename mods/_various/{mobs => legacy_mobs}/textures/mobs_chicken_black.png (100%) rename mods/_various/{mobs => legacy_mobs}/textures/mobs_chicken_cooked.png (100%) rename mods/_various/{mobs => legacy_mobs}/textures/mobs_chicken_egg.png (100%) rename mods/_various/{mobs => legacy_mobs}/textures/mobs_chicken_egg_fried.png (100%) rename mods/_various/{mobs => legacy_mobs}/textures/mobs_chicken_egg_overlay.png (100%) rename mods/_various/{mobs => legacy_mobs}/textures/mobs_chicken_inv.png (100%) rename mods/_various/{mobs => legacy_mobs}/textures/mobs_chicken_raw.png (100%) rename mods/_various/{mobs => legacy_mobs}/textures/mobs_cobweb.png (100%) rename mods/_various/{mobs => legacy_mobs}/textures/mobs_cooked_rat.png (100%) rename mods/_various/{mobs => legacy_mobs}/textures/mobs_cow.png (100%) rename mods/_various/{mobs => legacy_mobs}/textures/mobs_dirt_monster.png (100%) rename mods/_various/{mobs => legacy_mobs}/textures/mobs_dungeon_master.png (100%) rename mods/_various/{mobs => legacy_mobs}/textures/mobs_dungeon_master2.png (100%) rename mods/_various/{mobs => legacy_mobs}/textures/mobs_dungeon_master3.png (100%) rename mods/_various/{mobs => legacy_mobs}/textures/mobs_fireball.png (100%) rename mods/_various/{mobs => legacy_mobs}/textures/mobs_leather.png (100%) rename mods/_various/{mobs => legacy_mobs}/textures/mobs_magic_lasso.png (100%) rename mods/_various/{mobs => legacy_mobs}/textures/mobs_meat.png (100%) rename mods/_various/{mobs => legacy_mobs}/textures/mobs_meat_raw.png (100%) rename mods/_various/{mobs => legacy_mobs}/textures/mobs_net.png (100%) rename mods/_various/{mobs => legacy_mobs}/textures/mobs_npc.png (100%) rename mods/_various/{mobs => legacy_mobs}/textures/mobs_npc2.png (100%) rename mods/_various/{mobs => legacy_mobs}/textures/mobs_npc_baby.png (100%) rename mods/_various/{mobs => legacy_mobs}/textures/mobs_oerkki.png (100%) rename mods/_various/{mobs => legacy_mobs}/textures/mobs_oerkki2.png (100%) rename mods/_various/{mobs => legacy_mobs}/textures/mobs_pork_cooked.png (100%) rename mods/_various/{mobs => legacy_mobs}/textures/mobs_pork_raw.png (100%) rename mods/_various/{mobs => legacy_mobs}/textures/mobs_pumba.png (100%) rename mods/_various/{mobs => legacy_mobs}/textures/mobs_rat.png (100%) rename mods/_various/{mobs => legacy_mobs}/textures/mobs_rat2.png (100%) rename mods/_various/{mobs => legacy_mobs}/textures/mobs_rat_inventory.png (100%) rename mods/_various/{mobs => legacy_mobs}/textures/mobs_sand_monster.png (100%) rename mods/_various/{mobs => legacy_mobs}/textures/mobs_shears.png (100%) rename mods/_various/{mobs => legacy_mobs}/textures/mobs_sheep.png (100%) rename mods/_various/{mobs => legacy_mobs}/textures/mobs_sheep_black.png (100%) rename mods/_various/{mobs => legacy_mobs}/textures/mobs_sheep_blue.png (100%) rename mods/_various/{mobs => legacy_mobs}/textures/mobs_sheep_brown.png (100%) rename mods/_various/{mobs => legacy_mobs}/textures/mobs_sheep_cyan.png (100%) rename mods/_various/{mobs => legacy_mobs}/textures/mobs_sheep_dark_green.png (100%) rename mods/_various/{mobs => legacy_mobs}/textures/mobs_sheep_dark_grey.png (100%) rename mods/_various/{mobs => legacy_mobs}/textures/mobs_sheep_green.png (100%) rename mods/_various/{mobs => legacy_mobs}/textures/mobs_sheep_grey.png (100%) rename mods/_various/{mobs => legacy_mobs}/textures/mobs_sheep_magenta.png (100%) rename mods/_various/{mobs => legacy_mobs}/textures/mobs_sheep_orange.png (100%) rename mods/_various/{mobs => legacy_mobs}/textures/mobs_sheep_pink.png (100%) rename mods/_various/{mobs => legacy_mobs}/textures/mobs_sheep_red.png (100%) rename mods/_various/{mobs => legacy_mobs}/textures/mobs_sheep_shaved.png (100%) rename mods/_various/{mobs => legacy_mobs}/textures/mobs_sheep_violet.png (100%) rename mods/_various/{mobs => legacy_mobs}/textures/mobs_sheep_white.png (100%) rename mods/_various/{mobs => legacy_mobs}/textures/mobs_sheep_yellow.png (100%) rename mods/_various/{mobs => legacy_mobs}/textures/mobs_spider.png (100%) rename mods/_various/{mobs => legacy_mobs}/textures/mobs_stone_monster.png (100%) rename mods/_various/{mobs => legacy_mobs}/textures/mobs_tree_monster.png (100%) rename mods/_various/{mobs => legacy_mobs}/textures/tnt_smoke.png (100%) rename mods/_various/{mobs => legacy_mobs}/textures/zmobs_lava_flan.png (100%) rename mods/_various/{mobs => legacy_mobs}/textures/zmobs_lava_orb.png (100%) rename mods/_various/{mobs => legacy_mobs}/textures/zmobs_mese_monster.png (100%) delete mode 100644 mods/_various/mobs/init.lua diff --git a/.luacheckrc b/.luacheckrc index 7ee35f83c..b37fc1538 100644 --- a/.luacheckrc +++ b/.luacheckrc @@ -82,6 +82,7 @@ read_globals = { "worldedit", "areas", "hopper", + "legacy_mobs", -- Functions: "within_limits", -- mobs api diff --git a/mods/_various/legacy_mobs/api.lua b/mods/_various/legacy_mobs/api.lua new file mode 100644 index 000000000..7cfa656de --- /dev/null +++ b/mods/_various/legacy_mobs/api.lua @@ -0,0 +1,3185 @@ + +-- Mobs Api (26th March 2017) + +legacy_mobs = {} +legacy_mobs.mod = "redo" + +local S = minetest.get_mod_translator() + +local function mob_is_dead(self) + if not self.object:get_pos() then + return true + end + return false +end + + +-- Invisibility mod check +legacy_mobs.invis = {} +if rawget(_G, "invisibility") then + legacy_mobs.invis = invisibility +end + + +-- localize math functions +local pi = math.pi +local square = math.sqrt +local sin = math.sin +local cos = math.cos +local abs = math.abs +local min = math.min +local max = math.max +local atann = math.atan +local random = math.random +local floor = math.floor +local atan = function(x) + if x ~= x then + --error("atan bassed NaN") + return 0 + else + return atann(x) + end +end +local table_copy = table.copy + + +-- Load settings +local damage_enabled = minetest.settings:get_bool("enable_damage") +local peaceful_only = minetest.settings:get_bool("only_peaceful_mobs") +local disable_blood = minetest.settings:get_bool("mobs_disable_blood") +local spawn_protected = tonumber(minetest.settings:get("mobs_spawn_protected")) or 1 +local remove_far = minetest.settings:get_bool("remove_far_mobs") +local difficulty = tonumber(minetest.settings:get("mob_difficulty")) or 1.0 +local show_health = minetest.settings:get_bool("mob_show_health") ~= false +local max_per_block = tonumber(minetest.settings:get("max_objects_per_block") or 99) + +-- calculate aoc range for mob count +local aosrb = tonumber(minetest.settings:get("active_object_send_range_blocks")) +local abr = tonumber(minetest.settings:get("active_block_range")) +local aoc_range = max(aosrb, abr) * 16 + +-- pathfinding settings +local enable_pathfinding = true +local stuck_timeout = 3 -- how long before mob gets stuck in place and starts searching +local stuck_path_timeout = 10 -- how long will mob follow path before giving up + + + +-- play sound +local mob_sound = function(self, sound) + + if sound then + minetest.sound_play(sound, { + object = self.object, + gain = 1.0, + max_hear_distance = self.sounds.distance + }) + end +end + + +-- attack player/mob +local do_attack = function(self, player) + + if self.state == "attack" then + return + end + + self.attack = player + self.state = "attack" + + if random(0, 100) < 90 then + mob_sound(self, self.sounds.war_cry) + end +end + + +-- move mob in facing direction +local set_velocity = function(self, v) + + local yaw = self.object:get_yaw() + self.rotate + + self.object:set_velocity({ + x = sin(yaw) * -v, + y = self.object:get_velocity().y, + z = cos(yaw) * v + }) +end + + +-- get overall speed of mob +local get_velocity = function(self) + + local v = self.object:get_velocity() + + return (v.x * v.x + v.z * v.z) ^ 0.5 +end + + +-- set defined animation +local set_animation = function(self, anim) + + if not self.animation then return end + + self.animation.current = self.animation.current or "" + + if anim == self.animation.current + or not self.animation[anim .. "_start"] + or not self.animation[anim .. "_end"] then + return + end + + self.animation.current = anim + + self.object:set_animation({ + x = self.animation[anim .. "_start"], + y = self.animation[anim .. "_end"] + }, self.animation[anim .. "_speed"] or self.animation.speed_normal or 15) + +end + + +-- get distance +local get_distance = function(a, b) + if not a or not b then return 50 end -- nil check and default distance + + local x, y, z = a.x - b.x, a.y - b.y, a.z - b.z + + return square(x * x + y * y + z * z) +end + + +-- check line of sight using raycasting (thanks Astrobe) +local function line_of_sight(self, pos1, pos2) + + local ray = minetest.raycast(pos1, pos2, true, false) -- ignore entities + local thing = ray:next() + local name, nodedef + + while thing do + + if thing.type == "node" then + + name = minetest.get_node(thing.under).name + nodedef = minetest.registered_items[name] + + if nodedef and nodedef.walkable then return false end + end + + thing = ray:next() + end + + return true +end + + +-- are we flying in what we are suppose to? (taikedz) +local function flight_check(self, pos_w) + + local nod = self.standing_in + + if type(self.fly_in) == "string" + and ( nod == self.fly_in or nod == self.fly_in:gsub("_source", "_flowing") ) then + + return true + + elseif type(self.fly_in) == "table" then + + for _,fly_in in pairs(self.fly_in) do + + if nod == fly_in or nod == fly_in:gsub("_source", "_flowing") then + + return true + end + end + end +end + + +-- particle effects +local function effect(pos, amount, texture, min_size, max_size, radius, gravity) + + radius = radius or 2 + min_size = min_size or 0.5 + max_size = max_size or 1 + gravity = gravity or -10 + + minetest.add_particlespawner({ + amount = amount, + time = 0.25, + minpos = pos, + maxpos = pos, + minvel = {x = -radius, y = -radius, z = -radius}, + maxvel = {x = radius, y = radius, z = radius}, + minacc = {x = 0, y = gravity, z = 0}, + maxacc = {x = 0, y = gravity, z = 0}, + minexptime = 0.1, + maxexptime = 1, + minsize = min_size, + maxsize = max_size, + texture = texture, + }) +end + + +-- update nametag colour +local function update_tag(self) + + local col = "#00FF00" + local qua = self.hp_max / 4 + + if self.health <= floor(qua * 3) then + col = "#FFFF00" + end + + if self.health <= floor(qua * 2) then + col = "#FF6600" + end + + if self.health <= floor(qua) then + col = "#FF0000" + end + + self.object:set_properties({ + nametag = self.nametag, + nametag_color = col + }) + +end + +local function mob_die(self) + -- drop items when dead + local obj + local pos = self.object:get_pos() + self.drops = self.drops or {} -- error check + + for n = 1, #self.drops do + + if random(1, self.drops[n].chance) == 1 then + + obj = minetest.add_item(pos, + ItemStack(self.drops[n].name .. " " + .. random(self.drops[n].min, self.drops[n].max))) + + if obj then + + obj:set_velocity({ + x = random(-10, 10) / 9, + y = 6, + z = random(-10, 10) / 9, + }) + end + end + end + + mob_sound(self, self.sounds.death) + + -- execute custom death function + if self.on_die then + + self.on_die(self, pos) + self.object:remove() + + return true + end + + -- default death function and die animation (if defined) + if self.animation + and self.animation.die_start + and self.animation.die_end then + + self.attack = nil + self.v_start = false + self.timer = 0 + self.blinktimer = 0 + self.passive = true + self.state = "die" + set_velocity(self, 0) + set_animation(self, "die") + + minetest.after(2, function(entity) + entity.object:remove() + end, self) + else + self.object:remove() + end + + effect(pos, 20, "tnt_smoke.png") + + return true +end + +local function mob_damaged(self) + mob_sound(self, self.sounds.damage) + + -- make sure health isn't higher than max + if self.health > self.hp_max then + self.health = self.hp_max + end + + -- backup nametag so we can show health stats + if not self.nametag2 then + self.nametag2 = self.nametag or "" + end + + if show_health then + self.htimer = 2 + if self.health_orig ~= nil then + self.nametag = "♥ " .. self.health .. " / " .. self.health_orig + else + self.nametag = "♥ " .. self.health .. " / " .. self.hp_max + end + update_tag(self) + end + + return false +end + +-- check if mob is dead or only hurt +local function check_for_death(self) + -- has health actually changed? + if self.health == self.old_health then + return + end + + self.old_health = self.health + + -- still got some health? play hurt sound + if self.health > 0 then + return mob_damaged(self) + else + return mob_die(self) + end +end + + +-- check if within physical map limits (-30911 to 30927) +local function within_limits(pos, radius) + + if (pos.x - radius) > -30913 + and (pos.x + radius) < 30928 + and (pos.y - radius) > -30913 + and (pos.y + radius) < 30928 + and (pos.z - radius) > -30913 + and (pos.z + radius) < 30928 then + return true -- within limits + end + + return false -- beyond limits +end + + +-- is mob facing a cliff +local function is_at_cliff(self) + + if self.fear_height == 0 then -- 0 for no falling protection! + return false + end + + local yaw = self.object:get_yaw() + local dir_x = -sin(yaw) * (self.collisionbox[4] + 0.5) + local dir_z = cos(yaw) * (self.collisionbox[4] + 0.5) + local pos = self.object:get_pos() + local ypos = pos.y + self.collisionbox[2] -- just above floor + + if minetest.line_of_sight( + {x = pos.x + dir_x, y = ypos, z = pos.z + dir_z}, + {x = pos.x + dir_x, y = ypos - self.fear_height, z = pos.z + dir_z} + , 1) then + + return true + end + + return false +end + + +-- get node but use fallback for nil or unknown +local function node_ok(pos, fallback) + fallback = fallback or "default:dirt" + local node = minetest.get_node_or_nil(pos) + if not node then + return minetest.registered_nodes[fallback] + end + if minetest.registered_nodes[node.name] then + return node + end + return minetest.registered_nodes[fallback] +end + + +-- environmental damage (water, lava, fire, light) +local do_env_damage = function(self) + if mob_is_dead(self) then + return + end + + -- feed/tame text timer (so mob 'full' messages dont spam chat) + if self.htimer > 0 then + self.htimer = self.htimer - 1 + end + + -- reset nametag after showing health stats + if self.htimer < 1 and self.nametag2 then + + self.nametag = self.nametag2 + self.nametag2 = nil + + update_tag(self) + end + + local pos = self.object:get_pos() + + self.time_of_day = minetest.get_timeofday() + + -- remove mob if beyond map limits + if not within_limits(pos, 0) then + self.object:remove() + return + end + + -- daylight above ground + if self.light_damage ~= 0 + and pos.y > 0 + and self.time_of_day > 0.2 + and self.time_of_day < 0.8 + and (minetest.get_node_light(pos) or 0) > 12 then + + self.health = self.health - self.light_damage + + effect(pos, 5, "tnt_smoke.png") + end + + -- what is mob standing in? + pos.y = pos.y + self.collisionbox[2] + 0.1 -- foot level + self.standing_in = node_ok(pos, "air").name + --print ("standing in " .. self.standing_in) + + -- don't fall when on ignore, just stand still + if self.standing_in == "ignore" then + self.object:set_velocity({x = 0, y = 0, z = 0}) + --print ("--- stopping on ignore") + end + + if self.water_damage ~= 0 + or self.lava_damage ~= 0 then + + local nodef = minetest.registered_nodes[self.standing_in] + + pos.y = pos.y + 1 + + -- water + if self.water_damage ~= 0 + and nodef.groups.water then + + self.health = self.health - self.water_damage + + effect(pos, 5, "bubble.png", nil, nil, 1, nil) + + -- lava or fire + elseif self.lava_damage ~= 0 + and (nodef.groups.lava + or self.standing_in == "fire:basic_flame" + or self.standing_in == "fire:permanent_flame") then + + self.health = self.health - self.lava_damage + + effect(pos, 5, "fire_basic_flame.png", nil, nil, 1, nil) + + -- damage_per_second node check +-- elseif minetest.registered_nodes[self.standing_in].damage_per_second ~= 0 then + +-- local dps = minetest.registered_nodes[self.standing_in].damage_per_second + +-- self.health = self.health - dps + +-- effect(pos, 5, "tnt_smoke.png") + end + end + + check_for_death(self) +end + + +local do_jump = function(self) + if not self.can_jump then + return false + end + + if mob_is_dead(self) then + return + end + + if not self.jump + or self.jump_height == 0 + or self.fly + or self.child then + return false + end + + -- something stopping us while moving? + if self.state ~= "stand" + and get_velocity(self) > 0.5 + and self.object:get_velocity().y ~= 0 then + return false + end + + local pos = self.object:get_pos() + local yaw = self.object:get_yaw() + + local nod + -- what is mob standing on? + pos.y = pos.y + self.collisionbox[2] - 0.2 + + nod = node_ok(pos) + +--print ("standing on:", nod.name, pos.y) + + if minetest.registered_nodes[nod.name].walkable == false then + return false + end + + -- where is front + local dir_x = -sin(yaw) * (self.collisionbox[4] + 0.5) + local dir_z = cos(yaw) * (self.collisionbox[4] + 0.5) + + -- what is in front of mob? + nod = node_ok({ + x = pos.x + dir_x, + y = pos.y + 0.5, + z = pos.z + dir_z + }) + + -- thin blocks that do not need to be jumped + if nod.name == "default:snow" then + return false + end + +--print ("in front:", nod.name, pos.y + 0.5) + + if (minetest.registered_items[nod.name].walkable + and not nod.name:find("walls") + and not nod.name:find("fence") + and not nod.name:find("gate")) + or self.walk_chance == 0 then + + local v = self.object:get_velocity() + + v.y = self.jump_height + + set_animation(self, "jump") -- only when defined + + self.object:set_velocity(v) + + mob_sound(self, self.sounds.jump) + + self.can_jump = false + + minetest.after(1, function() + self.can_jump = true + end) + + return true + end + + return false +end + + +-- blast damage to entities nearby (modified from TNT mod) +local function entity_physics(pos, radius) + + radius = radius * 2 + + local objs = minetest.get_objects_inside_radius(pos, radius) + local obj_pos, dist + + for n = 1, #objs do + + obj_pos = objs[n]:get_pos() + + dist = max(1, get_distance(pos, obj_pos)) + + local damage = floor((4 / dist) * radius) + + -- punches work on entities AND players + objs[n]:punch(objs[n], 1.0, + {full_punch_interval = 1.0, damage_groups = {fleshy = damage}}, pos) + end +end + + +-- should mob follow what I'm holding ? +local function follow_holding(self, clicker) + + if legacy_mobs.invis[clicker:get_player_name()] then + return false + end + + local item = clicker:get_wielded_item() + local t = type(self.follow) + + -- single item + if t == "string" + and item:get_name() == self.follow then + return true + + -- multiple items + elseif t == "table" then + + for no = 1, #self.follow do + + if self.follow[no] == item:get_name() then + return true + end + end + end + + return false +end + + +-- find two animals of same type and breed if nearby and horny +local function breed(self) + + -- child takes 240 seconds before growing into adult + if self.child == true then + + self.hornytimer = self.hornytimer + 1 + + if self.hornytimer > 240 then + + self.child = false + self.hornytimer = 0 + + self.object:set_properties({ + textures = self.base_texture, + mesh = self.base_mesh, + visual_size = self.base_size, + collisionbox = self.base_colbox, + }) + + -- jump when fully grown so not to fall into ground + self.object:set_velocity({ + x = 0, + y = self.jump_height, + z = 0 + }) + end + + return + end + + -- horny animal can mate for 40 seconds, + -- afterwards horny animal cannot mate again for 200 seconds + if self.horny == true + and self.hornytimer < 240 then + + self.hornytimer = self.hornytimer + 1 + + if self.hornytimer >= 240 then + self.hornytimer = 0 + self.horny = false + end + end + + -- find another same animal who is also horny and mate if close enough + if self.horny == true + and self.hornytimer <= 40 then + + local pos = self.object:get_pos() + + effect({x = pos.x, y = pos.y + 1, z = pos.z}, 8, "heart.png", 3, 4, 1, 0.1) + + local objs = minetest.get_objects_inside_radius(pos, 3) + local num = 0 + local ent + + for n = 1, #objs do + + ent = objs[n]:get_luaentity() + + -- check for same animal with different colour + local canmate = false + + if ent then + + if ent.name == self.name then + canmate = true + else + local entname = string.split(ent.name,":") + local selfname = string.split(self.name,":") + + if entname[1] == selfname[1] then + entname = string.split(entname[2],"_") + selfname = string.split(selfname[2],"_") + + if entname[1] == selfname[1] then + canmate = true + end + end + end + end + + if ent + and canmate == true + and ent.horny == true + and ent.hornytimer <= 40 then + num = num + 1 + end + + -- found your mate? then have a baby + if num > 1 then + + self.hornytimer = 41 + ent.hornytimer = 41 + + -- spawn baby + minetest.after(5, function() + + local mob = minetest.add_entity(pos, self.name) + local ent2 = mob:get_luaentity() + local textures = self.base_texture + + if self.child_texture then + textures = self.child_texture[1] + end + + mob:set_properties({ + textures = textures, + visual_size = { + x = self.base_size.x * .5, + y = self.base_size.y * .5, + }, + collisionbox = { + self.base_colbox[1] * .5, + self.base_colbox[2] * .5, + self.base_colbox[3] * .5, + self.base_colbox[4] * .5, + self.base_colbox[5] * .5, + self.base_colbox[6] * .5, + }, + }) + ent2.child = true + ent2.tamed = true + ent2.owner = self.owner + end) + + break + end + end + end +end + + +-- find and replace what mob is looking for (grass, wheat etc.) +local function replace(self, pos) + if mob_is_dead(self) then + return + end + + if not self.replace_rate + or not self.replace_what + or self.child == true + or self.object:get_velocity().y ~= 0 + or random(1, self.replace_rate) > 1 then + return + end + + local what, with, y_offset + + if type(self.replace_what[1]) == "table" then + + local num = random(#self.replace_what) + + what = self.replace_what[num][1] or "" + with = self.replace_what[num][2] or "" + y_offset = self.replace_what[num][3] or 0 + else + what = self.replace_what + with = self.replace_with or "" + y_offset = self.replace_offset or 0 + end + + pos.y = pos.y + y_offset + + if #minetest.find_nodes_in_area(pos, pos, what) > 0 then + +-- print ("replace node = ".. minetest.get_node(pos).name, pos.y) + + minetest.set_node(pos, {name = with}) + + -- when cow/sheep eats grass, replace wool and milk + if self.gotten == true then + self.gotten = false + self.object:set_properties(self) + end + end +end + + +-- check if daytime and also if mob is docile during daylight hours +local function day_docile(self) + + if self.docile_by_day == false then + + return false + + elseif self.docile_by_day == true + and self.time_of_day > 0.2 + and self.time_of_day < 0.8 then + + return true + end +end + + +-- path finding and smart mob routine by rnd +local function smart_mobs(self, s, p, dist, dtime) + if mob_is_dead(self) then + return + end + + local s1 = self.path.lastpos + + -- is it becoming stuck? + if abs(s1.x - s.x) + abs(s1.z - s.z) < 1.5 then + self.path.stuck_timer = self.path.stuck_timer + dtime + else + self.path.stuck_timer = 0 + end + + self.path.lastpos = {x = s.x, y = s.y, z = s.z} + + -- im stuck, search for path + if (self.path.stuck_timer > stuck_timeout and not self.path.following) + or (self.path.stuck_timer > stuck_path_timeout + and self.path.following) then + + self.path.stuck_timer = 0 + + -- lets try find a path, first take care of positions + -- since pathfinder is very sensitive + local sheight = self.collisionbox[5] - self.collisionbox[2] + + -- round position to center of node to avoid stuck in walls + -- also adjust height for player models! + s.x = floor(s.x + 0.5) + s.y = floor(s.y + 0.5) - sheight + s.z = floor(s.z + 0.5) + + local ssight, sground = minetest.line_of_sight(s, { + x = s.x, y = s.y - 4, z = s.z}, 1) + + -- determine node above ground + if not ssight then + s.y = sground.y + 1 + end + + local p1 = self.attack:get_pos() + + p1.x = floor(p1.x + 0.5) + p1.y = floor(p1.y + 0.5) + p1.z = floor(p1.z + 0.5) + + self.path.way = minetest.find_path(s, p1, 16, 2, 6, "Dijkstra") + + -- attempt to unstick mob that is "daydreaming" + self.object:set_pos({ + x = s.x + 0.1 * (random() * 2 - 1), + y = s.y + 1, + z = s.z + 0.1 * (random() * 2 - 1) + }) + + self.state = "" + do_attack(self, self.attack) + + -- no path found, try something else + if not self.path.way then + + self.path.following = false + + -- lets make way by digging/building if not accessible + if self.pathfinding == 2 then + + -- add block and remove one block above so + -- there is room to jump if needed + if s.y < p1.y then + + if not minetest.is_protected(s, "") then + minetest.set_node(s, {name = "default:dirt"}) + end + + local sheight = math.ceil(self.collisionbox[5]) + 1 + + -- assume mob is 2 blocks high so it digs above its head + s.y = s.y + sheight + + if not minetest.is_protected(s, "") then + + local node1 = minetest.get_node(s).name + + if node1 ~= "air" + and node1 ~= "ignore" then + minetest.set_node(s, {name = "air"}) + minetest.add_item(s, ItemStack(node1)) + end + end + + s.y = s.y - sheight + self.object:set_pos({x = s.x, y = s.y + 2, z = s.z}) + + else -- dig 2 blocks to make door toward player direction + + local yaw1 = self.object:get_yaw() + pi / 2 + local p1 = { + x = s.x + cos(yaw1), + y = s.y, + z = s.z + sin(yaw1) + } + + if not minetest.is_protected(p1, "") then + + local node1 = minetest.get_node(p1).name + + if node1 ~= "air" + and node1 ~= "ignore" then + minetest.add_item(p1, ItemStack(node1)) + minetest.set_node(p1, {name = "air"}) + end + + p1.y = p1.y + 1 + node1 = minetest.get_node(p1).name + + if node1 ~= "air" + and node1 ~= "ignore" then + minetest.add_item(p1, ItemStack(node1)) + minetest.set_node(p1, {name = "air"}) + end + + end + end + end + + -- will try again in 2 second + self.path.stuck_timer = stuck_timeout - 2 + + -- frustration! cant find the damn path :( + mob_sound(self, self.sounds.random) + else + -- yay i found path + mob_sound(self, self.sounds.attack) + + set_velocity(self, self.walk_velocity) + + -- follow path now that it has it + self.path.following = true + end + end +end + + +-- specific attacks +local specific_attack = function(list, what) + + -- no specific attack + if list == nil then + return false + end + + -- is found entity on list to attack? + for no = 1, #list do + + if list[no] == what then + return true + end + end + + return false +end + +local is_target = function(self, name, type) + if specific_attack(self.specific_attack, name) then + return true + end + + if factions.get(self.type):has_hostile(type) then + return true + end + + return false +end + +-- mob find someone to attack +local mob_attack = function(self) + if mob_is_dead(self) then + return + end + + if self.state == "attack" or day_docile(self) then + return + end + + local s = self.object:get_pos() + local p, sp, dist + local player, obj, min_player + local type, name = "", "" + local min_dist = self.view_range + 1 + local objs = minetest.get_objects_inside_radius(s, self.view_range) + + for n = 1, #objs do + + if objs[n]:is_player() then + player = objs[n] + local player_name = player:get_player_name() + if legacy_mobs.invis[ player_name ] then + type = "" + else + type = races.get_faction(player_name) + name = "player" + end + else + obj = objs[n]:get_luaentity() + + if obj then + player = obj.object + type = obj.type + name = obj.name or "" + end + end + + if is_target(self, name, type) then + s = self.object:get_pos() + p = player:get_pos() + sp = s + + -- aim higher to make looking up hills more realistic + p.y = p.y + 1 + sp.y = sp.y + 1 + + dist = get_distance(p, s) + + if dist < self.view_range then + -- field of view check goes here + + -- choose closest player to attack + if line_of_sight(self, sp, p) == true + and dist < min_dist then + min_dist = dist + min_player = player + end + end + end + end + + -- attack player + if min_player then + do_attack(self, min_player) + end +end + + +-- follow player if owner or holding item, if fish outta water then flop +local follow_flop = function(self) + if mob_is_dead(self) then + return + end + + -- find player to follow + if (self.follow ~= "" + or self.order == "follow") + and not self.following + and self.state ~= "attack" + and self.state ~= "runaway" then + + local s = self.object:get_pos() + local players = minetest.get_connected_players() + + for n = 1, #players do + + if get_distance(players[n]:get_pos(), s) < self.view_range + and not legacy_mobs.invis[ players[n]:get_player_name() ] then + + self.following = players[n] + + break + end + end + end + + if self.type == "npc" + and self.order == "follow" + and self.state ~= "attack" + and self.owner ~= "" then + + -- npc stop following player if not owner + if self.following + and self.owner + and self.owner ~= self.following:get_player_name() then + self.following = nil + end + else + -- stop following player if not holding specific item + if self.following + and self.following:is_player() + and follow_holding(self, self.following) == false then + self.following = nil + end + + end + + -- follow that thing + if self.following then + + local s = self.object:get_pos() + local p + + if self.following:is_player() then + + p = self.following:get_pos() + + elseif self.following.object then + + p = self.following.object:get_pos() + end + + if p then + + local dist = get_distance(p, s) + + -- dont follow if out of range + if dist > self.view_range then + self.following = nil + else + local vec = { + x = p.x - s.x, + z = p.z - s.z + } + + local yaw = (atan(vec.z / vec.x) + pi / 2) - self.rotate + + if p.x > s.x then yaw = yaw + pi end + + self.object:set_yaw(yaw) + + -- anyone but standing npc's can move along + if dist > self.reach + and self.order ~= "stand" then + + set_velocity(self, self.walk_velocity) + + if self.walk_chance ~= 0 then + set_animation(self, "walk") + end + else + set_velocity(self, 0) + set_animation(self, "stand") + end + + return + end + end + end + + -- swimmers flop when out of their element, and swim again when back in + if self.fly then + local s = self.object:get_pos() + if not flight_check(self, s) then + + self.state = "flop" + self.object:set_velocity({x = 0, y = -5, z = 0}) + + set_animation(self, "stand") + + return + elseif self.state == "flop" then + self.state = "stand" + end + end +end + + +-- dogshoot attack switch and counter function +local dogswitch = function(self, dtime) + + -- switch mode not activated + if not self.dogshoot_switch + or not dtime then + return 0 + end + + self.dogshoot_count = self.dogshoot_count + dtime + + if (self.dogshoot_switch == 1 + and self.dogshoot_count > self.dogshoot_count_max) + or (self.dogshoot_switch == 2 + and self.dogshoot_count > self.dogshoot_count2_max) then + + self.dogshoot_count = 0 + + if self.dogshoot_switch == 1 then + self.dogshoot_switch = 2 + else + self.dogshoot_switch = 1 + end + end + + return self.dogshoot_switch +end + + +-- TODO: move this into `Projectile` class or some physics helper. +local math_min, math_max, math_sqrt, math_tan, math_atan, math_quadratic_equation_roots, v + = math.min, math.max, math.sqrt, math.tan, math.atan, math.quadratic_equation_roots, vector.new + +--- @param p1 vector shooting mob position +--- @param p2 vector position of the mob|player being attacked +--- @param v0 number initial velocity/speed of projectile +function calculate_shot_direction(p1, p2, v0) + local g = 9.8 -- TODO: get from mt-config (use GRAVITY in projectile mod) + + local delta = p2 - p1 + local d = math_sqrt(delta.x^2 + delta.z^2) -- Horizontal distance + local dh = delta.y -- Height difference + + -- Coefficients for the quadratic equation tan(theta) + local a = -g * d^2 / (2 * v0^2) + local b = d + local c = a - dh + + -- Find tan(theta) for the shooting angles + local tan_angle1, tan_angle2 = math_quadratic_equation_roots(a, b, c) + if not tan_angle1 then + minetest.log('warning', 'Impossible to shoot: no real roots of quadratic equation.') + return nil + end + -- We choose a "flatter" trajectory + local tan_angle = math_min(tan_angle1, tan_angle2) + + return v(delta.x / d, tan_angle, delta.z / d):normalize() +end + +-- execute current state (stand, walk, run, attacks) +local do_states = function(self, dtime) + if mob_is_dead(self) then + return + end + + local yaw + + if self.state == "stand" then + + if random(1, 4) == 1 then + + local lp = nil + local s = self.object:get_pos() + local objs = minetest.get_objects_inside_radius(s, 3) + + for n = 1, #objs do + + if objs[n]:is_player() then + lp = objs[n]:get_pos() + break + end + end + + -- look at any players nearby, otherwise turn randomly + if lp then + + local vec = { + x = lp.x - s.x, + z = lp.z - s.z + } + + yaw = (atan(vec.z / vec.x) + pi / 2) - self.rotate + + if lp.x > s.x then yaw = yaw + pi end + else + yaw = (random(0, 360) - 180) / 180 * pi + end + + self.object:set_yaw(yaw) + end + + set_velocity(self, 0) + set_animation(self, "stand") + + -- npc's ordered to stand stay standing + if self.type ~= "npc" + or self.order ~= "stand" then + + if self.walk_chance ~= 0 + and random(1, 100) <= self.walk_chance + and is_at_cliff(self) == false then + + set_velocity(self, self.walk_velocity) + self.state = "walk" + set_animation(self, "walk") + + -- fly up/down randombly for flying mobs + if self.fly and random(1, 100) <= self.walk_chance then + + local v = self.object:get_velocity() + local ud = random(-1, 2) / 9 + + self.object:set_velocity({x = v.x, y = ud, z = v.z}) + end + end + end + + elseif self.state == "walk" then + + local s = self.object:get_pos() + local lp = nil + + -- is there something I need to avoid? + if self.water_damage > 0 + and self.lava_damage > 0 then + + lp = minetest.find_node_near(s, 1, {"group:water", "group:lava"}) + + elseif self.water_damage > 0 then + + lp = minetest.find_node_near(s, 1, {"group:water"}) + + elseif self.lava_damage > 0 then + + lp = minetest.find_node_near(s, 1, {"group:lava"}) + end + + if lp then + + -- if mob in water or lava then look for land + if (self.lava_damage + and minetest.registered_nodes[self.standing_in].groups.lava) + or (self.water_damage + and minetest.registered_nodes[self.standing_in].groups.water) then + + lp = minetest.find_node_near(s, 5, {"group:soil", "group:stone", + "group:sand", "default:ice", "default:snowblock"}) + + -- did we find land? + if lp then + + local vec = { + x = lp.x - s.x, + z = lp.z - s.z + } + + yaw = (atan(vec.z / vec.x) + pi / 2) - self.rotate + + if lp.x > s.x then yaw = yaw + pi end + + -- look towards land and jump/move in that direction + self.object:set_yaw(yaw) + do_jump(self) + set_velocity(self, self.walk_velocity) + else + yaw = (random(0, 360) - 180) / 180 * pi + end + + else + + local vec = { + x = lp.x - s.x, + z = lp.z - s.z + } + + yaw = (atan(vec.z / vec.x) + pi / 2) - self.rotate + + if lp.x > s.x then yaw = yaw + pi end + end + + self.object:set_yaw(yaw) + + -- otherwise randomly turn + elseif random(1, 100) <= 30 then + + yaw = random() * 2 * pi + + self.object:set_yaw(yaw) + end + + -- stand for great fall in front + local temp_is_cliff = is_at_cliff(self) + + if temp_is_cliff + or random(1, 100) <= 30 then + + set_velocity(self, 0) + self.state = "stand" + set_animation(self, "stand") + else + set_velocity(self, self.walk_velocity) + + if flight_check(self) + and self.animation + and self.animation.fly_start + and self.animation.fly_end then + set_animation(self, "fly") + else + set_animation(self, "walk") + end + end + + -- runaway when punched + elseif self.state == "runaway" then + + self.runaway_timer = self.runaway_timer + 1 + + -- stop after 5 seconds or when at cliff + if self.runaway_timer > 5 + or is_at_cliff(self) then + self.runaway_timer = 0 + set_velocity(self, 0) + self.state = "stand" + set_animation(self, "stand") + else + set_velocity(self, self.run_velocity) + set_animation(self, "walk") + end + + -- attack routines (explode, dogfight, shoot, dogshoot) + elseif self.state == "attack" then + + -- calculate distance from mob and enemy + local s = self.object:get_pos() + local p = self.attack and self.attack:get_pos() + local dist = get_distance(p, s) + + -- stop attacking if player or out of range + if dist > self.view_range + or not self.attack + or not self.attack:get_pos() + or self.attack:get_hp() <= 0 + or (self.attack:is_player() and legacy_mobs.invis[ self.attack:get_player_name() ]) then + + --print(" ** stop attacking **", dist, self.view_range) + self.state = "stand" + set_velocity(self, 0) + set_animation(self, "stand") + self.attack = nil + self.v_start = false + self.timer = 0 + self.blinktimer = 0 + + return + end + + if self.attack_type == "explode" then + + local vec = { + x = p.x - s.x, + z = p.z - s.z + } + + yaw = (atan(vec.z / vec.x) + pi / 2) - self.rotate + + if p.x > s.x then yaw = yaw + pi end + + self.object:set_yaw(yaw) + + if dist > self.reach then + + if not self.v_start then + + self.v_start = true + set_velocity(self, self.run_velocity) + self.timer = 0 + self.blinktimer = 0 + else + self.timer = 0 + self.blinktimer = 0 + + set_velocity(self, self.run_velocity) + end + + set_animation(self, "run") + else + set_velocity(self, 0) + set_animation(self, "punch") + + self.timer = self.timer + dtime + self.blinktimer = (self.blinktimer or 0) + dtime + + if self.blinktimer > 0.2 then + + self.blinktimer = 0 + + if self.blinkstatus then + self.object:settexturemod("") + else + self.object:settexturemod("^[brighten") + end + + self.blinkstatus = not self.blinkstatus + end + + if self.timer > 3 then + + local pos = self.object:get_pos() + local radius = self.explosion_radius or 1 + + -- dont damage anything if area protected or next to water + if minetest.find_node_near(pos, 1, {"group:water"}) + or minetest.is_protected(pos, "") then + + mob_sound(self, self.sounds.explode) + + self.object:remove() + + effect(pos, 15, "tnt_smoke.png") + + -- hurt player/legacy_mobs caught in blast area + entity_physics(pos, radius) + + return + end + + pos.y = pos.y - 1 + + legacy_mobs:explosion(pos, radius, 1, 1, self.sounds.explode) + + self.object:remove() + + entity_physics(pos, radius) + + return + end + end + + elseif self.attack_type == "dogfight" + or (self.attack_type == "dogshoot" and dogswitch(self, dtime) == 2) + or (self.attack_type == "dogshoot" and dist <= self.reach and dogswitch(self) == 0) then + + if self.fly + and dist > self.reach then + + local p1 = s + local me_y = floor(p1.y) + local p2 = p + local p_y = floor(p2.y + 1) + local v = self.object:get_velocity() + + if flight_check(self, s) then + + if me_y < p_y then + + self.object:set_velocity({ + x = v.x, + y = 1 * self.walk_velocity, + z = v.z + }) + + elseif me_y > p_y then + + self.object:set_velocity({ + x = v.x, + y = -1 * self.walk_velocity, + z = v.z + }) + end + else + if me_y < p_y then + + self.object:set_velocity({ + x = v.x, + y = 0.01, + z = v.z + }) + + elseif me_y > p_y then + + self.object:set_velocity({ + x = v.x, + y = -0.01, + z = v.z + }) + end + end + + end + + -- rnd: new movement direction + if self.path.following + and self.path.way + and self.attack_type ~= "dogshoot" then + + -- no paths longer than 50 + if #self.path.way > 50 + or dist < self.reach then + self.path.following = false + return + end + + local p1 = self.path.way[1] + + if not p1 then + self.path.following = false + return + end + + if abs(p1.x-s.x) + abs(p1.z - s.z) < 0.6 then + -- reached waypoint, remove it from queue + table.remove(self.path.way, 1) + end + + -- set new temporary target + p = {x = p1.x, y = p1.y, z = p1.z} + end + + local vec = { + x = p.x - s.x, + z = p.z - s.z + } + + yaw = (atan(vec.z / vec.x) + pi / 2) - self.rotate + + if p.x > s.x then yaw = yaw + pi end + + self.object:set_yaw(yaw) + + -- move towards enemy if beyond mob reach + if dist > self.reach then + + -- path finding by rnd + if self.pathfinding -- only if mob has pathfinding enabled + and enable_pathfinding then + + smart_mobs(self, s, p, dist, dtime) + end + + if is_at_cliff(self) then + + set_velocity(self, 0) + set_animation(self, "stand") + else + + if self.path.stuck then + set_velocity(self, self.walk_velocity) + else + set_velocity(self, self.run_velocity) + end + + set_animation(self, "run") + end + + else -- rnd: if inside reach range + + self.path.stuck = false + self.path.stuck_timer = 0 + self.path.following = false -- not stuck anymore + + set_velocity(self, 0) + + if not self.custom_attack then + + if self.timer > 1 then + + self.timer = 0 + + if self.double_melee_attack + and random(1, 2) == 1 then + set_animation(self, "punch2") + else + set_animation(self, "punch") + end + + local p2 = p + local s2 = s + + p2.y = p2.y + .5 + s2.y = s2.y + .5 + + if line_of_sight(self, p2, s2) == true then + + -- play attack sound + mob_sound(self, self.sounds.attack) + + -- punch player (or what player is attached to) + local attached = self.attack:get_attach() + if attached then + self.attack = attached + end + self.attack:punch(self.object, 1.0, { + full_punch_interval = 1.0, + damage_groups = {[self.damage_type] = self.damage} + }, nil) + end + end + else -- call custom attack every second + if self.custom_attack + and self.timer > 1 then + + self.timer = 0 + + self.custom_attack(self, p) + end + end + end + + elseif self.attack_type == "shoot" + or (self.attack_type == "dogshoot" and dogswitch(self, dtime) == 1) + or (self.attack_type == "dogshoot" and dist > self.reach and dogswitch(self) == 0) then + + p.y = p.y - .5 + s.y = s.y + .5 + + local vec = { + x = p.x - s.x, + y = p.y - s.y, + z = p.z - s.z + } + + yaw = (atan(vec.z / vec.x) + pi / 2) - self.rotate + + if p.x > s.x then yaw = yaw + pi end + + self.object:set_yaw(yaw) + + set_velocity(self, 0) + + if self.shoot_interval + and self.timer > self.shoot_interval + and random(1, 100) <= 60 then + + self.timer = 0 + set_animation(self, "shoot") + + -- play shoot attack sound + mob_sound(self, self.sounds.shoot_attack) + + s = v(self.object:get_pos()) + p = v(self.attack:get_pos()) + if self.attack:is_player() then + p = p + v(0, 1, 0) -- на данный момент игрок находится на блок ниже моба + end + + -- TODO: move direction calculation into `Projectile` class. + local projectile = projectiles.get_projectiles()[self.arrow] + local power = 0.6 + random(-.1, .1) + local velocity = projectile.entity_reg.max_speed * power + local shoot_dir = calculate_shot_direction(s, p, velocity) + + local arrow = ItemStack(self.arrow) + minetest.sound_play(arrow:get_definition()._sound_on_release, { object = self.object }) + archery.projectile_shoot(self.object, arrow, power, shoot_dir) + end + end + end +end + + +-- falling and fall damage +local falling = function(self, pos) + if mob_is_dead(self) then + return + end + + if self.fly then + return + end + + -- floating in water (or falling) + local v = self.object:get_velocity() + + -- going up then apply gravity + if v.y > 0.1 then + + self.object:set_acceleration({ + x = 0, + y = self.fall_speed, + z = 0 + }) + end + + -- in water then float up + if minetest.registered_nodes[node_ok(pos).name].groups.liquid then + + if self.floats == 1 then + + self.object:set_acceleration({ + x = 0, + y = -self.fall_speed / (max(1, v.y) ^ 2), + z = 0 + }) + end + else + -- fall downwards + self.object:set_acceleration({ + x = 0, + y = self.fall_speed, + z = 0 + }) + + -- fall damage + if self.fall_damage == 1 + and self.object:get_velocity().y == 0 then + + local d = (self.old_y or 0) - self.object:get_pos().y + + if d > 5 then + + self.health = self.health - floor(d - 5) + + effect(pos, 5, "tnt_smoke.png", 1, 2, 2, nil) + + if check_for_death(self) then + return + end + end + + self.old_y = self.object:get_pos().y + end + end +end + + +-- deal damage and effects when mob punched +function legacy_mobs.mob_punch(self, hitter, tflp, tool_capabilities, dir) + -- TEMPORARY FIX (remove when refactoring) + if not hitter then + return + end + + -- mob health check + if self.health <= 0 then + -- kill mob + mob_die(self) + return + end + + -- error checking when mod profiling is enabled + if not tool_capabilities then + print (S("[MOBS] mod profiling enabled, damage not enabled")) + return + end + + -- is mob protected? + if self.protected and hitter:is_player() + and minetest.is_protected(self.object:get_pos(), hitter:get_player_name()) then + minetest.chat_send_player(hitter:get_player_name(), "Mob has been protected!") + return + end + + -- weapon wear + local weapon = ItemStack("lord_archery:apple_wood_bow") + if hitter and hitter:is_player() then + weapon = hitter:get_wielded_item() + end + local punch_interval = 1.4 + + -- calculate mob damage + local damage = 0 + local armor = self.object:get_armor_groups() or {} + local tmp + + -- quick error check incase it ends up 0 (serialize.h check test) + if tflp == 0 then + tflp = 0.2 + end + + for group,_ in pairs( (tool_capabilities.damage_groups or {}) ) do + + tmp = tflp / (tool_capabilities.full_punch_interval or 1.4) + + if tmp < 0 then + tmp = 0.0 + elseif tmp > 1 then + tmp = 1.0 + end + + damage = damage + (tool_capabilities.damage_groups[group] or 0) + * tmp * ((armor[group] or 0) / 100.0) + end + + -- check for tool immunity or special damage + for n = 1, #self.immune_to do + + if self.immune_to[n][1] == weapon:get_name() then + + damage = self.immune_to[n][2] or 0 + break + end + end + + -- healing + if damage <= -1 then + self.health = self.health - floor(damage) + return + end + + -- print ("Mob Damage is", damage) + + -- add weapon wear + if tool_capabilities then + punch_interval = tool_capabilities.full_punch_interval or 1.4 + end + + if weapon:get_definition() + and weapon:get_definition().tool_capabilities + and hitter and hitter:is_player() then + weapon:add_wear(floor((punch_interval / 75) * 9000)) + hitter:set_wielded_item(weapon) + end + + -- only play hit sound and show blood effects if damage is 1 or over + if damage >= 1 then + + -- weapon sounds + if weapon:get_definition().sounds ~= nil then + + local s = random(0, #weapon:get_definition().sounds) + + minetest.sound_play(weapon:get_definition().sounds[s], { + object = hitter, + max_hear_distance = 8 + }) + else + minetest.sound_play("default_punch", { + object = hitter, + max_hear_distance = 5 + }) + end + + -- blood_particles + if self.blood_amount > 0 + and not disable_blood then + + local pos = self.object:get_pos() + + pos.y = pos.y + (-self.collisionbox[2] + self.collisionbox[5]) * .5 + + effect(pos, self.blood_amount, self.blood_texture, nil, nil, 1, nil) + end + + -- do damage + self.health = self.health - floor(damage) + + -- exit here if dead + if check_for_death(self) then + return + end + + --[[ add healthy afterglow when hit (can cause hit lag with larger textures) + core.after(0.1, function() + self.object:settexturemod("^[colorize:#c9900070") + + core.after(0.3, function() + self.object:settexturemod("") + end) + end) ]] + + -- knock back effect (only on full punch) + if self.knock_back > 0 + and tflp > punch_interval then + + local v = self.object:get_velocity() + local r = 1.4 - min(punch_interval, 1.4) + local kb = r * 5 + local up = 2 + + -- if already in air then dont go up anymore when hit + if v.y > 0 + or self.fly then + up = 0 + end + + -- direction error check + dir = dir or {x = 0, y = 0, z = 0} + + self.object:set_velocity({ + x = dir.x * kb, + y = up, + z = dir.z * kb + }) + + self.pause_timer = r + end + end -- END if damage + + -- if skittish then run away + if self.runaway == true then + + local lp = hitter:get_pos() + local s = self.object:get_pos() + + local vec = { + x = lp.x - s.x, + y = lp.y - s.y, + z = lp.z - s.z + } + + local yaw = atan(vec.z / vec.x) + 3 * pi / 2 + + if lp.x > s.x then + yaw = yaw + pi + end + + self.object:set_yaw(yaw) + self.state = "runaway" + self.runaway_timer = 0 + self.following = nil + end + + -- attack puncher and call other legacy_mobs for help + if self.passive == false + and self.state ~= "flop" + and self.child == false + and (hitter.is_player == nil or hitter:is_player() == false or (hitter:get_player_name() ~= self.owner + and not legacy_mobs.invis[ hitter:get_player_name() ])) then + + -- attack whoever punched mob / нападать на того, кто ударил моба + self.state = "" + do_attack(self, hitter) + + -- alert others to the attack / предупредить других в атаку + local objs = minetest.get_objects_inside_radius(hitter:get_pos(), self.view_range) + local obj + + for n = 1, #objs do + if not objs[n]:is_player() then + obj = objs[n]:get_luaentity() + if obj then + local type = obj.type + + local is_friend = factions.get(self.type):has_friend(type) + + if is_friend then + if obj.group_attack == true and obj.state ~= "attack" then + do_attack(obj, hitter) + end + end + end + end + + end + end +end + +-- get entity staticdata +local mob_staticdata = function(self) + + -- remove mob when out of range unless tamed + if remove_far + and self.remove_ok + and not self.tamed + and self.lifetimer < 20000 then + + --print ("REMOVED " .. self.name) + + self.object:remove() + + return ""-- nil + end + + self.remove_ok = true + self.attack = nil + self.following = nil + self.state = "stand" + + -- used to rotate older legacy_mobs + if self.drawtype + and self.drawtype == "side" then + self.rotate = math.rad(90) + end + + local tmp = {} + + for _,stat in pairs(self) do + + local t = type(stat) + + if t ~= "function" + and t ~= "nil" + and t ~= "userdata" then + tmp[_] = self[_] + end + end + + if self.can_jump ~= nil then + tmp.can_jump = self.can_jump + else + tmp.can_jump = true -- default + end + + --print('===== '..self.name..'\n'.. dump(tmp)..'\n=====\n') + return minetest.serialize(tmp) +end + + +-- activate mob and reload settings +local mob_activate = function(self, staticdata, def) + if mob_is_dead(self) then + return + end + + -- remove monsters in peaceful mode, or when no data + if (self.type == "monster" and peaceful_only) then + + self.object:remove() + + return + end + + -- load entity variables + local tmp = minetest.deserialize(staticdata) + + if tmp then + for _,stat in pairs(tmp) do + self[_] = stat + end + end + + -- select random texture, set model and size + if not self.base_texture then + + -- compatiblity with old simple legacy_mobs textures + if type(def.textures[1]) == "string" then + def.textures = {def.textures} + end + + self.base_texture = def.textures[random(1, #def.textures)] + self.base_mesh = def.mesh + self.base_size = self.visual_size + self.base_colbox = self.collisionbox + end + + -- set texture, model and size + local textures = self.base_texture + local mesh = self.base_mesh + local vis_size = self.base_size + local colbox = self.base_colbox + + -- specific texture if gotten + if self.gotten == true + and def.gotten_texture then + textures = def.gotten_texture + end + + -- specific mesh if gotten + if self.gotten == true + and def.gotten_mesh then + mesh = def.gotten_mesh + end + + -- set child objects to half size + if self.child == true then + + vis_size = { + x = self.base_size.x * .5, + y = self.base_size.y * .5, + } + + if def.child_texture then + textures = def.child_texture[1] + end + + colbox = { + self.base_colbox[1] * .5, + self.base_colbox[2] * .5, + self.base_colbox[3] * .5, + self.base_colbox[4] * .5, + self.base_colbox[5] * .5, + self.base_colbox[6] * .5 + } + end + + if self.health == 0 then + self.health = random (self.hp_min, self.hp_max) + self.health_orig = self.health + end + + -- rnd: pathfinding init + self.path = {} + self.path.way = {} -- path to follow, table of positions + self.path.lastpos = {x = 0, y = 0, z = 0} + self.path.stuck = false + self.path.following = false -- currently following path? + self.path.stuck_timer = 0 -- if stuck for too long search for path + + -- Armor groups (immortal = 1 for custom damage handling) + local armor + + if type(self.armor) == "table" then + armor = table_copy(self.armor) + else + armor = {fleshy = self.armor, immortal = 1} + end + + self.object:set_armor_groups(armor) + + -- mob defaults + self.old_y = self.object:get_pos().y + self.old_health = self.health + self.sounds.distance = self.sounds.distance or 10 + self.textures = textures + self.mesh = mesh + self.collisionbox = colbox + self.visual_size = vis_size + self.standing_in = "" + + -- Инициализация can_jump для старых мобов + self.can_jump = self.can_jump or true + + -- set anything changed above + self.object:set_properties(self) + self.object:set_yaw((random(0, 360) - 180) / 180 * pi) + update_tag(self) +end + + +-- main mob function +local mob_step = function(self, dtime) + if mob_is_dead(self) then + return + end + + local pos = self.object:get_pos() + + -- when lifetimer expires remove mob (except npc and tamed) + if self.type ~= "npc" + and not self.tamed + and self.state ~= "attack" + and remove_far ~= true + and self.lifetimer < 20000 then + + self.lifetimer = self.lifetimer - dtime + + if self.lifetimer <= 0 then + + -- only despawn away from player + local objs = minetest.get_objects_inside_radius(pos, 15) + + for n = 1, #objs do + + if objs[n]:is_player() then + + self.lifetimer = 20 + + return + end + end + +-- minetest.log("action", +-- S("lifetimer expired, removed @1", self.name)) + + effect(pos, 15, "tnt_smoke.png", 2, 4, 2, 0) + + self.object:remove() + + return + end + end + + falling(self, pos) + + -- knockback timer + if self.pause_timer > 0 then + + self.pause_timer = self.pause_timer - dtime + + if self.pause_timer < 1 then + self.pause_timer = 0 + end + + return + end + + -- run custom function (defined in mob lua file) + if self.do_custom then + + -- when false skip going any further + if self.do_custom(self, dtime) == false then + return + end + end + + -- attack timer + self.timer = self.timer + dtime + + if self.state ~= "attack" then + + if self.timer < 1 then + return + end + + self.timer = 0 + end + + -- never go over 100 + if self.timer > 100 then + self.timer = 1 + end + + -- node replace check (cow eats grass etc.) + replace(self, pos) + + -- mob plays random sound at times + if random(1, 100) == 1 then + mob_sound(self, self.sounds.random) + end + + -- environmental damage timer (every 1 second) + self.env_damage_timer = self.env_damage_timer + dtime + + if (self.state == "attack" and self.env_damage_timer > 1) + or self.state ~= "attack" then + + self.env_damage_timer = 0 + + do_env_damage(self) + end + + mob_attack(self) + + breed(self) + + follow_flop(self) + + do_states(self, dtime) + + do_jump(self) + +end + + +-- default function when legacy_mobs are blown up with TNT +local do_tnt = function(obj, damage) + + obj.object:punch(obj.object, 1.0, { + full_punch_interval = 1.0, + damage_groups = {fleshy = damage}, + }, nil) + + return false, true, {} +end + + +legacy_mobs.spawning_mobs = {} + +local function punch(self, hitter, tflp, tool_capabilities, dir) + legacy_mobs.mob_punch(self, hitter, tflp, tool_capabilities, dir) +end + +-- register mob entity +function legacy_mobs:register_mob(name, def) + + legacy_mobs.spawning_mobs[name:replace('^:', '')] = true + +minetest.register_entity(name, { + + stepheight = def.stepheight or 1.1, + name = name, + type = def.type, + attack_type = def.attack_type, + fly = def.fly, + fly_in = def.fly_in or "air", + owner = def.owner or "", + order = def.order or "", + on_die = def.on_die, + do_custom = def.do_custom, + jump_height = def.jump_height or 4, + drawtype = def.drawtype, -- DEPRECATED, use rotate instead + rotate = math.rad(def.rotate or 0), -- 0=front, 90=side, 180=back, 270=side2 + lifetimer = def.lifetimer or 180, -- 3 minutes + hp_min = max(1, (def.hp_min or 5) * difficulty), + hp_max = max(1, (def.hp_max or 10) * difficulty), + physical = true, + collisionbox = def.collisionbox, + visual = def.visual, + visual_size = def.visual_size or {x = 1, y = 1}, + mesh = def.mesh, + makes_footstep_sound = def.makes_footstep_sound or false, + view_range = def.view_range or 5, + walk_velocity = def.walk_velocity or 1, + run_velocity = def.run_velocity or 2, + damage = max(1, (def.damage or 0) * difficulty), + damage_type = def.damage_type or 'fleshy', + light_damage = def.light_damage or 0, + water_damage = def.water_damage or 0, + lava_damage = def.lava_damage or 0, + fall_damage = def.fall_damage or 1, + fall_speed = def.fall_speed or -10, -- must be lower than -2 (default: -10) + drops = def.drops or {}, + armor = def.armor or 100, + on_rightclick = def.on_rightclick, + arrow = def.arrow, + shoot_interval = def.shoot_interval, + sounds = def.sounds or {}, + animation = def.animation, + follow = def.follow, + jump = def.jump ~= false, + walk_chance = def.walk_chance or 50, + attacks_monsters = def.attacks_monsters or false, + group_attack = def.group_attack or false, + passive = def.passive or false, + recovery_time = def.recovery_time or 0.5, + knock_back = def.knock_back or 3, + blood_amount = def.blood_amount or 5, + blood_texture = def.blood_texture or "mobs_blood.png", + shoot_offset = def.shoot_offset or 0, + floats = def.floats or 1, -- floats in water by default + replace_rate = def.replace_rate, + replace_what = def.replace_what, + replace_with = def.replace_with, + replace_offset = def.replace_offset or 0, + timer = 0, + env_damage_timer = 0, -- only used when state = "attack" + tamed = false, + pause_timer = 0, + horny = false, + hornytimer = 0, + child = false, + gotten = false, + health = 0, + reach = def.reach or 3, + htimer = 0, +-- id = (math.random(1, 1000) * math.random(1, 10000)) .. name .. (math.random(1, 1000) ^ 2), +-- id = name .. os.time() .. math.random(10^6), + id = 0, + game_name = "mob", + texture_list = def.textures, + use_texture_alpha = def.use_texture_alpha or false, + child_texture = def.child_texture, + docile_by_day = def.docile_by_day or false, + time_of_day = 0.5, + fear_height = def.fear_height or 3, + runaway = def.runaway, + runaway_timer = 0, + pathfinding = def.pathfinding, + immune_to = def.immune_to or {}, + explosion_radius = def.explosion_radius, + custom_attack = def.custom_attack, + double_melee_attack = def.double_melee_attack, + dogshoot_switch = def.dogshoot_switch, + dogshoot_count = 0, + dogshoot_count_max = def.dogshoot_count_max or 5, + dogshoot_count2_max = def.dogshoot_count2_max or (def.dogshoot_count_max or 5), + attack_animals = def.attack_animals or false, + specific_attack = def.specific_attack, + + on_blast = def.on_blast or do_tnt, + + on_step = mob_step, + + on_punch = def.on_punch or punch, + + on_activate = function(self, staticdata) + return mob_activate(self, staticdata, def) + end, + + get_staticdata = function(self) + return mob_staticdata(self) + end, + +}) + +end -- END legacy_mobs:register_mob function + + +-- count how many legacy_mobs of one type are inside an area +local count_mobs = function(pos, type) + + local num_type = 0 + local num_total = 0 + local objs = minetest.get_objects_inside_radius(pos, aoc_range) + + for n = 1, #objs do + + if not objs[n]:is_player() then + + local obj = objs[n]:get_luaentity() + + -- count mob type and add to total also + if obj and obj.name and obj.name == type then + + num_type = num_type + 1 + num_total = num_total + 1 + + -- add to total legacy_mobs + elseif obj and obj.name and obj.health ~= nil then + + num_total = num_total + 1 + end + end + end + + return num_type, num_total +end + + +-- global functions + +function legacy_mobs:spawn_specific(name, nodes, neighbors, min_light, max_light, + interval, chance, aoc, min_height, max_height, day_toggle, on_spawn) + + -- chance/spawn number override in minetest.conf for registered mob + local numbers = minetest.settings:get(name) + + if numbers then + numbers = numbers:split(",") + chance = tonumber(numbers[1]) or chance + aoc = tonumber(numbers[2]) or aoc + + if chance == 0 then + print(S("[Mobs Redo] @1 has spawning disabled", name)) + return + end + + print (S("[Mobs Redo] Chance setting for @1 changed to @2", name, chance) + .. " (total: " .. aoc .. ")") + + end + + minetest.register_abm({ + + label = name .. " spawning", + nodenames = nodes, + neighbors = neighbors, + interval = interval, + chance = chance, + catch_up = false, + + action = function(pos, node, active_object_count, active_object_count_wider) + + -- is mob actually registered? + if not legacy_mobs.spawning_mobs[name] then +--print ("--- mob doesn't exist", name) + return + end + + -- do not spawn if too many of same mob in area + if active_object_count_wider >= max_per_block + or count_mobs(pos, name) >= aoc then +--print ("--- too many entities", name, aoc, active_object_count_wider) + return + end + + -- if toggle set to nil then ignore day/night check + if day_toggle ~= nil then + + local tod = (minetest.get_timeofday() or 0) * 24000 + + if tod > 4500 and tod < 19500 then + -- daylight, but mob wants night + if day_toggle == false then +--print ("--- mob needs night", name) + return + end + else + -- night time but mob wants day + if day_toggle == true then +--print ("--- mob needs day", name) + return + end + end + end + + -- spawn above node + pos.y = pos.y + 1 + + -- only spawn away from player + local objs = minetest.get_objects_inside_radius(pos, 10) + + for n = 1, #objs do + + if objs[n]:is_player() then +--print ("--- player too close", name) + return + end + end + + -- legacy_mobs cannot spawn in protected areas when enabled + if spawn_protected == 1 + and minetest.is_protected(pos, "") then +--print ("--- inside protected area", name) + return + end + + -- are we spawning within height limits? + if pos.y > max_height + or pos.y < min_height then +--print ("--- height limits not met", name, pos.y) + return + end + + -- are light levels ok? + local light = minetest.get_node_light(pos) + if not light + or light > max_light + or light < min_light then +--print ("--- light limits not met", name, light) + return + end + + -- are we spawning inside solid nodes? + if minetest.registered_nodes[node_ok(pos).name].walkable == true then +--print ("--- feet in block", name, node_ok(pos).name) + return + end + + pos.y = pos.y + 1 + + if minetest.registered_nodes[node_ok(pos).name].walkable == true then +--print ("--- head in block", name, node_ok(pos).name) + return + end + + -- spawn mob half block higher than ground + pos.y = pos.y - 0.5 + + local mob = minetest.add_entity(pos, name) + + if mob and mob:get_luaentity() then +-- print ("[legacy_mobs] Spawned " .. name .. " at " +-- .. minetest.pos_to_string(pos) .. " on " +-- .. node.name .. " near " .. neighbors[1]) + if on_spawn and not on_spawn(mob, pos) then + return + end + else + print (S("[legacy_mobs] @1 failed to spawn at @2", + name, minetest.pos_to_string(pos))) + end + + end + }) +end + + +-- compatibility with older mob registration +function legacy_mobs:register_spawn(name, nodes, max_light, min_light, chance, active_object_count, max_height, day_toggle) + + legacy_mobs:spawn_specific(name, nodes, {"air"}, min_light, max_light, 30, + chance, active_object_count, -31000, max_height, day_toggle) +end + + +-- MarkBu's spawn function +function legacy_mobs:spawn(def) + + local name = def.name + local nodes = def.nodes or {"group:soil", "group:stone"} + local neighbors = def.neighbors or {"air"} + local min_light = def.min_light or 0 + local max_light = def.max_light or 15 + local interval = def.interval or 30 + local chance = def.chance or 5000 + local active_object_count = def.active_object_count or 1 + local min_height = def.min_height or -31000 + local max_height = def.max_height or 31000 + local day_toggle = def.day_toggle + local on_spawn = def.on_spawn + + legacy_mobs:spawn_specific(name, nodes, neighbors, min_light, max_light, interval, + chance, active_object_count, min_height, max_height, day_toggle, on_spawn) +end + + +-- set content id's +local c_air = minetest.get_content_id("air") +local c_ignore = minetest.get_content_id("ignore") +local c_obsidian = minetest.get_content_id("default:obsidian") +local c_chest = minetest.get_content_id("default:chest_locked") + +-- explosion (cannot break protected or unbreakable nodes) +function legacy_mobs:explosion(pos, radius, fire, smoke, sound) + + radius = radius or 0 + fire = fire or 0 + smoke = smoke or 0 + + -- if area protected or near map limits then no blast damage + if minetest.is_protected(pos, "") + or not within_limits(pos, radius) then + return + end + + -- explosion sound + if sound + and sound ~= "" then + + minetest.sound_play(sound, { + pos = pos, + gain = 1.0, + max_hear_distance = 16 + }) + end + + pos = vector.round(pos) -- voxelmanip doesn't work properly unless pos is rounded ?!?! + + local vm = VoxelManip() + local minp, maxp = vm:read_from_map(vector.subtract(pos, radius), vector.add(pos, radius)) + local a = VoxelArea:new({MinEdge = minp, MaxEdge = maxp}) + local data = vm:get_data() + local p = {} + local pr = PseudoRandom(os.time()) + + for z = -radius, radius do + for y = -radius, radius do + local vi = a:index(pos.x + (-radius), pos.y + y, pos.z + z) + for x = -radius, radius do + + p.x = pos.x + x + p.y = pos.y + y + p.z = pos.z + z + + if (x * x) + (y * y) + (z * z) <= (radius * radius) + pr:next(-radius, radius) + and data[vi] ~= c_air + and data[vi] ~= c_ignore + and data[vi] ~= c_obsidian + and data[vi] ~= c_chest then + + local n = node_ok(p).name + local on_blast = minetest.registered_nodes[n].on_blast + + if on_blast then + + return on_blast(p) + + else + + -- after effects + if fire > 0 + and (minetest.registered_nodes[n].groups.flammable + or random(1, 100) <= 30) then + + minetest.set_node(p, {name = "fire:basic_flame"}) + else + minetest.set_node(p, {name = "air"}) + + if smoke > 0 then + effect(p, 2, "tnt_smoke.png") + end + end + end + end + + vi = vi + 1 + + end + end + end +end + + + + +-- register spawn eggs +function legacy_mobs:register_egg(mob, desc, background, addegg, no_creative) + + local grp = {} + + -- do NOT add this egg to creative inventory (e.g. dungeon master) + if minetest.is_creative_enabled() and no_creative == true then + grp = {not_in_creative_inventory = 1} + end + + local invimg = background + + if addegg == 1 then + invimg = "mobs_chicken_egg.png^(" .. invimg .. + "^[mask:mobs_chicken_egg_overlay.png)" + end + + -- register new spawn egg containing mob information + minetest.register_craftitem(mob .. "_set", { + + description = desc .. " (Tamed)", + inventory_image = invimg, + groups = {not_in_creative_inventory = 1}, + stack_max = 1, + + on_place = function(itemstack, placer, pointed_thing) + + local pos = pointed_thing.above + + -- am I clicking on something with existing on_rightclick function? + local under = minetest.get_node(pointed_thing.under) + local def = minetest.registered_nodes[under.name] + if def and def.on_rightclick then + return def.on_rightclick(pointed_thing.under, under, placer, itemstack) + end + + if pos and within_limits(pos, 0) then + + pos.y = pos.y + 1 + + local data = itemstack:get_metadata() + local entity = minetest.add_entity(pos, mob, data) + local lua_entity = entity:get_luaentity() + + if not lua_entity then + entity:remove() + return + end + + if lua_entity.type ~= "monster" then + -- set owner and tame if not monster + lua_entity.owner = placer:get_player_name() + lua_entity.tamed = true + end + + -- since mob is unique we remove egg once spawned + itemstack:take_item() + end + + return itemstack + end, + }) + + + -- register old stackable mob egg + minetest.register_craftitem(mob, { + + description = desc, + inventory_image = invimg, + groups = grp, + + on_place = function(itemstack, placer, pointed_thing) + + local pos = pointed_thing.above + + -- am I clicking on something with existing on_rightclick function? + local under = minetest.get_node(pointed_thing.under) + local def = minetest.registered_nodes[under.name] + if def and def.on_rightclick then + return def.on_rightclick(pointed_thing.under, under, placer, itemstack) + end + + if pos + and within_limits(pos, 0) + and not minetest.is_protected(pos, placer:get_player_name()) then + + pos.y = pos.y + 1 + + local entity = minetest.add_entity(pos, mob) + local lua_entity = entity:get_luaentity() + + if not lua_entity then + entity:remove() + return + end + + if lua_entity.type ~= "monster" then + -- set owner and tame if not monster + lua_entity.owner = placer:get_player_name() + lua_entity.tamed = true + end + + -- if not in creative then take item + if not minetest.is_creative_enabled(placer) then + itemstack:take_item() + end + end + + return itemstack + end, + }) + +end + + +-- capture critter (thanks to blert2112 for idea) +function legacy_mobs:capture_mob(self, clicker, chance_hand, chance_net, chance_lasso, force_take, replacewith) + + if self.child + or not clicker:is_player() + or not clicker:get_inventory() then + return false + end + + -- get name of clicked mob + local mobname = self.name + + -- if not nil change what will be added to inventory + if replacewith then + mobname = replacewith + end + + local name = clicker:get_player_name() + + -- is mob tamed? + if self.tamed == false + and force_take == false then + return false + end + + -- cannot pick up if not owner + if self.owner ~= name + and force_take == false then + return false + end + + if clicker:get_inventory():room_for_item("main", mobname) then + + -- was mob clicked with hand, net, or lasso? + local tool = clicker:get_wielded_item() + local chance = 0 + + if tool:is_empty() then + chance = chance_hand + + elseif tool:get_name() == "mobs:net" then + + chance = chance_net + + tool:add_wear(4000) -- 17 uses + + clicker:set_wielded_item(tool) + + elseif tool:get_name() == "mobs:magic_lasso" then + + chance = chance_lasso + + tool:add_wear(650) -- 100 uses + + clicker:set_wielded_item(tool) + end + + -- calculate chance.. add to inventory if successful? + if chance > 0 and random(1, 100) <= chance then + + -- default mob egg + local new_stack = ItemStack(mobname) + + -- add special mob egg with all mob information + -- unless 'replacewith' contains new item to use + if not replacewith then + + new_stack = ItemStack(mobname .. "_set") + + local tmp = {} + + for _,stat in pairs(self) do + local t = type(stat) + if t ~= "function" + and t ~= "nil" + and t ~= "userdata" then + tmp[_] = self[_] + end + end + + local data_str = minetest.serialize(tmp) + + new_stack:set_metadata(data_str) + end + + local inv = clicker:get_inventory() + + if inv:room_for_item("main", new_stack) then + inv:add_item("main", new_stack) + else + minetest.add_item(clicker:get_pos(), new_stack) + end + + self.object:remove() + + return true + else + minetest.chat_send_player(name, S("Missed!")) + end + end + + return false +end + + +-- protect tamed mob with rune item +function legacy_mobs:protect(self, clicker) + + local name = clicker:get_player_name() + + if self.tamed == false then + minetest.chat_send_player(name, S("Not tamed!")) + return false + end + + if self.protected == true then + minetest.chat_send_player(name, S("Already protected!")) + return false + end + + local tool = clicker:get_wielded_item() + + if tool:get_name() == "mobs:protector" then + + tool:take_item() -- take 1 protection rune + clicker:set_wielded_item(tool) + + self.protected = true + minetest.chat_send_player(name, S("Protected!")) + + return true + end + + return false +end + + +local mob_obj = {} +local mob_sta = {} + +-- feeding, taming and breeding (thanks blert2112) +function legacy_mobs:feed_tame(self, clicker, feed_count, breed, tame) + + local beast_ring = "lottother:beast_ring" + local item = clicker:get_wielded_item() + local itemname = item:get_name() or "" + local ring_used = itemname == beast_ring + + if not self.follow and not ring_used then + return false + end + + -- can eat/tame with item in hand + if follow_holding(self, clicker) then + -- if not in creative then take item + if not minetest.is_creative_enabled(clicker) and not ring_used then + + item:take_item() + + clicker:set_wielded_item(item) + end + + -- increase health + if not ring_used then + self.health = self.health + 4 + end + + if self.health >= self.hp_max then + + self.health = self.hp_max + + if self.htimer < 1 then + + self.htimer = 5 + end + end + + self.object:set_hp(self.health) + + update_tag(self) + + -- make children grow quicker + if self.child == true then + + self.hornytimer = self.hornytimer + 20 + + return true + end + + -- feed and tame + self.food = (self.food or 0) + 1 + if self.food >= feed_count or ring_used then + + self.food = 0 + + if breed and self.hornytimer == 0 and not ring_used then + self.horny = true + end + + self.gotten = false + + if tame then + + self.tamed = true + + if not self.owner or self.owner == "" then + self.owner = clicker:get_player_name() + end + end + + -- make sound when fed so many times + mob_sound(self, self.sounds.random) + end + + return true + end + + -- if mob has been tamed you can name it with a nametag + if item:get_name() == "mobs:nametag" + and clicker:get_player_name() == self.owner then + + local name = clicker:get_player_name() + + -- store mob and nametag stack in external variables + mob_obj[name] = self + mob_sta[name] = item + + local tag = self.nametag or "" + + minetest.show_formspec(name, "legacy_mobs_nametag", "size[8,4]" + .. "field[0.5,1;7.5,0;name;" .. S("Enter name:") .. ";" .. tag .. "]" + .. "button_exit[2.5,3.5;3,1;mob_rename;" .. S("Rename") .. "]") + + end + + return false + +end + + +-- inspired by blockmen's nametag mod +minetest.register_on_player_receive_fields(function(player, formname, fields) + + -- right-clicked with nametag and name entered? + if formname == "legacy_mobs_nametag" + and fields.name + and fields.name ~= "" then + + local name = player:get_player_name() + + if not mob_obj[name] + or not mob_obj[name].object then + return + end + + -- limit name entered to 64 characters long + if string.len(fields.name) > 64 then + fields.name = string.sub(fields.name, 1, 64) + end + + -- update nametag + mob_obj[name].nametag = fields.name + + update_tag(mob_obj[name]) + + -- if not in creative then take item + if not minetest.is_creative_enabled(name) then + + mob_sta[name]:take_item() + + player:set_wielded_item(mob_sta[name]) + end + + -- reset external variables + mob_obj[name] = nil + mob_sta[name] = nil + + end +end) + + +-- compatibility function for old entities to new modpack entities +function legacy_mobs:alias_mob(old_name, new_name) + + -- spawn egg + minetest.register_alias(old_name, new_name) + + -- entity + minetest.register_entity(":" .. old_name, { + + physical = false, + + on_step = function(self) + + local pos = self.object:get_pos() + + minetest.add_entity(pos, new_name) + + self.object:remove() + end + }) +end diff --git a/mods/_various/mobs/api.txt b/mods/_various/legacy_mobs/api.txt similarity index 90% rename from mods/_various/mobs/api.txt rename to mods/_various/legacy_mobs/api.txt index 326b4a5e2..4b18c595b 100644 --- a/mods/_various/mobs/api.txt +++ b/mods/_various/legacy_mobs/api.txt @@ -14,11 +14,11 @@ The mob api is a function that can be called on by other mods to add new animals 'mob_difficulty' sets difficulty level (health and hit damage multiplied by this number), defaults to 1.0. 'mob_show_health' if false then punching mob will not show health status (true by default) -mobs:register_mob(name, definition) +legacy_mobs:register_mob(name, definition) This functions registers a new mob as a Minetest entity. - 'name' is the name of the mob (e.g. "mobs:dirt_monster") + 'name' is the name of the mob (e.g. "legacy_mobs:dirt_monster") definition is a table with the following fields 'type' the type of the mob ("monster", "animal" or "npc") 'passive' will mob defend itself, set to false to attack @@ -106,7 +106,7 @@ This functions registers a new mob as a Minetest entity. Mobs can look for specific nodes as they walk and replace them to mimic eating 'replace_what' group if items to replace e.g. {"farming:wheat_8", "farming:carrot_8"} - 'replace_with' replace with what e.g. "air" or in chickens case "mobs:egg" + 'replace_with' replace with what e.g. "air" or in chickens case "legacy_mobs:egg" 'replace_rate' how random should the replace rate be (typically 10) 'replace_offset' +/- value to check specific node to replace @@ -140,18 +140,18 @@ The mob api also has some preset variables and functions that it will remember f 'do_custom' a custom function that is called every tick while mob is active and which has access to all of the self.* variables e.g. (self.health for health or self.standing_in for node status), return with 'false' to skip remainder of mob API. -mobs:register_spawn(name, nodes, max_light, min_light, chance, active_object_count, max_height, day_toggle) +legacy_mobs:register_spawn(name, nodes, max_light, min_light, chance, active_object_count, max_height, day_toggle) -mobs:spawn_specfic(name, nodes, neighbors, min_light, max_light, interval, chance, active_object_count, min_height, max_height, day_toggle, on_spawn) +legacy_mobs:spawn_specfic(name, nodes, neighbors, min_light, max_light, interval, chance, active_object_count, min_height, max_height, day_toggle, on_spawn) These functions register a spawn algorithm for the mob. Without this function the call the mobs won't spawn. 'name' is the name of the animal/monster 'nodes' is a list of nodenames on that the animal/monster can spawn on top of - 'neighbors' is a list of nodenames on that the animal/monster will spawn beside (default is {"air"} for mobs:register_spawn) + 'neighbors' is a list of nodenames on that the animal/monster will spawn beside (default is {"air"} for legacy_mobs:register_spawn) 'max_light' is the maximum of light 'min_light' is the minimum of light - 'interval' is same as in register_abm() (default is 30 for mobs:register_spawn) + 'interval' is same as in register_abm() (default is 30 for legacy_mobs:register_spawn) 'chance' is same as in register_abm() 'active_object_count' mob is only spawned if active_object_count_wider of ABM is <= this 'min_height' is the minimum height the mob can spawn @@ -159,9 +159,9 @@ These functions register a spawn algorithm for the mob. Without this function th 'day_toggle' true for day spawning, false for night or nil for anytime 'on_spawn' is a custom function which runs after mob has spawned and gives self and pos values. -... also a simpler way to handle mob spawns has been added with the mobs:spawn(def) command which uses above names to make settings clearer: +... also a simpler way to handle mob spawns has been added with the legacy_mobs:spawn(def) command which uses above names to make settings clearer: - mobs:spawn({name = "mobs_monster:tree_monster", + legacy_mobs:spawn({name = "mobs_monster:tree_monster", nodes = {"group:leaves"}, max_light = 7, }) @@ -174,7 +174,7 @@ mobs_animal:sheep_chance 11000 or mobs_monster:sand_monster_chance 100 For each mob that spawns with this function is a field in mobs.spawning_mobs. It tells if the mob should spawn or not. Default is true. So other mods can only use the API of this mod by disabling the spawning of the default mobs in this mod. -mobs:register_arrow(name, definition) +legacy_mobs:register_arrow(name, definition) This function registers a arrow for mobs with the attack type shoot. @@ -200,7 +200,7 @@ This function registers a arrow for mobs with the attack type shoot. 'on_step' is a custom function when arrow is active, nil for default. -mobs:register_egg(name, description, background, addegg) +legacy_mobs:register_egg(name, description, background, addegg) This function registers a spawn egg which can be used by admin to properly spawn in a mob. @@ -211,7 +211,7 @@ This function registers a spawn egg which can be used by admin to properly spawn 'no_creative' when set to true this stops spawn egg appearing in creative mode for destructive mobs like Dungeon Masters -mobs:explosion(pos, radius, fire, smoke) +legacy_mobs:explosion(pos, radius, fire, smoke) This function generates an explosion which removes nodes in a specific radius and replace them with fire or air. Protection nodes, obsidian and locked chests will not be destroyed although a normal chest will drop it's contents. @@ -222,7 +222,7 @@ This function generates an explosion which removes nodes in a specific radius an 'sound' sound played when mob explodes -mobs:capture_mob(self, clicker, chance_hand, chance_net, chance_lasso, force_take, replacewith) +legacy_mobs:capture_mob(self, clicker, chance_hand, chance_net, chance_lasso, force_take, replacewith) This function is generally called inside the on_rightclick section of the mob api code, it provides a chance of capturing the mob by hand, using the net or magic lasso items, and can also have the player take the mob by force if tamed and replace with another item entirely. @@ -235,7 +235,7 @@ This function is generally called inside the on_rightclick section of the mob ap 'replacewith' once captured replace mob with this item instead (overrides new mob eggs with saved information) -mobs:feed_tame(self, clicker, feed_count, breed) +legacy_mobs:feed_tame(self, clicker, feed_count, breed) This function allows the mob to be fed the item inside self.follow be it apple, wheat or whatever a set number of times and be tamed or bred as a result. @@ -246,9 +246,9 @@ This function allows the mob to be fed the item inside self.follow be it apple, 'tame' true or false stating if mob can be tamed so player can pick them up -mobs:protect(self, clicker) +legacy_mobs:protect(self, clicker) -This function can be used to right-click any tamed mob with mobs:protector item, this will protect the mob from harm inside of a protected area from other players. +This function can be used to right-click any tamed mob with legacy_mobs:protector item, this will protect the mob from harm inside of a protected area from other players. 'self' mob information 'clicker' player information @@ -268,7 +268,7 @@ Useful Internal Variables Mobs can now be ridden by players and the following shows the functions and usage: -mobs:attach(self, player) +legacy_mobs:attach(self, player) This function attaches a player to the mob so it can be ridden. @@ -276,7 +276,7 @@ This function attaches a player to the mob so it can be ridden. 'player' player information -mobs:detach(player, offset) +legacy_mobs:detach(player, offset) This function will detach the player currently riding a mob to an offset position. @@ -284,7 +284,7 @@ This function will detach the player currently riding a mob to an offset positio 'offset' position table containing offset values -mobs:drive(self, move_animation, stand_animation, can_fly, dtime) +legacy_mobs:drive(self, move_animation, stand_animation, can_fly, dtime) This function allows an attached player to move the mob around and animate it at same time. @@ -295,7 +295,7 @@ This function allows an attached player to move the mob around and animate it at 'dtime' tick time used inside drive function -mobs:fly(self, dtime, speed, can_shoot, arrow_entity, move_animation, stand_animation) +legacy_mobs:fly(self, dtime, speed, can_shoot, arrow_entity, move_animation, stand_animation) This function allows an attached player to fly the mob around using directional controls. @@ -324,7 +324,7 @@ Here is an example mob to show how the above functions work: -- rideable horse -mobs:register_mob("mob_horse:horse", { +legacy_mobs:register_mob("mob_horse:horse", { type = "animal", visual = "mesh", visual_size = {x = 1.20, y = 1.20}, @@ -360,7 +360,7 @@ mobs:register_mob("mob_horse:horse", { water_damage = 1, makes_footstep_sound = true, drops = { - {name = "mobs:meat_raw", chance = 1, min = 2, max = 3} + {name = "legacy_mobs:meat_raw", chance = 1, min = 2, max = 3} }, do_custom = function(self, dtime) @@ -393,7 +393,7 @@ mobs:register_mob("mob_horse:horse", { -- drop saddle when horse is killed while riding -- also detach from horse properly if self.driver then - minetest.add_item(pos, "mobs:saddle") + minetest.add_item(pos, "legacy_mobs:saddle") mobs.detach(self.driver, {x = 1, y = 0, z = 1}) end @@ -407,7 +407,7 @@ mobs:register_mob("mob_horse:horse", { end -- feed, tame or heal horse - if mobs:feed_tame(self, clicker, 10, true, true) then + if legacy_mobs:feed_tame(self, clicker, 10, true, true) then return end @@ -422,25 +422,25 @@ mobs:register_mob("mob_horse:horse", { mobs.detach(clicker, {x = 1, y = 0, z = 1}) -- add saddle back to inventory - if inv:room_for_item("main", "mobs:saddle") then - inv:add_item("main", "mobs:saddle") + if inv:room_for_item("main", "legacy_mobs:saddle") then + inv:add_item("main", "legacy_mobs:saddle") else - minetest.add_item(clicker.get_pos(), "mobs:saddle") + minetest.add_item(clicker.get_pos(), "legacy_mobs:saddle") end -- attach player to horse elseif not self.driver - and clicker:get_wielded_item():get_name() == "mobs:saddle" then + and clicker:get_wielded_item():get_name() == "legacy_mobs:saddle" then self.object:set_properties({stepheight = 1.1}) mobs.attach(self, clicker) -- take saddle from inventory - inv:remove_item("main", "mobs:saddle") + inv:remove_item("main", "legacy_mobs:saddle") end end -- used to capture horse with magic lasso - mobs:capture_mob(self, clicker, 0, 0, 80, false, nil) + legacy_mobs:capture_mob(self, clicker, 0, 0, 80, false, nil) end }) diff --git a/mods/_various/mobs/doc/register mob.txt b/mods/_various/legacy_mobs/doc/register mob.txt similarity index 97% rename from mods/_various/mobs/doc/register mob.txt rename to mods/_various/legacy_mobs/doc/register mob.txt index 46af6b0b8..971b495db 100644 --- a/mods/_various/mobs/doc/register mob.txt +++ b/mods/_various/legacy_mobs/doc/register mob.txt @@ -41,7 +41,7 @@ Simple Mobs has a simple API. Other mods can use the functions to add their own mobs. - ### mobs:register_mob(name, definition) + ### legacy_mobs:register_mob(name, definition) This functions registers a new mob as a Minetest entity. * `name` is the name of the mob (e.g. "mobs:dirt_monster") @@ -89,7 +89,7 @@ * `speed_run` used when mob runs behind player to make animation faster - ### mobs:register_spawn(name, nodes, max_light, min_light, chance, active_object_count, max_height) + ### legacy_mobs:register_spawn(name, nodes, max_light, min_light, chance, active_object_count, max_height) This function registers a spawn algorithm for the animal. Without this function the call the mobs won't spawn. * `name` is the name of the animal/monster @@ -115,4 +115,4 @@ * `hit_player` a function that is called when the arrow hits a player; this function should hurt the player * the parameters are (self, player) * `hit_node` a function that is called when the arrow hits a node - * the parameters are (self, pos, node) \ No newline at end of file + * the parameters are (self, pos, node) diff --git a/mods/_various/legacy_mobs/init.lua b/mods/_various/legacy_mobs/init.lua new file mode 100644 index 000000000..31e943647 --- /dev/null +++ b/mods/_various/legacy_mobs/init.lua @@ -0,0 +1,3 @@ +-- Mob Api + +dofile(minetest.get_modpath("legacy_mobs").."/api.lua") diff --git a/mods/_various/mobs/license.txt b/mods/_various/legacy_mobs/license.txt similarity index 100% rename from mods/_various/mobs/license.txt rename to mods/_various/legacy_mobs/license.txt diff --git a/mods/_various/mobs/locale/mobs.ru.tr b/mods/_various/legacy_mobs/locale/mobs.ru.tr similarity index 100% rename from mods/_various/mobs/locale/mobs.ru.tr rename to mods/_various/legacy_mobs/locale/mobs.ru.tr diff --git a/mods/_various/mobs/mod.conf b/mods/_various/legacy_mobs/mod.conf similarity index 68% rename from mods/_various/mobs/mod.conf rename to mods/_various/legacy_mobs/mod.conf index d076ae0cb..229f2adec 100644 --- a/mods/_various/mobs/mod.conf +++ b/mods/_various/legacy_mobs/mod.conf @@ -1,2 +1,2 @@ -name = mobs +name = legacy_mobs depends = default, factions, lord_classes diff --git a/mods/_various/mobs/models/character.b3d b/mods/_various/legacy_mobs/models/character.b3d similarity index 100% rename from mods/_various/mobs/models/character.b3d rename to mods/_various/legacy_mobs/models/character.b3d diff --git a/mods/_various/legacy_mobs/models/kraken.x b/mods/_various/legacy_mobs/models/kraken.x new file mode 100644 index 000000000..dee4fc98d --- /dev/null +++ b/mods/_various/legacy_mobs/models/kraken.x @@ -0,0 +1,35203 @@ +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 { + -0.999977, 0.006758, 0.000000, 0.000000, + -0.006758,-0.999977, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.802051, 0.072915, 0.612726, 1.000000;; + } + Frame Armature_Bone { + FrameTransformMatrix { + 0.060446, 0.000333,-0.998172, 0.000000, + 0.998165, 0.003678, 0.060446, 0.000000, + 0.003691,-0.999993,-0.000110, 0.000000, + -0.089351,-0.042254,-0.369701, 1.000000;; + } + } // End of Armature_Bone + Frame Armature_Bone_001 { + FrameTransformMatrix { + 0.000000, 1.000000, 0.000000, 0.000000, + -1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + -0.089351,-0.042254,-0.369701, 1.000000;; + } + Frame Armature_Bone_002 { + FrameTransformMatrix { + -0.237653,-0.971350, 0.000000, 0.000000, + 0.971350,-0.237653, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.000000, 0.705560, 0.000000, 1.000000;; + } + Frame Armature_Bone_022 { + FrameTransformMatrix { + 0.971350, 0.237653, 0.000000, 0.000000, + -0.237653, 0.971350, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.000000, 0.951083, 0.000000, 1.000000;; + } + Frame Armature_Bone_024 { + FrameTransformMatrix { + 1.000000,-0.000000,-0.000000, 0.000000, + -0.000000, 0.999556,-0.029781, 0.000000, + 0.000000, 0.029781, 0.999556, 0.000000, + 0.000000, 2.410316, 0.000000, 1.000000;; + } + Frame Armature_Bone_026 { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + -0.000000, 0.998974, 0.045292, 0.000000, + -0.000000,-0.045292, 0.998974, 0.000000, + 0.000000, 2.365125, 0.000000, 1.000000;; + } + } // End of Armature_Bone_026 + } // End of Armature_Bone_024 + } // End of Armature_Bone_022 + } // End of Armature_Bone_002 + Frame Armature_Bone_003 { + FrameTransformMatrix { + 0.346339,-0.938109, 0.000000, 0.000000, + 0.938109, 0.346339, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.000000, 0.705560, 0.000000, 1.000000;; + } + Frame Armature_Bone_023 { + FrameTransformMatrix { + 0.938109,-0.346339, 0.000000, 0.000000, + 0.346339, 0.938109, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + -0.000000, 0.974908, 0.000000, 1.000000;; + } + Frame Armature_Bone_025 { + FrameTransformMatrix { + 1.000000,-0.000000,-0.000000, 0.000000, + 0.000000, 0.999556,-0.029781, 0.000000, + 0.000000, 0.029781, 0.999556, 0.000000, + -0.000000, 2.410316, 0.000000, 1.000000;; + } + Frame Armature_Bone_027 { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + -0.000000, 0.998974, 0.045292, 0.000000, + -0.000000,-0.045292, 0.998974, 0.000000, + -0.000000, 2.365126,-0.000000, 1.000000;; + } + } // End of Armature_Bone_027 + } // End of Armature_Bone_025 + } // End of Armature_Bone_023 + } // End of Armature_Bone_003 + Frame Armature_Bone_004 { + FrameTransformMatrix { + 0.592700,-0.805423, 0.000000, 0.000000, + 0.805423, 0.592700, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.000000, 0.705560, 0.000000, 1.000000;; + } + Frame Armature_Bone_028 { + FrameTransformMatrix { + 0.592700, 0.805424, 0.000000, 0.000000, + -0.805269, 0.592586,-0.019565, 0.000000, + -0.015758, 0.011596, 0.999809, 0.000000, + 0.000000, 0.939853, 0.000000, 1.000000;; + } + Frame Armature_Bone_032 { + FrameTransformMatrix { + 1.000000,-0.000000,-0.000000, 0.000000, + 0.000000, 0.999809, 0.019565, 0.000000, + 0.000000,-0.019565, 0.999809, 0.000000, + 0.000000, 2.406491, 0.000000, 1.000000;; + } + Frame Armature_Bone_036 { + 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, 2.366877,-0.000000, 1.000000;; + } + } // End of Armature_Bone_036 + } // End of Armature_Bone_032 + } // End of Armature_Bone_028 + } // End of Armature_Bone_004 + Frame Armature_Bone_005 { + FrameTransformMatrix { + -0.212350, 0.977194, 0.000000, 0.000000, + -0.977194,-0.212350, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.000000, 0.705560, 0.000000, 1.000000;; + } + Frame Armature_Bone_016 { + FrameTransformMatrix { + 0.977194,-0.212350, 0.000000, 0.000000, + 0.212350, 0.977194, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.000000, 1.078077, 0.000000, 1.000000;; + } + Frame Armature_Bone_018 { + FrameTransformMatrix { + -1.000000,-0.000000,-0.000003, 0.000000, + 0.000000, 0.999763,-0.021773, 0.000000, + 0.000003,-0.021773,-0.999763, 0.000000, + -0.000000, 2.352446, 0.000000, 1.000000;; + } + Frame Armature_Bone_020 { + FrameTransformMatrix { + -1.000000,-0.000000, 0.000003, 0.000000, + -0.000000, 0.999763,-0.021770, 0.000000, + -0.000003,-0.021770,-0.999763, 0.000000, + 0.000000, 2.377758,-0.000000, 1.000000;; + } + } // End of Armature_Bone_020 + } // End of Armature_Bone_018 + } // End of Armature_Bone_016 + } // End of Armature_Bone_005 + Frame Armature_Bone_006 { + FrameTransformMatrix { + 0.359843, 0.933013, 0.000000, 0.000000, + -0.933013, 0.359843, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.000000, 0.705560, 0.000000, 1.000000;; + } + Frame Armature_Bone_017 { + FrameTransformMatrix { + 0.933013, 0.359842, 0.000000, 0.000000, + -0.359842, 0.933013, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.000000, 1.094029,-0.000000, 1.000000;; + } + Frame Armature_Bone_019 { + FrameTransformMatrix { + -1.000000,-0.000000,-0.000003, 0.000000, + 0.000000, 0.999763,-0.021773, 0.000000, + 0.000003,-0.021773,-0.999763, 0.000000, + -0.000000, 2.352446, 0.000000, 1.000000;; + } + Frame Armature_Bone_021 { + FrameTransformMatrix { + -1.000000,-0.000000, 0.000003, 0.000000, + -0.000000, 0.999763,-0.021770, 0.000000, + -0.000003,-0.021770,-0.999763, 0.000000, + -0.000000, 2.377757, 0.000000, 1.000000;; + } + } // End of Armature_Bone_021 + } // End of Armature_Bone_019 + } // End of Armature_Bone_017 + } // End of Armature_Bone_006 + Frame Armature_Bone_007 { + FrameTransformMatrix { + 0.534838, 0.844955, 0.000000, 0.000000, + -0.844955, 0.534838, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.000000, 0.705560, 0.000000, 1.000000;; + } + Frame Armature_Bone_029 { + FrameTransformMatrix { + 0.534838,-0.844955, 0.000000, 0.000000, + 0.844793, 0.534736,-0.019565, 0.000000, + 0.016532, 0.010464, 0.999809, 0.000000, + -0.000000, 1.026680, 0.000000, 1.000000;; + } + Frame Armature_Bone_033 { + FrameTransformMatrix { + 1.000000, 0.000000,-0.000000, 0.000000, + 0.000000, 0.999809, 0.019565, 0.000000, + 0.000000,-0.019565, 0.999808, 0.000000, + -0.000000, 2.406489,-0.000000, 1.000000;; + } + Frame Armature_Bone_037 { + 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, 2.366877,-0.000000, 1.000000;; + } + } // End of Armature_Bone_037 + } // End of Armature_Bone_033 + } // End of Armature_Bone_029 + } // End of Armature_Bone_007 + Frame Armature_Bone_008 { + FrameTransformMatrix { + 0.955762,-0.294142, 0.000000, 0.000000, + 0.294142, 0.955762, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.000000, 0.705560, 0.000000, 1.000000;; + } + Frame Armature_Bone_030 { + FrameTransformMatrix { + 0.955762, 0.294142, 0.000000, 0.000000, + -0.294086, 0.955579,-0.019565, 0.000000, + -0.005755, 0.018700, 0.999809, 0.000000, + 0.000000, 0.605340, 0.000000, 1.000000;; + } + Frame Armature_Bone_034 { + FrameTransformMatrix { + 1.000000, 0.000000,-0.000000, 0.000000, + 0.000000, 0.999809, 0.019565, 0.000000, + 0.000000,-0.019565, 0.999809, 0.000000, + -0.000000, 2.406491, 0.000000, 1.000000;; + } + Frame Armature_Bone_038 { + 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, 2.366877,-0.000000, 1.000000;; + } + } // End of Armature_Bone_038 + } // End of Armature_Bone_034 + } // End of Armature_Bone_030 + } // End of Armature_Bone_008 + Frame Armature_Bone_009 { + FrameTransformMatrix { + 0.864508, 0.502619, 0.000000, 0.000000, + -0.502619, 0.864508, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.000000, 0.705560, 0.000000, 1.000000;; + } + Frame Armature_Bone_031 { + FrameTransformMatrix { + 0.864508,-0.502619, 0.000000, 0.000000, + 0.502522, 0.864343,-0.019565, 0.000000, + 0.009834, 0.016915, 0.999809, 0.000000, + 0.000000, 0.657669, 0.000000, 1.000000;; + } + Frame Armature_Bone_035 { + FrameTransformMatrix { + 1.000000, 0.000000,-0.000000, 0.000000, + 0.000000, 0.999809, 0.019565, 0.000000, + 0.000000,-0.019565, 0.999809, 0.000000, + 0.000000, 2.406491, 0.000000, 1.000000;; + } + Frame Armature_Bone_039 { + 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, 2.366877,-0.000000, 1.000000;; + } + } // End of Armature_Bone_039 + } // End of Armature_Bone_035 + } // End of Armature_Bone_031 + } // End of Armature_Bone_009 + Frame Armature_Bone_010 { + FrameTransformMatrix { + 0.000000,-0.979454,-0.201670, 0.000000, + 0.000000, 0.201670,-0.979454, 0.000000, + 1.000000, 0.000000,-0.000000, 0.000000, + 0.000000, 0.705560, 0.000000, 1.000000;; + } + } // End of Armature_Bone_010 + Frame Armature_Bone_011 { + FrameTransformMatrix { + -0.000550,-0.979743, 0.200259, 0.000000, + -0.009142,-0.200246,-0.979703, 0.000000, + 0.999958,-0.002370,-0.008847, 0.000000, + 0.000000, 0.705560, 0.000000, 1.000000;; + } + } // End of Armature_Bone_011 + Frame Armature_Bone_012 { + FrameTransformMatrix { + -0.005381,-0.963301,-0.268370, 0.000000, + -0.513396,-0.227643, 0.827407, 0.000000, + -0.858135, 0.142232,-0.493330, 0.000000, + 0.000000, 0.705560, 0.000000, 1.000000;; + } + } // End of Armature_Bone_012 + Frame Armature_Bone_013 { + FrameTransformMatrix { + -0.123592,-0.965161,-0.230626, 0.000000, + 0.436888,-0.261595, 0.860637, 0.000000, + -0.890985, 0.005611, 0.453999, 0.000000, + 0.000000, 0.705560, 0.000000, 1.000000;; + } + } // End of Armature_Bone_013 + } // End of Armature_Bone_001 + Frame Cube { + FrameTransformMatrix { + 0.594084,-0.000000, 0.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 0.474968, 0.000000, + -0.790636,-0.072915,-0.120927, 1.000000;; + } + Mesh { // Cube mesh + 720; + -0.294973; 1.012501;-0.929354;, + -0.872514; 1.012501;-0.929354;, + -0.872514; 3.392842;-0.929354;, + -0.294973; 3.392841;-0.929354;, + -0.294973; 1.012501;-0.307697;, + -0.294973; 3.392841;-0.307697;, + -0.872513; 3.392842;-0.307697;, + -0.872514; 1.012502;-0.307697;, + -0.294973; 1.012501;-0.929354;, + -0.294973; 1.012501;-0.307697;, + -0.872514; 1.012502;-0.307697;, + -0.872514; 1.012501;-0.929354;, + -0.872514; 1.012501;-0.929354;, + -0.872514; 1.012502;-0.307697;, + -0.872513; 3.392842;-0.307697;, + -0.872514; 3.392842;-0.929354;, + -0.872514; 3.392842;-0.929354;, + -0.872513; 3.392842;-0.307697;, + -0.294973; 3.392841;-0.307697;, + -0.294973; 3.392841;-0.929354;, + -0.294973; 1.012501;-0.307697;, + -0.294973; 1.012501;-0.929354;, + -0.294973; 3.392841;-0.929354;, + -0.294973; 3.392841;-0.307697;, + -0.379065; 3.413567;-0.839338;, + -0.788422; 3.413567;-0.839338;, + -0.788422; 5.793907;-0.839338;, + -0.379065; 5.793907;-0.839338;, + -0.379065; 3.413566;-0.397712;, + -0.379065; 5.793907;-0.397712;, + -0.788422; 5.793907;-0.397712;, + -0.788422; 3.413567;-0.397712;, + -0.379065; 3.413567;-0.839338;, + -0.379065; 3.413566;-0.397712;, + -0.788422; 3.413567;-0.397712;, + -0.788422; 3.413567;-0.839338;, + -0.788422; 3.413567;-0.839338;, + -0.788422; 3.413567;-0.397712;, + -0.788422; 5.793907;-0.397712;, + -0.788422; 5.793907;-0.839338;, + -0.788422; 5.793907;-0.839338;, + -0.788422; 5.793907;-0.397712;, + -0.379065; 5.793907;-0.397712;, + -0.379065; 5.793907;-0.839338;, + -0.379065; 3.413566;-0.397712;, + -0.379065; 3.413567;-0.839338;, + -0.379065; 5.793907;-0.839338;, + -0.379065; 5.793907;-0.397712;, + -0.430627; 5.805873;-0.804031;, + -0.736860; 5.805873;-0.804031;, + -0.736860; 9.036607;-0.804031;, + -0.430627; 9.036607;-0.804031;, + -0.430627; 5.805872;-0.433018;, + -0.430627; 9.036607;-0.433018;, + -0.736860; 9.036608;-0.433018;, + -0.736860; 5.805873;-0.433018;, + -0.430627; 5.805873;-0.804031;, + -0.430627; 5.805872;-0.433018;, + -0.736860; 5.805873;-0.433018;, + -0.736860; 5.805873;-0.804031;, + -0.736860; 5.805873;-0.804031;, + -0.736860; 5.805873;-0.433018;, + -0.736860; 9.036608;-0.433018;, + -0.736860; 9.036607;-0.804031;, + -0.736860; 9.036607;-0.804031;, + -0.736860; 9.036608;-0.433018;, + -0.430627; 9.036607;-0.433018;, + -0.430627; 9.036607;-0.804031;, + -0.430627; 5.805872;-0.433018;, + -0.430627; 5.805873;-0.804031;, + -0.430627; 9.036607;-0.804031;, + -0.430627; 9.036607;-0.433018;, + 0.663480; 1.012503;-0.929353;, + 0.085940; 1.012503;-0.929353;, + 0.085940; 3.392843;-0.929353;, + 0.663480; 3.392842;-0.929353;, + 0.663480; 1.012502;-0.307696;, + 0.663480; 3.392842;-0.307696;, + 0.085940; 3.392843;-0.307696;, + 0.085940; 1.012503;-0.307696;, + 0.663480; 1.012503;-0.929353;, + 0.663480; 1.012502;-0.307696;, + 0.085940; 1.012503;-0.307696;, + 0.085940; 1.012503;-0.929353;, + 0.085940; 1.012503;-0.929353;, + 0.085940; 1.012503;-0.307696;, + 0.085940; 3.392843;-0.307696;, + 0.085940; 3.392843;-0.929353;, + 0.085940; 3.392843;-0.929353;, + 0.085940; 3.392843;-0.307696;, + 0.663480; 3.392842;-0.307696;, + 0.663480; 3.392842;-0.929353;, + 0.663480; 1.012502;-0.307696;, + 0.663480; 1.012503;-0.929353;, + 0.663480; 3.392842;-0.929353;, + 0.663480; 3.392842;-0.307696;, + 0.579388; 3.413568;-0.839338;, + 0.170032; 3.413568;-0.839338;, + 0.170032; 5.793908;-0.839338;, + 0.579388; 5.793907;-0.839338;, + 0.579388; 3.413567;-0.397711;, + 0.579388; 5.793908;-0.397711;, + 0.170032; 5.793908;-0.397711;, + 0.170032; 3.413568;-0.397711;, + 0.579388; 3.413568;-0.839338;, + 0.579388; 3.413567;-0.397711;, + 0.170032; 3.413568;-0.397711;, + 0.170032; 3.413568;-0.839338;, + 0.170032; 3.413568;-0.839338;, + 0.170032; 3.413568;-0.397711;, + 0.170032; 5.793908;-0.397711;, + 0.170032; 5.793908;-0.839338;, + 0.170032; 5.793908;-0.839338;, + 0.170032; 5.793908;-0.397711;, + 0.579388; 5.793908;-0.397711;, + 0.579388; 5.793907;-0.839338;, + 0.579388; 3.413567;-0.397711;, + 0.579388; 3.413568;-0.839338;, + 0.579388; 5.793907;-0.839338;, + 0.579388; 5.793908;-0.397711;, + 0.527826; 5.805873;-0.804031;, + 0.221593; 5.805873;-0.804031;, + 0.221593; 9.036608;-0.804031;, + 0.527826; 9.036608;-0.804031;, + 0.527826; 5.805873;-0.433017;, + 0.527826; 9.036608;-0.433017;, + 0.221593; 9.036608;-0.433017;, + 0.221593; 5.805874;-0.433017;, + 0.527826; 5.805873;-0.804031;, + 0.527826; 5.805873;-0.433017;, + 0.221593; 5.805874;-0.433017;, + 0.221593; 5.805873;-0.804031;, + 0.221593; 5.805873;-0.804031;, + 0.221593; 5.805874;-0.433017;, + 0.221593; 9.036608;-0.433017;, + 0.221593; 9.036608;-0.804031;, + 0.221593; 9.036608;-0.804031;, + 0.221593; 9.036608;-0.433017;, + 0.527826; 9.036608;-0.433017;, + 0.527826; 9.036608;-0.804031;, + 0.527826; 5.805873;-0.433017;, + 0.527826; 5.805873;-0.804031;, + 0.527826; 9.036608;-0.804031;, + 0.527826; 9.036608;-0.433017;, + 0.085939;-1.013609;-0.929353;, + 0.663479;-1.013609;-0.929353;, + 0.663480;-3.393950;-0.929353;, + 0.085939;-3.393949;-0.929353;, + 0.085939;-1.013609;-0.307696;, + 0.085939;-3.393950;-0.307696;, + 0.663480;-3.393950;-0.307696;, + 0.663480;-1.013610;-0.307696;, + 0.085939;-1.013609;-0.929353;, + 0.085939;-1.013609;-0.307696;, + 0.663480;-1.013610;-0.307696;, + 0.663479;-1.013609;-0.929353;, + 0.663479;-1.013609;-0.929353;, + 0.663480;-1.013610;-0.307696;, + 0.663480;-3.393950;-0.307696;, + 0.663480;-3.393950;-0.929353;, + 0.663480;-3.393950;-0.929353;, + 0.663480;-3.393950;-0.307696;, + 0.085939;-3.393950;-0.307696;, + 0.085939;-3.393949;-0.929353;, + 0.085939;-1.013609;-0.307696;, + 0.085939;-1.013609;-0.929353;, + 0.085939;-3.393949;-0.929353;, + 0.085939;-3.393950;-0.307696;, + 0.170031;-3.414675;-0.839338;, + 0.579388;-3.414675;-0.839338;, + 0.579388;-5.795015;-0.839338;, + 0.170031;-5.795014;-0.839338;, + 0.170031;-3.414675;-0.397711;, + 0.170031;-5.795015;-0.397711;, + 0.579388;-5.795015;-0.397711;, + 0.579388;-3.414676;-0.397711;, + 0.170031;-3.414675;-0.839338;, + 0.170031;-3.414675;-0.397711;, + 0.579388;-3.414676;-0.397711;, + 0.579388;-3.414675;-0.839338;, + 0.579388;-3.414675;-0.839338;, + 0.579388;-3.414676;-0.397711;, + 0.579388;-5.795015;-0.397711;, + 0.579388;-5.795015;-0.839338;, + 0.579388;-5.795015;-0.839338;, + 0.579388;-5.795015;-0.397711;, + 0.170031;-5.795015;-0.397711;, + 0.170031;-5.795014;-0.839338;, + 0.170031;-3.414675;-0.397711;, + 0.170031;-3.414675;-0.839338;, + 0.170031;-5.795014;-0.839338;, + 0.170031;-5.795015;-0.397711;, + 0.221593;-5.806980;-0.804031;, + 0.527826;-5.806980;-0.804031;, + 0.527826;-8.856149;-0.804031;, + 0.221593;-8.856149;-0.804031;, + 0.221593;-5.806980;-0.433017;, + 0.221593;-8.856149;-0.433017;, + 0.527826;-8.856149;-0.433017;, + 0.527826;-5.806980;-0.433017;, + 0.221593;-5.806980;-0.804031;, + 0.221593;-5.806980;-0.433017;, + 0.527826;-5.806980;-0.433017;, + 0.527826;-5.806980;-0.804031;, + 0.527826;-5.806980;-0.804031;, + 0.527826;-5.806980;-0.433017;, + 0.527826;-8.856149;-0.433017;, + 0.527826;-8.856149;-0.804031;, + 0.527826;-8.856149;-0.804031;, + 0.527826;-8.856149;-0.433017;, + 0.221593;-8.856149;-0.433017;, + 0.221593;-8.856149;-0.804031;, + 0.221593;-5.806980;-0.433017;, + 0.221593;-5.806980;-0.804031;, + 0.221593;-8.856149;-0.804031;, + 0.221593;-8.856149;-0.433017;, + -0.909680;-1.013609;-0.929353;, + -0.332140;-1.013609;-0.929353;, + -0.332140;-3.393950;-0.929353;, + -0.909680;-3.393949;-0.929353;, + -0.909680;-1.013609;-0.307696;, + -0.909680;-3.393950;-0.307696;, + -0.332140;-3.393950;-0.307696;, + -0.332139;-1.013610;-0.307696;, + -0.909680;-1.013609;-0.929353;, + -0.909680;-1.013609;-0.307696;, + -0.332139;-1.013610;-0.307696;, + -0.332140;-1.013609;-0.929353;, + -0.332140;-1.013609;-0.929353;, + -0.332139;-1.013610;-0.307696;, + -0.332140;-3.393950;-0.307696;, + -0.332140;-3.393950;-0.929353;, + -0.332140;-3.393950;-0.929353;, + -0.332140;-3.393950;-0.307696;, + -0.909680;-3.393950;-0.307696;, + -0.909680;-3.393949;-0.929353;, + -0.909680;-1.013609;-0.307696;, + -0.909680;-1.013609;-0.929353;, + -0.909680;-3.393949;-0.929353;, + -0.909680;-3.393950;-0.307696;, + -0.825588;-3.414675;-0.839338;, + -0.416231;-3.414675;-0.839338;, + -0.416231;-5.795015;-0.839338;, + -0.825588;-5.795014;-0.839338;, + -0.825588;-3.414675;-0.397711;, + -0.825588;-5.795015;-0.397711;, + -0.416231;-5.795015;-0.397711;, + -0.416231;-3.414676;-0.397711;, + -0.825588;-3.414675;-0.839338;, + -0.825588;-3.414675;-0.397711;, + -0.416231;-3.414676;-0.397711;, + -0.416231;-3.414675;-0.839338;, + -0.416231;-3.414675;-0.839338;, + -0.416231;-3.414676;-0.397711;, + -0.416231;-5.795015;-0.397711;, + -0.416231;-5.795015;-0.839338;, + -0.416231;-5.795015;-0.839338;, + -0.416231;-5.795015;-0.397711;, + -0.825588;-5.795015;-0.397711;, + -0.825588;-5.795014;-0.839338;, + -0.825588;-3.414675;-0.397711;, + -0.825588;-3.414675;-0.839338;, + -0.825588;-5.795014;-0.839338;, + -0.825588;-5.795015;-0.397711;, + -0.774026;-5.806980;-0.804031;, + -0.467793;-5.806980;-0.804031;, + -0.467793;-8.856149;-0.804031;, + -0.774026;-8.856149;-0.804031;, + -0.774026;-5.806980;-0.433017;, + -0.774026;-8.856149;-0.433017;, + -0.467793;-8.856149;-0.433017;, + -0.467793;-5.806980;-0.433017;, + -0.774026;-5.806980;-0.804031;, + -0.774026;-5.806980;-0.433017;, + -0.467793;-5.806980;-0.433017;, + -0.467793;-5.806980;-0.804031;, + -0.467793;-5.806980;-0.804031;, + -0.467793;-5.806980;-0.433017;, + -0.467793;-8.856149;-0.433017;, + -0.467793;-8.856149;-0.804031;, + -0.467793;-8.856149;-0.804031;, + -0.467793;-8.856149;-0.433017;, + -0.774026;-8.856149;-0.433017;, + -0.774026;-8.856149;-0.804031;, + -0.774026;-5.806980;-0.433017;, + -0.774026;-5.806980;-0.804031;, + -0.774026;-8.856149;-0.804031;, + -0.774026;-8.856149;-0.433017;, + -1.023242;-0.135273;-0.929352;, + -1.023242;-0.478382;-0.929352;, + -5.029981;-0.478382;-0.929352;, + -5.029979;-0.135273;-0.929352;, + -1.023241;-0.135274;-0.307695;, + -5.029980;-0.135273;-0.307695;, + -5.029981;-0.478381;-0.307695;, + -1.023244;-0.478382;-0.307695;, + -1.023242;-0.135273;-0.929352;, + -1.023241;-0.135274;-0.307695;, + -1.023244;-0.478382;-0.307695;, + -1.023242;-0.478382;-0.929352;, + -1.023242;-0.478382;-0.929352;, + -1.023244;-0.478382;-0.307695;, + -5.029981;-0.478381;-0.307695;, + -5.029981;-0.478382;-0.929352;, + -5.029981;-0.478382;-0.929352;, + -5.029981;-0.478381;-0.307695;, + -5.029980;-0.135273;-0.307695;, + -5.029979;-0.135273;-0.929352;, + -1.023241;-0.135274;-0.307695;, + -1.023242;-0.135273;-0.929352;, + -5.029979;-0.135273;-0.929352;, + -5.029980;-0.135273;-0.307695;, + -5.064866;-0.185232;-0.839337;, + -5.064866;-0.428423;-0.839337;, + -9.071604;-0.428423;-0.839337;, + -9.071603;-0.185232;-0.839337;, + -5.064864;-0.185232;-0.397711;, + -9.071604;-0.185232;-0.397711;, + -9.071605;-0.428423;-0.397711;, + -5.064867;-0.428423;-0.397711;, + -5.064866;-0.185232;-0.839337;, + -5.064864;-0.185232;-0.397711;, + -5.064867;-0.428423;-0.397711;, + -5.064866;-0.428423;-0.839337;, + -5.064866;-0.428423;-0.839337;, + -5.064867;-0.428423;-0.397711;, + -9.071605;-0.428423;-0.397711;, + -9.071604;-0.428423;-0.839337;, + -9.071604;-0.428423;-0.839337;, + -9.071605;-0.428423;-0.397711;, + -9.071604;-0.185232;-0.397711;, + -9.071603;-0.185232;-0.839337;, + -5.064864;-0.185232;-0.397711;, + -5.064866;-0.185232;-0.839337;, + -9.071603;-0.185232;-0.839337;, + -9.071604;-0.185232;-0.397711;, + -9.091745;-0.215864;-0.804031;, + -9.091745;-0.397791;-0.804031;, + -13.984310;-0.397791;-0.804031;, + -13.984309;-0.215864;-0.804031;, + -9.091744;-0.215864;-0.433017;, + -13.984309;-0.215864;-0.433017;, + -13.984310;-0.397791;-0.433017;, + -9.091745;-0.397791;-0.433017;, + -9.091745;-0.215864;-0.804031;, + -9.091744;-0.215864;-0.433017;, + -9.091745;-0.397791;-0.433017;, + -9.091745;-0.397791;-0.804031;, + -9.091745;-0.397791;-0.804031;, + -9.091745;-0.397791;-0.433017;, + -13.984310;-0.397791;-0.433017;, + -13.984310;-0.397791;-0.804031;, + -13.984310;-0.397791;-0.804031;, + -13.984310;-0.397791;-0.433017;, + -13.984309;-0.215864;-0.433017;, + -13.984309;-0.215864;-0.804031;, + -9.091744;-0.215864;-0.433017;, + -9.091745;-0.215864;-0.804031;, + -13.984309;-0.215864;-0.804031;, + -13.984309;-0.215864;-0.433017;, + -9.091745; 0.346586;-0.804031;, + -9.091745; 0.164658;-0.804031;, + -13.984310; 0.164658;-0.804031;, + -13.984309; 0.346586;-0.804031;, + -9.091744; 0.346586;-0.433017;, + -13.984309; 0.346586;-0.433017;, + -13.984310; 0.164658;-0.433017;, + -9.091745; 0.164658;-0.433017;, + -9.091745; 0.346586;-0.804031;, + -9.091744; 0.346586;-0.433017;, + -9.091745; 0.164658;-0.433017;, + -9.091745; 0.164658;-0.804031;, + -9.091745; 0.164658;-0.804031;, + -9.091745; 0.164658;-0.433017;, + -13.984310; 0.164658;-0.433017;, + -13.984310; 0.164658;-0.804031;, + -13.984310; 0.164658;-0.804031;, + -13.984310; 0.164658;-0.433017;, + -13.984309; 0.346586;-0.433017;, + -13.984309; 0.346586;-0.804031;, + -9.091744; 0.346586;-0.433017;, + -9.091745; 0.346586;-0.804031;, + -13.984309; 0.346586;-0.804031;, + -13.984309; 0.346586;-0.433017;, + -5.064866; 0.377218;-0.839337;, + -5.064866; 0.134026;-0.839337;, + -9.071604; 0.134026;-0.839337;, + -9.071603; 0.377218;-0.839337;, + -5.064864; 0.377218;-0.397711;, + -9.071604; 0.377218;-0.397711;, + -9.071605; 0.134026;-0.397711;, + -5.064867; 0.134026;-0.397711;, + -5.064866; 0.377218;-0.839337;, + -5.064864; 0.377218;-0.397711;, + -5.064867; 0.134026;-0.397711;, + -5.064866; 0.134026;-0.839337;, + -5.064866; 0.134026;-0.839337;, + -5.064867; 0.134026;-0.397711;, + -9.071605; 0.134026;-0.397711;, + -9.071604; 0.134026;-0.839337;, + -9.071604; 0.134026;-0.839337;, + -9.071605; 0.134026;-0.397711;, + -9.071604; 0.377218;-0.397711;, + -9.071603; 0.377218;-0.839337;, + -5.064864; 0.377218;-0.397711;, + -5.064866; 0.377218;-0.839337;, + -9.071603; 0.377218;-0.839337;, + -9.071604; 0.377218;-0.397711;, + -1.023242; 0.427175;-0.929352;, + -1.023242; 0.084068;-0.929352;, + -5.029981; 0.084068;-0.929352;, + -5.029979; 0.427176;-0.929352;, + -1.023241; 0.427175;-0.307695;, + -5.029980; 0.427176;-0.307695;, + -5.029981; 0.084068;-0.307695;, + -1.023244; 0.084068;-0.307695;, + -1.023242; 0.427175;-0.929352;, + -1.023241; 0.427175;-0.307695;, + -1.023244; 0.084068;-0.307695;, + -1.023242; 0.084068;-0.929352;, + -1.023242; 0.084068;-0.929352;, + -1.023244; 0.084068;-0.307695;, + -5.029981; 0.084068;-0.307695;, + -5.029981; 0.084068;-0.929352;, + -5.029981; 0.084068;-0.929352;, + -5.029981; 0.084068;-0.307695;, + -5.029980; 0.427176;-0.307695;, + -5.029979; 0.427176;-0.929352;, + -1.023241; 0.427175;-0.307695;, + -1.023242; 0.427175;-0.929352;, + -5.029979; 0.427176;-0.929352;, + -5.029980; 0.427176;-0.307695;, + -1.023241;-0.608884;-0.929353;, + -1.023241;-0.951993;-0.929353;, + -5.029979;-0.951993;-0.929353;, + -5.029978;-0.608884;-0.929353;, + -1.023240;-0.608884;-0.307696;, + -5.029979;-0.608884;-0.307696;, + -5.029979;-0.951992;-0.307696;, + -1.023242;-0.951993;-0.307696;, + -1.023241;-0.608884;-0.929353;, + -1.023240;-0.608884;-0.307696;, + -1.023242;-0.951993;-0.307696;, + -1.023241;-0.951993;-0.929353;, + -1.023241;-0.951993;-0.929353;, + -1.023242;-0.951993;-0.307696;, + -5.029979;-0.951992;-0.307696;, + -5.029979;-0.951993;-0.929353;, + -5.029979;-0.951993;-0.929353;, + -5.029979;-0.951992;-0.307696;, + -5.029979;-0.608884;-0.307696;, + -5.029978;-0.608884;-0.929353;, + -1.023240;-0.608884;-0.307696;, + -1.023241;-0.608884;-0.929353;, + -5.029978;-0.608884;-0.929353;, + -5.029979;-0.608884;-0.307696;, + -5.064866;-0.658843;-0.839338;, + -5.064866;-0.902035;-0.839338;, + -9.071604;-0.902035;-0.839338;, + -9.071603;-0.658843;-0.839338;, + -5.064864;-0.658843;-0.397711;, + -9.071603;-0.658843;-0.397711;, + -9.071605;-0.902035;-0.397711;, + -5.064867;-0.902035;-0.397711;, + -5.064866;-0.658843;-0.839338;, + -5.064864;-0.658843;-0.397711;, + -5.064867;-0.902035;-0.397711;, + -5.064866;-0.902035;-0.839338;, + -5.064866;-0.902035;-0.839338;, + -5.064867;-0.902035;-0.397711;, + -9.071605;-0.902035;-0.397711;, + -9.071604;-0.902035;-0.839338;, + -9.071604;-0.902035;-0.839338;, + -9.071605;-0.902035;-0.397711;, + -9.071603;-0.658843;-0.397711;, + -9.071603;-0.658843;-0.839338;, + -5.064864;-0.658843;-0.397711;, + -5.064866;-0.658843;-0.839338;, + -9.071603;-0.658843;-0.839338;, + -9.071603;-0.658843;-0.397711;, + -9.091745;-0.689475;-0.804031;, + -9.091745;-0.871403;-0.804031;, + -13.984310;-0.871403;-0.804031;, + -13.984309;-0.689475;-0.804031;, + -9.091744;-0.689475;-0.433017;, + -13.984309;-0.689475;-0.433017;, + -13.984310;-0.871403;-0.433017;, + -9.091745;-0.871403;-0.433017;, + -9.091745;-0.689475;-0.804031;, + -9.091744;-0.689475;-0.433017;, + -9.091745;-0.871403;-0.433017;, + -9.091745;-0.871403;-0.804031;, + -9.091745;-0.871403;-0.804031;, + -9.091745;-0.871403;-0.433017;, + -13.984310;-0.871403;-0.433017;, + -13.984310;-0.871403;-0.804031;, + -13.984310;-0.871403;-0.804031;, + -13.984310;-0.871403;-0.433017;, + -13.984309;-0.689475;-0.433017;, + -13.984309;-0.689475;-0.804031;, + -9.091744;-0.689475;-0.433017;, + -9.091745;-0.689475;-0.804031;, + -13.984309;-0.689475;-0.804031;, + -13.984309;-0.689475;-0.433017;, + -9.091745; 0.876890;-0.804031;, + -9.091745; 0.694963;-0.804031;, + -13.984310; 0.694963;-0.804031;, + -13.984309; 0.876890;-0.804031;, + -9.091744; 0.876890;-0.433017;, + -13.984309; 0.876890;-0.433017;, + -13.984310; 0.694963;-0.433017;, + -9.091745; 0.694963;-0.433017;, + -9.091745; 0.876890;-0.804031;, + -9.091744; 0.876890;-0.433017;, + -9.091745; 0.694963;-0.433017;, + -9.091745; 0.694963;-0.804031;, + -9.091745; 0.694963;-0.804031;, + -9.091745; 0.694963;-0.433017;, + -13.984310; 0.694963;-0.433017;, + -13.984310; 0.694963;-0.804031;, + -13.984310; 0.694963;-0.804031;, + -13.984310; 0.694963;-0.433017;, + -13.984309; 0.876890;-0.433017;, + -13.984309; 0.876890;-0.804031;, + -9.091744; 0.876890;-0.433017;, + -9.091745; 0.876890;-0.804031;, + -13.984309; 0.876890;-0.804031;, + -13.984309; 0.876890;-0.433017;, + -5.064866; 0.907522;-0.839337;, + -5.064866; 0.664330;-0.839337;, + -9.071604; 0.664330;-0.839337;, + -9.071603; 0.907522;-0.839337;, + -5.064864; 0.907522;-0.397711;, + -9.071604; 0.907522;-0.397711;, + -9.071605; 0.664330;-0.397711;, + -5.064867; 0.664330;-0.397711;, + -5.064866; 0.907522;-0.839337;, + -5.064864; 0.907522;-0.397711;, + -5.064867; 0.664330;-0.397711;, + -5.064866; 0.664330;-0.839337;, + -5.064866; 0.664330;-0.839337;, + -5.064867; 0.664330;-0.397711;, + -9.071605; 0.664330;-0.397711;, + -9.071604; 0.664330;-0.839337;, + -9.071604; 0.664330;-0.839337;, + -9.071605; 0.664330;-0.397711;, + -9.071604; 0.907522;-0.397711;, + -9.071603; 0.907522;-0.839337;, + -5.064864; 0.907522;-0.397711;, + -5.064866; 0.907522;-0.839337;, + -9.071603; 0.907522;-0.839337;, + -9.071604; 0.907522;-0.397711;, + -1.023242; 0.957479;-0.929352;, + -1.023242; 0.614372;-0.929352;, + -5.029981; 0.614372;-0.929352;, + -5.029979; 0.957480;-0.929352;, + -1.023241; 0.957479;-0.307695;, + -5.029980; 0.957480;-0.307695;, + -5.029981; 0.614373;-0.307695;, + -1.023244; 0.614372;-0.307695;, + -1.023242; 0.957479;-0.929352;, + -1.023241; 0.957479;-0.307695;, + -1.023244; 0.614372;-0.307695;, + -1.023242; 0.614372;-0.929352;, + -1.023242; 0.614372;-0.929352;, + -1.023244; 0.614372;-0.307695;, + -5.029981; 0.614373;-0.307695;, + -5.029981; 0.614372;-0.929352;, + -5.029981; 0.614372;-0.929352;, + -5.029981; 0.614373;-0.307695;, + -5.029980; 0.957480;-0.307695;, + -5.029979; 0.957480;-0.929352;, + -1.023241; 0.957479;-0.307695;, + -1.023242; 0.957479;-0.929352;, + -5.029979; 0.957480;-0.929352;, + -5.029980; 0.957480;-0.307695;, + 0.202079; 0.109746;-1.456488;, + 0.202079;-0.109746;-1.456488;, + 0.027299;-0.109746;-1.456488;, + 0.027299; 0.109746;-1.456488;, + 0.202079; 0.109746;-0.980459;, + 0.027299; 0.109746;-0.980459;, + 0.027299;-0.109746;-0.980459;, + 0.202079;-0.109746;-0.980459;, + 0.202079; 0.109746;-1.456488;, + 0.202079; 0.109746;-0.980459;, + 0.202079;-0.109746;-0.980459;, + 0.202079;-0.109746;-1.456488;, + 0.202079;-0.109746;-1.456488;, + 0.202079;-0.109746;-0.980459;, + 0.027299;-0.109746;-0.980459;, + 0.027299;-0.109746;-1.456488;, + 0.027299;-0.109746;-1.456488;, + 0.027299;-0.109746;-0.980459;, + 0.027299; 0.109746;-0.980459;, + 0.027299; 0.109746;-1.456488;, + 0.202079; 0.109746;-0.980459;, + 0.202079; 0.109746;-1.456488;, + 0.027299; 0.109746;-1.456488;, + 0.027299; 0.109746;-0.980459;, + -0.082525; 0.109746;-1.456488;, + -0.082525;-0.109746;-1.456488;, + -0.257305;-0.109746;-1.456488;, + -0.257305; 0.109746;-1.456488;, + -0.082525; 0.109746;-0.980459;, + -0.257305; 0.109746;-0.980459;, + -0.257305;-0.109746;-0.980459;, + -0.082525;-0.109746;-0.980459;, + -0.082525; 0.109746;-1.456488;, + -0.082525; 0.109746;-0.980459;, + -0.082525;-0.109746;-0.980459;, + -0.082525;-0.109746;-1.456488;, + -0.082525;-0.109746;-1.456488;, + -0.082525;-0.109746;-0.980459;, + -0.257305;-0.109746;-0.980459;, + -0.257305;-0.109746;-1.456488;, + -0.257305;-0.109746;-1.456488;, + -0.257305;-0.109746;-0.980459;, + -0.257305; 0.109746;-0.980459;, + -0.257305; 0.109746;-1.456488;, + -0.082525; 0.109746;-0.980459;, + -0.082525; 0.109746;-1.456488;, + -0.257305; 0.109746;-1.456488;, + -0.257305; 0.109746;-0.980459;, + 8.097778; 1.627711;-1.673107;, + 8.097778;-1.579254;-1.673107;, + 1.052408;-1.579254;-1.673107;, + 1.052410; 1.627712;-1.673107;, + 8.097780; 1.627711; 2.763484;, + 1.052409; 1.627712; 2.763484;, + 1.052408;-1.579254; 2.763484;, + 8.097776;-1.579255; 2.763484;, + 8.097778; 1.627711;-1.673107;, + 8.097780; 1.627711; 2.763484;, + 8.097776;-1.579255; 2.763484;, + 8.097778;-1.579254;-1.673107;, + 8.097778;-1.579254;-1.673107;, + 8.097776;-1.579255; 2.763484;, + 1.052408;-1.579254; 2.763484;, + 1.052408;-1.579254;-1.673107;, + 1.052408;-1.579254;-1.673107;, + 1.052408;-1.579254; 2.763484;, + 1.052409; 1.627712; 2.763484;, + 1.052410; 1.627712;-1.673107;, + 8.097780; 1.627711; 2.763484;, + 8.097778; 1.627711;-1.673107;, + 1.052410; 1.627712;-1.673107;, + 1.052409; 1.627712; 2.763484;, + 0.861567; 0.809532; 0.905798;, + 0.861567; 0.339538; 0.905798;, + 0.125708; 0.339538; 0.905798;, + 0.125708; 0.809532; 0.905798;, + 0.861567; 0.809532; 1.853384;, + 0.125708; 0.809532; 1.853384;, + 0.125708; 0.339538; 1.853384;, + 0.861567; 0.339538; 1.853384;, + 0.861567; 0.809532; 0.905798;, + 0.861567; 0.809532; 1.853384;, + 0.861567; 0.339538; 1.853384;, + 0.861567; 0.339538; 0.905798;, + 0.861567; 0.339538; 0.905798;, + 0.861567; 0.339538; 1.853384;, + 0.125708; 0.339538; 1.853384;, + 0.125708; 0.339538; 0.905798;, + 0.125708; 0.339538; 0.905798;, + 0.125708; 0.339538; 1.853384;, + 0.125708; 0.809532; 1.853384;, + 0.125708; 0.809532; 0.905798;, + 0.861567; 0.809532; 1.853384;, + 0.861567; 0.809532; 0.905798;, + 0.125708; 0.809532; 0.905798;, + 0.125708; 0.809532; 1.853384;, + 0.790055;-0.399687; 0.905798;, + 0.790055;-0.869681; 0.905798;, + 0.054196;-0.869681; 0.905798;, + 0.054196;-0.399687; 0.905798;, + 0.790056;-0.399687; 1.853384;, + 0.054196;-0.399687; 1.853384;, + 0.054196;-0.869681; 1.853384;, + 0.790055;-0.869682; 1.853384;, + 0.790055;-0.399687; 0.905798;, + 0.790056;-0.399687; 1.853384;, + 0.790055;-0.869682; 1.853384;, + 0.790055;-0.869681; 0.905798;, + 0.790055;-0.869681; 0.905798;, + 0.790055;-0.869682; 1.853384;, + 0.054196;-0.869681; 1.853384;, + 0.054196;-0.869681; 0.905798;, + 0.054196;-0.869681; 0.905798;, + 0.054196;-0.869681; 1.853384;, + 0.054196;-0.399687; 1.853384;, + 0.054196;-0.399687; 0.905798;, + 0.790056;-0.399687; 1.853384;, + 0.790055;-0.399687; 0.905798;, + 0.054196;-0.399687; 0.905798;, + 0.054196;-0.399687; 1.853384;, + 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.999999; 1.000000;, + -1.000000; 1.000000; 1.000000;, + -1.000000;-1.000000; 1.000000;, + 0.999999;-1.000001; 1.000000;, + 1.000000; 1.000000;-1.000000;, + 1.000000; 0.999999; 1.000000;, + 0.999999;-1.000001; 1.000000;, + 1.000000;-1.000000;-1.000000;, + 1.000000;-1.000000;-1.000000;, + 0.999999;-1.000001; 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.999999; 1.000000;, + 1.000000; 1.000000;-1.000000;, + -1.000000; 1.000000;-1.000000;, + -1.000000; 1.000000; 1.000000;; + 180; + 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;, + 4;351,350,349,348;, + 4;355,354,353,352;, + 4;359,358,357,356;, + 4;363,362,361,360;, + 4;367,366,365,364;, + 4;371,370,369,368;, + 4;375,374,373,372;, + 4;379,378,377,376;, + 4;383,382,381,380;, + 4;387,386,385,384;, + 4;391,390,389,388;, + 4;395,394,393,392;, + 4;399,398,397,396;, + 4;403,402,401,400;, + 4;407,406,405,404;, + 4;411,410,409,408;, + 4;415,414,413,412;, + 4;419,418,417,416;, + 4;423,422,421,420;, + 4;427,426,425,424;, + 4;431,430,429,428;, + 4;435,434,433,432;, + 4;439,438,437,436;, + 4;443,442,441,440;, + 4;447,446,445,444;, + 4;451,450,449,448;, + 4;455,454,453,452;, + 4;459,458,457,456;, + 4;463,462,461,460;, + 4;467,466,465,464;, + 4;471,470,469,468;, + 4;475,474,473,472;, + 4;479,478,477,476;, + 4;483,482,481,480;, + 4;487,486,485,484;, + 4;491,490,489,488;, + 4;495,494,493,492;, + 4;499,498,497,496;, + 4;503,502,501,500;, + 4;507,506,505,504;, + 4;511,510,509,508;, + 4;515,514,513,512;, + 4;519,518,517,516;, + 4;523,522,521,520;, + 4;527,526,525,524;, + 4;531,530,529,528;, + 4;535,534,533,532;, + 4;539,538,537,536;, + 4;543,542,541,540;, + 4;547,546,545,544;, + 4;551,550,549,548;, + 4;555,554,553,552;, + 4;559,558,557,556;, + 4;563,562,561,560;, + 4;567,566,565,564;, + 4;571,570,569,568;, + 4;575,574,573,572;, + 4;579,578,577,576;, + 4;583,582,581,580;, + 4;587,586,585,584;, + 4;591,590,589,588;, + 4;595,594,593,592;, + 4;599,598,597,596;, + 4;603,602,601,600;, + 4;607,606,605,604;, + 4;611,610,609,608;, + 4;615,614,613,612;, + 4;619,618,617,616;, + 4;623,622,621,620;, + 4;627,626,625,624;, + 4;631,630,629,628;, + 4;635,634,633,632;, + 4;639,638,637,636;, + 4;643,642,641,640;, + 4;647,646,645,644;, + 4;651,650,649,648;, + 4;655,654,653,652;, + 4;659,658,657,656;, + 4;663,662,661,660;, + 4;667,666,665,664;, + 4;671,670,669,668;, + 4;675,674,673,672;, + 4;679,678,677,676;, + 4;683,682,681,680;, + 4;687,686,685,684;, + 4;691,690,689,688;, + 4;695,694,693,692;, + 4;699,698,697,696;, + 4;703,702,701,700;, + 4;707,706,705,704;, + 4;711,710,709,708;, + 4;715,714,713,712;, + 4;719,718,717,716;; + MeshNormals { // Cube normals + 180; + 0.000000;-0.000000;-1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000001;-1.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + 0.000001; 1.000000;-0.000000;, + 1.000000;-0.000000; 0.000000;, + 0.000000;-0.000000;-1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000001;-1.000000; 0.000000;, + -1.000000; 0.000000;-0.000000;, + 0.000001; 1.000000;-0.000001;, + 1.000000;-0.000000; 0.000000;, + 0.000000;-0.000000;-1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000002;-1.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + 0.000002; 1.000000;-0.000001;, + 1.000000;-0.000000; 0.000000;, + 0.000000;-0.000000;-1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000001;-1.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + 0.000001; 1.000000;-0.000000;, + 1.000000;-0.000000; 0.000000;, + 0.000000;-0.000000;-1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000001;-1.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + 0.000002; 1.000000;-0.000001;, + 1.000000; 0.000000; 0.000000;, + 0.000000;-0.000000;-1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000001;-1.000000; 0.000001;, + -1.000000; 0.000000;-0.000000;, + 0.000000; 1.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000001; 1.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + -0.000001;-1.000000;-0.000001;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000001; 1.000000; 0.000001;, + 1.000000;-0.000000;-0.000000;, + -0.000001;-1.000000;-0.000001;, + -1.000000;-0.000000; 0.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 1.000000; 0.000000;, + 1.000000;-0.000000;-0.000000;, + 0.000000;-1.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000001; 1.000000; 0.000000;, + 1.000000; 0.000000;-0.000000;, + -0.000001;-1.000000;-0.000001;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000001; 1.000000; 0.000001;, + 1.000000; 0.000000;-0.000000;, + -0.000001;-1.000000;-0.000001;, + -1.000000;-0.000000; 0.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 1.000000; 0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000;-1.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000;-0.000000; 1.000000;, + 1.000000;-0.000003; 0.000000;, + -0.000000;-1.000000; 0.000001;, + -1.000000; 0.000004;-0.000001;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000;-0.000000; 1.000000;, + 1.000000;-0.000005;-0.000001;, + 0.000000;-1.000000; 0.000000;, + -1.000000; 0.000004;-0.000002;, + -0.000000; 1.000000; 0.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000;-0.000000; 1.000000;, + 1.000000;-0.000003;-0.000001;, + 0.000000;-1.000000; 0.000000;, + -1.000000; 0.000005; 0.000000;, + -0.000000; 1.000000; 0.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000;-0.000000; 1.000000;, + 1.000000;-0.000003;-0.000001;, + 0.000000;-1.000000; 0.000000;, + -1.000000; 0.000005; 0.000000;, + -0.000000; 1.000000; 0.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000;-0.000000; 1.000000;, + 1.000000;-0.000005;-0.000001;, + 0.000000;-1.000000; 0.000000;, + -1.000000; 0.000004;-0.000002;, + -0.000000; 1.000000; 0.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000;-0.000000; 1.000000;, + 1.000000;-0.000003; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -1.000000; 0.000004;-0.000001;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000;-0.000000; 1.000000;, + 1.000000;-0.000003; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -1.000000; 0.000002;-0.000000;, + -0.000000; 1.000000; 0.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000;-0.000000; 1.000000;, + 1.000000;-0.000005;-0.000001;, + 0.000000;-1.000000; 0.000000;, + -1.000000; 0.000006;-0.000001;, + -0.000000; 1.000000; 0.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000;-0.000000; 1.000000;, + 1.000000;-0.000003;-0.000001;, + 0.000000;-1.000000; 0.000000;, + -1.000000; 0.000005; 0.000000;, + -0.000000; 1.000000; 0.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000;-0.000000; 1.000000;, + 1.000000;-0.000003;-0.000001;, + 0.000000;-1.000000; 0.000000;, + -1.000000; 0.000005; 0.000000;, + -0.000000; 1.000000; 0.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000;-0.000000; 1.000000;, + 1.000000;-0.000005;-0.000001;, + 0.000000;-1.000000; 0.000000;, + -1.000000; 0.000004;-0.000002;, + -0.000000; 1.000000; 0.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000;-0.000000; 1.000000;, + 1.000000;-0.000003; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -1.000000; 0.000004;-0.000001;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000;-0.000000; 1.000000;, + 1.000000;-0.000000; 0.000000;, + -0.000000;-1.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000;-0.000000; 1.000000;, + 1.000000;-0.000000; 0.000000;, + -0.000000;-1.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000;-0.000000; 1.000000;, + 1.000000;-0.000001;-0.000000;, + -0.000000;-1.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000;-0.000000; 1.000000;, + 1.000000;-0.000000; 0.000000;, + -0.000000;-1.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000;-0.000000; 1.000000;, + 1.000000;-0.000000; 0.000000;, + -0.000000;-1.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000;-0.000000; 1.000000;, + 1.000000;-0.000000; 0.000000;, + -0.000000;-1.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + 0.000000; 1.000000; 0.000000;; + 180; + 4;0,0,0,0;, + 4;1,1,1,1;, + 4;2,2,2,2;, + 4;3,3,3,3;, + 4;4,4,4,4;, + 4;5,5,5,5;, + 4;6,6,6,6;, + 4;7,7,7,7;, + 4;8,8,8,8;, + 4;9,9,9,9;, + 4;10,10,10,10;, + 4;11,11,11,11;, + 4;12,12,12,12;, + 4;13,13,13,13;, + 4;14,14,14,14;, + 4;15,15,15,15;, + 4;16,16,16,16;, + 4;17,17,17,17;, + 4;18,18,18,18;, + 4;19,19,19,19;, + 4;20,20,20,20;, + 4;21,21,21,21;, + 4;22,22,22,22;, + 4;23,23,23,23;, + 4;24,24,24,24;, + 4;25,25,25,25;, + 4;26,26,26,26;, + 4;27,27,27,27;, + 4;28,28,28,28;, + 4;29,29,29,29;, + 4;30,30,30,30;, + 4;31,31,31,31;, + 4;32,32,32,32;, + 4;33,33,33,33;, + 4;34,34,34,34;, + 4;35,35,35,35;, + 4;36,36,36,36;, + 4;37,37,37,37;, + 4;38,38,38,38;, + 4;39,39,39,39;, + 4;40,40,40,40;, + 4;41,41,41,41;, + 4;42,42,42,42;, + 4;43,43,43,43;, + 4;44,44,44,44;, + 4;45,45,45,45;, + 4;46,46,46,46;, + 4;47,47,47,47;, + 4;48,48,48,48;, + 4;49,49,49,49;, + 4;50,50,50,50;, + 4;51,51,51,51;, + 4;52,52,52,52;, + 4;53,53,53,53;, + 4;54,54,54,54;, + 4;55,55,55,55;, + 4;56,56,56,56;, + 4;57,57,57,57;, + 4;58,58,58,58;, + 4;59,59,59,59;, + 4;60,60,60,60;, + 4;61,61,61,61;, + 4;62,62,62,62;, + 4;63,63,63,63;, + 4;64,64,64,64;, + 4;65,65,65,65;, + 4;66,66,66,66;, + 4;67,67,67,67;, + 4;68,68,68,68;, + 4;69,69,69,69;, + 4;70,70,70,70;, + 4;71,71,71,71;, + 4;72,72,72,72;, + 4;73,73,73,73;, + 4;74,74,74,74;, + 4;75,75,75,75;, + 4;76,76,76,76;, + 4;77,77,77,77;, + 4;78,78,78,78;, + 4;79,79,79,79;, + 4;80,80,80,80;, + 4;81,81,81,81;, + 4;82,82,82,82;, + 4;83,83,83,83;, + 4;84,84,84,84;, + 4;85,85,85,85;, + 4;86,86,86,86;, + 4;87,87,87,87;, + 4;88,88,88,88;, + 4;89,89,89,89;, + 4;90,90,90,90;, + 4;91,91,91,91;, + 4;92,92,92,92;, + 4;93,93,93,93;, + 4;94,94,94,94;, + 4;95,95,95,95;, + 4;96,96,96,96;, + 4;97,97,97,97;, + 4;98,98,98,98;, + 4;99,99,99,99;, + 4;100,100,100,100;, + 4;101,101,101,101;, + 4;102,102,102,102;, + 4;103,103,103,103;, + 4;104,104,104,104;, + 4;105,105,105,105;, + 4;106,106,106,106;, + 4;107,107,107,107;, + 4;108,108,108,108;, + 4;109,109,109,109;, + 4;110,110,110,110;, + 4;111,111,111,111;, + 4;112,112,112,112;, + 4;113,113,113,113;, + 4;114,114,114,114;, + 4;115,115,115,115;, + 4;116,116,116,116;, + 4;117,117,117,117;, + 4;118,118,118,118;, + 4;119,119,119,119;, + 4;120,120,120,120;, + 4;121,121,121,121;, + 4;122,122,122,122;, + 4;123,123,123,123;, + 4;124,124,124,124;, + 4;125,125,125,125;, + 4;126,126,126,126;, + 4;127,127,127,127;, + 4;128,128,128,128;, + 4;129,129,129,129;, + 4;130,130,130,130;, + 4;131,131,131,131;, + 4;132,132,132,132;, + 4;133,133,133,133;, + 4;134,134,134,134;, + 4;135,135,135,135;, + 4;136,136,136,136;, + 4;137,137,137,137;, + 4;138,138,138,138;, + 4;139,139,139,139;, + 4;140,140,140,140;, + 4;141,141,141,141;, + 4;142,142,142,142;, + 4;143,143,143,143;, + 4;144,144,144,144;, + 4;145,145,145,145;, + 4;146,146,146,146;, + 4;147,147,147,147;, + 4;148,148,148,148;, + 4;149,149,149,149;, + 4;150,150,150,150;, + 4;151,151,151,151;, + 4;152,152,152,152;, + 4;153,153,153,153;, + 4;154,154,154,154;, + 4;155,155,155,155;, + 4;156,156,156,156;, + 4;157,157,157,157;, + 4;158,158,158,158;, + 4;159,159,159,159;, + 4;160,160,160,160;, + 4;161,161,161,161;, + 4;162,162,162,162;, + 4;163,163,163,163;, + 4;164,164,164,164;, + 4;165,165,165,165;, + 4;166,166,166,166;, + 4;167,167,167,167;, + 4;168,168,168,168;, + 4;169,169,169,169;, + 4;170,170,170,170;, + 4;171,171,171,171;, + 4;172,172,172,172;, + 4;173,173,173,173;, + 4;174,174,174,174;, + 4;175,175,175,175;, + 4;176,176,176,176;, + 4;177,177,177,177;, + 4;178,178,178,178;, + 4;179,179,179,179;; + } // End of Cube normals + MeshTextureCoords { // Cube UV coordinates + 720; + 0.197765; 0.234466;, + 0.229069; 0.234466;, + 0.229069; 0.103014;, + 0.197765; 0.103014;, + 0.322982; 0.234466;, + 0.322982; 0.103014;, + 0.291678; 0.103014;, + 0.291678; 0.234466;, + 0.764230; 0.116058;, + 0.764230; 0.081728;, + 0.732925; 0.081728;, + 0.732925; 0.116058;, + 0.332547; 0.234466;, + 0.298852; 0.234466;, + 0.298852; 0.365918;, + 0.332547; 0.365918;, + 0.847875; 0.340738;, + 0.847875; 0.375068;, + 0.879180; 0.375068;, + 0.879180; 0.340738;, + 0.231460; 0.234466;, + 0.197765; 0.234466;, + 0.197765; 0.365918;, + 0.231460; 0.365918;, + 0.437234; 0.037308;, + 0.415046; 0.037308;, + 0.415046; 0.168760;, + 0.437234; 0.168760;, + 0.369843; 0.037308;, + 0.369843; 0.168760;, + 0.392031; 0.168760;, + 0.392031; 0.037308;, + 0.081572; 0.066010;, + 0.081572; 0.090398;, + 0.103760; 0.090398;, + 0.103760; 0.066010;, + 0.134421; 0.090398;, + 0.110484; 0.090399;, + 0.110484; 0.221851;, + 0.134421; 0.221851;, + 0.148137; 0.090398;, + 0.148137; 0.066010;, + 0.125948; 0.066010;, + 0.125948; 0.090398;, + 0.906693; 0.610925;, + 0.930631; 0.610925;, + 0.930631; 0.479473;, + 0.906693; 0.479473;, + 0.927605; 0.340738;, + 0.944204; 0.340738;, + 0.944204; 0.162323;, + 0.927605; 0.162323;, + 0.907535; 0.821585;, + 0.907535; 1.000000;, + 0.924134; 1.000000;, + 0.924134; 0.821585;, + 0.838960; 0.058343;, + 0.838960; 0.078832;, + 0.855558; 0.078832;, + 0.855558; 0.058343;, + 0.906693; 0.432511;, + 0.886583; 0.432511;, + 0.886583; 0.610925;, + 0.906693; 0.610925;, + 0.788311; 0.061239;, + 0.788311; 0.081728;, + 0.804910; 0.081728;, + 0.804910; 0.061239;, + 0.867315; 1.000000;, + 0.887425; 1.000000;, + 0.887425; 0.821585;, + 0.867315; 0.821585;, + 0.820868; 0.623541;, + 0.789563; 0.623541;, + 0.789563; 0.754993;, + 0.820868; 0.754993;, + 0.062609; 0.221851;, + 0.062609; 0.090398;, + 0.031304; 0.090398;, + 0.031304; 0.221851;, + 0.807655; 0.085138;, + 0.807655; 0.119469;, + 0.838960; 0.119469;, + 0.838960; 0.085138;, + 0.755867; 0.623541;, + 0.722172; 0.623541;, + 0.722172; 0.754993;, + 0.755867; 0.754993;, + 0.260374; 0.103014;, + 0.260374; 0.068683;, + 0.229069; 0.068683;, + 0.229069; 0.103014;, + 0.654780; 0.754993;, + 0.688476; 0.754993;, + 0.688476; 0.623541;, + 0.654780; 0.623541;, + 0.437234; 0.168760;, + 0.459423; 0.168760;, + 0.459423; 0.037308;, + 0.437234; 0.037308;, + 0.347654; 0.037308;, + 0.347654; 0.168760;, + 0.369843; 0.168760;, + 0.369843; 0.037308;, + 0.829844; 0.085138;, + 0.829844; 0.060750;, + 0.807655; 0.060750;, + 0.807655; 0.085138;, + 0.158359; 0.090399;, + 0.134421; 0.090399;, + 0.134421; 0.221851;, + 0.158359; 0.221851;, + 0.732925; 0.057339;, + 0.732925; 0.081728;, + 0.755113; 0.081727;, + 0.755113; 0.057339;, + 0.927605; 0.209285;, + 0.903668; 0.209285;, + 0.903668; 0.340738;, + 0.927605; 0.340738;, + 0.920242; 0.815667;, + 0.936841; 0.815667;, + 0.936841; 0.637252;, + 0.920242; 0.637252;, + 0.924134; 0.821585;, + 0.924134; 1.000000;, + 0.940733; 1.000000;, + 0.940733; 0.821585;, + 0.864960; 0.064649;, + 0.864960; 0.085138;, + 0.881559; 0.085138;, + 0.881559; 0.064649;, + 0.903668; 0.162323;, + 0.883558; 0.162323;, + 0.883558; 0.340738;, + 0.903668; 0.340738;, + 0.910484; 0.610925;, + 0.910484; 0.631414;, + 0.927083; 0.631414;, + 0.927083; 0.610925;, + 0.866473; 0.610925;, + 0.886583; 0.610925;, + 0.886583; 0.432511;, + 0.866473; 0.432511;, + 0.000000; 0.221851;, + 0.031304; 0.221851;, + 0.031304; 0.090399;, + 0.000000; 0.090399;, + 0.291678; 0.234466;, + 0.291678; 0.103014;, + 0.260374; 0.103014;, + 0.260374; 0.234466;, + 0.197765; 0.068683;, + 0.197765; 0.103014;, + 0.229069; 0.103014;, + 0.229069; 0.068683;, + 0.722172; 0.623541;, + 0.688476; 0.623541;, + 0.688476; 0.754993;, + 0.722172; 0.754993;, + 0.910484; 0.645256;, + 0.910484; 0.610925;, + 0.879180; 0.610925;, + 0.879180; 0.645256;, + 0.298852; 0.234466;, + 0.265156; 0.234466;, + 0.265156; 0.365918;, + 0.298852; 0.365918;, + 0.584777; 0.168760;, + 0.606966; 0.168760;, + 0.606966; 0.037308;, + 0.584777; 0.037308;, + 0.560840; 0.037308;, + 0.560840; 0.168760;, + 0.583028; 0.168760;, + 0.583028; 0.037308;, + 0.103760; 0.066010;, + 0.103760; 0.090398;, + 0.125948; 0.090398;, + 0.125948; 0.066010;, + 0.086546; 0.221851;, + 0.110484; 0.221851;, + 0.110484; 0.090398;, + 0.086546; 0.090398;, + 0.059383; 0.066010;, + 0.059383; 0.090398;, + 0.081572; 0.090398;, + 0.081572; 0.066010;, + 0.903668; 0.209285;, + 0.927605; 0.209285;, + 0.927605; 0.077833;, + 0.903668; 0.077833;, + 0.699728; 0.168388;, + 0.716326; 0.168388;, + 0.716326; 0.000000;, + 0.699728; 0.000000;, + 0.672872; 0.000000;, + 0.672872; 0.168388;, + 0.689471; 0.168388;, + 0.689471; 0.000000;, + 0.755113; 0.061239;, + 0.755113; 0.081728;, + 0.771712; 0.081728;, + 0.771712; 0.061239;, + 0.900132; 0.647279;, + 0.880022; 0.647279;, + 0.880022; 0.815667;, + 0.900132; 0.815667;, + 0.920267; 0.077833;, + 0.920267; 0.057344;, + 0.903668; 0.057344;, + 0.903668; 0.077833;, + 0.900132; 0.815667;, + 0.920242; 0.815667;, + 0.920242; 0.647279;, + 0.900132; 0.647279;, + 0.229069; 0.234466;, + 0.260374; 0.234466;, + 0.260374; 0.103014;, + 0.229069; 0.103014;, + 0.880022; 0.778731;, + 0.880022; 0.647279;, + 0.848718; 0.647279;, + 0.848718; 0.778731;, + 0.764230; 0.081728;, + 0.764230; 0.116058;, + 0.795534; 0.116058;, + 0.795534; 0.081728;, + 0.265156; 0.234466;, + 0.231460; 0.234466;, + 0.231460; 0.365918;, + 0.265156; 0.365918;, + 0.879180; 0.645256;, + 0.879180; 0.610925;, + 0.847875; 0.610925;, + 0.847875; 0.645256;, + 0.789563; 0.623541;, + 0.755867; 0.623541;, + 0.755867; 0.754993;, + 0.789563; 0.754993;, + 0.414219; 0.037308;, + 0.392031; 0.037308;, + 0.392031; 0.168760;, + 0.414219; 0.168760;, + 0.459423; 0.037308;, + 0.459423; 0.168760;, + 0.481611; 0.168760;, + 0.481611; 0.037308;, + 0.148137; 0.066010;, + 0.148137; 0.090398;, + 0.170325; 0.090398;, + 0.170325; 0.066010;, + 0.086546; 0.090399;, + 0.062609; 0.090399;, + 0.062609; 0.221851;, + 0.086546; 0.221851;, + 0.059383; 0.090398;, + 0.059383; 0.066010;, + 0.037195; 0.066010;, + 0.037195; 0.090398;, + 0.930631; 0.348021;, + 0.906693; 0.348021;, + 0.906693; 0.479473;, + 0.930631; 0.479473;, + 0.606966; 0.168760;, + 0.623564; 0.168760;, + 0.623564; 0.000372;, + 0.606966; 0.000372;, + 0.716326; 0.000000;, + 0.716326; 0.168388;, + 0.732925; 0.168388;, + 0.732925; 0.000000;, + 0.771712; 0.061239;, + 0.771712; 0.081728;, + 0.788311; 0.081728;, + 0.788311; 0.061239;, + 0.322982; 0.234466;, + 0.343092; 0.234466;, + 0.343092; 0.066078;, + 0.322982; 0.066078;, + 0.551071; 0.079204;, + 0.551071; 0.058715;, + 0.534472; 0.058715;, + 0.534472; 0.079204;, + 0.887425; 1.000000;, + 0.907535; 1.000000;, + 0.907535; 0.831612;, + 0.887425; 0.831612;, + 0.807655; 0.340738;, + 0.826253; 0.340738;, + 0.826253; 0.119469;, + 0.807655; 0.119469;, + 0.806736; 0.389656;, + 0.806736; 0.168388;, + 0.788139; 0.168388;, + 0.788139; 0.389656;, + 0.883558; 0.127993;, + 0.883558; 0.162323;, + 0.902155; 0.162323;, + 0.902155; 0.127993;, + 0.773960; 0.389656;, + 0.740264; 0.389657;, + 0.740264; 0.610925;, + 0.773960; 0.610925;, + 0.902155; 0.127993;, + 0.902155; 0.093662;, + 0.883558; 0.093662;, + 0.883558; 0.127993;, + 0.773960; 0.610925;, + 0.807655; 0.610925;, + 0.807655; 0.389657;, + 0.773960; 0.389657;, + 0.967096; 1.000000;, + 0.980278; 1.000000;, + 0.980278; 0.778731;, + 0.967096; 0.778731;, + 0.967096; 1.000000;, + 0.967096; 0.778731;, + 0.953914; 0.778731;, + 0.953914; 1.000000;, + 0.332547; 0.243976;, + 0.332547; 0.268364;, + 0.345729; 0.268364;, + 0.345729; 0.243976;, + 0.632652; 0.168760;, + 0.608715; 0.168760;, + 0.608715; 0.390029;, + 0.632652; 0.390029;, + 0.171540; 0.173074;, + 0.171540; 0.148685;, + 0.158359; 0.148685;, + 0.158359; 0.173074;, + 0.764201; 0.168388;, + 0.740264; 0.168388;, + 0.740264; 0.389656;, + 0.764201; 0.389656;, + 0.980429; 0.340738;, + 0.990290; 0.340738;, + 0.990290; 0.070550;, + 0.980429; 0.070550;, + 0.990139; 1.000000;, + 0.990139; 0.729812;, + 0.980278; 0.729812;, + 0.980278; 1.000000;, + 0.217487; 0.048194;, + 0.217487; 0.068683;, + 0.227348; 0.068683;, + 0.227348; 0.048194;, + 0.807655; 0.610925;, + 0.827765; 0.610925;, + 0.827765; 0.340738;, + 0.807655; 0.340738;, + 0.207626; 0.068683;, + 0.207626; 0.048194;, + 0.197765; 0.048194;, + 0.197765; 0.068683;, + 0.652762; 0.390029;, + 0.672872; 0.390029;, + 0.672872; 0.119841;, + 0.652762; 0.119841;, + 0.970176; 0.610925;, + 0.980037; 0.610925;, + 0.980037; 0.340738;, + 0.970176; 0.340738;, + 0.559947; 0.390029;, + 0.559947; 0.119841;, + 0.550086; 0.119841;, + 0.550086; 0.390029;, + 0.699728; 0.069034;, + 0.699728; 0.048545;, + 0.689867; 0.048545;, + 0.689867; 0.069034;, + 0.509866; 0.119841;, + 0.489756; 0.119841;, + 0.489756; 0.390029;, + 0.509866; 0.390029;, + 0.321185; 0.076725;, + 0.321185; 0.056237;, + 0.311324; 0.056237;, + 0.311324; 0.076725;, + 0.509866; 0.390029;, + 0.529976; 0.390029;, + 0.529976; 0.119841;, + 0.509866; 0.119841;, + 0.943812; 0.610925;, + 0.956994; 0.610925;, + 0.956994; 0.389657;, + 0.943812; 0.389657;, + 0.953914; 1.000000;, + 0.953914; 0.778731;, + 0.940733; 0.778731;, + 0.940733; 1.000000;, + 0.345729; 0.341530;, + 0.345729; 0.317141;, + 0.332547; 0.317141;, + 0.332547; 0.341530;, + 0.584777; 0.168760;, + 0.560840; 0.168760;, + 0.560840; 0.390029;, + 0.584777; 0.390029;, + 0.332547; 0.341530;, + 0.332547; 0.365918;, + 0.345729; 0.365918;, + 0.345729; 0.341530;, + 0.672872; 0.389657;, + 0.696810; 0.389656;, + 0.696810; 0.168388;, + 0.672872; 0.168388;, + 0.847875; 0.610925;, + 0.866473; 0.610925;, + 0.866473; 0.389657;, + 0.847875; 0.389657;, + 0.867315; 1.000000;, + 0.867315; 0.778731;, + 0.848718; 0.778731;, + 0.848718; 1.000000;, + 0.018597; 0.056068;, + 0.018597; 0.090398;, + 0.037195; 0.090398;, + 0.037195; 0.056068;, + 0.456060; 0.390029;, + 0.489756; 0.390029;, + 0.489756; 0.168760;, + 0.456060; 0.168760;, + 0.883558; 0.059332;, + 0.883558; 0.093662;, + 0.902155; 0.093662;, + 0.902155; 0.059332;, + 0.415046; 0.390029;, + 0.448741; 0.390029;, + 0.448741; 0.168760;, + 0.415046; 0.168760;, + 0.827765; 0.340738;, + 0.846363; 0.340738;, + 0.846363; 0.119469;, + 0.827765; 0.119469;, + 0.716326; 0.389656;, + 0.716326; 0.168388;, + 0.697729; 0.168388;, + 0.697729; 0.389656;, + 0.879180; 0.340738;, + 0.879180; 0.375068;, + 0.897777; 0.375068;, + 0.897777; 0.340738;, + 0.672872; 0.610925;, + 0.706568; 0.610925;, + 0.706568; 0.389657;, + 0.672872; 0.389657;, + 0.864960; 0.085138;, + 0.864960; 0.119469;, + 0.883558; 0.119469;, + 0.883558; 0.085138;, + 0.347654; 0.390029;, + 0.381350; 0.390029;, + 0.381350; 0.168760;, + 0.347654; 0.168760;, + 0.944204; 0.340738;, + 0.957386; 0.340738;, + 0.957386; 0.119469;, + 0.944204; 0.119469;, + 0.943812; 0.610925;, + 0.943812; 0.389657;, + 0.930631; 0.389656;, + 0.930630; 0.610925;, + 0.345729; 0.292753;, + 0.345729; 0.268364;, + 0.332547; 0.268364;, + 0.332547; 0.292753;, + 0.608715; 0.168760;, + 0.584777; 0.168760;, + 0.584777; 0.390029;, + 0.608715; 0.390029;, + 0.332547; 0.292753;, + 0.332547; 0.317141;, + 0.345729; 0.317141;, + 0.345729; 0.292753;, + 0.716326; 0.389656;, + 0.740264; 0.389656;, + 0.740264; 0.168388;, + 0.716326; 0.168388;, + 0.980037; 0.610925;, + 0.989898; 0.610925;, + 0.989898; 0.340738;, + 0.980037; 0.340738;, + 0.980429; 0.340738;, + 0.980429; 0.070550;, + 0.970568; 0.070550;, + 0.970568; 0.340738;, + 0.930128; 0.077833;, + 0.930128; 0.057344;, + 0.920267; 0.057344;, + 0.920267; 0.077833;, + 0.827765; 0.610925;, + 0.847875; 0.610925;, + 0.847875; 0.340738;, + 0.827765; 0.340738;, + 0.689867; 0.069034;, + 0.689867; 0.089523;, + 0.699728; 0.089523;, + 0.699728; 0.069034;, + 0.652762; 0.119841;, + 0.632652; 0.119841;, + 0.632652; 0.390029;, + 0.652762; 0.390029;, + 0.990139; 1.000000;, + 1.000000; 1.000000;, + 1.000000; 0.729812;, + 0.990139; 0.729812;, + 0.999759; 0.610925;, + 0.999759; 0.340738;, + 0.989898; 0.340738;, + 0.989898; 0.610925;, + 0.238930; 0.068683;, + 0.238930; 0.048194;, + 0.229069; 0.048194;, + 0.229069; 0.068683;, + 0.550086; 0.119841;, + 0.529976; 0.119841;, + 0.529976; 0.390029;, + 0.550086; 0.390029;, + 0.217487; 0.068683;, + 0.217487; 0.048194;, + 0.207626; 0.048194;, + 0.207626; 0.068683;, + 0.828607; 1.000000;, + 0.848718; 1.000000;, + 0.848718; 0.729812;, + 0.828607; 0.729812;, + 0.957386; 0.340738;, + 0.970568; 0.340738;, + 0.970568; 0.119469;, + 0.957386; 0.119469;, + 0.970176; 0.610925;, + 0.970176; 0.389656;, + 0.956994; 0.389656;, + 0.956994; 0.610925;, + 0.171541; 0.197462;, + 0.171541; 0.173074;, + 0.158359; 0.173074;, + 0.158359; 0.197462;, + 0.173827; 0.365918;, + 0.197765; 0.365918;, + 0.197765; 0.144650;, + 0.173827; 0.144650;, + 0.171541; 0.221851;, + 0.171541; 0.197462;, + 0.158359; 0.197462;, + 0.158359; 0.221851;, + 0.764201; 0.389656;, + 0.788139; 0.389656;, + 0.788139; 0.168388;, + 0.764201; 0.168388;, + 0.864960; 0.119469;, + 0.846363; 0.119469;, + 0.846363; 0.340738;, + 0.864960; 0.340738;, + 0.883558; 0.340738;, + 0.883558; 0.119469;, + 0.864960; 0.119469;, + 0.864960; 0.340737;, + 0.000000; 0.056068;, + 0.000000; 0.090398;, + 0.018597; 0.090398;, + 0.018597; 0.056068;, + 0.740264; 0.389657;, + 0.706568; 0.389657;, + 0.706568; 0.610925;, + 0.740264; 0.610925;, + 0.172290; 0.057989;, + 0.172290; 0.092320;, + 0.190887; 0.092320;, + 0.190887; 0.057989;, + 0.381350; 0.390029;, + 0.415046; 0.390029;, + 0.415046; 0.168760;, + 0.381350; 0.168760;, + 0.692675; 0.623541;, + 0.692675; 0.611420;, + 0.683201; 0.611420;, + 0.683201; 0.623541;, + 0.683201; 0.611420;, + 0.673728; 0.611420;, + 0.673728; 0.623541;, + 0.683201; 0.623541;, + 0.158359; 0.096109;, + 0.158359; 0.122397;, + 0.170256; 0.122397;, + 0.170256; 0.096109;, + 0.320797; 0.103014;, + 0.320797; 0.076725;, + 0.311324; 0.076725;, + 0.311324; 0.103014;, + 0.807431; 0.116058;, + 0.807431; 0.089770;, + 0.795534; 0.089770;, + 0.795534; 0.116058;, + 0.699728; 0.142099;, + 0.699728; 0.115811;, + 0.690254; 0.115811;, + 0.690254; 0.142099;, + 0.673728; 0.623541;, + 0.673728; 0.611420;, + 0.664254; 0.611420;, + 0.664254; 0.623541;, + 0.664254; 0.611420;, + 0.654780; 0.611420;, + 0.654780; 0.623541;, + 0.664254; 0.623541;, + 0.867315; 0.795297;, + 0.867315; 0.821585;, + 0.879212; 0.821585;, + 0.879212; 0.795297;, + 0.690254; 0.089523;, + 0.690254; 0.115811;, + 0.699728; 0.115811;, + 0.699728; 0.089523;, + 0.170256; 0.148685;, + 0.170256; 0.122397;, + 0.158359; 0.122397;, + 0.158359; 0.148685;, + 0.699728; 0.168388;, + 0.699728; 0.142099;, + 0.690254; 0.142099;, + 0.690254; 0.168388;, + 0.000000; 0.610925;, + 0.173827; 0.610925;, + 0.173827; 0.221851;, + 0.000000; 0.221851;, + 0.654780; 1.000000;, + 0.654780; 0.610925;, + 0.480953; 0.610925;, + 0.480953; 1.000000;, + 0.173827; 0.365918;, + 0.173827; 0.610925;, + 0.347654; 0.610925;, + 0.347654; 0.365918;, + 0.480953; 0.610925;, + 0.240477; 0.610925;, + 0.240477; 1.000000;, + 0.480953; 1.000000;, + 0.654780; 0.754993;, + 0.654780; 1.000000;, + 0.828607; 1.000000;, + 0.828607; 0.754993;, + 0.000000; 1.000000;, + 0.240477; 1.000000;, + 0.240477; 0.610925;, + 0.000000; 0.610925;, + 0.260374; 0.103014;, + 0.285849; 0.103014;, + 0.285849; 0.062377;, + 0.260374; 0.062377;, + 0.311324; 0.103014;, + 0.311324; 0.062377;, + 0.285849; 0.062377;, + 0.285849; 0.103014;, + 0.846343; 0.728200;, + 0.846343; 0.675871;, + 0.820868; 0.675871;, + 0.820868; 0.728200;, + 0.732925; 0.116058;, + 0.732925; 0.168388;, + 0.772811; 0.168388;, + 0.772811; 0.116058;, + 0.846343; 0.675871;, + 0.846343; 0.623541;, + 0.820868; 0.623541;, + 0.820868; 0.675871;, + 0.529642; 0.119841;, + 0.529642; 0.067511;, + 0.489756; 0.067511;, + 0.489756; 0.119841;, + 0.534472; 0.119841;, + 0.559947; 0.119841;, + 0.559947; 0.079204;, + 0.534472; 0.079204;, + 0.838960; 0.078832;, + 0.838960; 0.119469;, + 0.864435; 0.119469;, + 0.864435; 0.078832;, + 0.772811; 0.116058;, + 0.772811; 0.168388;, + 0.798286; 0.168388;, + 0.798286; 0.116058;, + 0.866473; 0.380181;, + 0.866473; 0.432511;, + 0.906359; 0.432511;, + 0.906359; 0.380181;, + 0.172290; 0.092320;, + 0.172290; 0.144650;, + 0.197765; 0.144650;, + 0.197765; 0.092320;, + 0.632652; 0.067511;, + 0.632652; 0.119841;, + 0.672538; 0.119841;, + 0.672538; 0.067511;, + 0.456060; 0.610925;, + 0.564466; 0.610925;, + 0.564466; 0.500477;, + 0.456060; 0.500477;, + 0.672872; 0.500477;, + 0.672872; 0.390029;, + 0.564466; 0.390029;, + 0.564466; 0.500477;, + 0.564466; 0.390029;, + 0.456060; 0.390029;, + 0.456060; 0.500477;, + 0.564466; 0.500477;, + 0.347654; 0.500477;, + 0.347654; 0.610925;, + 0.456060; 0.610925;, + 0.456060; 0.500477;, + 0.672872; 0.500477;, + 0.564466; 0.500477;, + 0.564466; 0.610925;, + 0.672872; 0.610925;, + 0.347654; 0.500477;, + 0.456060; 0.500477;, + 0.456060; 0.390029;, + 0.347654; 0.390029;; + } // End of Cube UV coordinates + MeshMaterialList { // Cube material list + 1; + 180; + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0;; + Material Material { + 0.640000; 0.640000; 0.640000; 1.000000;; + 96.078431; + 0.500000; 0.500000; 0.500000;; + 0.000000; 0.000000; 0.000000;; + TextureFilename {"kraken.png";} + } + } // End of Cube material list + XSkinMeshHeader { + 4; + 12; + 38; + } + SkinWeights { + "Armature_Bone_019"; + 24; + 240, + 241, + 242, + 243, + 244, + 245, + 246, + 247, + 248, + 249, + 250, + 251, + 252, + 253, + 254, + 255, + 256, + 257, + 258, + 259, + 260, + 261, + 262, + 263; + 1.000000, + 1.000000, + 0.744803, + 0.139468, + 1.000000, + 0.806457, + 0.217039, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.217039, + 0.744803, + 0.744803, + 0.217039, + 0.806457, + 0.139468, + 1.000000, + 1.000000, + 0.139468, + 0.806457; + 0.594084,-0.000001,-0.000002, 0.000000, + -0.000001,-0.999763, 0.021773, 0.000000, + -0.000002,-0.010342,-0.474855, 0.000000, + 0.397950,-3.347152,-0.175938, 1.000000;; + } // End of Armature_Bone_019 skin weights + SkinWeights { + "Armature_Bone_025"; + 24; + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47; + 1.000000, + 1.000000, + 0.797626, + 0.143942, + 1.000000, + 0.750667, + 0.205468, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.205468, + 0.797626, + 0.797626, + 0.205468, + 0.750667, + 0.143942, + 1.000000, + 1.000000, + 0.143942, + 0.750667; + 0.594084,-0.000000, 0.000000, 0.000000, + 0.000000, 0.999556, 0.029781, 0.000000, + -0.000000,-0.014145, 0.474757, 0.000000, + 0.341923,-3.361468, 0.148731, 1.000000;; + } // End of Armature_Bone_025 skin weights + SkinWeights { + "Armature_Bone_026"; + 36; + 98, + 99, + 101, + 102, + 110, + 111, + 112, + 113, + 114, + 115, + 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; + 0.187811, + 0.847882, + 0.254461, + 0.799495, + 0.799495, + 0.187811, + 0.187811, + 0.799495, + 0.254461, + 0.847882, + 0.847882, + 0.254461, + 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.594084,-0.000000, 0.000000, 0.000000, + -0.000000, 0.999880,-0.015521, 0.000000, + -0.000000, 0.007372, 0.474911, 0.000000, + -0.221754,-5.723243, 0.408091, 1.000000;; + } // End of Armature_Bone_026 skin weights + SkinWeights { + "Armature_Bone_009"; + 0; + -0.298598,-0.513591, 0.000000, 0.000000, + 0.864508,-0.502619, 0.000000, 0.000000, + 0.000000, 0.000000, 0.474968, 0.000000, + -0.028655, 0.011716, 0.248773, 1.000000;; + } // End of Armature_Bone_009 skin weights + SkinWeights { + "Armature_Bone_036"; + 36; + 504, + 505, + 506, + 507, + 508, + 509, + 510, + 511, + 512, + 513, + 514, + 515, + 516, + 517, + 518, + 519, + 520, + 521, + 522, + 523, + 524, + 525, + 526, + 527, + 530, + 531, + 533, + 534, + 542, + 543, + 544, + 545, + 546, + 547, + 550, + 551; + 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.208309, + 0.822859, + 0.217497, + 0.821479, + 0.821479, + 0.208309, + 0.208309, + 0.821479, + 0.217497, + 0.822859, + 0.822859, + 0.217497; + -0.000000,-0.594084, 0.000000, 0.000000, + 1.000000, 0.000000,-0.000000, 0.000000, + 0.000000, 0.000000, 0.474968, 0.000000, + -0.787641,-5.334232, 0.295858, 1.000000;; + } // End of Armature_Bone_036 skin weights + SkinWeights { + "Armature_Bone_028"; + 24; + 552, + 553, + 554, + 555, + 556, + 557, + 558, + 559, + 560, + 561, + 562, + 563, + 564, + 565, + 566, + 567, + 568, + 569, + 570, + 571, + 572, + 573, + 574, + 575; + 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.593971,-0.011624, 0.000000, + 1.000000, 0.000000,-0.000000, 0.000000, + 0.000000,-0.009293, 0.474877, 0.000000, + -0.787641,-0.566084, 0.237743, 1.000000;; + } // End of Armature_Bone_028 skin weights + SkinWeights { + "Armature_Bone_038"; + 36; + 360, + 361, + 362, + 363, + 364, + 365, + 366, + 367, + 368, + 369, + 370, + 371, + 372, + 373, + 374, + 375, + 376, + 377, + 378, + 379, + 380, + 381, + 382, + 383, + 386, + 387, + 389, + 390, + 398, + 399, + 400, + 401, + 402, + 403, + 406, + 407; + 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.079924, + 0.021291, + 0.152697, + 0.858870, + 0.858870, + 0.079924, + 0.079924, + 0.858870, + 0.152697, + 0.021291, + 0.021291, + 0.152697; + 0.000000,-0.594084, 0.000000, 0.000000, + 1.000000, 0.000000,-0.000000, 0.000000, + 0.000000, 0.000000, 0.474968, 0.000000, + -0.208717,-5.355742, 0.295858, 1.000000;; + } // End of Armature_Bone_038 skin weights + SkinWeights { + "Armature_Bone_017"; + 24; + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + 232, + 233, + 234, + 235, + 236, + 237, + 238, + 239; + 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.594084,-0.000001, 0.000000, 0.000000, + 0.000001,-1.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 0.474968, 0.000000, + -0.397951,-0.990082, 0.248773, 1.000000;; + } // End of Armature_Bone_017 skin weights + SkinWeights { + "Armature_Bone_027"; + 36; + 26, + 27, + 29, + 30, + 38, + 39, + 40, + 41, + 42, + 43, + 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; + 0.202374, + 0.856058, + 0.249333, + 0.794532, + 0.794532, + 0.202374, + 0.202374, + 0.794532, + 0.249333, + 0.856058, + 0.856058, + 0.249333, + 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.594084,-0.000000, 0.000000, 0.000000, + 0.000000, 0.999880,-0.015521, 0.000000, + -0.000000, 0.007372, 0.474911, 0.000000, + 0.341923,-5.713981, 0.407947, 1.000000;; + } // End of Armature_Bone_027 skin weights + SkinWeights { + "Armature_Bone_004"; + 12; + 696, + 699, + 700, + 701, + 704, + 705, + 714, + 715, + 716, + 717, + 718, + 719; + 0.032301, + 0.999143, + 0.006882, + 0.166457, + 0.032301, + 0.006882, + 0.166457, + 0.999143, + 0.006882, + 0.032301, + 0.999143, + 0.166457; + 0.478490,-0.352114, 0.000000, 0.000000, + 0.592700, 0.805424, 0.000000, 0.000000, + 0.000000, 0.000000, 0.474968, 0.000000, + -0.014731,-0.027228, 0.248773, 1.000000;; + } // End of Armature_Bone_004 skin weights + SkinWeights { + "Armature_Bone_013"; + 24; + 648, + 649, + 650, + 651, + 652, + 653, + 654, + 655, + 656, + 657, + 658, + 659, + 660, + 661, + 662, + 663, + 664, + 665, + 666, + 667, + 668, + 669, + 670, + 671; + 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.573387, 0.155410,-0.003333, 0.000000, + -0.123592, 0.436888,-0.890985, 0.000000, + -0.109540, 0.408775, 0.215635, 0.000000, + -0.049459, 0.201826, 0.140237, 1.000000;; + } // End of Armature_Bone_013 skin weights + SkinWeights { + "Armature_Bone_007"; + 15; + 697, + 700, + 701, + 702, + 703, + 705, + 706, + 707, + 708, + 709, + 710, + 713, + 714, + 716, + 719; + 0.192089, + 0.001632, + 0.037916, + 0.774988, + 0.373446, + 0.001632, + 0.373446, + 0.192089, + 0.192089, + 0.373446, + 0.774988, + 0.774988, + 0.037916, + 0.001632, + 0.037916; + -0.501974,-0.317739, 0.000000, 0.000000, + 0.534838,-0.844954, 0.000000, 0.000000, + 0.000000, 0.000000, 0.474968, 0.000000, + -0.020010, 0.023622, 0.248773, 1.000000;; + } // End of Armature_Bone_007 skin weights + SkinWeights { + "Armature_Bone_003"; + 12; + 700, + 701, + 702, + 703, + 705, + 706, + 709, + 710, + 713, + 714, + 716, + 719; + 0.092737, + 0.682199, + 0.020861, + 0.020586, + 0.092737, + 0.020586, + 0.020586, + 0.020861, + 0.020861, + 0.682199, + 0.092737, + 0.682199; + 0.557316,-0.205755, 0.000000, 0.000000, + 0.346339, 0.938109, 0.000000, 0.000000, + 0.000000, 0.000000, 0.474968, 0.000000, + -0.006610,-0.030244, 0.248773, 1.000000;; + } // End of Armature_Bone_003 skin weights + SkinWeights { + "Armature_Bone_030"; + 24; + 408, + 409, + 410, + 411, + 412, + 413, + 414, + 415, + 416, + 417, + 418, + 419, + 420, + 421, + 422, + 423, + 424, + 425, + 426, + 427, + 428, + 429, + 430, + 431; + 1.000000, + 1.000000, + 0.513476, + 0.533863, + 1.000000, + 0.851315, + 0.673375, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.673375, + 0.513476, + 0.513476, + 0.673375, + 0.851315, + 0.533863, + 1.000000, + 1.000000, + 0.533863, + 0.851315; + 0.000000,-0.593971,-0.011624, 0.000000, + 1.000000, 0.000000,-0.000000, 0.000000, + 0.000000,-0.009293, 0.474877, 0.000000, + -0.208717,-0.587591, 0.237322, 1.000000;; + } // End of Armature_Bone_030 skin weights + SkinWeights { + "Armature_Bone_032"; + 24; + 528, + 529, + 530, + 531, + 532, + 533, + 534, + 535, + 536, + 537, + 538, + 539, + 540, + 541, + 542, + 543, + 544, + 545, + 546, + 547, + 548, + 549, + 550, + 551; + 1.000000, + 1.000000, + 0.791691, + 0.177141, + 1.000000, + 0.782503, + 0.178521, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.178521, + 0.791691, + 0.791691, + 0.178521, + 0.782503, + 0.177141, + 1.000000, + 1.000000, + 0.177141, + 0.782503; + -0.000000,-0.594084, 0.000000, 0.000000, + 1.000000, 0.000000,-0.000000, 0.000000, + 0.000000, 0.000000, 0.474968, 0.000000, + -0.787641,-2.967355, 0.295858, 1.000000;; + } // End of Armature_Bone_032 skin weights + SkinWeights { + "Armature_Bone_039"; + 33; + 314, + 317, + 318, + 326, + 327, + 328, + 329, + 330, + 335, + 336, + 337, + 338, + 339, + 340, + 341, + 342, + 343, + 344, + 345, + 346, + 347, + 348, + 349, + 350, + 351, + 352, + 353, + 354, + 355, + 356, + 357, + 358, + 359; + 0.114588, + 0.095983, + 0.789686, + 0.789686, + 0.114588, + 0.114588, + 0.789686, + 0.095983, + 0.095983, + 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.594084, 0.000000, 0.000000, + 1.000000,-0.000000,-0.000000, 0.000000, + 0.000000, 0.000000, 0.474968, 0.000000, + 0.299895,-5.345742, 0.295858, 1.000000;; + } // End of Armature_Bone_039 skin weights + SkinWeights { + "Armature_Bone_002"; + 21; + 696, + 697, + 699, + 700, + 701, + 702, + 703, + 704, + 705, + 706, + 707, + 708, + 709, + 710, + 713, + 714, + 715, + 716, + 717, + 718, + 719; + 0.967699, + 0.294983, + 0.000857, + 0.898749, + 0.113428, + 0.023918, + 0.290408, + 0.967699, + 0.898749, + 0.290408, + 0.294983, + 0.294983, + 0.290408, + 0.023918, + 0.023918, + 0.113428, + 0.000857, + 0.898749, + 0.967699, + 0.000857, + 0.113428; + 0.577064, 0.141186, 0.000000, 0.000000, + -0.237653, 0.971350, 0.000000, 0.000000, + 0.000000, 0.000000, 0.474968, 0.000000, + 0.011438,-0.028767, 0.248773, 1.000000;; + } // End of Armature_Bone_002 skin weights + SkinWeights { + "Armature_Bone_006"; + 12; + 697, + 698, + 702, + 703, + 706, + 707, + 708, + 709, + 710, + 711, + 712, + 713; + 0.512928, + 1.000000, + 0.180233, + 0.315560, + 0.315560, + 0.512928, + 0.512928, + 0.315560, + 0.180233, + 1.000000, + 1.000000, + 0.180233; + -0.554288,-0.213777, 0.000000, 0.000000, + 0.359843,-0.933013, 0.000000, 0.000000, + 0.000000, 0.000000, 0.474968, 0.000000, + -0.015021, 0.027069, 0.248773, 1.000000;; + } // End of Armature_Bone_006 skin weights + SkinWeights { + "Armature_Bone_035"; + 24; + 312, + 313, + 314, + 315, + 316, + 317, + 318, + 319, + 320, + 321, + 322, + 323, + 324, + 325, + 326, + 327, + 328, + 329, + 330, + 331, + 332, + 333, + 334, + 335; + 1.000000, + 1.000000, + 0.885412, + 1.000000, + 1.000000, + 0.904017, + 0.210314, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.210314, + 0.885412, + 0.885412, + 0.210314, + 0.904017, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.904017; + 0.000000,-0.594084, 0.000000, 0.000000, + 1.000000,-0.000000,-0.000000, 0.000000, + 0.000000, 0.000000, 0.474968, 0.000000, + 0.299895,-2.978865, 0.295858, 1.000000;; + } // End of Armature_Bone_035 skin weights + SkinWeights { + "Armature_Bone_024"; + 24; + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119; + 1.000000, + 1.000000, + 0.812189, + 0.152118, + 1.000000, + 0.745539, + 0.200505, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.200505, + 0.812189, + 0.812189, + 0.200505, + 0.745539, + 0.152118, + 1.000000, + 1.000000, + 0.152118, + 0.745539; + 0.594084,-0.000000, 0.000000, 0.000000, + -0.000000, 0.999557, 0.029781, 0.000000, + -0.000000,-0.014145, 0.474757, 0.000000, + -0.221754,-3.370728, 0.148455, 1.000000;; + } // End of Armature_Bone_024 skin weights + SkinWeights { + "Armature_Bone"; + 24; + 624, + 625, + 626, + 627, + 628, + 629, + 630, + 631, + 632, + 633, + 634, + 635, + 636, + 637, + 638, + 639, + 640, + 641, + 642, + 643, + 644, + 645, + 646, + 647; + 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.035910, 0.592994, 0.002193, 0.000000, + 0.000333, 0.003678,-0.999993, 0.000000, + -0.474099, 0.028710,-0.000052, 0.000000, + -0.290718,-0.685074, 0.028045, 1.000000;; + } // End of Armature_Bone skin weights + SkinWeights { + "Armature_Bone_037"; + 36; + 458, + 459, + 461, + 462, + 470, + 471, + 472, + 473, + 474, + 475, + 478, + 479, + 480, + 481, + 482, + 483, + 484, + 485, + 486, + 487, + 488, + 489, + 490, + 491, + 492, + 493, + 494, + 495, + 496, + 497, + 498, + 499, + 500, + 501, + 502, + 503; + 0.136348, + 0.750024, + 0.307346, + 0.881957, + 0.881957, + 0.136348, + 0.136348, + 0.881957, + 0.307346, + 0.750024, + 0.750024, + 0.307346, + 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.594084,-0.000000, 0.000000, + 1.000000, 0.000000, 0.000000, 0.000000, + -0.000000,-0.000000, 0.474968, 0.000000, + 0.836836,-5.326287, 0.295857, 1.000000;; + } // End of Armature_Bone_037 skin weights + SkinWeights { + "Armature_Bone_031"; + 24; + 288, + 289, + 290, + 291, + 292, + 293, + 294, + 295, + 296, + 297, + 298, + 299, + 300, + 301, + 302, + 303, + 304, + 305, + 306, + 307, + 308, + 309, + 310, + 311; + 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.593971,-0.011624, 0.000000, + 1.000000,-0.000000,-0.000000, 0.000000, + 0.000000,-0.009293, 0.474877, 0.000000, + 0.299895,-0.577592, 0.237518, 1.000000;; + } // End of Armature_Bone_031 skin weights + SkinWeights { + "Armature_Bone_029"; + 24; + 432, + 433, + 434, + 435, + 436, + 437, + 438, + 439, + 440, + 441, + 442, + 443, + 444, + 445, + 446, + 447, + 448, + 449, + 450, + 451, + 452, + 453, + 454, + 455; + 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.593971,-0.011624, 0.000000, + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000,-0.009293, 0.474877, 0.000000, + 0.836836,-0.558143, 0.237899, 1.000000;; + } // End of Armature_Bone_029 skin weights + SkinWeights { + "Armature_Bone_011"; + 24; + 576, + 577, + 578, + 579, + 580, + 581, + 582, + 583, + 584, + 585, + 586, + 587, + 588, + 589, + 590, + 591, + 592, + 593, + 594, + 595, + 596, + 597, + 598, + 599; + 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.582050, 0.118963, 0.001408, 0.000000, + -0.000550,-0.009142, 0.999958, 0.000000, + 0.095117,-0.465327,-0.004202, 0.000000, + 0.054023,-0.242588,-0.032851, 1.000000;; + } // End of Armature_Bone_011 skin weights + SkinWeights { + "Armature_Bone_016"; + 24; + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167; + 0.924728, + 0.536573, + 1.000000, + 1.000000, + 0.954776, + 1.000000, + 1.000000, + 0.532618, + 0.924728, + 0.954776, + 0.532618, + 0.536573, + 0.536573, + 0.532618, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.954776, + 0.924728, + 1.000000, + 1.000000; + -0.594084, 0.000000, 0.000000, 0.000000, + -0.000000,-1.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 0.474968, 0.000000, + 0.224655,-1.022829, 0.248773, 1.000000;; + } // End of Armature_Bone_016 skin weights + SkinWeights { + "Armature_Bone_033"; + 24; + 456, + 457, + 458, + 459, + 460, + 461, + 462, + 463, + 464, + 465, + 466, + 467, + 468, + 469, + 470, + 471, + 472, + 473, + 474, + 475, + 476, + 477, + 478, + 479; + 1.000000, + 1.000000, + 0.863652, + 0.249976, + 1.000000, + 0.692654, + 0.118043, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.118043, + 0.863652, + 0.863652, + 0.118043, + 0.692654, + 0.249976, + 1.000000, + 1.000000, + 0.249976, + 0.692654; + -0.000000,-0.594084,-0.000000, 0.000000, + 1.000000, 0.000000, 0.000000, 0.000000, + -0.000000,-0.000000, 0.474968, 0.000000, + 0.836836,-2.959410, 0.295857, 1.000000;; + } // End of Armature_Bone_033 skin weights + SkinWeights { + "Armature_Bone_021"; + 36; + 242, + 243, + 245, + 246, + 254, + 255, + 256, + 257, + 258, + 259, + 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; + 0.255197, + 0.860532, + 0.193543, + 0.782961, + 0.782961, + 0.255197, + 0.255197, + 0.782961, + 0.193543, + 0.860532, + 0.860532, + 0.193543, + 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.594084,-0.000001, 0.000000, 0.000000, + 0.000001,-1.000000,-0.000003, 0.000000, + 0.000000,-0.000002, 0.474968, 0.000000, + -0.397951,-5.719720, 0.300525, 1.000000;; + } // End of Armature_Bone_021 skin weights + SkinWeights { + "Armature_Bone_034"; + 36; + 384, + 385, + 386, + 387, + 388, + 389, + 390, + 391, + 392, + 393, + 394, + 395, + 396, + 397, + 398, + 399, + 400, + 401, + 402, + 403, + 404, + 405, + 406, + 407, + 410, + 411, + 413, + 414, + 422, + 423, + 424, + 425, + 426, + 427, + 430, + 431; + 1.000000, + 1.000000, + 0.920076, + 0.978709, + 1.000000, + 0.847303, + 0.141130, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.141130, + 0.920076, + 0.920076, + 0.141130, + 0.847303, + 0.978709, + 1.000000, + 1.000000, + 0.978709, + 0.847303, + 0.486524, + 0.466137, + 0.148685, + 0.326625, + 0.326625, + 0.486524, + 0.486524, + 0.326625, + 0.148685, + 0.466137, + 0.466137, + 0.148685; + 0.000000,-0.594084, 0.000000, 0.000000, + 1.000000, 0.000000,-0.000000, 0.000000, + 0.000000, 0.000000, 0.474968, 0.000000, + -0.208717,-2.988865, 0.295858, 1.000000;; + } // End of Armature_Bone_034 skin weights + SkinWeights { + "Armature_Bone_023"; + 24; + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23; + 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.594084,-0.000000, 0.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 0.474968, 0.000000, + 0.341923,-0.945232, 0.248773, 1.000000;; + } // End of Armature_Bone_023 skin weights + SkinWeights { + "Armature_Bone_005"; + 12; + 144, + 145, + 148, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 164, + 165; + 0.075272, + 0.463427, + 0.045224, + 0.467382, + 0.075272, + 0.045224, + 0.467382, + 0.463427, + 0.463427, + 0.467382, + 0.045224, + 0.075272; + -0.580536, 0.126154, 0.000000, 0.000000, + -0.212350,-0.977194, 0.000000, 0.000000, + 0.000000, 0.000000, 0.474968, 0.000000, + 0.002335, 0.030869, 0.248773, 1.000000;; + } // End of Armature_Bone_005 skin weights + SkinWeights { + "Armature_Bone_022"; + 24; + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95; + 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.594084,-0.000000, 0.000000, 0.000000, + -0.000000, 1.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 0.474968, 0.000000, + -0.221754,-0.954496, 0.248773, 1.000000;; + } // End of Armature_Bone_022 skin weights + SkinWeights { + "Armature_Bone_010"; + 24; + 600, + 601, + 602, + 603, + 604, + 605, + 606, + 607, + 608, + 609, + 610, + 611, + 612, + 613, + 614, + 615, + 616, + 617, + 618, + 619, + 620, + 621, + 622, + 623; + 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.581878,-0.119809,-0.000000, 0.000000, + 0.000000,-0.000000, 1.000000, 0.000000, + -0.095787,-0.465209, 0.000000, 0.000000, + -0.045984,-0.244524,-0.030661, 1.000000;; + } // End of Armature_Bone_010 skin weights + SkinWeights { + "Armature_Bone_001"; + 0; + 0.000000,-0.594084, 0.000000, 0.000000, + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 0.474968, 0.000000, + -0.030661, 0.701286, 0.248773, 1.000000;; + } // End of Armature_Bone_001 skin weights + SkinWeights { + "Armature_Bone_018"; + 24; + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191; + 1.000000, + 1.000000, + 0.894833, + 1.000000, + 1.000000, + 0.893722, + 0.202856, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.202856, + 0.894833, + 0.894833, + 0.202856, + 0.893722, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.893722; + 0.594084, 0.000000,-0.000002, 0.000000, + 0.000000,-0.999763, 0.021773, 0.000000, + -0.000002,-0.010342,-0.474855, 0.000000, + -0.224656,-3.379891,-0.175223, 1.000000;; + } // End of Armature_Bone_018 skin weights + SkinWeights { + "Armature_Bone_012"; + 24; + 672, + 673, + 674, + 675, + 676, + 677, + 678, + 679, + 680, + 681, + 682, + 683, + 684, + 685, + 686, + 687, + 688, + 689, + 690, + 691, + 692, + 693, + 694, + 695; + 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.572282, 0.135239,-0.084498, 0.000000, + -0.005381,-0.513396,-0.858135, 0.000000, + -0.127467, 0.392992,-0.234316, 0.000000, + -0.062481, 0.222551,-0.097024, 1.000000;; + } // End of Armature_Bone_012 skin weights + SkinWeights { + "Armature_Bone_008"; + 0; + 0.174745,-0.567803, 0.000000, 0.000000, + 0.955762, 0.294142, 0.000000, 0.000000, + 0.000000, 0.000000, 0.474968, 0.000000, + -0.028048,-0.013104, 0.248773, 1.000000;; + } // End of Armature_Bone_008 skin weights + SkinWeights { + "Armature_Bone_020"; + 33; + 170, + 173, + 174, + 182, + 183, + 184, + 185, + 186, + 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; + 0.105167, + 0.106278, + 0.797144, + 0.797144, + 0.105167, + 0.105167, + 0.797144, + 0.106278, + 0.106278, + 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.594084, 0.000000, 0.000000, 0.000000, + -0.000000,-1.000000,-0.000003, 0.000000, + 0.000000,-0.000002, 0.474968, 0.000000, + 0.224655,-5.752468, 0.300525, 1.000000;; + } // End of Armature_Bone_020 skin weights + } // End of Cube mesh + } // End of Cube + } // End of Armature +} // End of Root +AnimationSet Global { + Animation { + {Armature} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 1;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 2;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 3;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 4;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 5;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 6;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 7;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 8;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 9;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 10;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 11;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 12;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 13;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 14;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 15;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 16;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 17;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 18;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 19;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 20;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 21;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 22;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 23;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 24;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 25;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 26;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 27;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 28;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 29;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 30;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 31;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 32;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 33;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 34;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 35;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 36;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 37;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 38;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 39;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 40;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 41;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 42;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 43;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 44;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 45;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 46;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 47;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 48;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 49;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 50;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 51;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 52;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 53;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 54;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 55;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 56;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 57;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 58;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 59;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 60;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 61;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 62;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 63;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 64;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 65;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 66;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 67;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 68;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 69;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 70;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 71;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 72;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 73;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 74;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 75;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 76;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 77;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 78;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 79;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 80;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 81;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 82;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 83;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 84;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 85;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 86;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 87;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 88;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 89;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 90;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 91;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 92;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 93;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 94;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 95;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 96;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 97;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 98;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 99;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 100;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 101;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 102;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 103;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 104;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 105;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 106;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 107;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 108;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 109;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 110;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 111;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 112;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 113;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 114;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 115;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 116;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 117;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 118;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 119;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 120;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 121;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 122;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 123;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 124;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 125;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 126;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 127;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 128;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 129;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 130;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 131;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 132;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 133;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 134;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 135;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 136;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 137;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 138;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 139;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 140;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 141;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 142;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 143;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 144;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 145;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 146;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 147;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 148;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 149;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 150;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 151;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 152;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 153;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 154;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 155;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 156;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 157;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 158;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 159;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 160;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 161;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 162;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 163;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 164;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 165;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 166;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 167;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 168;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 169;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 170;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 171;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 172;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 173;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 174;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 175;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 176;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 177;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 178;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 179;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 180;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 181;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 182;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 183;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 184;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 185;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 186;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 187;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 188;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 189;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 190;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 191;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 192;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 193;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 194;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 195;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 196;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 197;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 198;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 199;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 200;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 201;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 202;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 203;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 204;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 205;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 206;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 207;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 208;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 209;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 210;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 211;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 212;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 213;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 214;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 215;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 216;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 217;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 218;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 219;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 220;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 221;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 222;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 223;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 224;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 225;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 226;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 227;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 228;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 229;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 230;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 231;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 232;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 233;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 234;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 235;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 236;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 237;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 238;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 239;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 240;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 241;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 242;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 243;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 244;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 245;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 246;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 247;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 248;4;-0.003379, 0.000000, 0.000000, 0.999994;;, + 249;4;-0.003379, 0.000000, 0.000000, 0.999994;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3; 0.802051, 0.072915, 0.612726;;, + 1;3; 0.802051, 0.072915, 0.612726;;, + 2;3; 0.802051, 0.072915, 0.612726;;, + 3;3; 0.802051, 0.072915, 0.612726;;, + 4;3; 0.802051, 0.072915, 0.612726;;, + 5;3; 0.802051, 0.072915, 0.612726;;, + 6;3; 0.802051, 0.072915, 0.612726;;, + 7;3; 0.802051, 0.072915, 0.612726;;, + 8;3; 0.802051, 0.072915, 0.612726;;, + 9;3; 0.802051, 0.072915, 0.612726;;, + 10;3; 0.802051, 0.072915, 0.612726;;, + 11;3; 0.802051, 0.072915, 0.612726;;, + 12;3; 0.802051, 0.072915, 0.612726;;, + 13;3; 0.802051, 0.072915, 0.612726;;, + 14;3; 0.802051, 0.072915, 0.612726;;, + 15;3; 0.802051, 0.072915, 0.612726;;, + 16;3; 0.802051, 0.072915, 0.612726;;, + 17;3; 0.802051, 0.072915, 0.612726;;, + 18;3; 0.802051, 0.072915, 0.612726;;, + 19;3; 0.802051, 0.072915, 0.612726;;, + 20;3; 0.802051, 0.072915, 0.612726;;, + 21;3; 0.802051, 0.072915, 0.612726;;, + 22;3; 0.802051, 0.072915, 0.612726;;, + 23;3; 0.802051, 0.072915, 0.612726;;, + 24;3; 0.802051, 0.072915, 0.612726;;, + 25;3; 0.802051, 0.072915, 0.612726;;, + 26;3; 0.802051, 0.072915, 0.612726;;, + 27;3; 0.802051, 0.072915, 0.612726;;, + 28;3; 0.802051, 0.072915, 0.612726;;, + 29;3; 0.802051, 0.072915, 0.612726;;, + 30;3; 0.802051, 0.072915, 0.612726;;, + 31;3; 0.802051, 0.072915, 0.612726;;, + 32;3; 0.802051, 0.072915, 0.612726;;, + 33;3; 0.802051, 0.072915, 0.612726;;, + 34;3; 0.802051, 0.072915, 0.612726;;, + 35;3; 0.802051, 0.072915, 0.612726;;, + 36;3; 0.802051, 0.072915, 0.612726;;, + 37;3; 0.802051, 0.072915, 0.612726;;, + 38;3; 0.802051, 0.072915, 0.612726;;, + 39;3; 0.802051, 0.072915, 0.612726;;, + 40;3; 0.802051, 0.072915, 0.612726;;, + 41;3; 0.802051, 0.072915, 0.612726;;, + 42;3; 0.802051, 0.072915, 0.612726;;, + 43;3; 0.802051, 0.072915, 0.612726;;, + 44;3; 0.802051, 0.072915, 0.612726;;, + 45;3; 0.802051, 0.072915, 0.612726;;, + 46;3; 0.802051, 0.072915, 0.612726;;, + 47;3; 0.802051, 0.072915, 0.612726;;, + 48;3; 0.802051, 0.072915, 0.612726;;, + 49;3; 0.802051, 0.072915, 0.612726;;, + 50;3; 0.802051, 0.072915, 0.612726;;, + 51;3; 0.802051, 0.072915, 0.612726;;, + 52;3; 0.802051, 0.072915, 0.612726;;, + 53;3; 0.802051, 0.072915, 0.612726;;, + 54;3; 0.802051, 0.072915, 0.612726;;, + 55;3; 0.802051, 0.072915, 0.612726;;, + 56;3; 0.802051, 0.072915, 0.612726;;, + 57;3; 0.802051, 0.072915, 0.612726;;, + 58;3; 0.802051, 0.072915, 0.612726;;, + 59;3; 0.802051, 0.072915, 0.612726;;, + 60;3; 0.802051, 0.072915, 0.612726;;, + 61;3; 0.802051, 0.072915, 0.612726;;, + 62;3; 0.802051, 0.072915, 0.612726;;, + 63;3; 0.802051, 0.072915, 0.612726;;, + 64;3; 0.802051, 0.072915, 0.612726;;, + 65;3; 0.802051, 0.072915, 0.612726;;, + 66;3; 0.802051, 0.072915, 0.612726;;, + 67;3; 0.802051, 0.072915, 0.612726;;, + 68;3; 0.802051, 0.072915, 0.612726;;, + 69;3; 0.802051, 0.072915, 0.612726;;, + 70;3; 0.802051, 0.072915, 0.612726;;, + 71;3; 0.802051, 0.072915, 0.612726;;, + 72;3; 0.802051, 0.072915, 0.612726;;, + 73;3; 0.802051, 0.072915, 0.612726;;, + 74;3; 0.802051, 0.072915, 0.612726;;, + 75;3; 0.802051, 0.072915, 0.612726;;, + 76;3; 0.802051, 0.072915, 0.612726;;, + 77;3; 0.802051, 0.072915, 0.612726;;, + 78;3; 0.802051, 0.072915, 0.612726;;, + 79;3; 0.802051, 0.072915, 0.612726;;, + 80;3; 0.802051, 0.072915, 0.612726;;, + 81;3; 0.802051, 0.072915, 0.612726;;, + 82;3; 0.802051, 0.072915, 0.612726;;, + 83;3; 0.802051, 0.072915, 0.612726;;, + 84;3; 0.802051, 0.072915, 0.612726;;, + 85;3; 0.802051, 0.072915, 0.612726;;, + 86;3; 0.802051, 0.072915, 0.612726;;, + 87;3; 0.802051, 0.072915, 0.612726;;, + 88;3; 0.802051, 0.072915, 0.612726;;, + 89;3; 0.802051, 0.072915, 0.612726;;, + 90;3; 0.802051, 0.072915, 0.612726;;, + 91;3; 0.802051, 0.072915, 0.612726;;, + 92;3; 0.802051, 0.072915, 0.612726;;, + 93;3; 0.802051, 0.072915, 0.612726;;, + 94;3; 0.802051, 0.072915, 0.612726;;, + 95;3; 0.802051, 0.072915, 0.612726;;, + 96;3; 0.802051, 0.072915, 0.612726;;, + 97;3; 0.802051, 0.072915, 0.612726;;, + 98;3; 0.802051, 0.072915, 0.612726;;, + 99;3; 0.802051, 0.072915, 0.612726;;, + 100;3; 0.802051, 0.072915, 0.612726;;, + 101;3; 0.802051, 0.072915, 0.612726;;, + 102;3; 0.802051, 0.072915, 0.612726;;, + 103;3; 0.802051, 0.072915, 0.612726;;, + 104;3; 0.802051, 0.072915, 0.612726;;, + 105;3; 0.802051, 0.072915, 0.612726;;, + 106;3; 0.802051, 0.072915, 0.612726;;, + 107;3; 0.802051, 0.072915, 0.612726;;, + 108;3; 0.802051, 0.072915, 0.612726;;, + 109;3; 0.802051, 0.072915, 0.612726;;, + 110;3; 0.802051, 0.072915, 0.612726;;, + 111;3; 0.802051, 0.072915, 0.612726;;, + 112;3; 0.802051, 0.072915, 0.612726;;, + 113;3; 0.802051, 0.072915, 0.612726;;, + 114;3; 0.802051, 0.072915, 0.612726;;, + 115;3; 0.802051, 0.072915, 0.612726;;, + 116;3; 0.802051, 0.072915, 0.612726;;, + 117;3; 0.802051, 0.072915, 0.612726;;, + 118;3; 0.802051, 0.072915, 0.612726;;, + 119;3; 0.802051, 0.072915, 0.612726;;, + 120;3; 0.802051, 0.072915, 0.612726;;, + 121;3; 0.802051, 0.072915, 0.612726;;, + 122;3; 0.802051, 0.072915, 0.612726;;, + 123;3; 0.802051, 0.072915, 0.612726;;, + 124;3; 0.802051, 0.072915, 0.612726;;, + 125;3; 0.802051, 0.072915, 0.612726;;, + 126;3; 0.802051, 0.072915, 0.612726;;, + 127;3; 0.802051, 0.072915, 0.612726;;, + 128;3; 0.802051, 0.072915, 0.612726;;, + 129;3; 0.802051, 0.072915, 0.612726;;, + 130;3; 0.802051, 0.072915, 0.612726;;, + 131;3; 0.802051, 0.072915, 0.612726;;, + 132;3; 0.802051, 0.072915, 0.612726;;, + 133;3; 0.802051, 0.072915, 0.612726;;, + 134;3; 0.802051, 0.072915, 0.612726;;, + 135;3; 0.802051, 0.072915, 0.612726;;, + 136;3; 0.802051, 0.072915, 0.612726;;, + 137;3; 0.802051, 0.072915, 0.612726;;, + 138;3; 0.802051, 0.072915, 0.612726;;, + 139;3; 0.802051, 0.072915, 0.612726;;, + 140;3; 0.802051, 0.072915, 0.612726;;, + 141;3; 0.802051, 0.072915, 0.612726;;, + 142;3; 0.802051, 0.072915, 0.612726;;, + 143;3; 0.802051, 0.072915, 0.612726;;, + 144;3; 0.802051, 0.072915, 0.612726;;, + 145;3; 0.802051, 0.072915, 0.612726;;, + 146;3; 0.802051, 0.072915, 0.612726;;, + 147;3; 0.802051, 0.072915, 0.612726;;, + 148;3; 0.802051, 0.072915, 0.612726;;, + 149;3; 0.802051, 0.072915, 0.612726;;, + 150;3; 0.802051, 0.072915, 0.612726;;, + 151;3; 0.802051, 0.072915, 0.612726;;, + 152;3; 0.802051, 0.072915, 0.612726;;, + 153;3; 0.802051, 0.072915, 0.612726;;, + 154;3; 0.802051, 0.072915, 0.612726;;, + 155;3; 0.802051, 0.072915, 0.612726;;, + 156;3; 0.802051, 0.072915, 0.612726;;, + 157;3; 0.802051, 0.072915, 0.612726;;, + 158;3; 0.802051, 0.072915, 0.612726;;, + 159;3; 0.802051, 0.072915, 0.612726;;, + 160;3; 0.802051, 0.072915, 0.612726;;, + 161;3; 0.802051, 0.072915, 0.612726;;, + 162;3; 0.802051, 0.072915, 0.612726;;, + 163;3; 0.802051, 0.072915, 0.612726;;, + 164;3; 0.802051, 0.072915, 0.612726;;, + 165;3; 0.802051, 0.072915, 0.612726;;, + 166;3; 0.802051, 0.072915, 0.612726;;, + 167;3; 0.802051, 0.072915, 0.612726;;, + 168;3; 0.802051, 0.072915, 0.612726;;, + 169;3; 0.802051, 0.072915, 0.612726;;, + 170;3; 0.802051, 0.072915, 0.612726;;, + 171;3; 0.802051, 0.072915, 0.612726;;, + 172;3; 0.802051, 0.072915, 0.612726;;, + 173;3; 0.802051, 0.072915, 0.612726;;, + 174;3; 0.802051, 0.072915, 0.612726;;, + 175;3; 0.802051, 0.072915, 0.612726;;, + 176;3; 0.802051, 0.072915, 0.612726;;, + 177;3; 0.802051, 0.072915, 0.612726;;, + 178;3; 0.802051, 0.072915, 0.612726;;, + 179;3; 0.802051, 0.072915, 0.612726;;, + 180;3; 0.802051, 0.072915, 0.612726;;, + 181;3; 0.802051, 0.072915, 0.612726;;, + 182;3; 0.802051, 0.072915, 0.612726;;, + 183;3; 0.802051, 0.072915, 0.612726;;, + 184;3; 0.802051, 0.072915, 0.612726;;, + 185;3; 0.802051, 0.072915, 0.612726;;, + 186;3; 0.802051, 0.072915, 0.612726;;, + 187;3; 0.802051, 0.072915, 0.612726;;, + 188;3; 0.802051, 0.072915, 0.612726;;, + 189;3; 0.802051, 0.072915, 0.612726;;, + 190;3; 0.802051, 0.072915, 0.612726;;, + 191;3; 0.802051, 0.072915, 0.612726;;, + 192;3; 0.802051, 0.072915, 0.612726;;, + 193;3; 0.802051, 0.072915, 0.612726;;, + 194;3; 0.802051, 0.072915, 0.612726;;, + 195;3; 0.802051, 0.072915, 0.612726;;, + 196;3; 0.802051, 0.072915, 0.612726;;, + 197;3; 0.802051, 0.072915, 0.612726;;, + 198;3; 0.802051, 0.072915, 0.612726;;, + 199;3; 0.802051, 0.072915, 0.612726;;, + 200;3; 0.802051, 0.072915, 0.612726;;, + 201;3; 0.802051, 0.072915, 0.612726;;, + 202;3; 0.802051, 0.072915, 0.612726;;, + 203;3; 0.802051, 0.072915, 0.612726;;, + 204;3; 0.802051, 0.072915, 0.612726;;, + 205;3; 0.802051, 0.072915, 0.612726;;, + 206;3; 0.802051, 0.072915, 0.612726;;, + 207;3; 0.802051, 0.072915, 0.612726;;, + 208;3; 0.802051, 0.072915, 0.612726;;, + 209;3; 0.802051, 0.072915, 0.612726;;, + 210;3; 0.802051, 0.072915, 0.612726;;, + 211;3; 0.802051, 0.072915, 0.612726;;, + 212;3; 0.802051, 0.072915, 0.612726;;, + 213;3; 0.802051, 0.072915, 0.612726;;, + 214;3; 0.802051, 0.072915, 0.612726;;, + 215;3; 0.802051, 0.072915, 0.612726;;, + 216;3; 0.802051, 0.072915, 0.612726;;, + 217;3; 0.802051, 0.072915, 0.612726;;, + 218;3; 0.802051, 0.072915, 0.612726;;, + 219;3; 0.802051, 0.072915, 0.612726;;, + 220;3; 0.802051, 0.072915, 0.612726;;, + 221;3; 0.802051, 0.072915, 0.612726;;, + 222;3; 0.802051, 0.072915, 0.612726;;, + 223;3; 0.802051, 0.072915, 0.612726;;, + 224;3; 0.802051, 0.072915, 0.612726;;, + 225;3; 0.802051, 0.072915, 0.612726;;, + 226;3; 0.802051, 0.072915, 0.612726;;, + 227;3; 0.802051, 0.072915, 0.612726;;, + 228;3; 0.802051, 0.072915, 0.612726;;, + 229;3; 0.802051, 0.072915, 0.612726;;, + 230;3; 0.802051, 0.072915, 0.612726;;, + 231;3; 0.802051, 0.072915, 0.612726;;, + 232;3; 0.802051, 0.072915, 0.612726;;, + 233;3; 0.802051, 0.072915, 0.612726;;, + 234;3; 0.802051, 0.072915, 0.612726;;, + 235;3; 0.802051, 0.072915, 0.612726;;, + 236;3; 0.802051, 0.072915, 0.612726;;, + 237;3; 0.802051, 0.072915, 0.612726;;, + 238;3; 0.802051, 0.072915, 0.612726;;, + 239;3; 0.802051, 0.072915, 0.612726;;, + 240;3; 0.802051, 0.072915, 0.612726;;, + 241;3; 0.802051, 0.072915, 0.612726;;, + 242;3; 0.802051, 0.072915, 0.612726;;, + 243;3; 0.802051, 0.072915, 0.612726;;, + 244;3; 0.802051, 0.072915, 0.612726;;, + 245;3; 0.802051, 0.072915, 0.612726;;, + 246;3; 0.802051, 0.072915, 0.612726;;, + 247;3; 0.802051, 0.072915, 0.612726;;, + 248;3; 0.802051, 0.072915, 0.612726;;, + 249;3; 0.802051, 0.072915, 0.612726;;; + } + } + Animation { + {Armature_Bone} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 1;4;-0.433791, 0.432385, 0.560032,-0.557832;;, + 2;4;-0.434760, 0.433349, 0.559204,-0.557007;;, + 3;4;-0.436377, 0.434960, 0.557822,-0.555629;;, + 4;4;-0.438632, 0.437206, 0.555895,-0.553709;;, + 5;4;-0.441489, 0.440052, 0.553453,-0.551275;;, + 6;4;-0.444892, 0.443442, 0.550545,-0.548376;;, + 7;4;-0.448759, 0.447293, 0.547241,-0.545083;;, + 8;4;-0.452980, 0.451497, 0.543634,-0.541487;;, + 9;4;-0.457424, 0.455923, 0.539836,-0.537702;;, + 10;4;-0.461943, 0.460425, 0.535973,-0.533852;;, + 11;4;-0.466387, 0.464852, 0.532176,-0.530067;;, + 12;4;-0.470608, 0.469056, 0.528569,-0.526472;;, + 13;4;-0.474475, 0.472907, 0.525264,-0.523178;;, + 14;4;-0.477878, 0.476297, 0.522356,-0.520280;;, + 15;4;-0.480735, 0.479143, 0.519914,-0.517846;;, + 16;4;-0.482990, 0.481388, 0.517988,-0.515926;;, + 17;4;-0.484608, 0.483000, 0.516605,-0.514548;;, + 18;4;-0.485576, 0.483964, 0.515778,-0.513723;;, + 19;4;-0.485896, 0.484283, 0.515504,-0.513450;;, + 20;4;-0.485637, 0.484024, 0.515778,-0.513725;;, + 21;4;-0.484854, 0.483238, 0.516603,-0.514553;;, + 22;4;-0.483540, 0.481919, 0.517980,-0.515934;;, + 23;4;-0.481700, 0.480073, 0.519895,-0.517854;;, + 24;4;-0.479351, 0.477717, 0.522320,-0.520285;;, + 25;4;-0.476527, 0.474886, 0.525208,-0.523180;;, + 26;4;-0.473280, 0.471632, 0.528492,-0.526470;;, + 27;4;-0.469680, 0.468027, 0.532085,-0.530069;;, + 28;4;-0.465816, 0.464159, 0.535880,-0.533869;;, + 29;4;-0.461790, 0.460132, 0.539758,-0.537749;;, + 30;4;-0.457714, 0.456059, 0.543592,-0.541582;;, + 31;4;-0.453700, 0.452052, 0.547256,-0.545242;;, + 32;4;-0.449855, 0.448219, 0.550633,-0.548611;;, + 33;4;-0.446274, 0.444654, 0.553623,-0.551589;;, + 34;4;-0.443033, 0.441436, 0.556145,-0.554094;;, + 35;4;-0.440194, 0.438625, 0.558138,-0.556066;;, + 36;4;-0.437799, 0.436263, 0.559565,-0.557467;;, + 37;4;-0.435874, 0.434376, 0.560404,-0.558275;;, + 38;4;-0.434431, 0.432977, 0.560648,-0.558486;;, + 39;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 40;4;-0.427520, 0.431942, 0.553993,-0.557003;;, + 41;4;-0.410990, 0.432925, 0.536197,-0.555039;;, + 42;4;-0.383837, 0.435021, 0.506868,-0.552210;;, + 43;4;-0.346241, 0.438216, 0.466201,-0.548536;;, + 44;4;-0.298664, 0.442467, 0.414698,-0.544059;;, + 45;4;-0.241909, 0.447697, 0.353225,-0.538849;;, + 46;4;-0.177154, 0.453790, 0.283065,-0.533008;;, + 47;4;-0.105972, 0.460587, 0.205919,-0.526670;;, + 48;4;-0.030287, 0.467894, 0.123878,-0.519997;;, + 49;4; 0.047699, 0.475489, 0.039331,-0.513175;;, + 50;4; 0.125635, 0.483130,-0.045173,-0.506401;;, + 51;4; 0.201170, 0.490577,-0.127083,-0.499868;;, + 52;4; 0.272108, 0.497602,-0.204012,-0.493759;;, + 53;4; 0.336528, 0.504005,-0.273879,-0.488231;;, + 54;4; 0.392867, 0.509622,-0.334985,-0.483410;;, + 55;4; 0.439954, 0.514329,-0.386057,-0.479392;;, + 56;4; 0.476995, 0.518040,-0.426236,-0.476237;;, + 57;4; 0.503536, 0.520704,-0.455026,-0.473981;;, + 58;4; 0.519406, 0.522300,-0.472242,-0.472635;;, + 59;4; 0.524656, 0.522828,-0.477937,-0.472190;;, + 60;4; 0.524656, 0.522828,-0.477937,-0.472190;;, + 61;4; 0.524656, 0.522828,-0.477937,-0.472190;;, + 62;4; 0.524656, 0.522828,-0.477937,-0.472190;;, + 63;4; 0.524656, 0.522828,-0.477937,-0.472190;;, + 64;4; 0.524656, 0.522828,-0.477937,-0.472190;;, + 65;4; 0.524656, 0.522828,-0.477937,-0.472190;;, + 66;4; 0.524656, 0.522828,-0.477937,-0.472190;;, + 67;4; 0.524656, 0.522828,-0.477937,-0.472190;;, + 68;4; 0.524656, 0.522828,-0.477937,-0.472190;;, + 69;4; 0.524656, 0.522828,-0.477937,-0.472190;;, + 70;4; 0.524656, 0.522828,-0.477937,-0.472190;;, + 71;4; 0.524656, 0.522828,-0.477937,-0.472190;;, + 72;4; 0.524656, 0.522828,-0.477937,-0.472190;;, + 73;4; 0.524656, 0.522828,-0.477937,-0.472190;;, + 74;4; 0.524656, 0.522828,-0.477937,-0.472190;;, + 75;4; 0.524656, 0.522828,-0.477937,-0.472190;;, + 76;4; 0.524656, 0.522828,-0.477937,-0.472190;;, + 77;4; 0.524656, 0.522828,-0.477937,-0.472190;;, + 78;4; 0.524656, 0.522828,-0.477937,-0.472190;;, + 79;4; 0.524656, 0.522828,-0.477937,-0.472190;;, + 80;4; 0.524656, 0.522828,-0.477937,-0.472190;;, + 81;4; 0.524656, 0.522828,-0.477937,-0.472190;;, + 82;4; 0.524656, 0.522828,-0.477937,-0.472190;;, + 83;4; 0.524656, 0.522828,-0.477937,-0.472190;;, + 84;4; 0.524656, 0.522828,-0.477937,-0.472190;;, + 85;4; 0.524656, 0.522828,-0.477937,-0.472190;;, + 86;4; 0.524656, 0.522828,-0.477937,-0.472190;;, + 87;4; 0.524656, 0.522828,-0.477937,-0.472190;;, + 88;4; 0.524656, 0.522828,-0.477937,-0.472190;;, + 89;4; 0.524656, 0.522828,-0.477937,-0.472190;;, + 90;4; 0.524656, 0.522828,-0.477937,-0.472190;;, + 91;4; 0.524656, 0.522828,-0.477937,-0.472190;;, + 92;4; 0.524656, 0.522828,-0.477937,-0.472190;;, + 93;4; 0.524656, 0.522828,-0.477937,-0.472190;;, + 94;4; 0.524656, 0.522828,-0.477937,-0.472190;;, + 95;4; 0.524656, 0.522828,-0.477937,-0.472190;;, + 96;4; 0.524656, 0.522828,-0.477937,-0.472190;;, + 97;4; 0.524656, 0.522828,-0.477937,-0.472190;;, + 98;4; 0.524656, 0.522828,-0.477937,-0.472190;;, + 99;4; 0.524656, 0.522828,-0.477937,-0.472190;;, + 100;4; 0.519376, 0.522328,-0.472215,-0.472663;;, + 101;4; 0.503415, 0.520816,-0.454920,-0.474094;;, + 102;4; 0.476728, 0.518288,-0.426001,-0.476487;;, + 103;4; 0.439489, 0.514760,-0.385649,-0.479827;;, + 104;4; 0.392162, 0.510277,-0.334364,-0.484070;;, + 105;4; 0.335549, 0.504914,-0.273017,-0.489147;;, + 106;4; 0.270836, 0.498784,-0.202893,-0.494950;;, + 107;4; 0.199600, 0.492036,-0.125701,-0.501337;;, + 108;4; 0.123781, 0.484854,-0.043542,-0.508136;;, + 109;4; 0.045593, 0.477447, 0.041184,-0.515147;;, + 110;4;-0.032595, 0.470040, 0.125910,-0.522158;;, + 111;4;-0.108415, 0.462858, 0.208069,-0.528957;;, + 112;4;-0.179651, 0.456110, 0.285261,-0.535344;;, + 113;4;-0.244364, 0.449980, 0.355386,-0.541147;;, + 114;4;-0.300977, 0.444617, 0.416732,-0.546224;;, + 115;4;-0.348304, 0.440133, 0.468017,-0.550467;;, + 116;4;-0.385543, 0.436606, 0.508369,-0.553807;;, + 117;4;-0.412230, 0.434078, 0.537288,-0.556199;;, + 118;4;-0.428191, 0.432566, 0.554583,-0.557631;;, + 119;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 120;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 121;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 122;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 123;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 124;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 125;4;-0.435334, 0.433921, 0.558806,-0.556610;;, + 126;4;-0.440582, 0.439149, 0.554585,-0.552402;;, + 127;4;-0.447321, 0.445861, 0.549164,-0.547000;;, + 128;4;-0.452569, 0.451088, 0.544942,-0.542792;;, + 129;4;-0.454432, 0.452944, 0.543444,-0.541298;;, + 130;4;-0.452569, 0.451088, 0.544942,-0.542792;;, + 131;4;-0.447321, 0.445861, 0.549164,-0.547000;;, + 132;4;-0.440582, 0.439149, 0.554585,-0.552402;;, + 133;4;-0.435334, 0.433921, 0.558806,-0.556610;;, + 134;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 135;4;-0.438477, 0.437051, 0.555995,-0.553808;;, + 136;4;-0.452576, 0.451095, 0.543853,-0.541706;;, + 137;4;-0.470679, 0.469127, 0.528263,-0.526168;;, + 138;4;-0.484779, 0.483170, 0.516122,-0.514066;;, + 139;4;-0.489784, 0.488156, 0.511811,-0.509769;;, + 140;4;-0.484779, 0.483170, 0.516122,-0.514066;;, + 141;4;-0.470679, 0.469127, 0.528263,-0.526168;;, + 142;4;-0.452576, 0.451095, 0.543853,-0.541706;;, + 143;4;-0.438477, 0.437051, 0.555995,-0.553808;;, + 144;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 145;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 146;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 147;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 148;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 149;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 150;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 151;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 152;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 153;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 154;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 155;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 156;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 157;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 158;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 159;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 160;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 161;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 162;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 163;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 164;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 165;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 166;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 167;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 168;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 169;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 170;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 171;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 172;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 173;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 174;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 175;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 176;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 177;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 178;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 179;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 180;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 181;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 182;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 183;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 184;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 185;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 186;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 187;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 188;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 189;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 190;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 191;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 192;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 193;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 194;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 195;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 196;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 197;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 198;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 199;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 200;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 201;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 202;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 203;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 204;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 205;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 206;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 207;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 208;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 209;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 210;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 211;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 212;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 213;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 214;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 215;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 216;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 217;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 218;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 219;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 220;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 221;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 222;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 223;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 224;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 225;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 226;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 227;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 228;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 229;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 230;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 231;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 232;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 233;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 234;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 235;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 236;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 237;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 238;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 239;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 240;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 241;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 242;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 243;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 244;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 245;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 246;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 247;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 248;4;-0.433471, 0.432066, 0.560305,-0.558104;;, + 249;4;-0.433471, 0.432066, 0.560305,-0.558104;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3;-0.089351,-0.042254, 0.243361;;, + 1;3;-0.089351,-0.042254, 0.243361;;, + 2;3;-0.089351,-0.042254, 0.243361;;, + 3;3;-0.089351,-0.042254, 0.243361;;, + 4;3;-0.089351,-0.042254, 0.243361;;, + 5;3;-0.089351,-0.042254, 0.243361;;, + 6;3;-0.089351,-0.042254, 0.243361;;, + 7;3;-0.089351,-0.042254, 0.243361;;, + 8;3;-0.089351,-0.042254, 0.243361;;, + 9;3;-0.089351,-0.042254, 0.243361;;, + 10;3;-0.089351,-0.042254, 0.243361;;, + 11;3;-0.089351,-0.042254, 0.243361;;, + 12;3;-0.089351,-0.042254, 0.243361;;, + 13;3;-0.089351,-0.042254, 0.243361;;, + 14;3;-0.089351,-0.042254, 0.243361;;, + 15;3;-0.089351,-0.042254, 0.243361;;, + 16;3;-0.089351,-0.042254, 0.243361;;, + 17;3;-0.089351,-0.042254, 0.243361;;, + 18;3;-0.089351,-0.042254, 0.243361;;, + 19;3;-0.089351,-0.042254, 0.243361;;, + 20;3;-0.089351,-0.042254, 0.243361;;, + 21;3;-0.089351,-0.042254, 0.243361;;, + 22;3;-0.089351,-0.042254, 0.243361;;, + 23;3;-0.089351,-0.042254, 0.243361;;, + 24;3;-0.089351,-0.042254, 0.243361;;, + 25;3;-0.089351,-0.042254, 0.243361;;, + 26;3;-0.089351,-0.042254, 0.243361;;, + 27;3;-0.089351,-0.042254, 0.243361;;, + 28;3;-0.089351,-0.042254, 0.243361;;, + 29;3;-0.089351,-0.042254, 0.243361;;, + 30;3;-0.089351,-0.042254, 0.243361;;, + 31;3;-0.089351,-0.042254, 0.243361;;, + 32;3;-0.089351,-0.042254, 0.243361;;, + 33;3;-0.089351,-0.042254, 0.243361;;, + 34;3;-0.089351,-0.042254, 0.243361;;, + 35;3;-0.089351,-0.042254, 0.243361;;, + 36;3;-0.089351,-0.042254, 0.243361;;, + 37;3;-0.089351,-0.042254, 0.243361;;, + 38;3;-0.089351,-0.042254, 0.243361;;, + 39;3;-0.089351,-0.042254, 0.243361;;, + 40;3;-0.089351,-0.042254, 0.243361;;, + 41;3;-0.089351,-0.042254, 0.243361;;, + 42;3;-0.089351,-0.042254, 0.243361;;, + 43;3;-0.089351,-0.042254, 0.243361;;, + 44;3;-0.089351,-0.042254, 0.243361;;, + 45;3;-0.089351,-0.042254, 0.243361;;, + 46;3;-0.089351,-0.042254, 0.243361;;, + 47;3;-0.089351,-0.042254, 0.243361;;, + 48;3;-0.089351,-0.042254, 0.243361;;, + 49;3;-0.089351,-0.042254, 0.243361;;, + 50;3;-0.089351,-0.042254, 0.243361;;, + 51;3;-0.089351,-0.042254, 0.243361;;, + 52;3;-0.089351,-0.042254, 0.243361;;, + 53;3;-0.089351,-0.042254, 0.243361;;, + 54;3;-0.089351,-0.042254, 0.243361;;, + 55;3;-0.089351,-0.042254, 0.243361;;, + 56;3;-0.089351,-0.042254, 0.243361;;, + 57;3;-0.089351,-0.042254, 0.243361;;, + 58;3;-0.089351,-0.042254, 0.243361;;, + 59;3;-0.089351,-0.042254, 0.243361;;, + 60;3;-0.125888,-0.042501, 0.243361;;, + 61;3;-0.235850,-0.043244, 0.243361;;, + 62;3;-0.414642,-0.044452, 0.243361;;, + 63;3;-0.648494,-0.046032, 0.243361;;, + 64;3;-0.913410,-0.047823, 0.243361;;, + 65;3;-1.178326,-0.049613, 0.243361;;, + 66;3;-1.412178,-0.051193, 0.243361;;, + 67;3;-1.590970,-0.052402, 0.243361;;, + 68;3;-1.700932,-0.053145, 0.243361;;, + 69;3;-1.737470,-0.053392, 0.243361;;, + 70;3;-1.733443,-0.053364, 0.243361;;, + 71;3;-1.721287,-0.053282, 0.243361;;, + 72;3;-1.700932,-0.053145, 0.243361;;, + 73;3;-1.672368,-0.052952, 0.243361;;, + 74;3;-1.635662,-0.052704, 0.243361;;, + 75;3;-1.590970,-0.052402, 0.243361;;, + 76;3;-1.538553,-0.052047, 0.243361;;, + 77;3;-1.478787,-0.051643, 0.243361;;, + 78;3;-1.412178,-0.051193, 0.243361;;, + 79;3;-1.339361,-0.050701, 0.243361;;, + 80;3;-1.261110,-0.050172, 0.243361;;, + 81;3;-1.178326,-0.049613, 0.243361;;, + 82;3;-1.092027,-0.049030, 0.243361;;, + 83;3;-1.003328,-0.048430, 0.243361;;, + 84;3;-0.913410,-0.047823, 0.243361;;, + 85;3;-0.823492,-0.047215, 0.243361;;, + 86;3;-0.734793,-0.046616, 0.243361;;, + 87;3;-0.648494,-0.046032, 0.243361;;, + 88;3;-0.565710,-0.045473, 0.243361;;, + 89;3;-0.487459,-0.044944, 0.243361;;, + 90;3;-0.414642,-0.044452, 0.243361;;, + 91;3;-0.348033,-0.044002, 0.243361;;, + 92;3;-0.288267,-0.043598, 0.243361;;, + 93;3;-0.235850,-0.043244, 0.243361;;, + 94;3;-0.191158,-0.042942, 0.243361;;, + 95;3;-0.154452,-0.042694, 0.243361;;, + 96;3;-0.125888,-0.042501, 0.243361;;, + 97;3;-0.105533,-0.042363, 0.243361;;, + 98;3;-0.093378,-0.042281, 0.243361;;, + 99;3;-0.089351,-0.042254, 0.243361;;, + 100;3;-0.089351,-0.042254, 0.243361;;, + 101;3;-0.089351,-0.042254, 0.243361;;, + 102;3;-0.089351,-0.042254, 0.243361;;, + 103;3;-0.089351,-0.042254, 0.243361;;, + 104;3;-0.089351,-0.042254, 0.243361;;, + 105;3;-0.089351,-0.042254, 0.243361;;, + 106;3;-0.089351,-0.042254, 0.243361;;, + 107;3;-0.089351,-0.042254, 0.243361;;, + 108;3;-0.089351,-0.042254, 0.243361;;, + 109;3;-0.089351,-0.042254, 0.243361;;, + 110;3;-0.089351,-0.042254, 0.243361;;, + 111;3;-0.089351,-0.042254, 0.243361;;, + 112;3;-0.089351,-0.042254, 0.243361;;, + 113;3;-0.089351,-0.042254, 0.243361;;, + 114;3;-0.089351,-0.042254, 0.243361;;, + 115;3;-0.089351,-0.042254, 0.243361;;, + 116;3;-0.089351,-0.042254, 0.243361;;, + 117;3;-0.089351,-0.042254, 0.243361;;, + 118;3;-0.089351,-0.042254, 0.243361;;, + 119;3;-0.089351,-0.042254, 0.243361;;, + 120;3;-0.089351,-0.042254, 0.243361;;, + 121;3;-0.089351,-0.042254, 0.243361;;, + 122;3;-0.089351,-0.042254, 0.243361;;, + 123;3;-0.089351,-0.042254, 0.243361;;, + 124;3;-0.089351,-0.042254, 0.243361;;, + 125;3;-0.089351,-0.042254, 0.243361;;, + 126;3;-0.089351,-0.042254, 0.243361;;, + 127;3;-0.089351,-0.042254, 0.243361;;, + 128;3;-0.089351,-0.042254, 0.243361;;, + 129;3;-0.089351,-0.042254, 0.243361;;, + 130;3;-0.089351,-0.042254, 0.243361;;, + 131;3;-0.089351,-0.042254, 0.243361;;, + 132;3;-0.089351,-0.042254, 0.243361;;, + 133;3;-0.089351,-0.042254, 0.243361;;, + 134;3;-0.089351,-0.042254, 0.243361;;, + 135;3;-0.089351,-0.042254, 0.243361;;, + 136;3;-0.089351,-0.042254, 0.243361;;, + 137;3;-0.089351,-0.042254, 0.243361;;, + 138;3;-0.089351,-0.042254, 0.243361;;, + 139;3;-0.089351,-0.042254, 0.243361;;, + 140;3;-0.089351,-0.042254, 0.243361;;, + 141;3;-0.089351,-0.042254, 0.243361;;, + 142;3;-0.089351,-0.042254, 0.243361;;, + 143;3;-0.089351,-0.042254, 0.243361;;, + 144;3;-0.089351,-0.042254, 0.243361;;, + 145;3;-0.089351,-0.042254, 0.243361;;, + 146;3;-0.089351,-0.042254, 0.243361;;, + 147;3;-0.089351,-0.042254, 0.243361;;, + 148;3;-0.089351,-0.042254, 0.243361;;, + 149;3;-0.089351,-0.042254, 0.243361;;, + 150;3;-0.089351,-0.042254, 0.243361;;, + 151;3;-0.089351,-0.042254, 0.243361;;, + 152;3;-0.089351,-0.042254, 0.243361;;, + 153;3;-0.089351,-0.042254, 0.243361;;, + 154;3;-0.089351,-0.042254, 0.243361;;, + 155;3;-0.089351,-0.042254, 0.243361;;, + 156;3;-0.089351,-0.042254, 0.243361;;, + 157;3;-0.089351,-0.042254, 0.243361;;, + 158;3;-0.089351,-0.042254, 0.243361;;, + 159;3;-0.089351,-0.042254, 0.243361;;, + 160;3;-0.089351,-0.042254, 0.243361;;, + 161;3;-0.089351,-0.042254, 0.243361;;, + 162;3;-0.089351,-0.042254, 0.243361;;, + 163;3;-0.089351,-0.042254, 0.243361;;, + 164;3;-0.089351,-0.042254, 0.243361;;, + 165;3;-0.089351,-0.042254, 0.243361;;, + 166;3;-0.089351,-0.042254, 0.243361;;, + 167;3;-0.089351,-0.042254, 0.243361;;, + 168;3;-0.089351,-0.042254, 0.243361;;, + 169;3;-0.089351,-0.042254, 0.243361;;, + 170;3;-0.089351,-0.042254, 0.243361;;, + 171;3;-0.089351,-0.042254, 0.243361;;, + 172;3;-0.089351,-0.042254, 0.243361;;, + 173;3;-0.089351,-0.042254, 0.243361;;, + 174;3;-0.089351,-0.042254, 0.243361;;, + 175;3;-0.089351,-0.042254, 0.243361;;, + 176;3;-0.089351,-0.042254, 0.243361;;, + 177;3;-0.089351,-0.042254, 0.243361;;, + 178;3;-0.089351,-0.042254, 0.243361;;, + 179;3;-0.089351,-0.042254, 0.243361;;, + 180;3;-0.089351,-0.042254, 0.243361;;, + 181;3;-0.089351,-0.042254, 0.243361;;, + 182;3;-0.089351,-0.042254, 0.243361;;, + 183;3;-0.089351,-0.042254, 0.243361;;, + 184;3;-0.089351,-0.042254, 0.243361;;, + 185;3;-0.089351,-0.042254, 0.243361;;, + 186;3;-0.089351,-0.042254, 0.243361;;, + 187;3;-0.089351,-0.042254, 0.243361;;, + 188;3;-0.089351,-0.042254, 0.243361;;, + 189;3;-0.089351,-0.042254, 0.243361;;, + 190;3;-0.089351,-0.042254, 0.243361;;, + 191;3;-0.089351,-0.042254, 0.243361;;, + 192;3;-0.089351,-0.042254, 0.243361;;, + 193;3;-0.089351,-0.042254, 0.243361;;, + 194;3;-0.089351,-0.042254, 0.243361;;, + 195;3;-0.089351,-0.042254, 0.243361;;, + 196;3;-0.089351,-0.042254, 0.243361;;, + 197;3;-0.089351,-0.042254, 0.243361;;, + 198;3;-0.089351,-0.042254, 0.243361;;, + 199;3;-0.089351,-0.042254, 0.243361;;, + 200;3;-0.089351,-0.042254, 0.243361;;, + 201;3;-0.089351,-0.042254, 0.243361;;, + 202;3;-0.089351,-0.042254, 0.243361;;, + 203;3;-0.089351,-0.042254, 0.243361;;, + 204;3;-0.089351,-0.042254, 0.243361;;, + 205;3;-0.089351,-0.042254, 0.243361;;, + 206;3;-0.089351,-0.042254, 0.243361;;, + 207;3;-0.089351,-0.042254, 0.243361;;, + 208;3;-0.089351,-0.042254, 0.243361;;, + 209;3;-0.089351,-0.042254, 0.243361;;, + 210;3;-0.089351,-0.042254, 0.243361;;, + 211;3;-0.089351,-0.042254, 0.243361;;, + 212;3;-0.089351,-0.042254, 0.243361;;, + 213;3;-0.089351,-0.042254, 0.243361;;, + 214;3;-0.089351,-0.042254, 0.243361;;, + 215;3;-0.089351,-0.042254, 0.243361;;, + 216;3;-0.089351,-0.042254, 0.243361;;, + 217;3;-0.089351,-0.042254, 0.243361;;, + 218;3;-0.089351,-0.042254, 0.243361;;, + 219;3;-0.089351,-0.042254, 0.243361;;, + 220;3;-0.089351,-0.042254, 0.243361;;, + 221;3;-0.089351,-0.042254, 0.243361;;, + 222;3;-0.089351,-0.042254, 0.243361;;, + 223;3;-0.089351,-0.042254, 0.243361;;, + 224;3;-0.089351,-0.042254, 0.243361;;, + 225;3;-0.089351,-0.042254, 0.243361;;, + 226;3;-0.089351,-0.042254, 0.243361;;, + 227;3;-0.089351,-0.042254, 0.243361;;, + 228;3;-0.089351,-0.042254, 0.243361;;, + 229;3;-0.089351,-0.042254, 0.243361;;, + 230;3;-0.089351,-0.042254, 0.243361;;, + 231;3;-0.089351,-0.042254, 0.243361;;, + 232;3;-0.089351,-0.042254, 0.243361;;, + 233;3;-0.089351,-0.042254, 0.243361;;, + 234;3;-0.089351,-0.042254, 0.243361;;, + 235;3;-0.089351,-0.042254, 0.243361;;, + 236;3;-0.089351,-0.042254, 0.243361;;, + 237;3;-0.089351,-0.042254, 0.243361;;, + 238;3;-0.089351,-0.042254, 0.243361;;, + 239;3;-0.089351,-0.042254, 0.243361;;, + 240;3;-0.089351,-0.042254, 0.243361;;, + 241;3;-0.089351,-0.042254, 0.243361;;, + 242;3;-0.089351,-0.042254, 0.243361;;, + 243;3;-0.089351,-0.042254, 0.243361;;, + 244;3;-0.089351,-0.042254, 0.243361;;, + 245;3;-0.089351,-0.042254, 0.243361;;, + 246;3;-0.089351,-0.042254, 0.243361;;, + 247;3;-0.089351,-0.042254, 0.243361;;, + 248;3;-0.089351,-0.042254, 0.243361;;, + 249;3;-0.089351,-0.042254, 0.243361;;; + } + } + Animation { + {Armature_Bone_001} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 1;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 2;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 3;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 4;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 5;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 6;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 7;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 8;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 9;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 10;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 11;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 12;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 13;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 14;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 15;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 16;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 17;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 18;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 19;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 20;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 21;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 22;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 23;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 24;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 25;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 26;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 27;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 28;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 29;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 30;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 31;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 32;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 33;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 34;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 35;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 36;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 37;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 38;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 39;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 40;4;-0.699423,-0.000832, 0.000812, 0.707041;;, + 41;4;-0.676197,-0.003349, 0.003265, 0.706843;;, + 42;4;-0.637361,-0.007556, 0.007368, 0.706511;;, + 43;4;-0.583171,-0.013426, 0.013093, 0.706048;;, + 44;4;-0.514301,-0.020887, 0.020369, 0.705459;;, + 45;4;-0.431917,-0.029812, 0.029072, 0.704755;;, + 46;4;-0.337746,-0.040014, 0.039021, 0.703950;;, + 47;4;-0.234083,-0.051244, 0.049972, 0.703064;;, + 48;4;-0.123750,-0.063197, 0.061628, 0.702121;;, + 49;4;-0.009970,-0.075523, 0.073649, 0.701149;;, + 50;4; 0.103810,-0.087849, 0.085669, 0.700177;;, + 51;4; 0.214144,-0.099801, 0.097325, 0.699234;;, + 52;4; 0.317806,-0.111032, 0.108276, 0.698348;;, + 53;4; 0.411977,-0.121233, 0.118225, 0.697543;;, + 54;4; 0.494361,-0.130158, 0.126928, 0.696839;;, + 55;4; 0.563232,-0.137619, 0.134204, 0.696250;;, + 56;4; 0.617421,-0.143490, 0.139929, 0.695787;;, + 57;4; 0.656257,-0.147697, 0.144032, 0.695455;;, + 58;4; 0.679483,-0.150213, 0.146486, 0.695257;;, + 59;4; 0.687167,-0.151045, 0.147297, 0.695191;;, + 60;4; 0.687167,-0.151045, 0.147297, 0.695191;;, + 61;4; 0.687167,-0.151045, 0.147297, 0.695191;;, + 62;4; 0.687167,-0.151045, 0.147297, 0.695191;;, + 63;4; 0.687167,-0.151045, 0.147297, 0.695191;;, + 64;4; 0.687167,-0.151045, 0.147297, 0.695191;;, + 65;4; 0.687167,-0.151045, 0.147297, 0.695191;;, + 66;4; 0.687167,-0.151045, 0.147297, 0.695191;;, + 67;4; 0.687167,-0.151045, 0.147297, 0.695191;;, + 68;4; 0.687167,-0.151045, 0.147297, 0.695191;;, + 69;4; 0.687167,-0.151045, 0.147297, 0.695191;;, + 70;4; 0.687167,-0.151045, 0.147297, 0.695191;;, + 71;4; 0.687167,-0.151045, 0.147297, 0.695191;;, + 72;4; 0.687167,-0.151045, 0.147297, 0.695191;;, + 73;4; 0.687167,-0.151045, 0.147297, 0.695191;;, + 74;4; 0.687167,-0.151045, 0.147297, 0.695191;;, + 75;4; 0.687167,-0.151045, 0.147297, 0.695191;;, + 76;4; 0.687167,-0.151045, 0.147297, 0.695191;;, + 77;4; 0.687167,-0.151045, 0.147297, 0.695191;;, + 78;4; 0.687167,-0.151045, 0.147297, 0.695191;;, + 79;4; 0.687167,-0.151045, 0.147297, 0.695191;;, + 80;4; 0.687167,-0.151045, 0.147297, 0.695191;;, + 81;4; 0.687167,-0.151045, 0.147297, 0.695191;;, + 82;4; 0.687167,-0.151045, 0.147297, 0.695191;;, + 83;4; 0.687167,-0.151045, 0.147297, 0.695191;;, + 84;4; 0.687167,-0.151045, 0.147297, 0.695191;;, + 85;4; 0.687167,-0.151045, 0.147297, 0.695191;;, + 86;4; 0.687167,-0.151045, 0.147297, 0.695191;;, + 87;4; 0.687167,-0.151045, 0.147297, 0.695191;;, + 88;4; 0.687167,-0.151045, 0.147297, 0.695191;;, + 89;4; 0.687167,-0.151045, 0.147297, 0.695191;;, + 90;4; 0.687167,-0.151045, 0.147297, 0.695191;;, + 91;4; 0.687167,-0.151045, 0.147297, 0.695191;;, + 92;4; 0.687167,-0.151045, 0.147297, 0.695191;;, + 93;4; 0.687167,-0.151045, 0.147297, 0.695191;;, + 94;4; 0.687167,-0.151045, 0.147297, 0.695191;;, + 95;4; 0.687167,-0.151045, 0.147297, 0.695191;;, + 96;4; 0.687167,-0.151045, 0.147297, 0.695191;;, + 97;4; 0.687167,-0.151045, 0.147297, 0.695191;;, + 98;4; 0.687167,-0.151045, 0.147297, 0.695191;;, + 99;4; 0.687167,-0.151045, 0.147297, 0.695191;;, + 100;4; 0.679483,-0.150223, 0.146475, 0.695257;;, + 101;4; 0.656257,-0.147737, 0.143992, 0.695455;;, + 102;4; 0.617421,-0.143579, 0.139840, 0.695787;;, + 103;4; 0.563232,-0.137774, 0.134049, 0.696250;;, + 104;4; 0.494361,-0.130393, 0.126693, 0.696839;;, + 105;4; 0.411977,-0.121560, 0.117898, 0.697543;;, + 106;4; 0.317806,-0.111456, 0.107852, 0.698348;;, + 107;4; 0.214143,-0.100325, 0.096801, 0.699234;;, + 108;4; 0.103810,-0.088467, 0.085050, 0.700176;;, + 109;4;-0.009970,-0.076225, 0.072946, 0.701149;;, + 110;4;-0.123750,-0.063967, 0.060858, 0.702121;;, + 111;4;-0.234083,-0.052059, 0.049157, 0.703064;;, + 112;4;-0.337746,-0.040847, 0.038188, 0.703950;;, + 113;4;-0.431917,-0.030631, 0.028253, 0.704755;;, + 114;4;-0.514301,-0.021659, 0.019597, 0.705459;;, + 115;4;-0.583171,-0.014115, 0.012405, 0.706048;;, + 116;4;-0.637361,-0.008125, 0.006799, 0.706511;;, + 117;4;-0.676197,-0.003762, 0.002852, 0.706842;;, + 118;4;-0.699423,-0.001056, 0.000588, 0.707041;;, + 119;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 120;4;-0.706968, 0.005590, 0.005590, 0.706968;;, + 121;4;-0.706535, 0.020884, 0.020884, 0.706535;;, + 122;4;-0.705867, 0.040407, 0.040407, 0.705867;;, + 123;4;-0.705130, 0.055576, 0.055576, 0.705130;;, + 124;4;-0.704475, 0.060956, 0.060956, 0.704475;;, + 125;4;-0.711854, 0.055537, 0.055537, 0.695674;;, + 126;4;-0.733750, 0.040276, 0.040276, 0.671995;;, + 127;4;-0.762143, 0.020680, 0.020680, 0.641870;;, + 128;4;-0.784343, 0.005418, 0.005418, 0.618495;;, + 129;4;-0.792239, 0.000000, 0.000000, 0.610210;;, + 130;4;-0.787355, 0.000000, 0.000000, 0.616140;;, + 131;4;-0.772424, 0.000000, 0.000000, 0.634017;;, + 132;4;-0.750104, 0.000000, 0.000000, 0.660118;;, + 133;4;-0.726592, 0.000000, 0.000000, 0.686576;;, + 134;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 135;4;-0.688147, 0.000000, 0.000000, 0.725354;;, + 136;4;-0.666114, 0.000000, 0.000000, 0.745378;;, + 137;4;-0.645694, 0.000000, 0.000000, 0.763219;;, + 138;4;-0.632243, 0.000000, 0.000000, 0.774661;;, + 139;4;-0.627884, 0.000000, 0.000000, 0.778307;;, + 140;4;-0.634897,-0.001371,-0.001371, 0.771950;;, + 141;4;-0.654657,-0.005232,-0.005232, 0.754048;;, + 142;4;-0.680045,-0.010190,-0.010190, 0.731078;;, + 143;4;-0.699850,-0.014051,-0.014051, 0.713221;;, + 144;4;-0.706939,-0.015422,-0.015422, 0.706939;;, + 145;4;-0.707015,-0.014051,-0.014051, 0.707015;;, + 146;4;-0.707069,-0.010190,-0.010190, 0.707069;;, + 147;4;-0.707097,-0.005232,-0.005232, 0.707097;;, + 148;4;-0.707106,-0.001371,-0.001371, 0.707106;;, + 149;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 150;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 151;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 152;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 153;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 154;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 155;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 156;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 157;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 158;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 159;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 160;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 161;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 162;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 163;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 164;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 165;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 166;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 167;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 168;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 169;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 170;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 171;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 172;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 173;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 174;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 175;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 176;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 177;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 178;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 179;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 180;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 181;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 182;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 183;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 184;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 185;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 186;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 187;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 188;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 189;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 190;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 191;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 192;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 193;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 194;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 195;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 196;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 197;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 198;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 199;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 200;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 201;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 202;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 203;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 204;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 205;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 206;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 207;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 208;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 209;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 210;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 211;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 212;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 213;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 214;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 215;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 216;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 217;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 218;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 219;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 220;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 221;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 222;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 223;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 224;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 225;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 226;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 227;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 228;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 229;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 230;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 231;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 232;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 233;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 234;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 235;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 236;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 237;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 238;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 239;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 240;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 241;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 242;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 243;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 244;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 245;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 246;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 247;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 248;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 249;4;-0.707107, 0.000000, 0.000000, 0.707107;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3;-0.089351,-0.042254, 0.243361;;, + 1;3;-0.089351,-0.042254, 0.243361;;, + 2;3;-0.089351,-0.042254, 0.243361;;, + 3;3;-0.089351,-0.042254, 0.243361;;, + 4;3;-0.089351,-0.042254, 0.243361;;, + 5;3;-0.089351,-0.042254, 0.243361;;, + 6;3;-0.089351,-0.042254, 0.243361;;, + 7;3;-0.089351,-0.042254, 0.243361;;, + 8;3;-0.089351,-0.042254, 0.243361;;, + 9;3;-0.089351,-0.042254, 0.243361;;, + 10;3;-0.089351,-0.042254, 0.243361;;, + 11;3;-0.089351,-0.042254, 0.243361;;, + 12;3;-0.089351,-0.042254, 0.243361;;, + 13;3;-0.089351,-0.042254, 0.243361;;, + 14;3;-0.089351,-0.042254, 0.243361;;, + 15;3;-0.089351,-0.042254, 0.243361;;, + 16;3;-0.089351,-0.042254, 0.243361;;, + 17;3;-0.089351,-0.042254, 0.243361;;, + 18;3;-0.089351,-0.042254, 0.243361;;, + 19;3;-0.089351,-0.042254, 0.243361;;, + 20;3;-0.089351,-0.042254, 0.243361;;, + 21;3;-0.089351,-0.042254, 0.243361;;, + 22;3;-0.089351,-0.042254, 0.243361;;, + 23;3;-0.089351,-0.042254, 0.243361;;, + 24;3;-0.089351,-0.042254, 0.243361;;, + 25;3;-0.089351,-0.042254, 0.243361;;, + 26;3;-0.089351,-0.042254, 0.243361;;, + 27;3;-0.089351,-0.042254, 0.243361;;, + 28;3;-0.089351,-0.042254, 0.243361;;, + 29;3;-0.089351,-0.042254, 0.243361;;, + 30;3;-0.089351,-0.042254, 0.243361;;, + 31;3;-0.089351,-0.042254, 0.243361;;, + 32;3;-0.089351,-0.042254, 0.243361;;, + 33;3;-0.089351,-0.042254, 0.243361;;, + 34;3;-0.089351,-0.042254, 0.243361;;, + 35;3;-0.089351,-0.042254, 0.243361;;, + 36;3;-0.089351,-0.042254, 0.243361;;, + 37;3;-0.089351,-0.042254, 0.243361;;, + 38;3;-0.089351,-0.042254, 0.243361;;, + 39;3;-0.089351,-0.042254, 0.243361;;, + 40;3;-0.089351,-0.042254, 0.243361;;, + 41;3;-0.089351,-0.042254, 0.243361;;, + 42;3;-0.089351,-0.042254, 0.243361;;, + 43;3;-0.089351,-0.042254, 0.243361;;, + 44;3;-0.089351,-0.042254, 0.243361;;, + 45;3;-0.089351,-0.042254, 0.243361;;, + 46;3;-0.089351,-0.042254, 0.243361;;, + 47;3;-0.089351,-0.042254, 0.243361;;, + 48;3;-0.089351,-0.042254, 0.243361;;, + 49;3;-0.089351,-0.042254, 0.243361;;, + 50;3;-0.089351,-0.042254, 0.243361;;, + 51;3;-0.089351,-0.042254, 0.243361;;, + 52;3;-0.089351,-0.042254, 0.243361;;, + 53;3;-0.089351,-0.042254, 0.243361;;, + 54;3;-0.089351,-0.042254, 0.243361;;, + 55;3;-0.089351,-0.042254, 0.243361;;, + 56;3;-0.089351,-0.042254, 0.243361;;, + 57;3;-0.089351,-0.042254, 0.243361;;, + 58;3;-0.089351,-0.042254, 0.243361;;, + 59;3;-0.089351,-0.042254, 0.243361;;, + 60;3;-0.125888,-0.042501, 0.243361;;, + 61;3;-0.235850,-0.043244, 0.243361;;, + 62;3;-0.414642,-0.044452, 0.243361;;, + 63;3;-0.648494,-0.046032, 0.243361;;, + 64;3;-0.913410,-0.047823, 0.243361;;, + 65;3;-1.178326,-0.049613, 0.243361;;, + 66;3;-1.412178,-0.051193, 0.243361;;, + 67;3;-1.590970,-0.052402, 0.243361;;, + 68;3;-1.700932,-0.053145, 0.243361;;, + 69;3;-1.737470,-0.053392, 0.243361;;, + 70;3;-1.733443,-0.053364, 0.243361;;, + 71;3;-1.721287,-0.053282, 0.243361;;, + 72;3;-1.700932,-0.053145, 0.243361;;, + 73;3;-1.672368,-0.052952, 0.243361;;, + 74;3;-1.635662,-0.052704, 0.243361;;, + 75;3;-1.590970,-0.052402, 0.243361;;, + 76;3;-1.538553,-0.052047, 0.243361;;, + 77;3;-1.478787,-0.051643, 0.243361;;, + 78;3;-1.412178,-0.051193, 0.243361;;, + 79;3;-1.339361,-0.050701, 0.243361;;, + 80;3;-1.261110,-0.050172, 0.243361;;, + 81;3;-1.178326,-0.049613, 0.243361;;, + 82;3;-1.092027,-0.049030, 0.243361;;, + 83;3;-1.003328,-0.048430, 0.243361;;, + 84;3;-0.913410,-0.047823, 0.243361;;, + 85;3;-0.823492,-0.047215, 0.243361;;, + 86;3;-0.734793,-0.046616, 0.243361;;, + 87;3;-0.648494,-0.046032, 0.243361;;, + 88;3;-0.565710,-0.045473, 0.243361;;, + 89;3;-0.487459,-0.044944, 0.243361;;, + 90;3;-0.414642,-0.044452, 0.243361;;, + 91;3;-0.348033,-0.044002, 0.243361;;, + 92;3;-0.288267,-0.043598, 0.243361;;, + 93;3;-0.235850,-0.043244, 0.243361;;, + 94;3;-0.191158,-0.042942, 0.243361;;, + 95;3;-0.154452,-0.042694, 0.243361;;, + 96;3;-0.125888,-0.042501, 0.243361;;, + 97;3;-0.105533,-0.042363, 0.243361;;, + 98;3;-0.093377,-0.042281, 0.243361;;, + 99;3;-0.089351,-0.042254, 0.243361;;, + 100;3;-0.089351,-0.042254, 0.243361;;, + 101;3;-0.089351,-0.042254, 0.243361;;, + 102;3;-0.089351,-0.042254, 0.243361;;, + 103;3;-0.089351,-0.042254, 0.243361;;, + 104;3;-0.089351,-0.042254, 0.243361;;, + 105;3;-0.089351,-0.042254, 0.243361;;, + 106;3;-0.089351,-0.042254, 0.243361;;, + 107;3;-0.089351,-0.042254, 0.243361;;, + 108;3;-0.089351,-0.042254, 0.243361;;, + 109;3;-0.089351,-0.042254, 0.243361;;, + 110;3;-0.089351,-0.042254, 0.243361;;, + 111;3;-0.089351,-0.042254, 0.243361;;, + 112;3;-0.089351,-0.042254, 0.243361;;, + 113;3;-0.089351,-0.042254, 0.243361;;, + 114;3;-0.089351,-0.042254, 0.243361;;, + 115;3;-0.089351,-0.042254, 0.243361;;, + 116;3;-0.089351,-0.042254, 0.243361;;, + 117;3;-0.089351,-0.042254, 0.243361;;, + 118;3;-0.089351,-0.042254, 0.243361;;, + 119;3;-0.089351,-0.042254, 0.243361;;, + 120;3;-0.089351,-0.042254, 0.243361;;, + 121;3;-0.089351,-0.042254, 0.243361;;, + 122;3;-0.089351,-0.042254, 0.243361;;, + 123;3;-0.089351,-0.042254, 0.243361;;, + 124;3;-0.089351,-0.042254, 0.243361;;, + 125;3;-0.089351,-0.042254, 0.243361;;, + 126;3;-0.089351,-0.042254, 0.243361;;, + 127;3;-0.089351,-0.042254, 0.243361;;, + 128;3;-0.089351,-0.042254, 0.243361;;, + 129;3;-0.089351,-0.042254, 0.243361;;, + 130;3;-0.089351,-0.042254, 0.243361;;, + 131;3;-0.089351,-0.042254, 0.243361;;, + 132;3;-0.089351,-0.042254, 0.243361;;, + 133;3;-0.089351,-0.042254, 0.243361;;, + 134;3;-0.089351,-0.042254, 0.243361;;, + 135;3;-0.089351,-0.042254, 0.243361;;, + 136;3;-0.089351,-0.042254, 0.243361;;, + 137;3;-0.089351,-0.042254, 0.243361;;, + 138;3;-0.089351,-0.042254, 0.243361;;, + 139;3;-0.089351,-0.042254, 0.243361;;, + 140;3;-0.089351,-0.042254, 0.243361;;, + 141;3;-0.089351,-0.042254, 0.243361;;, + 142;3;-0.089351,-0.042254, 0.243361;;, + 143;3;-0.089351,-0.042254, 0.243361;;, + 144;3;-0.089351,-0.042254, 0.243361;;, + 145;3;-0.089351,-0.042254, 0.243361;;, + 146;3;-0.089351,-0.042254, 0.243361;;, + 147;3;-0.089351,-0.042254, 0.243361;;, + 148;3;-0.089351,-0.042254, 0.243361;;, + 149;3;-0.089351,-0.042254, 0.243361;;, + 150;3;-0.089351,-0.042254, 0.243361;;, + 151;3;-0.089351,-0.042254, 0.243361;;, + 152;3;-0.089351,-0.042254, 0.243361;;, + 153;3;-0.089351,-0.042254, 0.243361;;, + 154;3;-0.089351,-0.042254, 0.243361;;, + 155;3;-0.089351,-0.042254, 0.243361;;, + 156;3;-0.089351,-0.042254, 0.243361;;, + 157;3;-0.089351,-0.042254, 0.243361;;, + 158;3;-0.089351,-0.042254, 0.243361;;, + 159;3;-0.089351,-0.042254, 0.243361;;, + 160;3;-0.089351,-0.042254, 0.243361;;, + 161;3;-0.089351,-0.042254, 0.243361;;, + 162;3;-0.089351,-0.042254, 0.243361;;, + 163;3;-0.089351,-0.042254, 0.243361;;, + 164;3;-0.089351,-0.042254, 0.243361;;, + 165;3;-0.089351,-0.042254, 0.243361;;, + 166;3;-0.089351,-0.042254, 0.243361;;, + 167;3;-0.089351,-0.042254, 0.243361;;, + 168;3;-0.089351,-0.042254, 0.243361;;, + 169;3;-0.089351,-0.042254, 0.243361;;, + 170;3;-0.089351,-0.042254, 0.243361;;, + 171;3;-0.089351,-0.042254, 0.243361;;, + 172;3;-0.089351,-0.042254, 0.243361;;, + 173;3;-0.089351,-0.042254, 0.243361;;, + 174;3;-0.089351,-0.042254, 0.243361;;, + 175;3;-0.089351,-0.042254, 0.243361;;, + 176;3;-0.089351,-0.042254, 0.243361;;, + 177;3;-0.089351,-0.042254, 0.243361;;, + 178;3;-0.089351,-0.042254, 0.243361;;, + 179;3;-0.089351,-0.042254, 0.243361;;, + 180;3;-0.089351,-0.042254, 0.243361;;, + 181;3;-0.089351,-0.042254, 0.243361;;, + 182;3;-0.089351,-0.042254, 0.243361;;, + 183;3;-0.089351,-0.042254, 0.243361;;, + 184;3;-0.089351,-0.042254, 0.243361;;, + 185;3;-0.089351,-0.042254, 0.243361;;, + 186;3;-0.089351,-0.042254, 0.243361;;, + 187;3;-0.089351,-0.042254, 0.243361;;, + 188;3;-0.089351,-0.042254, 0.243361;;, + 189;3;-0.089351,-0.042254, 0.243361;;, + 190;3;-0.089351,-0.042254, 0.243361;;, + 191;3;-0.089351,-0.042254, 0.243361;;, + 192;3;-0.089351,-0.042254, 0.243361;;, + 193;3;-0.089351,-0.042254, 0.243361;;, + 194;3;-0.089351,-0.042254, 0.243361;;, + 195;3;-0.089351,-0.042254, 0.243361;;, + 196;3;-0.089351,-0.042254, 0.243361;;, + 197;3;-0.089351,-0.042254, 0.243361;;, + 198;3;-0.089351,-0.042254, 0.243361;;, + 199;3;-0.089351,-0.042254, 0.243361;;, + 200;3;-0.089351,-0.042254, 0.243361;;, + 201;3;-0.089351,-0.042254, 0.243361;;, + 202;3;-0.089351,-0.042254, 0.243361;;, + 203;3;-0.089351,-0.042254, 0.243361;;, + 204;3;-0.089351,-0.042254, 0.243361;;, + 205;3;-0.089351,-0.042254, 0.243361;;, + 206;3;-0.089351,-0.042254, 0.243361;;, + 207;3;-0.089351,-0.042254, 0.243361;;, + 208;3;-0.089351,-0.042254, 0.243361;;, + 209;3;-0.089351,-0.042254, 0.243361;;, + 210;3;-0.089351,-0.042254, 0.243361;;, + 211;3;-0.089351,-0.042254, 0.243361;;, + 212;3;-0.089351,-0.042254, 0.243361;;, + 213;3;-0.089351,-0.042254, 0.243361;;, + 214;3;-0.089351,-0.042254, 0.243361;;, + 215;3;-0.089351,-0.042254, 0.243361;;, + 216;3;-0.089351,-0.042254, 0.243361;;, + 217;3;-0.089351,-0.042254, 0.243361;;, + 218;3;-0.089351,-0.042254, 0.243361;;, + 219;3;-0.089351,-0.042254, 0.243361;;, + 220;3;-0.089351,-0.042254, 0.243361;;, + 221;3;-0.089351,-0.042254, 0.243361;;, + 222;3;-0.089351,-0.042254, 0.243361;;, + 223;3;-0.089351,-0.042254, 0.243361;;, + 224;3;-0.089351,-0.042254, 0.243361;;, + 225;3;-0.089351,-0.042254, 0.243361;;, + 226;3;-0.089351,-0.042254, 0.243361;;, + 227;3;-0.089351,-0.042254, 0.243361;;, + 228;3;-0.089351,-0.042254, 0.243361;;, + 229;3;-0.089351,-0.042254, 0.243361;;, + 230;3;-0.089351,-0.042254, 0.243361;;, + 231;3;-0.089351,-0.042254, 0.243361;;, + 232;3;-0.089351,-0.042254, 0.243361;;, + 233;3;-0.089351,-0.042254, 0.243361;;, + 234;3;-0.089351,-0.042254, 0.243361;;, + 235;3;-0.089351,-0.042254, 0.243361;;, + 236;3;-0.089351,-0.042254, 0.243361;;, + 237;3;-0.089351,-0.042254, 0.243361;;, + 238;3;-0.089351,-0.042254, 0.243361;;, + 239;3;-0.089351,-0.042254, 0.243361;;, + 240;3;-0.089351,-0.042254, 0.243361;;, + 241;3;-0.089351,-0.042254, 0.243361;;, + 242;3;-0.089351,-0.042254, 0.243361;;, + 243;3;-0.089351,-0.042254, 0.243361;;, + 244;3;-0.089351,-0.042254, 0.243361;;, + 245;3;-0.089351,-0.042254, 0.243361;;, + 246;3;-0.089351,-0.042254, 0.243361;;, + 247;3;-0.089351,-0.042254, 0.243361;;, + 248;3;-0.089351,-0.042254, 0.243361;;, + 249;3;-0.089351,-0.042254, 0.243361;;; + } + } + Animation { + {Armature_Bone_002} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 1;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 2;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 3;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 4;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 5;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 6;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 7;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 8;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 9;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 10;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 11;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 12;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 13;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 14;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 15;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 16;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 17;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 18;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 19;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 20;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 21;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 22;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 23;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 24;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 25;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 26;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 27;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 28;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 29;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 30;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 31;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 32;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 33;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 34;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 35;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 36;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 37;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 38;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 39;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 40;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 41;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 42;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 43;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 44;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 45;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 46;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 47;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 48;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 49;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 50;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 51;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 52;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 53;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 54;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 55;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 56;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 57;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 58;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 59;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 60;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 61;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 62;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 63;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 64;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 65;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 66;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 67;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 68;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 69;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 70;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 71;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 72;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 73;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 74;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 75;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 76;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 77;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 78;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 79;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 80;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 81;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 82;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 83;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 84;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 85;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 86;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 87;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 88;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 89;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 90;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 91;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 92;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 93;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 94;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 95;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 96;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 97;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 98;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 99;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 100;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 101;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 102;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 103;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 104;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 105;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 106;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 107;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 108;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 109;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 110;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 111;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 112;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 113;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 114;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 115;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 116;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 117;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 118;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 119;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 120;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 121;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 122;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 123;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 124;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 125;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 126;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 127;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 128;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 129;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 130;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 131;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 132;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 133;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 134;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 135;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 136;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 137;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 138;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 139;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 140;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 141;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 142;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 143;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 144;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 145;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 146;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 147;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 148;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 149;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 150;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 151;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 152;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 153;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 154;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 155;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 156;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 157;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 158;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 159;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 160;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 161;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 162;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 163;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 164;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 165;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 166;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 167;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 168;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 169;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 170;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 171;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 172;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 173;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 174;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 175;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 176;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 177;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 178;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 179;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 180;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 181;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 182;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 183;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 184;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 185;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 186;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 187;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 188;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 189;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 190;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 191;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 192;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 193;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 194;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 195;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 196;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 197;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 198;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 199;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 200;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 201;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 202;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 203;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 204;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 205;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 206;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 207;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 208;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 209;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 210;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 211;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 212;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 213;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 214;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 215;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 216;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 217;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 218;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 219;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 220;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 221;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 222;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 223;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 224;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 225;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 226;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 227;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 228;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 229;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 230;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 231;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 232;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 233;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 234;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 235;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 236;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 237;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 238;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 239;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 240;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 241;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 242;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 243;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 244;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 245;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 246;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 247;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 248;4;-0.617393, 0.000000, 0.000000,-0.786655;;, + 249;4;-0.617393, 0.000000, 0.000000,-0.786655;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3; 0.000000, 0.705560, 0.000000;;, + 1;3; 0.000000, 0.705560, 0.000000;;, + 2;3; 0.000000, 0.705560, 0.000000;;, + 3;3; 0.000000, 0.705560, 0.000000;;, + 4;3; 0.000000, 0.705560, 0.000000;;, + 5;3; 0.000000, 0.705560, 0.000000;;, + 6;3; 0.000000, 0.705560, 0.000000;;, + 7;3; 0.000000, 0.705560, 0.000000;;, + 8;3; 0.000000, 0.705560, 0.000000;;, + 9;3; 0.000000, 0.705560, 0.000000;;, + 10;3; 0.000000, 0.705560, 0.000000;;, + 11;3; 0.000000, 0.705560, 0.000000;;, + 12;3; 0.000000, 0.705560, 0.000000;;, + 13;3; 0.000000, 0.705560, 0.000000;;, + 14;3; 0.000000, 0.705560, 0.000000;;, + 15;3; 0.000000, 0.705560, 0.000000;;, + 16;3; 0.000000, 0.705560, 0.000000;;, + 17;3; 0.000000, 0.705560, 0.000000;;, + 18;3; 0.000000, 0.705560, 0.000000;;, + 19;3; 0.000000, 0.705560, 0.000000;;, + 20;3; 0.000000, 0.705560, 0.000000;;, + 21;3; 0.000000, 0.705560, 0.000000;;, + 22;3; 0.000000, 0.705560, 0.000000;;, + 23;3; 0.000000, 0.705560, 0.000000;;, + 24;3; 0.000000, 0.705560, 0.000000;;, + 25;3; 0.000000, 0.705560, 0.000000;;, + 26;3; 0.000000, 0.705560, 0.000000;;, + 27;3; 0.000000, 0.705560, 0.000000;;, + 28;3; 0.000000, 0.705560, 0.000000;;, + 29;3; 0.000000, 0.705560, 0.000000;;, + 30;3; 0.000000, 0.705560, 0.000000;;, + 31;3; 0.000000, 0.705560, 0.000000;;, + 32;3; 0.000000, 0.705560, 0.000000;;, + 33;3; 0.000000, 0.705560, 0.000000;;, + 34;3; 0.000000, 0.705560, 0.000000;;, + 35;3; 0.000000, 0.705560, 0.000000;;, + 36;3; 0.000000, 0.705560, 0.000000;;, + 37;3; 0.000000, 0.705560, 0.000000;;, + 38;3; 0.000000, 0.705560, 0.000000;;, + 39;3; 0.000000, 0.705560, 0.000000;;, + 40;3; 0.000000, 0.705560, 0.000000;;, + 41;3; 0.000000, 0.705559, 0.000000;;, + 42;3;-0.000000, 0.705560, 0.000000;;, + 43;3; 0.000000, 0.705560,-0.000000;;, + 44;3; 0.000000, 0.705560, 0.000000;;, + 45;3; 0.000000, 0.705560,-0.000000;;, + 46;3; 0.000000, 0.705559, 0.000000;;, + 47;3;-0.000000, 0.705560, 0.000000;;, + 48;3; 0.000000, 0.705560,-0.000000;;, + 49;3; 0.000000, 0.705560, 0.000000;;, + 50;3;-0.000000, 0.705559, 0.000000;;, + 51;3; 0.000000, 0.705560,-0.000000;;, + 52;3;-0.000000, 0.705560, 0.000000;;, + 53;3; 0.000000, 0.705560,-0.000000;;, + 54;3; 0.000000, 0.705560, 0.000000;;, + 55;3; 0.000000, 0.705560,-0.000000;;, + 56;3;-0.000000, 0.705560, 0.000000;;, + 57;3; 0.000000, 0.705559, 0.000000;;, + 58;3;-0.000000, 0.705560, 0.000000;;, + 59;3; 0.000000, 0.705560, 0.000000;;, + 60;3; 0.000000, 0.705560,-0.000000;;, + 61;3; 0.000000, 0.705560, 0.000000;;, + 62;3; 0.000000, 0.705560, 0.000000;;, + 63;3; 0.000000, 0.705560, 0.000000;;, + 64;3; 0.000000, 0.705560,-0.000000;;, + 65;3;-0.000000, 0.705560, 0.000000;;, + 66;3; 0.000000, 0.705560, 0.000000;;, + 67;3;-0.000000, 0.705560, 0.000000;;, + 68;3; 0.000000, 0.705559, 0.000000;;, + 69;3; 0.000000, 0.705560, 0.000000;;, + 70;3; 0.000000, 0.705560, 0.000000;;, + 71;3;-0.000000, 0.705560, 0.000000;;, + 72;3;-0.000000, 0.705560, 0.000000;;, + 73;3;-0.000000, 0.705560, 0.000000;;, + 74;3;-0.000000, 0.705560, 0.000000;;, + 75;3;-0.000000, 0.705560, 0.000000;;, + 76;3; 0.000000, 0.705559, 0.000000;;, + 77;3;-0.000000, 0.705560, 0.000000;;, + 78;3; 0.000000, 0.705560, 0.000000;;, + 79;3;-0.000000, 0.705559, 0.000000;;, + 80;3; 0.000000, 0.705560, 0.000000;;, + 81;3;-0.000000, 0.705560, 0.000000;;, + 82;3; 0.000000, 0.705560, 0.000000;;, + 83;3; 0.000000, 0.705560, 0.000000;;, + 84;3; 0.000000, 0.705560,-0.000000;;, + 85;3;-0.000000, 0.705560, 0.000000;;, + 86;3;-0.000000, 0.705560, 0.000000;;, + 87;3; 0.000000, 0.705560,-0.000000;;, + 88;3; 0.000000, 0.705560, 0.000000;;, + 89;3; 0.000000, 0.705560, 0.000000;;, + 90;3; 0.000000, 0.705560, 0.000000;;, + 91;3; 0.000000, 0.705560, 0.000000;;, + 92;3; 0.000000, 0.705560, 0.000000;;, + 93;3; 0.000000, 0.705560, 0.000000;;, + 94;3; 0.000000, 0.705560, 0.000000;;, + 95;3; 0.000000, 0.705560, 0.000000;;, + 96;3; 0.000000, 0.705560,-0.000000;;, + 97;3; 0.000000, 0.705560,-0.000000;;, + 98;3; 0.000000, 0.705560, 0.000000;;, + 99;3; 0.000000, 0.705560, 0.000000;;, + 100;3;-0.000000, 0.705560,-0.000000;;, + 101;3; 0.000000, 0.705560,-0.000000;;, + 102;3; 0.000000, 0.705559, 0.000000;;, + 103;3;-0.000000, 0.705560,-0.000000;;, + 104;3;-0.000000, 0.705559,-0.000000;;, + 105;3;-0.000000, 0.705560,-0.000000;;, + 106;3; 0.000000, 0.705560, 0.000000;;, + 107;3;-0.000000, 0.705559,-0.000000;;, + 108;3; 0.000000, 0.705560,-0.000000;;, + 109;3; 0.000000, 0.705559,-0.000000;;, + 110;3;-0.000000, 0.705559, 0.000000;;, + 111;3; 0.000000, 0.705560,-0.000000;;, + 112;3; 0.000000, 0.705560, 0.000000;;, + 113;3; 0.000000, 0.705560,-0.000000;;, + 114;3;-0.000000, 0.705559, 0.000000;;, + 115;3; 0.000000, 0.705560, 0.000000;;, + 116;3;-0.000000, 0.705560,-0.000000;;, + 117;3; 0.000000, 0.705560, 0.000000;;, + 118;3; 0.000000, 0.705560,-0.000000;;, + 119;3; 0.000000, 0.705560, 0.000000;;, + 120;3; 0.000000, 0.705560,-0.000000;;, + 121;3; 0.000000, 0.705560,-0.000000;;, + 122;3;-0.000000, 0.705560,-0.000000;;, + 123;3; 0.000000, 0.705560, 0.000000;;, + 124;3; 0.000000, 0.705560, 0.000000;;, + 125;3; 0.000000, 0.705560, 0.000000;;, + 126;3;-0.000000, 0.705560, 0.000000;;, + 127;3;-0.000000, 0.705560, 0.000000;;, + 128;3;-0.000000, 0.705560,-0.000000;;, + 129;3; 0.000000, 0.705560, 0.000000;;, + 130;3; 0.000000, 0.705559, 0.000000;;, + 131;3; 0.000000, 0.705560, 0.000000;;, + 132;3; 0.000000, 0.705560, 0.000000;;, + 133;3; 0.000000, 0.705560,-0.000000;;, + 134;3; 0.000000, 0.705560, 0.000000;;, + 135;3; 0.000000, 0.705560, 0.000000;;, + 136;3;-0.000000, 0.705560,-0.000000;;, + 137;3; 0.000000, 0.705560, 0.000000;;, + 138;3;-0.000000, 0.705559, 0.000000;;, + 139;3;-0.000000, 0.705560,-0.000000;;, + 140;3; 0.000000, 0.705560, 0.000000;;, + 141;3; 0.000000, 0.705560, 0.000000;;, + 142;3; 0.000000, 0.705560, 0.000000;;, + 143;3; 0.000000, 0.705560,-0.000000;;, + 144;3; 0.000000, 0.705560, 0.000000;;, + 145;3; 0.000000, 0.705560,-0.000000;;, + 146;3; 0.000000, 0.705560, 0.000000;;, + 147;3; 0.000000, 0.705560,-0.000000;;, + 148;3; 0.000000, 0.705560, 0.000000;;, + 149;3; 0.000000, 0.705560, 0.000000;;, + 150;3; 0.000000, 0.705560, 0.000000;;, + 151;3; 0.000000, 0.705560, 0.000000;;, + 152;3; 0.000000, 0.705560, 0.000000;;, + 153;3; 0.000000, 0.705560, 0.000000;;, + 154;3; 0.000000, 0.705560, 0.000000;;, + 155;3; 0.000000, 0.705560, 0.000000;;, + 156;3; 0.000000, 0.705560, 0.000000;;, + 157;3; 0.000000, 0.705560, 0.000000;;, + 158;3; 0.000000, 0.705560, 0.000000;;, + 159;3; 0.000000, 0.705560, 0.000000;;, + 160;3; 0.000000, 0.705560, 0.000000;;, + 161;3; 0.000000, 0.705560, 0.000000;;, + 162;3; 0.000000, 0.705560, 0.000000;;, + 163;3; 0.000000, 0.705560, 0.000000;;, + 164;3; 0.000000, 0.705560, 0.000000;;, + 165;3; 0.000000, 0.705560, 0.000000;;, + 166;3; 0.000000, 0.705560, 0.000000;;, + 167;3; 0.000000, 0.705560, 0.000000;;, + 168;3; 0.000000, 0.705560, 0.000000;;, + 169;3; 0.000000, 0.705560, 0.000000;;, + 170;3; 0.000000, 0.705560, 0.000000;;, + 171;3; 0.000000, 0.705560, 0.000000;;, + 172;3; 0.000000, 0.705560, 0.000000;;, + 173;3; 0.000000, 0.705560, 0.000000;;, + 174;3; 0.000000, 0.705560, 0.000000;;, + 175;3; 0.000000, 0.705560, 0.000000;;, + 176;3; 0.000000, 0.705560, 0.000000;;, + 177;3; 0.000000, 0.705560, 0.000000;;, + 178;3; 0.000000, 0.705560, 0.000000;;, + 179;3; 0.000000, 0.705560, 0.000000;;, + 180;3; 0.000000, 0.705560, 0.000000;;, + 181;3; 0.000000, 0.705560, 0.000000;;, + 182;3; 0.000000, 0.705560, 0.000000;;, + 183;3; 0.000000, 0.705560, 0.000000;;, + 184;3; 0.000000, 0.705560, 0.000000;;, + 185;3; 0.000000, 0.705560, 0.000000;;, + 186;3; 0.000000, 0.705560, 0.000000;;, + 187;3; 0.000000, 0.705560, 0.000000;;, + 188;3; 0.000000, 0.705560, 0.000000;;, + 189;3; 0.000000, 0.705560, 0.000000;;, + 190;3; 0.000000, 0.705560, 0.000000;;, + 191;3; 0.000000, 0.705560, 0.000000;;, + 192;3; 0.000000, 0.705560, 0.000000;;, + 193;3; 0.000000, 0.705560, 0.000000;;, + 194;3; 0.000000, 0.705560, 0.000000;;, + 195;3; 0.000000, 0.705560, 0.000000;;, + 196;3; 0.000000, 0.705560, 0.000000;;, + 197;3; 0.000000, 0.705560, 0.000000;;, + 198;3; 0.000000, 0.705560, 0.000000;;, + 199;3; 0.000000, 0.705560, 0.000000;;, + 200;3; 0.000000, 0.705560, 0.000000;;, + 201;3; 0.000000, 0.705560, 0.000000;;, + 202;3; 0.000000, 0.705560, 0.000000;;, + 203;3; 0.000000, 0.705560, 0.000000;;, + 204;3; 0.000000, 0.705560, 0.000000;;, + 205;3; 0.000000, 0.705560, 0.000000;;, + 206;3; 0.000000, 0.705560, 0.000000;;, + 207;3; 0.000000, 0.705560, 0.000000;;, + 208;3; 0.000000, 0.705560, 0.000000;;, + 209;3; 0.000000, 0.705560, 0.000000;;, + 210;3; 0.000000, 0.705560, 0.000000;;, + 211;3; 0.000000, 0.705560, 0.000000;;, + 212;3; 0.000000, 0.705560, 0.000000;;, + 213;3; 0.000000, 0.705560, 0.000000;;, + 214;3; 0.000000, 0.705560, 0.000000;;, + 215;3; 0.000000, 0.705560, 0.000000;;, + 216;3; 0.000000, 0.705560, 0.000000;;, + 217;3; 0.000000, 0.705560, 0.000000;;, + 218;3; 0.000000, 0.705560, 0.000000;;, + 219;3; 0.000000, 0.705560, 0.000000;;, + 220;3; 0.000000, 0.705560, 0.000000;;, + 221;3; 0.000000, 0.705560, 0.000000;;, + 222;3; 0.000000, 0.705560, 0.000000;;, + 223;3; 0.000000, 0.705560, 0.000000;;, + 224;3; 0.000000, 0.705560, 0.000000;;, + 225;3; 0.000000, 0.705560, 0.000000;;, + 226;3; 0.000000, 0.705560, 0.000000;;, + 227;3; 0.000000, 0.705560, 0.000000;;, + 228;3; 0.000000, 0.705560, 0.000000;;, + 229;3; 0.000000, 0.705560, 0.000000;;, + 230;3; 0.000000, 0.705560, 0.000000;;, + 231;3; 0.000000, 0.705560, 0.000000;;, + 232;3; 0.000000, 0.705560, 0.000000;;, + 233;3; 0.000000, 0.705560, 0.000000;;, + 234;3; 0.000000, 0.705560, 0.000000;;, + 235;3; 0.000000, 0.705560, 0.000000;;, + 236;3; 0.000000, 0.705560, 0.000000;;, + 237;3; 0.000000, 0.705560, 0.000000;;, + 238;3; 0.000000, 0.705560, 0.000000;;, + 239;3; 0.000000, 0.705560, 0.000000;;, + 240;3; 0.000000, 0.705560, 0.000000;;, + 241;3; 0.000000, 0.705560, 0.000000;;, + 242;3; 0.000000, 0.705560, 0.000000;;, + 243;3; 0.000000, 0.705560, 0.000000;;, + 244;3; 0.000000, 0.705560, 0.000000;;, + 245;3; 0.000000, 0.705560, 0.000000;;, + 246;3; 0.000000, 0.705560, 0.000000;;, + 247;3; 0.000000, 0.705560, 0.000000;;, + 248;3; 0.000000, 0.705560, 0.000000;;, + 249;3; 0.000000, 0.705560, 0.000000;;; + } + } + Animation { + {Armature_Bone_022} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 1;4;-0.829327,-0.545780,-0.065796, 0.099978;;, + 2;4;-0.828780,-0.546566,-0.065890, 0.099912;;, + 3;4;-0.827866,-0.547879,-0.066049, 0.099802;;, + 4;4;-0.826593,-0.549709,-0.066269, 0.099649;;, + 5;4;-0.824980,-0.552029,-0.066549, 0.099454;;, + 6;4;-0.823058,-0.554791,-0.066882, 0.099222;;, + 7;4;-0.820874,-0.557930,-0.067260, 0.098959;;, + 8;4;-0.818490,-0.561356,-0.067673, 0.098672;;, + 9;4;-0.815980,-0.564964,-0.068108, 0.098369;;, + 10;4;-0.813428,-0.568633,-0.068551, 0.098061;;, + 11;4;-0.810918,-0.572240,-0.068985, 0.097759;;, + 12;4;-0.808534,-0.575667,-0.069398, 0.097471;;, + 13;4;-0.806351,-0.578805,-0.069777, 0.097208;;, + 14;4;-0.804429,-0.581568,-0.070110, 0.096977;;, + 15;4;-0.802815,-0.583888,-0.070390, 0.096782;;, + 16;4;-0.801542,-0.585717,-0.070610, 0.096629;;, + 17;4;-0.800628,-0.587031,-0.070768, 0.096518;;, + 18;4;-0.800081,-0.587817,-0.070863, 0.096452;;, + 19;4;-0.799901,-0.588077,-0.070895, 0.096431;;, + 20;4;-0.800056,-0.588027,-0.070889, 0.096449;;, + 21;4;-0.800526,-0.587863,-0.070869, 0.096506;;, + 22;4;-0.801312,-0.587564,-0.070833, 0.096601;;, + 23;4;-0.802412,-0.587105,-0.070777, 0.096733;;, + 24;4;-0.803812,-0.586460,-0.070700, 0.096902;;, + 25;4;-0.805490,-0.585601,-0.070596, 0.097104;;, + 26;4;-0.807414,-0.584503,-0.070464, 0.097336;;, + 27;4;-0.809538,-0.583140,-0.070299, 0.097592;;, + 28;4;-0.811807,-0.581494,-0.070101, 0.097866;;, + 29;4;-0.814158,-0.579549,-0.069867, 0.098149;;, + 30;4;-0.816521,-0.577301,-0.069595, 0.098434;;, + 31;4;-0.818829,-0.574749,-0.069288, 0.098713;;, + 32;4;-0.821017,-0.571904,-0.068945, 0.098976;;, + 33;4;-0.823027,-0.568782,-0.068569, 0.099219;;, + 34;4;-0.824814,-0.565403,-0.068161, 0.099434;;, + 35;4;-0.826341,-0.561792,-0.067726, 0.099618;;, + 36;4;-0.827584,-0.557973,-0.067265, 0.099768;;, + 37;4;-0.828530,-0.553972,-0.066783, 0.099882;;, + 38;4;-0.829171,-0.549814,-0.066282, 0.099959;;, + 39;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 40;4;-0.829689,-0.540963,-0.063299, 0.100028;;, + 41;4;-0.829855,-0.536009,-0.056911, 0.100099;;, + 42;4;-0.829999,-0.530678,-0.046585, 0.100261;;, + 43;4;-0.830112,-0.525002,-0.032390, 0.100579;;, + 44;4;-0.830186,-0.519031,-0.014499, 0.101122;;, + 45;4;-0.830208,-0.512830, 0.006789, 0.101972;;, + 46;4;-0.830169,-0.506481, 0.031034, 0.103216;;, + 47;4;-0.830056,-0.500084, 0.057651, 0.104945;;, + 48;4;-0.829860,-0.493753, 0.085923, 0.107247;;, + 49;4;-0.829572,-0.487606, 0.115033, 0.110201;;, + 50;4;-0.829183,-0.481763, 0.144106, 0.113873;;, + 51;4;-0.828690,-0.476337, 0.172269, 0.118309;;, + 52;4;-0.828092,-0.471423, 0.198707, 0.123535;;, + 53;4;-0.827389,-0.467098, 0.222708, 0.129553;;, + 54;4;-0.826586,-0.463417, 0.243692, 0.136347;;, + 55;4;-0.825686,-0.460412, 0.261226, 0.143887;;, + 56;4;-0.824698,-0.458096, 0.275016, 0.152128;;, + 57;4;-0.823629,-0.456467, 0.284895, 0.161023;;, + 58;4;-0.822485,-0.455507, 0.290802, 0.170516;;, + 59;4;-0.821275,-0.455194, 0.292755, 0.180555;;, + 60;4;-0.815954,-0.459491, 0.291027, 0.193613;;, + 61;4;-0.802452,-0.472421, 0.285827, 0.212089;;, + 62;4;-0.781314,-0.493445, 0.277371, 0.235364;;, + 63;4;-0.754119,-0.520943, 0.266311, 0.262054;;, + 64;4;-0.723591,-0.552093, 0.253782, 0.289973;;, + 65;4;-0.693235,-0.583244, 0.241253, 0.316463;;, + 66;4;-0.666539,-0.610742, 0.230193, 0.339009;;, + 67;4;-0.646183,-0.631766, 0.221737, 0.355800;;, + 68;4;-0.633687,-0.644696, 0.216536, 0.365930;;, + 69;4;-0.629540,-0.648993, 0.214808, 0.369250;;, + 70;4;-0.629990,-0.648519, 0.214998, 0.368945;;, + 71;4;-0.631348,-0.647090, 0.215573, 0.368016;;, + 72;4;-0.633624,-0.644696, 0.216536, 0.366447;;, + 73;4;-0.636821,-0.641337, 0.217887, 0.364226;;, + 74;4;-0.640932,-0.637021, 0.219623, 0.361343;;, + 75;4;-0.645942,-0.631766, 0.221737, 0.357793;;, + 76;4;-0.651825,-0.625602, 0.224216, 0.353580;;, + 77;4;-0.658540,-0.618575, 0.227042, 0.348712;;, + 78;4;-0.666033,-0.610742, 0.230193, 0.343208;;, + 79;4;-0.674236,-0.602180, 0.233636, 0.337095;;, + 80;4;-0.683065,-0.592979, 0.237337, 0.330409;;, + 81;4;-0.692423,-0.583244, 0.241253, 0.323198;;, + 82;4;-0.702197,-0.573097, 0.245334, 0.315516;;, + 83;4;-0.712267,-0.562667, 0.249529, 0.307430;;, + 84;4;-0.722501,-0.552093, 0.253782, 0.299011;;, + 85;4;-0.732767,-0.541520, 0.258034, 0.290336;;, + 86;4;-0.742928,-0.531090, 0.262229, 0.281485;;, + 87;4;-0.752855,-0.520943, 0.266311, 0.272538;;, + 88;4;-0.762424,-0.511208, 0.270226, 0.263576;;, + 89;4;-0.771520,-0.502007, 0.273927, 0.254673;;, + 90;4;-0.780044,-0.493445, 0.277371, 0.245899;;, + 91;4;-0.787909,-0.485612, 0.280521, 0.237316;;, + 92;4;-0.795042,-0.478584, 0.283348, 0.228981;;, + 93;4;-0.801385,-0.472421, 0.285827, 0.220940;;, + 94;4;-0.806897,-0.467166, 0.287940, 0.213232;;, + 95;4;-0.811546,-0.462849, 0.289676, 0.205889;;, + 96;4;-0.815313,-0.459491, 0.291027, 0.198935;;, + 97;4;-0.818189,-0.457097, 0.291990, 0.192387;;, + 98;4;-0.820175,-0.455668, 0.292565, 0.186258;;, + 99;4;-0.821275,-0.455194, 0.292755, 0.180555;;, + 100;4;-0.821937,-0.455692, 0.290780, 0.174994;;, + 101;4;-0.822599,-0.457197, 0.284807, 0.169304;;, + 102;4;-0.823256,-0.459713, 0.274821, 0.163512;;, + 103;4;-0.823905,-0.463223, 0.260887, 0.157652;;, + 104;4;-0.824540,-0.467685, 0.243178, 0.151771;;, + 105;4;-0.825158,-0.473022, 0.221994, 0.145921;;, + 106;4;-0.825752,-0.479123, 0.197779, 0.140168;;, + 107;4;-0.826316,-0.485838, 0.171123, 0.134581;;, + 108;4;-0.826843,-0.492986, 0.142753, 0.129235;;, + 109;4;-0.827329,-0.500357, 0.113496, 0.124205;;, + 110;4;-0.827769,-0.507728, 0.084239, 0.119558;;, + 111;4;-0.828158,-0.514876, 0.055868, 0.115353;;, + 112;4;-0.828497,-0.521592, 0.029212, 0.111634;;, + 113;4;-0.828783,-0.527692, 0.004997, 0.108432;;, + 114;4;-0.829018,-0.533029,-0.016187, 0.105759;;, + 115;4;-0.829203,-0.537491,-0.033896, 0.103616;;, + 116;4;-0.829342,-0.541002,-0.047830, 0.101992;;, + 117;4;-0.829436,-0.543518,-0.057816, 0.100865;;, + 118;4;-0.829490,-0.545022,-0.063788, 0.100211;;, + 119;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 120;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 121;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 122;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 123;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 124;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 125;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 126;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 127;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 128;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 129;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 130;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 131;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 132;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 133;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 134;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 135;4;-0.842537,-0.515749,-0.062175, 0.101571;;, + 136;4;-0.879238,-0.430760,-0.051930, 0.105995;;, + 137;4;-0.926362,-0.318593,-0.038407, 0.111676;;, + 138;4;-0.963063,-0.225314,-0.027162, 0.116100;;, + 139;4;-0.976092,-0.181436,-0.021873, 0.117671;;, + 140;4;-0.955224,-0.166043,-0.029211, 0.164615;;, + 141;4;-0.896443,-0.152994,-0.053533, 0.296842;;, + 142;4;-0.820969,-0.143842,-0.085680, 0.466621;;, + 143;4;-0.762188,-0.139084,-0.111002, 0.598848;;, + 144;4;-0.741320,-0.137797,-0.120040, 0.645793;;, + 145;4;-0.749159,-0.174039,-0.115216, 0.597278;;, + 146;4;-0.771238,-0.276122,-0.101626, 0.460626;;, + 147;4;-0.799589,-0.407195,-0.084178, 0.285166;;, + 148;4;-0.821669,-0.509278,-0.070589, 0.148515;;, + 149;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 150;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 151;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 152;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 153;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 154;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 155;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 156;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 157;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 158;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 159;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 160;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 161;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 162;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 163;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 164;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 165;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 166;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 167;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 168;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 169;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 170;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 171;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 172;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 173;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 174;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 175;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 176;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 177;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 178;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 179;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 180;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 181;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 182;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 183;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 184;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 185;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 186;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 187;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 188;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 189;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 190;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 191;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 192;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 193;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 194;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 195;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 196;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 197;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 198;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 199;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 200;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 201;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 202;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 203;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 204;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 205;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 206;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 207;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 208;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 209;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 210;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 211;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 212;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 213;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 214;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 215;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 216;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 217;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 218;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 219;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 220;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 221;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 222;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 223;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 224;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 225;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 226;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 227;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 228;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 229;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 230;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 231;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 232;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 233;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 234;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 235;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 236;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 237;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 238;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 239;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 240;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 241;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 242;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 243;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 244;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 245;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 246;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 247;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 248;4;-0.829508,-0.545520,-0.065764, 0.100000;;, + 249;4;-0.829508,-0.545520,-0.065764, 0.100000;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3; 0.000000, 0.951083, 0.000000;;, + 1;3; 0.000000, 0.951083, 0.000000;;, + 2;3; 0.000000, 0.951083, 0.000000;;, + 3;3; 0.000000, 0.951083, 0.000000;;, + 4;3; 0.000000, 0.951083, 0.000000;;, + 5;3; 0.000000, 0.951083, 0.000000;;, + 6;3; 0.000000, 0.951083, 0.000000;;, + 7;3; 0.000000, 0.951083, 0.000000;;, + 8;3; 0.000000, 0.951083, 0.000000;;, + 9;3; 0.000000, 0.951083, 0.000000;;, + 10;3; 0.000000, 0.951083, 0.000000;;, + 11;3; 0.000000, 0.951083, 0.000000;;, + 12;3; 0.000000, 0.951083, 0.000000;;, + 13;3; 0.000000, 0.951083, 0.000000;;, + 14;3; 0.000000, 0.951083, 0.000000;;, + 15;3; 0.000000, 0.951083, 0.000000;;, + 16;3; 0.000000, 0.951083, 0.000000;;, + 17;3; 0.000000, 0.951083, 0.000000;;, + 18;3; 0.000000, 0.951083, 0.000000;;, + 19;3; 0.000000, 0.951083, 0.000000;;, + 20;3; 0.000000, 0.951083, 0.000000;;, + 21;3; 0.000000, 0.951083, 0.000000;;, + 22;3; 0.000000, 0.951083, 0.000000;;, + 23;3; 0.000000, 0.951083, 0.000000;;, + 24;3; 0.000000, 0.951083, 0.000000;;, + 25;3; 0.000000, 0.951083, 0.000000;;, + 26;3; 0.000000, 0.951083, 0.000000;;, + 27;3; 0.000000, 0.951083, 0.000000;;, + 28;3; 0.000000, 0.951083, 0.000000;;, + 29;3; 0.000000, 0.951083, 0.000000;;, + 30;3; 0.000000, 0.951083, 0.000000;;, + 31;3; 0.000000, 0.951083, 0.000000;;, + 32;3; 0.000000, 0.951083, 0.000000;;, + 33;3; 0.000000, 0.951083, 0.000000;;, + 34;3; 0.000000, 0.951083, 0.000000;;, + 35;3; 0.000000, 0.951083, 0.000000;;, + 36;3; 0.000000, 0.951083, 0.000000;;, + 37;3; 0.000000, 0.951083, 0.000000;;, + 38;3; 0.000000, 0.951083, 0.000000;;, + 39;3; 0.000000, 0.951083, 0.000000;;, + 40;3; 0.000000, 0.951083, 0.000000;;, + 41;3;-0.000000, 0.951083,-0.000000;;, + 42;3;-0.000000, 0.951083, 0.000000;;, + 43;3;-0.000000, 0.951083, 0.000000;;, + 44;3; 0.000000, 0.951083,-0.000000;;, + 45;3;-0.000000, 0.951083, 0.000000;;, + 46;3; 0.000000, 0.951083, 0.000000;;, + 47;3;-0.000000, 0.951083, 0.000000;;, + 48;3; 0.000000, 0.951083,-0.000000;;, + 49;3; 0.000000, 0.951083, 0.000000;;, + 50;3;-0.000000, 0.951083,-0.000000;;, + 51;3; 0.000000, 0.951083,-0.000000;;, + 52;3;-0.000000, 0.951083,-0.000000;;, + 53;3; 0.000000, 0.951083, 0.000000;;, + 54;3; 0.000000, 0.951083,-0.000000;;, + 55;3;-0.000000, 0.951083, 0.000000;;, + 56;3;-0.000000, 0.951083,-0.000000;;, + 57;3; 0.000000, 0.951083, 0.000000;;, + 58;3;-0.000000, 0.951083,-0.000000;;, + 59;3;-0.000000, 0.951083,-0.000000;;, + 60;3; 0.000000, 0.951083,-0.000000;;, + 61;3; 0.000000, 0.951083, 0.000000;;, + 62;3;-0.000000, 0.951083,-0.000000;;, + 63;3; 0.000000, 0.951083,-0.000000;;, + 64;3; 0.000000, 0.951083, 0.000000;;, + 65;3;-0.000000, 0.951083,-0.000000;;, + 66;3;-0.000000, 0.951083,-0.000000;;, + 67;3; 0.000000, 0.951083,-0.000000;;, + 68;3; 0.000000, 0.951083,-0.000000;;, + 69;3; 0.000000, 0.951083,-0.000000;;, + 70;3;-0.000000, 0.951083,-0.000000;;, + 71;3;-0.000000, 0.951083,-0.000000;;, + 72;3; 0.000000, 0.951083,-0.000000;;, + 73;3;-0.000000, 0.951083,-0.000000;;, + 74;3; 0.000000, 0.951083,-0.000000;;, + 75;3;-0.000000, 0.951083,-0.000000;;, + 76;3;-0.000000, 0.951083,-0.000000;;, + 77;3;-0.000000, 0.951083,-0.000000;;, + 78;3;-0.000000, 0.951083,-0.000000;;, + 79;3;-0.000000, 0.951083,-0.000000;;, + 80;3;-0.000000, 0.951083,-0.000000;;, + 81;3;-0.000000, 0.951083,-0.000000;;, + 82;3;-0.000000, 0.951083,-0.000000;;, + 83;3;-0.000000, 0.951083, 0.000000;;, + 84;3; 0.000000, 0.951083, 0.000000;;, + 85;3; 0.000000, 0.951083,-0.000000;;, + 86;3; 0.000000, 0.951083,-0.000000;;, + 87;3; 0.000000, 0.951083,-0.000000;;, + 88;3;-0.000000, 0.951083,-0.000000;;, + 89;3;-0.000000, 0.951083,-0.000000;;, + 90;3;-0.000000, 0.951083,-0.000000;;, + 91;3; 0.000000, 0.951083, 0.000000;;, + 92;3; 0.000000, 0.951083,-0.000000;;, + 93;3; 0.000000, 0.951083, 0.000000;;, + 94;3; 0.000000, 0.951083, 0.000000;;, + 95;3; 0.000000, 0.951083,-0.000000;;, + 96;3; 0.000000, 0.951083,-0.000000;;, + 97;3;-0.000000, 0.951083,-0.000000;;, + 98;3; 0.000000, 0.951083, 0.000000;;, + 99;3;-0.000000, 0.951083,-0.000000;;, + 100;3; 0.000000, 0.951083,-0.000000;;, + 101;3;-0.000000, 0.951083,-0.000000;;, + 102;3; 0.000000, 0.951083,-0.000000;;, + 103;3;-0.000000, 0.951083,-0.000000;;, + 104;3;-0.000000, 0.951083, 0.000000;;, + 105;3; 0.000000, 0.951083, 0.000000;;, + 106;3;-0.000000, 0.951083,-0.000000;;, + 107;3;-0.000000, 0.951083, 0.000000;;, + 108;3;-0.000000, 0.951083,-0.000000;;, + 109;3; 0.000000, 0.951083, 0.000000;;, + 110;3;-0.000000, 0.951083,-0.000000;;, + 111;3;-0.000000, 0.951083, 0.000000;;, + 112;3;-0.000000, 0.951083, 0.000000;;, + 113;3; 0.000000, 0.951083, 0.000000;;, + 114;3;-0.000000, 0.951083,-0.000000;;, + 115;3; 0.000000, 0.951083, 0.000000;;, + 116;3;-0.000000, 0.951083,-0.000000;;, + 117;3; 0.000000, 0.951083,-0.000000;;, + 118;3; 0.000000, 0.951083, 0.000000;;, + 119;3; 0.000000, 0.951083, 0.000000;;, + 120;3; 0.000000, 0.951083, 0.000000;;, + 121;3;-0.000000, 0.951083,-0.000000;;, + 122;3;-0.000000, 0.951083,-0.000000;;, + 123;3;-0.000000, 0.951083,-0.000000;;, + 124;3;-0.000000, 0.951083, 0.000000;;, + 125;3;-0.000000, 0.951083,-0.000000;;, + 126;3; 0.000000, 0.951083,-0.000000;;, + 127;3; 0.000000, 0.951083,-0.000000;;, + 128;3; 0.000000, 0.951083, 0.000000;;, + 129;3;-0.000000, 0.951083, 0.000000;;, + 130;3;-0.000000, 0.951083, 0.000000;;, + 131;3; 0.000000, 0.951083, 0.000000;;, + 132;3; 0.000000, 0.951083,-0.000000;;, + 133;3; 0.000000, 0.951083, 0.000000;;, + 134;3; 0.000000, 0.951083, 0.000000;;, + 135;3; 0.000000, 0.951083, 0.000000;;, + 136;3;-0.000000, 0.951083, 0.000000;;, + 137;3; 0.000000, 0.951083, 0.000000;;, + 138;3;-0.000000, 0.951083, 0.000000;;, + 139;3;-0.000000, 0.951083, 0.000000;;, + 140;3; 0.000000, 0.951083,-0.000000;;, + 141;3;-0.000000, 0.951083, 0.000000;;, + 142;3;-0.000000, 0.951083, 0.000000;;, + 143;3; 0.000000, 0.951083,-0.000000;;, + 144;3; 0.000000, 0.951083, 0.000000;;, + 145;3;-0.000000, 0.951083, 0.000000;;, + 146;3;-0.000000, 0.951083, 0.000000;;, + 147;3;-0.000000, 0.951083,-0.000000;;, + 148;3;-0.000000, 0.951083,-0.000000;;, + 149;3; 0.000000, 0.951083, 0.000000;;, + 150;3; 0.000000, 0.951083, 0.000000;;, + 151;3; 0.000000, 0.951083, 0.000000;;, + 152;3; 0.000000, 0.951083, 0.000000;;, + 153;3; 0.000000, 0.951083, 0.000000;;, + 154;3; 0.000000, 0.951083, 0.000000;;, + 155;3; 0.000000, 0.951083, 0.000000;;, + 156;3; 0.000000, 0.951083, 0.000000;;, + 157;3; 0.000000, 0.951083, 0.000000;;, + 158;3; 0.000000, 0.951083, 0.000000;;, + 159;3; 0.000000, 0.951083, 0.000000;;, + 160;3; 0.000000, 0.951083, 0.000000;;, + 161;3; 0.000000, 0.951083, 0.000000;;, + 162;3; 0.000000, 0.951083, 0.000000;;, + 163;3; 0.000000, 0.951083, 0.000000;;, + 164;3; 0.000000, 0.951083, 0.000000;;, + 165;3; 0.000000, 0.951083, 0.000000;;, + 166;3; 0.000000, 0.951083, 0.000000;;, + 167;3; 0.000000, 0.951083, 0.000000;;, + 168;3; 0.000000, 0.951083, 0.000000;;, + 169;3; 0.000000, 0.951083, 0.000000;;, + 170;3; 0.000000, 0.951083, 0.000000;;, + 171;3; 0.000000, 0.951083, 0.000000;;, + 172;3; 0.000000, 0.951083, 0.000000;;, + 173;3; 0.000000, 0.951083, 0.000000;;, + 174;3; 0.000000, 0.951083, 0.000000;;, + 175;3; 0.000000, 0.951083, 0.000000;;, + 176;3; 0.000000, 0.951083, 0.000000;;, + 177;3; 0.000000, 0.951083, 0.000000;;, + 178;3; 0.000000, 0.951083, 0.000000;;, + 179;3; 0.000000, 0.951083, 0.000000;;, + 180;3; 0.000000, 0.951083, 0.000000;;, + 181;3; 0.000000, 0.951083, 0.000000;;, + 182;3; 0.000000, 0.951083, 0.000000;;, + 183;3; 0.000000, 0.951083, 0.000000;;, + 184;3; 0.000000, 0.951083, 0.000000;;, + 185;3; 0.000000, 0.951083, 0.000000;;, + 186;3; 0.000000, 0.951083, 0.000000;;, + 187;3; 0.000000, 0.951083, 0.000000;;, + 188;3; 0.000000, 0.951083, 0.000000;;, + 189;3; 0.000000, 0.951083, 0.000000;;, + 190;3; 0.000000, 0.951083, 0.000000;;, + 191;3; 0.000000, 0.951083, 0.000000;;, + 192;3; 0.000000, 0.951083, 0.000000;;, + 193;3; 0.000000, 0.951083, 0.000000;;, + 194;3; 0.000000, 0.951083, 0.000000;;, + 195;3; 0.000000, 0.951083, 0.000000;;, + 196;3; 0.000000, 0.951083, 0.000000;;, + 197;3; 0.000000, 0.951083, 0.000000;;, + 198;3; 0.000000, 0.951083, 0.000000;;, + 199;3; 0.000000, 0.951083, 0.000000;;, + 200;3; 0.000000, 0.951083, 0.000000;;, + 201;3; 0.000000, 0.951083, 0.000000;;, + 202;3; 0.000000, 0.951083, 0.000000;;, + 203;3; 0.000000, 0.951083, 0.000000;;, + 204;3; 0.000000, 0.951083, 0.000000;;, + 205;3; 0.000000, 0.951083, 0.000000;;, + 206;3; 0.000000, 0.951083, 0.000000;;, + 207;3; 0.000000, 0.951083, 0.000000;;, + 208;3; 0.000000, 0.951083, 0.000000;;, + 209;3; 0.000000, 0.951083, 0.000000;;, + 210;3; 0.000000, 0.951083, 0.000000;;, + 211;3; 0.000000, 0.951083, 0.000000;;, + 212;3; 0.000000, 0.951083, 0.000000;;, + 213;3; 0.000000, 0.951083, 0.000000;;, + 214;3; 0.000000, 0.951083, 0.000000;;, + 215;3; 0.000000, 0.951083, 0.000000;;, + 216;3; 0.000000, 0.951083, 0.000000;;, + 217;3; 0.000000, 0.951083, 0.000000;;, + 218;3; 0.000000, 0.951083, 0.000000;;, + 219;3; 0.000000, 0.951083, 0.000000;;, + 220;3; 0.000000, 0.951083, 0.000000;;, + 221;3; 0.000000, 0.951083, 0.000000;;, + 222;3; 0.000000, 0.951083, 0.000000;;, + 223;3; 0.000000, 0.951083, 0.000000;;, + 224;3; 0.000000, 0.951083, 0.000000;;, + 225;3; 0.000000, 0.951083, 0.000000;;, + 226;3; 0.000000, 0.951083, 0.000000;;, + 227;3; 0.000000, 0.951083, 0.000000;;, + 228;3; 0.000000, 0.951083, 0.000000;;, + 229;3; 0.000000, 0.951083, 0.000000;;, + 230;3; 0.000000, 0.951083, 0.000000;;, + 231;3; 0.000000, 0.951083, 0.000000;;, + 232;3; 0.000000, 0.951083, 0.000000;;, + 233;3; 0.000000, 0.951083, 0.000000;;, + 234;3; 0.000000, 0.951083, 0.000000;;, + 235;3; 0.000000, 0.951083, 0.000000;;, + 236;3; 0.000000, 0.951083, 0.000000;;, + 237;3; 0.000000, 0.951083, 0.000000;;, + 238;3; 0.000000, 0.951083, 0.000000;;, + 239;3; 0.000000, 0.951083, 0.000000;;, + 240;3; 0.000000, 0.951083, 0.000000;;, + 241;3; 0.000000, 0.951083, 0.000000;;, + 242;3; 0.000000, 0.951083, 0.000000;;, + 243;3; 0.000000, 0.951083, 0.000000;;, + 244;3; 0.000000, 0.951083, 0.000000;;, + 245;3; 0.000000, 0.951083, 0.000000;;, + 246;3; 0.000000, 0.951083, 0.000000;;, + 247;3; 0.000000, 0.951083, 0.000000;;, + 248;3; 0.000000, 0.951083, 0.000000;;, + 249;3; 0.000000, 0.951083, 0.000000;;; + } + } + Animation { + {Armature_Bone_024} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 1;4;-0.979225,-0.202765, 0.000000,-0.000000;;, + 2;4;-0.979319,-0.202280, 0.000000,-0.000000;;, + 3;4;-0.979476,-0.201470, 0.000000,-0.000000;;, + 4;4;-0.979694,-0.200340, 0.000000,-0.000000;;, + 5;4;-0.979971,-0.198909, 0.000000,-0.000000;;, + 6;4;-0.980300,-0.197204, 0.000000,-0.000000;;, + 7;4;-0.980675,-0.195267, 0.000000,-0.000000;;, + 8;4;-0.981084,-0.193153, 0.000000,-0.000000;;, + 9;4;-0.981514,-0.190926, 0.000000,-0.000000;;, + 10;4;-0.981952,-0.188662, 0.000000,-0.000000;;, + 11;4;-0.982382,-0.186436, 0.000000,-0.000000;;, + 12;4;-0.982791,-0.184321, 0.000000,-0.000000;;, + 13;4;-0.983165,-0.182385, 0.000000,-0.000000;;, + 14;4;-0.983495,-0.180680, 0.000000,-0.000000;;, + 15;4;-0.983772,-0.179248, 0.000000,-0.000000;;, + 16;4;-0.983990,-0.178119, 0.000000,-0.000000;;, + 17;4;-0.984147,-0.177308, 0.000000,-0.000000;;, + 18;4;-0.984240,-0.176823, 0.000000,-0.000000;;, + 19;4;-0.984271,-0.176663, 0.000000,-0.000000;;, + 20;4;-0.984244,-0.176808, 0.000000,-0.000000;;, + 21;4;-0.984159,-0.177245, 0.000000,-0.000000;;, + 22;4;-0.984017,-0.177977, 0.000000,-0.000000;;, + 23;4;-0.983820,-0.178997, 0.000000,-0.000000;;, + 24;4;-0.983569,-0.180295, 0.000000,-0.000000;;, + 25;4;-0.983269,-0.181846, 0.000000,-0.000000;;, + 26;4;-0.982926,-0.183620, 0.000000,-0.000000;;, + 27;4;-0.982549,-0.185573, 0.000000,-0.000000;;, + 28;4;-0.982147,-0.187651, 0.000000,-0.000000;;, + 29;4;-0.981733,-0.189794, 0.000000,-0.000000;;, + 30;4;-0.981319,-0.191937, 0.000000,-0.000000;;, + 31;4;-0.980917,-0.194016, 0.000000,-0.000000;;, + 32;4;-0.980539,-0.195968, 0.000000,-0.000000;;, + 33;4;-0.980196,-0.197742, 0.000000,-0.000000;;, + 34;4;-0.979896,-0.199294, 0.000000,-0.000000;;, + 35;4;-0.979646,-0.200591, 0.000000,-0.000000;;, + 36;4;-0.979448,-0.201612, 0.000000,-0.000000;;, + 37;4;-0.979307,-0.202343, 0.000000,-0.000000;;, + 38;4;-0.979222,-0.202781, 0.000000,-0.000000;;, + 39;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 40;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 41;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 42;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 43;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 44;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 45;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 46;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 47;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 48;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 49;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 50;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 51;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 52;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 53;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 54;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 55;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 56;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 57;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 58;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 59;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 60;4;-0.979599,-0.199632, 0.001015, 0.000069;;, + 61;4;-0.980819,-0.189721, 0.004068, 0.000277;;, + 62;4;-0.982801,-0.173606, 0.009032, 0.000614;;, + 63;4;-0.985393,-0.152528, 0.015525, 0.001056;;, + 64;4;-0.988330,-0.128650, 0.022881, 0.001556;;, + 65;4;-0.991268,-0.104772, 0.030236, 0.002056;;, + 66;4;-0.993860,-0.083694, 0.036729, 0.002498;;, + 67;4;-0.995843,-0.067579, 0.041694, 0.002835;;, + 68;4;-0.997062,-0.057668, 0.044747, 0.003043;;, + 69;4;-0.997467,-0.054375, 0.045761, 0.003112;;, + 70;4;-0.997422,-0.054738, 0.045649, 0.003104;;, + 71;4;-0.997287,-0.055833, 0.045312, 0.003081;;, + 72;4;-0.997062,-0.057668, 0.044747, 0.003043;;, + 73;4;-0.996745,-0.060243, 0.043954, 0.002989;;, + 74;4;-0.996338,-0.063551, 0.042934, 0.002920;;, + 75;4;-0.995843,-0.067579, 0.041694, 0.002835;;, + 76;4;-0.995261,-0.072304, 0.040238, 0.002736;;, + 77;4;-0.994599,-0.077691, 0.038579, 0.002623;;, + 78;4;-0.993860,-0.083694, 0.036729, 0.002498;;, + 79;4;-0.993053,-0.090258, 0.034707, 0.002360;;, + 80;4;-0.992185,-0.097311, 0.032535, 0.002212;;, + 81;4;-0.991268,-0.104772, 0.030236, 0.002056;;, + 82;4;-0.990311,-0.112551, 0.027840, 0.001893;;, + 83;4;-0.989327,-0.120545, 0.025377, 0.001726;;, + 84;4;-0.988331,-0.128650, 0.022881, 0.001556;;, + 85;4;-0.987334,-0.136755, 0.020384, 0.001386;;, + 86;4;-0.986350,-0.144749, 0.017921, 0.001219;;, + 87;4;-0.985393,-0.152528, 0.015525, 0.001056;;, + 88;4;-0.984476,-0.159989, 0.013226, 0.000899;;, + 89;4;-0.983608,-0.167043, 0.011054, 0.000752;;, + 90;4;-0.982801,-0.173606, 0.009032, 0.000614;;, + 91;4;-0.982062,-0.179610, 0.007183, 0.000488;;, + 92;4;-0.981400,-0.184996, 0.005523, 0.000376;;, + 93;4;-0.980819,-0.189721, 0.004068, 0.000277;;, + 94;4;-0.980323,-0.193749, 0.002827, 0.000192;;, + 95;4;-0.979916,-0.197058, 0.001808, 0.000123;;, + 96;4;-0.979599,-0.199632, 0.001015, 0.000069;;, + 97;4;-0.979374,-0.201467, 0.000449, 0.000031;;, + 98;4;-0.979239,-0.202562, 0.000112, 0.000008;;, + 99;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 100;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 101;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 102;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 103;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 104;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 105;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 106;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 107;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 108;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 109;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 110;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 111;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 112;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 113;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 114;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 115;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 116;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 117;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 118;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 119;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 120;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 121;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 122;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 123;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 124;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 125;4;-0.978512,-0.205951, 0.000000,-0.000000;;, + 126;4;-0.976590,-0.214474, 0.000000,-0.000000;;, + 127;4;-0.974122,-0.225417, 0.000000,-0.000000;;, + 128;4;-0.972201,-0.233940, 0.000000,-0.000000;;, + 129;4;-0.971518,-0.236966, 0.000000,-0.000000;;, + 130;4;-0.973636,-0.235946, 0.000000,-0.000000;;, + 131;4;-0.979692,-0.226951, 0.000000,-0.000000;;, + 132;4;-0.987713,-0.198964, 0.000000,-0.000000;;, + 133;4;-0.994437,-0.145175, 0.000000,-0.000000;;, + 134;4;-0.997689,-0.067941, 0.000000,-0.000000;;, + 135;4;-0.966279, 0.069057, 0.000000,-0.000000;;, + 136;4;-0.875365, 0.291181, 0.000000,-0.000000;;, + 137;4;-0.758021, 0.535308, 0.000000,-0.000000;;, + 138;4;-0.666440, 0.712638, 0.000000,-0.000000;;, + 139;4;-0.633894, 0.773420, 0.000000, 0.000000;;, + 140;4;-0.660389, 0.732977,-0.019900, 0.011306;;, + 141;4;-0.735944, 0.612192,-0.075952, 0.043150;;, + 142;4;-0.835448, 0.438670,-0.147923, 0.084039;;, + 143;4;-0.917791, 0.267645,-0.203975, 0.115884;;, + 144;4;-0.955834, 0.141723,-0.223875, 0.127189;;, + 145;4;-0.967336, 0.041315,-0.203975, 0.115884;;, + 146;4;-0.974923,-0.057840,-0.147923, 0.084039;;, + 147;4;-0.978440,-0.139082,-0.075952, 0.043150;;, + 148;4;-0.979240,-0.187997,-0.019900, 0.011306;;, + 149;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 150;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 151;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 152;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 153;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 154;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 155;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 156;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 157;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 158;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 159;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 160;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 161;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 162;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 163;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 164;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 165;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 166;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 167;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 168;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 169;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 170;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 171;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 172;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 173;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 174;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 175;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 176;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 177;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 178;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 179;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 180;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 181;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 182;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 183;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 184;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 185;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 186;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 187;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 188;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 189;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 190;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 191;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 192;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 193;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 194;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 195;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 196;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 197;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 198;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 199;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 200;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 201;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 202;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 203;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 204;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 205;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 206;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 207;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 208;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 209;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 210;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 211;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 212;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 213;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 214;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 215;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 216;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 217;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 218;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 219;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 220;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 221;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 222;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 223;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 224;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 225;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 226;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 227;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 228;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 229;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 230;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 231;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 232;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 233;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 234;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 235;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 236;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 237;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 238;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 239;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 240;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 241;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 242;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 243;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 244;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 245;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 246;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 247;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 248;4;-0.979194,-0.202925, 0.000000,-0.000000;;, + 249;4;-0.979194,-0.202925, 0.000000,-0.000000;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3; 0.000000, 2.410316,-0.000000;;, + 1;3; 0.000000, 2.410316, 0.000000;;, + 2;3; 0.000000, 2.410316,-0.000000;;, + 3;3; 0.000000, 2.410316,-0.000000;;, + 4;3; 0.000000, 2.410316,-0.000000;;, + 5;3; 0.000000, 2.410316, 0.000000;;, + 6;3; 0.000000, 2.410316,-0.000000;;, + 7;3; 0.000000, 2.410316, 0.000000;;, + 8;3; 0.000000, 2.410316, 0.000000;;, + 9;3;-0.000000, 2.410316, 0.000000;;, + 10;3;-0.000000, 2.410316, 0.000000;;, + 11;3;-0.000000, 2.410316,-0.000000;;, + 12;3;-0.000000, 2.410315, 0.000000;;, + 13;3;-0.000000, 2.410316, 0.000000;;, + 14;3;-0.000000, 2.410316, 0.000000;;, + 15;3;-0.000000, 2.410315, 0.000000;;, + 16;3; 0.000000, 2.410316, 0.000000;;, + 17;3;-0.000000, 2.410316, 0.000000;;, + 18;3;-0.000000, 2.410316, 0.000000;;, + 19;3;-0.000000, 2.410315, 0.000000;;, + 20;3; 0.000000, 2.410316,-0.000000;;, + 21;3;-0.000000, 2.410315, 0.000000;;, + 22;3; 0.000000, 2.410316,-0.000000;;, + 23;3; 0.000000, 2.410315, 0.000000;;, + 24;3;-0.000000, 2.410315,-0.000000;;, + 25;3;-0.000000, 2.410316, 0.000000;;, + 26;3;-0.000000, 2.410316,-0.000000;;, + 27;3;-0.000000, 2.410316,-0.000000;;, + 28;3;-0.000000, 2.410315, 0.000000;;, + 29;3;-0.000000, 2.410316, 0.000000;;, + 30;3;-0.000000, 2.410316, 0.000000;;, + 31;3;-0.000000, 2.410315, 0.000000;;, + 32;3;-0.000000, 2.410315,-0.000000;;, + 33;3; 0.000000, 2.410315, 0.000000;;, + 34;3; 0.000000, 2.410316, 0.000000;;, + 35;3;-0.000000, 2.410316,-0.000000;;, + 36;3; 0.000000, 2.410316, 0.000000;;, + 37;3; 0.000000, 2.410316, 0.000000;;, + 38;3; 0.000000, 2.410315, 0.000000;;, + 39;3; 0.000000, 2.410316,-0.000000;;, + 40;3; 0.000000, 2.410315, 0.000000;;, + 41;3; 0.000000, 2.410316,-0.000000;;, + 42;3;-0.000000, 2.410316, 0.000000;;, + 43;3; 0.000000, 2.410316,-0.000000;;, + 44;3;-0.000000, 2.410316, 0.000000;;, + 45;3;-0.000000, 2.410316,-0.000000;;, + 46;3; 0.000000, 2.410316, 0.000000;;, + 47;3; 0.000000, 2.410316,-0.000000;;, + 48;3;-0.000000, 2.410316, 0.000000;;, + 49;3;-0.000000, 2.410316, 0.000000;;, + 50;3; 0.000000, 2.410316, 0.000000;;, + 51;3;-0.000000, 2.410316,-0.000000;;, + 52;3; 0.000000, 2.410316, 0.000000;;, + 53;3; 0.000000, 2.410316, 0.000000;;, + 54;3;-0.000000, 2.410316,-0.000000;;, + 55;3;-0.000000, 2.410316,-0.000000;;, + 56;3;-0.000000, 2.410316, 0.000000;;, + 57;3; 0.000000, 2.410316,-0.000000;;, + 58;3; 0.000000, 2.410316,-0.000000;;, + 59;3; 0.000000, 2.410316,-0.000000;;, + 60;3; 0.000000, 2.410316,-0.000000;;, + 61;3;-0.000000, 2.410315,-0.000000;;, + 62;3;-0.000000, 2.410316, 0.000000;;, + 63;3; 0.000000, 2.410316,-0.000000;;, + 64;3; 0.000000, 2.410316,-0.000000;;, + 65;3; 0.000000, 2.410315,-0.000000;;, + 66;3;-0.000000, 2.410316,-0.000000;;, + 67;3;-0.000000, 2.410315,-0.000000;;, + 68;3;-0.000000, 2.410316,-0.000000;;, + 69;3; 0.000000, 2.410316,-0.000000;;, + 70;3;-0.000000, 2.410315,-0.000000;;, + 71;3;-0.000000, 2.410316, 0.000000;;, + 72;3;-0.000000, 2.410316, 0.000000;;, + 73;3; 0.000000, 2.410316,-0.000000;;, + 74;3; 0.000000, 2.410316, 0.000000;;, + 75;3;-0.000000, 2.410315, 0.000000;;, + 76;3; 0.000000, 2.410315,-0.000000;;, + 77;3; 0.000000, 2.410315, 0.000000;;, + 78;3; 0.000000, 2.410316,-0.000000;;, + 79;3;-0.000000, 2.410316, 0.000000;;, + 80;3; 0.000000, 2.410316,-0.000000;;, + 81;3;-0.000000, 2.410316, 0.000000;;, + 82;3; 0.000000, 2.410316, 0.000000;;, + 83;3; 0.000000, 2.410315,-0.000000;;, + 84;3; 0.000000, 2.410316,-0.000000;;, + 85;3; 0.000000, 2.410316,-0.000000;;, + 86;3; 0.000000, 2.410316,-0.000000;;, + 87;3; 0.000000, 2.410315, 0.000000;;, + 88;3;-0.000000, 2.410316, 0.000000;;, + 89;3;-0.000000, 2.410315,-0.000000;;, + 90;3; 0.000000, 2.410315,-0.000000;;, + 91;3;-0.000000, 2.410316,-0.000000;;, + 92;3;-0.000000, 2.410316,-0.000000;;, + 93;3;-0.000000, 2.410315,-0.000000;;, + 94;3; 0.000000, 2.410316,-0.000000;;, + 95;3;-0.000000, 2.410316, 0.000000;;, + 96;3;-0.000000, 2.410316,-0.000000;;, + 97;3;-0.000000, 2.410316,-0.000000;;, + 98;3; 0.000000, 2.410316,-0.000000;;, + 99;3; 0.000000, 2.410316,-0.000000;;, + 100;3;-0.000000, 2.410316, 0.000000;;, + 101;3; 0.000000, 2.410316,-0.000000;;, + 102;3;-0.000000, 2.410316, 0.000000;;, + 103;3; 0.000000, 2.410316, 0.000000;;, + 104;3;-0.000000, 2.410316, 0.000000;;, + 105;3; 0.000000, 2.410316,-0.000000;;, + 106;3;-0.000000, 2.410316, 0.000000;;, + 107;3; 0.000000, 2.410315,-0.000000;;, + 108;3;-0.000000, 2.410316,-0.000000;;, + 109;3; 0.000000, 2.410316, 0.000000;;, + 110;3; 0.000000, 2.410316, 0.000000;;, + 111;3; 0.000000, 2.410315,-0.000000;;, + 112;3; 0.000000, 2.410316,-0.000000;;, + 113;3;-0.000000, 2.410316, 0.000000;;, + 114;3; 0.000000, 2.410316, 0.000000;;, + 115;3;-0.000000, 2.410316,-0.000000;;, + 116;3; 0.000000, 2.410316, 0.000000;;, + 117;3;-0.000000, 2.410315,-0.000000;;, + 118;3;-0.000000, 2.410316, 0.000000;;, + 119;3; 0.000000, 2.410316,-0.000000;;, + 120;3;-0.000000, 2.410315,-0.000000;;, + 121;3; 0.000000, 2.410316,-0.000000;;, + 122;3;-0.000000, 2.410316,-0.000000;;, + 123;3; 0.000000, 2.410316,-0.000000;;, + 124;3;-0.000000, 2.410315,-0.000000;;, + 125;3; 0.000000, 2.410316, 0.000000;;, + 126;3; 0.000000, 2.410316,-0.000000;;, + 127;3; 0.000000, 2.410316,-0.000000;;, + 128;3; 0.000000, 2.410315,-0.000000;;, + 129;3; 0.000000, 2.410316,-0.000000;;, + 130;3;-0.000000, 2.410316, 0.000000;;, + 131;3; 0.000000, 2.410316, 0.000000;;, + 132;3; 0.000000, 2.410316,-0.000000;;, + 133;3; 0.000000, 2.410316,-0.000000;;, + 134;3; 0.000000, 2.410316,-0.000000;;, + 135;3; 0.000000, 2.410316,-0.000000;;, + 136;3; 0.000000, 2.410316, 0.000000;;, + 137;3; 0.000000, 2.410316, 0.000000;;, + 138;3; 0.000000, 2.410316, 0.000000;;, + 139;3; 0.000000, 2.410316,-0.000000;;, + 140;3;-0.000000, 2.410316,-0.000000;;, + 141;3; 0.000000, 2.410316,-0.000000;;, + 142;3; 0.000000, 2.410315, 0.000000;;, + 143;3;-0.000000, 2.410316,-0.000000;;, + 144;3; 0.000000, 2.410316,-0.000000;;, + 145;3; 0.000000, 2.410316, 0.000000;;, + 146;3; 0.000000, 2.410316, 0.000000;;, + 147;3; 0.000000, 2.410316, 0.000000;;, + 148;3;-0.000000, 2.410315, 0.000000;;, + 149;3; 0.000000, 2.410316,-0.000000;;, + 150;3; 0.000000, 2.410316,-0.000000;;, + 151;3; 0.000000, 2.410316,-0.000000;;, + 152;3; 0.000000, 2.410316,-0.000000;;, + 153;3; 0.000000, 2.410316,-0.000000;;, + 154;3; 0.000000, 2.410316,-0.000000;;, + 155;3; 0.000000, 2.410316,-0.000000;;, + 156;3; 0.000000, 2.410316,-0.000000;;, + 157;3; 0.000000, 2.410316,-0.000000;;, + 158;3; 0.000000, 2.410316,-0.000000;;, + 159;3; 0.000000, 2.410316,-0.000000;;, + 160;3; 0.000000, 2.410316,-0.000000;;, + 161;3; 0.000000, 2.410316,-0.000000;;, + 162;3; 0.000000, 2.410316,-0.000000;;, + 163;3; 0.000000, 2.410316,-0.000000;;, + 164;3; 0.000000, 2.410316,-0.000000;;, + 165;3; 0.000000, 2.410316,-0.000000;;, + 166;3; 0.000000, 2.410316,-0.000000;;, + 167;3; 0.000000, 2.410316,-0.000000;;, + 168;3; 0.000000, 2.410316,-0.000000;;, + 169;3; 0.000000, 2.410316,-0.000000;;, + 170;3; 0.000000, 2.410316,-0.000000;;, + 171;3; 0.000000, 2.410316,-0.000000;;, + 172;3; 0.000000, 2.410316,-0.000000;;, + 173;3; 0.000000, 2.410316,-0.000000;;, + 174;3; 0.000000, 2.410316,-0.000000;;, + 175;3; 0.000000, 2.410316,-0.000000;;, + 176;3; 0.000000, 2.410316,-0.000000;;, + 177;3; 0.000000, 2.410316,-0.000000;;, + 178;3; 0.000000, 2.410316,-0.000000;;, + 179;3; 0.000000, 2.410316,-0.000000;;, + 180;3; 0.000000, 2.410316,-0.000000;;, + 181;3; 0.000000, 2.410316,-0.000000;;, + 182;3; 0.000000, 2.410316,-0.000000;;, + 183;3; 0.000000, 2.410316,-0.000000;;, + 184;3; 0.000000, 2.410316,-0.000000;;, + 185;3; 0.000000, 2.410316,-0.000000;;, + 186;3; 0.000000, 2.410316,-0.000000;;, + 187;3; 0.000000, 2.410316,-0.000000;;, + 188;3; 0.000000, 2.410316,-0.000000;;, + 189;3; 0.000000, 2.410316,-0.000000;;, + 190;3; 0.000000, 2.410316,-0.000000;;, + 191;3; 0.000000, 2.410316,-0.000000;;, + 192;3; 0.000000, 2.410316,-0.000000;;, + 193;3; 0.000000, 2.410316,-0.000000;;, + 194;3; 0.000000, 2.410316,-0.000000;;, + 195;3; 0.000000, 2.410316,-0.000000;;, + 196;3; 0.000000, 2.410316,-0.000000;;, + 197;3; 0.000000, 2.410316,-0.000000;;, + 198;3; 0.000000, 2.410316,-0.000000;;, + 199;3; 0.000000, 2.410316,-0.000000;;, + 200;3; 0.000000, 2.410316,-0.000000;;, + 201;3; 0.000000, 2.410316,-0.000000;;, + 202;3; 0.000000, 2.410316,-0.000000;;, + 203;3; 0.000000, 2.410316,-0.000000;;, + 204;3; 0.000000, 2.410316,-0.000000;;, + 205;3; 0.000000, 2.410316,-0.000000;;, + 206;3; 0.000000, 2.410316,-0.000000;;, + 207;3; 0.000000, 2.410316,-0.000000;;, + 208;3; 0.000000, 2.410316,-0.000000;;, + 209;3; 0.000000, 2.410316,-0.000000;;, + 210;3; 0.000000, 2.410316,-0.000000;;, + 211;3; 0.000000, 2.410316,-0.000000;;, + 212;3; 0.000000, 2.410316,-0.000000;;, + 213;3; 0.000000, 2.410316,-0.000000;;, + 214;3; 0.000000, 2.410316,-0.000000;;, + 215;3; 0.000000, 2.410316,-0.000000;;, + 216;3; 0.000000, 2.410316,-0.000000;;, + 217;3; 0.000000, 2.410316,-0.000000;;, + 218;3; 0.000000, 2.410316,-0.000000;;, + 219;3; 0.000000, 2.410316,-0.000000;;, + 220;3; 0.000000, 2.410316,-0.000000;;, + 221;3; 0.000000, 2.410316,-0.000000;;, + 222;3; 0.000000, 2.410316,-0.000000;;, + 223;3; 0.000000, 2.410316,-0.000000;;, + 224;3; 0.000000, 2.410316,-0.000000;;, + 225;3; 0.000000, 2.410316,-0.000000;;, + 226;3; 0.000000, 2.410316,-0.000000;;, + 227;3; 0.000000, 2.410316,-0.000000;;, + 228;3; 0.000000, 2.410316,-0.000000;;, + 229;3; 0.000000, 2.410316,-0.000000;;, + 230;3; 0.000000, 2.410316,-0.000000;;, + 231;3; 0.000000, 2.410316,-0.000000;;, + 232;3; 0.000000, 2.410316,-0.000000;;, + 233;3; 0.000000, 2.410316,-0.000000;;, + 234;3; 0.000000, 2.410316,-0.000000;;, + 235;3; 0.000000, 2.410316,-0.000000;;, + 236;3; 0.000000, 2.410316,-0.000000;;, + 237;3; 0.000000, 2.410316,-0.000000;;, + 238;3; 0.000000, 2.410316,-0.000000;;, + 239;3; 0.000000, 2.410316,-0.000000;;, + 240;3; 0.000000, 2.410316,-0.000000;;, + 241;3; 0.000000, 2.410316,-0.000000;;, + 242;3; 0.000000, 2.410316,-0.000000;;, + 243;3; 0.000000, 2.410316,-0.000000;;, + 244;3; 0.000000, 2.410316,-0.000000;;, + 245;3; 0.000000, 2.410316,-0.000000;;, + 246;3; 0.000000, 2.410316,-0.000000;;, + 247;3; 0.000000, 2.410316,-0.000000;;, + 248;3; 0.000000, 2.410316,-0.000000;;, + 249;3; 0.000000, 2.410316,-0.000000;;; + } + } + Animation { + {Armature_Bone_026} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 1;4;-0.981826,-0.189541,-0.000000,-0.000000;;, + 2;4;-0.982120,-0.187295,-0.000000,-0.000000;;, + 3;4;-0.982611,-0.183541,-0.000000,-0.000000;;, + 4;4;-0.983295,-0.178311,-0.000000,-0.000000;;, + 5;4;-0.984163,-0.171681,-0.000000,-0.000000;;, + 6;4;-0.985196,-0.163784,-0.000000,-0.000000;;, + 7;4;-0.986369,-0.154813,-0.000000,-0.000000;;, + 8;4;-0.987650,-0.145019,-0.000000,-0.000000;;, + 9;4;-0.988999,-0.134708,-0.000000,-0.000000;;, + 10;4;-0.990371,-0.124221,-0.000000,-0.000000;;, + 11;4;-0.991720,-0.113910,-0.000000,-0.000000;;, + 12;4;-0.993001,-0.104116,-0.000000,-0.000000;;, + 13;4;-0.994175,-0.095145,-0.000000,-0.000000;;, + 14;4;-0.995208,-0.087248,-0.000000,-0.000000;;, + 15;4;-0.996075,-0.080618,-0.000000,-0.000000;;, + 16;4;-0.996759,-0.075388,-0.000000,-0.000000;;, + 17;4;-0.997250,-0.071634,-0.000000,-0.000000;;, + 18;4;-0.997544,-0.069388,-0.000000,-0.000000;;, + 19;4;-0.997641,-0.068645,-0.000000,-0.000000;;, + 20;4;-0.997554,-0.069315,-0.000000,-0.000000;;, + 21;4;-0.997289,-0.071341,-0.000000,-0.000000;;, + 22;4;-0.996845,-0.074729,-0.000000,-0.000000;;, + 23;4;-0.996227,-0.079457,-0.000000,-0.000000;;, + 24;4;-0.995441,-0.085465,-0.000000,-0.000000;;, + 25;4;-0.994501,-0.092653,-0.000000,-0.000000;;, + 26;4;-0.993426,-0.100869,-0.000000,-0.000000;;, + 27;4;-0.992243,-0.109912,-0.000000,-0.000000;;, + 28;4;-0.990984,-0.119538,-0.000000,-0.000000;;, + 29;4;-0.989685,-0.129464,-0.000000,-0.000000;;, + 30;4;-0.988387,-0.139391,-0.000000,-0.000000;;, + 31;4;-0.987128,-0.149017,-0.000000,-0.000000;;, + 32;4;-0.985945,-0.158060,-0.000000,-0.000000;;, + 33;4;-0.984870,-0.166276,-0.000000,-0.000000;;, + 34;4;-0.983930,-0.173463,-0.000000,-0.000000;;, + 35;4;-0.983144,-0.179472,-0.000000,-0.000000;;, + 36;4;-0.982525,-0.184199,-0.000000,-0.000000;;, + 37;4;-0.982082,-0.187588,-0.000000,-0.000000;;, + 38;4;-0.981817,-0.189614,-0.000000,-0.000000;;, + 39;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 40;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 41;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 42;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 43;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 44;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 45;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 46;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 47;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 48;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 49;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 50;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 51;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 52;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 53;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 54;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 55;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 56;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 57;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 58;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 59;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 60;4;-0.982098,-0.186171, 0.001130, 0.000565;;, + 61;4;-0.983208,-0.173792, 0.004530, 0.002265;;, + 62;4;-0.985012,-0.153663, 0.010059, 0.005030;;, + 63;4;-0.987373,-0.127337, 0.017291, 0.008646;;, + 64;4;-0.990047,-0.097513, 0.025483, 0.012743;;, + 65;4;-0.992721,-0.067689, 0.033675, 0.016839;;, + 66;4;-0.995081,-0.041362, 0.040906, 0.020456;;, + 67;4;-0.996885,-0.021234, 0.046435, 0.023220;;, + 68;4;-0.997995,-0.008855, 0.049836, 0.024921;;, + 69;4;-0.998364,-0.004741, 0.050966, 0.025486;;, + 70;4;-0.998324,-0.005195, 0.050841, 0.025423;;, + 71;4;-0.998201,-0.006563, 0.050465, 0.025235;;, + 72;4;-0.997995,-0.008855, 0.049836, 0.024921;;, + 73;4;-0.997707,-0.012070, 0.048952, 0.024479;;, + 74;4;-0.997337,-0.016203, 0.047817, 0.023911;;, + 75;4;-0.996885,-0.021234, 0.046435, 0.023220;;, + 76;4;-0.996356,-0.027135, 0.044814, 0.022410;;, + 77;4;-0.995753,-0.033863, 0.042966, 0.021486;;, + 78;4;-0.995081,-0.041362, 0.040906, 0.020456;;, + 79;4;-0.994346,-0.049560, 0.038655, 0.019330;;, + 80;4;-0.993556,-0.058369, 0.036235, 0.018119;;, + 81;4;-0.992720,-0.067689, 0.033675, 0.016839;;, + 82;4;-0.991849,-0.077404, 0.031006, 0.015505;;, + 83;4;-0.990954,-0.087390, 0.028263, 0.014133;;, + 84;4;-0.990047,-0.097513, 0.025483, 0.012743;;, + 85;4;-0.989139,-0.107636, 0.022702, 0.011352;;, + 86;4;-0.988244,-0.117621, 0.019959, 0.009981;;, + 87;4;-0.987373,-0.127337, 0.017291, 0.008646;;, + 88;4;-0.986537,-0.136656, 0.014731, 0.007366;;, + 89;4;-0.985747,-0.145466, 0.012311, 0.006156;;, + 90;4;-0.985012,-0.153663, 0.010059, 0.005030;;, + 91;4;-0.984340,-0.161162, 0.007999, 0.004000;;, + 92;4;-0.983737,-0.167890, 0.006151, 0.003076;;, + 93;4;-0.983208,-0.173791, 0.004530, 0.002265;;, + 94;4;-0.982757,-0.178823, 0.003148, 0.001574;;, + 95;4;-0.982386,-0.182955, 0.002013, 0.001007;;, + 96;4;-0.982098,-0.186171, 0.001130, 0.000565;;, + 97;4;-0.981892,-0.188462, 0.000500, 0.000250;;, + 98;4;-0.981770,-0.189831, 0.000125, 0.000062;;, + 99;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 100;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 101;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 102;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 103;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 104;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 105;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 106;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 107;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 108;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 109;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 110;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 111;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 112;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 113;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 114;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 115;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 116;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 117;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 118;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 119;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 120;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 121;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 122;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 123;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 124;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 125;4;-0.981912,-0.190001,-0.000000,-0.000000;;, + 126;4;-0.982548,-0.188206,-0.000000,-0.000000;;, + 127;4;-0.983689,-0.183218,-0.000000,-0.000000;;, + 128;4;-0.985207,-0.174113,-0.000000,-0.000000;;, + 129;4;-0.986890,-0.161394,-0.000000,-0.000000;;, + 130;4;-0.989380,-0.150268,-0.000000,-0.000000;;, + 131;4;-0.993078,-0.141698,-0.000000,-0.000000;;, + 132;4;-0.996778,-0.126783,-0.000000,-0.000000;;, + 133;4;-0.998939,-0.096600,-0.000000,-0.000000;;, + 134;4;-0.998813,-0.048703,-0.000000,-0.000000;;, + 135;4;-0.990683, 0.031130,-0.000000, 0.000000;;, + 136;4;-0.970177, 0.150265,-0.000000, 0.000000;;, + 137;4;-0.944448, 0.276710, 0.000000, 0.000000;;, + 138;4;-0.924597, 0.366923, 0.000000, 0.000000;;, + 139;4;-0.917582, 0.397548, 0.000000, 0.000000;;, + 140;4;-0.923240, 0.384975, 0.002120, 0.008704;;, + 141;4;-0.939273, 0.345404, 0.008092, 0.033220;;, + 142;4;-0.960112, 0.283439, 0.015759, 0.064699;;, + 143;4;-0.976834, 0.213462, 0.021730, 0.089215;;, + 144;4;-0.983665, 0.149155, 0.023850, 0.097919;;, + 145;4;-0.984450, 0.076755, 0.021730, 0.089215;;, + 146;4;-0.984141,-0.016018, 0.015759, 0.064699;;, + 147;4;-0.983114,-0.107253, 0.008091, 0.033220;;, + 148;4;-0.982117,-0.169618, 0.002120, 0.008704;;, + 149;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 150;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 151;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 152;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 153;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 154;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 155;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 156;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 157;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 158;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 159;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 160;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 161;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 162;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 163;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 164;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 165;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 166;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 167;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 168;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 169;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 170;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 171;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 172;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 173;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 174;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 175;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 176;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 177;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 178;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 179;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 180;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 181;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 182;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 183;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 184;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 185;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 186;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 187;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 188;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 189;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 190;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 191;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 192;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 193;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 194;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 195;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 196;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 197;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 198;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 199;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 200;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 201;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 202;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 203;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 204;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 205;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 206;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 207;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 208;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 209;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 210;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 211;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 212;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 213;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 214;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 215;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 216;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 217;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 218;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 219;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 220;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 221;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 222;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 223;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 224;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 225;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 226;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 227;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 228;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 229;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 230;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 231;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 232;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 233;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 234;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 235;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 236;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 237;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 238;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 239;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 240;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 241;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 242;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 243;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 244;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 245;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 246;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 247;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 248;4;-0.981729,-0.190284,-0.000000,-0.000000;;, + 249;4;-0.981729,-0.190284,-0.000000,-0.000000;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3; 0.000000, 2.365125, 0.000000;;, + 1;3; 0.000000, 2.365125,-0.000000;;, + 2;3;-0.000000, 2.365125,-0.000000;;, + 3;3; 0.000000, 2.365125, 0.000000;;, + 4;3; 0.000000, 2.365126,-0.000000;;, + 5;3; 0.000000, 2.365125, 0.000000;;, + 6;3; 0.000000, 2.365125,-0.000000;;, + 7;3; 0.000000, 2.365126,-0.000000;;, + 8;3; 0.000000, 2.365125,-0.000000;;, + 9;3;-0.000000, 2.365125,-0.000000;;, + 10;3; 0.000000, 2.365126, 0.000000;;, + 11;3; 0.000000, 2.365125,-0.000000;;, + 12;3;-0.000000, 2.365125,-0.000000;;, + 13;3;-0.000000, 2.365126,-0.000000;;, + 14;3; 0.000000, 2.365126,-0.000000;;, + 15;3; 0.000000, 2.365125, 0.000000;;, + 16;3; 0.000000, 2.365125, 0.000000;;, + 17;3; 0.000000, 2.365126,-0.000000;;, + 18;3; 0.000000, 2.365125,-0.000000;;, + 19;3; 0.000000, 2.365126, 0.000000;;, + 20;3; 0.000000, 2.365125,-0.000000;;, + 21;3; 0.000000, 2.365125,-0.000000;;, + 22;3; 0.000000, 2.365126, 0.000000;;, + 23;3;-0.000000, 2.365126,-0.000000;;, + 24;3;-0.000000, 2.365125, 0.000000;;, + 25;3; 0.000000, 2.365125, 0.000000;;, + 26;3;-0.000000, 2.365125,-0.000000;;, + 27;3; 0.000000, 2.365126,-0.000000;;, + 28;3;-0.000000, 2.365125,-0.000000;;, + 29;3; 0.000000, 2.365125,-0.000000;;, + 30;3; 0.000000, 2.365126,-0.000000;;, + 31;3; 0.000000, 2.365126, 0.000000;;, + 32;3; 0.000000, 2.365125,-0.000000;;, + 33;3; 0.000000, 2.365125,-0.000000;;, + 34;3; 0.000000, 2.365125,-0.000000;;, + 35;3;-0.000000, 2.365126, 0.000000;;, + 36;3; 0.000000, 2.365125,-0.000000;;, + 37;3; 0.000000, 2.365125,-0.000000;;, + 38;3; 0.000000, 2.365125,-0.000000;;, + 39;3; 0.000000, 2.365125, 0.000000;;, + 40;3; 0.000000, 2.365126, 0.000000;;, + 41;3;-0.000000, 2.365125,-0.000000;;, + 42;3; 0.000000, 2.365125, 0.000000;;, + 43;3;-0.000000, 2.365126, 0.000000;;, + 44;3; 0.000000, 2.365126,-0.000000;;, + 45;3;-0.000000, 2.365125,-0.000000;;, + 46;3; 0.000000, 2.365126,-0.000000;;, + 47;3; 0.000000, 2.365125, 0.000000;;, + 48;3; 0.000000, 2.365126,-0.000000;;, + 49;3;-0.000000, 2.365126, 0.000000;;, + 50;3; 0.000000, 2.365126, 0.000000;;, + 51;3;-0.000000, 2.365125, 0.000000;;, + 52;3;-0.000000, 2.365126, 0.000000;;, + 53;3; 0.000001, 2.365125, 0.000000;;, + 54;3;-0.000000, 2.365125,-0.000000;;, + 55;3; 0.000000, 2.365125, 0.000000;;, + 56;3; 0.000000, 2.365125,-0.000000;;, + 57;3; 0.000000, 2.365126,-0.000000;;, + 58;3;-0.000000, 2.365125,-0.000000;;, + 59;3; 0.000000, 2.365125,-0.000000;;, + 60;3; 0.000000, 2.365125,-0.000000;;, + 61;3; 0.000000, 2.365125,-0.000000;;, + 62;3;-0.000000, 2.365126,-0.000000;;, + 63;3;-0.000000, 2.365126,-0.000000;;, + 64;3;-0.000000, 2.365125,-0.000000;;, + 65;3;-0.000000, 2.365125, 0.000000;;, + 66;3; 0.000000, 2.365125,-0.000000;;, + 67;3;-0.000000, 2.365125, 0.000000;;, + 68;3;-0.000000, 2.365126, 0.000000;;, + 69;3;-0.000000, 2.365126,-0.000000;;, + 70;3;-0.000000, 2.365125, 0.000000;;, + 71;3;-0.000000, 2.365126,-0.000000;;, + 72;3; 0.000000, 2.365125, 0.000000;;, + 73;3; 0.000000, 2.365126, 0.000000;;, + 74;3; 0.000000, 2.365126, 0.000000;;, + 75;3;-0.000000, 2.365125,-0.000000;;, + 76;3; 0.000000, 2.365126, 0.000000;;, + 77;3;-0.000000, 2.365126, 0.000000;;, + 78;3;-0.000000, 2.365125,-0.000000;;, + 79;3;-0.000000, 2.365125,-0.000000;;, + 80;3;-0.000000, 2.365125, 0.000000;;, + 81;3;-0.000000, 2.365125,-0.000000;;, + 82;3; 0.000000, 2.365126, 0.000000;;, + 83;3; 0.000000, 2.365125,-0.000000;;, + 84;3;-0.000000, 2.365126, 0.000000;;, + 85;3; 0.000000, 2.365126,-0.000000;;, + 86;3; 0.000000, 2.365125, 0.000000;;, + 87;3; 0.000000, 2.365125, 0.000000;;, + 88;3; 0.000000, 2.365125, 0.000000;;, + 89;3; 0.000000, 2.365125, 0.000000;;, + 90;3;-0.000000, 2.365125, 0.000000;;, + 91;3;-0.000000, 2.365126, 0.000000;;, + 92;3; 0.000000, 2.365126,-0.000000;;, + 93;3; 0.000000, 2.365126,-0.000000;;, + 94;3; 0.000000, 2.365125,-0.000000;;, + 95;3; 0.000000, 2.365126,-0.000000;;, + 96;3; 0.000000, 2.365126,-0.000000;;, + 97;3;-0.000000, 2.365125, 0.000000;;, + 98;3; 0.000000, 2.365125,-0.000000;;, + 99;3; 0.000000, 2.365125,-0.000000;;, + 100;3; 0.000000, 2.365126,-0.000000;;, + 101;3; 0.000000, 2.365125, 0.000000;;, + 102;3; 0.000000, 2.365126, 0.000000;;, + 103;3; 0.000000, 2.365125,-0.000000;;, + 104;3; 0.000000, 2.365125, 0.000000;;, + 105;3; 0.000000, 2.365125, 0.000000;;, + 106;3; 0.000000, 2.365125, 0.000000;;, + 107;3; 0.000000, 2.365125,-0.000000;;, + 108;3;-0.000000, 2.365126, 0.000000;;, + 109;3; 0.000000, 2.365125, 0.000000;;, + 110;3;-0.000000, 2.365126,-0.000000;;, + 111;3; 0.000000, 2.365125,-0.000000;;, + 112;3;-0.000000, 2.365126, 0.000000;;, + 113;3;-0.000000, 2.365125,-0.000000;;, + 114;3; 0.000000, 2.365126, 0.000000;;, + 115;3; 0.000000, 2.365125,-0.000000;;, + 116;3;-0.000000, 2.365126,-0.000000;;, + 117;3;-0.000000, 2.365125,-0.000000;;, + 118;3;-0.000000, 2.365125,-0.000000;;, + 119;3; 0.000000, 2.365125, 0.000000;;, + 120;3; 0.000000, 2.365125,-0.000000;;, + 121;3;-0.000000, 2.365125,-0.000000;;, + 122;3; 0.000000, 2.365125,-0.000000;;, + 123;3; 0.000000, 2.365126,-0.000000;;, + 124;3;-0.000000, 2.365125, 0.000000;;, + 125;3;-0.000000, 2.365125, 0.000000;;, + 126;3;-0.000000, 2.365125,-0.000000;;, + 127;3;-0.000000, 2.365125,-0.000000;;, + 128;3;-0.000000, 2.365125, 0.000000;;, + 129;3;-0.000000, 2.365125,-0.000000;;, + 130;3; 0.000000, 2.365125,-0.000000;;, + 131;3; 0.000000, 2.365125, 0.000000;;, + 132;3; 0.000000, 2.365126, 0.000000;;, + 133;3; 0.000000, 2.365125, 0.000000;;, + 134;3;-0.000000, 2.365126,-0.000000;;, + 135;3; 0.000000, 2.365125,-0.000000;;, + 136;3; 0.000000, 2.365125, 0.000000;;, + 137;3; 0.000000, 2.365126,-0.000000;;, + 138;3; 0.000000, 2.365125,-0.000000;;, + 139;3;-0.000000, 2.365125,-0.000000;;, + 140;3;-0.000000, 2.365125, 0.000000;;, + 141;3;-0.000000, 2.365125, 0.000000;;, + 142;3; 0.000000, 2.365125, 0.000000;;, + 143;3; 0.000000, 2.365126, 0.000000;;, + 144;3;-0.000000, 2.365125, 0.000000;;, + 145;3;-0.000000, 2.365125, 0.000000;;, + 146;3;-0.000000, 2.365126, 0.000000;;, + 147;3;-0.000000, 2.365125, 0.000000;;, + 148;3; 0.000000, 2.365126, 0.000000;;, + 149;3; 0.000000, 2.365125, 0.000000;;, + 150;3; 0.000000, 2.365125, 0.000000;;, + 151;3; 0.000000, 2.365125, 0.000000;;, + 152;3; 0.000000, 2.365125, 0.000000;;, + 153;3; 0.000000, 2.365125, 0.000000;;, + 154;3; 0.000000, 2.365125, 0.000000;;, + 155;3; 0.000000, 2.365125, 0.000000;;, + 156;3; 0.000000, 2.365125, 0.000000;;, + 157;3; 0.000000, 2.365125, 0.000000;;, + 158;3; 0.000000, 2.365125, 0.000000;;, + 159;3; 0.000000, 2.365125, 0.000000;;, + 160;3; 0.000000, 2.365125, 0.000000;;, + 161;3; 0.000000, 2.365125, 0.000000;;, + 162;3; 0.000000, 2.365125, 0.000000;;, + 163;3; 0.000000, 2.365125, 0.000000;;, + 164;3; 0.000000, 2.365125, 0.000000;;, + 165;3; 0.000000, 2.365125, 0.000000;;, + 166;3; 0.000000, 2.365125, 0.000000;;, + 167;3; 0.000000, 2.365125, 0.000000;;, + 168;3; 0.000000, 2.365125, 0.000000;;, + 169;3; 0.000000, 2.365125, 0.000000;;, + 170;3; 0.000000, 2.365125, 0.000000;;, + 171;3; 0.000000, 2.365125, 0.000000;;, + 172;3; 0.000000, 2.365125, 0.000000;;, + 173;3; 0.000000, 2.365125, 0.000000;;, + 174;3; 0.000000, 2.365125, 0.000000;;, + 175;3; 0.000000, 2.365125, 0.000000;;, + 176;3; 0.000000, 2.365125, 0.000000;;, + 177;3; 0.000000, 2.365125, 0.000000;;, + 178;3; 0.000000, 2.365125, 0.000000;;, + 179;3; 0.000000, 2.365125, 0.000000;;, + 180;3; 0.000000, 2.365125, 0.000000;;, + 181;3; 0.000000, 2.365125, 0.000000;;, + 182;3; 0.000000, 2.365125, 0.000000;;, + 183;3; 0.000000, 2.365125, 0.000000;;, + 184;3; 0.000000, 2.365125, 0.000000;;, + 185;3; 0.000000, 2.365125, 0.000000;;, + 186;3; 0.000000, 2.365125, 0.000000;;, + 187;3; 0.000000, 2.365125, 0.000000;;, + 188;3; 0.000000, 2.365125, 0.000000;;, + 189;3; 0.000000, 2.365125, 0.000000;;, + 190;3; 0.000000, 2.365125, 0.000000;;, + 191;3; 0.000000, 2.365125, 0.000000;;, + 192;3; 0.000000, 2.365125, 0.000000;;, + 193;3; 0.000000, 2.365125, 0.000000;;, + 194;3; 0.000000, 2.365125, 0.000000;;, + 195;3; 0.000000, 2.365125, 0.000000;;, + 196;3; 0.000000, 2.365125, 0.000000;;, + 197;3; 0.000000, 2.365125, 0.000000;;, + 198;3; 0.000000, 2.365125, 0.000000;;, + 199;3; 0.000000, 2.365125, 0.000000;;, + 200;3; 0.000000, 2.365125, 0.000000;;, + 201;3; 0.000000, 2.365125, 0.000000;;, + 202;3; 0.000000, 2.365125, 0.000000;;, + 203;3; 0.000000, 2.365125, 0.000000;;, + 204;3; 0.000000, 2.365125, 0.000000;;, + 205;3; 0.000000, 2.365125, 0.000000;;, + 206;3; 0.000000, 2.365125, 0.000000;;, + 207;3; 0.000000, 2.365125, 0.000000;;, + 208;3; 0.000000, 2.365125, 0.000000;;, + 209;3; 0.000000, 2.365125, 0.000000;;, + 210;3; 0.000000, 2.365125, 0.000000;;, + 211;3; 0.000000, 2.365125, 0.000000;;, + 212;3; 0.000000, 2.365125, 0.000000;;, + 213;3; 0.000000, 2.365125, 0.000000;;, + 214;3; 0.000000, 2.365125, 0.000000;;, + 215;3; 0.000000, 2.365125, 0.000000;;, + 216;3; 0.000000, 2.365125, 0.000000;;, + 217;3; 0.000000, 2.365125, 0.000000;;, + 218;3; 0.000000, 2.365125, 0.000000;;, + 219;3; 0.000000, 2.365125, 0.000000;;, + 220;3; 0.000000, 2.365125, 0.000000;;, + 221;3; 0.000000, 2.365125, 0.000000;;, + 222;3; 0.000000, 2.365125, 0.000000;;, + 223;3; 0.000000, 2.365125, 0.000000;;, + 224;3; 0.000000, 2.365125, 0.000000;;, + 225;3; 0.000000, 2.365125, 0.000000;;, + 226;3; 0.000000, 2.365125, 0.000000;;, + 227;3; 0.000000, 2.365125, 0.000000;;, + 228;3; 0.000000, 2.365125, 0.000000;;, + 229;3; 0.000000, 2.365125, 0.000000;;, + 230;3; 0.000000, 2.365125, 0.000000;;, + 231;3; 0.000000, 2.365125, 0.000000;;, + 232;3; 0.000000, 2.365125, 0.000000;;, + 233;3; 0.000000, 2.365125, 0.000000;;, + 234;3; 0.000000, 2.365125, 0.000000;;, + 235;3; 0.000000, 2.365125, 0.000000;;, + 236;3; 0.000000, 2.365125, 0.000000;;, + 237;3; 0.000000, 2.365125, 0.000000;;, + 238;3; 0.000000, 2.365125, 0.000000;;, + 239;3; 0.000000, 2.365125, 0.000000;;, + 240;3; 0.000000, 2.365125, 0.000000;;, + 241;3; 0.000000, 2.365125, 0.000000;;, + 242;3; 0.000000, 2.365125, 0.000000;;, + 243;3; 0.000000, 2.365125, 0.000000;;, + 244;3; 0.000000, 2.365125, 0.000000;;, + 245;3; 0.000000, 2.365125, 0.000000;;, + 246;3; 0.000000, 2.365125, 0.000000;;, + 247;3; 0.000000, 2.365125, 0.000000;;, + 248;3; 0.000000, 2.365125, 0.000000;;, + 249;3; 0.000000, 2.365125, 0.000000;;; + } + } + Animation { + {Armature_Bone_003} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 1;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 2;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 3;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 4;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 5;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 6;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 7;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 8;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 9;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 10;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 11;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 12;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 13;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 14;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 15;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 16;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 17;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 18;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 19;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 20;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 21;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 22;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 23;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 24;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 25;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 26;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 27;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 28;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 29;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 30;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 31;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 32;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 33;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 34;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 35;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 36;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 37;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 38;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 39;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 40;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 41;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 42;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 43;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 44;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 45;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 46;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 47;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 48;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 49;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 50;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 51;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 52;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 53;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 54;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 55;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 56;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 57;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 58;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 59;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 60;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 61;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 62;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 63;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 64;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 65;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 66;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 67;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 68;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 69;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 70;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 71;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 72;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 73;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 74;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 75;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 76;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 77;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 78;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 79;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 80;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 81;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 82;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 83;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 84;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 85;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 86;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 87;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 88;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 89;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 90;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 91;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 92;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 93;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 94;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 95;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 96;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 97;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 98;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 99;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 100;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 101;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 102;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 103;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 104;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 105;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 106;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 107;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 108;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 109;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 110;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 111;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 112;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 113;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 114;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 115;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 116;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 117;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 118;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 119;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 120;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 121;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 122;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 123;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 124;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 125;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 126;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 127;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 128;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 129;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 130;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 131;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 132;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 133;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 134;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 135;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 136;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 137;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 138;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 139;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 140;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 141;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 142;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 143;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 144;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 145;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 146;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 147;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 148;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 149;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 150;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 151;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 152;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 153;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 154;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 155;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 156;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 157;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 158;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 159;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 160;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 161;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 162;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 163;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 164;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 165;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 166;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 167;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 168;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 169;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 170;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 171;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 172;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 173;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 174;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 175;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 176;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 177;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 178;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 179;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 180;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 181;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 182;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 183;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 184;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 185;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 186;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 187;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 188;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 189;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 190;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 191;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 192;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 193;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 194;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 195;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 196;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 197;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 198;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 199;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 200;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 201;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 202;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 203;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 204;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 205;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 206;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 207;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 208;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 209;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 210;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 211;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 212;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 213;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 214;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 215;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 216;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 217;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 218;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 219;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 220;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 221;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 222;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 223;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 224;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 225;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 226;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 227;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 228;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 229;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 230;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 231;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 232;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 233;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 234;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 235;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 236;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 237;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 238;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 239;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 240;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 241;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 242;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 243;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 244;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 245;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 246;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 247;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 248;4;-0.820469, 0.000000, 0.000000,-0.571691;;, + 249;4;-0.820469, 0.000000, 0.000000,-0.571691;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3; 0.000000, 0.705560, 0.000000;;, + 1;3; 0.000000, 0.705560, 0.000000;;, + 2;3; 0.000000, 0.705560, 0.000000;;, + 3;3; 0.000000, 0.705560, 0.000000;;, + 4;3; 0.000000, 0.705560, 0.000000;;, + 5;3; 0.000000, 0.705560, 0.000000;;, + 6;3; 0.000000, 0.705560, 0.000000;;, + 7;3; 0.000000, 0.705560, 0.000000;;, + 8;3; 0.000000, 0.705560, 0.000000;;, + 9;3; 0.000000, 0.705560, 0.000000;;, + 10;3; 0.000000, 0.705560, 0.000000;;, + 11;3; 0.000000, 0.705560, 0.000000;;, + 12;3; 0.000000, 0.705560, 0.000000;;, + 13;3; 0.000000, 0.705560, 0.000000;;, + 14;3; 0.000000, 0.705560, 0.000000;;, + 15;3; 0.000000, 0.705560, 0.000000;;, + 16;3; 0.000000, 0.705560, 0.000000;;, + 17;3; 0.000000, 0.705560, 0.000000;;, + 18;3; 0.000000, 0.705560, 0.000000;;, + 19;3; 0.000000, 0.705560, 0.000000;;, + 20;3; 0.000000, 0.705560, 0.000000;;, + 21;3; 0.000000, 0.705560, 0.000000;;, + 22;3; 0.000000, 0.705560, 0.000000;;, + 23;3; 0.000000, 0.705560, 0.000000;;, + 24;3; 0.000000, 0.705560, 0.000000;;, + 25;3; 0.000000, 0.705560, 0.000000;;, + 26;3; 0.000000, 0.705560, 0.000000;;, + 27;3; 0.000000, 0.705560, 0.000000;;, + 28;3; 0.000000, 0.705560, 0.000000;;, + 29;3; 0.000000, 0.705560, 0.000000;;, + 30;3; 0.000000, 0.705560, 0.000000;;, + 31;3; 0.000000, 0.705560, 0.000000;;, + 32;3; 0.000000, 0.705560, 0.000000;;, + 33;3; 0.000000, 0.705560, 0.000000;;, + 34;3; 0.000000, 0.705560, 0.000000;;, + 35;3; 0.000000, 0.705560, 0.000000;;, + 36;3; 0.000000, 0.705560, 0.000000;;, + 37;3; 0.000000, 0.705560, 0.000000;;, + 38;3; 0.000000, 0.705560, 0.000000;;, + 39;3; 0.000000, 0.705560, 0.000000;;, + 40;3; 0.000000, 0.705560, 0.000000;;, + 41;3; 0.000000, 0.705559, 0.000000;;, + 42;3;-0.000000, 0.705560, 0.000000;;, + 43;3; 0.000000, 0.705560,-0.000000;;, + 44;3; 0.000000, 0.705560, 0.000000;;, + 45;3; 0.000000, 0.705560,-0.000000;;, + 46;3; 0.000000, 0.705559, 0.000000;;, + 47;3;-0.000000, 0.705560, 0.000000;;, + 48;3; 0.000000, 0.705560,-0.000000;;, + 49;3; 0.000000, 0.705560, 0.000000;;, + 50;3;-0.000000, 0.705559, 0.000000;;, + 51;3; 0.000000, 0.705560,-0.000000;;, + 52;3;-0.000000, 0.705560, 0.000000;;, + 53;3; 0.000000, 0.705560,-0.000000;;, + 54;3; 0.000000, 0.705560, 0.000000;;, + 55;3; 0.000000, 0.705560,-0.000000;;, + 56;3;-0.000000, 0.705560, 0.000000;;, + 57;3; 0.000000, 0.705559, 0.000000;;, + 58;3;-0.000000, 0.705560, 0.000000;;, + 59;3; 0.000000, 0.705560, 0.000000;;, + 60;3; 0.000000, 0.705560,-0.000000;;, + 61;3; 0.000000, 0.705560, 0.000000;;, + 62;3; 0.000000, 0.705560, 0.000000;;, + 63;3; 0.000000, 0.705560, 0.000000;;, + 64;3; 0.000000, 0.705560,-0.000000;;, + 65;3;-0.000000, 0.705560, 0.000000;;, + 66;3; 0.000000, 0.705560, 0.000000;;, + 67;3;-0.000000, 0.705560, 0.000000;;, + 68;3; 0.000000, 0.705559, 0.000000;;, + 69;3; 0.000000, 0.705560, 0.000000;;, + 70;3; 0.000000, 0.705560, 0.000000;;, + 71;3;-0.000000, 0.705560, 0.000000;;, + 72;3;-0.000000, 0.705560, 0.000000;;, + 73;3;-0.000000, 0.705560, 0.000000;;, + 74;3;-0.000000, 0.705560, 0.000000;;, + 75;3;-0.000000, 0.705560, 0.000000;;, + 76;3; 0.000000, 0.705559, 0.000000;;, + 77;3;-0.000000, 0.705560, 0.000000;;, + 78;3; 0.000000, 0.705560, 0.000000;;, + 79;3;-0.000000, 0.705559, 0.000000;;, + 80;3; 0.000000, 0.705560, 0.000000;;, + 81;3;-0.000000, 0.705560, 0.000000;;, + 82;3; 0.000000, 0.705560, 0.000000;;, + 83;3; 0.000000, 0.705560, 0.000000;;, + 84;3; 0.000000, 0.705560,-0.000000;;, + 85;3;-0.000000, 0.705560, 0.000000;;, + 86;3;-0.000000, 0.705560, 0.000000;;, + 87;3; 0.000000, 0.705560,-0.000000;;, + 88;3; 0.000000, 0.705560, 0.000000;;, + 89;3; 0.000000, 0.705560, 0.000000;;, + 90;3; 0.000000, 0.705560, 0.000000;;, + 91;3; 0.000000, 0.705560, 0.000000;;, + 92;3; 0.000000, 0.705560, 0.000000;;, + 93;3; 0.000000, 0.705560, 0.000000;;, + 94;3; 0.000000, 0.705560, 0.000000;;, + 95;3; 0.000000, 0.705560, 0.000000;;, + 96;3; 0.000000, 0.705560,-0.000000;;, + 97;3; 0.000000, 0.705560,-0.000000;;, + 98;3; 0.000000, 0.705560, 0.000000;;, + 99;3; 0.000000, 0.705560, 0.000000;;, + 100;3;-0.000000, 0.705560,-0.000000;;, + 101;3; 0.000000, 0.705560,-0.000000;;, + 102;3; 0.000000, 0.705559, 0.000000;;, + 103;3;-0.000000, 0.705560,-0.000000;;, + 104;3;-0.000000, 0.705559,-0.000000;;, + 105;3;-0.000000, 0.705560,-0.000000;;, + 106;3; 0.000000, 0.705560, 0.000000;;, + 107;3;-0.000000, 0.705559,-0.000000;;, + 108;3; 0.000000, 0.705560,-0.000000;;, + 109;3; 0.000000, 0.705559,-0.000000;;, + 110;3;-0.000000, 0.705559, 0.000000;;, + 111;3; 0.000000, 0.705560,-0.000000;;, + 112;3; 0.000000, 0.705560, 0.000000;;, + 113;3; 0.000000, 0.705560,-0.000000;;, + 114;3;-0.000000, 0.705559, 0.000000;;, + 115;3; 0.000000, 0.705560, 0.000000;;, + 116;3;-0.000000, 0.705560,-0.000000;;, + 117;3; 0.000000, 0.705560, 0.000000;;, + 118;3; 0.000000, 0.705560,-0.000000;;, + 119;3; 0.000000, 0.705560, 0.000000;;, + 120;3; 0.000000, 0.705560,-0.000000;;, + 121;3; 0.000000, 0.705560,-0.000000;;, + 122;3;-0.000000, 0.705560,-0.000000;;, + 123;3; 0.000000, 0.705560, 0.000000;;, + 124;3; 0.000000, 0.705560, 0.000000;;, + 125;3; 0.000000, 0.705560, 0.000000;;, + 126;3;-0.000000, 0.705560, 0.000000;;, + 127;3;-0.000000, 0.705560, 0.000000;;, + 128;3;-0.000000, 0.705560,-0.000000;;, + 129;3; 0.000000, 0.705560, 0.000000;;, + 130;3; 0.000000, 0.705559, 0.000000;;, + 131;3; 0.000000, 0.705560, 0.000000;;, + 132;3; 0.000000, 0.705560, 0.000000;;, + 133;3; 0.000000, 0.705560,-0.000000;;, + 134;3; 0.000000, 0.705560, 0.000000;;, + 135;3; 0.000000, 0.705560, 0.000000;;, + 136;3;-0.000000, 0.705560,-0.000000;;, + 137;3; 0.000000, 0.705560, 0.000000;;, + 138;3;-0.000000, 0.705559, 0.000000;;, + 139;3;-0.000000, 0.705560,-0.000000;;, + 140;3; 0.000000, 0.705560, 0.000000;;, + 141;3; 0.000000, 0.705560, 0.000000;;, + 142;3; 0.000000, 0.705560, 0.000000;;, + 143;3; 0.000000, 0.705560,-0.000000;;, + 144;3; 0.000000, 0.705560, 0.000000;;, + 145;3; 0.000000, 0.705560,-0.000000;;, + 146;3; 0.000000, 0.705560, 0.000000;;, + 147;3; 0.000000, 0.705560,-0.000000;;, + 148;3; 0.000000, 0.705560, 0.000000;;, + 149;3; 0.000000, 0.705560, 0.000000;;, + 150;3; 0.000000, 0.705560, 0.000000;;, + 151;3; 0.000000, 0.705560, 0.000000;;, + 152;3; 0.000000, 0.705560, 0.000000;;, + 153;3; 0.000000, 0.705560, 0.000000;;, + 154;3; 0.000000, 0.705560, 0.000000;;, + 155;3; 0.000000, 0.705560, 0.000000;;, + 156;3; 0.000000, 0.705560, 0.000000;;, + 157;3; 0.000000, 0.705560, 0.000000;;, + 158;3; 0.000000, 0.705560, 0.000000;;, + 159;3; 0.000000, 0.705560, 0.000000;;, + 160;3; 0.000000, 0.705560, 0.000000;;, + 161;3; 0.000000, 0.705560, 0.000000;;, + 162;3; 0.000000, 0.705560, 0.000000;;, + 163;3; 0.000000, 0.705560, 0.000000;;, + 164;3; 0.000000, 0.705560, 0.000000;;, + 165;3; 0.000000, 0.705560, 0.000000;;, + 166;3; 0.000000, 0.705560, 0.000000;;, + 167;3; 0.000000, 0.705560, 0.000000;;, + 168;3; 0.000000, 0.705560, 0.000000;;, + 169;3; 0.000000, 0.705560, 0.000000;;, + 170;3; 0.000000, 0.705560, 0.000000;;, + 171;3; 0.000000, 0.705560, 0.000000;;, + 172;3; 0.000000, 0.705560, 0.000000;;, + 173;3; 0.000000, 0.705560, 0.000000;;, + 174;3; 0.000000, 0.705560, 0.000000;;, + 175;3; 0.000000, 0.705560, 0.000000;;, + 176;3; 0.000000, 0.705560, 0.000000;;, + 177;3; 0.000000, 0.705560, 0.000000;;, + 178;3; 0.000000, 0.705560, 0.000000;;, + 179;3; 0.000000, 0.705560, 0.000000;;, + 180;3; 0.000000, 0.705560, 0.000000;;, + 181;3; 0.000000, 0.705560, 0.000000;;, + 182;3; 0.000000, 0.705560, 0.000000;;, + 183;3; 0.000000, 0.705560, 0.000000;;, + 184;3; 0.000000, 0.705560, 0.000000;;, + 185;3; 0.000000, 0.705560, 0.000000;;, + 186;3; 0.000000, 0.705560, 0.000000;;, + 187;3; 0.000000, 0.705560, 0.000000;;, + 188;3; 0.000000, 0.705560, 0.000000;;, + 189;3; 0.000000, 0.705560, 0.000000;;, + 190;3; 0.000000, 0.705560, 0.000000;;, + 191;3; 0.000000, 0.705560, 0.000000;;, + 192;3; 0.000000, 0.705560, 0.000000;;, + 193;3; 0.000000, 0.705560, 0.000000;;, + 194;3; 0.000000, 0.705560, 0.000000;;, + 195;3; 0.000000, 0.705560, 0.000000;;, + 196;3; 0.000000, 0.705560, 0.000000;;, + 197;3; 0.000000, 0.705560, 0.000000;;, + 198;3; 0.000000, 0.705560, 0.000000;;, + 199;3; 0.000000, 0.705560, 0.000000;;, + 200;3; 0.000000, 0.705560, 0.000000;;, + 201;3; 0.000000, 0.705560, 0.000000;;, + 202;3; 0.000000, 0.705560, 0.000000;;, + 203;3; 0.000000, 0.705560, 0.000000;;, + 204;3; 0.000000, 0.705560, 0.000000;;, + 205;3; 0.000000, 0.705560, 0.000000;;, + 206;3; 0.000000, 0.705560, 0.000000;;, + 207;3; 0.000000, 0.705560, 0.000000;;, + 208;3; 0.000000, 0.705560, 0.000000;;, + 209;3; 0.000000, 0.705560, 0.000000;;, + 210;3; 0.000000, 0.705560, 0.000000;;, + 211;3; 0.000000, 0.705560, 0.000000;;, + 212;3; 0.000000, 0.705560, 0.000000;;, + 213;3; 0.000000, 0.705560, 0.000000;;, + 214;3; 0.000000, 0.705560, 0.000000;;, + 215;3; 0.000000, 0.705560, 0.000000;;, + 216;3; 0.000000, 0.705560, 0.000000;;, + 217;3; 0.000000, 0.705560, 0.000000;;, + 218;3; 0.000000, 0.705560, 0.000000;;, + 219;3; 0.000000, 0.705560, 0.000000;;, + 220;3; 0.000000, 0.705560, 0.000000;;, + 221;3; 0.000000, 0.705560, 0.000000;;, + 222;3; 0.000000, 0.705560, 0.000000;;, + 223;3; 0.000000, 0.705560, 0.000000;;, + 224;3; 0.000000, 0.705560, 0.000000;;, + 225;3; 0.000000, 0.705560, 0.000000;;, + 226;3; 0.000000, 0.705560, 0.000000;;, + 227;3; 0.000000, 0.705560, 0.000000;;, + 228;3; 0.000000, 0.705560, 0.000000;;, + 229;3; 0.000000, 0.705560, 0.000000;;, + 230;3; 0.000000, 0.705560, 0.000000;;, + 231;3; 0.000000, 0.705560, 0.000000;;, + 232;3; 0.000000, 0.705560, 0.000000;;, + 233;3; 0.000000, 0.705560, 0.000000;;, + 234;3; 0.000000, 0.705560, 0.000000;;, + 235;3; 0.000000, 0.705560, 0.000000;;, + 236;3; 0.000000, 0.705560, 0.000000;;, + 237;3; 0.000000, 0.705560, 0.000000;;, + 238;3; 0.000000, 0.705560, 0.000000;;, + 239;3; 0.000000, 0.705560, 0.000000;;, + 240;3; 0.000000, 0.705560, 0.000000;;, + 241;3; 0.000000, 0.705560, 0.000000;;, + 242;3; 0.000000, 0.705560, 0.000000;;, + 243;3; 0.000000, 0.705560, 0.000000;;, + 244;3; 0.000000, 0.705560, 0.000000;;, + 245;3; 0.000000, 0.705560, 0.000000;;, + 246;3; 0.000000, 0.705560, 0.000000;;, + 247;3; 0.000000, 0.705560, 0.000000;;, + 248;3; 0.000000, 0.705560, 0.000000;;, + 249;3; 0.000000, 0.705560, 0.000000;;; + } + } + Animation { + {Armature_Bone_023} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.771421,-0.611527, 0.109280,-0.137852;;, + 1;4;-0.771383,-0.611574, 0.109288,-0.137846;;, + 2;4;-0.771268,-0.611717, 0.109314,-0.137825;;, + 3;4;-0.771077,-0.611956, 0.109356,-0.137791;;, + 4;4;-0.770810,-0.612289, 0.109416,-0.137743;;, + 5;4;-0.770472,-0.612712, 0.109491,-0.137683;;, + 6;4;-0.770069,-0.613215, 0.109581,-0.137611;;, + 7;4;-0.769611,-0.613786, 0.109683,-0.137529;;, + 8;4;-0.769111,-0.614410, 0.109795,-0.137440;;, + 9;4;-0.768585,-0.615066, 0.109912,-0.137346;;, + 10;4;-0.768050,-0.615734, 0.110031,-0.137250;;, + 11;4;-0.767524,-0.616391, 0.110149,-0.137156;;, + 12;4;-0.767025,-0.617015, 0.110260,-0.137067;;, + 13;4;-0.766567,-0.617586, 0.110362,-0.136985;;, + 14;4;-0.766164,-0.618089, 0.110452,-0.136913;;, + 15;4;-0.765826,-0.618511, 0.110528,-0.136853;;, + 16;4;-0.765559,-0.618845, 0.110587,-0.136805;;, + 17;4;-0.765368,-0.619084, 0.110630,-0.136771;;, + 18;4;-0.765253,-0.619227, 0.110656,-0.136750;;, + 19;4;-0.765215,-0.619274, 0.110664,-0.136744;;, + 20;4;-0.765250,-0.619273, 0.110664,-0.136750;;, + 21;4;-0.765353,-0.619269, 0.110663,-0.136768;;, + 22;4;-0.765526,-0.619255, 0.110661,-0.136799;;, + 23;4;-0.765767,-0.619226, 0.110655,-0.136842;;, + 24;4;-0.766074,-0.619175, 0.110646,-0.136897;;, + 25;4;-0.766440,-0.619095, 0.110632,-0.136962;;, + 26;4;-0.766859,-0.618976, 0.110611,-0.137037;;, + 27;4;-0.767321,-0.618810, 0.110581,-0.137120;;, + 28;4;-0.767812,-0.618590, 0.110542,-0.137208;;, + 29;4;-0.768318,-0.618306, 0.110491,-0.137298;;, + 30;4;-0.768824,-0.617952, 0.110428,-0.137389;;, + 31;4;-0.769315,-0.617525, 0.110351,-0.137476;;, + 32;4;-0.769777,-0.617022, 0.110262,-0.137559;;, + 33;4;-0.770196,-0.616442, 0.110158,-0.137634;;, + 34;4;-0.770562,-0.615788, 0.110041,-0.137699;;, + 35;4;-0.770869,-0.615061, 0.109911,-0.137754;;, + 36;4;-0.771110,-0.614267, 0.109769,-0.137797;;, + 37;4;-0.771283,-0.613409, 0.109616,-0.137828;;, + 38;4;-0.771386,-0.612494, 0.109452,-0.137846;;, + 39;4;-0.771421,-0.611527, 0.109280,-0.137852;;, + 40;4;-0.771513,-0.608447, 0.111554,-0.137332;;, + 41;4;-0.771799,-0.601146, 0.118788,-0.135724;;, + 42;4;-0.772288,-0.589611, 0.131004,-0.132963;;, + 43;4;-0.772988,-0.573918, 0.148122,-0.128993;;, + 44;4;-0.773905,-0.554256, 0.169928,-0.123773;;, + 45;4;-0.775038,-0.530951, 0.196051,-0.117285;;, + 46;4;-0.776383,-0.504480, 0.225941,-0.109540;;, + 47;4;-0.777930,-0.475476, 0.258868,-0.100584;;, + 48;4;-0.779660,-0.444714, 0.293934,-0.090500;;, + 49;4;-0.781550,-0.413078, 0.330110,-0.079409;;, + 50;4;-0.783570,-0.381511, 0.366299,-0.067463;;, + 51;4;-0.785687,-0.350955, 0.401401,-0.054837;;, + 52;4;-0.787868,-0.322289, 0.434389,-0.041717;;, + 53;4;-0.790080,-0.296279, 0.464362,-0.028287;;, + 54;4;-0.792292,-0.273548, 0.490587,-0.014718;;, + 55;4;-0.794478,-0.254562, 0.512514,-0.001165;;, + 56;4;-0.796616,-0.239634, 0.529768, 0.012243;;, + 57;4;-0.798689,-0.228943, 0.542135, 0.025404;;, + 58;4;-0.800685,-0.222552, 0.549532, 0.038235;;, + 59;4;-0.802594,-0.220439, 0.551979, 0.050678;;, + 60;4;-0.803234,-0.226598, 0.547749, 0.064819;;, + 61;4;-0.801388,-0.245135, 0.535019, 0.082628;;, + 62;4;-0.797161,-0.275275, 0.514321, 0.103547;;, + 63;4;-0.790953,-0.314696, 0.487249, 0.126446;;, + 64;4;-0.783502,-0.359354, 0.456581, 0.149634;;, + 65;4;-0.775791,-0.404011, 0.425912, 0.171123;;, + 66;4;-0.768833,-0.443432, 0.398840, 0.189097;;, + 67;4;-0.763432,-0.473572, 0.378142, 0.202309;;, + 68;4;-0.760075,-0.492109, 0.365412, 0.210200;;, + 69;4;-0.758951,-0.498268, 0.361182, 0.212768;;, + 70;4;-0.759085,-0.497589, 0.361648, 0.212577;;, + 71;4;-0.759489,-0.495540, 0.363056, 0.211993;;, + 72;4;-0.760163,-0.492109, 0.365412, 0.210998;;, + 73;4;-0.761106,-0.487294, 0.368719, 0.209574;;, + 74;4;-0.762312,-0.481106, 0.372968, 0.207706;;, + 75;4;-0.763773,-0.473572, 0.378142, 0.205381;;, + 76;4;-0.765478,-0.464736, 0.384210, 0.202587;;, + 77;4;-0.767411,-0.454661, 0.391129, 0.199318;;, + 78;4;-0.769551,-0.443432, 0.398840, 0.195570;;, + 79;4;-0.771874,-0.431157, 0.407270, 0.191346;;, + 80;4;-0.774349,-0.417966, 0.416329, 0.186653;;, + 81;4;-0.776943,-0.404011, 0.425912, 0.181505;;, + 82;4;-0.779618,-0.389464, 0.435903, 0.175923;;, + 83;4;-0.782334,-0.374511, 0.446171, 0.169932;;, + 84;4;-0.785048,-0.359353, 0.456581, 0.163566;;, + 85;4;-0.787716,-0.344196, 0.466990, 0.156862;;, + 86;4;-0.790296,-0.329243, 0.477259, 0.149861;;, + 87;4;-0.792747,-0.314696, 0.487249, 0.142608;;, + 88;4;-0.795030,-0.300741, 0.496833, 0.135147;;, + 89;4;-0.797113,-0.287550, 0.505892, 0.127525;;, + 90;4;-0.798963,-0.275275, 0.514321, 0.119786;;, + 91;4;-0.800558,-0.264046, 0.522032, 0.111973;;, + 92;4;-0.801876,-0.253971, 0.528951, 0.104123;;, + 93;4;-0.802902,-0.245135, 0.535019, 0.096274;;, + 94;4;-0.803626,-0.237601, 0.540193, 0.088457;;, + 95;4;-0.804041,-0.231413, 0.544443, 0.080698;;, + 96;4;-0.804144,-0.226598, 0.547749, 0.073023;;, + 97;4;-0.803935,-0.223167, 0.550106, 0.065451;;, + 98;4;-0.803417,-0.221118, 0.551513, 0.057998;;, + 99;4;-0.802594,-0.220439, 0.551979, 0.050678;;, + 100;4;-0.801502,-0.222594, 0.549539, 0.042883;;, + 101;4;-0.800173,-0.229109, 0.542165, 0.034006;;, + 102;4;-0.798612,-0.240003, 0.529834, 0.024080;;, + 103;4;-0.796830,-0.255203, 0.512628, 0.013164;;, + 104;4;-0.794849,-0.274520, 0.490761, 0.001357;;, + 105;4;-0.792695,-0.297629, 0.464603,-0.011201;;, + 106;4;-0.790406,-0.324043, 0.434702,-0.024325;;, + 107;4;-0.788031,-0.353120, 0.401788,-0.037787;;, + 108;4;-0.785623,-0.384068, 0.366756,-0.051325;;, + 109;4;-0.783243,-0.415983, 0.330629,-0.064653;;, + 110;4;-0.780953,-0.447898, 0.294503,-0.077477;;, + 111;4;-0.778812,-0.478846, 0.259471,-0.089520;;, + 112;4;-0.776874,-0.507923, 0.226556,-0.100534;;, + 113;4;-0.775183,-0.534337, 0.196656,-0.110314;;, + 114;4;-0.773773,-0.557446, 0.170498,-0.118708;;, + 115;4;-0.772668,-0.576764, 0.148631,-0.125615;;, + 116;4;-0.771878,-0.591963, 0.131425,-0.130981;;, + 117;4;-0.771410,-0.602857, 0.119094,-0.134792;;, + 118;4;-0.771260,-0.609372, 0.111719,-0.137069;;, + 119;4;-0.771421,-0.611527, 0.109280,-0.137852;;, + 120;4;-0.778403,-0.610609, 0.109116,-0.139100;;, + 121;4;-0.798296,-0.602678, 0.107698,-0.142655;;, + 122;4;-0.825875,-0.578141, 0.103313,-0.147583;;, + 123;4;-0.851558,-0.531094, 0.094906,-0.152173;;, + 124;4;-0.868393,-0.463625, 0.082850,-0.155181;;, + 125;4;-0.872542,-0.355709, 0.057579,-0.191248;;, + 126;4;-0.862470,-0.194737, 0.011953,-0.288947;;, + 127;4;-0.844081,-0.023920,-0.040220,-0.413417;;, + 128;4;-0.828057, 0.097937,-0.078856,-0.510053;;, + 129;4;-0.822080, 0.139301,-0.092233,-0.544310;;, + 130;4;-0.831370, 0.141778,-0.077698,-0.457581;;, + 131;4;-0.855831, 0.148069,-0.036635,-0.212987;;, + 132;4;-0.882660, 0.154313, 0.016417, 0.101888;;, + 133;4;-0.894642, 0.155604, 0.058373, 0.348711;;, + 134;4;-0.882701, 0.149574, 0.074428, 0.439234;;, + 135;4;-0.852893, 0.097087, 0.034257, 0.439299;;, + 136;4;-0.814548,-0.032474,-0.082159, 0.431328;;, + 137;4;-0.776757,-0.194243,-0.232456, 0.419049;;, + 138;4;-0.750890,-0.318804,-0.349765, 0.408849;;, + 139;4;-0.742313,-0.362784,-0.391457, 0.405119;;, + 140;4;-0.742313,-0.362784,-0.391457, 0.405119;;, + 141;4;-0.742313,-0.362784,-0.391457, 0.405119;;, + 142;4;-0.742313,-0.362784,-0.391457, 0.405119;;, + 143;4;-0.742313,-0.362784,-0.391457, 0.405119;;, + 144;4;-0.742313,-0.362784,-0.391457, 0.405119;;, + 145;4;-0.744900,-0.384894,-0.346947, 0.356855;;, + 146;4;-0.752188,-0.447173,-0.221576, 0.220910;;, + 147;4;-0.761545,-0.527138,-0.060601, 0.046357;;, + 148;4;-0.768833,-0.589416, 0.064770,-0.089588;;, + 149;4;-0.771421,-0.611527, 0.109280,-0.137852;;, + 150;4;-0.771421,-0.611527, 0.109280,-0.137852;;, + 151;4;-0.771421,-0.611527, 0.109280,-0.137852;;, + 152;4;-0.771421,-0.611527, 0.109280,-0.137852;;, + 153;4;-0.771421,-0.611527, 0.109280,-0.137852;;, + 154;4;-0.771421,-0.611527, 0.109280,-0.137852;;, + 155;4;-0.771421,-0.611527, 0.109280,-0.137852;;, + 156;4;-0.771421,-0.611527, 0.109280,-0.137852;;, + 157;4;-0.771421,-0.611527, 0.109280,-0.137852;;, + 158;4;-0.771421,-0.611527, 0.109280,-0.137852;;, + 159;4;-0.771421,-0.611527, 0.109280,-0.137852;;, + 160;4;-0.771421,-0.611527, 0.109280,-0.137852;;, + 161;4;-0.771421,-0.611527, 0.109280,-0.137852;;, + 162;4;-0.771421,-0.611527, 0.109280,-0.137852;;, + 163;4;-0.771421,-0.611527, 0.109280,-0.137852;;, + 164;4;-0.771421,-0.611527, 0.109280,-0.137852;;, + 165;4;-0.771421,-0.611527, 0.109280,-0.137852;;, + 166;4;-0.771421,-0.611527, 0.109280,-0.137852;;, + 167;4;-0.771421,-0.611527, 0.109280,-0.137852;;, + 168;4;-0.771421,-0.611527, 0.109280,-0.137852;;, + 169;4;-0.771421,-0.611527, 0.109280,-0.137852;;, + 170;4;-0.771421,-0.611527, 0.109280,-0.137852;;, + 171;4;-0.771421,-0.611527, 0.109280,-0.137852;;, + 172;4;-0.771421,-0.611527, 0.109280,-0.137852;;, + 173;4;-0.771421,-0.611527, 0.109280,-0.137852;;, + 174;4;-0.771421,-0.611527, 0.109280,-0.137852;;, + 175;4;-0.771421,-0.611527, 0.109280,-0.137852;;, + 176;4;-0.771421,-0.611527, 0.109280,-0.137852;;, + 177;4;-0.771421,-0.611527, 0.109280,-0.137852;;, + 178;4;-0.771421,-0.611527, 0.109280,-0.137852;;, + 179;4;-0.771421,-0.611527, 0.109280,-0.137852;;, + 180;4;-0.771421,-0.611527, 0.109280,-0.137852;;, + 181;4;-0.771421,-0.611527, 0.109280,-0.137852;;, + 182;4;-0.771421,-0.611527, 0.109280,-0.137852;;, + 183;4;-0.771421,-0.611527, 0.109280,-0.137852;;, + 184;4;-0.771421,-0.611527, 0.109280,-0.137852;;, + 185;4;-0.771421,-0.611527, 0.109280,-0.137852;;, + 186;4;-0.771421,-0.611527, 0.109280,-0.137852;;, + 187;4;-0.771421,-0.611527, 0.109280,-0.137852;;, + 188;4;-0.771421,-0.611527, 0.109280,-0.137852;;, + 189;4;-0.771421,-0.611527, 0.109280,-0.137852;;, + 190;4;-0.771421,-0.611527, 0.109280,-0.137852;;, + 191;4;-0.771421,-0.611527, 0.109280,-0.137852;;, + 192;4;-0.771421,-0.611527, 0.109280,-0.137852;;, + 193;4;-0.771421,-0.611527, 0.109280,-0.137852;;, + 194;4;-0.771421,-0.611527, 0.109280,-0.137852;;, + 195;4;-0.771421,-0.611527, 0.109280,-0.137852;;, + 196;4;-0.771421,-0.611527, 0.109280,-0.137852;;, + 197;4;-0.771421,-0.611527, 0.109280,-0.137852;;, + 198;4;-0.771421,-0.611527, 0.109280,-0.137852;;, + 199;4;-0.771421,-0.611527, 0.109280,-0.137852;;, + 200;4;-0.771421,-0.611527, 0.109280,-0.137852;;, + 201;4;-0.771421,-0.611527, 0.109280,-0.137852;;, + 202;4;-0.771421,-0.611527, 0.109280,-0.137852;;, + 203;4;-0.771421,-0.611527, 0.109280,-0.137852;;, + 204;4;-0.771421,-0.611527, 0.109280,-0.137852;;, + 205;4;-0.771421,-0.611527, 0.109280,-0.137852;;, + 206;4;-0.771421,-0.611527, 0.109280,-0.137852;;, + 207;4;-0.771421,-0.611527, 0.109280,-0.137852;;, + 208;4;-0.771421,-0.611527, 0.109280,-0.137852;;, + 209;4;-0.771421,-0.611527, 0.109280,-0.137852;;, + 210;4;-0.771421,-0.611527, 0.109280,-0.137852;;, + 211;4;-0.771421,-0.611527, 0.109280,-0.137852;;, + 212;4;-0.771421,-0.611527, 0.109280,-0.137852;;, + 213;4;-0.771421,-0.611527, 0.109280,-0.137852;;, + 214;4;-0.771421,-0.611527, 0.109280,-0.137852;;, + 215;4;-0.771421,-0.611527, 0.109280,-0.137852;;, + 216;4;-0.771421,-0.611527, 0.109280,-0.137852;;, + 217;4;-0.771421,-0.611527, 0.109280,-0.137852;;, + 218;4;-0.771421,-0.611527, 0.109280,-0.137852;;, + 219;4;-0.771421,-0.611527, 0.109280,-0.137852;;, + 220;4;-0.771421,-0.611527, 0.109280,-0.137852;;, + 221;4;-0.771421,-0.611527, 0.109280,-0.137852;;, + 222;4;-0.771421,-0.611527, 0.109280,-0.137852;;, + 223;4;-0.771421,-0.611527, 0.109280,-0.137852;;, + 224;4;-0.771421,-0.611527, 0.109280,-0.137852;;, + 225;4;-0.771421,-0.611527, 0.109280,-0.137852;;, + 226;4;-0.771421,-0.611527, 0.109280,-0.137852;;, + 227;4;-0.771421,-0.611527, 0.109280,-0.137852;;, + 228;4;-0.771421,-0.611527, 0.109280,-0.137852;;, + 229;4;-0.771421,-0.611527, 0.109280,-0.137852;;, + 230;4;-0.771421,-0.611527, 0.109280,-0.137852;;, + 231;4;-0.771421,-0.611527, 0.109280,-0.137852;;, + 232;4;-0.771421,-0.611527, 0.109280,-0.137852;;, + 233;4;-0.771421,-0.611527, 0.109280,-0.137852;;, + 234;4;-0.771421,-0.611527, 0.109280,-0.137852;;, + 235;4;-0.771421,-0.611527, 0.109280,-0.137852;;, + 236;4;-0.771421,-0.611527, 0.109280,-0.137852;;, + 237;4;-0.771421,-0.611527, 0.109280,-0.137852;;, + 238;4;-0.771421,-0.611527, 0.109280,-0.137852;;, + 239;4;-0.771421,-0.611527, 0.109280,-0.137852;;, + 240;4;-0.771421,-0.611527, 0.109280,-0.137852;;, + 241;4;-0.771421,-0.611527, 0.109280,-0.137852;;, + 242;4;-0.771421,-0.611527, 0.109280,-0.137852;;, + 243;4;-0.771421,-0.611527, 0.109280,-0.137852;;, + 244;4;-0.771421,-0.611527, 0.109280,-0.137852;;, + 245;4;-0.771421,-0.611527, 0.109280,-0.137852;;, + 246;4;-0.771421,-0.611527, 0.109280,-0.137852;;, + 247;4;-0.771421,-0.611527, 0.109280,-0.137852;;, + 248;4;-0.771421,-0.611527, 0.109280,-0.137852;;, + 249;4;-0.771421,-0.611527, 0.109280,-0.137852;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3;-0.000000, 0.974908, 0.000000;;, + 1;3;-0.000000, 0.974908, 0.000000;;, + 2;3;-0.000000, 0.974908, 0.000000;;, + 3;3;-0.000000, 0.974908, 0.000000;;, + 4;3;-0.000000, 0.974908, 0.000000;;, + 5;3;-0.000000, 0.974908, 0.000000;;, + 6;3;-0.000000, 0.974908, 0.000000;;, + 7;3;-0.000000, 0.974908, 0.000000;;, + 8;3;-0.000000, 0.974908, 0.000000;;, + 9;3;-0.000000, 0.974908, 0.000000;;, + 10;3;-0.000000, 0.974908, 0.000000;;, + 11;3;-0.000000, 0.974908, 0.000000;;, + 12;3;-0.000000, 0.974908, 0.000000;;, + 13;3;-0.000000, 0.974908, 0.000000;;, + 14;3;-0.000000, 0.974908, 0.000000;;, + 15;3;-0.000000, 0.974908, 0.000000;;, + 16;3;-0.000000, 0.974908, 0.000000;;, + 17;3;-0.000000, 0.974908, 0.000000;;, + 18;3;-0.000000, 0.974908, 0.000000;;, + 19;3;-0.000000, 0.974908, 0.000000;;, + 20;3;-0.000000, 0.974908, 0.000000;;, + 21;3;-0.000000, 0.974908, 0.000000;;, + 22;3;-0.000000, 0.974908, 0.000000;;, + 23;3;-0.000000, 0.974908, 0.000000;;, + 24;3;-0.000000, 0.974908, 0.000000;;, + 25;3;-0.000000, 0.974908, 0.000000;;, + 26;3;-0.000000, 0.974908, 0.000000;;, + 27;3;-0.000000, 0.974908, 0.000000;;, + 28;3;-0.000000, 0.974908, 0.000000;;, + 29;3;-0.000000, 0.974908, 0.000000;;, + 30;3;-0.000000, 0.974908, 0.000000;;, + 31;3;-0.000000, 0.974908, 0.000000;;, + 32;3;-0.000000, 0.974908, 0.000000;;, + 33;3;-0.000000, 0.974908, 0.000000;;, + 34;3;-0.000000, 0.974908, 0.000000;;, + 35;3;-0.000000, 0.974908, 0.000000;;, + 36;3;-0.000000, 0.974908, 0.000000;;, + 37;3;-0.000000, 0.974908, 0.000000;;, + 38;3;-0.000000, 0.974908, 0.000000;;, + 39;3;-0.000000, 0.974908, 0.000000;;, + 40;3; 0.000000, 0.974908, 0.000000;;, + 41;3;-0.000000, 0.974908, 0.000000;;, + 42;3;-0.000000, 0.974908,-0.000000;;, + 43;3; 0.000000, 0.974908,-0.000000;;, + 44;3; 0.000000, 0.974908, 0.000000;;, + 45;3;-0.000000, 0.974909,-0.000000;;, + 46;3;-0.000000, 0.974908,-0.000000;;, + 47;3; 0.000000, 0.974908,-0.000000;;, + 48;3; 0.000000, 0.974909, 0.000000;;, + 49;3;-0.000000, 0.974908, 0.000000;;, + 50;3;-0.000000, 0.974908,-0.000000;;, + 51;3; 0.000000, 0.974908, 0.000000;;, + 52;3; 0.000000, 0.974908,-0.000000;;, + 53;3;-0.000000, 0.974908, 0.000000;;, + 54;3; 0.000000, 0.974908, 0.000000;;, + 55;3; 0.000000, 0.974908,-0.000000;;, + 56;3; 0.000000, 0.974908, 0.000000;;, + 57;3; 0.000000, 0.974908, 0.000000;;, + 58;3;-0.000000, 0.974908,-0.000000;;, + 59;3;-0.000000, 0.974908,-0.000000;;, + 60;3; 0.000000, 0.974908, 0.000000;;, + 61;3; 0.000000, 0.974908,-0.000000;;, + 62;3; 0.000000, 0.974908, 0.000000;;, + 63;3; 0.000000, 0.974908, 0.000000;;, + 64;3; 0.000000, 0.974908,-0.000000;;, + 65;3;-0.000000, 0.974908, 0.000000;;, + 66;3; 0.000000, 0.974908, 0.000000;;, + 67;3;-0.000000, 0.974908, 0.000000;;, + 68;3;-0.000000, 0.974908,-0.000000;;, + 69;3;-0.000000, 0.974908,-0.000000;;, + 70;3;-0.000000, 0.974908,-0.000000;;, + 71;3;-0.000000, 0.974908,-0.000000;;, + 72;3;-0.000000, 0.974908,-0.000000;;, + 73;3;-0.000000, 0.974908, 0.000000;;, + 74;3;-0.000000, 0.974908, 0.000000;;, + 75;3;-0.000000, 0.974908,-0.000000;;, + 76;3;-0.000000, 0.974908, 0.000000;;, + 77;3;-0.000000, 0.974908,-0.000000;;, + 78;3; 0.000000, 0.974908, 0.000000;;, + 79;3; 0.000000, 0.974908, 0.000000;;, + 80;3; 0.000000, 0.974908,-0.000000;;, + 81;3;-0.000000, 0.974908, 0.000000;;, + 82;3; 0.000000, 0.974908, 0.000000;;, + 83;3; 0.000000, 0.974908,-0.000000;;, + 84;3; 0.000000, 0.974908,-0.000000;;, + 85;3; 0.000000, 0.974908, 0.000000;;, + 86;3; 0.000000, 0.974908,-0.000000;;, + 87;3; 0.000000, 0.974908, 0.000000;;, + 88;3; 0.000000, 0.974908, 0.000000;;, + 89;3; 0.000000, 0.974908,-0.000000;;, + 90;3;-0.000000, 0.974908,-0.000000;;, + 91;3; 0.000000, 0.974908,-0.000000;;, + 92;3; 0.000000, 0.974908,-0.000000;;, + 93;3; 0.000000, 0.974908,-0.000000;;, + 94;3;-0.000000, 0.974908,-0.000000;;, + 95;3; 0.000000, 0.974908,-0.000000;;, + 96;3; 0.000000, 0.974908,-0.000000;;, + 97;3;-0.000000, 0.974908,-0.000000;;, + 98;3; 0.000000, 0.974908, 0.000000;;, + 99;3;-0.000000, 0.974908,-0.000000;;, + 100;3;-0.000000, 0.974908,-0.000000;;, + 101;3; 0.000000, 0.974908,-0.000000;;, + 102;3; 0.000000, 0.974908, 0.000000;;, + 103;3; 0.000000, 0.974908, 0.000000;;, + 104;3;-0.000000, 0.974908, 0.000000;;, + 105;3; 0.000000, 0.974908, 0.000000;;, + 106;3;-0.000000, 0.974908, 0.000000;;, + 107;3; 0.000000, 0.974908,-0.000000;;, + 108;3; 0.000000, 0.974908, 0.000000;;, + 109;3; 0.000000, 0.974908,-0.000000;;, + 110;3;-0.000000, 0.974908, 0.000000;;, + 111;3; 0.000000, 0.974908, 0.000000;;, + 112;3;-0.000000, 0.974908,-0.000000;;, + 113;3; 0.000000, 0.974908,-0.000000;;, + 114;3;-0.000000, 0.974908,-0.000000;;, + 115;3;-0.000000, 0.974908,-0.000000;;, + 116;3; 0.000000, 0.974908,-0.000000;;, + 117;3;-0.000000, 0.974908,-0.000000;;, + 118;3; 0.000000, 0.974908, 0.000000;;, + 119;3;-0.000000, 0.974908, 0.000000;;, + 120;3;-0.000000, 0.974908,-0.000000;;, + 121;3; 0.000000, 0.974908,-0.000000;;, + 122;3; 0.000000, 0.974908,-0.000000;;, + 123;3;-0.000000, 0.974909, 0.000000;;, + 124;3; 0.000000, 0.974909, 0.000000;;, + 125;3; 0.000000, 0.974908,-0.000000;;, + 126;3; 0.000000, 0.974908,-0.000000;;, + 127;3; 0.000000, 0.974908,-0.000000;;, + 128;3; 0.000000, 0.974908,-0.000000;;, + 129;3; 0.000000, 0.974908, 0.000000;;, + 130;3; 0.000000, 0.974908, 0.000000;;, + 131;3; 0.000000, 0.974908, 0.000000;;, + 132;3; 0.000000, 0.974908,-0.000000;;, + 133;3;-0.000000, 0.974908, 0.000000;;, + 134;3;-0.000000, 0.974908, 0.000000;;, + 135;3; 0.000000, 0.974908, 0.000000;;, + 136;3; 0.000000, 0.974908, 0.000000;;, + 137;3; 0.000000, 0.974908, 0.000000;;, + 138;3; 0.000000, 0.974908, 0.000000;;, + 139;3;-0.000000, 0.974908, 0.000000;;, + 140;3; 0.000000, 0.974908, 0.000000;;, + 141;3; 0.000000, 0.974908, 0.000000;;, + 142;3; 0.000000, 0.974908,-0.000000;;, + 143;3; 0.000000, 0.974908, 0.000000;;, + 144;3; 0.000000, 0.974908,-0.000000;;, + 145;3; 0.000000, 0.974908,-0.000000;;, + 146;3;-0.000000, 0.974908, 0.000000;;, + 147;3;-0.000000, 0.974908,-0.000000;;, + 148;3; 0.000000, 0.974908, 0.000000;;, + 149;3;-0.000000, 0.974908, 0.000000;;, + 150;3;-0.000000, 0.974908, 0.000000;;, + 151;3;-0.000000, 0.974908, 0.000000;;, + 152;3;-0.000000, 0.974908, 0.000000;;, + 153;3;-0.000000, 0.974908, 0.000000;;, + 154;3;-0.000000, 0.974908, 0.000000;;, + 155;3;-0.000000, 0.974908, 0.000000;;, + 156;3;-0.000000, 0.974908, 0.000000;;, + 157;3;-0.000000, 0.974908, 0.000000;;, + 158;3;-0.000000, 0.974908, 0.000000;;, + 159;3;-0.000000, 0.974908, 0.000000;;, + 160;3;-0.000000, 0.974908, 0.000000;;, + 161;3;-0.000000, 0.974908, 0.000000;;, + 162;3;-0.000000, 0.974908, 0.000000;;, + 163;3;-0.000000, 0.974908, 0.000000;;, + 164;3;-0.000000, 0.974908, 0.000000;;, + 165;3;-0.000000, 0.974908, 0.000000;;, + 166;3;-0.000000, 0.974908, 0.000000;;, + 167;3;-0.000000, 0.974908, 0.000000;;, + 168;3;-0.000000, 0.974908, 0.000000;;, + 169;3;-0.000000, 0.974908, 0.000000;;, + 170;3;-0.000000, 0.974908, 0.000000;;, + 171;3;-0.000000, 0.974908, 0.000000;;, + 172;3;-0.000000, 0.974908, 0.000000;;, + 173;3;-0.000000, 0.974908, 0.000000;;, + 174;3;-0.000000, 0.974908, 0.000000;;, + 175;3;-0.000000, 0.974908, 0.000000;;, + 176;3;-0.000000, 0.974908, 0.000000;;, + 177;3;-0.000000, 0.974908, 0.000000;;, + 178;3;-0.000000, 0.974908, 0.000000;;, + 179;3;-0.000000, 0.974908, 0.000000;;, + 180;3;-0.000000, 0.974908, 0.000000;;, + 181;3;-0.000000, 0.974908, 0.000000;;, + 182;3;-0.000000, 0.974908, 0.000000;;, + 183;3;-0.000000, 0.974908, 0.000000;;, + 184;3;-0.000000, 0.974908, 0.000000;;, + 185;3;-0.000000, 0.974908, 0.000000;;, + 186;3;-0.000000, 0.974908, 0.000000;;, + 187;3;-0.000000, 0.974908, 0.000000;;, + 188;3;-0.000000, 0.974908, 0.000000;;, + 189;3;-0.000000, 0.974908, 0.000000;;, + 190;3;-0.000000, 0.974908, 0.000000;;, + 191;3;-0.000000, 0.974908, 0.000000;;, + 192;3;-0.000000, 0.974908, 0.000000;;, + 193;3;-0.000000, 0.974908, 0.000000;;, + 194;3;-0.000000, 0.974908, 0.000000;;, + 195;3;-0.000000, 0.974908, 0.000000;;, + 196;3;-0.000000, 0.974908, 0.000000;;, + 197;3;-0.000000, 0.974908, 0.000000;;, + 198;3;-0.000000, 0.974908, 0.000000;;, + 199;3;-0.000000, 0.974908, 0.000000;;, + 200;3;-0.000000, 0.974908, 0.000000;;, + 201;3;-0.000000, 0.974908, 0.000000;;, + 202;3;-0.000000, 0.974908, 0.000000;;, + 203;3;-0.000000, 0.974908, 0.000000;;, + 204;3;-0.000000, 0.974908, 0.000000;;, + 205;3;-0.000000, 0.974908, 0.000000;;, + 206;3;-0.000000, 0.974908, 0.000000;;, + 207;3;-0.000000, 0.974908, 0.000000;;, + 208;3;-0.000000, 0.974908, 0.000000;;, + 209;3;-0.000000, 0.974908, 0.000000;;, + 210;3;-0.000000, 0.974908, 0.000000;;, + 211;3;-0.000000, 0.974908, 0.000000;;, + 212;3;-0.000000, 0.974908, 0.000000;;, + 213;3;-0.000000, 0.974908, 0.000000;;, + 214;3;-0.000000, 0.974908, 0.000000;;, + 215;3;-0.000000, 0.974908, 0.000000;;, + 216;3;-0.000000, 0.974908, 0.000000;;, + 217;3;-0.000000, 0.974908, 0.000000;;, + 218;3;-0.000000, 0.974908, 0.000000;;, + 219;3;-0.000000, 0.974908, 0.000000;;, + 220;3;-0.000000, 0.974908, 0.000000;;, + 221;3;-0.000000, 0.974908, 0.000000;;, + 222;3;-0.000000, 0.974908, 0.000000;;, + 223;3;-0.000000, 0.974908, 0.000000;;, + 224;3;-0.000000, 0.974908, 0.000000;;, + 225;3;-0.000000, 0.974908, 0.000000;;, + 226;3;-0.000000, 0.974908, 0.000000;;, + 227;3;-0.000000, 0.974908, 0.000000;;, + 228;3;-0.000000, 0.974908, 0.000000;;, + 229;3;-0.000000, 0.974908, 0.000000;;, + 230;3;-0.000000, 0.974908, 0.000000;;, + 231;3;-0.000000, 0.974908, 0.000000;;, + 232;3;-0.000000, 0.974908, 0.000000;;, + 233;3;-0.000000, 0.974908, 0.000000;;, + 234;3;-0.000000, 0.974908, 0.000000;;, + 235;3;-0.000000, 0.974908, 0.000000;;, + 236;3;-0.000000, 0.974908, 0.000000;;, + 237;3;-0.000000, 0.974908, 0.000000;;, + 238;3;-0.000000, 0.974908, 0.000000;;, + 239;3;-0.000000, 0.974908, 0.000000;;, + 240;3;-0.000000, 0.974908, 0.000000;;, + 241;3;-0.000000, 0.974908, 0.000000;;, + 242;3;-0.000000, 0.974908, 0.000000;;, + 243;3;-0.000000, 0.974908, 0.000000;;, + 244;3;-0.000000, 0.974908, 0.000000;;, + 245;3;-0.000000, 0.974908, 0.000000;;, + 246;3;-0.000000, 0.974908, 0.000000;;, + 247;3;-0.000000, 0.974908, 0.000000;;, + 248;3;-0.000000, 0.974908, 0.000000;;, + 249;3;-0.000000, 0.974908, 0.000000;;; + } + } + Animation { + {Armature_Bone_025} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 1;4;-0.994102,-0.108422, 0.000000,-0.000000;;, + 2;4;-0.994034,-0.108972, 0.000000,-0.000000;;, + 3;4;-0.993920,-0.109891, 0.000000,-0.000000;;, + 4;4;-0.993761,-0.111171, 0.000000,-0.000000;;, + 5;4;-0.993560,-0.112795, 0.000000,-0.000000;;, + 6;4;-0.993320,-0.114728, 0.000000,-0.000000;;, + 7;4;-0.993047,-0.116925, 0.000000,-0.000000;;, + 8;4;-0.992750,-0.119323, 0.000000,-0.000000;;, + 9;4;-0.992436,-0.121847, 0.000000,-0.000000;;, + 10;4;-0.992118,-0.124415, 0.000000,-0.000000;;, + 11;4;-0.991805,-0.126939, 0.000000,-0.000000;;, + 12;4;-0.991507,-0.129337, 0.000000,-0.000000;;, + 13;4;-0.991234,-0.131534, 0.000000,-0.000000;;, + 14;4;-0.990994,-0.133467, 0.000000,-0.000000;;, + 15;4;-0.990793,-0.135090, 0.000000,-0.000000;;, + 16;4;-0.990634,-0.136371, 0.000000,-0.000000;;, + 17;4;-0.990520,-0.137290, 0.000000,-0.000000;;, + 18;4;-0.990452,-0.137840, 0.000000,-0.000000;;, + 19;4;-0.990429,-0.138022, 0.000000,-0.000000;;, + 20;4;-0.990450,-0.137858, 0.000000,-0.000000;;, + 21;4;-0.990511,-0.137362, 0.000000,-0.000000;;, + 22;4;-0.990614,-0.136532, 0.000000,-0.000000;;, + 23;4;-0.990758,-0.135375, 0.000000,-0.000000;;, + 24;4;-0.990940,-0.133904, 0.000000,-0.000000;;, + 25;4;-0.991159,-0.132144, 0.000000,-0.000000;;, + 26;4;-0.991408,-0.130132, 0.000000,-0.000000;;, + 27;4;-0.991683,-0.127918, 0.000000,-0.000000;;, + 28;4;-0.991975,-0.125561, 0.000000,-0.000000;;, + 29;4;-0.992277,-0.123131, 0.000000,-0.000000;;, + 30;4;-0.992579,-0.120701, 0.000000,-0.000000;;, + 31;4;-0.992871,-0.118344, 0.000000,-0.000000;;, + 32;4;-0.993146,-0.116129, 0.000000,-0.000000;;, + 33;4;-0.993396,-0.114118, 0.000000,-0.000000;;, + 34;4;-0.993614,-0.112358, 0.000000,-0.000000;;, + 35;4;-0.993796,-0.110887, 0.000000,-0.000000;;, + 36;4;-0.993940,-0.109730, 0.000000,-0.000000;;, + 37;4;-0.994043,-0.108900, 0.000000,-0.000000;;, + 38;4;-0.994105,-0.108404, 0.000000,-0.000000;;, + 39;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 40;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 41;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 42;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 43;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 44;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 45;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 46;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 47;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 48;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 49;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 50;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 51;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 52;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 53;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 54;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 55;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 56;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 57;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 58;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 59;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 60;4;-0.994195,-0.107457, 0.000206,-0.000155;;, + 61;4;-0.994405,-0.105100, 0.000825,-0.000622;;, + 62;4;-0.994746,-0.101269, 0.001832,-0.001382;;, + 63;4;-0.995192,-0.096258, 0.003148,-0.002376;;, + 64;4;-0.995698,-0.090581, 0.004640,-0.003501;;, + 65;4;-0.996203,-0.084904, 0.006132,-0.004627;;, + 66;4;-0.996649,-0.079893, 0.007448,-0.005620;;, + 67;4;-0.996991,-0.076062, 0.008455,-0.006380;;, + 68;4;-0.997200,-0.073705, 0.009074,-0.006847;;, + 69;4;-0.997270,-0.072922, 0.009280,-0.007003;;, + 70;4;-0.997262,-0.073009, 0.009257,-0.006985;;, + 71;4;-0.997239,-0.073269, 0.009189,-0.006934;;, + 72;4;-0.997200,-0.073705, 0.009074,-0.006847;;, + 73;4;-0.997146,-0.074317, 0.008913,-0.006726;;, + 74;4;-0.997076,-0.075104, 0.008707,-0.006570;;, + 75;4;-0.996991,-0.076062, 0.008455,-0.006380;;, + 76;4;-0.996890,-0.077185, 0.008160,-0.006157;;, + 77;4;-0.996776,-0.078466, 0.007823,-0.005904;;, + 78;4;-0.996649,-0.079893, 0.007448,-0.005620;;, + 79;4;-0.996510,-0.081453, 0.007038,-0.005311;;, + 80;4;-0.996361,-0.083130, 0.006598,-0.004979;;, + 81;4;-0.996203,-0.084904, 0.006132,-0.004627;;, + 82;4;-0.996038,-0.086754, 0.005646,-0.004260;;, + 83;4;-0.995869,-0.088654, 0.005146,-0.003883;;, + 84;4;-0.995697,-0.090581, 0.004640,-0.003501;;, + 85;4;-0.995526,-0.092508, 0.004134,-0.003119;;, + 86;4;-0.995357,-0.094409, 0.003634,-0.002742;;, + 87;4;-0.995192,-0.096258, 0.003148,-0.002376;;, + 88;4;-0.995034,-0.098032, 0.002682,-0.002024;;, + 89;4;-0.994885,-0.099709, 0.002242,-0.001692;;, + 90;4;-0.994746,-0.101269, 0.001832,-0.001382;;, + 91;4;-0.994619,-0.102696, 0.001457,-0.001099;;, + 92;4;-0.994505,-0.103977, 0.001120,-0.000845;;, + 93;4;-0.994404,-0.105100, 0.000825,-0.000622;;, + 94;4;-0.994319,-0.106058, 0.000573,-0.000433;;, + 95;4;-0.994249,-0.106845, 0.000367,-0.000277;;, + 96;4;-0.994195,-0.107457, 0.000206,-0.000155;;, + 97;4;-0.994156,-0.107893, 0.000091,-0.000069;;, + 98;4;-0.994133,-0.108153, 0.000023,-0.000017;;, + 99;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 100;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 101;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 102;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 103;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 104;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 105;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 106;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 107;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 108;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 109;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 110;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 111;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 112;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 113;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 114;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 115;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 116;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 117;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 118;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 119;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 120;4;-0.994230,-0.100997, 0.000000,-0.000000;;, + 121;4;-0.994576,-0.076339, 0.000000,-0.000000;;, + 122;4;-0.995150,-0.033245, 0.000000,-0.000000;;, + 123;4;-0.995852, 0.022571, 0.000000,-0.000000;;, + 124;4;-0.996564, 0.082825, 0.000000, 0.000000;;, + 125;4;-0.983921, 0.162962, 0.015766, 0.001258;;, + 126;4;-0.947006, 0.274780, 0.060179, 0.005147;;, + 127;4;-0.899280, 0.389780, 0.117219, 0.011073;;, + 128;4;-0.862009, 0.470440, 0.161669, 0.017501;;, + 129;4;-0.848759, 0.497564, 0.177500, 0.023077;;, + 130;4;-0.860243, 0.435379, 0.163556, 0.028894;;, + 131;4;-0.892591, 0.260224, 0.124143, 0.036003;;, + 132;4;-0.934125, 0.035325, 0.073502, 0.042803;;, + 133;4;-0.966473,-0.139831, 0.034050, 0.047373;;, + 134;4;-0.977957,-0.202015, 0.020042, 0.048873;;, + 135;4;-0.977957,-0.202015, 0.020042, 0.048873;;, + 136;4;-0.977957,-0.202015, 0.020042, 0.048873;;, + 137;4;-0.977957,-0.202015, 0.020042, 0.048873;;, + 138;4;-0.977957,-0.202015, 0.020042, 0.048873;;, + 139;4;-0.977957,-0.202015, 0.020042, 0.048873;;, + 140;4;-0.977957,-0.202015, 0.020042, 0.048873;;, + 141;4;-0.977957,-0.202015, 0.020042, 0.048873;;, + 142;4;-0.977957,-0.202015, 0.020042, 0.048873;;, + 143;4;-0.977957,-0.202015, 0.020042, 0.048873;;, + 144;4;-0.977957,-0.202015, 0.020042, 0.048873;;, + 145;4;-0.979394,-0.193680, 0.018261, 0.044529;;, + 146;4;-0.983442,-0.170201, 0.013243, 0.032292;;, + 147;4;-0.988640,-0.140054, 0.006800, 0.016581;;, + 148;4;-0.992688,-0.116575, 0.001782, 0.004344;;, + 149;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 150;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 151;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 152;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 153;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 154;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 155;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 156;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 157;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 158;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 159;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 160;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 161;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 162;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 163;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 164;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 165;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 166;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 167;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 168;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 169;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 170;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 171;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 172;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 173;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 174;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 175;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 176;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 177;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 178;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 179;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 180;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 181;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 182;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 183;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 184;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 185;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 186;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 187;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 188;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 189;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 190;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 191;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 192;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 193;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 194;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 195;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 196;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 197;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 198;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 199;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 200;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 201;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 202;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 203;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 204;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 205;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 206;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 207;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 208;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 209;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 210;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 211;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 212;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 213;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 214;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 215;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 216;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 217;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 218;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 219;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 220;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 221;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 222;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 223;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 224;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 225;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 226;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 227;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 228;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 229;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 230;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 231;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 232;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 233;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 234;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 235;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 236;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 237;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 238;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 239;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 240;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 241;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 242;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 243;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 244;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 245;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 246;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 247;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 248;4;-0.994125,-0.108240, 0.000000,-0.000000;;, + 249;4;-0.994125,-0.108240, 0.000000,-0.000000;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3;-0.000000, 2.410316, 0.000000;;, + 1;3;-0.000000, 2.410316, 0.000000;;, + 2;3;-0.000000, 2.410316, 0.000000;;, + 3;3;-0.000000, 2.410316, 0.000000;;, + 4;3;-0.000000, 2.410316, 0.000000;;, + 5;3;-0.000000, 2.410316,-0.000000;;, + 6;3; 0.000000, 2.410316, 0.000000;;, + 7;3;-0.000000, 2.410316, 0.000000;;, + 8;3; 0.000000, 2.410316, 0.000000;;, + 9;3;-0.000000, 2.410316, 0.000000;;, + 10;3;-0.000000, 2.410316, 0.000000;;, + 11;3;-0.000000, 2.410316,-0.000000;;, + 12;3;-0.000000, 2.410316,-0.000000;;, + 13;3;-0.000000, 2.410316,-0.000000;;, + 14;3;-0.000000, 2.410316, 0.000000;;, + 15;3;-0.000000, 2.410316,-0.000000;;, + 16;3;-0.000000, 2.410316,-0.000000;;, + 17;3;-0.000000, 2.410316,-0.000000;;, + 18;3;-0.000000, 2.410316,-0.000000;;, + 19;3;-0.000000, 2.410316, 0.000000;;, + 20;3;-0.000000, 2.410316, 0.000000;;, + 21;3;-0.000000, 2.410316,-0.000000;;, + 22;3;-0.000000, 2.410316,-0.000000;;, + 23;3;-0.000000, 2.410316, 0.000000;;, + 24;3;-0.000000, 2.410316,-0.000000;;, + 25;3;-0.000000, 2.410316, 0.000000;;, + 26;3; 0.000000, 2.410316,-0.000000;;, + 27;3;-0.000000, 2.410316, 0.000000;;, + 28;3;-0.000000, 2.410316, 0.000000;;, + 29;3;-0.000000, 2.410316, 0.000000;;, + 30;3;-0.000000, 2.410316,-0.000000;;, + 31;3;-0.000000, 2.410316,-0.000000;;, + 32;3;-0.000000, 2.410316, 0.000000;;, + 33;3;-0.000000, 2.410316, 0.000000;;, + 34;3;-0.000000, 2.410316,-0.000000;;, + 35;3;-0.000000, 2.410316,-0.000000;;, + 36;3;-0.000000, 2.410316, 0.000000;;, + 37;3;-0.000000, 2.410316,-0.000000;;, + 38;3;-0.000000, 2.410316,-0.000000;;, + 39;3;-0.000000, 2.410316, 0.000000;;, + 40;3; 0.000000, 2.410316, 0.000000;;, + 41;3; 0.000000, 2.410316, 0.000000;;, + 42;3;-0.000000, 2.410316,-0.000000;;, + 43;3;-0.000000, 2.410316,-0.000000;;, + 44;3; 0.000000, 2.410316,-0.000000;;, + 45;3; 0.000000, 2.410316,-0.000000;;, + 46;3;-0.000000, 2.410316,-0.000000;;, + 47;3;-0.000000, 2.410316, 0.000000;;, + 48;3;-0.000000, 2.410316, 0.000000;;, + 49;3; 0.000000, 2.410316,-0.000000;;, + 50;3; 0.000000, 2.410316, 0.000000;;, + 51;3;-0.000000, 2.410316,-0.000000;;, + 52;3;-0.000000, 2.410316, 0.000000;;, + 53;3; 0.000000, 2.410316, 0.000000;;, + 54;3; 0.000000, 2.410316, 0.000000;;, + 55;3; 0.000000, 2.410316, 0.000000;;, + 56;3; 0.000000, 2.410316,-0.000000;;, + 57;3; 0.000000, 2.410316,-0.000000;;, + 58;3; 0.000000, 2.410316,-0.000000;;, + 59;3; 0.000000, 2.410316,-0.000000;;, + 60;3;-0.000000, 2.410316,-0.000000;;, + 61;3; 0.000000, 2.410316,-0.000000;;, + 62;3;-0.000000, 2.410316, 0.000000;;, + 63;3; 0.000000, 2.410316, 0.000000;;, + 64;3;-0.000000, 2.410316, 0.000000;;, + 65;3;-0.000000, 2.410316,-0.000000;;, + 66;3; 0.000000, 2.410316, 0.000000;;, + 67;3; 0.000000, 2.410316,-0.000000;;, + 68;3; 0.000000, 2.410316,-0.000000;;, + 69;3; 0.000000, 2.410316, 0.000000;;, + 70;3; 0.000000, 2.410316, 0.000000;;, + 71;3;-0.000000, 2.410316,-0.000000;;, + 72;3;-0.000000, 2.410316,-0.000000;;, + 73;3; 0.000000, 2.410316,-0.000000;;, + 74;3;-0.000000, 2.410316,-0.000000;;, + 75;3; 0.000000, 2.410316,-0.000000;;, + 76;3;-0.000000, 2.410316, 0.000000;;, + 77;3;-0.000000, 2.410316, 0.000000;;, + 78;3;-0.000000, 2.410316, 0.000000;;, + 79;3; 0.000000, 2.410316,-0.000000;;, + 80;3;-0.000000, 2.410316, 0.000000;;, + 81;3;-0.000000, 2.410316,-0.000000;;, + 82;3;-0.000000, 2.410316,-0.000000;;, + 83;3; 0.000000, 2.410316, 0.000000;;, + 84;3; 0.000000, 2.410316, 0.000000;;, + 85;3;-0.000000, 2.410316, 0.000000;;, + 86;3; 0.000000, 2.410316,-0.000000;;, + 87;3;-0.000000, 2.410316, 0.000000;;, + 88;3;-0.000000, 2.410316, 0.000000;;, + 89;3; 0.000000, 2.410316, 0.000000;;, + 90;3; 0.000000, 2.410316,-0.000000;;, + 91;3; 0.000000, 2.410316,-0.000000;;, + 92;3;-0.000000, 2.410316,-0.000000;;, + 93;3; 0.000000, 2.410316, 0.000000;;, + 94;3;-0.000000, 2.410316,-0.000000;;, + 95;3;-0.000000, 2.410316, 0.000000;;, + 96;3;-0.000000, 2.410316, 0.000000;;, + 97;3; 0.000000, 2.410316,-0.000000;;, + 98;3;-0.000000, 2.410316,-0.000000;;, + 99;3; 0.000000, 2.410316,-0.000000;;, + 100;3; 0.000000, 2.410316, 0.000000;;, + 101;3; 0.000000, 2.410316, 0.000000;;, + 102;3;-0.000000, 2.410316, 0.000000;;, + 103;3; 0.000000, 2.410316, 0.000000;;, + 104;3; 0.000000, 2.410316,-0.000000;;, + 105;3; 0.000000, 2.410316,-0.000000;;, + 106;3; 0.000000, 2.410316,-0.000000;;, + 107;3;-0.000000, 2.410316, 0.000000;;, + 108;3; 0.000000, 2.410316,-0.000000;;, + 109;3;-0.000000, 2.410316, 0.000000;;, + 110;3;-0.000000, 2.410316, 0.000000;;, + 111;3;-0.000000, 2.410316, 0.000000;;, + 112;3; 0.000000, 2.410316,-0.000000;;, + 113;3; 0.000000, 2.410316,-0.000000;;, + 114;3;-0.000000, 2.410316,-0.000000;;, + 115;3; 0.000000, 2.410316,-0.000000;;, + 116;3; 0.000000, 2.410316, 0.000000;;, + 117;3; 0.000000, 2.410316,-0.000000;;, + 118;3; 0.000000, 2.410316, 0.000000;;, + 119;3;-0.000000, 2.410316, 0.000000;;, + 120;3;-0.000000, 2.410316,-0.000000;;, + 121;3; 0.000000, 2.410316,-0.000000;;, + 122;3; 0.000000, 2.410316, 0.000000;;, + 123;3;-0.000000, 2.410316,-0.000000;;, + 124;3;-0.000000, 2.410316,-0.000000;;, + 125;3; 0.000000, 2.410316, 0.000000;;, + 126;3;-0.000000, 2.410316,-0.000000;;, + 127;3;-0.000000, 2.410316, 0.000000;;, + 128;3; 0.000000, 2.410316, 0.000000;;, + 129;3;-0.000000, 2.410316,-0.000000;;, + 130;3;-0.000000, 2.410316,-0.000000;;, + 131;3; 0.000000, 2.410316,-0.000000;;, + 132;3;-0.000000, 2.410316, 0.000000;;, + 133;3;-0.000000, 2.410315, 0.000000;;, + 134;3;-0.000000, 2.410316, 0.000000;;, + 135;3;-0.000000, 2.410316,-0.000000;;, + 136;3; 0.000000, 2.410316,-0.000000;;, + 137;3;-0.000000, 2.410316, 0.000000;;, + 138;3;-0.000000, 2.410316,-0.000000;;, + 139;3;-0.000000, 2.410316,-0.000000;;, + 140;3;-0.000000, 2.410316, 0.000000;;, + 141;3;-0.000000, 2.410316,-0.000000;;, + 142;3; 0.000000, 2.410316,-0.000000;;, + 143;3; 0.000000, 2.410316,-0.000000;;, + 144;3;-0.000000, 2.410316,-0.000000;;, + 145;3;-0.000000, 2.410316, 0.000000;;, + 146;3; 0.000000, 2.410316,-0.000000;;, + 147;3;-0.000000, 2.410316, 0.000000;;, + 148;3; 0.000000, 2.410316, 0.000000;;, + 149;3;-0.000000, 2.410316, 0.000000;;, + 150;3;-0.000000, 2.410316, 0.000000;;, + 151;3;-0.000000, 2.410316, 0.000000;;, + 152;3;-0.000000, 2.410316, 0.000000;;, + 153;3;-0.000000, 2.410316, 0.000000;;, + 154;3;-0.000000, 2.410316, 0.000000;;, + 155;3;-0.000000, 2.410316, 0.000000;;, + 156;3;-0.000000, 2.410316, 0.000000;;, + 157;3;-0.000000, 2.410316, 0.000000;;, + 158;3;-0.000000, 2.410316, 0.000000;;, + 159;3;-0.000000, 2.410316, 0.000000;;, + 160;3;-0.000000, 2.410316, 0.000000;;, + 161;3;-0.000000, 2.410316, 0.000000;;, + 162;3;-0.000000, 2.410316, 0.000000;;, + 163;3;-0.000000, 2.410316, 0.000000;;, + 164;3;-0.000000, 2.410316, 0.000000;;, + 165;3;-0.000000, 2.410316, 0.000000;;, + 166;3;-0.000000, 2.410316, 0.000000;;, + 167;3;-0.000000, 2.410316, 0.000000;;, + 168;3;-0.000000, 2.410316, 0.000000;;, + 169;3;-0.000000, 2.410316, 0.000000;;, + 170;3;-0.000000, 2.410316, 0.000000;;, + 171;3;-0.000000, 2.410316, 0.000000;;, + 172;3;-0.000000, 2.410316, 0.000000;;, + 173;3;-0.000000, 2.410316, 0.000000;;, + 174;3;-0.000000, 2.410316, 0.000000;;, + 175;3;-0.000000, 2.410316, 0.000000;;, + 176;3;-0.000000, 2.410316, 0.000000;;, + 177;3;-0.000000, 2.410316, 0.000000;;, + 178;3;-0.000000, 2.410316, 0.000000;;, + 179;3;-0.000000, 2.410316, 0.000000;;, + 180;3;-0.000000, 2.410316, 0.000000;;, + 181;3;-0.000000, 2.410316, 0.000000;;, + 182;3;-0.000000, 2.410316, 0.000000;;, + 183;3;-0.000000, 2.410316, 0.000000;;, + 184;3;-0.000000, 2.410316, 0.000000;;, + 185;3;-0.000000, 2.410316, 0.000000;;, + 186;3;-0.000000, 2.410316, 0.000000;;, + 187;3;-0.000000, 2.410316, 0.000000;;, + 188;3;-0.000000, 2.410316, 0.000000;;, + 189;3;-0.000000, 2.410316, 0.000000;;, + 190;3;-0.000000, 2.410316, 0.000000;;, + 191;3;-0.000000, 2.410316, 0.000000;;, + 192;3;-0.000000, 2.410316, 0.000000;;, + 193;3;-0.000000, 2.410316, 0.000000;;, + 194;3;-0.000000, 2.410316, 0.000000;;, + 195;3;-0.000000, 2.410316, 0.000000;;, + 196;3;-0.000000, 2.410316, 0.000000;;, + 197;3;-0.000000, 2.410316, 0.000000;;, + 198;3;-0.000000, 2.410316, 0.000000;;, + 199;3;-0.000000, 2.410316, 0.000000;;, + 200;3;-0.000000, 2.410316, 0.000000;;, + 201;3;-0.000000, 2.410316, 0.000000;;, + 202;3;-0.000000, 2.410316, 0.000000;;, + 203;3;-0.000000, 2.410316, 0.000000;;, + 204;3;-0.000000, 2.410316, 0.000000;;, + 205;3;-0.000000, 2.410316, 0.000000;;, + 206;3;-0.000000, 2.410316, 0.000000;;, + 207;3;-0.000000, 2.410316, 0.000000;;, + 208;3;-0.000000, 2.410316, 0.000000;;, + 209;3;-0.000000, 2.410316, 0.000000;;, + 210;3;-0.000000, 2.410316, 0.000000;;, + 211;3;-0.000000, 2.410316, 0.000000;;, + 212;3;-0.000000, 2.410316, 0.000000;;, + 213;3;-0.000000, 2.410316, 0.000000;;, + 214;3;-0.000000, 2.410316, 0.000000;;, + 215;3;-0.000000, 2.410316, 0.000000;;, + 216;3;-0.000000, 2.410316, 0.000000;;, + 217;3;-0.000000, 2.410316, 0.000000;;, + 218;3;-0.000000, 2.410316, 0.000000;;, + 219;3;-0.000000, 2.410316, 0.000000;;, + 220;3;-0.000000, 2.410316, 0.000000;;, + 221;3;-0.000000, 2.410316, 0.000000;;, + 222;3;-0.000000, 2.410316, 0.000000;;, + 223;3;-0.000000, 2.410316, 0.000000;;, + 224;3;-0.000000, 2.410316, 0.000000;;, + 225;3;-0.000000, 2.410316, 0.000000;;, + 226;3;-0.000000, 2.410316, 0.000000;;, + 227;3;-0.000000, 2.410316, 0.000000;;, + 228;3;-0.000000, 2.410316, 0.000000;;, + 229;3;-0.000000, 2.410316, 0.000000;;, + 230;3;-0.000000, 2.410316, 0.000000;;, + 231;3;-0.000000, 2.410316, 0.000000;;, + 232;3;-0.000000, 2.410316, 0.000000;;, + 233;3;-0.000000, 2.410316, 0.000000;;, + 234;3;-0.000000, 2.410316, 0.000000;;, + 235;3;-0.000000, 2.410316, 0.000000;;, + 236;3;-0.000000, 2.410316, 0.000000;;, + 237;3;-0.000000, 2.410316, 0.000000;;, + 238;3;-0.000000, 2.410316, 0.000000;;, + 239;3;-0.000000, 2.410316, 0.000000;;, + 240;3;-0.000000, 2.410316, 0.000000;;, + 241;3;-0.000000, 2.410316, 0.000000;;, + 242;3;-0.000000, 2.410316, 0.000000;;, + 243;3;-0.000000, 2.410316, 0.000000;;, + 244;3;-0.000000, 2.410316, 0.000000;;, + 245;3;-0.000000, 2.410316, 0.000000;;, + 246;3;-0.000000, 2.410316, 0.000000;;, + 247;3;-0.000000, 2.410316, 0.000000;;, + 248;3;-0.000000, 2.410316, 0.000000;;, + 249;3;-0.000000, 2.410316, 0.000000;;; + } + } + Animation { + {Armature_Bone_027} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 1;4;-0.995035,-0.099475,-0.000000,-0.000000;;, + 2;4;-0.995095,-0.098714,-0.000000,-0.000000;;, + 3;4;-0.995196,-0.097444,-0.000000,-0.000000;;, + 4;4;-0.995337,-0.095673,-0.000000,-0.000000;;, + 5;4;-0.995515,-0.093430,-0.000000,-0.000000;;, + 6;4;-0.995727,-0.090757,-0.000000,-0.000000;;, + 7;4;-0.995968,-0.087720,-0.000000,-0.000000;;, + 8;4;-0.996232,-0.084406,-0.000000,-0.000000;;, + 9;4;-0.996509,-0.080916,-0.000000,-0.000000;;, + 10;4;-0.996791,-0.077366,-0.000000,-0.000000;;, + 11;4;-0.997068,-0.073877,-0.000000,-0.000000;;, + 12;4;-0.997331,-0.070562,-0.000000,-0.000000;;, + 13;4;-0.997572,-0.067526,-0.000000,-0.000000;;, + 14;4;-0.997784,-0.064853,-0.000000,-0.000000;;, + 15;4;-0.997962,-0.062609,-0.000000,-0.000000;;, + 16;4;-0.998103,-0.060839,-0.000000,-0.000000;;, + 17;4;-0.998204,-0.059568,-0.000000,-0.000000;;, + 18;4;-0.998264,-0.058808,-0.000000,-0.000000;;, + 19;4;-0.998284,-0.058556,-0.000000,-0.000000;;, + 20;4;-0.998266,-0.058783,-0.000000,-0.000000;;, + 21;4;-0.998212,-0.059469,-0.000000,-0.000000;;, + 22;4;-0.998121,-0.060616,-0.000000,-0.000000;;, + 23;4;-0.997994,-0.062216,-0.000000,-0.000000;;, + 24;4;-0.997832,-0.064250,-0.000000,-0.000000;;, + 25;4;-0.997639,-0.066682,-0.000000,-0.000000;;, + 26;4;-0.997418,-0.069463,-0.000000,-0.000000;;, + 27;4;-0.997175,-0.072524,-0.000000,-0.000000;;, + 28;4;-0.996917,-0.075782,-0.000000,-0.000000;;, + 29;4;-0.996650,-0.079141,-0.000000,-0.000000;;, + 30;4;-0.996383,-0.082501,-0.000000,-0.000000;;, + 31;4;-0.996124,-0.085759,-0.000000,-0.000000;;, + 32;4;-0.995881,-0.088820,-0.000000,-0.000000;;, + 33;4;-0.995660,-0.091600,-0.000000,-0.000000;;, + 34;4;-0.995467,-0.094033,-0.000000,-0.000000;;, + 35;4;-0.995306,-0.096067,-0.000000,-0.000000;;, + 36;4;-0.995179,-0.097667,-0.000000,-0.000000;;, + 37;4;-0.995088,-0.098813,-0.000000,-0.000000;;, + 38;4;-0.995033,-0.099499,-0.000000,-0.000000;;, + 39;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 40;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 41;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 42;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 43;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 44;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 45;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 46;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 47;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 48;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 49;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 50;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 51;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 52;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 53;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 54;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 55;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 56;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 57;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 58;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 59;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 60;4;-0.995081,-0.098895, 0.000248,-0.000116;;, + 61;4;-0.995279,-0.096394, 0.000993,-0.000465;;, + 62;4;-0.995601,-0.092326, 0.002204,-0.001032;;, + 63;4;-0.996023,-0.087007, 0.003788,-0.001775;;, + 64;4;-0.996500,-0.080981, 0.005583,-0.002615;;, + 65;4;-0.996978,-0.074954, 0.007378,-0.003456;;, + 66;4;-0.997399,-0.069635, 0.008962,-0.004198;;, + 67;4;-0.997721,-0.065568, 0.010173,-0.004766;;, + 68;4;-0.997920,-0.063066, 0.010918,-0.005115;;, + 69;4;-0.997985,-0.062235, 0.011166,-0.005231;;, + 70;4;-0.997978,-0.062327, 0.011139,-0.005218;;, + 71;4;-0.997956,-0.062603, 0.011056,-0.005179;;, + 72;4;-0.997920,-0.063066, 0.010918,-0.005115;;, + 73;4;-0.997868,-0.063716, 0.010725,-0.005024;;, + 74;4;-0.997802,-0.064551, 0.010476,-0.004908;;, + 75;4;-0.997721,-0.065568, 0.010173,-0.004766;;, + 76;4;-0.997627,-0.066760, 0.009818,-0.004599;;, + 77;4;-0.997519,-0.068120, 0.009413,-0.004410;;, + 78;4;-0.997399,-0.069635, 0.008962,-0.004198;;, + 79;4;-0.997268,-0.071291, 0.008469,-0.003967;;, + 80;4;-0.997127,-0.073071, 0.007939,-0.003719;;, + 81;4;-0.996978,-0.074954, 0.007378,-0.003456;;, + 82;4;-0.996822,-0.076918, 0.006793,-0.003182;;, + 83;4;-0.996662,-0.078935, 0.006192,-0.002901;;, + 84;4;-0.996500,-0.080981, 0.005583,-0.002615;;, + 85;4;-0.996338,-0.083026, 0.004974,-0.002330;;, + 86;4;-0.996178,-0.085044, 0.004373,-0.002049;;, + 87;4;-0.996023,-0.087007, 0.003788,-0.001775;;, + 88;4;-0.995874,-0.088890, 0.003227,-0.001512;;, + 89;4;-0.995733,-0.090670, 0.002697,-0.001264;;, + 90;4;-0.995601,-0.092326, 0.002204,-0.001032;;, + 91;4;-0.995481,-0.093842, 0.001753,-0.000821;;, + 92;4;-0.995374,-0.095201, 0.001348,-0.000631;;, + 93;4;-0.995279,-0.096394, 0.000993,-0.000465;;, + 94;4;-0.995199,-0.097410, 0.000690,-0.000323;;, + 95;4;-0.995132,-0.098245, 0.000441,-0.000207;;, + 96;4;-0.995081,-0.098895, 0.000248,-0.000116;;, + 97;4;-0.995044,-0.099358, 0.000110,-0.000051;;, + 98;4;-0.995022,-0.099634, 0.000027,-0.000013;;, + 99;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 100;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 101;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 102;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 103;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 104;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 105;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 106;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 107;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 108;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 109;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 110;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 111;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 112;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 113;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 114;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 115;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 116;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 117;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 118;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 119;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 120;4;-0.972497,-0.031240,-0.000000,-0.000000;;, + 121;4;-0.909070, 0.161666,-0.000000, 0.000000;;, + 122;4;-0.827631, 0.409355,-0.000000, 0.000000;;, + 123;4;-0.764205, 0.602260,-0.000000, 0.000000;;, + 124;4;-0.741687, 0.670747,-0.000000, 0.000000;;, + 125;4;-0.741687, 0.670747,-0.000000, 0.000000;;, + 126;4;-0.741687, 0.670747,-0.000000, 0.000000;;, + 127;4;-0.741687, 0.670747,-0.000000, 0.000000;;, + 128;4;-0.741687, 0.670747,-0.000000, 0.000000;;, + 129;4;-0.741687, 0.670747,-0.000000, 0.000000;;, + 130;4;-0.763509, 0.604413,-0.010797, 0.006287;;, + 131;4;-0.824976, 0.417570,-0.041209, 0.023997;;, + 132;4;-0.903899, 0.177665,-0.080258, 0.046735;;, + 133;4;-0.965366,-0.009178,-0.110670, 0.064445;;, + 134;4;-0.987189,-0.075512,-0.121467, 0.070732;;, + 135;4;-0.987189,-0.075512,-0.121467, 0.070732;;, + 136;4;-0.987189,-0.075512,-0.121467, 0.070732;;, + 137;4;-0.987189,-0.075512,-0.121467, 0.070732;;, + 138;4;-0.987189,-0.075512,-0.121467, 0.070732;;, + 139;4;-0.987189,-0.075512,-0.121467, 0.070732;;, + 140;4;-0.987189,-0.075512,-0.121467, 0.070732;;, + 141;4;-0.987189,-0.075512,-0.121467, 0.070732;;, + 142;4;-0.987189,-0.075512,-0.121467, 0.070732;;, + 143;4;-0.987189,-0.075512,-0.121467, 0.070732;;, + 144;4;-0.987189,-0.075512,-0.121467, 0.070732;;, + 145;4;-0.987884,-0.077664,-0.110670, 0.064445;;, + 146;4;-0.989844,-0.083727,-0.080258, 0.046735;;, + 147;4;-0.992360,-0.091511,-0.041209, 0.023997;;, + 148;4;-0.994319,-0.097574,-0.010797, 0.006287;;, + 149;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 150;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 151;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 152;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 153;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 154;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 155;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 156;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 157;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 158;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 159;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 160;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 161;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 162;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 163;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 164;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 165;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 166;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 167;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 168;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 169;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 170;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 171;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 172;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 173;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 174;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 175;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 176;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 177;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 178;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 179;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 180;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 181;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 182;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 183;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 184;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 185;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 186;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 187;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 188;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 189;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 190;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 191;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 192;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 193;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 194;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 195;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 196;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 197;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 198;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 199;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 200;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 201;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 202;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 203;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 204;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 205;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 206;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 207;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 208;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 209;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 210;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 211;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 212;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 213;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 214;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 215;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 216;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 217;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 218;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 219;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 220;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 221;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 222;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 223;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 224;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 225;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 226;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 227;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 228;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 229;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 230;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 231;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 232;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 233;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 234;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 235;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 236;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 237;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 238;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 239;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 240;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 241;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 242;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 243;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 244;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 245;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 246;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 247;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 248;4;-0.995015,-0.099726,-0.000000,-0.000000;;, + 249;4;-0.995015,-0.099726,-0.000000,-0.000000;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3; 0.000000, 2.365125,-0.000000;;, + 1;3;-0.000000, 2.365125, 0.000000;;, + 2;3; 0.000000, 2.365126, 0.000000;;, + 3;3; 0.000000, 2.365125,-0.000000;;, + 4;3; 0.000000, 2.365126,-0.000000;;, + 5;3; 0.000000, 2.365126,-0.000000;;, + 6;3;-0.000000, 2.365126,-0.000000;;, + 7;3; 0.000000, 2.365126, 0.000000;;, + 8;3; 0.000000, 2.365126, 0.000000;;, + 9;3; 0.000000, 2.365125, 0.000000;;, + 10;3;-0.000000, 2.365126, 0.000000;;, + 11;3;-0.000000, 2.365126, 0.000000;;, + 12;3;-0.000000, 2.365126, 0.000000;;, + 13;3;-0.000000, 2.365125, 0.000000;;, + 14;3; 0.000000, 2.365126, 0.000000;;, + 15;3; 0.000000, 2.365125, 0.000000;;, + 16;3;-0.000000, 2.365125, 0.000000;;, + 17;3;-0.000000, 2.365126, 0.000000;;, + 18;3; 0.000000, 2.365125, 0.000000;;, + 19;3;-0.000000, 2.365126,-0.000000;;, + 20;3;-0.000000, 2.365125,-0.000000;;, + 21;3; 0.000000, 2.365126,-0.000000;;, + 22;3;-0.000000, 2.365125, 0.000000;;, + 23;3;-0.000000, 2.365125, 0.000000;;, + 24;3; 0.000000, 2.365126,-0.000000;;, + 25;3; 0.000000, 2.365126, 0.000000;;, + 26;3;-0.000000, 2.365126, 0.000000;;, + 27;3;-0.000000, 2.365126, 0.000000;;, + 28;3;-0.000000, 2.365125, 0.000000;;, + 29;3;-0.000000, 2.365125, 0.000000;;, + 30;3;-0.000000, 2.365126, 0.000000;;, + 31;3;-0.000000, 2.365125, 0.000000;;, + 32;3;-0.000000, 2.365125, 0.000000;;, + 33;3; 0.000000, 2.365126,-0.000000;;, + 34;3;-0.000000, 2.365126, 0.000000;;, + 35;3; 0.000000, 2.365126,-0.000000;;, + 36;3; 0.000000, 2.365126, 0.000000;;, + 37;3;-0.000000, 2.365125, 0.000000;;, + 38;3;-0.000000, 2.365125, 0.000000;;, + 39;3; 0.000000, 2.365125,-0.000000;;, + 40;3; 0.000000, 2.365126,-0.000000;;, + 41;3;-0.000000, 2.365125,-0.000000;;, + 42;3;-0.000000, 2.365125,-0.000000;;, + 43;3; 0.000000, 2.365126, 0.000000;;, + 44;3;-0.000000, 2.365125,-0.000000;;, + 45;3;-0.000000, 2.365126, 0.000000;;, + 46;3;-0.000000, 2.365125, 0.000000;;, + 47;3; 0.000000, 2.365125, 0.000000;;, + 48;3;-0.000000, 2.365125,-0.000000;;, + 49;3;-0.000000, 2.365125,-0.000000;;, + 50;3; 0.000000, 2.365125,-0.000000;;, + 51;3;-0.000000, 2.365126, 0.000000;;, + 52;3; 0.000000, 2.365125, 0.000000;;, + 53;3; 0.000000, 2.365125, 0.000000;;, + 54;3; 0.000000, 2.365126,-0.000000;;, + 55;3; 0.000000, 2.365126, 0.000000;;, + 56;3; 0.000000, 2.365126,-0.000000;;, + 57;3;-0.000000, 2.365126, 0.000000;;, + 58;3; 0.000000, 2.365126,-0.000000;;, + 59;3;-0.000000, 2.365126,-0.000000;;, + 60;3;-0.000000, 2.365125, 0.000000;;, + 61;3;-0.000000, 2.365126, 0.000000;;, + 62;3;-0.000000, 2.365125,-0.000000;;, + 63;3; 0.000000, 2.365125,-0.000000;;, + 64;3;-0.000000, 2.365125,-0.000000;;, + 65;3; 0.000000, 2.365125, 0.000000;;, + 66;3; 0.000000, 2.365125,-0.000000;;, + 67;3; 0.000000, 2.365126,-0.000000;;, + 68;3;-0.000000, 2.365125, 0.000000;;, + 69;3;-0.000000, 2.365126,-0.000000;;, + 70;3;-0.000000, 2.365125,-0.000000;;, + 71;3;-0.000000, 2.365126,-0.000000;;, + 72;3; 0.000000, 2.365125, 0.000000;;, + 73;3; 0.000000, 2.365125,-0.000000;;, + 74;3; 0.000000, 2.365125, 0.000000;;, + 75;3; 0.000000, 2.365125, 0.000000;;, + 76;3; 0.000000, 2.365125,-0.000000;;, + 77;3; 0.000000, 2.365125,-0.000000;;, + 78;3;-0.000000, 2.365126, 0.000000;;, + 79;3;-0.000000, 2.365126, 0.000000;;, + 80;3; 0.000000, 2.365125,-0.000000;;, + 81;3; 0.000000, 2.365126,-0.000000;;, + 82;3; 0.000000, 2.365125,-0.000000;;, + 83;3;-0.000000, 2.365125,-0.000000;;, + 84;3;-0.000000, 2.365125,-0.000000;;, + 85;3;-0.000000, 2.365125, 0.000000;;, + 86;3; 0.000000, 2.365125, 0.000000;;, + 87;3;-0.000000, 2.365125,-0.000000;;, + 88;3; 0.000000, 2.365126, 0.000000;;, + 89;3;-0.000000, 2.365125,-0.000000;;, + 90;3; 0.000000, 2.365126,-0.000000;;, + 91;3;-0.000000, 2.365125,-0.000000;;, + 92;3;-0.000000, 2.365125, 0.000000;;, + 93;3;-0.000000, 2.365126, 0.000000;;, + 94;3;-0.000000, 2.365125, 0.000000;;, + 95;3; 0.000000, 2.365126,-0.000001;;, + 96;3; 0.000000, 2.365125,-0.000000;;, + 97;3;-0.000000, 2.365126,-0.000000;;, + 98;3;-0.000000, 2.365125,-0.000000;;, + 99;3;-0.000000, 2.365126,-0.000000;;, + 100;3; 0.000000, 2.365125, 0.000000;;, + 101;3;-0.000000, 2.365126,-0.000000;;, + 102;3; 0.000000, 2.365125,-0.000000;;, + 103;3;-0.000000, 2.365126,-0.000000;;, + 104;3; 0.000000, 2.365126,-0.000000;;, + 105;3;-0.000000, 2.365125, 0.000000;;, + 106;3; 0.000000, 2.365126, 0.000000;;, + 107;3;-0.000000, 2.365126, 0.000000;;, + 108;3;-0.000000, 2.365125,-0.000000;;, + 109;3;-0.000000, 2.365126,-0.000000;;, + 110;3; 0.000000, 2.365125,-0.000000;;, + 111;3; 0.000000, 2.365125, 0.000000;;, + 112;3;-0.000000, 2.365125, 0.000000;;, + 113;3; 0.000000, 2.365125,-0.000000;;, + 114;3;-0.000000, 2.365125, 0.000000;;, + 115;3; 0.000000, 2.365126,-0.000000;;, + 116;3; 0.000000, 2.365126,-0.000000;;, + 117;3; 0.000000, 2.365125,-0.000000;;, + 118;3; 0.000000, 2.365125,-0.000000;;, + 119;3; 0.000000, 2.365125,-0.000000;;, + 120;3;-0.000000, 2.365126,-0.000000;;, + 121;3; 0.000000, 2.365126, 0.000000;;, + 122;3;-0.000000, 2.365125,-0.000000;;, + 123;3; 0.000000, 2.365125, 0.000000;;, + 124;3;-0.000000, 2.365125,-0.000000;;, + 125;3;-0.000000, 2.365125,-0.000000;;, + 126;3;-0.000000, 2.365125, 0.000000;;, + 127;3;-0.000000, 2.365126, 0.000000;;, + 128;3; 0.000000, 2.365125,-0.000000;;, + 129;3; 0.000000, 2.365125, 0.000000;;, + 130;3; 0.000000, 2.365125, 0.000000;;, + 131;3;-0.000000, 2.365126,-0.000000;;, + 132;3; 0.000000, 2.365125,-0.000000;;, + 133;3; 0.000000, 2.365125, 0.000000;;, + 134;3;-0.000000, 2.365125, 0.000000;;, + 135;3; 0.000000, 2.365126,-0.000000;;, + 136;3; 0.000000, 2.365125,-0.000000;;, + 137;3; 0.000000, 2.365125,-0.000000;;, + 138;3;-0.000000, 2.365125, 0.000000;;, + 139;3;-0.000000, 2.365126, 0.000000;;, + 140;3; 0.000000, 2.365125,-0.000000;;, + 141;3; 0.000000, 2.365125, 0.000000;;, + 142;3;-0.000000, 2.365125,-0.000000;;, + 143;3;-0.000000, 2.365125,-0.000000;;, + 144;3;-0.000000, 2.365125, 0.000000;;, + 145;3; 0.000000, 2.365126,-0.000000;;, + 146;3; 0.000000, 2.365125, 0.000000;;, + 147;3;-0.000000, 2.365125, 0.000000;;, + 148;3; 0.000000, 2.365125, 0.000000;;, + 149;3; 0.000000, 2.365125,-0.000000;;, + 150;3; 0.000000, 2.365125,-0.000000;;, + 151;3; 0.000000, 2.365125,-0.000000;;, + 152;3; 0.000000, 2.365125,-0.000000;;, + 153;3; 0.000000, 2.365125,-0.000000;;, + 154;3; 0.000000, 2.365125,-0.000000;;, + 155;3; 0.000000, 2.365125,-0.000000;;, + 156;3; 0.000000, 2.365125,-0.000000;;, + 157;3; 0.000000, 2.365125,-0.000000;;, + 158;3; 0.000000, 2.365125,-0.000000;;, + 159;3; 0.000000, 2.365125,-0.000000;;, + 160;3; 0.000000, 2.365125,-0.000000;;, + 161;3; 0.000000, 2.365125,-0.000000;;, + 162;3; 0.000000, 2.365125,-0.000000;;, + 163;3; 0.000000, 2.365125,-0.000000;;, + 164;3; 0.000000, 2.365125,-0.000000;;, + 165;3; 0.000000, 2.365125,-0.000000;;, + 166;3; 0.000000, 2.365125,-0.000000;;, + 167;3; 0.000000, 2.365125,-0.000000;;, + 168;3; 0.000000, 2.365125,-0.000000;;, + 169;3; 0.000000, 2.365125,-0.000000;;, + 170;3; 0.000000, 2.365125,-0.000000;;, + 171;3; 0.000000, 2.365125,-0.000000;;, + 172;3; 0.000000, 2.365125,-0.000000;;, + 173;3; 0.000000, 2.365125,-0.000000;;, + 174;3; 0.000000, 2.365125,-0.000000;;, + 175;3; 0.000000, 2.365125,-0.000000;;, + 176;3; 0.000000, 2.365125,-0.000000;;, + 177;3; 0.000000, 2.365125,-0.000000;;, + 178;3; 0.000000, 2.365125,-0.000000;;, + 179;3; 0.000000, 2.365125,-0.000000;;, + 180;3; 0.000000, 2.365125,-0.000000;;, + 181;3; 0.000000, 2.365125,-0.000000;;, + 182;3; 0.000000, 2.365125,-0.000000;;, + 183;3; 0.000000, 2.365125,-0.000000;;, + 184;3; 0.000000, 2.365125,-0.000000;;, + 185;3; 0.000000, 2.365125,-0.000000;;, + 186;3; 0.000000, 2.365125,-0.000000;;, + 187;3; 0.000000, 2.365125,-0.000000;;, + 188;3; 0.000000, 2.365125,-0.000000;;, + 189;3; 0.000000, 2.365125,-0.000000;;, + 190;3; 0.000000, 2.365125,-0.000000;;, + 191;3; 0.000000, 2.365125,-0.000000;;, + 192;3; 0.000000, 2.365125,-0.000000;;, + 193;3; 0.000000, 2.365125,-0.000000;;, + 194;3; 0.000000, 2.365125,-0.000000;;, + 195;3; 0.000000, 2.365125,-0.000000;;, + 196;3; 0.000000, 2.365125,-0.000000;;, + 197;3; 0.000000, 2.365125,-0.000000;;, + 198;3; 0.000000, 2.365125,-0.000000;;, + 199;3; 0.000000, 2.365125,-0.000000;;, + 200;3; 0.000000, 2.365125,-0.000000;;, + 201;3; 0.000000, 2.365125,-0.000000;;, + 202;3; 0.000000, 2.365125,-0.000000;;, + 203;3; 0.000000, 2.365125,-0.000000;;, + 204;3; 0.000000, 2.365125,-0.000000;;, + 205;3; 0.000000, 2.365125,-0.000000;;, + 206;3; 0.000000, 2.365125,-0.000000;;, + 207;3; 0.000000, 2.365125,-0.000000;;, + 208;3; 0.000000, 2.365125,-0.000000;;, + 209;3; 0.000000, 2.365125,-0.000000;;, + 210;3; 0.000000, 2.365125,-0.000000;;, + 211;3; 0.000000, 2.365125,-0.000000;;, + 212;3; 0.000000, 2.365125,-0.000000;;, + 213;3; 0.000000, 2.365125,-0.000000;;, + 214;3; 0.000000, 2.365125,-0.000000;;, + 215;3; 0.000000, 2.365125,-0.000000;;, + 216;3; 0.000000, 2.365125,-0.000000;;, + 217;3; 0.000000, 2.365125,-0.000000;;, + 218;3; 0.000000, 2.365125,-0.000000;;, + 219;3; 0.000000, 2.365125,-0.000000;;, + 220;3; 0.000000, 2.365125,-0.000000;;, + 221;3; 0.000000, 2.365125,-0.000000;;, + 222;3; 0.000000, 2.365125,-0.000000;;, + 223;3; 0.000000, 2.365125,-0.000000;;, + 224;3; 0.000000, 2.365125,-0.000000;;, + 225;3; 0.000000, 2.365125,-0.000000;;, + 226;3; 0.000000, 2.365125,-0.000000;;, + 227;3; 0.000000, 2.365125,-0.000000;;, + 228;3; 0.000000, 2.365125,-0.000000;;, + 229;3; 0.000000, 2.365125,-0.000000;;, + 230;3; 0.000000, 2.365125,-0.000000;;, + 231;3; 0.000000, 2.365125,-0.000000;;, + 232;3; 0.000000, 2.365125,-0.000000;;, + 233;3; 0.000000, 2.365125,-0.000000;;, + 234;3; 0.000000, 2.365125,-0.000000;;, + 235;3; 0.000000, 2.365125,-0.000000;;, + 236;3; 0.000000, 2.365125,-0.000000;;, + 237;3; 0.000000, 2.365125,-0.000000;;, + 238;3; 0.000000, 2.365125,-0.000000;;, + 239;3; 0.000000, 2.365125,-0.000000;;, + 240;3; 0.000000, 2.365125,-0.000000;;, + 241;3; 0.000000, 2.365125,-0.000000;;, + 242;3; 0.000000, 2.365125,-0.000000;;, + 243;3; 0.000000, 2.365125,-0.000000;;, + 244;3; 0.000000, 2.365125,-0.000000;;, + 245;3; 0.000000, 2.365125,-0.000000;;, + 246;3; 0.000000, 2.365125,-0.000000;;, + 247;3; 0.000000, 2.365125,-0.000000;;, + 248;3; 0.000000, 2.365125,-0.000000;;, + 249;3; 0.000000, 2.365125,-0.000000;;; + } + } + Animation { + {Armature_Bone_004} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 1;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 2;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 3;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 4;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 5;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 6;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 7;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 8;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 9;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 10;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 11;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 12;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 13;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 14;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 15;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 16;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 17;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 18;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 19;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 20;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 21;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 22;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 23;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 24;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 25;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 26;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 27;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 28;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 29;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 30;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 31;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 32;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 33;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 34;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 35;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 36;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 37;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 38;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 39;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 40;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 41;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 42;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 43;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 44;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 45;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 46;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 47;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 48;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 49;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 50;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 51;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 52;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 53;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 54;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 55;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 56;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 57;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 58;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 59;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 60;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 61;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 62;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 63;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 64;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 65;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 66;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 67;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 68;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 69;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 70;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 71;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 72;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 73;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 74;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 75;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 76;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 77;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 78;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 79;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 80;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 81;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 82;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 83;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 84;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 85;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 86;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 87;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 88;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 89;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 90;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 91;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 92;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 93;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 94;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 95;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 96;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 97;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 98;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 99;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 100;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 101;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 102;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 103;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 104;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 105;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 106;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 107;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 108;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 109;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 110;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 111;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 112;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 113;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 114;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 115;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 116;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 117;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 118;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 119;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 120;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 121;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 122;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 123;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 124;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 125;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 126;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 127;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 128;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 129;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 130;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 131;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 132;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 133;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 134;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 135;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 136;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 137;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 138;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 139;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 140;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 141;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 142;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 143;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 144;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 145;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 146;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 147;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 148;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 149;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 150;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 151;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 152;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 153;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 154;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 155;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 156;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 157;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 158;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 159;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 160;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 161;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 162;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 163;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 164;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 165;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 166;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 167;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 168;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 169;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 170;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 171;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 172;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 173;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 174;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 175;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 176;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 177;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 178;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 179;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 180;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 181;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 182;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 183;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 184;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 185;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 186;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 187;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 188;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 189;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 190;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 191;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 192;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 193;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 194;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 195;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 196;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 197;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 198;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 199;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 200;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 201;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 202;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 203;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 204;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 205;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 206;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 207;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 208;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 209;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 210;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 211;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 212;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 213;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 214;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 215;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 216;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 217;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 218;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 219;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 220;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 221;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 222;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 223;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 224;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 225;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 226;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 227;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 228;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 229;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 230;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 231;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 232;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 233;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 234;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 235;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 236;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 237;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 238;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 239;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 240;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 241;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 242;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 243;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 244;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 245;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 246;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 247;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 248;4;-0.892384, 0.000000, 0.000000,-0.451276;;, + 249;4;-0.892384, 0.000000, 0.000000,-0.451276;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3; 0.000000, 0.705560, 0.000000;;, + 1;3; 0.000000, 0.705560, 0.000000;;, + 2;3; 0.000000, 0.705560, 0.000000;;, + 3;3; 0.000000, 0.705560, 0.000000;;, + 4;3; 0.000000, 0.705560, 0.000000;;, + 5;3; 0.000000, 0.705560, 0.000000;;, + 6;3; 0.000000, 0.705560, 0.000000;;, + 7;3; 0.000000, 0.705560, 0.000000;;, + 8;3; 0.000000, 0.705560, 0.000000;;, + 9;3; 0.000000, 0.705560, 0.000000;;, + 10;3; 0.000000, 0.705560, 0.000000;;, + 11;3; 0.000000, 0.705560, 0.000000;;, + 12;3; 0.000000, 0.705560, 0.000000;;, + 13;3; 0.000000, 0.705560, 0.000000;;, + 14;3; 0.000000, 0.705560, 0.000000;;, + 15;3; 0.000000, 0.705560, 0.000000;;, + 16;3; 0.000000, 0.705560, 0.000000;;, + 17;3; 0.000000, 0.705560, 0.000000;;, + 18;3; 0.000000, 0.705560, 0.000000;;, + 19;3; 0.000000, 0.705560, 0.000000;;, + 20;3; 0.000000, 0.705560, 0.000000;;, + 21;3; 0.000000, 0.705560, 0.000000;;, + 22;3; 0.000000, 0.705560, 0.000000;;, + 23;3; 0.000000, 0.705560, 0.000000;;, + 24;3; 0.000000, 0.705560, 0.000000;;, + 25;3; 0.000000, 0.705560, 0.000000;;, + 26;3; 0.000000, 0.705560, 0.000000;;, + 27;3; 0.000000, 0.705560, 0.000000;;, + 28;3; 0.000000, 0.705560, 0.000000;;, + 29;3; 0.000000, 0.705560, 0.000000;;, + 30;3; 0.000000, 0.705560, 0.000000;;, + 31;3; 0.000000, 0.705560, 0.000000;;, + 32;3; 0.000000, 0.705560, 0.000000;;, + 33;3; 0.000000, 0.705560, 0.000000;;, + 34;3; 0.000000, 0.705560, 0.000000;;, + 35;3; 0.000000, 0.705560, 0.000000;;, + 36;3; 0.000000, 0.705560, 0.000000;;, + 37;3; 0.000000, 0.705560, 0.000000;;, + 38;3; 0.000000, 0.705560, 0.000000;;, + 39;3; 0.000000, 0.705560, 0.000000;;, + 40;3; 0.000000, 0.705560, 0.000000;;, + 41;3; 0.000000, 0.705559, 0.000000;;, + 42;3;-0.000000, 0.705560, 0.000000;;, + 43;3; 0.000000, 0.705560,-0.000000;;, + 44;3; 0.000000, 0.705560, 0.000000;;, + 45;3; 0.000000, 0.705560,-0.000000;;, + 46;3; 0.000000, 0.705559, 0.000000;;, + 47;3;-0.000000, 0.705560, 0.000000;;, + 48;3; 0.000000, 0.705560,-0.000000;;, + 49;3; 0.000000, 0.705560, 0.000000;;, + 50;3;-0.000000, 0.705559, 0.000000;;, + 51;3; 0.000000, 0.705560,-0.000000;;, + 52;3;-0.000000, 0.705560, 0.000000;;, + 53;3; 0.000000, 0.705560,-0.000000;;, + 54;3; 0.000000, 0.705560, 0.000000;;, + 55;3; 0.000000, 0.705560,-0.000000;;, + 56;3;-0.000000, 0.705560, 0.000000;;, + 57;3; 0.000000, 0.705559, 0.000000;;, + 58;3;-0.000000, 0.705560, 0.000000;;, + 59;3; 0.000000, 0.705560, 0.000000;;, + 60;3; 0.000000, 0.705560,-0.000000;;, + 61;3; 0.000000, 0.705560, 0.000000;;, + 62;3; 0.000000, 0.705560, 0.000000;;, + 63;3; 0.000000, 0.705560, 0.000000;;, + 64;3; 0.000000, 0.705560,-0.000000;;, + 65;3;-0.000000, 0.705560, 0.000000;;, + 66;3; 0.000000, 0.705560, 0.000000;;, + 67;3;-0.000000, 0.705560, 0.000000;;, + 68;3; 0.000000, 0.705559, 0.000000;;, + 69;3; 0.000000, 0.705560, 0.000000;;, + 70;3; 0.000000, 0.705560, 0.000000;;, + 71;3;-0.000000, 0.705560, 0.000000;;, + 72;3;-0.000000, 0.705560, 0.000000;;, + 73;3;-0.000000, 0.705560, 0.000000;;, + 74;3;-0.000000, 0.705560, 0.000000;;, + 75;3;-0.000000, 0.705560, 0.000000;;, + 76;3; 0.000000, 0.705559, 0.000000;;, + 77;3;-0.000000, 0.705560, 0.000000;;, + 78;3; 0.000000, 0.705560, 0.000000;;, + 79;3;-0.000000, 0.705559, 0.000000;;, + 80;3; 0.000000, 0.705560, 0.000000;;, + 81;3;-0.000000, 0.705560, 0.000000;;, + 82;3; 0.000000, 0.705560, 0.000000;;, + 83;3; 0.000000, 0.705560, 0.000000;;, + 84;3; 0.000000, 0.705560,-0.000000;;, + 85;3;-0.000000, 0.705560, 0.000000;;, + 86;3;-0.000000, 0.705560, 0.000000;;, + 87;3; 0.000000, 0.705560,-0.000000;;, + 88;3; 0.000000, 0.705560, 0.000000;;, + 89;3; 0.000000, 0.705560, 0.000000;;, + 90;3; 0.000000, 0.705560, 0.000000;;, + 91;3; 0.000000, 0.705560, 0.000000;;, + 92;3; 0.000000, 0.705560, 0.000000;;, + 93;3; 0.000000, 0.705560, 0.000000;;, + 94;3; 0.000000, 0.705560, 0.000000;;, + 95;3; 0.000000, 0.705560, 0.000000;;, + 96;3; 0.000000, 0.705560,-0.000000;;, + 97;3; 0.000000, 0.705560,-0.000000;;, + 98;3; 0.000000, 0.705560, 0.000000;;, + 99;3; 0.000000, 0.705560, 0.000000;;, + 100;3;-0.000000, 0.705560,-0.000000;;, + 101;3; 0.000000, 0.705560,-0.000000;;, + 102;3; 0.000000, 0.705559, 0.000000;;, + 103;3;-0.000000, 0.705560,-0.000000;;, + 104;3;-0.000000, 0.705559,-0.000000;;, + 105;3;-0.000000, 0.705560,-0.000000;;, + 106;3; 0.000000, 0.705560, 0.000000;;, + 107;3;-0.000000, 0.705559,-0.000000;;, + 108;3; 0.000000, 0.705560,-0.000000;;, + 109;3; 0.000000, 0.705559,-0.000000;;, + 110;3;-0.000000, 0.705559, 0.000000;;, + 111;3; 0.000000, 0.705560,-0.000000;;, + 112;3; 0.000000, 0.705560, 0.000000;;, + 113;3; 0.000000, 0.705560,-0.000000;;, + 114;3;-0.000000, 0.705559, 0.000000;;, + 115;3; 0.000000, 0.705560, 0.000000;;, + 116;3;-0.000000, 0.705560,-0.000000;;, + 117;3; 0.000000, 0.705560, 0.000000;;, + 118;3; 0.000000, 0.705560,-0.000000;;, + 119;3; 0.000000, 0.705560, 0.000000;;, + 120;3; 0.000000, 0.705560,-0.000000;;, + 121;3; 0.000000, 0.705560,-0.000000;;, + 122;3;-0.000000, 0.705560,-0.000000;;, + 123;3; 0.000000, 0.705560, 0.000000;;, + 124;3; 0.000000, 0.705560, 0.000000;;, + 125;3; 0.000000, 0.705560, 0.000000;;, + 126;3;-0.000000, 0.705560, 0.000000;;, + 127;3;-0.000000, 0.705560, 0.000000;;, + 128;3;-0.000000, 0.705560,-0.000000;;, + 129;3; 0.000000, 0.705560, 0.000000;;, + 130;3; 0.000000, 0.705559, 0.000000;;, + 131;3; 0.000000, 0.705560, 0.000000;;, + 132;3; 0.000000, 0.705560, 0.000000;;, + 133;3; 0.000000, 0.705560,-0.000000;;, + 134;3; 0.000000, 0.705560, 0.000000;;, + 135;3; 0.000000, 0.705560, 0.000000;;, + 136;3;-0.000000, 0.705560,-0.000000;;, + 137;3; 0.000000, 0.705560, 0.000000;;, + 138;3;-0.000000, 0.705559, 0.000000;;, + 139;3;-0.000000, 0.705560,-0.000000;;, + 140;3; 0.000000, 0.705560, 0.000000;;, + 141;3; 0.000000, 0.705560, 0.000000;;, + 142;3; 0.000000, 0.705560, 0.000000;;, + 143;3; 0.000000, 0.705560,-0.000000;;, + 144;3; 0.000000, 0.705560, 0.000000;;, + 145;3; 0.000000, 0.705560,-0.000000;;, + 146;3; 0.000000, 0.705560, 0.000000;;, + 147;3; 0.000000, 0.705560,-0.000000;;, + 148;3; 0.000000, 0.705560, 0.000000;;, + 149;3; 0.000000, 0.705560, 0.000000;;, + 150;3; 0.000000, 0.705560, 0.000000;;, + 151;3; 0.000000, 0.705560, 0.000000;;, + 152;3; 0.000000, 0.705560, 0.000000;;, + 153;3; 0.000000, 0.705560, 0.000000;;, + 154;3; 0.000000, 0.705560, 0.000000;;, + 155;3; 0.000000, 0.705560, 0.000000;;, + 156;3; 0.000000, 0.705560, 0.000000;;, + 157;3; 0.000000, 0.705560, 0.000000;;, + 158;3; 0.000000, 0.705560, 0.000000;;, + 159;3; 0.000000, 0.705560, 0.000000;;, + 160;3; 0.000000, 0.705560, 0.000000;;, + 161;3; 0.000000, 0.705560, 0.000000;;, + 162;3; 0.000000, 0.705560, 0.000000;;, + 163;3; 0.000000, 0.705560, 0.000000;;, + 164;3; 0.000000, 0.705560, 0.000000;;, + 165;3; 0.000000, 0.705560, 0.000000;;, + 166;3; 0.000000, 0.705560, 0.000000;;, + 167;3; 0.000000, 0.705560, 0.000000;;, + 168;3; 0.000000, 0.705560, 0.000000;;, + 169;3; 0.000000, 0.705560, 0.000000;;, + 170;3; 0.000000, 0.705560, 0.000000;;, + 171;3; 0.000000, 0.705560, 0.000000;;, + 172;3; 0.000000, 0.705560, 0.000000;;, + 173;3; 0.000000, 0.705560, 0.000000;;, + 174;3; 0.000000, 0.705560, 0.000000;;, + 175;3; 0.000000, 0.705560, 0.000000;;, + 176;3; 0.000000, 0.705560, 0.000000;;, + 177;3; 0.000000, 0.705560, 0.000000;;, + 178;3; 0.000000, 0.705560, 0.000000;;, + 179;3; 0.000000, 0.705560, 0.000000;;, + 180;3; 0.000000, 0.705560, 0.000000;;, + 181;3; 0.000000, 0.705560, 0.000000;;, + 182;3; 0.000000, 0.705560, 0.000000;;, + 183;3; 0.000000, 0.705560, 0.000000;;, + 184;3; 0.000000, 0.705560, 0.000000;;, + 185;3; 0.000000, 0.705560, 0.000000;;, + 186;3; 0.000000, 0.705560, 0.000000;;, + 187;3; 0.000000, 0.705560, 0.000000;;, + 188;3; 0.000000, 0.705560, 0.000000;;, + 189;3; 0.000000, 0.705560, 0.000000;;, + 190;3; 0.000000, 0.705560, 0.000000;;, + 191;3; 0.000000, 0.705560, 0.000000;;, + 192;3; 0.000000, 0.705560, 0.000000;;, + 193;3; 0.000000, 0.705560, 0.000000;;, + 194;3; 0.000000, 0.705560, 0.000000;;, + 195;3; 0.000000, 0.705560, 0.000000;;, + 196;3; 0.000000, 0.705560, 0.000000;;, + 197;3; 0.000000, 0.705560, 0.000000;;, + 198;3; 0.000000, 0.705560, 0.000000;;, + 199;3; 0.000000, 0.705560, 0.000000;;, + 200;3; 0.000000, 0.705560, 0.000000;;, + 201;3; 0.000000, 0.705560, 0.000000;;, + 202;3; 0.000000, 0.705560, 0.000000;;, + 203;3; 0.000000, 0.705560, 0.000000;;, + 204;3; 0.000000, 0.705560, 0.000000;;, + 205;3; 0.000000, 0.705560, 0.000000;;, + 206;3; 0.000000, 0.705560, 0.000000;;, + 207;3; 0.000000, 0.705560, 0.000000;;, + 208;3; 0.000000, 0.705560, 0.000000;;, + 209;3; 0.000000, 0.705560, 0.000000;;, + 210;3; 0.000000, 0.705560, 0.000000;;, + 211;3; 0.000000, 0.705560, 0.000000;;, + 212;3; 0.000000, 0.705560, 0.000000;;, + 213;3; 0.000000, 0.705560, 0.000000;;, + 214;3; 0.000000, 0.705560, 0.000000;;, + 215;3; 0.000000, 0.705560, 0.000000;;, + 216;3; 0.000000, 0.705560, 0.000000;;, + 217;3; 0.000000, 0.705560, 0.000000;;, + 218;3; 0.000000, 0.705560, 0.000000;;, + 219;3; 0.000000, 0.705560, 0.000000;;, + 220;3; 0.000000, 0.705560, 0.000000;;, + 221;3; 0.000000, 0.705560, 0.000000;;, + 222;3; 0.000000, 0.705560, 0.000000;;, + 223;3; 0.000000, 0.705560, 0.000000;;, + 224;3; 0.000000, 0.705560, 0.000000;;, + 225;3; 0.000000, 0.705560, 0.000000;;, + 226;3; 0.000000, 0.705560, 0.000000;;, + 227;3; 0.000000, 0.705560, 0.000000;;, + 228;3; 0.000000, 0.705560, 0.000000;;, + 229;3; 0.000000, 0.705560, 0.000000;;, + 230;3; 0.000000, 0.705560, 0.000000;;, + 231;3; 0.000000, 0.705560, 0.000000;;, + 232;3; 0.000000, 0.705560, 0.000000;;, + 233;3; 0.000000, 0.705560, 0.000000;;, + 234;3; 0.000000, 0.705560, 0.000000;;, + 235;3; 0.000000, 0.705560, 0.000000;;, + 236;3; 0.000000, 0.705560, 0.000000;;, + 237;3; 0.000000, 0.705560, 0.000000;;, + 238;3; 0.000000, 0.705560, 0.000000;;, + 239;3; 0.000000, 0.705560, 0.000000;;, + 240;3; 0.000000, 0.705560, 0.000000;;, + 241;3; 0.000000, 0.705560, 0.000000;;, + 242;3; 0.000000, 0.705560, 0.000000;;, + 243;3; 0.000000, 0.705560, 0.000000;;, + 244;3; 0.000000, 0.705560, 0.000000;;, + 245;3; 0.000000, 0.705560, 0.000000;;, + 246;3; 0.000000, 0.705560, 0.000000;;, + 247;3; 0.000000, 0.705560, 0.000000;;, + 248;3; 0.000000, 0.705560, 0.000000;;, + 249;3; 0.000000, 0.705560, 0.000000;;; + } + } + Animation { + {Armature_Bone_028} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.718397,-0.529392,-0.267712, 0.363291;;, + 1;4;-0.718379,-0.529416,-0.267724, 0.363282;;, + 2;4;-0.718327,-0.529486,-0.267760, 0.363256;;, + 3;4;-0.718239,-0.529605,-0.267820, 0.363211;;, + 4;4;-0.718117,-0.529770,-0.267903, 0.363149;;, + 5;4;-0.717961,-0.529980,-0.268009, 0.363071;;, + 6;4;-0.717777,-0.530229,-0.268135, 0.362978;;, + 7;4;-0.717567,-0.530512,-0.268279, 0.362871;;, + 8;4;-0.717337,-0.530822,-0.268435, 0.362755;;, + 9;4;-0.717096,-0.531147,-0.268600, 0.362633;;, + 10;4;-0.716851,-0.531479,-0.268767, 0.362509;;, + 11;4;-0.716609,-0.531804,-0.268932, 0.362387;;, + 12;4;-0.716380,-0.532114,-0.269088, 0.362271;;, + 13;4;-0.716170,-0.532397,-0.269232, 0.362165;;, + 14;4;-0.715985,-0.532646,-0.269358, 0.362072;;, + 15;4;-0.715830,-0.532856,-0.269464, 0.361993;;, + 16;4;-0.715708,-0.533021,-0.269547, 0.361931;;, + 17;4;-0.715620,-0.533140,-0.269607, 0.361887;;, + 18;4;-0.715567,-0.533210,-0.269643, 0.361860;;, + 19;4;-0.715550,-0.533234,-0.269655, 0.361852;;, + 20;4;-0.715550,-0.533234,-0.269655, 0.361852;;, + 21;4;-0.715552,-0.533231,-0.269653, 0.361852;;, + 22;4;-0.715557,-0.533224,-0.269650, 0.361855;;, + 23;4;-0.715568,-0.533210,-0.269643, 0.361860;;, + 24;4;-0.715586,-0.533185,-0.269630, 0.361870;;, + 25;4;-0.715616,-0.533145,-0.269610, 0.361885;;, + 26;4;-0.715659,-0.533086,-0.269580, 0.361907;;, + 27;4;-0.715720,-0.533004,-0.269539, 0.361938;;, + 28;4;-0.715801,-0.532894,-0.269483, 0.361979;;, + 29;4;-0.715906,-0.532754,-0.269412, 0.362031;;, + 30;4;-0.716036,-0.532578,-0.269323, 0.362097;;, + 31;4;-0.716193,-0.532367,-0.269216, 0.362177;;, + 32;4;-0.716378,-0.532117,-0.269090, 0.362270;;, + 33;4;-0.716591,-0.531830,-0.268945, 0.362378;;, + 34;4;-0.716831,-0.531505,-0.268780, 0.362499;;, + 35;4;-0.717098,-0.531145,-0.268598, 0.362634;;, + 36;4;-0.717390,-0.530751,-0.268399, 0.362782;;, + 37;4;-0.717705,-0.530326,-0.268184, 0.362941;;, + 38;4;-0.718041,-0.529872,-0.267955, 0.363111;;, + 39;4;-0.718397,-0.529392,-0.267712, 0.363291;;, + 40;4;-0.719670,-0.524636,-0.264637, 0.362548;;, + 41;4;-0.722781,-0.511278,-0.255800, 0.359927;;, + 42;4;-0.727736,-0.489324,-0.241098, 0.355418;;, + 43;4;-0.734503,-0.458966,-0.220534, 0.349050;;, + 44;4;-0.743001,-0.420638,-0.194246, 0.340903;;, + 45;4;-0.753089,-0.375054,-0.162539, 0.331114;;, + 46;4;-0.764560,-0.323246,-0.125914, 0.319889;;, + 47;4;-0.777140,-0.266564,-0.085076, 0.307503;;, + 48;4;-0.790494,-0.206647,-0.040927, 0.294292;;, + 49;4;-0.804237,-0.145353, 0.005472, 0.280643;;, + 50;4;-0.817960,-0.084652, 0.052955, 0.266971;;, + 51;4;-0.831254,-0.026495, 0.100330, 0.253689;;, + 52;4;-0.843737, 0.027305, 0.146451, 0.241187;;, + 53;4;-0.855075, 0.075178, 0.190290, 0.229805;;, + 54;4;-0.864997, 0.115862, 0.230980, 0.219820;;, + 55;4;-0.873299, 0.148424, 0.267840, 0.211442;;, + 56;4;-0.879845, 0.172249, 0.300379, 0.204814;;, + 57;4;-0.884557, 0.187006, 0.328274, 0.200017;;, + 58;4;-0.887405, 0.192596, 0.351350, 0.197085;;, + 59;4;-0.888399, 0.189101, 0.369552, 0.196012;;, + 60;4;-0.886826, 0.168511, 0.381946, 0.196626;;, + 61;4;-0.881936, 0.122676, 0.387343, 0.198788;;, + 62;4;-0.873934, 0.053392, 0.385757, 0.202405;;, + 63;4;-0.863439,-0.034321, 0.377932, 0.207191;;, + 64;4;-0.851532,-0.131891, 0.365518, 0.212648;;, + 65;4;-0.839614,-0.228353, 0.350915, 0.218127;;, + 66;4;-0.829087,-0.312856, 0.336741, 0.222975;;, + 67;4;-0.821036,-0.377116, 0.325220, 0.226689;;, + 68;4;-0.816083,-0.416485, 0.317832, 0.228976;;, + 69;4;-0.814436,-0.429532, 0.315308, 0.229736;;, + 70;4;-0.814618,-0.428148, 0.315693, 0.229652;;, + 71;4;-0.815168,-0.423966, 0.316846, 0.229395;;, + 72;4;-0.816087,-0.416952, 0.318755, 0.228967;;, + 73;4;-0.817377,-0.407093, 0.321400, 0.228366;;, + 74;4;-0.819035,-0.394400, 0.324753, 0.227594;;, + 75;4;-0.821054,-0.378913, 0.328772, 0.226654;;, + 76;4;-0.823420,-0.360708, 0.333405, 0.225553;;, + 77;4;-0.826118,-0.339898, 0.338583, 0.224299;;, + 78;4;-0.829125,-0.316641, 0.344226, 0.222902;;, + 79;4;-0.832410,-0.291137, 0.350238, 0.221377;;, + 80;4;-0.835940,-0.263634, 0.356510, 0.219739;;, + 81;4;-0.839673,-0.234424, 0.362920, 0.218009;;, + 82;4;-0.843564,-0.203840, 0.369336, 0.216208;;, + 83;4;-0.847561,-0.172247, 0.375620, 0.214360;;, + 84;4;-0.851611,-0.140038, 0.381629, 0.212490;;, + 85;4;-0.855660,-0.107619, 0.387222, 0.210625;;, + 86;4;-0.859651,-0.075397, 0.392262, 0.208789;;, + 87;4;-0.863531,-0.043772, 0.396621, 0.207008;;, + 88;4;-0.867250,-0.013123, 0.400184, 0.205306;;, + 89;4;-0.870762, 0.016203, 0.402850, 0.203704;;, + 90;4;-0.874027, 0.043895, 0.404536, 0.202221;;, + 91;4;-0.877008, 0.069683, 0.405174, 0.200873;;, + 92;4;-0.879678, 0.093344, 0.404714, 0.199674;;, + 93;4;-0.882014, 0.114696, 0.403123, 0.198634;;, + 94;4;-0.883999, 0.133602, 0.400381, 0.197760;;, + 95;4;-0.885621, 0.149962, 0.396483, 0.197059;;, + 96;4;-0.886873, 0.163713, 0.391433, 0.196533;;, + 97;4;-0.887753, 0.174821, 0.385246, 0.196184;;, + 98;4;-0.888260, 0.183279, 0.377943, 0.196011;;, + 99;4;-0.888399, 0.189101, 0.369552, 0.196012;;, + 100;4;-0.887421, 0.189349, 0.357720, 0.197015;;, + 101;4;-0.884554, 0.180955, 0.340035, 0.199871;;, + 102;4;-0.879790, 0.163860, 0.316515, 0.204586;;, + 103;4;-0.873161, 0.138178, 0.287311, 0.211131;;, + 104;4;-0.864748, 0.104252, 0.252739, 0.219424;;, + 105;4;-0.854695, 0.062695, 0.213314, 0.229326;;, + 106;4;-0.843210, 0.014424, 0.169764, 0.240629;;, + 107;4;-0.830574,-0.039326, 0.123038, 0.253060;;, + 108;4;-0.817129,-0.097029, 0.074282, 0.266281;;, + 109;4;-0.803268,-0.156930, 0.024787, 0.279907;;, + 110;4;-0.789411,-0.217147,-0.024084, 0.293527;;, + 111;4;-0.775976,-0.275787,-0.070986, 0.306730;;, + 112;4;-0.763355,-0.331074,-0.114673, 0.319131;;, + 113;4;-0.751890,-0.381442,-0.154076, 0.330394;;, + 114;4;-0.741862,-0.425612,-0.188336, 0.340245;;, + 115;4;-0.733480,-0.462612,-0.216828, 0.348478;;, + 116;4;-0.726885,-0.491775,-0.239147, 0.354956;;, + 117;4;-0.722158,-0.512707,-0.255081, 0.359597;;, + 118;4;-0.719332,-0.525241,-0.264578, 0.362373;;, + 119;4;-0.718397,-0.529392,-0.267712, 0.363291;;, + 120;4;-0.724350,-0.519999,-0.262962, 0.366302;;, + 121;4;-0.741119,-0.493542,-0.249583, 0.374782;;, + 122;4;-0.762651,-0.459571,-0.232404, 0.385670;;, + 123;4;-0.779420,-0.433114,-0.219024, 0.394150;;, + 124;4;-0.785373,-0.423721,-0.214274, 0.397161;;, + 125;4;-0.785373,-0.423721,-0.214274, 0.397161;;, + 126;4;-0.785373,-0.423721,-0.214274, 0.397161;;, + 127;4;-0.785373,-0.423721,-0.214274, 0.397161;;, + 128;4;-0.785373,-0.423721,-0.214274, 0.397161;;, + 129;4;-0.785373,-0.423721,-0.214274, 0.397161;;, + 130;4;-0.785373,-0.423721,-0.214274, 0.397161;;, + 131;4;-0.785373,-0.423721,-0.214274, 0.397161;;, + 132;4;-0.785373,-0.423721,-0.214274, 0.397161;;, + 133;4;-0.785373,-0.423721,-0.214274, 0.397161;;, + 134;4;-0.785373,-0.423721,-0.214274, 0.397161;;, + 135;4;-0.785373,-0.423721,-0.214274, 0.397161;;, + 136;4;-0.785373,-0.423721,-0.214274, 0.397161;;, + 137;4;-0.785373,-0.423721,-0.214274, 0.397161;;, + 138;4;-0.785373,-0.423721,-0.214274, 0.397161;;, + 139;4;-0.785373,-0.423721,-0.214274, 0.397161;;, + 140;4;-0.785373,-0.423721,-0.214274, 0.397161;;, + 141;4;-0.785373,-0.423721,-0.214274, 0.397161;;, + 142;4;-0.785373,-0.423721,-0.214274, 0.397161;;, + 143;4;-0.785373,-0.423721,-0.214274, 0.397161;;, + 144;4;-0.785373,-0.423721,-0.214274, 0.397161;;, + 145;4;-0.779420,-0.433114,-0.219024, 0.394150;;, + 146;4;-0.762651,-0.459571,-0.232404, 0.385670;;, + 147;4;-0.741119,-0.493542,-0.249583, 0.374782;;, + 148;4;-0.724350,-0.519999,-0.262962, 0.366302;;, + 149;4;-0.718397,-0.529392,-0.267712, 0.363291;;, + 150;4;-0.718397,-0.529392,-0.267712, 0.363291;;, + 151;4;-0.718397,-0.529392,-0.267712, 0.363291;;, + 152;4;-0.718397,-0.529392,-0.267712, 0.363291;;, + 153;4;-0.718397,-0.529392,-0.267712, 0.363291;;, + 154;4;-0.718397,-0.529392,-0.267712, 0.363291;;, + 155;4;-0.718397,-0.529392,-0.267712, 0.363291;;, + 156;4;-0.718397,-0.529392,-0.267712, 0.363291;;, + 157;4;-0.718397,-0.529392,-0.267712, 0.363291;;, + 158;4;-0.718397,-0.529392,-0.267712, 0.363291;;, + 159;4;-0.718397,-0.529392,-0.267712, 0.363291;;, + 160;4;-0.718397,-0.529392,-0.267712, 0.363291;;, + 161;4;-0.718397,-0.529392,-0.267712, 0.363291;;, + 162;4;-0.718397,-0.529392,-0.267712, 0.363291;;, + 163;4;-0.718397,-0.529392,-0.267712, 0.363291;;, + 164;4;-0.718397,-0.529392,-0.267712, 0.363291;;, + 165;4;-0.718397,-0.529392,-0.267712, 0.363291;;, + 166;4;-0.718397,-0.529392,-0.267712, 0.363291;;, + 167;4;-0.718397,-0.529392,-0.267712, 0.363291;;, + 168;4;-0.718397,-0.529392,-0.267712, 0.363291;;, + 169;4;-0.718397,-0.529392,-0.267712, 0.363291;;, + 170;4;-0.718397,-0.529392,-0.267712, 0.363291;;, + 171;4;-0.718397,-0.529392,-0.267712, 0.363291;;, + 172;4;-0.718397,-0.529392,-0.267712, 0.363291;;, + 173;4;-0.718397,-0.529392,-0.267712, 0.363291;;, + 174;4;-0.718397,-0.529392,-0.267712, 0.363291;;, + 175;4;-0.718397,-0.529392,-0.267712, 0.363291;;, + 176;4;-0.718397,-0.529392,-0.267712, 0.363291;;, + 177;4;-0.718397,-0.529392,-0.267712, 0.363291;;, + 178;4;-0.718397,-0.529392,-0.267712, 0.363291;;, + 179;4;-0.718397,-0.529392,-0.267712, 0.363291;;, + 180;4;-0.718397,-0.529392,-0.267712, 0.363291;;, + 181;4;-0.718397,-0.529392,-0.267712, 0.363291;;, + 182;4;-0.718397,-0.529392,-0.267712, 0.363291;;, + 183;4;-0.718397,-0.529392,-0.267712, 0.363291;;, + 184;4;-0.718397,-0.529392,-0.267712, 0.363291;;, + 185;4;-0.718397,-0.529392,-0.267712, 0.363291;;, + 186;4;-0.718397,-0.529392,-0.267712, 0.363291;;, + 187;4;-0.718397,-0.529392,-0.267712, 0.363291;;, + 188;4;-0.718397,-0.529392,-0.267712, 0.363291;;, + 189;4;-0.718397,-0.529392,-0.267712, 0.363291;;, + 190;4;-0.718397,-0.529392,-0.267712, 0.363291;;, + 191;4;-0.718397,-0.529392,-0.267712, 0.363291;;, + 192;4;-0.718397,-0.529392,-0.267712, 0.363291;;, + 193;4;-0.718397,-0.529392,-0.267712, 0.363291;;, + 194;4;-0.718397,-0.529392,-0.267712, 0.363291;;, + 195;4;-0.718397,-0.529392,-0.267712, 0.363291;;, + 196;4;-0.718397,-0.529392,-0.267712, 0.363291;;, + 197;4;-0.718397,-0.529392,-0.267712, 0.363291;;, + 198;4;-0.718397,-0.529392,-0.267712, 0.363291;;, + 199;4;-0.718397,-0.529392,-0.267712, 0.363291;;, + 200;4;-0.718397,-0.529392,-0.267712, 0.363291;;, + 201;4;-0.718397,-0.529392,-0.267712, 0.363291;;, + 202;4;-0.718397,-0.529392,-0.267712, 0.363291;;, + 203;4;-0.718397,-0.529392,-0.267712, 0.363291;;, + 204;4;-0.718397,-0.529392,-0.267712, 0.363291;;, + 205;4;-0.718397,-0.529392,-0.267712, 0.363291;;, + 206;4;-0.718397,-0.529392,-0.267712, 0.363291;;, + 207;4;-0.718397,-0.529392,-0.267712, 0.363291;;, + 208;4;-0.718397,-0.529392,-0.267712, 0.363291;;, + 209;4;-0.718397,-0.529392,-0.267712, 0.363291;;, + 210;4;-0.718397,-0.529392,-0.267712, 0.363291;;, + 211;4;-0.718397,-0.529392,-0.267712, 0.363291;;, + 212;4;-0.718397,-0.529392,-0.267712, 0.363291;;, + 213;4;-0.718397,-0.529392,-0.267712, 0.363291;;, + 214;4;-0.718397,-0.529392,-0.267712, 0.363291;;, + 215;4;-0.718397,-0.529392,-0.267712, 0.363291;;, + 216;4;-0.718397,-0.529392,-0.267712, 0.363291;;, + 217;4;-0.718397,-0.529392,-0.267712, 0.363291;;, + 218;4;-0.718397,-0.529392,-0.267712, 0.363291;;, + 219;4;-0.718397,-0.529392,-0.267712, 0.363291;;, + 220;4;-0.718397,-0.529392,-0.267712, 0.363291;;, + 221;4;-0.718397,-0.529392,-0.267712, 0.363291;;, + 222;4;-0.718397,-0.529392,-0.267712, 0.363291;;, + 223;4;-0.718397,-0.529392,-0.267712, 0.363291;;, + 224;4;-0.718397,-0.529392,-0.267712, 0.363291;;, + 225;4;-0.718397,-0.529392,-0.267712, 0.363291;;, + 226;4;-0.718397,-0.529392,-0.267712, 0.363291;;, + 227;4;-0.718397,-0.529392,-0.267712, 0.363291;;, + 228;4;-0.718397,-0.529392,-0.267712, 0.363291;;, + 229;4;-0.718397,-0.529392,-0.267712, 0.363291;;, + 230;4;-0.718397,-0.529392,-0.267712, 0.363291;;, + 231;4;-0.718397,-0.529392,-0.267712, 0.363291;;, + 232;4;-0.718397,-0.529392,-0.267712, 0.363291;;, + 233;4;-0.718397,-0.529392,-0.267712, 0.363291;;, + 234;4;-0.718397,-0.529392,-0.267712, 0.363291;;, + 235;4;-0.718397,-0.529392,-0.267712, 0.363291;;, + 236;4;-0.718397,-0.529392,-0.267712, 0.363291;;, + 237;4;-0.718397,-0.529392,-0.267712, 0.363291;;, + 238;4;-0.718397,-0.529392,-0.267712, 0.363291;;, + 239;4;-0.718397,-0.529392,-0.267712, 0.363291;;, + 240;4;-0.718397,-0.529392,-0.267712, 0.363291;;, + 241;4;-0.718397,-0.529392,-0.267712, 0.363291;;, + 242;4;-0.718397,-0.529392,-0.267712, 0.363291;;, + 243;4;-0.718397,-0.529392,-0.267712, 0.363291;;, + 244;4;-0.718397,-0.529392,-0.267712, 0.363291;;, + 245;4;-0.718397,-0.529392,-0.267712, 0.363291;;, + 246;4;-0.718397,-0.529392,-0.267712, 0.363291;;, + 247;4;-0.718397,-0.529392,-0.267712, 0.363291;;, + 248;4;-0.718397,-0.529392,-0.267712, 0.363291;;, + 249;4;-0.718397,-0.529392,-0.267712, 0.363291;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3; 0.000000, 0.939853, 0.000000;;, + 1;3; 0.000000, 0.939853, 0.000000;;, + 2;3; 0.000000, 0.939853, 0.000000;;, + 3;3; 0.000000, 0.939853, 0.000000;;, + 4;3; 0.000000, 0.939853, 0.000000;;, + 5;3; 0.000000, 0.939853, 0.000000;;, + 6;3; 0.000000, 0.939853, 0.000000;;, + 7;3; 0.000000, 0.939853, 0.000000;;, + 8;3; 0.000000, 0.939853, 0.000000;;, + 9;3; 0.000000, 0.939853, 0.000000;;, + 10;3; 0.000000, 0.939853, 0.000000;;, + 11;3; 0.000000, 0.939853, 0.000000;;, + 12;3; 0.000000, 0.939853, 0.000000;;, + 13;3; 0.000000, 0.939853, 0.000000;;, + 14;3; 0.000000, 0.939853, 0.000000;;, + 15;3; 0.000000, 0.939853, 0.000000;;, + 16;3; 0.000000, 0.939853, 0.000000;;, + 17;3; 0.000000, 0.939853, 0.000000;;, + 18;3; 0.000000, 0.939853, 0.000000;;, + 19;3; 0.000000, 0.939853, 0.000000;;, + 20;3; 0.000000, 0.939853, 0.000000;;, + 21;3; 0.000000, 0.939853, 0.000000;;, + 22;3; 0.000000, 0.939853, 0.000000;;, + 23;3; 0.000000, 0.939853, 0.000000;;, + 24;3; 0.000000, 0.939853, 0.000000;;, + 25;3; 0.000000, 0.939853, 0.000000;;, + 26;3; 0.000000, 0.939853, 0.000000;;, + 27;3; 0.000000, 0.939853, 0.000000;;, + 28;3; 0.000000, 0.939853, 0.000000;;, + 29;3; 0.000000, 0.939853, 0.000000;;, + 30;3; 0.000000, 0.939853, 0.000000;;, + 31;3; 0.000000, 0.939853, 0.000000;;, + 32;3; 0.000000, 0.939853, 0.000000;;, + 33;3; 0.000000, 0.939853, 0.000000;;, + 34;3; 0.000000, 0.939853, 0.000000;;, + 35;3; 0.000000, 0.939853, 0.000000;;, + 36;3; 0.000000, 0.939853, 0.000000;;, + 37;3; 0.000000, 0.939853, 0.000000;;, + 38;3; 0.000000, 0.939853, 0.000000;;, + 39;3; 0.000000, 0.939853, 0.000000;;, + 40;3;-0.000000, 0.939853, 0.000000;;, + 41;3;-0.000000, 0.939853,-0.000000;;, + 42;3; 0.000000, 0.939853,-0.000000;;, + 43;3;-0.000000, 0.939853, 0.000000;;, + 44;3; 0.000000, 0.939853, 0.000000;;, + 45;3;-0.000000, 0.939853,-0.000000;;, + 46;3; 0.000000, 0.939853,-0.000000;;, + 47;3;-0.000000, 0.939853, 0.000000;;, + 48;3; 0.000000, 0.939853, 0.000000;;, + 49;3;-0.000000, 0.939853,-0.000000;;, + 50;3;-0.000000, 0.939853, 0.000000;;, + 51;3;-0.000000, 0.939853, 0.000000;;, + 52;3; 0.000000, 0.939853,-0.000000;;, + 53;3;-0.000000, 0.939853,-0.000000;;, + 54;3; 0.000000, 0.939853,-0.000000;;, + 55;3;-0.000000, 0.939853, 0.000000;;, + 56;3;-0.000000, 0.939853, 0.000000;;, + 57;3;-0.000000, 0.939853,-0.000000;;, + 58;3;-0.000000, 0.939853, 0.000000;;, + 59;3;-0.000000, 0.939853,-0.000000;;, + 60;3; 0.000000, 0.939853, 0.000000;;, + 61;3; 0.000000, 0.939853, 0.000000;;, + 62;3;-0.000000, 0.939853, 0.000000;;, + 63;3; 0.000000, 0.939853, 0.000000;;, + 64;3;-0.000000, 0.939853, 0.000000;;, + 65;3;-0.000000, 0.939853,-0.000000;;, + 66;3;-0.000000, 0.939853, 0.000000;;, + 67;3; 0.000000, 0.939853, 0.000000;;, + 68;3;-0.000000, 0.939853,-0.000000;;, + 69;3;-0.000000, 0.939853,-0.000000;;, + 70;3;-0.000000, 0.939853, 0.000000;;, + 71;3;-0.000000, 0.939853, 0.000000;;, + 72;3;-0.000000, 0.939853, 0.000000;;, + 73;3;-0.000000, 0.939853,-0.000000;;, + 74;3; 0.000000, 0.939853, 0.000000;;, + 75;3;-0.000000, 0.939853, 0.000000;;, + 76;3;-0.000000, 0.939853, 0.000000;;, + 77;3;-0.000000, 0.939853, 0.000000;;, + 78;3; 0.000000, 0.939853,-0.000000;;, + 79;3; 0.000000, 0.939853, 0.000000;;, + 80;3; 0.000000, 0.939853, 0.000000;;, + 81;3;-0.000000, 0.939853,-0.000000;;, + 82;3; 0.000000, 0.939853, 0.000000;;, + 83;3;-0.000000, 0.939853, 0.000000;;, + 84;3;-0.000000, 0.939853, 0.000000;;, + 85;3;-0.000000, 0.939853, 0.000000;;, + 86;3; 0.000000, 0.939853, 0.000000;;, + 87;3; 0.000000, 0.939853, 0.000000;;, + 88;3;-0.000000, 0.939853, 0.000000;;, + 89;3; 0.000000, 0.939853, 0.000000;;, + 90;3;-0.000000, 0.939853, 0.000000;;, + 91;3; 0.000000, 0.939853,-0.000000;;, + 92;3;-0.000000, 0.939853, 0.000000;;, + 93;3; 0.000000, 0.939853, 0.000000;;, + 94;3;-0.000000, 0.939853, 0.000000;;, + 95;3;-0.000000, 0.939853, 0.000000;;, + 96;3; 0.000000, 0.939853, 0.000000;;, + 97;3; 0.000000, 0.939853, 0.000000;;, + 98;3; 0.000000, 0.939853, 0.000000;;, + 99;3;-0.000000, 0.939853,-0.000000;;, + 100;3; 0.000000, 0.939853,-0.000000;;, + 101;3; 0.000000, 0.939853, 0.000000;;, + 102;3; 0.000000, 0.939853, 0.000000;;, + 103;3; 0.000000, 0.939853, 0.000000;;, + 104;3; 0.000000, 0.939853,-0.000000;;, + 105;3; 0.000000, 0.939853,-0.000000;;, + 106;3; 0.000000, 0.939853, 0.000000;;, + 107;3; 0.000000, 0.939853,-0.000000;;, + 108;3; 0.000000, 0.939853,-0.000000;;, + 109;3; 0.000000, 0.939853, 0.000000;;, + 110;3;-0.000000, 0.939853,-0.000000;;, + 111;3; 0.000000, 0.939853,-0.000000;;, + 112;3;-0.000000, 0.939853, 0.000000;;, + 113;3;-0.000000, 0.939853,-0.000000;;, + 114;3; 0.000000, 0.939853,-0.000000;;, + 115;3; 0.000000, 0.939853, 0.000000;;, + 116;3; 0.000000, 0.939853, 0.000000;;, + 117;3; 0.000000, 0.939853,-0.000000;;, + 118;3; 0.000000, 0.939853,-0.000000;;, + 119;3; 0.000000, 0.939853, 0.000000;;, + 120;3; 0.000000, 0.939853,-0.000000;;, + 121;3;-0.000000, 0.939853,-0.000000;;, + 122;3;-0.000000, 0.939853,-0.000000;;, + 123;3;-0.000000, 0.939853,-0.000000;;, + 124;3; 0.000000, 0.939853, 0.000000;;, + 125;3; 0.000000, 0.939853, 0.000000;;, + 126;3;-0.000000, 0.939853,-0.000000;;, + 127;3;-0.000000, 0.939853,-0.000000;;, + 128;3; 0.000000, 0.939853,-0.000000;;, + 129;3;-0.000000, 0.939853, 0.000000;;, + 130;3;-0.000000, 0.939853, 0.000000;;, + 131;3;-0.000000, 0.939853, 0.000000;;, + 132;3;-0.000000, 0.939853,-0.000000;;, + 133;3;-0.000000, 0.939853,-0.000000;;, + 134;3; 0.000000, 0.939853, 0.000000;;, + 135;3;-0.000000, 0.939853,-0.000000;;, + 136;3;-0.000000, 0.939853, 0.000000;;, + 137;3; 0.000000, 0.939853, 0.000000;;, + 138;3;-0.000000, 0.939853,-0.000000;;, + 139;3; 0.000000, 0.939853, 0.000000;;, + 140;3;-0.000000, 0.939853, 0.000000;;, + 141;3; 0.000000, 0.939853,-0.000000;;, + 142;3;-0.000000, 0.939853,-0.000000;;, + 143;3; 0.000000, 0.939853, 0.000000;;, + 144;3; 0.000000, 0.939853,-0.000000;;, + 145;3;-0.000000, 0.939853,-0.000000;;, + 146;3;-0.000000, 0.939853, 0.000000;;, + 147;3; 0.000000, 0.939853, 0.000000;;, + 148;3;-0.000000, 0.939853, 0.000000;;, + 149;3; 0.000000, 0.939853, 0.000000;;, + 150;3; 0.000000, 0.939853, 0.000000;;, + 151;3; 0.000000, 0.939853, 0.000000;;, + 152;3; 0.000000, 0.939853, 0.000000;;, + 153;3; 0.000000, 0.939853, 0.000000;;, + 154;3; 0.000000, 0.939853, 0.000000;;, + 155;3; 0.000000, 0.939853, 0.000000;;, + 156;3; 0.000000, 0.939853, 0.000000;;, + 157;3; 0.000000, 0.939853, 0.000000;;, + 158;3; 0.000000, 0.939853, 0.000000;;, + 159;3; 0.000000, 0.939853, 0.000000;;, + 160;3; 0.000000, 0.939853, 0.000000;;, + 161;3; 0.000000, 0.939853, 0.000000;;, + 162;3; 0.000000, 0.939853, 0.000000;;, + 163;3; 0.000000, 0.939853, 0.000000;;, + 164;3; 0.000000, 0.939853, 0.000000;;, + 165;3; 0.000000, 0.939853, 0.000000;;, + 166;3; 0.000000, 0.939853, 0.000000;;, + 167;3; 0.000000, 0.939853, 0.000000;;, + 168;3; 0.000000, 0.939853, 0.000000;;, + 169;3; 0.000000, 0.939853, 0.000000;;, + 170;3; 0.000000, 0.939853, 0.000000;;, + 171;3; 0.000000, 0.939853, 0.000000;;, + 172;3; 0.000000, 0.939853, 0.000000;;, + 173;3; 0.000000, 0.939853, 0.000000;;, + 174;3; 0.000000, 0.939853, 0.000000;;, + 175;3; 0.000000, 0.939853, 0.000000;;, + 176;3; 0.000000, 0.939853, 0.000000;;, + 177;3; 0.000000, 0.939853, 0.000000;;, + 178;3; 0.000000, 0.939853, 0.000000;;, + 179;3; 0.000000, 0.939853, 0.000000;;, + 180;3; 0.000000, 0.939853, 0.000000;;, + 181;3; 0.000000, 0.939853, 0.000000;;, + 182;3; 0.000000, 0.939853, 0.000000;;, + 183;3; 0.000000, 0.939853, 0.000000;;, + 184;3; 0.000000, 0.939853, 0.000000;;, + 185;3; 0.000000, 0.939853, 0.000000;;, + 186;3; 0.000000, 0.939853, 0.000000;;, + 187;3; 0.000000, 0.939853, 0.000000;;, + 188;3; 0.000000, 0.939853, 0.000000;;, + 189;3; 0.000000, 0.939853, 0.000000;;, + 190;3; 0.000000, 0.939853, 0.000000;;, + 191;3; 0.000000, 0.939853, 0.000000;;, + 192;3; 0.000000, 0.939853, 0.000000;;, + 193;3; 0.000000, 0.939853, 0.000000;;, + 194;3; 0.000000, 0.939853, 0.000000;;, + 195;3; 0.000000, 0.939853, 0.000000;;, + 196;3; 0.000000, 0.939853, 0.000000;;, + 197;3; 0.000000, 0.939853, 0.000000;;, + 198;3; 0.000000, 0.939853, 0.000000;;, + 199;3; 0.000000, 0.939853, 0.000000;;, + 200;3; 0.000000, 0.939853, 0.000000;;, + 201;3; 0.000000, 0.939853, 0.000000;;, + 202;3; 0.000000, 0.939853, 0.000000;;, + 203;3; 0.000000, 0.939853, 0.000000;;, + 204;3; 0.000000, 0.939853, 0.000000;;, + 205;3; 0.000000, 0.939853, 0.000000;;, + 206;3; 0.000000, 0.939853, 0.000000;;, + 207;3; 0.000000, 0.939853, 0.000000;;, + 208;3; 0.000000, 0.939853, 0.000000;;, + 209;3; 0.000000, 0.939853, 0.000000;;, + 210;3; 0.000000, 0.939853, 0.000000;;, + 211;3; 0.000000, 0.939853, 0.000000;;, + 212;3; 0.000000, 0.939853, 0.000000;;, + 213;3; 0.000000, 0.939853, 0.000000;;, + 214;3; 0.000000, 0.939853, 0.000000;;, + 215;3; 0.000000, 0.939853, 0.000000;;, + 216;3; 0.000000, 0.939853, 0.000000;;, + 217;3; 0.000000, 0.939853, 0.000000;;, + 218;3; 0.000000, 0.939853, 0.000000;;, + 219;3; 0.000000, 0.939853, 0.000000;;, + 220;3; 0.000000, 0.939853, 0.000000;;, + 221;3; 0.000000, 0.939853, 0.000000;;, + 222;3; 0.000000, 0.939853, 0.000000;;, + 223;3; 0.000000, 0.939853, 0.000000;;, + 224;3; 0.000000, 0.939853, 0.000000;;, + 225;3; 0.000000, 0.939853, 0.000000;;, + 226;3; 0.000000, 0.939853, 0.000000;;, + 227;3; 0.000000, 0.939853, 0.000000;;, + 228;3; 0.000000, 0.939853, 0.000000;;, + 229;3; 0.000000, 0.939853, 0.000000;;, + 230;3; 0.000000, 0.939853, 0.000000;;, + 231;3; 0.000000, 0.939853, 0.000000;;, + 232;3; 0.000000, 0.939853, 0.000000;;, + 233;3; 0.000000, 0.939853, 0.000000;;, + 234;3; 0.000000, 0.939853, 0.000000;;, + 235;3; 0.000000, 0.939853, 0.000000;;, + 236;3; 0.000000, 0.939853, 0.000000;;, + 237;3; 0.000000, 0.939853, 0.000000;;, + 238;3; 0.000000, 0.939853, 0.000000;;, + 239;3; 0.000000, 0.939853, 0.000000;;, + 240;3; 0.000000, 0.939853, 0.000000;;, + 241;3; 0.000000, 0.939853, 0.000000;;, + 242;3; 0.000000, 0.939853, 0.000000;;, + 243;3; 0.000000, 0.939853, 0.000000;;, + 244;3; 0.000000, 0.939853, 0.000000;;, + 245;3; 0.000000, 0.939853, 0.000000;;, + 246;3; 0.000000, 0.939853, 0.000000;;, + 247;3; 0.000000, 0.939853, 0.000000;;, + 248;3; 0.000000, 0.939853, 0.000000;;, + 249;3; 0.000000, 0.939853, 0.000000;;; + } + } + Animation { + {Armature_Bone_032} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 1;4;-0.998658,-0.051714, 0.000000, 0.000000;;, + 2;4;-0.998614,-0.052359, 0.000000, 0.000000;;, + 3;4;-0.998539,-0.053436, 0.000000, 0.000000;;, + 4;4;-0.998436,-0.054936, 0.000000, 0.000000;;, + 5;4;-0.998304,-0.056838, 0.000000, 0.000000;;, + 6;4;-0.998147,-0.059104, 0.000000, 0.000000;;, + 7;4;-0.997970,-0.061678, 0.000000, 0.000000;;, + 8;4;-0.997775,-0.064487, 0.000000, 0.000000;;, + 9;4;-0.997571,-0.067445, 0.000000, 0.000000;;, + 10;4;-0.997363,-0.070454, 0.000000, 0.000000;;, + 11;4;-0.997158,-0.073412, 0.000000, 0.000000;;, + 12;4;-0.996964,-0.076222, 0.000000, 0.000000;;, + 13;4;-0.996786,-0.078795, 0.000000, 0.000000;;, + 14;4;-0.996630,-0.081061, 0.000000, 0.000000;;, + 15;4;-0.996498,-0.082963, 0.000000, 0.000000;;, + 16;4;-0.996395,-0.084463, 0.000000, 0.000000;;, + 17;4;-0.996320,-0.085540, 0.000000, 0.000000;;, + 18;4;-0.996276,-0.086185, 0.000000, 0.000000;;, + 19;4;-0.996261,-0.086398, 0.000000, 0.000000;;, + 20;4;-0.996274,-0.086206, 0.000000, 0.000000;;, + 21;4;-0.996314,-0.085624, 0.000000, 0.000000;;, + 22;4;-0.996382,-0.084652, 0.000000, 0.000000;;, + 23;4;-0.996475,-0.083296, 0.000000, 0.000000;;, + 24;4;-0.996594,-0.081572, 0.000000, 0.000000;;, + 25;4;-0.996737,-0.079510, 0.000000, 0.000000;;, + 26;4;-0.996900,-0.077153, 0.000000, 0.000000;;, + 27;4;-0.997079,-0.074559, 0.000000, 0.000000;;, + 28;4;-0.997270,-0.071797, 0.000000, 0.000000;;, + 29;4;-0.997467,-0.068950, 0.000000, 0.000000;;, + 30;4;-0.997664,-0.066102, 0.000000, 0.000000;;, + 31;4;-0.997855,-0.063340, 0.000000, 0.000000;;, + 32;4;-0.998034,-0.060746, 0.000000, 0.000000;;, + 33;4;-0.998197,-0.058389, 0.000000, 0.000000;;, + 34;4;-0.998339,-0.056327, 0.000000, 0.000000;;, + 35;4;-0.998459,-0.054603, 0.000000, 0.000000;;, + 36;4;-0.998552,-0.053247, 0.000000, 0.000000;;, + 37;4;-0.998619,-0.052275, 0.000000, 0.000000;;, + 38;4;-0.998660,-0.051694, 0.000000, 0.000000;;, + 39;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 40;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 41;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 42;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 43;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 44;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 45;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 46;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 47;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 48;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 49;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 50;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 51;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 52;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 53;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 54;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 55;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 56;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 57;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 58;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 59;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 60;4;-0.998686,-0.050573, 0.000132,-0.000802;;, + 61;4;-0.998727,-0.047780, 0.000530,-0.003216;;, + 62;4;-0.998793,-0.043238, 0.001177,-0.007141;;, + 63;4;-0.998879,-0.037297, 0.002024,-0.012274;;, + 64;4;-0.998977,-0.030567, 0.002983,-0.018090;;, + 65;4;-0.999075,-0.023837, 0.003942,-0.023905;;, + 66;4;-0.999161,-0.017896, 0.004788,-0.029039;;, + 67;4;-0.999227,-0.013354, 0.005435,-0.032963;;, + 68;4;-0.999268,-0.010561, 0.005834,-0.035377;;, + 69;4;-0.999281,-0.009633, 0.005966,-0.036179;;, + 70;4;-0.999280,-0.009735, 0.005951,-0.036091;;, + 71;4;-0.999275,-0.010044, 0.005907,-0.035824;;, + 72;4;-0.999268,-0.010561, 0.005834,-0.035377;;, + 73;4;-0.999257,-0.011286, 0.005730,-0.034750;;, + 74;4;-0.999244,-0.012219, 0.005597,-0.033944;;, + 75;4;-0.999227,-0.013354, 0.005435,-0.032963;;, + 76;4;-0.999208,-0.014686, 0.005246,-0.031813;;, + 77;4;-0.999186,-0.016204, 0.005029,-0.030501;;, + 78;4;-0.999161,-0.017896, 0.004788,-0.029039;;, + 79;4;-0.999134,-0.019746, 0.004525,-0.027440;;, + 80;4;-0.999105,-0.021734, 0.004241,-0.025722;;, + 81;4;-0.999075,-0.023837, 0.003942,-0.023905;;, + 82;4;-0.999043,-0.026029, 0.003629,-0.022011;;, + 83;4;-0.999010,-0.028283, 0.003308,-0.020063;;, + 84;4;-0.998977,-0.030567, 0.002983,-0.018090;;, + 85;4;-0.998944,-0.032851, 0.002657,-0.016116;;, + 86;4;-0.998911,-0.035104, 0.002336,-0.014169;;, + 87;4;-0.998879,-0.037297, 0.002024,-0.012274;;, + 88;4;-0.998849,-0.039400, 0.001724,-0.010457;;, + 89;4;-0.998820,-0.041388, 0.001441,-0.008739;;, + 90;4;-0.998793,-0.043238, 0.001177,-0.007141;;, + 91;4;-0.998768,-0.044930, 0.000936,-0.005679;;, + 92;4;-0.998746,-0.046448, 0.000720,-0.004367;;, + 93;4;-0.998727,-0.047780, 0.000530,-0.003216;;, + 94;4;-0.998711,-0.048915, 0.000369,-0.002235;;, + 95;4;-0.998697,-0.049847, 0.000236,-0.001429;;, + 96;4;-0.998686,-0.050573, 0.000132,-0.000802;;, + 97;4;-0.998679,-0.051090, 0.000059,-0.000355;;, + 98;4;-0.998675,-0.051399, 0.000015,-0.000088;;, + 99;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 100;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 101;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 102;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 103;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 104;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 105;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 106;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 107;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 108;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 109;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 110;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 111;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 112;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 113;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 114;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 115;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 116;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 117;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 118;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 119;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 120;4;-0.998564,-0.047388, 0.000000, 0.000000;;, + 121;4;-0.997787,-0.028975, 0.000000, 0.000000;;, + 122;4;-0.995530, 0.012991,-0.000000, 0.000000;;, + 123;4;-0.991321, 0.081341,-0.000000, 0.000000;;, + 124;4;-0.985372, 0.170417,-0.000000, 0.000000;;, + 125;4;-0.929734, 0.305571,-0.000000, 0.000000;;, + 126;4;-0.785564, 0.503706,-0.000000, 0.000000;;, + 127;4;-0.603597, 0.712315,-0.000000, 0.000000;;, + 128;4;-0.462859, 0.860514,-0.000000, 0.000000;;, + 129;4;-0.413060, 0.910704,-0.000000, 0.000000;;, + 130;4;-0.438600, 0.901391,-0.000000, 0.000000;;, + 131;4;-0.514481, 0.867060,-0.000000, 0.000000;;, + 132;4;-0.622493, 0.801244,-0.000000, 0.000000;;, + 133;4;-0.727209, 0.707679,-0.000000, 0.000000;;, + 134;4;-0.801808, 0.597582,-0.000000, 0.000000;;, + 135;4;-0.856943, 0.441161,-0.000000, 0.000000;;, + 136;4;-0.906835, 0.217114,-0.000000, 0.000000;;, + 137;4;-0.944452,-0.016239, 0.000000, 0.000000;;, + 138;4;-0.965509,-0.181051, 0.000000, 0.000000;;, + 139;4;-0.971586,-0.236689, 0.000000, 0.000000;;, + 140;4;-0.971586,-0.236689, 0.000000, 0.000000;;, + 141;4;-0.971586,-0.236689, 0.000000, 0.000000;;, + 142;4;-0.971586,-0.236689, 0.000000, 0.000000;;, + 143;4;-0.971586,-0.236689, 0.000000, 0.000000;;, + 144;4;-0.971586,-0.236689, 0.000000, 0.000000;;, + 145;4;-0.973993,-0.220228, 0.000000, 0.000000;;, + 146;4;-0.980775,-0.173862, 0.000000, 0.000000;;, + 147;4;-0.989483,-0.114329, 0.000000, 0.000000;;, + 148;4;-0.996265,-0.067962, 0.000000, 0.000000;;, + 149;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 150;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 151;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 152;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 153;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 154;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 155;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 156;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 157;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 158;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 159;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 160;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 161;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 162;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 163;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 164;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 165;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 166;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 167;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 168;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 169;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 170;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 171;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 172;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 173;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 174;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 175;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 176;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 177;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 178;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 179;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 180;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 181;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 182;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 183;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 184;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 185;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 186;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 187;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 188;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 189;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 190;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 191;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 192;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 193;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 194;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 195;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 196;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 197;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 198;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 199;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 200;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 201;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 202;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 203;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 204;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 205;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 206;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 207;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 208;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 209;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 210;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 211;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 212;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 213;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 214;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 215;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 216;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 217;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 218;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 219;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 220;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 221;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 222;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 223;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 224;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 225;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 226;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 227;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 228;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 229;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 230;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 231;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 232;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 233;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 234;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 235;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 236;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 237;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 238;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 239;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 240;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 241;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 242;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 243;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 244;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 245;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 246;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 247;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 248;4;-0.998673,-0.051501, 0.000000, 0.000000;;, + 249;4;-0.998673,-0.051501, 0.000000, 0.000000;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3; 0.000000, 2.406491,-0.000000;;, + 1;3; 0.000000, 2.406491, 0.000000;;, + 2;3; 0.000000, 2.406491, 0.000000;;, + 3;3; 0.000000, 2.406491, 0.000000;;, + 4;3; 0.000000, 2.406491, 0.000000;;, + 5;3;-0.000000, 2.406491,-0.000000;;, + 6;3; 0.000000, 2.406491,-0.000000;;, + 7;3;-0.000000, 2.406492, 0.000000;;, + 8;3; 0.000000, 2.406491, 0.000000;;, + 9;3;-0.000000, 2.406491,-0.000000;;, + 10;3; 0.000000, 2.406491,-0.000000;;, + 11;3; 0.000000, 2.406491,-0.000000;;, + 12;3;-0.000000, 2.406491, 0.000000;;, + 13;3; 0.000000, 2.406491, 0.000000;;, + 14;3;-0.000000, 2.406491, 0.000000;;, + 15;3;-0.000000, 2.406491, 0.000000;;, + 16;3;-0.000000, 2.406491, 0.000000;;, + 17;3;-0.000000, 2.406492, 0.000000;;, + 18;3;-0.000000, 2.406491, 0.000000;;, + 19;3; 0.000000, 2.406491,-0.000000;;, + 20;3;-0.000000, 2.406491, 0.000000;;, + 21;3;-0.000000, 2.406491,-0.000000;;, + 22;3;-0.000000, 2.406491, 0.000000;;, + 23;3; 0.000000, 2.406491, 0.000000;;, + 24;3; 0.000000, 2.406491,-0.000000;;, + 25;3;-0.000000, 2.406491, 0.000000;;, + 26;3; 0.000000, 2.406491,-0.000000;;, + 27;3; 0.000000, 2.406491, 0.000000;;, + 28;3; 0.000000, 2.406491,-0.000000;;, + 29;3; 0.000000, 2.406491, 0.000000;;, + 30;3; 0.000000, 2.406491,-0.000000;;, + 31;3; 0.000000, 2.406491,-0.000000;;, + 32;3;-0.000000, 2.406491, 0.000000;;, + 33;3; 0.000000, 2.406491, 0.000000;;, + 34;3;-0.000000, 2.406491, 0.000000;;, + 35;3; 0.000000, 2.406491, 0.000000;;, + 36;3; 0.000000, 2.406491,-0.000000;;, + 37;3; 0.000000, 2.406491,-0.000000;;, + 38;3; 0.000000, 2.406491, 0.000000;;, + 39;3; 0.000000, 2.406491,-0.000000;;, + 40;3;-0.000000, 2.406491, 0.000000;;, + 41;3;-0.000000, 2.406491,-0.000000;;, + 42;3;-0.000000, 2.406491,-0.000000;;, + 43;3; 0.000000, 2.406491, 0.000000;;, + 44;3;-0.000000, 2.406491, 0.000000;;, + 45;3;-0.000000, 2.406491, 0.000000;;, + 46;3; 0.000000, 2.406491,-0.000000;;, + 47;3;-0.000000, 2.406491, 0.000000;;, + 48;3; 0.000000, 2.406491,-0.000000;;, + 49;3;-0.000000, 2.406491,-0.000000;;, + 50;3;-0.000000, 2.406491,-0.000000;;, + 51;3; 0.000000, 2.406491,-0.000000;;, + 52;3; 0.000000, 2.406491,-0.000000;;, + 53;3;-0.000000, 2.406491, 0.000000;;, + 54;3; 0.000000, 2.406491, 0.000000;;, + 55;3; 0.000000, 2.406491,-0.000000;;, + 56;3;-0.000000, 2.406491,-0.000000;;, + 57;3; 0.000000, 2.406491,-0.000000;;, + 58;3; 0.000000, 2.406491,-0.000000;;, + 59;3;-0.000000, 2.406491,-0.000000;;, + 60;3; 0.000000, 2.406491, 0.000000;;, + 61;3;-0.000000, 2.406492,-0.000000;;, + 62;3;-0.000000, 2.406491, 0.000000;;, + 63;3; 0.000000, 2.406491, 0.000000;;, + 64;3; 0.000000, 2.406491, 0.000000;;, + 65;3; 0.000000, 2.406491,-0.000000;;, + 66;3; 0.000000, 2.406491, 0.000000;;, + 67;3; 0.000000, 2.406491, 0.000000;;, + 68;3;-0.000000, 2.406491, 0.000000;;, + 69;3;-0.000000, 2.406491,-0.000000;;, + 70;3; 0.000000, 2.406491,-0.000000;;, + 71;3;-0.000000, 2.406491,-0.000000;;, + 72;3; 0.000000, 2.406491, 0.000000;;, + 73;3; 0.000000, 2.406491, 0.000000;;, + 74;3;-0.000000, 2.406491,-0.000000;;, + 75;3; 0.000000, 2.406491,-0.000000;;, + 76;3;-0.000000, 2.406491, 0.000000;;, + 77;3; 0.000000, 2.406491, 0.000000;;, + 78;3; 0.000000, 2.406491, 0.000000;;, + 79;3; 0.000000, 2.406491, 0.000000;;, + 80;3;-0.000000, 2.406491,-0.000000;;, + 81;3; 0.000000, 2.406491, 0.000000;;, + 82;3;-0.000000, 2.406491,-0.000000;;, + 83;3; 0.000000, 2.406491, 0.000000;;, + 84;3; 0.000000, 2.406491, 0.000000;;, + 85;3; 0.000000, 2.406491, 0.000000;;, + 86;3; 0.000000, 2.406491,-0.000000;;, + 87;3;-0.000000, 2.406491, 0.000000;;, + 88;3;-0.000000, 2.406491,-0.000000;;, + 89;3; 0.000000, 2.406491,-0.000000;;, + 90;3;-0.000000, 2.406492,-0.000000;;, + 91;3;-0.000000, 2.406491,-0.000000;;, + 92;3;-0.000000, 2.406491, 0.000000;;, + 93;3;-0.000000, 2.406491,-0.000000;;, + 94;3; 0.000000, 2.406491, 0.000000;;, + 95;3; 0.000000, 2.406491,-0.000000;;, + 96;3; 0.000000, 2.406491,-0.000000;;, + 97;3;-0.000000, 2.406491, 0.000000;;, + 98;3;-0.000000, 2.406491,-0.000000;;, + 99;3;-0.000000, 2.406491,-0.000000;;, + 100;3;-0.000000, 2.406491, 0.000000;;, + 101;3;-0.000000, 2.406491, 0.000000;;, + 102;3;-0.000000, 2.406491, 0.000000;;, + 103;3; 0.000000, 2.406491, 0.000000;;, + 104;3;-0.000000, 2.406491, 0.000000;;, + 105;3;-0.000000, 2.406491, 0.000000;;, + 106;3;-0.000000, 2.406491, 0.000000;;, + 107;3;-0.000000, 2.406491,-0.000000;;, + 108;3; 0.000000, 2.406491,-0.000000;;, + 109;3; 0.000000, 2.406491,-0.000000;;, + 110;3;-0.000000, 2.406491,-0.000000;;, + 111;3; 0.000000, 2.406491, 0.000000;;, + 112;3;-0.000000, 2.406491,-0.000000;;, + 113;3; 0.000000, 2.406491, 0.000000;;, + 114;3;-0.000000, 2.406491,-0.000000;;, + 115;3;-0.000000, 2.406491,-0.000000;;, + 116;3;-0.000000, 2.406491,-0.000000;;, + 117;3; 0.000000, 2.406491,-0.000000;;, + 118;3; 0.000000, 2.406491, 0.000000;;, + 119;3; 0.000000, 2.406491,-0.000000;;, + 120;3; 0.000000, 2.406491, 0.000000;;, + 121;3; 0.000000, 2.406491, 0.000000;;, + 122;3;-0.000000, 2.406491, 0.000000;;, + 123;3; 0.000000, 2.406491,-0.000000;;, + 124;3;-0.000000, 2.406491, 0.000000;;, + 125;3; 0.000000, 2.406491, 0.000000;;, + 126;3;-0.000000, 2.406491, 0.000000;;, + 127;3; 0.000000, 2.406491, 0.000000;;, + 128;3;-0.000000, 2.406491,-0.000000;;, + 129;3; 0.000000, 2.406491, 0.000000;;, + 130;3;-0.000000, 2.406491, 0.000000;;, + 131;3;-0.000000, 2.406491, 0.000000;;, + 132;3;-0.000000, 2.406491, 0.000000;;, + 133;3; 0.000000, 2.406491,-0.000000;;, + 134;3; 0.000000, 2.406491, 0.000000;;, + 135;3;-0.000000, 2.406491, 0.000000;;, + 136;3;-0.000000, 2.406491,-0.000000;;, + 137;3; 0.000000, 2.406491, 0.000000;;, + 138;3; 0.000000, 2.406491,-0.000000;;, + 139;3;-0.000000, 2.406491,-0.000000;;, + 140;3; 0.000000, 2.406491, 0.000000;;, + 141;3; 0.000000, 2.406491, 0.000000;;, + 142;3; 0.000000, 2.406491, 0.000000;;, + 143;3; 0.000000, 2.406491, 0.000000;;, + 144;3; 0.000000, 2.406491,-0.000000;;, + 145;3; 0.000000, 2.406491, 0.000000;;, + 146;3; 0.000000, 2.406491, 0.000000;;, + 147;3; 0.000000, 2.406491, 0.000000;;, + 148;3; 0.000000, 2.406491, 0.000000;;, + 149;3; 0.000000, 2.406491,-0.000000;;, + 150;3; 0.000000, 2.406491,-0.000000;;, + 151;3; 0.000000, 2.406491,-0.000000;;, + 152;3; 0.000000, 2.406491,-0.000000;;, + 153;3; 0.000000, 2.406491,-0.000000;;, + 154;3; 0.000000, 2.406491,-0.000000;;, + 155;3; 0.000000, 2.406491,-0.000000;;, + 156;3; 0.000000, 2.406491,-0.000000;;, + 157;3; 0.000000, 2.406491,-0.000000;;, + 158;3; 0.000000, 2.406491,-0.000000;;, + 159;3; 0.000000, 2.406491,-0.000000;;, + 160;3; 0.000000, 2.406491,-0.000000;;, + 161;3; 0.000000, 2.406491,-0.000000;;, + 162;3; 0.000000, 2.406491,-0.000000;;, + 163;3; 0.000000, 2.406491,-0.000000;;, + 164;3; 0.000000, 2.406491,-0.000000;;, + 165;3; 0.000000, 2.406491,-0.000000;;, + 166;3; 0.000000, 2.406491,-0.000000;;, + 167;3; 0.000000, 2.406491,-0.000000;;, + 168;3; 0.000000, 2.406491,-0.000000;;, + 169;3; 0.000000, 2.406491,-0.000000;;, + 170;3; 0.000000, 2.406491,-0.000000;;, + 171;3; 0.000000, 2.406491,-0.000000;;, + 172;3; 0.000000, 2.406491,-0.000000;;, + 173;3; 0.000000, 2.406491,-0.000000;;, + 174;3; 0.000000, 2.406491,-0.000000;;, + 175;3; 0.000000, 2.406491,-0.000000;;, + 176;3; 0.000000, 2.406491,-0.000000;;, + 177;3; 0.000000, 2.406491,-0.000000;;, + 178;3; 0.000000, 2.406491,-0.000000;;, + 179;3; 0.000000, 2.406491,-0.000000;;, + 180;3; 0.000000, 2.406491,-0.000000;;, + 181;3; 0.000000, 2.406491,-0.000000;;, + 182;3; 0.000000, 2.406491,-0.000000;;, + 183;3; 0.000000, 2.406491,-0.000000;;, + 184;3; 0.000000, 2.406491,-0.000000;;, + 185;3; 0.000000, 2.406491,-0.000000;;, + 186;3; 0.000000, 2.406491,-0.000000;;, + 187;3; 0.000000, 2.406491,-0.000000;;, + 188;3; 0.000000, 2.406491,-0.000000;;, + 189;3; 0.000000, 2.406491,-0.000000;;, + 190;3; 0.000000, 2.406491,-0.000000;;, + 191;3; 0.000000, 2.406491,-0.000000;;, + 192;3; 0.000000, 2.406491,-0.000000;;, + 193;3; 0.000000, 2.406491,-0.000000;;, + 194;3; 0.000000, 2.406491,-0.000000;;, + 195;3; 0.000000, 2.406491,-0.000000;;, + 196;3; 0.000000, 2.406491,-0.000000;;, + 197;3; 0.000000, 2.406491,-0.000000;;, + 198;3; 0.000000, 2.406491,-0.000000;;, + 199;3; 0.000000, 2.406491,-0.000000;;, + 200;3; 0.000000, 2.406491,-0.000000;;, + 201;3; 0.000000, 2.406491,-0.000000;;, + 202;3; 0.000000, 2.406491,-0.000000;;, + 203;3; 0.000000, 2.406491,-0.000000;;, + 204;3; 0.000000, 2.406491,-0.000000;;, + 205;3; 0.000000, 2.406491,-0.000000;;, + 206;3; 0.000000, 2.406491,-0.000000;;, + 207;3; 0.000000, 2.406491,-0.000000;;, + 208;3; 0.000000, 2.406491,-0.000000;;, + 209;3; 0.000000, 2.406491,-0.000000;;, + 210;3; 0.000000, 2.406491,-0.000000;;, + 211;3; 0.000000, 2.406491,-0.000000;;, + 212;3; 0.000000, 2.406491,-0.000000;;, + 213;3; 0.000000, 2.406491,-0.000000;;, + 214;3; 0.000000, 2.406491,-0.000000;;, + 215;3; 0.000000, 2.406491,-0.000000;;, + 216;3; 0.000000, 2.406491,-0.000000;;, + 217;3; 0.000000, 2.406491,-0.000000;;, + 218;3; 0.000000, 2.406491,-0.000000;;, + 219;3; 0.000000, 2.406491,-0.000000;;, + 220;3; 0.000000, 2.406491,-0.000000;;, + 221;3; 0.000000, 2.406491,-0.000000;;, + 222;3; 0.000000, 2.406491,-0.000000;;, + 223;3; 0.000000, 2.406491,-0.000000;;, + 224;3; 0.000000, 2.406491,-0.000000;;, + 225;3; 0.000000, 2.406491,-0.000000;;, + 226;3; 0.000000, 2.406491,-0.000000;;, + 227;3; 0.000000, 2.406491,-0.000000;;, + 228;3; 0.000000, 2.406491,-0.000000;;, + 229;3; 0.000000, 2.406491,-0.000000;;, + 230;3; 0.000000, 2.406491,-0.000000;;, + 231;3; 0.000000, 2.406491,-0.000000;;, + 232;3; 0.000000, 2.406491,-0.000000;;, + 233;3; 0.000000, 2.406491,-0.000000;;, + 234;3; 0.000000, 2.406491,-0.000000;;, + 235;3; 0.000000, 2.406491,-0.000000;;, + 236;3; 0.000000, 2.406491,-0.000000;;, + 237;3; 0.000000, 2.406491,-0.000000;;, + 238;3; 0.000000, 2.406491,-0.000000;;, + 239;3; 0.000000, 2.406491,-0.000000;;, + 240;3; 0.000000, 2.406491,-0.000000;;, + 241;3; 0.000000, 2.406491,-0.000000;;, + 242;3; 0.000000, 2.406491,-0.000000;;, + 243;3; 0.000000, 2.406491,-0.000000;;, + 244;3; 0.000000, 2.406491,-0.000000;;, + 245;3; 0.000000, 2.406491,-0.000000;;, + 246;3; 0.000000, 2.406491,-0.000000;;, + 247;3; 0.000000, 2.406491,-0.000000;;, + 248;3; 0.000000, 2.406491,-0.000000;;, + 249;3; 0.000000, 2.406491,-0.000000;;; + } + } + Animation { + {Armature_Bone_036} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 1;4;-0.975620,-0.219445, 0.000000, 0.000000;;, + 2;4;-0.975764,-0.218740, 0.000000, 0.000000;;, + 3;4;-0.976006,-0.217563, 0.000000, 0.000000;;, + 4;4;-0.976342,-0.215923, 0.000000, 0.000000;;, + 5;4;-0.976767,-0.213844, 0.000000, 0.000000;;, + 6;4;-0.977275,-0.211367, 0.000000, 0.000000;;, + 7;4;-0.977851,-0.208553, 0.000000, 0.000000;;, + 8;4;-0.978480,-0.205482, 0.000000, 0.000000;;, + 9;4;-0.979142,-0.202248, 0.000000, 0.000000;;, + 10;4;-0.979816,-0.198959, 0.000000, 0.000000;;, + 11;4;-0.980478,-0.195726, 0.000000, 0.000000;;, + 12;4;-0.981107,-0.192654, 0.000000, 0.000000;;, + 13;4;-0.981683,-0.189840, 0.000000, 0.000000;;, + 14;4;-0.982191,-0.187364, 0.000000, 0.000000;;, + 15;4;-0.982616,-0.185285, 0.000000, 0.000000;;, + 16;4;-0.982952,-0.183644, 0.000000, 0.000000;;, + 17;4;-0.983193,-0.182467, 0.000000, 0.000000;;, + 18;4;-0.983338,-0.181763, 0.000000, 0.000000;;, + 19;4;-0.983386,-0.181530, 0.000000, 0.000000;;, + 20;4;-0.983342,-0.181740, 0.000000, 0.000000;;, + 21;4;-0.983212,-0.182375, 0.000000, 0.000000;;, + 22;4;-0.982995,-0.183438, 0.000000, 0.000000;;, + 23;4;-0.982691,-0.184920, 0.000000, 0.000000;;, + 24;4;-0.982305,-0.186805, 0.000000, 0.000000;;, + 25;4;-0.981843,-0.189059, 0.000000, 0.000000;;, + 26;4;-0.981316,-0.191636, 0.000000, 0.000000;;, + 27;4;-0.980735,-0.194472, 0.000000, 0.000000;;, + 28;4;-0.980117,-0.197491, 0.000000, 0.000000;;, + 29;4;-0.979479,-0.200604, 0.000000, 0.000000;;, + 30;4;-0.978841,-0.203717, 0.000000, 0.000000;;, + 31;4;-0.978223,-0.206736, 0.000000, 0.000000;;, + 32;4;-0.977642,-0.209572, 0.000000, 0.000000;;, + 33;4;-0.977115,-0.212148, 0.000000, 0.000000;;, + 34;4;-0.976653,-0.214402, 0.000000, 0.000000;;, + 35;4;-0.976267,-0.216287, 0.000000, 0.000000;;, + 36;4;-0.975963,-0.217770, 0.000000, 0.000000;;, + 37;4;-0.975746,-0.218832, 0.000000, 0.000000;;, + 38;4;-0.975616,-0.219468, 0.000000, 0.000000;;, + 39;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 40;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 41;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 42;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 43;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 44;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 45;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 46;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 47;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 48;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 49;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 50;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 51;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 52;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 53;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 54;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 55;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 56;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 57;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 58;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 59;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 60;4;-0.976002,-0.216604, 0.001306, 0.000137;;, + 61;4;-0.977295,-0.207353, 0.005238, 0.000548;;, + 62;4;-0.979397,-0.192312, 0.011631, 0.001217;;, + 63;4;-0.982146,-0.172639, 0.019992, 0.002092;;, + 64;4;-0.985261,-0.150353, 0.029464, 0.003084;;, + 65;4;-0.988375,-0.128066, 0.038936, 0.004075;;, + 66;4;-0.991125,-0.108393, 0.047297, 0.004950;;, + 67;4;-0.993227,-0.093352, 0.053689, 0.005619;;, + 68;4;-0.994520,-0.084101, 0.057621, 0.006031;;, + 69;4;-0.994949,-0.081027, 0.058927, 0.006168;;, + 70;4;-0.994902,-0.081366, 0.058783, 0.006153;;, + 71;4;-0.994759,-0.082389, 0.058349, 0.006107;;, + 72;4;-0.994520,-0.084101, 0.057621, 0.006031;;, + 73;4;-0.994184,-0.086504, 0.056600, 0.005924;;, + 74;4;-0.993752,-0.089592, 0.055287, 0.005787;;, + 75;4;-0.993227,-0.093352, 0.053689, 0.005619;;, + 76;4;-0.992611,-0.097762, 0.051815, 0.005423;;, + 77;4;-0.991908,-0.102789, 0.049678, 0.005200;;, + 78;4;-0.991125,-0.108393, 0.047297, 0.004950;;, + 79;4;-0.990269,-0.114519, 0.044693, 0.004678;;, + 80;4;-0.989349,-0.121102, 0.041896, 0.004385;;, + 81;4;-0.988375,-0.128066, 0.038936, 0.004075;;, + 82;4;-0.987361,-0.135326, 0.035850, 0.003752;;, + 83;4;-0.986318,-0.142788, 0.032679, 0.003420;;, + 84;4;-0.985261,-0.150353, 0.029464, 0.003084;;, + 85;4;-0.984204,-0.157917, 0.026249, 0.002747;;, + 86;4;-0.983161,-0.165379, 0.023077, 0.002415;;, + 87;4;-0.982146,-0.172639, 0.019992, 0.002092;;, + 88;4;-0.981173,-0.179603, 0.017032, 0.001783;;, + 89;4;-0.980253,-0.186186, 0.014234, 0.001490;;, + 90;4;-0.979397,-0.192312, 0.011631, 0.001217;;, + 91;4;-0.978614,-0.197916, 0.009249, 0.000968;;, + 92;4;-0.977911,-0.202944, 0.007112, 0.000744;;, + 93;4;-0.977295,-0.207353, 0.005238, 0.000548;;, + 94;4;-0.976769,-0.211113, 0.003640, 0.000381;;, + 95;4;-0.976338,-0.214201, 0.002328, 0.000244;;, + 96;4;-0.976002,-0.216604, 0.001306, 0.000137;;, + 97;4;-0.975763,-0.218316, 0.000579, 0.000061;;, + 98;4;-0.975620,-0.219339, 0.000144, 0.000015;;, + 99;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 100;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 101;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 102;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 103;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 104;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 105;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 106;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 107;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 108;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 109;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 110;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 111;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 112;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 113;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 114;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 115;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 116;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 117;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 118;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 119;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 120;4;-0.965071,-0.154408, 0.000000, 0.000000;;, + 121;4;-0.935490, 0.029437,-0.000000, 0.000000;;, + 122;4;-0.897509, 0.265492,-0.000000, 0.000000;;, + 123;4;-0.867929, 0.449336,-0.000000, 0.000000;;, + 124;4;-0.857427, 0.514606,-0.000000, 0.000000;;, + 125;4;-0.857427, 0.514606,-0.000000, 0.000000;;, + 126;4;-0.857427, 0.514606,-0.000000, 0.000000;;, + 127;4;-0.857427, 0.514606,-0.000000, 0.000000;;, + 128;4;-0.857427, 0.514606,-0.000000, 0.000000;;, + 129;4;-0.857427, 0.514606,-0.000000, 0.000000;;, + 130;4;-0.870082, 0.483297,-0.000000, 0.000000;;, + 131;4;-0.905730, 0.389567,-0.000000, 0.000000;;, + 132;4;-0.951501, 0.254337, 0.000000,-0.000000;;, + 133;4;-0.987149, 0.120055, 0.000000,-0.000000;;, + 134;4;-0.999805, 0.019752, 0.000000,-0.000000;;, + 135;4;-0.996499,-0.062399, 0.000000,-0.000000;;, + 136;4;-0.987187,-0.145550, 0.000000,-0.000000;;, + 137;4;-0.975230,-0.215128, 0.000000,-0.000000;;, + 138;4;-0.965918,-0.257727, 0.000000,-0.000000;;, + 139;4;-0.962612,-0.270883, 0.000000,-0.000000;;, + 140;4;-0.962612,-0.270883, 0.000000,-0.000000;;, + 141;4;-0.962612,-0.270883, 0.000000,-0.000000;;, + 142;4;-0.962612,-0.270883, 0.000000,-0.000000;;, + 143;4;-0.962612,-0.270883, 0.000000,-0.000000;;, + 144;4;-0.962612,-0.270883, 0.000000,-0.000000;;, + 145;4;-0.963764,-0.266332, 0.000000,-0.000000;;, + 146;4;-0.967009,-0.253511, 0.000000,-0.000000;;, + 147;4;-0.971176,-0.237050, 0.000000,-0.000000;;, + 148;4;-0.974420,-0.224229, 0.000000, 0.000000;;, + 149;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 150;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 151;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 152;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 153;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 154;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 155;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 156;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 157;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 158;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 159;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 160;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 161;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 162;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 163;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 164;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 165;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 166;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 167;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 168;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 169;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 170;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 171;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 172;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 173;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 174;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 175;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 176;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 177;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 178;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 179;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 180;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 181;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 182;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 183;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 184;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 185;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 186;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 187;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 188;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 189;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 190;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 191;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 192;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 193;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 194;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 195;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 196;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 197;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 198;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 199;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 200;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 201;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 202;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 203;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 204;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 205;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 206;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 207;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 208;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 209;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 210;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 211;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 212;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 213;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 214;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 215;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 216;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 217;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 218;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 219;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 220;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 221;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 222;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 223;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 224;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 225;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 226;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 227;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 228;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 229;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 230;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 231;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 232;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 233;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 234;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 235;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 236;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 237;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 238;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 239;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 240;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 241;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 242;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 243;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 244;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 245;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 246;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 247;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 248;4;-0.975572,-0.219678, 0.000000, 0.000000;;, + 249;4;-0.975572,-0.219678, 0.000000, 0.000000;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3;-0.000000, 2.366877,-0.000000;;, + 1;3;-0.000000, 2.366877,-0.000000;;, + 2;3;-0.000000, 2.366877,-0.000000;;, + 3;3;-0.000000, 2.366877,-0.000000;;, + 4;3;-0.000000, 2.366877, 0.000000;;, + 5;3; 0.000000, 2.366877, 0.000000;;, + 6;3;-0.000000, 2.366877, 0.000000;;, + 7;3;-0.000000, 2.366877,-0.000000;;, + 8;3;-0.000000, 2.366877, 0.000000;;, + 9;3;-0.000000, 2.366876, 0.000000;;, + 10;3;-0.000000, 2.366877,-0.000000;;, + 11;3;-0.000000, 2.366877, 0.000000;;, + 12;3; 0.000000, 2.366876, 0.000000;;, + 13;3;-0.000000, 2.366877,-0.000000;;, + 14;3;-0.000000, 2.366877,-0.000000;;, + 15;3;-0.000000, 2.366877, 0.000000;;, + 16;3;-0.000000, 2.366877, 0.000000;;, + 17;3;-0.000000, 2.366877, 0.000000;;, + 18;3;-0.000000, 2.366877, 0.000000;;, + 19;3;-0.000000, 2.366877, 0.000000;;, + 20;3;-0.000000, 2.366877, 0.000000;;, + 21;3;-0.000000, 2.366877, 0.000000;;, + 22;3;-0.000000, 2.366877,-0.000000;;, + 23;3;-0.000000, 2.366877, 0.000000;;, + 24;3;-0.000000, 2.366877,-0.000000;;, + 25;3;-0.000000, 2.366877,-0.000000;;, + 26;3;-0.000000, 2.366877,-0.000000;;, + 27;3;-0.000000, 2.366877, 0.000000;;, + 28;3; 0.000000, 2.366877,-0.000000;;, + 29;3;-0.000000, 2.366877, 0.000000;;, + 30;3;-0.000000, 2.366877, 0.000000;;, + 31;3;-0.000000, 2.366877, 0.000000;;, + 32;3;-0.000000, 2.366877, 0.000000;;, + 33;3;-0.000000, 2.366877, 0.000000;;, + 34;3;-0.000000, 2.366877, 0.000000;;, + 35;3;-0.000000, 2.366877,-0.000000;;, + 36;3;-0.000000, 2.366877,-0.000000;;, + 37;3;-0.000000, 2.366877, 0.000000;;, + 38;3;-0.000000, 2.366877, 0.000000;;, + 39;3;-0.000000, 2.366877,-0.000000;;, + 40;3; 0.000000, 2.366876,-0.000000;;, + 41;3;-0.000000, 2.366877,-0.000000;;, + 42;3; 0.000000, 2.366877, 0.000000;;, + 43;3; 0.000000, 2.366877, 0.000000;;, + 44;3; 0.000000, 2.366877, 0.000000;;, + 45;3;-0.000000, 2.366877,-0.000000;;, + 46;3;-0.000000, 2.366877,-0.000000;;, + 47;3;-0.000000, 2.366877, 0.000000;;, + 48;3; 0.000000, 2.366877, 0.000000;;, + 49;3; 0.000000, 2.366877,-0.000000;;, + 50;3; 0.000000, 2.366877, 0.000000;;, + 51;3; 0.000000, 2.366877,-0.000000;;, + 52;3;-0.000000, 2.366877, 0.000000;;, + 53;3;-0.000000, 2.366877,-0.000000;;, + 54;3; 0.000000, 2.366877, 0.000000;;, + 55;3;-0.000000, 2.366877, 0.000000;;, + 56;3; 0.000000, 2.366877,-0.000000;;, + 57;3;-0.000000, 2.366877,-0.000000;;, + 58;3;-0.000000, 2.366877,-0.000000;;, + 59;3;-0.000000, 2.366877, 0.000000;;, + 60;3;-0.000000, 2.366877, 0.000000;;, + 61;3; 0.000000, 2.366877, 0.000000;;, + 62;3;-0.000000, 2.366877,-0.000000;;, + 63;3; 0.000000, 2.366877, 0.000000;;, + 64;3;-0.000000, 2.366877,-0.000000;;, + 65;3;-0.000000, 2.366877, 0.000000;;, + 66;3;-0.000000, 2.366877, 0.000000;;, + 67;3; 0.000000, 2.366877, 0.000000;;, + 68;3; 0.000000, 2.366877,-0.000000;;, + 69;3; 0.000000, 2.366877,-0.000000;;, + 70;3; 0.000000, 2.366876, 0.000000;;, + 71;3;-0.000000, 2.366877,-0.000000;;, + 72;3; 0.000000, 2.366877, 0.000000;;, + 73;3; 0.000000, 2.366877, 0.000000;;, + 74;3; 0.000000, 2.366877, 0.000000;;, + 75;3;-0.000000, 2.366877, 0.000000;;, + 76;3; 0.000000, 2.366877,-0.000000;;, + 77;3;-0.000000, 2.366877,-0.000000;;, + 78;3;-0.000000, 2.366877, 0.000000;;, + 79;3; 0.000000, 2.366877, 0.000000;;, + 80;3; 0.000000, 2.366877,-0.000000;;, + 81;3;-0.000000, 2.366877, 0.000000;;, + 82;3; 0.000000, 2.366877, 0.000000;;, + 83;3;-0.000000, 2.366877,-0.000000;;, + 84;3;-0.000000, 2.366876, 0.000000;;, + 85;3;-0.000000, 2.366877,-0.000000;;, + 86;3; 0.000000, 2.366878,-0.000001;;, + 87;3;-0.000000, 2.366877,-0.000000;;, + 88;3; 0.000000, 2.366877, 0.000000;;, + 89;3; 0.000000, 2.366877, 0.000000;;, + 90;3; 0.000000, 2.366877,-0.000000;;, + 91;3; 0.000000, 2.366877, 0.000000;;, + 92;3; 0.000000, 2.366877, 0.000000;;, + 93;3; 0.000000, 2.366877, 0.000000;;, + 94;3; 0.000000, 2.366877, 0.000000;;, + 95;3; 0.000000, 2.366877,-0.000000;;, + 96;3;-0.000000, 2.366877,-0.000000;;, + 97;3;-0.000000, 2.366877, 0.000000;;, + 98;3;-0.000000, 2.366877,-0.000000;;, + 99;3;-0.000000, 2.366877, 0.000000;;, + 100;3;-0.000000, 2.366877,-0.000000;;, + 101;3;-0.000000, 2.366877, 0.000000;;, + 102;3; 0.000000, 2.366877, 0.000000;;, + 103;3;-0.000000, 2.366877,-0.000000;;, + 104;3; 0.000000, 2.366877, 0.000000;;, + 105;3; 0.000000, 2.366877,-0.000000;;, + 106;3; 0.000000, 2.366877, 0.000000;;, + 107;3;-0.000000, 2.366876,-0.000000;;, + 108;3;-0.000000, 2.366877,-0.000000;;, + 109;3; 0.000000, 2.366876, 0.000000;;, + 110;3; 0.000000, 2.366877, 0.000000;;, + 111;3;-0.000000, 2.366877,-0.000000;;, + 112;3;-0.000000, 2.366877,-0.000000;;, + 113;3; 0.000000, 2.366877,-0.000000;;, + 114;3; 0.000000, 2.366877, 0.000000;;, + 115;3; 0.000000, 2.366877, 0.000000;;, + 116;3; 0.000000, 2.366877,-0.000000;;, + 117;3; 0.000000, 2.366876,-0.000000;;, + 118;3;-0.000000, 2.366878, 0.000000;;, + 119;3;-0.000000, 2.366877,-0.000000;;, + 120;3;-0.000000, 2.366877,-0.000000;;, + 121;3;-0.000000, 2.366877,-0.000000;;, + 122;3; 0.000000, 2.366877, 0.000000;;, + 123;3; 0.000000, 2.366877, 0.000000;;, + 124;3; 0.000000, 2.366877, 0.000000;;, + 125;3; 0.000000, 2.366877, 0.000000;;, + 126;3; 0.000000, 2.366877,-0.000000;;, + 127;3; 0.000000, 2.366877, 0.000000;;, + 128;3; 0.000000, 2.366877,-0.000000;;, + 129;3; 0.000000, 2.366877,-0.000000;;, + 130;3;-0.000000, 2.366877,-0.000000;;, + 131;3;-0.000000, 2.366877,-0.000000;;, + 132;3; 0.000000, 2.366877,-0.000000;;, + 133;3; 0.000000, 2.366877, 0.000000;;, + 134;3; 0.000000, 2.366876, 0.000000;;, + 135;3;-0.000000, 2.366877,-0.000000;;, + 136;3;-0.000000, 2.366877,-0.000000;;, + 137;3;-0.000000, 2.366877,-0.000000;;, + 138;3;-0.000000, 2.366877,-0.000000;;, + 139;3;-0.000000, 2.366877,-0.000000;;, + 140;3;-0.000000, 2.366877,-0.000000;;, + 141;3; 0.000000, 2.366877,-0.000000;;, + 142;3;-0.000000, 2.366877,-0.000000;;, + 143;3; 0.000000, 2.366877, 0.000000;;, + 144;3;-0.000000, 2.366877, 0.000000;;, + 145;3; 0.000000, 2.366877, 0.000000;;, + 146;3; 0.000000, 2.366877, 0.000000;;, + 147;3; 0.000000, 2.366877, 0.000000;;, + 148;3; 0.000000, 2.366877, 0.000000;;, + 149;3;-0.000000, 2.366877,-0.000000;;, + 150;3;-0.000000, 2.366877,-0.000000;;, + 151;3;-0.000000, 2.366877,-0.000000;;, + 152;3;-0.000000, 2.366877,-0.000000;;, + 153;3;-0.000000, 2.366877,-0.000000;;, + 154;3;-0.000000, 2.366877,-0.000000;;, + 155;3;-0.000000, 2.366877,-0.000000;;, + 156;3;-0.000000, 2.366877,-0.000000;;, + 157;3;-0.000000, 2.366877,-0.000000;;, + 158;3;-0.000000, 2.366877,-0.000000;;, + 159;3;-0.000000, 2.366877,-0.000000;;, + 160;3;-0.000000, 2.366877,-0.000000;;, + 161;3;-0.000000, 2.366877,-0.000000;;, + 162;3;-0.000000, 2.366877,-0.000000;;, + 163;3;-0.000000, 2.366877,-0.000000;;, + 164;3;-0.000000, 2.366877,-0.000000;;, + 165;3;-0.000000, 2.366877,-0.000000;;, + 166;3;-0.000000, 2.366877,-0.000000;;, + 167;3;-0.000000, 2.366877,-0.000000;;, + 168;3;-0.000000, 2.366877,-0.000000;;, + 169;3;-0.000000, 2.366877,-0.000000;;, + 170;3;-0.000000, 2.366877,-0.000000;;, + 171;3;-0.000000, 2.366877,-0.000000;;, + 172;3;-0.000000, 2.366877,-0.000000;;, + 173;3;-0.000000, 2.366877,-0.000000;;, + 174;3;-0.000000, 2.366877,-0.000000;;, + 175;3;-0.000000, 2.366877,-0.000000;;, + 176;3;-0.000000, 2.366877,-0.000000;;, + 177;3;-0.000000, 2.366877,-0.000000;;, + 178;3;-0.000000, 2.366877,-0.000000;;, + 179;3;-0.000000, 2.366877,-0.000000;;, + 180;3;-0.000000, 2.366877,-0.000000;;, + 181;3;-0.000000, 2.366877,-0.000000;;, + 182;3;-0.000000, 2.366877,-0.000000;;, + 183;3;-0.000000, 2.366877,-0.000000;;, + 184;3;-0.000000, 2.366877,-0.000000;;, + 185;3;-0.000000, 2.366877,-0.000000;;, + 186;3;-0.000000, 2.366877,-0.000000;;, + 187;3;-0.000000, 2.366877,-0.000000;;, + 188;3;-0.000000, 2.366877,-0.000000;;, + 189;3;-0.000000, 2.366877,-0.000000;;, + 190;3;-0.000000, 2.366877,-0.000000;;, + 191;3;-0.000000, 2.366877,-0.000000;;, + 192;3;-0.000000, 2.366877,-0.000000;;, + 193;3;-0.000000, 2.366877,-0.000000;;, + 194;3;-0.000000, 2.366877,-0.000000;;, + 195;3;-0.000000, 2.366877,-0.000000;;, + 196;3;-0.000000, 2.366877,-0.000000;;, + 197;3;-0.000000, 2.366877,-0.000000;;, + 198;3;-0.000000, 2.366877,-0.000000;;, + 199;3;-0.000000, 2.366877,-0.000000;;, + 200;3;-0.000000, 2.366877,-0.000000;;, + 201;3;-0.000000, 2.366877,-0.000000;;, + 202;3;-0.000000, 2.366877,-0.000000;;, + 203;3;-0.000000, 2.366877,-0.000000;;, + 204;3;-0.000000, 2.366877,-0.000000;;, + 205;3;-0.000000, 2.366877,-0.000000;;, + 206;3;-0.000000, 2.366877,-0.000000;;, + 207;3;-0.000000, 2.366877,-0.000000;;, + 208;3;-0.000000, 2.366877,-0.000000;;, + 209;3;-0.000000, 2.366877,-0.000000;;, + 210;3;-0.000000, 2.366877,-0.000000;;, + 211;3;-0.000000, 2.366877,-0.000000;;, + 212;3;-0.000000, 2.366877,-0.000000;;, + 213;3;-0.000000, 2.366877,-0.000000;;, + 214;3;-0.000000, 2.366877,-0.000000;;, + 215;3;-0.000000, 2.366877,-0.000000;;, + 216;3;-0.000000, 2.366877,-0.000000;;, + 217;3;-0.000000, 2.366877,-0.000000;;, + 218;3;-0.000000, 2.366877,-0.000000;;, + 219;3;-0.000000, 2.366877,-0.000000;;, + 220;3;-0.000000, 2.366877,-0.000000;;, + 221;3;-0.000000, 2.366877,-0.000000;;, + 222;3;-0.000000, 2.366877,-0.000000;;, + 223;3;-0.000000, 2.366877,-0.000000;;, + 224;3;-0.000000, 2.366877,-0.000000;;, + 225;3;-0.000000, 2.366877,-0.000000;;, + 226;3;-0.000000, 2.366877,-0.000000;;, + 227;3;-0.000000, 2.366877,-0.000000;;, + 228;3;-0.000000, 2.366877,-0.000000;;, + 229;3;-0.000000, 2.366877,-0.000000;;, + 230;3;-0.000000, 2.366877,-0.000000;;, + 231;3;-0.000000, 2.366877,-0.000000;;, + 232;3;-0.000000, 2.366877,-0.000000;;, + 233;3;-0.000000, 2.366877,-0.000000;;, + 234;3;-0.000000, 2.366877,-0.000000;;, + 235;3;-0.000000, 2.366877,-0.000000;;, + 236;3;-0.000000, 2.366877,-0.000000;;, + 237;3;-0.000000, 2.366877,-0.000000;;, + 238;3;-0.000000, 2.366877,-0.000000;;, + 239;3;-0.000000, 2.366877,-0.000000;;, + 240;3;-0.000000, 2.366877,-0.000000;;, + 241;3;-0.000000, 2.366877,-0.000000;;, + 242;3;-0.000000, 2.366877,-0.000000;;, + 243;3;-0.000000, 2.366877,-0.000000;;, + 244;3;-0.000000, 2.366877,-0.000000;;, + 245;3;-0.000000, 2.366877,-0.000000;;, + 246;3;-0.000000, 2.366877,-0.000000;;, + 247;3;-0.000000, 2.366877,-0.000000;;, + 248;3;-0.000000, 2.366877,-0.000000;;, + 249;3;-0.000000, 2.366877,-0.000000;;; + } + } + Animation { + {Armature_Bone_005} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 1;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 2;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 3;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 4;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 5;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 6;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 7;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 8;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 9;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 10;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 11;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 12;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 13;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 14;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 15;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 16;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 17;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 18;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 19;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 20;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 21;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 22;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 23;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 24;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 25;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 26;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 27;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 28;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 29;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 30;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 31;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 32;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 33;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 34;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 35;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 36;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 37;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 38;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 39;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 40;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 41;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 42;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 43;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 44;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 45;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 46;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 47;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 48;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 49;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 50;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 51;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 52;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 53;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 54;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 55;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 56;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 57;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 58;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 59;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 60;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 61;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 62;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 63;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 64;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 65;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 66;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 67;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 68;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 69;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 70;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 71;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 72;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 73;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 74;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 75;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 76;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 77;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 78;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 79;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 80;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 81;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 82;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 83;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 84;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 85;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 86;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 87;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 88;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 89;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 90;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 91;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 92;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 93;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 94;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 95;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 96;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 97;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 98;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 99;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 100;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 101;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 102;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 103;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 104;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 105;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 106;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 107;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 108;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 109;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 110;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 111;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 112;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 113;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 114;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 115;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 116;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 117;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 118;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 119;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 120;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 121;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 122;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 123;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 124;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 125;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 126;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 127;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 128;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 129;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 130;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 131;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 132;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 133;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 134;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 135;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 136;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 137;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 138;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 139;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 140;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 141;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 142;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 143;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 144;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 145;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 146;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 147;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 148;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 149;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 150;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 151;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 152;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 153;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 154;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 155;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 156;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 157;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 158;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 159;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 160;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 161;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 162;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 163;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 164;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 165;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 166;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 167;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 168;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 169;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 170;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 171;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 172;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 173;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 174;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 175;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 176;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 177;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 178;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 179;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 180;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 181;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 182;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 183;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 184;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 185;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 186;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 187;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 188;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 189;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 190;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 191;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 192;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 193;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 194;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 195;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 196;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 197;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 198;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 199;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 200;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 201;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 202;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 203;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 204;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 205;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 206;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 207;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 208;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 209;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 210;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 211;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 212;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 213;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 214;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 215;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 216;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 217;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 218;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 219;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 220;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 221;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 222;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 223;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 224;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 225;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 226;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 227;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 228;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 229;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 230;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 231;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 232;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 233;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 234;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 235;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 236;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 237;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 238;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 239;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 240;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 241;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 242;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 243;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 244;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 245;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 246;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 247;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 248;4;-0.627555, 0.000000, 0.000000, 0.778572;;, + 249;4;-0.627555, 0.000000, 0.000000, 0.778572;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3; 0.000000, 0.705560, 0.000000;;, + 1;3; 0.000000, 0.705560, 0.000000;;, + 2;3; 0.000000, 0.705560, 0.000000;;, + 3;3; 0.000000, 0.705560, 0.000000;;, + 4;3; 0.000000, 0.705560, 0.000000;;, + 5;3; 0.000000, 0.705560, 0.000000;;, + 6;3; 0.000000, 0.705560, 0.000000;;, + 7;3; 0.000000, 0.705560, 0.000000;;, + 8;3; 0.000000, 0.705560, 0.000000;;, + 9;3; 0.000000, 0.705560, 0.000000;;, + 10;3; 0.000000, 0.705560, 0.000000;;, + 11;3; 0.000000, 0.705560, 0.000000;;, + 12;3; 0.000000, 0.705560, 0.000000;;, + 13;3; 0.000000, 0.705560, 0.000000;;, + 14;3; 0.000000, 0.705560, 0.000000;;, + 15;3; 0.000000, 0.705560, 0.000000;;, + 16;3; 0.000000, 0.705560, 0.000000;;, + 17;3; 0.000000, 0.705560, 0.000000;;, + 18;3; 0.000000, 0.705560, 0.000000;;, + 19;3; 0.000000, 0.705560, 0.000000;;, + 20;3; 0.000000, 0.705560, 0.000000;;, + 21;3; 0.000000, 0.705560, 0.000000;;, + 22;3; 0.000000, 0.705560, 0.000000;;, + 23;3; 0.000000, 0.705560, 0.000000;;, + 24;3; 0.000000, 0.705560, 0.000000;;, + 25;3; 0.000000, 0.705560, 0.000000;;, + 26;3; 0.000000, 0.705560, 0.000000;;, + 27;3; 0.000000, 0.705560, 0.000000;;, + 28;3; 0.000000, 0.705560, 0.000000;;, + 29;3; 0.000000, 0.705560, 0.000000;;, + 30;3; 0.000000, 0.705560, 0.000000;;, + 31;3; 0.000000, 0.705560, 0.000000;;, + 32;3; 0.000000, 0.705560, 0.000000;;, + 33;3; 0.000000, 0.705560, 0.000000;;, + 34;3; 0.000000, 0.705560, 0.000000;;, + 35;3; 0.000000, 0.705560, 0.000000;;, + 36;3; 0.000000, 0.705560, 0.000000;;, + 37;3; 0.000000, 0.705560, 0.000000;;, + 38;3; 0.000000, 0.705560, 0.000000;;, + 39;3; 0.000000, 0.705560, 0.000000;;, + 40;3; 0.000000, 0.705560, 0.000000;;, + 41;3; 0.000000, 0.705559, 0.000000;;, + 42;3;-0.000000, 0.705560, 0.000000;;, + 43;3; 0.000000, 0.705560,-0.000000;;, + 44;3; 0.000000, 0.705560, 0.000000;;, + 45;3; 0.000000, 0.705560,-0.000000;;, + 46;3; 0.000000, 0.705559, 0.000000;;, + 47;3;-0.000000, 0.705560, 0.000000;;, + 48;3; 0.000000, 0.705560,-0.000000;;, + 49;3; 0.000000, 0.705560, 0.000000;;, + 50;3;-0.000000, 0.705559, 0.000000;;, + 51;3; 0.000000, 0.705560,-0.000000;;, + 52;3;-0.000000, 0.705560, 0.000000;;, + 53;3; 0.000000, 0.705560,-0.000000;;, + 54;3; 0.000000, 0.705560, 0.000000;;, + 55;3; 0.000000, 0.705560,-0.000000;;, + 56;3;-0.000000, 0.705560, 0.000000;;, + 57;3; 0.000000, 0.705559, 0.000000;;, + 58;3;-0.000000, 0.705560, 0.000000;;, + 59;3; 0.000000, 0.705560, 0.000000;;, + 60;3; 0.000000, 0.705560,-0.000000;;, + 61;3; 0.000000, 0.705560, 0.000000;;, + 62;3; 0.000000, 0.705560, 0.000000;;, + 63;3; 0.000000, 0.705560, 0.000000;;, + 64;3; 0.000000, 0.705560,-0.000000;;, + 65;3;-0.000000, 0.705560, 0.000000;;, + 66;3; 0.000000, 0.705560, 0.000000;;, + 67;3;-0.000000, 0.705560, 0.000000;;, + 68;3; 0.000000, 0.705559, 0.000000;;, + 69;3; 0.000000, 0.705560, 0.000000;;, + 70;3; 0.000000, 0.705560, 0.000000;;, + 71;3;-0.000000, 0.705560, 0.000000;;, + 72;3;-0.000000, 0.705560, 0.000000;;, + 73;3;-0.000000, 0.705560, 0.000000;;, + 74;3;-0.000000, 0.705560, 0.000000;;, + 75;3;-0.000000, 0.705560, 0.000000;;, + 76;3; 0.000000, 0.705559, 0.000000;;, + 77;3;-0.000000, 0.705560, 0.000000;;, + 78;3; 0.000000, 0.705560, 0.000000;;, + 79;3;-0.000000, 0.705559, 0.000000;;, + 80;3; 0.000000, 0.705560, 0.000000;;, + 81;3;-0.000000, 0.705560, 0.000000;;, + 82;3; 0.000000, 0.705560, 0.000000;;, + 83;3; 0.000000, 0.705560, 0.000000;;, + 84;3; 0.000000, 0.705560,-0.000000;;, + 85;3;-0.000000, 0.705560, 0.000000;;, + 86;3;-0.000000, 0.705560, 0.000000;;, + 87;3; 0.000000, 0.705560,-0.000000;;, + 88;3; 0.000000, 0.705560, 0.000000;;, + 89;3; 0.000000, 0.705560, 0.000000;;, + 90;3; 0.000000, 0.705560, 0.000000;;, + 91;3; 0.000000, 0.705560, 0.000000;;, + 92;3; 0.000000, 0.705560, 0.000000;;, + 93;3; 0.000000, 0.705560, 0.000000;;, + 94;3; 0.000000, 0.705560, 0.000000;;, + 95;3; 0.000000, 0.705560, 0.000000;;, + 96;3; 0.000000, 0.705560,-0.000000;;, + 97;3; 0.000000, 0.705560,-0.000000;;, + 98;3; 0.000000, 0.705560, 0.000000;;, + 99;3; 0.000000, 0.705560, 0.000000;;, + 100;3;-0.000000, 0.705560,-0.000000;;, + 101;3; 0.000000, 0.705560,-0.000000;;, + 102;3; 0.000000, 0.705559, 0.000000;;, + 103;3;-0.000000, 0.705560,-0.000000;;, + 104;3;-0.000000, 0.705559,-0.000000;;, + 105;3;-0.000000, 0.705560,-0.000000;;, + 106;3; 0.000000, 0.705560, 0.000000;;, + 107;3;-0.000000, 0.705559,-0.000000;;, + 108;3; 0.000000, 0.705560,-0.000000;;, + 109;3; 0.000000, 0.705559,-0.000000;;, + 110;3;-0.000000, 0.705559, 0.000000;;, + 111;3; 0.000000, 0.705560,-0.000000;;, + 112;3; 0.000000, 0.705560, 0.000000;;, + 113;3; 0.000000, 0.705560,-0.000000;;, + 114;3;-0.000000, 0.705559, 0.000000;;, + 115;3; 0.000000, 0.705560, 0.000000;;, + 116;3;-0.000000, 0.705560,-0.000000;;, + 117;3; 0.000000, 0.705560, 0.000000;;, + 118;3; 0.000000, 0.705560,-0.000000;;, + 119;3; 0.000000, 0.705560, 0.000000;;, + 120;3; 0.000000, 0.705560,-0.000000;;, + 121;3; 0.000000, 0.705560,-0.000000;;, + 122;3;-0.000000, 0.705560,-0.000000;;, + 123;3; 0.000000, 0.705560, 0.000000;;, + 124;3; 0.000000, 0.705560, 0.000000;;, + 125;3; 0.000000, 0.705560, 0.000000;;, + 126;3;-0.000000, 0.705560, 0.000000;;, + 127;3;-0.000000, 0.705560, 0.000000;;, + 128;3;-0.000000, 0.705560,-0.000000;;, + 129;3; 0.000000, 0.705560, 0.000000;;, + 130;3; 0.000000, 0.705559, 0.000000;;, + 131;3; 0.000000, 0.705560, 0.000000;;, + 132;3; 0.000000, 0.705560, 0.000000;;, + 133;3; 0.000000, 0.705560,-0.000000;;, + 134;3; 0.000000, 0.705560, 0.000000;;, + 135;3; 0.000000, 0.705560, 0.000000;;, + 136;3;-0.000000, 0.705560,-0.000000;;, + 137;3; 0.000000, 0.705560, 0.000000;;, + 138;3;-0.000000, 0.705559, 0.000000;;, + 139;3;-0.000000, 0.705560,-0.000000;;, + 140;3; 0.000000, 0.705560, 0.000000;;, + 141;3; 0.000000, 0.705560, 0.000000;;, + 142;3; 0.000000, 0.705560, 0.000000;;, + 143;3; 0.000000, 0.705560,-0.000000;;, + 144;3; 0.000000, 0.705560, 0.000000;;, + 145;3; 0.000000, 0.705560,-0.000000;;, + 146;3; 0.000000, 0.705560, 0.000000;;, + 147;3; 0.000000, 0.705560,-0.000000;;, + 148;3; 0.000000, 0.705560, 0.000000;;, + 149;3; 0.000000, 0.705560, 0.000000;;, + 150;3; 0.000000, 0.705560, 0.000000;;, + 151;3; 0.000000, 0.705560, 0.000000;;, + 152;3; 0.000000, 0.705560, 0.000000;;, + 153;3; 0.000000, 0.705560, 0.000000;;, + 154;3; 0.000000, 0.705560, 0.000000;;, + 155;3; 0.000000, 0.705560, 0.000000;;, + 156;3; 0.000000, 0.705560, 0.000000;;, + 157;3; 0.000000, 0.705560, 0.000000;;, + 158;3; 0.000000, 0.705560, 0.000000;;, + 159;3; 0.000000, 0.705560, 0.000000;;, + 160;3; 0.000000, 0.705560, 0.000000;;, + 161;3; 0.000000, 0.705560, 0.000000;;, + 162;3; 0.000000, 0.705560, 0.000000;;, + 163;3; 0.000000, 0.705560, 0.000000;;, + 164;3; 0.000000, 0.705560, 0.000000;;, + 165;3; 0.000000, 0.705560, 0.000000;;, + 166;3; 0.000000, 0.705560, 0.000000;;, + 167;3; 0.000000, 0.705560, 0.000000;;, + 168;3; 0.000000, 0.705560, 0.000000;;, + 169;3; 0.000000, 0.705560, 0.000000;;, + 170;3; 0.000000, 0.705560, 0.000000;;, + 171;3; 0.000000, 0.705560, 0.000000;;, + 172;3; 0.000000, 0.705560, 0.000000;;, + 173;3; 0.000000, 0.705560, 0.000000;;, + 174;3; 0.000000, 0.705560, 0.000000;;, + 175;3; 0.000000, 0.705560, 0.000000;;, + 176;3; 0.000000, 0.705560, 0.000000;;, + 177;3; 0.000000, 0.705560, 0.000000;;, + 178;3; 0.000000, 0.705560, 0.000000;;, + 179;3; 0.000000, 0.705560, 0.000000;;, + 180;3; 0.000000, 0.705560, 0.000000;;, + 181;3; 0.000000, 0.705560, 0.000000;;, + 182;3; 0.000000, 0.705560, 0.000000;;, + 183;3; 0.000000, 0.705560, 0.000000;;, + 184;3; 0.000000, 0.705560, 0.000000;;, + 185;3; 0.000000, 0.705560, 0.000000;;, + 186;3; 0.000000, 0.705560, 0.000000;;, + 187;3; 0.000000, 0.705560, 0.000000;;, + 188;3; 0.000000, 0.705560, 0.000000;;, + 189;3; 0.000000, 0.705560, 0.000000;;, + 190;3; 0.000000, 0.705560, 0.000000;;, + 191;3; 0.000000, 0.705560, 0.000000;;, + 192;3; 0.000000, 0.705560, 0.000000;;, + 193;3; 0.000000, 0.705560, 0.000000;;, + 194;3; 0.000000, 0.705560, 0.000000;;, + 195;3; 0.000000, 0.705560, 0.000000;;, + 196;3; 0.000000, 0.705560, 0.000000;;, + 197;3; 0.000000, 0.705560, 0.000000;;, + 198;3; 0.000000, 0.705560, 0.000000;;, + 199;3; 0.000000, 0.705560, 0.000000;;, + 200;3; 0.000000, 0.705560, 0.000000;;, + 201;3; 0.000000, 0.705560, 0.000000;;, + 202;3; 0.000000, 0.705560, 0.000000;;, + 203;3; 0.000000, 0.705560, 0.000000;;, + 204;3; 0.000000, 0.705560, 0.000000;;, + 205;3; 0.000000, 0.705560, 0.000000;;, + 206;3; 0.000000, 0.705560, 0.000000;;, + 207;3; 0.000000, 0.705560, 0.000000;;, + 208;3; 0.000000, 0.705560, 0.000000;;, + 209;3; 0.000000, 0.705560, 0.000000;;, + 210;3; 0.000000, 0.705560, 0.000000;;, + 211;3; 0.000000, 0.705560, 0.000000;;, + 212;3; 0.000000, 0.705560, 0.000000;;, + 213;3; 0.000000, 0.705560, 0.000000;;, + 214;3; 0.000000, 0.705560, 0.000000;;, + 215;3; 0.000000, 0.705560, 0.000000;;, + 216;3; 0.000000, 0.705560, 0.000000;;, + 217;3; 0.000000, 0.705560, 0.000000;;, + 218;3; 0.000000, 0.705560, 0.000000;;, + 219;3; 0.000000, 0.705560, 0.000000;;, + 220;3; 0.000000, 0.705560, 0.000000;;, + 221;3; 0.000000, 0.705560, 0.000000;;, + 222;3; 0.000000, 0.705560, 0.000000;;, + 223;3; 0.000000, 0.705560, 0.000000;;, + 224;3; 0.000000, 0.705560, 0.000000;;, + 225;3; 0.000000, 0.705560, 0.000000;;, + 226;3; 0.000000, 0.705560, 0.000000;;, + 227;3; 0.000000, 0.705560, 0.000000;;, + 228;3; 0.000000, 0.705560, 0.000000;;, + 229;3; 0.000000, 0.705560, 0.000000;;, + 230;3; 0.000000, 0.705560, 0.000000;;, + 231;3; 0.000000, 0.705560, 0.000000;;, + 232;3; 0.000000, 0.705560, 0.000000;;, + 233;3; 0.000000, 0.705560, 0.000000;;, + 234;3; 0.000000, 0.705560, 0.000000;;, + 235;3; 0.000000, 0.705560, 0.000000;;, + 236;3; 0.000000, 0.705560, 0.000000;;, + 237;3; 0.000000, 0.705560, 0.000000;;, + 238;3; 0.000000, 0.705560, 0.000000;;, + 239;3; 0.000000, 0.705560, 0.000000;;, + 240;3; 0.000000, 0.705560, 0.000000;;, + 241;3; 0.000000, 0.705560, 0.000000;;, + 242;3; 0.000000, 0.705560, 0.000000;;, + 243;3; 0.000000, 0.705560, 0.000000;;, + 244;3; 0.000000, 0.705560, 0.000000;;, + 245;3; 0.000000, 0.705560, 0.000000;;, + 246;3; 0.000000, 0.705560, 0.000000;;, + 247;3; 0.000000, 0.705560, 0.000000;;, + 248;3; 0.000000, 0.705560, 0.000000;;, + 249;3; 0.000000, 0.705560, 0.000000;;; + } + } + Animation { + {Armature_Bone_016} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.740628,-0.663376, 0.071246,-0.079543;;, + 1;4;-0.741002,-0.662914, 0.071197,-0.079583;;, + 2;4;-0.742135,-0.661518, 0.071047,-0.079705;;, + 3;4;-0.744027,-0.659185, 0.070796,-0.079908;;, + 4;4;-0.746663,-0.655935, 0.070447,-0.080191;;, + 5;4;-0.750004,-0.651815, 0.070005,-0.080550;;, + 6;4;-0.753985,-0.646908, 0.069478,-0.080978;;, + 7;4;-0.758507,-0.641333, 0.068879,-0.081463;;, + 8;4;-0.763443,-0.635247, 0.068225,-0.081993;;, + 9;4;-0.768640,-0.628840, 0.067537,-0.082552;;, + 10;4;-0.773926,-0.622323, 0.066837,-0.083119;;, + 11;4;-0.779123,-0.615915, 0.066149,-0.083677;;, + 12;4;-0.784059,-0.609829, 0.065495,-0.084208;;, + 13;4;-0.788581,-0.604254, 0.064897,-0.084693;;, + 14;4;-0.792561,-0.599347, 0.064370,-0.085121;;, + 15;4;-0.795903,-0.595227, 0.063927,-0.085480;;, + 16;4;-0.798539,-0.591977, 0.063578,-0.085763;;, + 17;4;-0.800431,-0.589644, 0.063328,-0.085966;;, + 18;4;-0.801563,-0.588248, 0.063178,-0.086088;;, + 19;4;-0.801938,-0.587786, 0.063128,-0.086128;;, + 20;4;-0.801600,-0.588203, 0.063173,-0.086091;;, + 21;4;-0.800579,-0.589462, 0.063308,-0.085982;;, + 22;4;-0.798871,-0.591568, 0.063534,-0.085798;;, + 23;4;-0.796488,-0.594505, 0.063850,-0.085542;;, + 24;4;-0.793460,-0.598239, 0.064251,-0.085217;;, + 25;4;-0.789837,-0.602706, 0.064730,-0.084828;;, + 26;4;-0.785696,-0.607811, 0.065279,-0.084383;;, + 27;4;-0.781138,-0.613431, 0.065882,-0.083894;;, + 28;4;-0.776286,-0.619413, 0.066525,-0.083373;;, + 29;4;-0.771283,-0.625581, 0.067187,-0.082835;;, + 30;4;-0.766280,-0.631750, 0.067850,-0.082298;;, + 31;4;-0.761428,-0.637731, 0.068492,-0.081777;;, + 32;4;-0.756870,-0.643351, 0.069096,-0.081287;;, + 33;4;-0.752729,-0.648457, 0.069644,-0.080843;;, + 34;4;-0.749106,-0.652923, 0.070124,-0.080454;;, + 35;4;-0.746078,-0.656657, 0.070525,-0.080128;;, + 36;4;-0.743695,-0.659595, 0.070840,-0.079872;;, + 37;4;-0.741987,-0.661700, 0.071066,-0.079689;;, + 38;4;-0.740966,-0.662959, 0.071202,-0.079579;;, + 39;4;-0.740628,-0.663376, 0.071246,-0.079543;;, + 40;4;-0.740791,-0.662748, 0.069323,-0.079755;;, + 41;4;-0.741281,-0.660850, 0.063511,-0.080429;;, + 42;4;-0.742094,-0.657676, 0.053791,-0.081623;;, + 43;4;-0.743215,-0.653248, 0.040230,-0.083397;;, + 44;4;-0.744624,-0.647620, 0.022994,-0.085812;;, + 45;4;-0.746284,-0.640887, 0.002376,-0.088926;;, + 46;4;-0.748150,-0.633191,-0.021191,-0.092789;;, + 47;4;-0.750161,-0.624720,-0.047134,-0.097439;;, + 48;4;-0.752247,-0.615703,-0.074747,-0.102898;;, + 49;4;-0.754329,-0.606405,-0.103222,-0.109166;;, + 50;4;-0.756327,-0.597107,-0.131697,-0.116224;;, + 51;4;-0.758161,-0.588090,-0.159309,-0.124030;;, + 52;4;-0.759759,-0.579619,-0.185252,-0.132526;;, + 53;4;-0.761061,-0.571923,-0.208820,-0.141639;;, + 54;4;-0.762019,-0.565191,-0.229438,-0.151291;;, + 55;4;-0.762601,-0.559563,-0.246674,-0.161400;;, + 56;4;-0.762787,-0.555134,-0.260235,-0.171889;;, + 57;4;-0.762568,-0.551960,-0.269955,-0.182685;;, + 58;4;-0.761945,-0.550062,-0.275767,-0.193722;;, + 59;4;-0.760926,-0.549434,-0.277690,-0.204943;;, + 60;4;-0.756388,-0.552376,-0.276218,-0.218008;;, + 61;4;-0.745185,-0.561227,-0.271787,-0.234475;;, + 62;4;-0.727767,-0.575620,-0.264582,-0.253827;;, + 63;4;-0.705427,-0.594445,-0.255158,-0.275020;;, + 64;4;-0.680393,-0.615770,-0.244482,-0.296485;;, + 65;4;-0.655527,-0.637095,-0.233807,-0.316382;;, + 66;4;-0.633676,-0.655920,-0.224383,-0.333026;;, + 67;4;-0.617022,-0.670313,-0.217178,-0.345263;;, + 68;4;-0.606803,-0.679164,-0.212746,-0.352571;;, + 69;4;-0.603413,-0.682106,-0.211274,-0.354950;;, + 70;4;-0.603780,-0.681781,-0.211436,-0.354748;;, + 71;4;-0.604889,-0.680803,-0.211926,-0.354130;;, + 72;4;-0.606748,-0.679164,-0.212746,-0.353082;;, + 73;4;-0.609359,-0.676865,-0.213897,-0.351590;;, + 74;4;-0.612717,-0.673910,-0.215377,-0.349642;;, + 75;4;-0.616811,-0.670313,-0.217178,-0.347229;;, + 76;4;-0.621618,-0.666093,-0.219290,-0.344346;;, + 77;4;-0.627106,-0.661282,-0.221698,-0.340991;;, + 78;4;-0.633231,-0.655920,-0.224383,-0.337169;;, + 79;4;-0.639938,-0.650058,-0.227317,-0.332890;;, + 80;4;-0.647159,-0.643759,-0.230470,-0.328168;;, + 81;4;-0.654814,-0.637095,-0.233807,-0.323026;;, + 82;4;-0.662812,-0.630148,-0.237284,-0.317494;;, + 83;4;-0.671054,-0.623008,-0.240859,-0.311606;;, + 84;4;-0.679435,-0.615770,-0.244482,-0.305402;;, + 85;4;-0.687845,-0.608532,-0.248106,-0.298928;;, + 86;4;-0.696175,-0.601392,-0.251680,-0.292232;;, + 87;4;-0.704316,-0.594445,-0.255158,-0.285364;;, + 88;4;-0.712170,-0.587781,-0.258494,-0.278373;;, + 89;4;-0.719642,-0.581482,-0.261647,-0.271310;;, + 90;4;-0.726651,-0.575620,-0.264582,-0.264221;;, + 91;4;-0.733125,-0.570258,-0.267266,-0.257149;;, + 92;4;-0.739006,-0.565447,-0.269674,-0.250133;;, + 93;4;-0.744247,-0.561227,-0.271787,-0.243209;;, + 94;4;-0.748812,-0.557630,-0.273588,-0.236406;;, + 95;4;-0.752677,-0.554675,-0.275067,-0.229749;;, + 96;4;-0.755824,-0.552376,-0.276218,-0.223259;;, + 97;4;-0.758248,-0.550737,-0.277038,-0.216953;;, + 98;4;-0.759947,-0.549759,-0.277528,-0.210845;;, + 99;4;-0.760926,-0.549434,-0.277690,-0.204943;;, + 100;4;-0.761562,-0.549766,-0.275816,-0.198868;;, + 101;4;-0.762211,-0.550786,-0.270148,-0.192241;;, + 102;4;-0.762851,-0.552534,-0.260664,-0.185087;;, + 103;4;-0.763453,-0.555041,-0.247419,-0.177449;;, + 104;4;-0.763986,-0.558326,-0.230569,-0.169388;;, + 105;4;-0.764410,-0.562395,-0.210391,-0.160989;;, + 106;4;-0.764683,-0.567235,-0.187294,-0.152362;;, + 107;4;-0.764760,-0.572809,-0.161828,-0.143638;;, + 108;4;-0.764596,-0.579057,-0.134672,-0.134969;;, + 109;4;-0.764149,-0.585897,-0.106602,-0.126513;;, + 110;4;-0.763383,-0.593226,-0.078452,-0.118433;;, + 111;4;-0.762270,-0.600930,-0.051056,-0.110880;;, + 112;4;-0.760792,-0.608888,-0.025198,-0.103985;;, + 113;4;-0.758943,-0.616983,-0.001564,-0.097855;;, + 114;4;-0.756724,-0.625106, 0.019283,-0.092565;;, + 115;4;-0.754146,-0.633161, 0.036919,-0.088163;;, + 116;4;-0.751226,-0.641071, 0.051054,-0.084669;;, + 117;4;-0.747983,-0.648773, 0.061520,-0.082082;;, + 118;4;-0.744443,-0.656219, 0.068247,-0.080383;;, + 119;4;-0.740628,-0.663376, 0.071246,-0.079543;;, + 120;4;-0.734913,-0.671327, 0.072459,-0.080081;;, + 121;4;-0.726261,-0.680506, 0.073694,-0.082396;;, + 122;4;-0.717019,-0.688975, 0.074734,-0.085569;;, + 123;4;-0.710403,-0.694538, 0.075374,-0.088103;;, + 124;4;-0.708153,-0.696337, 0.075572,-0.089013;;, + 125;4;-0.708153,-0.696337, 0.075572,-0.089013;;, + 126;4;-0.708153,-0.696337, 0.075572,-0.089013;;, + 127;4;-0.708153,-0.696337, 0.075572,-0.089013;;, + 128;4;-0.708153,-0.696337, 0.075572,-0.089013;;, + 129;4;-0.708153,-0.696337, 0.075572,-0.089013;;, + 130;4;-0.715973,-0.690672, 0.075089,-0.089850;;, + 131;4;-0.739998,-0.670231, 0.073304,-0.092402;;, + 132;4;-0.776206,-0.631944, 0.069878,-0.096206;;, + 133;4;-0.814843,-0.578688, 0.064997,-0.100192;;, + 134;4;-0.847524,-0.517193, 0.059247,-0.103467;;, + 135;4;-0.880596,-0.445670, 0.052193,-0.106548;;, + 136;4;-0.920335,-0.357776, 0.043151,-0.109989;;, + 137;4;-0.957960,-0.257849, 0.033060,-0.113093;;, + 138;4;-0.983087,-0.155994, 0.023513,-0.115100;;, + 139;4;-0.991299,-0.060719, 0.015600,-0.115744;;, + 140;4;-0.944235, 0.049763, 0.060076,-0.150387;;, + 141;4;-0.811671, 0.189965, 0.198513,-0.247966;;, + 142;4;-0.641460, 0.327090, 0.379569,-0.373257;;, + 143;4;-0.508895, 0.420518, 0.521608,-0.470836;;, + 144;4;-0.461831, 0.451418, 0.572210,-0.505480;;, + 145;4;-0.486613, 0.352325, 0.527680,-0.467619;;, + 146;4;-0.556416, 0.073211, 0.402252,-0.360976;;, + 147;4;-0.646043,-0.285169, 0.241204,-0.224047;;, + 148;4;-0.715846,-0.564283, 0.115777,-0.117404;;, + 149;4;-0.740628,-0.663376, 0.071246,-0.079543;;, + 150;4;-0.740628,-0.663376, 0.071246,-0.079543;;, + 151;4;-0.740628,-0.663376, 0.071246,-0.079543;;, + 152;4;-0.740628,-0.663376, 0.071246,-0.079543;;, + 153;4;-0.740628,-0.663376, 0.071246,-0.079543;;, + 154;4;-0.740628,-0.663376, 0.071246,-0.079543;;, + 155;4;-0.740628,-0.663376, 0.071246,-0.079543;;, + 156;4;-0.740628,-0.663376, 0.071246,-0.079543;;, + 157;4;-0.740628,-0.663376, 0.071246,-0.079543;;, + 158;4;-0.740628,-0.663376, 0.071246,-0.079543;;, + 159;4;-0.740628,-0.663376, 0.071246,-0.079543;;, + 160;4;-0.740628,-0.663376, 0.071246,-0.079543;;, + 161;4;-0.740628,-0.663376, 0.071246,-0.079543;;, + 162;4;-0.740628,-0.663376, 0.071246,-0.079543;;, + 163;4;-0.740628,-0.663376, 0.071246,-0.079543;;, + 164;4;-0.740628,-0.663376, 0.071246,-0.079543;;, + 165;4;-0.740628,-0.663376, 0.071246,-0.079543;;, + 166;4;-0.740628,-0.663376, 0.071246,-0.079543;;, + 167;4;-0.740628,-0.663376, 0.071246,-0.079543;;, + 168;4;-0.740628,-0.663376, 0.071246,-0.079543;;, + 169;4;-0.740628,-0.663376, 0.071246,-0.079543;;, + 170;4;-0.740628,-0.663376, 0.071246,-0.079543;;, + 171;4;-0.740628,-0.663376, 0.071246,-0.079543;;, + 172;4;-0.740628,-0.663376, 0.071246,-0.079543;;, + 173;4;-0.740628,-0.663376, 0.071246,-0.079543;;, + 174;4;-0.740628,-0.663376, 0.071246,-0.079543;;, + 175;4;-0.740628,-0.663376, 0.071246,-0.079543;;, + 176;4;-0.740628,-0.663376, 0.071246,-0.079543;;, + 177;4;-0.740628,-0.663376, 0.071246,-0.079543;;, + 178;4;-0.740628,-0.663376, 0.071246,-0.079543;;, + 179;4;-0.740628,-0.663376, 0.071246,-0.079543;;, + 180;4;-0.740628,-0.663376, 0.071246,-0.079543;;, + 181;4;-0.740628,-0.663376, 0.071246,-0.079543;;, + 182;4;-0.740628,-0.663376, 0.071246,-0.079543;;, + 183;4;-0.740628,-0.663376, 0.071246,-0.079543;;, + 184;4;-0.740628,-0.663376, 0.071246,-0.079543;;, + 185;4;-0.740628,-0.663376, 0.071246,-0.079543;;, + 186;4;-0.740628,-0.663376, 0.071246,-0.079543;;, + 187;4;-0.740628,-0.663376, 0.071246,-0.079543;;, + 188;4;-0.740628,-0.663376, 0.071246,-0.079543;;, + 189;4;-0.740628,-0.663376, 0.071246,-0.079543;;, + 190;4;-0.740628,-0.663376, 0.071246,-0.079543;;, + 191;4;-0.740628,-0.663376, 0.071246,-0.079543;;, + 192;4;-0.740628,-0.663376, 0.071246,-0.079543;;, + 193;4;-0.740628,-0.663376, 0.071246,-0.079543;;, + 194;4;-0.740628,-0.663376, 0.071246,-0.079543;;, + 195;4;-0.740628,-0.663376, 0.071246,-0.079543;;, + 196;4;-0.740628,-0.663376, 0.071246,-0.079543;;, + 197;4;-0.740628,-0.663376, 0.071246,-0.079543;;, + 198;4;-0.740628,-0.663376, 0.071246,-0.079543;;, + 199;4;-0.740628,-0.663376, 0.071246,-0.079543;;, + 200;4;-0.740628,-0.663376, 0.071246,-0.079543;;, + 201;4;-0.740628,-0.663376, 0.071246,-0.079543;;, + 202;4;-0.740628,-0.663376, 0.071246,-0.079543;;, + 203;4;-0.740628,-0.663376, 0.071246,-0.079543;;, + 204;4;-0.740628,-0.663376, 0.071246,-0.079543;;, + 205;4;-0.740628,-0.663376, 0.071246,-0.079543;;, + 206;4;-0.740628,-0.663376, 0.071246,-0.079543;;, + 207;4;-0.740628,-0.663376, 0.071246,-0.079543;;, + 208;4;-0.740628,-0.663376, 0.071246,-0.079543;;, + 209;4;-0.740628,-0.663376, 0.071246,-0.079543;;, + 210;4;-0.740628,-0.663376, 0.071246,-0.079543;;, + 211;4;-0.740628,-0.663376, 0.071246,-0.079543;;, + 212;4;-0.740628,-0.663376, 0.071246,-0.079543;;, + 213;4;-0.740628,-0.663376, 0.071246,-0.079543;;, + 214;4;-0.740628,-0.663376, 0.071246,-0.079543;;, + 215;4;-0.740628,-0.663376, 0.071246,-0.079543;;, + 216;4;-0.740628,-0.663376, 0.071246,-0.079543;;, + 217;4;-0.740628,-0.663376, 0.071246,-0.079543;;, + 218;4;-0.740628,-0.663376, 0.071246,-0.079543;;, + 219;4;-0.740628,-0.663376, 0.071246,-0.079543;;, + 220;4;-0.740628,-0.663376, 0.071246,-0.079543;;, + 221;4;-0.740628,-0.663376, 0.071246,-0.079543;;, + 222;4;-0.740628,-0.663376, 0.071246,-0.079543;;, + 223;4;-0.740628,-0.663376, 0.071246,-0.079543;;, + 224;4;-0.740628,-0.663376, 0.071246,-0.079543;;, + 225;4;-0.740628,-0.663376, 0.071246,-0.079543;;, + 226;4;-0.740628,-0.663376, 0.071246,-0.079543;;, + 227;4;-0.740628,-0.663376, 0.071246,-0.079543;;, + 228;4;-0.740628,-0.663376, 0.071246,-0.079543;;, + 229;4;-0.740628,-0.663376, 0.071246,-0.079543;;, + 230;4;-0.740628,-0.663376, 0.071246,-0.079543;;, + 231;4;-0.740628,-0.663376, 0.071246,-0.079543;;, + 232;4;-0.740628,-0.663376, 0.071246,-0.079543;;, + 233;4;-0.740628,-0.663376, 0.071246,-0.079543;;, + 234;4;-0.740628,-0.663376, 0.071246,-0.079543;;, + 235;4;-0.740628,-0.663376, 0.071246,-0.079543;;, + 236;4;-0.740628,-0.663376, 0.071246,-0.079543;;, + 237;4;-0.740628,-0.663376, 0.071246,-0.079543;;, + 238;4;-0.740628,-0.663376, 0.071246,-0.079543;;, + 239;4;-0.740628,-0.663376, 0.071246,-0.079543;;, + 240;4;-0.740628,-0.663376, 0.071246,-0.079543;;, + 241;4;-0.740628,-0.663376, 0.071246,-0.079543;;, + 242;4;-0.740628,-0.663376, 0.071246,-0.079543;;, + 243;4;-0.740628,-0.663376, 0.071246,-0.079543;;, + 244;4;-0.740628,-0.663376, 0.071246,-0.079543;;, + 245;4;-0.740628,-0.663376, 0.071246,-0.079543;;, + 246;4;-0.740628,-0.663376, 0.071246,-0.079543;;, + 247;4;-0.740628,-0.663376, 0.071246,-0.079543;;, + 248;4;-0.740628,-0.663376, 0.071246,-0.079543;;, + 249;4;-0.740628,-0.663376, 0.071246,-0.079543;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3; 0.000000, 1.078077, 0.000000;;, + 1;3; 0.000000, 1.078077, 0.000000;;, + 2;3; 0.000000, 1.078077, 0.000000;;, + 3;3; 0.000000, 1.078077, 0.000000;;, + 4;3; 0.000000, 1.078077, 0.000000;;, + 5;3; 0.000000, 1.078077, 0.000000;;, + 6;3; 0.000000, 1.078077, 0.000000;;, + 7;3; 0.000000, 1.078077, 0.000000;;, + 8;3; 0.000000, 1.078077, 0.000000;;, + 9;3; 0.000000, 1.078077, 0.000000;;, + 10;3; 0.000000, 1.078077, 0.000000;;, + 11;3; 0.000000, 1.078077, 0.000000;;, + 12;3; 0.000000, 1.078077, 0.000000;;, + 13;3; 0.000000, 1.078077, 0.000000;;, + 14;3; 0.000000, 1.078077, 0.000000;;, + 15;3; 0.000000, 1.078077, 0.000000;;, + 16;3; 0.000000, 1.078077, 0.000000;;, + 17;3; 0.000000, 1.078077, 0.000000;;, + 18;3; 0.000000, 1.078077, 0.000000;;, + 19;3; 0.000000, 1.078077, 0.000000;;, + 20;3; 0.000000, 1.078077, 0.000000;;, + 21;3; 0.000000, 1.078077, 0.000000;;, + 22;3; 0.000000, 1.078077, 0.000000;;, + 23;3; 0.000000, 1.078077, 0.000000;;, + 24;3; 0.000000, 1.078077, 0.000000;;, + 25;3; 0.000000, 1.078077, 0.000000;;, + 26;3; 0.000000, 1.078077, 0.000000;;, + 27;3; 0.000000, 1.078077, 0.000000;;, + 28;3; 0.000000, 1.078077, 0.000000;;, + 29;3; 0.000000, 1.078077, 0.000000;;, + 30;3; 0.000000, 1.078077, 0.000000;;, + 31;3; 0.000000, 1.078077, 0.000000;;, + 32;3; 0.000000, 1.078077, 0.000000;;, + 33;3; 0.000000, 1.078077, 0.000000;;, + 34;3; 0.000000, 1.078077, 0.000000;;, + 35;3; 0.000000, 1.078077, 0.000000;;, + 36;3; 0.000000, 1.078077, 0.000000;;, + 37;3; 0.000000, 1.078077, 0.000000;;, + 38;3; 0.000000, 1.078077, 0.000000;;, + 39;3; 0.000000, 1.078077, 0.000000;;, + 40;3; 0.000000, 1.078077, 0.000000;;, + 41;3;-0.000000, 1.078077,-0.000000;;, + 42;3; 0.000000, 1.078077,-0.000000;;, + 43;3; 0.000000, 1.078077, 0.000000;;, + 44;3;-0.000000, 1.078077,-0.000000;;, + 45;3;-0.000000, 1.078077,-0.000000;;, + 46;3;-0.000000, 1.078077,-0.000000;;, + 47;3; 0.000000, 1.078077,-0.000000;;, + 48;3; 0.000000, 1.078077,-0.000000;;, + 49;3; 0.000000, 1.078077,-0.000000;;, + 50;3; 0.000000, 1.078077,-0.000000;;, + 51;3;-0.000000, 1.078077,-0.000000;;, + 52;3;-0.000000, 1.078077, 0.000000;;, + 53;3; 0.000000, 1.078077, 0.000000;;, + 54;3;-0.000000, 1.078077,-0.000000;;, + 55;3; 0.000000, 1.078077, 0.000000;;, + 56;3; 0.000000, 1.078077, 0.000000;;, + 57;3; 0.000000, 1.078077, 0.000000;;, + 58;3; 0.000000, 1.078077, 0.000000;;, + 59;3; 0.000000, 1.078077, 0.000000;;, + 60;3;-0.000000, 1.078077, 0.000000;;, + 61;3; 0.000000, 1.078077, 0.000000;;, + 62;3; 0.000000, 1.078077, 0.000000;;, + 63;3; 0.000000, 1.078077, 0.000000;;, + 64;3; 0.000000, 1.078077, 0.000000;;, + 65;3;-0.000000, 1.078077,-0.000000;;, + 66;3; 0.000000, 1.078077, 0.000000;;, + 67;3; 0.000000, 1.078077, 0.000000;;, + 68;3; 0.000000, 1.078077,-0.000000;;, + 69;3; 0.000000, 1.078077, 0.000000;;, + 70;3;-0.000000, 1.078077, 0.000000;;, + 71;3;-0.000000, 1.078077, 0.000000;;, + 72;3;-0.000000, 1.078077, 0.000000;;, + 73;3; 0.000000, 1.078077, 0.000000;;, + 74;3; 0.000000, 1.078077, 0.000000;;, + 75;3; 0.000000, 1.078077, 0.000000;;, + 76;3; 0.000000, 1.078077,-0.000000;;, + 77;3;-0.000000, 1.078077, 0.000000;;, + 78;3;-0.000000, 1.078077, 0.000000;;, + 79;3; 0.000000, 1.078077, 0.000000;;, + 80;3; 0.000000, 1.078077, 0.000000;;, + 81;3;-0.000000, 1.078077,-0.000000;;, + 82;3; 0.000000, 1.078077, 0.000000;;, + 83;3; 0.000000, 1.078077, 0.000000;;, + 84;3; 0.000000, 1.078077, 0.000000;;, + 85;3; 0.000000, 1.078077, 0.000000;;, + 86;3; 0.000000, 1.078077, 0.000000;;, + 87;3; 0.000000, 1.078077, 0.000000;;, + 88;3; 0.000000, 1.078077, 0.000000;;, + 89;3;-0.000000, 1.078077, 0.000000;;, + 90;3; 0.000000, 1.078077, 0.000000;;, + 91;3; 0.000000, 1.078077, 0.000000;;, + 92;3; 0.000000, 1.078077, 0.000000;;, + 93;3;-0.000000, 1.078077, 0.000000;;, + 94;3;-0.000000, 1.078077,-0.000000;;, + 95;3;-0.000000, 1.078077, 0.000000;;, + 96;3; 0.000000, 1.078077, 0.000000;;, + 97;3;-0.000000, 1.078077, 0.000000;;, + 98;3;-0.000000, 1.078077, 0.000000;;, + 99;3; 0.000000, 1.078077, 0.000000;;, + 100;3;-0.000000, 1.078077,-0.000000;;, + 101;3;-0.000000, 1.078077,-0.000000;;, + 102;3; 0.000000, 1.078077, 0.000000;;, + 103;3; 0.000000, 1.078077, 0.000000;;, + 104;3;-0.000000, 1.078077, 0.000000;;, + 105;3;-0.000000, 1.078077, 0.000000;;, + 106;3; 0.000000, 1.078077,-0.000000;;, + 107;3;-0.000000, 1.078077,-0.000000;;, + 108;3; 0.000000, 1.078077,-0.000000;;, + 109;3;-0.000000, 1.078077, 0.000000;;, + 110;3;-0.000000, 1.078077, 0.000000;;, + 111;3; 0.000000, 1.078077, 0.000000;;, + 112;3;-0.000000, 1.078077, 0.000000;;, + 113;3; 0.000000, 1.078077, 0.000000;;, + 114;3; 0.000000, 1.078077, 0.000000;;, + 115;3; 0.000000, 1.078077,-0.000000;;, + 116;3; 0.000000, 1.078077,-0.000000;;, + 117;3; 0.000000, 1.078077, 0.000000;;, + 118;3;-0.000000, 1.078077,-0.000000;;, + 119;3; 0.000000, 1.078077, 0.000000;;, + 120;3; 0.000000, 1.078077, 0.000000;;, + 121;3;-0.000000, 1.078077,-0.000000;;, + 122;3; 0.000000, 1.078077,-0.000000;;, + 123;3; 0.000000, 1.078077, 0.000000;;, + 124;3; 0.000000, 1.078077,-0.000000;;, + 125;3;-0.000000, 1.078077,-0.000000;;, + 126;3; 0.000000, 1.078077, 0.000000;;, + 127;3;-0.000000, 1.078077, 0.000000;;, + 128;3; 0.000000, 1.078077, 0.000000;;, + 129;3; 0.000000, 1.078077, 0.000000;;, + 130;3;-0.000000, 1.078077,-0.000000;;, + 131;3; 0.000000, 1.078077,-0.000000;;, + 132;3;-0.000000, 1.078077,-0.000000;;, + 133;3; 0.000000, 1.078077,-0.000000;;, + 134;3; 0.000000, 1.078077, 0.000000;;, + 135;3;-0.000000, 1.078077, 0.000000;;, + 136;3; 0.000000, 1.078077, 0.000000;;, + 137;3; 0.000000, 1.078077, 0.000000;;, + 138;3; 0.000000, 1.078077, 0.000000;;, + 139;3;-0.000000, 1.078077, 0.000000;;, + 140;3;-0.000000, 1.078077,-0.000000;;, + 141;3;-0.000000, 1.078077,-0.000000;;, + 142;3; 0.000000, 1.078077,-0.000000;;, + 143;3; 0.000000, 1.078077, 0.000000;;, + 144;3; 0.000000, 1.078077,-0.000000;;, + 145;3; 0.000000, 1.078077, 0.000000;;, + 146;3; 0.000000, 1.078077,-0.000000;;, + 147;3; 0.000000, 1.078077, 0.000000;;, + 148;3; 0.000000, 1.078077,-0.000000;;, + 149;3; 0.000000, 1.078077, 0.000000;;, + 150;3; 0.000000, 1.078077, 0.000000;;, + 151;3; 0.000000, 1.078077, 0.000000;;, + 152;3; 0.000000, 1.078077, 0.000000;;, + 153;3; 0.000000, 1.078077, 0.000000;;, + 154;3; 0.000000, 1.078077, 0.000000;;, + 155;3; 0.000000, 1.078077, 0.000000;;, + 156;3; 0.000000, 1.078077, 0.000000;;, + 157;3; 0.000000, 1.078077, 0.000000;;, + 158;3; 0.000000, 1.078077, 0.000000;;, + 159;3; 0.000000, 1.078077, 0.000000;;, + 160;3; 0.000000, 1.078077, 0.000000;;, + 161;3; 0.000000, 1.078077, 0.000000;;, + 162;3; 0.000000, 1.078077, 0.000000;;, + 163;3; 0.000000, 1.078077, 0.000000;;, + 164;3; 0.000000, 1.078077, 0.000000;;, + 165;3; 0.000000, 1.078077, 0.000000;;, + 166;3; 0.000000, 1.078077, 0.000000;;, + 167;3; 0.000000, 1.078077, 0.000000;;, + 168;3; 0.000000, 1.078077, 0.000000;;, + 169;3; 0.000000, 1.078077, 0.000000;;, + 170;3; 0.000000, 1.078077, 0.000000;;, + 171;3; 0.000000, 1.078077, 0.000000;;, + 172;3; 0.000000, 1.078077, 0.000000;;, + 173;3; 0.000000, 1.078077, 0.000000;;, + 174;3; 0.000000, 1.078077, 0.000000;;, + 175;3; 0.000000, 1.078077, 0.000000;;, + 176;3; 0.000000, 1.078077, 0.000000;;, + 177;3; 0.000000, 1.078077, 0.000000;;, + 178;3; 0.000000, 1.078077, 0.000000;;, + 179;3; 0.000000, 1.078077, 0.000000;;, + 180;3; 0.000000, 1.078077, 0.000000;;, + 181;3; 0.000000, 1.078077, 0.000000;;, + 182;3; 0.000000, 1.078077, 0.000000;;, + 183;3; 0.000000, 1.078077, 0.000000;;, + 184;3; 0.000000, 1.078077, 0.000000;;, + 185;3; 0.000000, 1.078077, 0.000000;;, + 186;3; 0.000000, 1.078077, 0.000000;;, + 187;3; 0.000000, 1.078077, 0.000000;;, + 188;3; 0.000000, 1.078077, 0.000000;;, + 189;3; 0.000000, 1.078077, 0.000000;;, + 190;3; 0.000000, 1.078077, 0.000000;;, + 191;3; 0.000000, 1.078077, 0.000000;;, + 192;3; 0.000000, 1.078077, 0.000000;;, + 193;3; 0.000000, 1.078077, 0.000000;;, + 194;3; 0.000000, 1.078077, 0.000000;;, + 195;3; 0.000000, 1.078077, 0.000000;;, + 196;3; 0.000000, 1.078077, 0.000000;;, + 197;3; 0.000000, 1.078077, 0.000000;;, + 198;3; 0.000000, 1.078077, 0.000000;;, + 199;3; 0.000000, 1.078077, 0.000000;;, + 200;3; 0.000000, 1.078077, 0.000000;;, + 201;3; 0.000000, 1.078077, 0.000000;;, + 202;3; 0.000000, 1.078077, 0.000000;;, + 203;3; 0.000000, 1.078077, 0.000000;;, + 204;3; 0.000000, 1.078077, 0.000000;;, + 205;3; 0.000000, 1.078077, 0.000000;;, + 206;3; 0.000000, 1.078077, 0.000000;;, + 207;3; 0.000000, 1.078077, 0.000000;;, + 208;3; 0.000000, 1.078077, 0.000000;;, + 209;3; 0.000000, 1.078077, 0.000000;;, + 210;3; 0.000000, 1.078077, 0.000000;;, + 211;3; 0.000000, 1.078077, 0.000000;;, + 212;3; 0.000000, 1.078077, 0.000000;;, + 213;3; 0.000000, 1.078077, 0.000000;;, + 214;3; 0.000000, 1.078077, 0.000000;;, + 215;3; 0.000000, 1.078077, 0.000000;;, + 216;3; 0.000000, 1.078077, 0.000000;;, + 217;3; 0.000000, 1.078077, 0.000000;;, + 218;3; 0.000000, 1.078077, 0.000000;;, + 219;3; 0.000000, 1.078077, 0.000000;;, + 220;3; 0.000000, 1.078077, 0.000000;;, + 221;3; 0.000000, 1.078077, 0.000000;;, + 222;3; 0.000000, 1.078077, 0.000000;;, + 223;3; 0.000000, 1.078077, 0.000000;;, + 224;3; 0.000000, 1.078077, 0.000000;;, + 225;3; 0.000000, 1.078077, 0.000000;;, + 226;3; 0.000000, 1.078077, 0.000000;;, + 227;3; 0.000000, 1.078077, 0.000000;;, + 228;3; 0.000000, 1.078077, 0.000000;;, + 229;3; 0.000000, 1.078077, 0.000000;;, + 230;3; 0.000000, 1.078077, 0.000000;;, + 231;3; 0.000000, 1.078077, 0.000000;;, + 232;3; 0.000000, 1.078077, 0.000000;;, + 233;3; 0.000000, 1.078077, 0.000000;;, + 234;3; 0.000000, 1.078077, 0.000000;;, + 235;3; 0.000000, 1.078077, 0.000000;;, + 236;3; 0.000000, 1.078077, 0.000000;;, + 237;3; 0.000000, 1.078077, 0.000000;;, + 238;3; 0.000000, 1.078077, 0.000000;;, + 239;3; 0.000000, 1.078077, 0.000000;;, + 240;3; 0.000000, 1.078077, 0.000000;;, + 241;3; 0.000000, 1.078077, 0.000000;;, + 242;3; 0.000000, 1.078077, 0.000000;;, + 243;3; 0.000000, 1.078077, 0.000000;;, + 244;3; 0.000000, 1.078077, 0.000000;;, + 245;3; 0.000000, 1.078077, 0.000000;;, + 246;3; 0.000000, 1.078077, 0.000000;;, + 247;3; 0.000000, 1.078077, 0.000000;;, + 248;3; 0.000000, 1.078077, 0.000000;;, + 249;3; 0.000000, 1.078077, 0.000000;;; + } + } + Animation { + {Armature_Bone_018} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 1;4;-0.000002,-0.000000, 0.990944,-0.134058;;, + 2;4;-0.000002,-0.000000, 0.990611,-0.135853;;, + 3;4;-0.000002,-0.000000, 0.990055,-0.138854;;, + 4;4;-0.000002,-0.000000, 0.989279,-0.143034;;, + 5;4;-0.000002,-0.000000, 0.988297,-0.148333;;, + 6;4;-0.000002,-0.000000, 0.987127,-0.154646;;, + 7;4;-0.000002,-0.000000, 0.985797,-0.161817;;, + 8;4;-0.000002,-0.000000, 0.984346,-0.169645;;, + 9;4;-0.000002,-0.000000, 0.982818,-0.177886;;, + 10;4;-0.000002,-0.000000, 0.981263,-0.186269;;, + 11;4;-0.000002,-0.000000, 0.979735,-0.194511;;, + 12;4;-0.000002,-0.000000, 0.978284,-0.202339;;, + 13;4;-0.000002,-0.000000, 0.976954,-0.209510;;, + 14;4;-0.000002,-0.000000, 0.975784,-0.215822;;, + 15;4;-0.000002,-0.000000, 0.974802,-0.221121;;, + 16;4;-0.000002,-0.000000, 0.974026,-0.225302;;, + 17;4;-0.000002,-0.000000, 0.973470,-0.228303;;, + 18;4;-0.000002,-0.000000, 0.973137,-0.230098;;, + 19;4;-0.000002,-0.000000, 0.973027,-0.230692;;, + 20;4;-0.000002,-0.000000, 0.973126,-0.230156;;, + 21;4;-0.000002,-0.000000, 0.973427,-0.228537;;, + 22;4;-0.000002,-0.000000, 0.973929,-0.225828;;, + 23;4;-0.000002,-0.000000, 0.974629,-0.222050;;, + 24;4;-0.000002,-0.000000, 0.975520,-0.217247;;, + 25;4;-0.000002,-0.000000, 0.976585,-0.211502;;, + 26;4;-0.000002,-0.000000, 0.977803,-0.204935;;, + 27;4;-0.000002,-0.000000, 0.979143,-0.197706;;, + 28;4;-0.000002,-0.000000, 0.980569,-0.190012;;, + 29;4;-0.000002,-0.000000, 0.982041,-0.182078;;, + 30;4;-0.000002,-0.000000, 0.983512,-0.174144;;, + 31;4;-0.000002,-0.000000, 0.984938,-0.166449;;, + 32;4;-0.000002,-0.000000, 0.986278,-0.159221;;, + 33;4;-0.000002,-0.000000, 0.987496,-0.152654;;, + 34;4;-0.000002,-0.000000, 0.988561,-0.146909;;, + 35;4;-0.000002,-0.000000, 0.989452,-0.142106;;, + 36;4;-0.000002,-0.000000, 0.990152,-0.138327;;, + 37;4;-0.000002,-0.000000, 0.990654,-0.135619;;, + 38;4;-0.000002,-0.000000, 0.990955,-0.133999;;, + 39;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 40;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 41;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 42;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 43;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 44;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 45;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 46;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 47;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 48;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 49;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 50;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 51;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 52;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 53;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 54;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 55;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 56;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 57;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 58;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 59;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 60;4;-0.000550, 0.000080, 0.991210,-0.131762;;, + 61;4;-0.002200, 0.000320, 0.991678,-0.126642;;, + 62;4;-0.004882, 0.000710, 0.992440,-0.118318;;, + 63;4;-0.008391, 0.001221, 0.993437,-0.107429;;, + 64;4;-0.012366, 0.001800, 0.994566,-0.095094;;, + 65;4;-0.016341, 0.002379, 0.995695,-0.082760;;, + 66;4;-0.019850, 0.002890, 0.996691,-0.071871;;, + 67;4;-0.022533, 0.003280, 0.997453,-0.063546;;, + 68;4;-0.024182, 0.003520, 0.997922,-0.058427;;, + 69;4;-0.024731, 0.003600, 0.998077,-0.056725;;, + 70;4;-0.024670, 0.003591, 0.998060,-0.056913;;, + 71;4;-0.024488, 0.003565, 0.998008,-0.057479;;, + 72;4;-0.024182, 0.003520, 0.997922,-0.058427;;, + 73;4;-0.023754, 0.003458, 0.997800,-0.059756;;, + 74;4;-0.023203, 0.003378, 0.997643,-0.061466;;, + 75;4;-0.022533, 0.003280, 0.997453,-0.063546;;, + 76;4;-0.021746, 0.003166, 0.997230,-0.065987;;, + 77;4;-0.020849, 0.003035, 0.996975,-0.068770;;, + 78;4;-0.019850, 0.002890, 0.996691,-0.071871;;, + 79;4;-0.018757, 0.002731, 0.996381,-0.075262;;, + 80;4;-0.017583, 0.002560, 0.996047,-0.078905;;, + 81;4;-0.016341, 0.002379, 0.995695,-0.082760;;, + 82;4;-0.015046, 0.002190, 0.995327,-0.086778;;, + 83;4;-0.013715, 0.001996, 0.994949,-0.090908;;, + 84;4;-0.012366, 0.001800, 0.994566,-0.095094;;, + 85;4;-0.011017, 0.001604, 0.994182,-0.099281;;, + 86;4;-0.009686, 0.001410, 0.993804,-0.103411;;, + 87;4;-0.008391, 0.001221, 0.993437,-0.107429;;, + 88;4;-0.007149, 0.001040, 0.993084,-0.111284;;, + 89;4;-0.005975, 0.000869, 0.992751,-0.114927;;, + 90;4;-0.004882, 0.000710, 0.992440,-0.118318;;, + 91;4;-0.003883, 0.000565, 0.992156,-0.121419;;, + 92;4;-0.002986, 0.000434, 0.991902,-0.124202;;, + 93;4;-0.002200, 0.000320, 0.991678,-0.126642;;, + 94;4;-0.001529, 0.000222, 0.991488,-0.128723;;, + 95;4;-0.000978, 0.000142, 0.991331,-0.130432;;, + 96;4;-0.000550, 0.000080, 0.991210,-0.131762;;, + 97;4;-0.000244, 0.000035, 0.991123,-0.132710;;, + 98;4;-0.000062, 0.000009, 0.991071,-0.133276;;, + 99;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 100;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 101;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 102;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 103;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 104;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 105;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 106;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 107;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 108;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 109;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 110;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 111;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 112;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 113;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 114;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 115;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 116;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 117;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 118;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 119;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 120;4; 0.000186,-0.000274, 0.991843,-0.120586;;, + 121;4; 0.000715,-0.001047, 0.994065,-0.084312;;, + 122;4; 0.001394,-0.002038, 0.996918,-0.037738;;, + 123;4; 0.001922,-0.002810, 0.999139,-0.001464;;, + 124;4; 0.002110,-0.003084, 0.999928, 0.011414;;, + 125;4; 0.002110,-0.003084, 0.999928, 0.011414;;, + 126;4; 0.002110,-0.003084, 0.999928, 0.011414;;, + 127;4; 0.002110,-0.003084, 0.999928, 0.011414;;, + 128;4; 0.002110,-0.003084, 0.999928, 0.011414;;, + 129;4; 0.002110,-0.003084, 0.999928, 0.011414;;, + 130;4; 0.002199,-0.003215, 0.999844, 0.017200;;, + 131;4; 0.002520,-0.003683, 0.998806, 0.038559;;, + 132;4; 0.003117,-0.004556, 0.995321, 0.079571;;, + 133;4; 0.003943,-0.005762, 0.988418, 0.137959;;, + 134;4; 0.004892,-0.007147, 0.978356, 0.206748;;, + 135;4; 0.006215,-0.009081, 0.943883, 0.304765;;, + 136;4; 0.008098,-0.011829, 0.868220, 0.445482;;, + 137;4; 0.010051,-0.014683, 0.776447, 0.592204;;, + 138;4; 0.011428,-0.016694, 0.706649, 0.695892;;, + 139;4; 0.011893,-0.017372, 0.682153, 0.730907;;, + 140;4; 0.011198,-0.016357, 0.710530, 0.678937;;, + 141;4; 0.009164,-0.013387, 0.790403, 0.527316;;, + 142;4; 0.006348,-0.009273, 0.892806, 0.318567;;, + 143;4; 0.003755,-0.005487, 0.972261, 0.128609;;, + 144;4; 0.002110,-0.003084, 0.999928, 0.011414;;, + 145;4; 0.001147,-0.001677, 0.998560,-0.054705;;, + 146;4; 0.000475,-0.000696, 0.996231,-0.100795;;, + 147;4; 0.000125,-0.000185, 0.993624,-0.124818;;, + 148;4; 0.000012,-0.000019, 0.991712,-0.132571;;, + 149;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 150;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 151;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 152;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 153;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 154;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 155;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 156;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 157;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 158;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 159;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 160;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 161;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 162;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 163;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 164;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 165;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 166;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 167;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 168;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 169;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 170;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 171;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 172;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 173;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 174;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 175;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 176;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 177;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 178;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 179;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 180;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 181;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 182;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 183;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 184;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 185;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 186;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 187;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 188;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 189;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 190;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 191;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 192;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 193;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 194;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 195;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 196;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 197;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 198;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 199;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 200;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 201;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 202;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 203;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 204;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 205;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 206;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 207;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 208;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 209;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 210;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 211;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 212;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 213;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 214;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 215;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 216;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 217;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 218;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 219;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 220;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 221;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 222;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 223;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 224;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 225;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 226;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 227;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 228;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 229;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 230;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 231;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 232;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 233;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 234;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 235;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 236;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 237;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 238;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 239;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 240;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 241;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 242;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 243;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 244;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 245;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 246;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 247;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 248;4;-0.000002,-0.000000, 0.991054,-0.133464;;, + 249;4;-0.000002,-0.000000, 0.991054,-0.133464;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3; 0.000000, 2.352446,-0.000000;;, + 1;3;-0.000000, 2.352447,-0.000000;;, + 2;3;-0.000000, 2.352447,-0.000000;;, + 3;3;-0.000000, 2.352447, 0.000000;;, + 4;3;-0.000000, 2.352446,-0.000000;;, + 5;3;-0.000000, 2.352447,-0.000000;;, + 6;3;-0.000000, 2.352446,-0.000000;;, + 7;3;-0.000000, 2.352446, 0.000000;;, + 8;3;-0.000000, 2.352446,-0.000000;;, + 9;3;-0.000000, 2.352446,-0.000000;;, + 10;3;-0.000000, 2.352447,-0.000000;;, + 11;3;-0.000000, 2.352446, 0.000000;;, + 12;3;-0.000000, 2.352447,-0.000000;;, + 13;3;-0.000000, 2.352447,-0.000000;;, + 14;3; 0.000000, 2.352446, 0.000000;;, + 15;3; 0.000000, 2.352446, 0.000000;;, + 16;3;-0.000000, 2.352446,-0.000000;;, + 17;3; 0.000000, 2.352446,-0.000000;;, + 18;3;-0.000000, 2.352447,-0.000000;;, + 19;3;-0.000000, 2.352446,-0.000000;;, + 20;3;-0.000000, 2.352446, 0.000000;;, + 21;3;-0.000000, 2.352446, 0.000000;;, + 22;3; 0.000000, 2.352446,-0.000000;;, + 23;3;-0.000000, 2.352446,-0.000000;;, + 24;3; 0.000000, 2.352446, 0.000000;;, + 25;3;-0.000000, 2.352446,-0.000000;;, + 26;3; 0.000000, 2.352446,-0.000000;;, + 27;3;-0.000000, 2.352446,-0.000000;;, + 28;3; 0.000000, 2.352446,-0.000000;;, + 29;3;-0.000000, 2.352446,-0.000000;;, + 30;3; 0.000000, 2.352446,-0.000000;;, + 31;3;-0.000000, 2.352447, 0.000000;;, + 32;3;-0.000000, 2.352446,-0.000000;;, + 33;3;-0.000000, 2.352446,-0.000000;;, + 34;3;-0.000000, 2.352446, 0.000000;;, + 35;3;-0.000000, 2.352447,-0.000000;;, + 36;3; 0.000000, 2.352446, 0.000000;;, + 37;3; 0.000000, 2.352446,-0.000000;;, + 38;3;-0.000000, 2.352447,-0.000000;;, + 39;3; 0.000000, 2.352446,-0.000000;;, + 40;3; 0.000000, 2.352446, 0.000000;;, + 41;3; 0.000000, 2.352447,-0.000000;;, + 42;3; 0.000000, 2.352446, 0.000000;;, + 43;3;-0.000000, 2.352446,-0.000000;;, + 44;3; 0.000000, 2.352446, 0.000000;;, + 45;3;-0.000000, 2.352446,-0.000000;;, + 46;3;-0.000000, 2.352446,-0.000000;;, + 47;3;-0.000000, 2.352446,-0.000000;;, + 48;3;-0.000000, 2.352447, 0.000000;;, + 49;3; 0.000000, 2.352446, 0.000000;;, + 50;3; 0.000000, 2.352446, 0.000000;;, + 51;3;-0.000000, 2.352446, 0.000000;;, + 52;3; 0.000000, 2.352446, 0.000000;;, + 53;3;-0.000000, 2.352447,-0.000000;;, + 54;3; 0.000000, 2.352446,-0.000000;;, + 55;3; 0.000000, 2.352447, 0.000000;;, + 56;3;-0.000000, 2.352446, 0.000000;;, + 57;3; 0.000000, 2.352446, 0.000000;;, + 58;3;-0.000000, 2.352446, 0.000000;;, + 59;3; 0.000000, 2.352446, 0.000000;;, + 60;3; 0.000000, 2.352446,-0.000000;;, + 61;3; 0.000000, 2.352446,-0.000000;;, + 62;3;-0.000000, 2.352446, 0.000000;;, + 63;3; 0.000000, 2.352447,-0.000000;;, + 64;3;-0.000000, 2.352446, 0.000000;;, + 65;3; 0.000000, 2.352447,-0.000000;;, + 66;3; 0.000000, 2.352447, 0.000000;;, + 67;3; 0.000000, 2.352447,-0.000000;;, + 68;3;-0.000000, 2.352447, 0.000000;;, + 69;3; 0.000000, 2.352446,-0.000000;;, + 70;3;-0.000000, 2.352446,-0.000000;;, + 71;3; 0.000000, 2.352447, 0.000000;;, + 72;3; 0.000000, 2.352447,-0.000000;;, + 73;3;-0.000000, 2.352446,-0.000000;;, + 74;3;-0.000000, 2.352446, 0.000000;;, + 75;3;-0.000000, 2.352446,-0.000000;;, + 76;3;-0.000000, 2.352446, 0.000000;;, + 77;3; 0.000000, 2.352446,-0.000000;;, + 78;3; 0.000000, 2.352446,-0.000000;;, + 79;3; 0.000000, 2.352446, 0.000000;;, + 80;3; 0.000000, 2.352446,-0.000000;;, + 81;3; 0.000000, 2.352446,-0.000000;;, + 82;3; 0.000000, 2.352447,-0.000000;;, + 83;3;-0.000000, 2.352446,-0.000000;;, + 84;3; 0.000000, 2.352446,-0.000000;;, + 85;3; 0.000000, 2.352446, 0.000000;;, + 86;3;-0.000000, 2.352446,-0.000000;;, + 87;3;-0.000000, 2.352447,-0.000000;;, + 88;3; 0.000000, 2.352446,-0.000000;;, + 89;3; 0.000000, 2.352446, 0.000000;;, + 90;3; 0.000000, 2.352447, 0.000000;;, + 91;3; 0.000000, 2.352446, 0.000000;;, + 92;3;-0.000000, 2.352446, 0.000000;;, + 93;3; 0.000000, 2.352446,-0.000000;;, + 94;3; 0.000000, 2.352446,-0.000000;;, + 95;3; 0.000000, 2.352447, 0.000000;;, + 96;3;-0.000000, 2.352446,-0.000000;;, + 97;3; 0.000000, 2.352447,-0.000000;;, + 98;3; 0.000000, 2.352446,-0.000000;;, + 99;3; 0.000000, 2.352446, 0.000000;;, + 100;3;-0.000000, 2.352446, 0.000000;;, + 101;3;-0.000000, 2.352446, 0.000000;;, + 102;3;-0.000000, 2.352446,-0.000000;;, + 103;3;-0.000000, 2.352446,-0.000000;;, + 104;3; 0.000000, 2.352447,-0.000000;;, + 105;3; 0.000000, 2.352446,-0.000000;;, + 106;3;-0.000000, 2.352446, 0.000000;;, + 107;3; 0.000000, 2.352446, 0.000000;;, + 108;3;-0.000000, 2.352447, 0.000000;;, + 109;3;-0.000000, 2.352447,-0.000000;;, + 110;3;-0.000000, 2.352446, 0.000000;;, + 111;3; 0.000000, 2.352447, 0.000000;;, + 112;3; 0.000000, 2.352446, 0.000000;;, + 113;3;-0.000000, 2.352447,-0.000000;;, + 114;3; 0.000000, 2.352446,-0.000000;;, + 115;3; 0.000000, 2.352446,-0.000000;;, + 116;3; 0.000000, 2.352446, 0.000000;;, + 117;3; 0.000000, 2.352446, 0.000000;;, + 118;3; 0.000000, 2.352447,-0.000000;;, + 119;3; 0.000000, 2.352446,-0.000000;;, + 120;3;-0.000000, 2.352446, 0.000000;;, + 121;3;-0.000000, 2.352446, 0.000000;;, + 122;3; 0.000000, 2.352447,-0.000000;;, + 123;3;-0.000000, 2.352446,-0.000000;;, + 124;3;-0.000000, 2.352446, 0.000000;;, + 125;3; 0.000000, 2.352446,-0.000000;;, + 126;3;-0.000000, 2.352446,-0.000000;;, + 127;3; 0.000000, 2.352447,-0.000000;;, + 128;3;-0.000000, 2.352447,-0.000000;;, + 129;3;-0.000000, 2.352446,-0.000000;;, + 130;3;-0.000000, 2.352446,-0.000000;;, + 131;3;-0.000000, 2.352446,-0.000000;;, + 132;3;-0.000000, 2.352446, 0.000000;;, + 133;3;-0.000000, 2.352446, 0.000000;;, + 134;3;-0.000000, 2.352446, 0.000000;;, + 135;3; 0.000000, 2.352447, 0.000000;;, + 136;3;-0.000000, 2.352446, 0.000000;;, + 137;3;-0.000000, 2.352446,-0.000000;;, + 138;3;-0.000000, 2.352446, 0.000000;;, + 139;3; 0.000000, 2.352446,-0.000000;;, + 140;3; 0.000000, 2.352447, 0.000000;;, + 141;3; 0.000000, 2.352447,-0.000000;;, + 142;3;-0.000000, 2.352446, 0.000000;;, + 143;3; 0.000000, 2.352446, 0.000000;;, + 144;3; 0.000000, 2.352446, 0.000000;;, + 145;3; 0.000000, 2.352446,-0.000000;;, + 146;3; 0.000000, 2.352446,-0.000000;;, + 147;3; 0.000000, 2.352446,-0.000000;;, + 148;3; 0.000000, 2.352446,-0.000000;;, + 149;3; 0.000000, 2.352446,-0.000000;;, + 150;3; 0.000000, 2.352446,-0.000000;;, + 151;3; 0.000000, 2.352446,-0.000000;;, + 152;3; 0.000000, 2.352446,-0.000000;;, + 153;3; 0.000000, 2.352446,-0.000000;;, + 154;3; 0.000000, 2.352446,-0.000000;;, + 155;3; 0.000000, 2.352446,-0.000000;;, + 156;3; 0.000000, 2.352446,-0.000000;;, + 157;3; 0.000000, 2.352446,-0.000000;;, + 158;3; 0.000000, 2.352446,-0.000000;;, + 159;3; 0.000000, 2.352446,-0.000000;;, + 160;3; 0.000000, 2.352446,-0.000000;;, + 161;3; 0.000000, 2.352446,-0.000000;;, + 162;3; 0.000000, 2.352446,-0.000000;;, + 163;3; 0.000000, 2.352446,-0.000000;;, + 164;3; 0.000000, 2.352446,-0.000000;;, + 165;3; 0.000000, 2.352446,-0.000000;;, + 166;3; 0.000000, 2.352446,-0.000000;;, + 167;3; 0.000000, 2.352446,-0.000000;;, + 168;3; 0.000000, 2.352446,-0.000000;;, + 169;3; 0.000000, 2.352446,-0.000000;;, + 170;3; 0.000000, 2.352446,-0.000000;;, + 171;3; 0.000000, 2.352446,-0.000000;;, + 172;3; 0.000000, 2.352446,-0.000000;;, + 173;3; 0.000000, 2.352446,-0.000000;;, + 174;3; 0.000000, 2.352446,-0.000000;;, + 175;3; 0.000000, 2.352446,-0.000000;;, + 176;3; 0.000000, 2.352446,-0.000000;;, + 177;3; 0.000000, 2.352446,-0.000000;;, + 178;3; 0.000000, 2.352446,-0.000000;;, + 179;3; 0.000000, 2.352446,-0.000000;;, + 180;3; 0.000000, 2.352446,-0.000000;;, + 181;3; 0.000000, 2.352446,-0.000000;;, + 182;3; 0.000000, 2.352446,-0.000000;;, + 183;3; 0.000000, 2.352446,-0.000000;;, + 184;3; 0.000000, 2.352446,-0.000000;;, + 185;3; 0.000000, 2.352446,-0.000000;;, + 186;3; 0.000000, 2.352446,-0.000000;;, + 187;3; 0.000000, 2.352446,-0.000000;;, + 188;3; 0.000000, 2.352446,-0.000000;;, + 189;3; 0.000000, 2.352446,-0.000000;;, + 190;3; 0.000000, 2.352446,-0.000000;;, + 191;3; 0.000000, 2.352446,-0.000000;;, + 192;3; 0.000000, 2.352446,-0.000000;;, + 193;3; 0.000000, 2.352446,-0.000000;;, + 194;3; 0.000000, 2.352446,-0.000000;;, + 195;3; 0.000000, 2.352446,-0.000000;;, + 196;3; 0.000000, 2.352446,-0.000000;;, + 197;3; 0.000000, 2.352446,-0.000000;;, + 198;3; 0.000000, 2.352446,-0.000000;;, + 199;3; 0.000000, 2.352446,-0.000000;;, + 200;3; 0.000000, 2.352446,-0.000000;;, + 201;3; 0.000000, 2.352446,-0.000000;;, + 202;3; 0.000000, 2.352446,-0.000000;;, + 203;3; 0.000000, 2.352446,-0.000000;;, + 204;3; 0.000000, 2.352446,-0.000000;;, + 205;3; 0.000000, 2.352446,-0.000000;;, + 206;3; 0.000000, 2.352446,-0.000000;;, + 207;3; 0.000000, 2.352446,-0.000000;;, + 208;3; 0.000000, 2.352446,-0.000000;;, + 209;3; 0.000000, 2.352446,-0.000000;;, + 210;3; 0.000000, 2.352446,-0.000000;;, + 211;3; 0.000000, 2.352446,-0.000000;;, + 212;3; 0.000000, 2.352446,-0.000000;;, + 213;3; 0.000000, 2.352446,-0.000000;;, + 214;3; 0.000000, 2.352446,-0.000000;;, + 215;3; 0.000000, 2.352446,-0.000000;;, + 216;3; 0.000000, 2.352446,-0.000000;;, + 217;3; 0.000000, 2.352446,-0.000000;;, + 218;3; 0.000000, 2.352446,-0.000000;;, + 219;3; 0.000000, 2.352446,-0.000000;;, + 220;3; 0.000000, 2.352446,-0.000000;;, + 221;3; 0.000000, 2.352446,-0.000000;;, + 222;3; 0.000000, 2.352446,-0.000000;;, + 223;3; 0.000000, 2.352446,-0.000000;;, + 224;3; 0.000000, 2.352446,-0.000000;;, + 225;3; 0.000000, 2.352446,-0.000000;;, + 226;3; 0.000000, 2.352446,-0.000000;;, + 227;3; 0.000000, 2.352446,-0.000000;;, + 228;3; 0.000000, 2.352446,-0.000000;;, + 229;3; 0.000000, 2.352446,-0.000000;;, + 230;3; 0.000000, 2.352446,-0.000000;;, + 231;3; 0.000000, 2.352446,-0.000000;;, + 232;3; 0.000000, 2.352446,-0.000000;;, + 233;3; 0.000000, 2.352446,-0.000000;;, + 234;3; 0.000000, 2.352446,-0.000000;;, + 235;3; 0.000000, 2.352446,-0.000000;;, + 236;3; 0.000000, 2.352446,-0.000000;;, + 237;3; 0.000000, 2.352446,-0.000000;;, + 238;3; 0.000000, 2.352446,-0.000000;;, + 239;3; 0.000000, 2.352446,-0.000000;;, + 240;3; 0.000000, 2.352446,-0.000000;;, + 241;3; 0.000000, 2.352446,-0.000000;;, + 242;3; 0.000000, 2.352446,-0.000000;;, + 243;3; 0.000000, 2.352446,-0.000000;;, + 244;3; 0.000000, 2.352446,-0.000000;;, + 245;3; 0.000000, 2.352446,-0.000000;;, + 246;3; 0.000000, 2.352446,-0.000000;;, + 247;3; 0.000000, 2.352446,-0.000000;;, + 248;3; 0.000000, 2.352446,-0.000000;;, + 249;3; 0.000000, 2.352446,-0.000000;;; + } + } + Animation { + {Armature_Bone_020} + AnimationKey { // Rotation + 0; + 250; + 0;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 1;4; 0.000002, 0.000000, 0.996363, 0.085186;;, + 2;4; 0.000002, 0.000000, 0.996397, 0.084720;;, + 3;4; 0.000002, 0.000000, 0.996454, 0.083941;;, + 4;4; 0.000002, 0.000000, 0.996533, 0.082856;;, + 5;4; 0.000002, 0.000000, 0.996633, 0.081481;;, + 6;4; 0.000002, 0.000000, 0.996753, 0.079842;;, + 7;4; 0.000002, 0.000000, 0.996889, 0.077981;;, + 8;4; 0.000002, 0.000000, 0.997037, 0.075949;;, + 9;4; 0.000002, 0.000000, 0.997193, 0.073810;;, + 10;4; 0.000002, 0.000000, 0.997351, 0.071634;;, + 11;4; 0.000002, 0.000000, 0.997507, 0.069495;;, + 12;4; 0.000002, 0.000000, 0.997655, 0.067463;;, + 13;4; 0.000002, 0.000000, 0.997791, 0.065602;;, + 14;4; 0.000002, 0.000000, 0.997911, 0.063963;;, + 15;4; 0.000002, 0.000000, 0.998011, 0.062588;;, + 16;4; 0.000002, 0.000000, 0.998090, 0.061503;;, + 17;4; 0.000002, 0.000000, 0.998147, 0.060724;;, + 18;4; 0.000002, 0.000000, 0.998181, 0.060258;;, + 19;4; 0.000002, 0.000000, 0.998192, 0.060104;;, + 20;4; 0.000002, 0.000000, 0.998182, 0.060243;;, + 21;4; 0.000002, 0.000000, 0.998151, 0.060663;;, + 22;4; 0.000002, 0.000000, 0.998100, 0.061366;;, + 23;4; 0.000002, 0.000000, 0.998029, 0.062347;;, + 24;4; 0.000002, 0.000000, 0.997938, 0.063594;;, + 25;4; 0.000002, 0.000000, 0.997829, 0.065085;;, + 26;4; 0.000002, 0.000000, 0.997705, 0.066789;;, + 27;4; 0.000002, 0.000000, 0.997568, 0.068666;;, + 28;4; 0.000002, 0.000000, 0.997422, 0.070663;;, + 29;4; 0.000002, 0.000000, 0.997272, 0.072722;;, + 30;4; 0.000002, 0.000000, 0.997122, 0.074781;;, + 31;4; 0.000002, 0.000000, 0.996976, 0.076778;;, + 32;4; 0.000002, 0.000000, 0.996839, 0.078655;;, + 33;4; 0.000002, 0.000000, 0.996715, 0.080359;;, + 34;4; 0.000002, 0.000000, 0.996606, 0.081850;;, + 35;4; 0.000002, 0.000000, 0.996515, 0.083097;;, + 36;4; 0.000002, 0.000000, 0.996444, 0.084078;;, + 37;4; 0.000002, 0.000000, 0.996393, 0.084781;;, + 38;4; 0.000002, 0.000000, 0.996362, 0.085201;;, + 39;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 40;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 41;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 42;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 43;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 44;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 45;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 46;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 47;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 48;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 49;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 50;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 51;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 52;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 53;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 54;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 55;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 56;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 57;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 58;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 59;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 60;4;-0.000336,-0.000128, 0.996416, 0.084230;;, + 61;4;-0.001350,-0.000515, 0.996609, 0.080889;;, + 62;4;-0.003000,-0.001143, 0.996923, 0.075457;;, + 63;4;-0.005158,-0.001965, 0.997334, 0.068352;;, + 64;4;-0.007603,-0.002896, 0.997799, 0.060304;;, + 65;4;-0.010047,-0.003827, 0.998264, 0.052255;;, + 66;4;-0.012205,-0.004649, 0.998674, 0.045150;;, + 67;4;-0.013855,-0.005277, 0.998988, 0.039718;;, + 68;4;-0.014870,-0.005664, 0.999181, 0.036377;;, + 69;4;-0.015207,-0.005792, 0.999245, 0.035267;;, + 70;4;-0.015170,-0.005778, 0.999238, 0.035390;;, + 71;4;-0.015057,-0.005735, 0.999217, 0.035759;;, + 72;4;-0.014870,-0.005664, 0.999181, 0.036377;;, + 73;4;-0.014606,-0.005563, 0.999131, 0.037245;;, + 74;4;-0.014267,-0.005434, 0.999067, 0.038360;;, + 75;4;-0.013855,-0.005277, 0.998988, 0.039718;;, + 76;4;-0.013371,-0.005093, 0.998896, 0.041311;;, + 77;4;-0.012820,-0.004883, 0.998791, 0.043126;;, + 78;4;-0.012205,-0.004649, 0.998674, 0.045150;;, + 79;4;-0.011533,-0.004393, 0.998546, 0.047363;;, + 80;4;-0.010811,-0.004118, 0.998409, 0.049740;;, + 81;4;-0.010047,-0.003827, 0.998264, 0.052255;;, + 82;4;-0.009251,-0.003524, 0.998112, 0.054877;;, + 83;4;-0.008432,-0.003212, 0.997957, 0.057572;;, + 84;4;-0.007603,-0.002896, 0.997799, 0.060304;;, + 85;4;-0.006773,-0.002580, 0.997641, 0.063036;;, + 86;4;-0.005954,-0.002268, 0.997485, 0.065730;;, + 87;4;-0.005158,-0.001965, 0.997334, 0.068352;;, + 88;4;-0.004394,-0.001674, 0.997188, 0.070868;;, + 89;4;-0.003672,-0.001399, 0.997051, 0.073245;;, + 90;4;-0.003000,-0.001143, 0.996923, 0.075457;;, + 91;4;-0.002385,-0.000909, 0.996806, 0.077481;;, + 92;4;-0.001834,-0.000699, 0.996701, 0.079297;;, + 93;4;-0.001350,-0.000515, 0.996609, 0.080889;;, + 94;4;-0.000938,-0.000358, 0.996531, 0.082247;;, + 95;4;-0.000599,-0.000229, 0.996466, 0.083362;;, + 96;4;-0.000336,-0.000128, 0.996416, 0.084230;;, + 97;4;-0.000148,-0.000057, 0.996380, 0.084849;;, + 98;4;-0.000036,-0.000014, 0.996359, 0.085218;;, + 99;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 100;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 101;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 102;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 103;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 104;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 105;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 106;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 107;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 108;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 109;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 110;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 111;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 112;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 113;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 114;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 115;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 116;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 117;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 118;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 119;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 120;4; 0.000187, 0.000462, 0.995890, 0.065970;;, + 121;4; 0.000707, 0.001762, 0.994590, 0.011410;;, + 122;4; 0.001376, 0.003432, 0.992919,-0.058645;;, + 123;4; 0.001897, 0.004732, 0.991619,-0.113205;;, + 124;4; 0.002082, 0.005193, 0.991157,-0.132575;;, + 125;4; 0.002082, 0.005193, 0.991157,-0.132575;;, + 126;4; 0.002082, 0.005193, 0.991157,-0.132575;;, + 127;4; 0.002082, 0.005193, 0.991157,-0.132575;;, + 128;4; 0.002082, 0.005193, 0.991157,-0.132575;;, + 129;4; 0.002082, 0.005193, 0.991157,-0.132575;;, + 130;4; 0.002466, 0.006152, 0.974105,-0.174183;;, + 131;4; 0.003548, 0.008853, 0.926075,-0.291378;;, + 132;4; 0.004937, 0.012320, 0.864404,-0.441855;;, + 133;4; 0.006019, 0.015020, 0.816373,-0.559050;;, + 134;4; 0.006403, 0.015979, 0.799321,-0.600658;;, + 135;4; 0.006290, 0.015698, 0.807557,-0.588186;;, + 136;4; 0.005943, 0.014830, 0.832108,-0.549754;;, + 137;4; 0.005415, 0.013512, 0.867266,-0.491541;;, + 138;4; 0.004844, 0.012088, 0.901720,-0.428944;;, + 139;4; 0.004352, 0.010859, 0.926806,-0.375358;;, + 140;4; 0.003911, 0.009758, 0.945966,-0.327662;;, + 141;4; 0.003452, 0.008614, 0.963865,-0.278403;;, + 142;4; 0.002986, 0.007449, 0.978135,-0.228577;;, + 143;4; 0.002526, 0.006302, 0.987137,-0.179670;;, + 144;4; 0.002082, 0.005193, 0.991157,-0.132575;;, + 145;4; 0.001585, 0.003953, 0.993016,-0.080136;;, + 146;4; 0.001007, 0.002509, 0.994574,-0.019478;;, + 147;4; 0.000470, 0.001170, 0.995652, 0.036569;;, + 148;4; 0.000116, 0.000286, 0.996204, 0.073415;;, + 149;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 150;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 151;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 152;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 153;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 154;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 155;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 156;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 157;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 158;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 159;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 160;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 161;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 162;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 163;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 164;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 165;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 166;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 167;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 168;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 169;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 170;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 171;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 172;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 173;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 174;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 175;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 176;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 177;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 178;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 179;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 180;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 181;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 182;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 183;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 184;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 185;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 186;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 187;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 188;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 189;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 190;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 191;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 192;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 193;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 194;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 195;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 196;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 197;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 198;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 199;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 200;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 201;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 202;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 203;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 204;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 205;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 206;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 207;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 208;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 209;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 210;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 211;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 212;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 213;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 214;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 215;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 216;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 217;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 218;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 219;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 220;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 221;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 222;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 223;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 224;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 225;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 226;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 227;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 228;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 229;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 230;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 231;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 232;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 233;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 234;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 235;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 236;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 237;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 238;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 239;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 240;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 241;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 242;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 243;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 244;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 245;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 246;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 247;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 248;4; 0.000002, 0.000000, 0.996352, 0.085340;;, + 249;4; 0.000002, 0.000000, 0.996352, 0.085340;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3; 0.000000, 2.377758,-0.000000;;, + 1;3;-0.000000, 2.377758,-0.000000;;, + 2;3;-0.000000, 2.377757, 0.000000;;, + 3;3;-0.000000, 2.377757,-0.000000;;, + 4;3;-0.000000, 2.377757,-0.000000;;, + 5;3; 0.000000, 2.377758, 0.000000;;, + 6;3;-0.000000, 2.377758,-0.000000;;, + 7;3; 0.000000, 2.377758,-0.000000;;, + 8;3; 0.000000, 2.377758,-0.000000;;, + 9;3; 0.000000, 2.377758,-0.000000;;, + 10;3; 0.000000, 2.377758,-0.000000;;, + 11;3;-0.000000, 2.377757, 0.000000;;, + 12;3;-0.000000, 2.377757, 0.000000;;, + 13;3; 0.000000, 2.377757, 0.000000;;, + 14;3; 0.000000, 2.377758, 0.000000;;, + 15;3; 0.000000, 2.377757, 0.000000;;, + 16;3; 0.000000, 2.377757, 0.000000;;, + 17;3;-0.000000, 2.377758, 0.000000;;, + 18;3;-0.000000, 2.377757, 0.000000;;, + 19;3; 0.000000, 2.377757, 0.000000;;, + 20;3; 0.000000, 2.377758, 0.000000;;, + 21;3;-0.000000, 2.377758, 0.000000;;, + 22;3; 0.000000, 2.377758, 0.000000;;, + 23;3;-0.000000, 2.377757, 0.000000;;, + 24;3; 0.000000, 2.377758, 0.000000;;, + 25;3; 0.000000, 2.377758, 0.000000;;, + 26;3;-0.000000, 2.377757,-0.000000;;, + 27;3; 0.000000, 2.377758,-0.000000;;, + 28;3;-0.000000, 2.377757,-0.000000;;, + 29;3; 0.000000, 2.377758,-0.000000;;, + 30;3;-0.000000, 2.377758,-0.000000;;, + 31;3;-0.000000, 2.377757,-0.000000;;, + 32;3;-0.000000, 2.377758,-0.000000;;, + 33;3;-0.000000, 2.377757,-0.000000;;, + 34;3; 0.000000, 2.377758,-0.000000;;, + 35;3; 0.000000, 2.377758,-0.000000;;, + 36;3;-0.000000, 2.377757,-0.000000;;, + 37;3;-0.000000, 2.377758,-0.000000;;, + 38;3; 0.000000, 2.377757, 0.000000;;, + 39;3; 0.000000, 2.377758,-0.000000;;, + 40;3;-0.000000, 2.377757, 0.000000;;, + 41;3;-0.000000, 2.377758, 0.000000;;, + 42;3;-0.000000, 2.377758,-0.000000;;, + 43;3; 0.000000, 2.377758, 0.000000;;, + 44;3; 0.000000, 2.377757,-0.000000;;, + 45;3;-0.000000, 2.377757,-0.000000;;, + 46;3;-0.000000, 2.377757,-0.000000;;, + 47;3;-0.000000, 2.377757, 0.000000;;, + 48;3;-0.000000, 2.377757,-0.000000;;, + 49;3; 0.000000, 2.377758, 0.000000;;, + 50;3; 0.000000, 2.377758, 0.000000;;, + 51;3; 0.000000, 2.377758,-0.000000;;, + 52;3; 0.000000, 2.377758, 0.000000;;, + 53;3;-0.000000, 2.377758,-0.000000;;, + 54;3;-0.000000, 2.377758, 0.000000;;, + 55;3;-0.000000, 2.377758, 0.000000;;, + 56;3;-0.000000, 2.377758, 0.000000;;, + 57;3; 0.000000, 2.377757, 0.000000;;, + 58;3; 0.000000, 2.377758, 0.000000;;, + 59;3; 0.000000, 2.377758,-0.000000;;, + 60;3; 0.000000, 2.377758,-0.000000;;, + 61;3;-0.000000, 2.377758, 0.000000;;, + 62;3;-0.000000, 2.377758, 0.000000;;, + 63;3;-0.000000, 2.377757, 0.000000;;, + 64;3;-0.000000, 2.377758,-0.000000;;, + 65;3;-0.000000, 2.377758, 0.000000;;, + 66;3;-0.000000, 2.377758,-0.000000;;, + 67;3;-0.000000, 2.377758, 0.000000;;, + 68;3;-0.000000, 2.377758,-0.000000;;, + 69;3;-0.000000, 2.377758, 0.000000;;, + 70;3;-0.000000, 2.377758,-0.000000;;, + 71;3;-0.000000, 2.377757,-0.000000;;, + 72;3; 0.000000, 2.377758, 0.000000;;, + 73;3;-0.000000, 2.377758,-0.000000;;, + 74;3; 0.000000, 2.377758,-0.000000;;, + 75;3; 0.000000, 2.377758,-0.000000;;, + 76;3;-0.000000, 2.377757, 0.000000;;, + 77;3;-0.000000, 2.377757,-0.000000;;, + 78;3; 0.000000, 2.377757, 0.000000;;, + 79;3; 0.000000, 2.377757,-0.000000;;, + 80;3;-0.000000, 2.377758, 0.000000;;, + 81;3; 0.000000, 2.377758, 0.000000;;, + 82;3; 0.000000, 2.377757,-0.000000;;, + 83;3;-0.000000, 2.377758,-0.000000;;, + 84;3;-0.000000, 2.377758,-0.000000;;, + 85;3; 0.000000, 2.377758, 0.000000;;, + 86;3; 0.000000, 2.377757,-0.000000;;, + 87;3;-0.000000, 2.377758, 0.000000;;, + 88;3;-0.000000, 2.377758,-0.000000;;, + 89;3; 0.000000, 2.377757, 0.000000;;, + 90;3; 0.000000, 2.377757, 0.000000;;, + 91;3; 0.000000, 2.377757, 0.000000;;, + 92;3; 0.000000, 2.377757,-0.000000;;, + 93;3;-0.000000, 2.377757,-0.000000;;, + 94;3; 0.000000, 2.377758, 0.000000;;, + 95;3; 0.000000, 2.377758,-0.000000;;, + 96;3; 0.000000, 2.377758, 0.000000;;, + 97;3;-0.000000, 2.377758,-0.000000;;, + 98;3; 0.000000, 2.377758, 0.000000;;, + 99;3; 0.000000, 2.377758,-0.000000;;, + 100;3;-0.000000, 2.377758,-0.000000;;, + 101;3; 0.000000, 2.377758, 0.000000;;, + 102;3;-0.000000, 2.377757, 0.000000;;, + 103;3; 0.000001, 2.377757,-0.000000;;, + 104;3; 0.000000, 2.377758, 0.000000;;, + 105;3;-0.000000, 2.377757, 0.000000;;, + 106;3;-0.000000, 2.377758,-0.000000;;, + 107;3; 0.000000, 2.377757,-0.000000;;, + 108;3;-0.000000, 2.377758, 0.000000;;, + 109;3;-0.000000, 2.377757, 0.000000;;, + 110;3; 0.000000, 2.377758,-0.000000;;, + 111;3; 0.000000, 2.377757, 0.000000;;, + 112;3; 0.000000, 2.377758,-0.000000;;, + 113;3;-0.000000, 2.377758,-0.000000;;, + 114;3; 0.000000, 2.377758, 0.000000;;, + 115;3;-0.000000, 2.377757,-0.000000;;, + 116;3;-0.000000, 2.377758,-0.000000;;, + 117;3; 0.000000, 2.377758,-0.000000;;, + 118;3; 0.000000, 2.377758,-0.000000;;, + 119;3; 0.000000, 2.377758,-0.000000;;, + 120;3; 0.000000, 2.377758, 0.000000;;, + 121;3; 0.000000, 2.377758,-0.000000;;, + 122;3;-0.000000, 2.377757, 0.000000;;, + 123;3;-0.000000, 2.377758, 0.000000;;, + 124;3; 0.000000, 2.377758, 0.000000;;, + 125;3; 0.000000, 2.377757, 0.000000;;, + 126;3; 0.000000, 2.377758,-0.000000;;, + 127;3;-0.000000, 2.377758, 0.000000;;, + 128;3; 0.000000, 2.377758,-0.000000;;, + 129;3;-0.000000, 2.377758,-0.000000;;, + 130;3;-0.000000, 2.377757, 0.000000;;, + 131;3;-0.000000, 2.377757, 0.000000;;, + 132;3;-0.000000, 2.377758,-0.000000;;, + 133;3; 0.000000, 2.377758, 0.000000;;, + 134;3; 0.000000, 2.377757, 0.000000;;, + 135;3; 0.000000, 2.377758,-0.000000;;, + 136;3; 0.000000, 2.377758, 0.000000;;, + 137;3; 0.000000, 2.377758,-0.000000;;, + 138;3;-0.000000, 2.377758, 0.000000;;, + 139;3;-0.000000, 2.377757, 0.000000;;, + 140;3; 0.000000, 2.377757,-0.000000;;, + 141;3; 0.000000, 2.377758, 0.000000;;, + 142;3;-0.000000, 2.377758,-0.000000;;, + 143;3; 0.000000, 2.377758, 0.000000;;, + 144;3; 0.000000, 2.377758,-0.000000;;, + 145;3;-0.000000, 2.377758, 0.000000;;, + 146;3;-0.000000, 2.377758, 0.000000;;, + 147;3; 0.000000, 2.377758,-0.000000;;, + 148;3;-0.000000, 2.377758, 0.000000;;, + 149;3; 0.000000, 2.377758,-0.000000;;, + 150;3; 0.000000, 2.377758,-0.000000;;, + 151;3; 0.000000, 2.377758,-0.000000;;, + 152;3; 0.000000, 2.377758,-0.000000;;, + 153;3; 0.000000, 2.377758,-0.000000;;, + 154;3; 0.000000, 2.377758,-0.000000;;, + 155;3; 0.000000, 2.377758,-0.000000;;, + 156;3; 0.000000, 2.377758,-0.000000;;, + 157;3; 0.000000, 2.377758,-0.000000;;, + 158;3; 0.000000, 2.377758,-0.000000;;, + 159;3; 0.000000, 2.377758,-0.000000;;, + 160;3; 0.000000, 2.377758,-0.000000;;, + 161;3; 0.000000, 2.377758,-0.000000;;, + 162;3; 0.000000, 2.377758,-0.000000;;, + 163;3; 0.000000, 2.377758,-0.000000;;, + 164;3; 0.000000, 2.377758,-0.000000;;, + 165;3; 0.000000, 2.377758,-0.000000;;, + 166;3; 0.000000, 2.377758,-0.000000;;, + 167;3; 0.000000, 2.377758,-0.000000;;, + 168;3; 0.000000, 2.377758,-0.000000;;, + 169;3; 0.000000, 2.377758,-0.000000;;, + 170;3; 0.000000, 2.377758,-0.000000;;, + 171;3; 0.000000, 2.377758,-0.000000;;, + 172;3; 0.000000, 2.377758,-0.000000;;, + 173;3; 0.000000, 2.377758,-0.000000;;, + 174;3; 0.000000, 2.377758,-0.000000;;, + 175;3; 0.000000, 2.377758,-0.000000;;, + 176;3; 0.000000, 2.377758,-0.000000;;, + 177;3; 0.000000, 2.377758,-0.000000;;, + 178;3; 0.000000, 2.377758,-0.000000;;, + 179;3; 0.000000, 2.377758,-0.000000;;, + 180;3; 0.000000, 2.377758,-0.000000;;, + 181;3; 0.000000, 2.377758,-0.000000;;, + 182;3; 0.000000, 2.377758,-0.000000;;, + 183;3; 0.000000, 2.377758,-0.000000;;, + 184;3; 0.000000, 2.377758,-0.000000;;, + 185;3; 0.000000, 2.377758,-0.000000;;, + 186;3; 0.000000, 2.377758,-0.000000;;, + 187;3; 0.000000, 2.377758,-0.000000;;, + 188;3; 0.000000, 2.377758,-0.000000;;, + 189;3; 0.000000, 2.377758,-0.000000;;, + 190;3; 0.000000, 2.377758,-0.000000;;, + 191;3; 0.000000, 2.377758,-0.000000;;, + 192;3; 0.000000, 2.377758,-0.000000;;, + 193;3; 0.000000, 2.377758,-0.000000;;, + 194;3; 0.000000, 2.377758,-0.000000;;, + 195;3; 0.000000, 2.377758,-0.000000;;, + 196;3; 0.000000, 2.377758,-0.000000;;, + 197;3; 0.000000, 2.377758,-0.000000;;, + 198;3; 0.000000, 2.377758,-0.000000;;, + 199;3; 0.000000, 2.377758,-0.000000;;, + 200;3; 0.000000, 2.377758,-0.000000;;, + 201;3; 0.000000, 2.377758,-0.000000;;, + 202;3; 0.000000, 2.377758,-0.000000;;, + 203;3; 0.000000, 2.377758,-0.000000;;, + 204;3; 0.000000, 2.377758,-0.000000;;, + 205;3; 0.000000, 2.377758,-0.000000;;, + 206;3; 0.000000, 2.377758,-0.000000;;, + 207;3; 0.000000, 2.377758,-0.000000;;, + 208;3; 0.000000, 2.377758,-0.000000;;, + 209;3; 0.000000, 2.377758,-0.000000;;, + 210;3; 0.000000, 2.377758,-0.000000;;, + 211;3; 0.000000, 2.377758,-0.000000;;, + 212;3; 0.000000, 2.377758,-0.000000;;, + 213;3; 0.000000, 2.377758,-0.000000;;, + 214;3; 0.000000, 2.377758,-0.000000;;, + 215;3; 0.000000, 2.377758,-0.000000;;, + 216;3; 0.000000, 2.377758,-0.000000;;, + 217;3; 0.000000, 2.377758,-0.000000;;, + 218;3; 0.000000, 2.377758,-0.000000;;, + 219;3; 0.000000, 2.377758,-0.000000;;, + 220;3; 0.000000, 2.377758,-0.000000;;, + 221;3; 0.000000, 2.377758,-0.000000;;, + 222;3; 0.000000, 2.377758,-0.000000;;, + 223;3; 0.000000, 2.377758,-0.000000;;, + 224;3; 0.000000, 2.377758,-0.000000;;, + 225;3; 0.000000, 2.377758,-0.000000;;, + 226;3; 0.000000, 2.377758,-0.000000;;, + 227;3; 0.000000, 2.377758,-0.000000;;, + 228;3; 0.000000, 2.377758,-0.000000;;, + 229;3; 0.000000, 2.377758,-0.000000;;, + 230;3; 0.000000, 2.377758,-0.000000;;, + 231;3; 0.000000, 2.377758,-0.000000;;, + 232;3; 0.000000, 2.377758,-0.000000;;, + 233;3; 0.000000, 2.377758,-0.000000;;, + 234;3; 0.000000, 2.377758,-0.000000;;, + 235;3; 0.000000, 2.377758,-0.000000;;, + 236;3; 0.000000, 2.377758,-0.000000;;, + 237;3; 0.000000, 2.377758,-0.000000;;, + 238;3; 0.000000, 2.377758,-0.000000;;, + 239;3; 0.000000, 2.377758,-0.000000;;, + 240;3; 0.000000, 2.377758,-0.000000;;, + 241;3; 0.000000, 2.377758,-0.000000;;, + 242;3; 0.000000, 2.377758,-0.000000;;, + 243;3; 0.000000, 2.377758,-0.000000;;, + 244;3; 0.000000, 2.377758,-0.000000;;, + 245;3; 0.000000, 2.377758,-0.000000;;, + 246;3; 0.000000, 2.377758,-0.000000;;, + 247;3; 0.000000, 2.377758,-0.000000;;, + 248;3; 0.000000, 2.377758,-0.000000;;, + 249;3; 0.000000, 2.377758,-0.000000;;; + } + } + Animation { + {Armature_Bone_006} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 1;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 2;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 3;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 4;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 5;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 6;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 7;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 8;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 9;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 10;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 11;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 12;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 13;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 14;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 15;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 16;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 17;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 18;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 19;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 20;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 21;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 22;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 23;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 24;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 25;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 26;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 27;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 28;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 29;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 30;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 31;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 32;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 33;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 34;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 35;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 36;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 37;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 38;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 39;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 40;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 41;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 42;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 43;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 44;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 45;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 46;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 47;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 48;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 49;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 50;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 51;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 52;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 53;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 54;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 55;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 56;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 57;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 58;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 59;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 60;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 61;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 62;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 63;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 64;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 65;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 66;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 67;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 68;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 69;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 70;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 71;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 72;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 73;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 74;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 75;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 76;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 77;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 78;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 79;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 80;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 81;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 82;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 83;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 84;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 85;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 86;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 87;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 88;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 89;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 90;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 91;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 92;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 93;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 94;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 95;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 96;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 97;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 98;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 99;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 100;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 101;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 102;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 103;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 104;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 105;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 106;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 107;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 108;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 109;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 110;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 111;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 112;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 113;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 114;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 115;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 116;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 117;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 118;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 119;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 120;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 121;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 122;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 123;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 124;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 125;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 126;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 127;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 128;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 129;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 130;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 131;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 132;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 133;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 134;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 135;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 136;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 137;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 138;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 139;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 140;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 141;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 142;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 143;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 144;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 145;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 146;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 147;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 148;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 149;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 150;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 151;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 152;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 153;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 154;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 155;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 156;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 157;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 158;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 159;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 160;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 161;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 162;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 163;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 164;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 165;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 166;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 167;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 168;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 169;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 170;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 171;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 172;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 173;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 174;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 175;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 176;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 177;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 178;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 179;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 180;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 181;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 182;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 183;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 184;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 185;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 186;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 187;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 188;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 189;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 190;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 191;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 192;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 193;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 194;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 195;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 196;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 197;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 198;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 199;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 200;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 201;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 202;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 203;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 204;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 205;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 206;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 207;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 208;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 209;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 210;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 211;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 212;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 213;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 214;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 215;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 216;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 217;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 218;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 219;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 220;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 221;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 222;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 223;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 224;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 225;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 226;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 227;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 228;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 229;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 230;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 231;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 232;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 233;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 234;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 235;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 236;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 237;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 238;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 239;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 240;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 241;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 242;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 243;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 244;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 245;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 246;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 247;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 248;4;-0.824573, 0.000000, 0.000000, 0.565755;;, + 249;4;-0.824573, 0.000000, 0.000000, 0.565755;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3; 0.000000, 0.705560, 0.000000;;, + 1;3; 0.000000, 0.705560, 0.000000;;, + 2;3; 0.000000, 0.705560, 0.000000;;, + 3;3; 0.000000, 0.705560, 0.000000;;, + 4;3; 0.000000, 0.705560, 0.000000;;, + 5;3; 0.000000, 0.705560, 0.000000;;, + 6;3; 0.000000, 0.705560, 0.000000;;, + 7;3; 0.000000, 0.705560, 0.000000;;, + 8;3; 0.000000, 0.705560, 0.000000;;, + 9;3; 0.000000, 0.705560, 0.000000;;, + 10;3; 0.000000, 0.705560, 0.000000;;, + 11;3; 0.000000, 0.705560, 0.000000;;, + 12;3; 0.000000, 0.705560, 0.000000;;, + 13;3; 0.000000, 0.705560, 0.000000;;, + 14;3; 0.000000, 0.705560, 0.000000;;, + 15;3; 0.000000, 0.705560, 0.000000;;, + 16;3; 0.000000, 0.705560, 0.000000;;, + 17;3; 0.000000, 0.705560, 0.000000;;, + 18;3; 0.000000, 0.705560, 0.000000;;, + 19;3; 0.000000, 0.705560, 0.000000;;, + 20;3; 0.000000, 0.705560, 0.000000;;, + 21;3; 0.000000, 0.705560, 0.000000;;, + 22;3; 0.000000, 0.705560, 0.000000;;, + 23;3; 0.000000, 0.705560, 0.000000;;, + 24;3; 0.000000, 0.705560, 0.000000;;, + 25;3; 0.000000, 0.705560, 0.000000;;, + 26;3; 0.000000, 0.705560, 0.000000;;, + 27;3; 0.000000, 0.705560, 0.000000;;, + 28;3; 0.000000, 0.705560, 0.000000;;, + 29;3; 0.000000, 0.705560, 0.000000;;, + 30;3; 0.000000, 0.705560, 0.000000;;, + 31;3; 0.000000, 0.705560, 0.000000;;, + 32;3; 0.000000, 0.705560, 0.000000;;, + 33;3; 0.000000, 0.705560, 0.000000;;, + 34;3; 0.000000, 0.705560, 0.000000;;, + 35;3; 0.000000, 0.705560, 0.000000;;, + 36;3; 0.000000, 0.705560, 0.000000;;, + 37;3; 0.000000, 0.705560, 0.000000;;, + 38;3; 0.000000, 0.705560, 0.000000;;, + 39;3; 0.000000, 0.705560, 0.000000;;, + 40;3; 0.000000, 0.705560, 0.000000;;, + 41;3; 0.000000, 0.705559, 0.000000;;, + 42;3;-0.000000, 0.705560, 0.000000;;, + 43;3; 0.000000, 0.705560,-0.000000;;, + 44;3; 0.000000, 0.705560, 0.000000;;, + 45;3; 0.000000, 0.705560,-0.000000;;, + 46;3; 0.000000, 0.705559, 0.000000;;, + 47;3;-0.000000, 0.705560, 0.000000;;, + 48;3; 0.000000, 0.705560,-0.000000;;, + 49;3; 0.000000, 0.705560, 0.000000;;, + 50;3;-0.000000, 0.705559, 0.000000;;, + 51;3; 0.000000, 0.705560,-0.000000;;, + 52;3;-0.000000, 0.705560, 0.000000;;, + 53;3; 0.000000, 0.705560,-0.000000;;, + 54;3; 0.000000, 0.705560, 0.000000;;, + 55;3; 0.000000, 0.705560,-0.000000;;, + 56;3;-0.000000, 0.705560, 0.000000;;, + 57;3; 0.000000, 0.705559, 0.000000;;, + 58;3;-0.000000, 0.705560, 0.000000;;, + 59;3; 0.000000, 0.705560, 0.000000;;, + 60;3; 0.000000, 0.705560,-0.000000;;, + 61;3; 0.000000, 0.705560, 0.000000;;, + 62;3; 0.000000, 0.705560, 0.000000;;, + 63;3; 0.000000, 0.705560, 0.000000;;, + 64;3; 0.000000, 0.705560,-0.000000;;, + 65;3;-0.000000, 0.705560, 0.000000;;, + 66;3; 0.000000, 0.705560, 0.000000;;, + 67;3;-0.000000, 0.705560, 0.000000;;, + 68;3; 0.000000, 0.705559, 0.000000;;, + 69;3; 0.000000, 0.705560, 0.000000;;, + 70;3; 0.000000, 0.705560, 0.000000;;, + 71;3;-0.000000, 0.705560, 0.000000;;, + 72;3;-0.000000, 0.705560, 0.000000;;, + 73;3;-0.000000, 0.705560, 0.000000;;, + 74;3;-0.000000, 0.705560, 0.000000;;, + 75;3;-0.000000, 0.705560, 0.000000;;, + 76;3; 0.000000, 0.705559, 0.000000;;, + 77;3;-0.000000, 0.705560, 0.000000;;, + 78;3; 0.000000, 0.705560, 0.000000;;, + 79;3;-0.000000, 0.705559, 0.000000;;, + 80;3; 0.000000, 0.705560, 0.000000;;, + 81;3;-0.000000, 0.705560, 0.000000;;, + 82;3; 0.000000, 0.705560, 0.000000;;, + 83;3; 0.000000, 0.705560, 0.000000;;, + 84;3; 0.000000, 0.705560,-0.000000;;, + 85;3;-0.000000, 0.705560, 0.000000;;, + 86;3;-0.000000, 0.705560, 0.000000;;, + 87;3; 0.000000, 0.705560,-0.000000;;, + 88;3; 0.000000, 0.705560, 0.000000;;, + 89;3; 0.000000, 0.705560, 0.000000;;, + 90;3; 0.000000, 0.705560, 0.000000;;, + 91;3; 0.000000, 0.705560, 0.000000;;, + 92;3; 0.000000, 0.705560, 0.000000;;, + 93;3; 0.000000, 0.705560, 0.000000;;, + 94;3; 0.000000, 0.705560, 0.000000;;, + 95;3; 0.000000, 0.705560, 0.000000;;, + 96;3; 0.000000, 0.705560,-0.000000;;, + 97;3; 0.000000, 0.705560,-0.000000;;, + 98;3; 0.000000, 0.705560, 0.000000;;, + 99;3; 0.000000, 0.705560, 0.000000;;, + 100;3;-0.000000, 0.705560,-0.000000;;, + 101;3; 0.000000, 0.705560,-0.000000;;, + 102;3; 0.000000, 0.705559, 0.000000;;, + 103;3;-0.000000, 0.705560,-0.000000;;, + 104;3;-0.000000, 0.705559,-0.000000;;, + 105;3;-0.000000, 0.705560,-0.000000;;, + 106;3; 0.000000, 0.705560, 0.000000;;, + 107;3;-0.000000, 0.705559,-0.000000;;, + 108;3; 0.000000, 0.705560,-0.000000;;, + 109;3; 0.000000, 0.705559,-0.000000;;, + 110;3;-0.000000, 0.705559, 0.000000;;, + 111;3; 0.000000, 0.705560,-0.000000;;, + 112;3; 0.000000, 0.705560, 0.000000;;, + 113;3; 0.000000, 0.705560,-0.000000;;, + 114;3;-0.000000, 0.705559, 0.000000;;, + 115;3; 0.000000, 0.705560, 0.000000;;, + 116;3;-0.000000, 0.705560,-0.000000;;, + 117;3; 0.000000, 0.705560, 0.000000;;, + 118;3; 0.000000, 0.705560,-0.000000;;, + 119;3; 0.000000, 0.705560, 0.000000;;, + 120;3; 0.000000, 0.705560,-0.000000;;, + 121;3; 0.000000, 0.705560,-0.000000;;, + 122;3;-0.000000, 0.705560,-0.000000;;, + 123;3; 0.000000, 0.705560, 0.000000;;, + 124;3; 0.000000, 0.705560, 0.000000;;, + 125;3; 0.000000, 0.705560, 0.000000;;, + 126;3;-0.000000, 0.705560, 0.000000;;, + 127;3;-0.000000, 0.705560, 0.000000;;, + 128;3;-0.000000, 0.705560,-0.000000;;, + 129;3; 0.000000, 0.705560, 0.000000;;, + 130;3; 0.000000, 0.705559, 0.000000;;, + 131;3; 0.000000, 0.705560, 0.000000;;, + 132;3; 0.000000, 0.705560, 0.000000;;, + 133;3; 0.000000, 0.705560,-0.000000;;, + 134;3; 0.000000, 0.705560, 0.000000;;, + 135;3; 0.000000, 0.705560, 0.000000;;, + 136;3;-0.000000, 0.705560,-0.000000;;, + 137;3; 0.000000, 0.705560, 0.000000;;, + 138;3;-0.000000, 0.705559, 0.000000;;, + 139;3;-0.000000, 0.705560,-0.000000;;, + 140;3; 0.000000, 0.705560, 0.000000;;, + 141;3; 0.000000, 0.705560, 0.000000;;, + 142;3; 0.000000, 0.705560, 0.000000;;, + 143;3; 0.000000, 0.705560,-0.000000;;, + 144;3; 0.000000, 0.705560, 0.000000;;, + 145;3; 0.000000, 0.705560,-0.000000;;, + 146;3; 0.000000, 0.705560, 0.000000;;, + 147;3; 0.000000, 0.705560,-0.000000;;, + 148;3; 0.000000, 0.705560, 0.000000;;, + 149;3; 0.000000, 0.705560, 0.000000;;, + 150;3; 0.000000, 0.705560, 0.000000;;, + 151;3; 0.000000, 0.705560, 0.000000;;, + 152;3; 0.000000, 0.705560, 0.000000;;, + 153;3; 0.000000, 0.705560, 0.000000;;, + 154;3; 0.000000, 0.705560, 0.000000;;, + 155;3; 0.000000, 0.705560, 0.000000;;, + 156;3; 0.000000, 0.705560, 0.000000;;, + 157;3; 0.000000, 0.705560, 0.000000;;, + 158;3; 0.000000, 0.705560, 0.000000;;, + 159;3; 0.000000, 0.705560, 0.000000;;, + 160;3; 0.000000, 0.705560, 0.000000;;, + 161;3; 0.000000, 0.705560, 0.000000;;, + 162;3; 0.000000, 0.705560, 0.000000;;, + 163;3; 0.000000, 0.705560, 0.000000;;, + 164;3; 0.000000, 0.705560, 0.000000;;, + 165;3; 0.000000, 0.705560, 0.000000;;, + 166;3; 0.000000, 0.705560, 0.000000;;, + 167;3; 0.000000, 0.705560, 0.000000;;, + 168;3; 0.000000, 0.705560, 0.000000;;, + 169;3; 0.000000, 0.705560, 0.000000;;, + 170;3; 0.000000, 0.705560, 0.000000;;, + 171;3; 0.000000, 0.705560, 0.000000;;, + 172;3; 0.000000, 0.705560, 0.000000;;, + 173;3; 0.000000, 0.705560, 0.000000;;, + 174;3; 0.000000, 0.705560, 0.000000;;, + 175;3; 0.000000, 0.705560, 0.000000;;, + 176;3; 0.000000, 0.705560, 0.000000;;, + 177;3; 0.000000, 0.705560, 0.000000;;, + 178;3; 0.000000, 0.705560, 0.000000;;, + 179;3; 0.000000, 0.705560, 0.000000;;, + 180;3; 0.000000, 0.705560, 0.000000;;, + 181;3; 0.000000, 0.705560, 0.000000;;, + 182;3; 0.000000, 0.705560, 0.000000;;, + 183;3; 0.000000, 0.705560, 0.000000;;, + 184;3; 0.000000, 0.705560, 0.000000;;, + 185;3; 0.000000, 0.705560, 0.000000;;, + 186;3; 0.000000, 0.705560, 0.000000;;, + 187;3; 0.000000, 0.705560, 0.000000;;, + 188;3; 0.000000, 0.705560, 0.000000;;, + 189;3; 0.000000, 0.705560, 0.000000;;, + 190;3; 0.000000, 0.705560, 0.000000;;, + 191;3; 0.000000, 0.705560, 0.000000;;, + 192;3; 0.000000, 0.705560, 0.000000;;, + 193;3; 0.000000, 0.705560, 0.000000;;, + 194;3; 0.000000, 0.705560, 0.000000;;, + 195;3; 0.000000, 0.705560, 0.000000;;, + 196;3; 0.000000, 0.705560, 0.000000;;, + 197;3; 0.000000, 0.705560, 0.000000;;, + 198;3; 0.000000, 0.705560, 0.000000;;, + 199;3; 0.000000, 0.705560, 0.000000;;, + 200;3; 0.000000, 0.705560, 0.000000;;, + 201;3; 0.000000, 0.705560, 0.000000;;, + 202;3; 0.000000, 0.705560, 0.000000;;, + 203;3; 0.000000, 0.705560, 0.000000;;, + 204;3; 0.000000, 0.705560, 0.000000;;, + 205;3; 0.000000, 0.705560, 0.000000;;, + 206;3; 0.000000, 0.705560, 0.000000;;, + 207;3; 0.000000, 0.705560, 0.000000;;, + 208;3; 0.000000, 0.705560, 0.000000;;, + 209;3; 0.000000, 0.705560, 0.000000;;, + 210;3; 0.000000, 0.705560, 0.000000;;, + 211;3; 0.000000, 0.705560, 0.000000;;, + 212;3; 0.000000, 0.705560, 0.000000;;, + 213;3; 0.000000, 0.705560, 0.000000;;, + 214;3; 0.000000, 0.705560, 0.000000;;, + 215;3; 0.000000, 0.705560, 0.000000;;, + 216;3; 0.000000, 0.705560, 0.000000;;, + 217;3; 0.000000, 0.705560, 0.000000;;, + 218;3; 0.000000, 0.705560, 0.000000;;, + 219;3; 0.000000, 0.705560, 0.000000;;, + 220;3; 0.000000, 0.705560, 0.000000;;, + 221;3; 0.000000, 0.705560, 0.000000;;, + 222;3; 0.000000, 0.705560, 0.000000;;, + 223;3; 0.000000, 0.705560, 0.000000;;, + 224;3; 0.000000, 0.705560, 0.000000;;, + 225;3; 0.000000, 0.705560, 0.000000;;, + 226;3; 0.000000, 0.705560, 0.000000;;, + 227;3; 0.000000, 0.705560, 0.000000;;, + 228;3; 0.000000, 0.705560, 0.000000;;, + 229;3; 0.000000, 0.705560, 0.000000;;, + 230;3; 0.000000, 0.705560, 0.000000;;, + 231;3; 0.000000, 0.705560, 0.000000;;, + 232;3; 0.000000, 0.705560, 0.000000;;, + 233;3; 0.000000, 0.705560, 0.000000;;, + 234;3; 0.000000, 0.705560, 0.000000;;, + 235;3; 0.000000, 0.705560, 0.000000;;, + 236;3; 0.000000, 0.705560, 0.000000;;, + 237;3; 0.000000, 0.705560, 0.000000;;, + 238;3; 0.000000, 0.705560, 0.000000;;, + 239;3; 0.000000, 0.705560, 0.000000;;, + 240;3; 0.000000, 0.705560, 0.000000;;, + 241;3; 0.000000, 0.705560, 0.000000;;, + 242;3; 0.000000, 0.705560, 0.000000;;, + 243;3; 0.000000, 0.705560, 0.000000;;, + 244;3; 0.000000, 0.705560, 0.000000;;, + 245;3; 0.000000, 0.705560, 0.000000;;, + 246;3; 0.000000, 0.705560, 0.000000;;, + 247;3; 0.000000, 0.705560, 0.000000;;, + 248;3; 0.000000, 0.705560, 0.000000;;, + 249;3; 0.000000, 0.705560, 0.000000;;; + } + } + Animation { + {Armature_Bone_017} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.747733,-0.638280,-0.118820, 0.139195;;, + 1;4;-0.747885,-0.638095,-0.118786, 0.139223;;, + 2;4;-0.748346,-0.637533,-0.118681, 0.139309;;, + 3;4;-0.749115,-0.636595,-0.118507, 0.139452;;, + 4;4;-0.750186,-0.635288,-0.118263, 0.139651;;, + 5;4;-0.751544,-0.633631,-0.117955, 0.139904;;, + 6;4;-0.753162,-0.631657,-0.117587, 0.140205;;, + 7;4;-0.755000,-0.629414,-0.117170, 0.140548;;, + 8;4;-0.757006,-0.626967,-0.116714, 0.140921;;, + 9;4;-0.759119,-0.624389,-0.116234, 0.141314;;, + 10;4;-0.761267,-0.621768,-0.115747, 0.141714;;, + 11;4;-0.763379,-0.619191,-0.115267, 0.142107;;, + 12;4;-0.765386,-0.616743,-0.114811, 0.142481;;, + 13;4;-0.767224,-0.614501,-0.114394, 0.142823;;, + 14;4;-0.768841,-0.612527,-0.114026, 0.143124;;, + 15;4;-0.770200,-0.610870,-0.113718, 0.143377;;, + 16;4;-0.771271,-0.609563,-0.113474, 0.143577;;, + 17;4;-0.772040,-0.608624,-0.113300, 0.143720;;, + 18;4;-0.772500,-0.608063,-0.113195, 0.143805;;, + 19;4;-0.772653,-0.607877,-0.113161, 0.143834;;, + 20;4;-0.772515,-0.608045,-0.113192, 0.143808;;, + 21;4;-0.772100,-0.608551,-0.113286, 0.143731;;, + 22;4;-0.771406,-0.609398,-0.113444, 0.143602;;, + 23;4;-0.770437,-0.610580,-0.113664, 0.143421;;, + 24;4;-0.769207,-0.612081,-0.113943, 0.143192;;, + 25;4;-0.767734,-0.613878,-0.114278, 0.142918;;, + 26;4;-0.766051,-0.615931,-0.114660, 0.142605;;, + 27;4;-0.764198,-0.618192,-0.115081, 0.142260;;, + 28;4;-0.762226,-0.620598,-0.115529, 0.141893;;, + 29;4;-0.760193,-0.623079,-0.115990, 0.141514;;, + 30;4;-0.758159,-0.625560,-0.116452, 0.141136;;, + 31;4;-0.756187,-0.627966,-0.116900, 0.140769;;, + 32;4;-0.754335,-0.630226,-0.117321, 0.140424;;, + 33;4;-0.752652,-0.632280,-0.117703, 0.140110;;, + 34;4;-0.751179,-0.634076,-0.118038, 0.139836;;, + 35;4;-0.749948,-0.635578,-0.118317, 0.139607;;, + 36;4;-0.748980,-0.636759,-0.118537, 0.139427;;, + 37;4;-0.748286,-0.637606,-0.118695, 0.139298;;, + 38;4;-0.747871,-0.638113,-0.118789, 0.139220;;, + 39;4;-0.747733,-0.638280,-0.118820, 0.139195;;, + 40;4;-0.747963,-0.636174,-0.121121, 0.138465;;, + 41;4;-0.748661,-0.629808,-0.128075, 0.136234;;, + 42;4;-0.749838,-0.619163,-0.139703, 0.132452;;, + 43;4;-0.751497,-0.604310,-0.155928, 0.127089;;, + 44;4;-0.753628,-0.585433,-0.176549, 0.120150;;, + 45;4;-0.756210,-0.562853,-0.201216, 0.111673;;, + 46;4;-0.759205,-0.537041,-0.229412, 0.101749;;, + 47;4;-0.762560,-0.508627,-0.260449, 0.090515;;, + 48;4;-0.766204,-0.478386,-0.293485, 0.078162;;, + 49;4;-0.770054,-0.447199,-0.327552, 0.064927;;, + 50;4;-0.774019,-0.416013,-0.361619, 0.051079;;, + 51;4;-0.778003,-0.385771,-0.394654, 0.036902;;, + 52;4;-0.781913,-0.357358,-0.425692, 0.022680;;, + 53;4;-0.785668,-0.331546,-0.453888, 0.008676;;, + 54;4;-0.789196,-0.308966,-0.478554,-0.004880;;, + 55;4;-0.792440,-0.290089,-0.499175,-0.017798;;, + 56;4;-0.795359,-0.275236,-0.515400,-0.029932;;, + 57;4;-0.797925,-0.264591,-0.527028,-0.041175;;, + 58;4;-0.800122,-0.258225,-0.533982,-0.051458;;, + 59;4;-0.801944,-0.256119,-0.536283,-0.060742;;, + 60;4;-0.800005,-0.263646,-0.534161,-0.070631;;, + 61;4;-0.790863,-0.286301,-0.527775,-0.082637;;, + 62;4;-0.774925,-0.323136,-0.517392,-0.096390;;, + 63;4;-0.753483,-0.371314,-0.503811,-0.111178;;, + 64;4;-0.728826,-0.425893,-0.488426,-0.125956;;, + 65;4;-0.703941,-0.480471,-0.473041,-0.139515;;, + 66;4;-0.681841,-0.528650,-0.459460,-0.150769;;, + 67;4;-0.664874,-0.565485,-0.449077,-0.158993;;, + 68;4;-0.654408,-0.588139,-0.442691,-0.163883;;, + 69;4;-0.650923,-0.595667,-0.440569,-0.165469;;, + 70;4;-0.651325,-0.594837,-0.440803,-0.165392;;, + 71;4;-0.652538,-0.592333,-0.441509,-0.165152;;, + 72;4;-0.654566,-0.588139,-0.442691,-0.164734;;, + 73;4;-0.657408,-0.582255,-0.444350,-0.164125;;, + 74;4;-0.661053,-0.574692,-0.446482,-0.163308;;, + 75;4;-0.665484,-0.565485,-0.449077,-0.162270;;, + 76;4;-0.670670,-0.554686,-0.452121,-0.160994;;, + 77;4;-0.676569,-0.542373,-0.455592,-0.159466;;, + 78;4;-0.683126,-0.528650,-0.459460,-0.157673;;, + 79;4;-0.690275,-0.513648,-0.463689,-0.155602;;, + 80;4;-0.697931,-0.497527,-0.468234,-0.153242;;, + 81;4;-0.706002,-0.480471,-0.473041,-0.150587;;, + 82;4;-0.714381,-0.462692,-0.478053,-0.147631;;, + 83;4;-0.722951,-0.444418,-0.483204,-0.144373;;, + 84;4;-0.731592,-0.425893,-0.488426,-0.140815;;, + 85;4;-0.740178,-0.407368,-0.493648,-0.136963;;, + 86;4;-0.748585,-0.389094,-0.498799,-0.132826;;, + 87;4;-0.756692,-0.371314,-0.503811,-0.128416;;, + 88;4;-0.764388,-0.354259,-0.508619,-0.123748;;, + 89;4;-0.771571,-0.338138,-0.513163,-0.118840;;, + 90;4;-0.778149,-0.323136,-0.517392,-0.113710;;, + 91;4;-0.784048,-0.309413,-0.521260,-0.108379;;, + 92;4;-0.789206,-0.297100,-0.524731,-0.102866;;, + 93;4;-0.793572,-0.286301,-0.527775,-0.097190;;, + 94;4;-0.797113,-0.277093,-0.530370,-0.091373;;, + 95;4;-0.799805,-0.269531,-0.532502,-0.085430;;, + 96;4;-0.801634,-0.263646,-0.534161,-0.079381;;, + 97;4;-0.802597,-0.259452,-0.535343,-0.073240;;, + 98;4;-0.802697,-0.256948,-0.536049,-0.067023;;, + 99;4;-0.801944,-0.256119,-0.536283,-0.060742;;, + 100;4;-0.800640,-0.257668,-0.533879,-0.053742;;, + 101;4;-0.799070,-0.262388,-0.526618,-0.045365;;, + 102;4;-0.797229,-0.270360,-0.514492,-0.035638;;, + 103;4;-0.795115,-0.281608,-0.497596,-0.024624;;, + 104;4;-0.792734,-0.296091,-0.476158,-0.012430;;, + 105;4;-0.790097,-0.313678,-0.450561, 0.000785;;, + 106;4;-0.787227,-0.334133,-0.421368, 0.014808;;, + 107;4;-0.784152,-0.357113,-0.389319, 0.029373;;, + 108;4;-0.780914,-0.382163,-0.355317, 0.044166;;, + 109;4;-0.777558,-0.408739,-0.320392, 0.058846;;, + 110;4;-0.774138,-0.436233,-0.285638, 0.073058;;, + 111;4;-0.770706,-0.464013,-0.252144, 0.086459;;, + 112;4;-0.767316,-0.491463,-0.220927, 0.098743;;, + 113;4;-0.764014,-0.518023,-0.192870, 0.109652;;, + 114;4;-0.760839,-0.543211,-0.168689, 0.118989;;, + 115;4;-0.757825,-0.566641,-0.148916, 0.126619;;, + 116;4;-0.754995,-0.588023,-0.133906, 0.132464;;, + 117;4;-0.752365,-0.607160,-0.123859, 0.136495;;, + 118;4;-0.749943,-0.623930,-0.118842, 0.138725;;, + 119;4;-0.747733,-0.638280,-0.118820, 0.139195;;, + 120;4;-0.741650,-0.652308,-0.124355, 0.136528;;, + 121;4;-0.728529,-0.667032,-0.135330, 0.129518;;, + 122;4;-0.712797,-0.679718,-0.148265, 0.120066;;, + 123;4;-0.701085,-0.687660,-0.157977, 0.111524;;, + 124;4;-0.697398,-0.690151,-0.161364, 0.106251;;, + 125;4;-0.717624,-0.660551,-0.154773, 0.106530;;, + 126;4;-0.773414,-0.577178,-0.136205, 0.113656;;, + 127;4;-0.844752,-0.470127,-0.112365, 0.124396;;, + 128;4;-0.900219,-0.386754,-0.093798, 0.133257;;, + 129;4;-0.919895,-0.357155,-0.087207, 0.136487;;, + 130;4;-0.919895,-0.357155,-0.087207, 0.136487;;, + 131;4;-0.919895,-0.357155,-0.087207, 0.136487;;, + 132;4;-0.919895,-0.357155,-0.087207, 0.136487;;, + 133;4;-0.919895,-0.357155,-0.087207, 0.136487;;, + 134;4;-0.919895,-0.357155,-0.087207, 0.136487;;, + 135;4;-0.917620,-0.355053,-0.075650, 0.091210;;, + 136;4;-0.909416,-0.349687,-0.040126,-0.036655;;, + 137;4;-0.894066,-0.344282, 0.013468,-0.201729;;, + 138;4;-0.872735,-0.342965, 0.070742,-0.332038;;, + 139;4;-0.848124,-0.347752, 0.119303,-0.381473;;, + 140;4;-0.821274,-0.364797, 0.167927,-0.383888;;, + 141;4;-0.792953,-0.400293, 0.224950,-0.378078;;, + 142;4;-0.766789,-0.448286, 0.277082,-0.358502;;, + 143;4;-0.746586,-0.496441, 0.309246,-0.323337;;, + 144;4;-0.733548,-0.535025, 0.315573,-0.275806;;, + 145;4;-0.727851,-0.567407, 0.272641,-0.201542;;, + 146;4;-0.730120,-0.597538, 0.163084,-0.090746;;, + 147;4;-0.737627,-0.620903, 0.025266, 0.026836;;, + 148;4;-0.744906,-0.634326,-0.081180, 0.110720;;, + 149;4;-0.747733,-0.638280,-0.118820, 0.139195;;, + 150;4;-0.747733,-0.638280,-0.118820, 0.139195;;, + 151;4;-0.747733,-0.638280,-0.118820, 0.139195;;, + 152;4;-0.747733,-0.638280,-0.118820, 0.139195;;, + 153;4;-0.747733,-0.638280,-0.118820, 0.139195;;, + 154;4;-0.747733,-0.638280,-0.118820, 0.139195;;, + 155;4;-0.747733,-0.638280,-0.118820, 0.139195;;, + 156;4;-0.747733,-0.638280,-0.118820, 0.139195;;, + 157;4;-0.747733,-0.638280,-0.118820, 0.139195;;, + 158;4;-0.747733,-0.638280,-0.118820, 0.139195;;, + 159;4;-0.747733,-0.638280,-0.118820, 0.139195;;, + 160;4;-0.747733,-0.638280,-0.118820, 0.139195;;, + 161;4;-0.747733,-0.638280,-0.118820, 0.139195;;, + 162;4;-0.747733,-0.638280,-0.118820, 0.139195;;, + 163;4;-0.747733,-0.638280,-0.118820, 0.139195;;, + 164;4;-0.747733,-0.638280,-0.118820, 0.139195;;, + 165;4;-0.747733,-0.638280,-0.118820, 0.139195;;, + 166;4;-0.747733,-0.638280,-0.118820, 0.139195;;, + 167;4;-0.747733,-0.638280,-0.118820, 0.139195;;, + 168;4;-0.747733,-0.638280,-0.118820, 0.139195;;, + 169;4;-0.747733,-0.638280,-0.118820, 0.139195;;, + 170;4;-0.747733,-0.638280,-0.118820, 0.139195;;, + 171;4;-0.747733,-0.638280,-0.118820, 0.139195;;, + 172;4;-0.747733,-0.638280,-0.118820, 0.139195;;, + 173;4;-0.747733,-0.638280,-0.118820, 0.139195;;, + 174;4;-0.747733,-0.638280,-0.118820, 0.139195;;, + 175;4;-0.747733,-0.638280,-0.118820, 0.139195;;, + 176;4;-0.747733,-0.638280,-0.118820, 0.139195;;, + 177;4;-0.747733,-0.638280,-0.118820, 0.139195;;, + 178;4;-0.747733,-0.638280,-0.118820, 0.139195;;, + 179;4;-0.747733,-0.638280,-0.118820, 0.139195;;, + 180;4;-0.747733,-0.638280,-0.118820, 0.139195;;, + 181;4;-0.747733,-0.638280,-0.118820, 0.139195;;, + 182;4;-0.747733,-0.638280,-0.118820, 0.139195;;, + 183;4;-0.747733,-0.638280,-0.118820, 0.139195;;, + 184;4;-0.747733,-0.638280,-0.118820, 0.139195;;, + 185;4;-0.747733,-0.638280,-0.118820, 0.139195;;, + 186;4;-0.747733,-0.638280,-0.118820, 0.139195;;, + 187;4;-0.747733,-0.638280,-0.118820, 0.139195;;, + 188;4;-0.747733,-0.638280,-0.118820, 0.139195;;, + 189;4;-0.747733,-0.638280,-0.118820, 0.139195;;, + 190;4;-0.747733,-0.638280,-0.118820, 0.139195;;, + 191;4;-0.747733,-0.638280,-0.118820, 0.139195;;, + 192;4;-0.747733,-0.638280,-0.118820, 0.139195;;, + 193;4;-0.747733,-0.638280,-0.118820, 0.139195;;, + 194;4;-0.747733,-0.638280,-0.118820, 0.139195;;, + 195;4;-0.747733,-0.638280,-0.118820, 0.139195;;, + 196;4;-0.747733,-0.638280,-0.118820, 0.139195;;, + 197;4;-0.747733,-0.638280,-0.118820, 0.139195;;, + 198;4;-0.747733,-0.638280,-0.118820, 0.139195;;, + 199;4;-0.747733,-0.638280,-0.118820, 0.139195;;, + 200;4;-0.747733,-0.638280,-0.118820, 0.139195;;, + 201;4;-0.747733,-0.638280,-0.118820, 0.139195;;, + 202;4;-0.747733,-0.638280,-0.118820, 0.139195;;, + 203;4;-0.747733,-0.638280,-0.118820, 0.139195;;, + 204;4;-0.747733,-0.638280,-0.118820, 0.139195;;, + 205;4;-0.747733,-0.638280,-0.118820, 0.139195;;, + 206;4;-0.747733,-0.638280,-0.118820, 0.139195;;, + 207;4;-0.747733,-0.638280,-0.118820, 0.139195;;, + 208;4;-0.747733,-0.638280,-0.118820, 0.139195;;, + 209;4;-0.747733,-0.638280,-0.118820, 0.139195;;, + 210;4;-0.747733,-0.638280,-0.118820, 0.139195;;, + 211;4;-0.747733,-0.638280,-0.118820, 0.139195;;, + 212;4;-0.747733,-0.638280,-0.118820, 0.139195;;, + 213;4;-0.747733,-0.638280,-0.118820, 0.139195;;, + 214;4;-0.747733,-0.638280,-0.118820, 0.139195;;, + 215;4;-0.747733,-0.638280,-0.118820, 0.139195;;, + 216;4;-0.747733,-0.638280,-0.118820, 0.139195;;, + 217;4;-0.747733,-0.638280,-0.118820, 0.139195;;, + 218;4;-0.747733,-0.638280,-0.118820, 0.139195;;, + 219;4;-0.747733,-0.638280,-0.118820, 0.139195;;, + 220;4;-0.747733,-0.638280,-0.118820, 0.139195;;, + 221;4;-0.747733,-0.638280,-0.118820, 0.139195;;, + 222;4;-0.747733,-0.638280,-0.118820, 0.139195;;, + 223;4;-0.747733,-0.638280,-0.118820, 0.139195;;, + 224;4;-0.747733,-0.638280,-0.118820, 0.139195;;, + 225;4;-0.747733,-0.638280,-0.118820, 0.139195;;, + 226;4;-0.747733,-0.638280,-0.118820, 0.139195;;, + 227;4;-0.747733,-0.638280,-0.118820, 0.139195;;, + 228;4;-0.747733,-0.638280,-0.118820, 0.139195;;, + 229;4;-0.747733,-0.638280,-0.118820, 0.139195;;, + 230;4;-0.747733,-0.638280,-0.118820, 0.139195;;, + 231;4;-0.747733,-0.638280,-0.118820, 0.139195;;, + 232;4;-0.747733,-0.638280,-0.118820, 0.139195;;, + 233;4;-0.747733,-0.638280,-0.118820, 0.139195;;, + 234;4;-0.747733,-0.638280,-0.118820, 0.139195;;, + 235;4;-0.747733,-0.638280,-0.118820, 0.139195;;, + 236;4;-0.747733,-0.638280,-0.118820, 0.139195;;, + 237;4;-0.747733,-0.638280,-0.118820, 0.139195;;, + 238;4;-0.747733,-0.638280,-0.118820, 0.139195;;, + 239;4;-0.747733,-0.638280,-0.118820, 0.139195;;, + 240;4;-0.747733,-0.638280,-0.118820, 0.139195;;, + 241;4;-0.747733,-0.638280,-0.118820, 0.139195;;, + 242;4;-0.747733,-0.638280,-0.118820, 0.139195;;, + 243;4;-0.747733,-0.638280,-0.118820, 0.139195;;, + 244;4;-0.747733,-0.638280,-0.118820, 0.139195;;, + 245;4;-0.747733,-0.638280,-0.118820, 0.139195;;, + 246;4;-0.747733,-0.638280,-0.118820, 0.139195;;, + 247;4;-0.747733,-0.638280,-0.118820, 0.139195;;, + 248;4;-0.747733,-0.638280,-0.118820, 0.139195;;, + 249;4;-0.747733,-0.638280,-0.118820, 0.139195;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3; 0.000000, 1.094029, 0.000000;;, + 1;3; 0.000000, 1.094029, 0.000000;;, + 2;3; 0.000000, 1.094029, 0.000000;;, + 3;3; 0.000000, 1.094029, 0.000000;;, + 4;3; 0.000000, 1.094029, 0.000000;;, + 5;3; 0.000000, 1.094029, 0.000000;;, + 6;3; 0.000000, 1.094029, 0.000000;;, + 7;3; 0.000000, 1.094029, 0.000000;;, + 8;3; 0.000000, 1.094029, 0.000000;;, + 9;3; 0.000000, 1.094029, 0.000000;;, + 10;3; 0.000000, 1.094029, 0.000000;;, + 11;3; 0.000000, 1.094029, 0.000000;;, + 12;3; 0.000000, 1.094029, 0.000000;;, + 13;3; 0.000000, 1.094029, 0.000000;;, + 14;3; 0.000000, 1.094029, 0.000000;;, + 15;3; 0.000000, 1.094029, 0.000000;;, + 16;3; 0.000000, 1.094029, 0.000000;;, + 17;3; 0.000000, 1.094029, 0.000000;;, + 18;3; 0.000000, 1.094029, 0.000000;;, + 19;3; 0.000000, 1.094029, 0.000000;;, + 20;3; 0.000000, 1.094029, 0.000000;;, + 21;3; 0.000000, 1.094029, 0.000000;;, + 22;3; 0.000000, 1.094029, 0.000000;;, + 23;3; 0.000000, 1.094029, 0.000000;;, + 24;3; 0.000000, 1.094029, 0.000000;;, + 25;3; 0.000000, 1.094029, 0.000000;;, + 26;3; 0.000000, 1.094029, 0.000000;;, + 27;3; 0.000000, 1.094029, 0.000000;;, + 28;3; 0.000000, 1.094029, 0.000000;;, + 29;3; 0.000000, 1.094029, 0.000000;;, + 30;3; 0.000000, 1.094029, 0.000000;;, + 31;3; 0.000000, 1.094029, 0.000000;;, + 32;3; 0.000000, 1.094029, 0.000000;;, + 33;3; 0.000000, 1.094029, 0.000000;;, + 34;3; 0.000000, 1.094029, 0.000000;;, + 35;3; 0.000000, 1.094029, 0.000000;;, + 36;3; 0.000000, 1.094029, 0.000000;;, + 37;3; 0.000000, 1.094029, 0.000000;;, + 38;3; 0.000000, 1.094029, 0.000000;;, + 39;3; 0.000000, 1.094029, 0.000000;;, + 40;3; 0.000000, 1.094029, 0.000000;;, + 41;3;-0.000000, 1.094029, 0.000000;;, + 42;3;-0.000000, 1.094029,-0.000000;;, + 43;3;-0.000000, 1.094029,-0.000000;;, + 44;3;-0.000000, 1.094029,-0.000000;;, + 45;3; 0.000000, 1.094029,-0.000000;;, + 46;3;-0.000000, 1.094029, 0.000000;;, + 47;3; 0.000000, 1.094029,-0.000000;;, + 48;3; 0.000000, 1.094029, 0.000000;;, + 49;3; 0.000000, 1.094029,-0.000000;;, + 50;3;-0.000000, 1.094029, 0.000000;;, + 51;3;-0.000000, 1.094029, 0.000000;;, + 52;3;-0.000000, 1.094029,-0.000000;;, + 53;3; 0.000000, 1.094029, 0.000000;;, + 54;3;-0.000000, 1.094029,-0.000000;;, + 55;3; 0.000000, 1.094029,-0.000000;;, + 56;3; 0.000000, 1.094029, 0.000000;;, + 57;3; 0.000000, 1.094029,-0.000000;;, + 58;3; 0.000000, 1.094029,-0.000000;;, + 59;3;-0.000000, 1.094029, 0.000000;;, + 60;3;-0.000000, 1.094029, 0.000000;;, + 61;3; 0.000000, 1.094029,-0.000000;;, + 62;3;-0.000000, 1.094029,-0.000000;;, + 63;3;-0.000000, 1.094029, 0.000000;;, + 64;3;-0.000000, 1.094029, 0.000000;;, + 65;3;-0.000000, 1.094029,-0.000000;;, + 66;3;-0.000000, 1.094029, 0.000000;;, + 67;3;-0.000000, 1.094029, 0.000000;;, + 68;3;-0.000000, 1.094029, 0.000000;;, + 69;3; 0.000000, 1.094029,-0.000000;;, + 70;3;-0.000000, 1.094029, 0.000000;;, + 71;3;-0.000000, 1.094029,-0.000000;;, + 72;3;-0.000000, 1.094029,-0.000000;;, + 73;3;-0.000000, 1.094029,-0.000000;;, + 74;3;-0.000000, 1.094029,-0.000000;;, + 75;3;-0.000000, 1.094029, 0.000000;;, + 76;3;-0.000000, 1.094029, 0.000000;;, + 77;3; 0.000000, 1.094029, 0.000000;;, + 78;3;-0.000000, 1.094029, 0.000000;;, + 79;3;-0.000000, 1.094029, 0.000000;;, + 80;3;-0.000000, 1.094029, 0.000000;;, + 81;3;-0.000000, 1.094029,-0.000000;;, + 82;3;-0.000000, 1.094029, 0.000000;;, + 83;3;-0.000000, 1.094029, 0.000000;;, + 84;3;-0.000000, 1.094029, 0.000000;;, + 85;3;-0.000000, 1.094029,-0.000000;;, + 86;3; 0.000000, 1.094029,-0.000000;;, + 87;3;-0.000000, 1.094029, 0.000000;;, + 88;3;-0.000000, 1.094029,-0.000000;;, + 89;3;-0.000000, 1.094029,-0.000000;;, + 90;3;-0.000000, 1.094029,-0.000000;;, + 91;3;-0.000000, 1.094029,-0.000000;;, + 92;3;-0.000000, 1.094029,-0.000000;;, + 93;3;-0.000000, 1.094029,-0.000000;;, + 94;3;-0.000000, 1.094029,-0.000000;;, + 95;3;-0.000000, 1.094029,-0.000000;;, + 96;3;-0.000000, 1.094029, 0.000000;;, + 97;3;-0.000000, 1.094029,-0.000000;;, + 98;3;-0.000000, 1.094029,-0.000000;;, + 99;3;-0.000000, 1.094029, 0.000000;;, + 100;3; 0.000000, 1.094029, 0.000000;;, + 101;3;-0.000000, 1.094029, 0.000000;;, + 102;3;-0.000000, 1.094029, 0.000000;;, + 103;3;-0.000000, 1.094029,-0.000000;;, + 104;3; 0.000000, 1.094029, 0.000000;;, + 105;3;-0.000000, 1.094029,-0.000000;;, + 106;3; 0.000000, 1.094029,-0.000000;;, + 107;3;-0.000000, 1.094029, 0.000000;;, + 108;3;-0.000000, 1.094029,-0.000000;;, + 109;3;-0.000000, 1.094029,-0.000000;;, + 110;3;-0.000000, 1.094029,-0.000000;;, + 111;3; 0.000000, 1.094029,-0.000000;;, + 112;3; 0.000000, 1.094029, 0.000000;;, + 113;3; 0.000000, 1.094029, 0.000000;;, + 114;3;-0.000000, 1.094029, 0.000000;;, + 115;3;-0.000000, 1.094029, 0.000000;;, + 116;3;-0.000000, 1.094029, 0.000000;;, + 117;3; 0.000000, 1.094029,-0.000000;;, + 118;3;-0.000000, 1.094029,-0.000000;;, + 119;3; 0.000000, 1.094029, 0.000000;;, + 120;3;-0.000000, 1.094029,-0.000000;;, + 121;3; 0.000000, 1.094029,-0.000000;;, + 122;3;-0.000000, 1.094029, 0.000000;;, + 123;3;-0.000000, 1.094029, 0.000000;;, + 124;3; 0.000000, 1.094029, 0.000000;;, + 125;3; 0.000000, 1.094029,-0.000000;;, + 126;3;-0.000000, 1.094029,-0.000000;;, + 127;3; 0.000000, 1.094029,-0.000000;;, + 128;3;-0.000000, 1.094029, 0.000000;;, + 129;3; 0.000000, 1.094029, 0.000000;;, + 130;3;-0.000000, 1.094029, 0.000000;;, + 131;3; 0.000000, 1.094029, 0.000000;;, + 132;3;-0.000000, 1.094029, 0.000000;;, + 133;3;-0.000000, 1.094029, 0.000000;;, + 134;3; 0.000000, 1.094029, 0.000000;;, + 135;3;-0.000000, 1.094029, 0.000000;;, + 136;3;-0.000000, 1.094029, 0.000000;;, + 137;3; 0.000000, 1.094029, 0.000000;;, + 138;3; 0.000000, 1.094029, 0.000000;;, + 139;3; 0.000000, 1.094029, 0.000000;;, + 140;3;-0.000000, 1.094029,-0.000000;;, + 141;3;-0.000000, 1.094029, 0.000000;;, + 142;3; 0.000000, 1.094029,-0.000000;;, + 143;3;-0.000000, 1.094029,-0.000000;;, + 144;3;-0.000000, 1.094029, 0.000000;;, + 145;3;-0.000000, 1.094029, 0.000000;;, + 146;3; 0.000000, 1.094029, 0.000000;;, + 147;3;-0.000000, 1.094029,-0.000000;;, + 148;3; 0.000000, 1.094029, 0.000000;;, + 149;3; 0.000000, 1.094029, 0.000000;;, + 150;3; 0.000000, 1.094029, 0.000000;;, + 151;3; 0.000000, 1.094029, 0.000000;;, + 152;3; 0.000000, 1.094029, 0.000000;;, + 153;3; 0.000000, 1.094029, 0.000000;;, + 154;3; 0.000000, 1.094029, 0.000000;;, + 155;3; 0.000000, 1.094029, 0.000000;;, + 156;3; 0.000000, 1.094029, 0.000000;;, + 157;3; 0.000000, 1.094029, 0.000000;;, + 158;3; 0.000000, 1.094029, 0.000000;;, + 159;3; 0.000000, 1.094029, 0.000000;;, + 160;3; 0.000000, 1.094029, 0.000000;;, + 161;3; 0.000000, 1.094029, 0.000000;;, + 162;3; 0.000000, 1.094029, 0.000000;;, + 163;3; 0.000000, 1.094029, 0.000000;;, + 164;3; 0.000000, 1.094029, 0.000000;;, + 165;3; 0.000000, 1.094029, 0.000000;;, + 166;3; 0.000000, 1.094029, 0.000000;;, + 167;3; 0.000000, 1.094029, 0.000000;;, + 168;3; 0.000000, 1.094029, 0.000000;;, + 169;3; 0.000000, 1.094029, 0.000000;;, + 170;3; 0.000000, 1.094029, 0.000000;;, + 171;3; 0.000000, 1.094029, 0.000000;;, + 172;3; 0.000000, 1.094029, 0.000000;;, + 173;3; 0.000000, 1.094029, 0.000000;;, + 174;3; 0.000000, 1.094029, 0.000000;;, + 175;3; 0.000000, 1.094029, 0.000000;;, + 176;3; 0.000000, 1.094029, 0.000000;;, + 177;3; 0.000000, 1.094029, 0.000000;;, + 178;3; 0.000000, 1.094029, 0.000000;;, + 179;3; 0.000000, 1.094029, 0.000000;;, + 180;3; 0.000000, 1.094029, 0.000000;;, + 181;3; 0.000000, 1.094029, 0.000000;;, + 182;3; 0.000000, 1.094029, 0.000000;;, + 183;3; 0.000000, 1.094029, 0.000000;;, + 184;3; 0.000000, 1.094029, 0.000000;;, + 185;3; 0.000000, 1.094029, 0.000000;;, + 186;3; 0.000000, 1.094029, 0.000000;;, + 187;3; 0.000000, 1.094029, 0.000000;;, + 188;3; 0.000000, 1.094029, 0.000000;;, + 189;3; 0.000000, 1.094029, 0.000000;;, + 190;3; 0.000000, 1.094029, 0.000000;;, + 191;3; 0.000000, 1.094029, 0.000000;;, + 192;3; 0.000000, 1.094029, 0.000000;;, + 193;3; 0.000000, 1.094029, 0.000000;;, + 194;3; 0.000000, 1.094029, 0.000000;;, + 195;3; 0.000000, 1.094029, 0.000000;;, + 196;3; 0.000000, 1.094029, 0.000000;;, + 197;3; 0.000000, 1.094029, 0.000000;;, + 198;3; 0.000000, 1.094029, 0.000000;;, + 199;3; 0.000000, 1.094029, 0.000000;;, + 200;3; 0.000000, 1.094029, 0.000000;;, + 201;3; 0.000000, 1.094029, 0.000000;;, + 202;3; 0.000000, 1.094029, 0.000000;;, + 203;3; 0.000000, 1.094029, 0.000000;;, + 204;3; 0.000000, 1.094029, 0.000000;;, + 205;3; 0.000000, 1.094029, 0.000000;;, + 206;3; 0.000000, 1.094029, 0.000000;;, + 207;3; 0.000000, 1.094029, 0.000000;;, + 208;3; 0.000000, 1.094029, 0.000000;;, + 209;3; 0.000000, 1.094029, 0.000000;;, + 210;3; 0.000000, 1.094029, 0.000000;;, + 211;3; 0.000000, 1.094029, 0.000000;;, + 212;3; 0.000000, 1.094029, 0.000000;;, + 213;3; 0.000000, 1.094029, 0.000000;;, + 214;3; 0.000000, 1.094029, 0.000000;;, + 215;3; 0.000000, 1.094029, 0.000000;;, + 216;3; 0.000000, 1.094029, 0.000000;;, + 217;3; 0.000000, 1.094029, 0.000000;;, + 218;3; 0.000000, 1.094029, 0.000000;;, + 219;3; 0.000000, 1.094029, 0.000000;;, + 220;3; 0.000000, 1.094029, 0.000000;;, + 221;3; 0.000000, 1.094029, 0.000000;;, + 222;3; 0.000000, 1.094029, 0.000000;;, + 223;3; 0.000000, 1.094029, 0.000000;;, + 224;3; 0.000000, 1.094029, 0.000000;;, + 225;3; 0.000000, 1.094029, 0.000000;;, + 226;3; 0.000000, 1.094029, 0.000000;;, + 227;3; 0.000000, 1.094029, 0.000000;;, + 228;3; 0.000000, 1.094029, 0.000000;;, + 229;3; 0.000000, 1.094029, 0.000000;;, + 230;3; 0.000000, 1.094029, 0.000000;;, + 231;3; 0.000000, 1.094029, 0.000000;;, + 232;3; 0.000000, 1.094029, 0.000000;;, + 233;3; 0.000000, 1.094029, 0.000000;;, + 234;3; 0.000000, 1.094029, 0.000000;;, + 235;3; 0.000000, 1.094029, 0.000000;;, + 236;3; 0.000000, 1.094029, 0.000000;;, + 237;3; 0.000000, 1.094029, 0.000000;;, + 238;3; 0.000000, 1.094029, 0.000000;;, + 239;3; 0.000000, 1.094029, 0.000000;;, + 240;3; 0.000000, 1.094029, 0.000000;;, + 241;3; 0.000000, 1.094029, 0.000000;;, + 242;3; 0.000000, 1.094029, 0.000000;;, + 243;3; 0.000000, 1.094029, 0.000000;;, + 244;3; 0.000000, 1.094029, 0.000000;;, + 245;3; 0.000000, 1.094029, 0.000000;;, + 246;3; 0.000000, 1.094029, 0.000000;;, + 247;3; 0.000000, 1.094029, 0.000000;;, + 248;3; 0.000000, 1.094029, 0.000000;;, + 249;3; 0.000000, 1.094029, 0.000000;;; + } + } + Animation { + {Armature_Bone_019} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 1;4;-0.000112, 0.000019, 0.997570,-0.069603;;, + 2;4;-0.000444, 0.000078, 0.997507,-0.070277;;, + 3;4;-0.001000, 0.000177, 0.997403,-0.071404;;, + 4;4;-0.001775, 0.000315, 0.997258,-0.072974;;, + 5;4;-0.002757, 0.000489, 0.997073,-0.074964;;, + 6;4;-0.003926, 0.000696, 0.996854,-0.077334;;, + 7;4;-0.005255, 0.000932, 0.996604,-0.080027;;, + 8;4;-0.006705, 0.001189, 0.996332,-0.082967;;, + 9;4;-0.008232, 0.001460, 0.996046,-0.086062;;, + 10;4;-0.009786, 0.001736, 0.995754,-0.089210;;, + 11;4;-0.011313, 0.002007, 0.995467,-0.092305;;, + 12;4;-0.012763, 0.002264, 0.995195,-0.095245;;, + 13;4;-0.014092, 0.002500, 0.994946,-0.097938;;, + 14;4;-0.015261, 0.002708, 0.994726,-0.100308;;, + 15;4;-0.016243, 0.002882, 0.994542,-0.102298;;, + 16;4;-0.017018, 0.003019, 0.994397,-0.103868;;, + 17;4;-0.017574, 0.003118, 0.994292,-0.104995;;, + 18;4;-0.017906, 0.003177, 0.994230,-0.105669;;, + 19;4;-0.018016, 0.003197, 0.994209,-0.105892;;, + 20;4;-0.017917, 0.003179, 0.994228,-0.105691;;, + 21;4;-0.017617, 0.003126, 0.994284,-0.105083;;, + 22;4;-0.017115, 0.003037, 0.994379,-0.104066;;, + 23;4;-0.016415, 0.002912, 0.994510,-0.102647;;, + 24;4;-0.015525, 0.002754, 0.994677,-0.100843;;, + 25;4;-0.014461, 0.002566, 0.994877,-0.098686;;, + 26;4;-0.013244, 0.002350, 0.995105,-0.096220;;, + 27;4;-0.011905, 0.002112, 0.995356,-0.093505;;, + 28;4;-0.010479, 0.001859, 0.995624,-0.090616;;, + 29;4;-0.009009, 0.001598, 0.995900,-0.087636;;, + 30;4;-0.007539, 0.001337, 0.996176,-0.084656;;, + 31;4;-0.006113, 0.001084, 0.996443,-0.081767;;, + 32;4;-0.004774, 0.000847, 0.996695,-0.079053;;, + 33;4;-0.003557, 0.000631, 0.996923,-0.076586;;, + 34;4;-0.002493, 0.000442, 0.997123,-0.074429;;, + 35;4;-0.001603, 0.000284, 0.997290,-0.072626;;, + 36;4;-0.000903, 0.000160, 0.997421,-0.071206;;, + 37;4;-0.000401, 0.000071, 0.997515,-0.070189;;, + 38;4;-0.000101, 0.000018, 0.997572,-0.069581;;, + 39;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 40;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 41;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 42;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 43;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 44;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 45;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 46;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 47;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 48;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 49;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 50;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 51;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 52;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 53;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 54;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 55;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 56;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 57;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 58;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 59;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 60;4;-0.000213, 0.000091, 0.997631,-0.068560;;, + 61;4;-0.000847, 0.000366, 0.997753,-0.066091;;, + 62;4;-0.001879, 0.000813, 0.997952,-0.062077;;, + 63;4;-0.003229, 0.001398, 0.998212,-0.056827;;, + 64;4;-0.004758, 0.002060, 0.998506,-0.050880;;, + 65;4;-0.006287, 0.002722, 0.998800,-0.044933;;, + 66;4;-0.007637, 0.003307, 0.999060,-0.039683;;, + 67;4;-0.008669, 0.003754, 0.999259,-0.035669;;, + 68;4;-0.009303, 0.004029, 0.999381,-0.033201;;, + 69;4;-0.009514, 0.004120, 0.999422,-0.032380;;, + 70;4;-0.009491, 0.004110, 0.999417,-0.032471;;, + 71;4;-0.009421, 0.004080, 0.999404,-0.032744;;, + 72;4;-0.009303, 0.004029, 0.999381,-0.033201;;, + 73;4;-0.009139, 0.003958, 0.999349,-0.033842;;, + 74;4;-0.008927, 0.003866, 0.999309,-0.034666;;, + 75;4;-0.008669, 0.003754, 0.999259,-0.035669;;, + 76;4;-0.008366, 0.003623, 0.999201,-0.036846;;, + 77;4;-0.008021, 0.003474, 0.999134,-0.038188;;, + 78;4;-0.007637, 0.003307, 0.999060,-0.039683;;, + 79;4;-0.007217, 0.003125, 0.998980,-0.041318;;, + 80;4;-0.006765, 0.002929, 0.998892,-0.043075;;, + 81;4;-0.006287, 0.002722, 0.998800,-0.044933;;, + 82;4;-0.005789, 0.002507, 0.998705,-0.046870;;, + 83;4;-0.005277, 0.002285, 0.998606,-0.048862;;, + 84;4;-0.004758, 0.002060, 0.998506,-0.050880;;, + 85;4;-0.004239, 0.001835, 0.998406,-0.052899;;, + 86;4;-0.003727, 0.001614, 0.998308,-0.054890;;, + 87;4;-0.003229, 0.001398, 0.998212,-0.056827;;, + 88;4;-0.002751, 0.001191, 0.998120,-0.058686;;, + 89;4;-0.002300, 0.000995, 0.998033,-0.060443;;, + 90;4;-0.001879, 0.000813, 0.997952,-0.062077;;, + 91;4;-0.001495, 0.000647, 0.997878,-0.063573;;, + 92;4;-0.001150, 0.000497, 0.997811,-0.064914;;, + 93;4;-0.000847, 0.000366, 0.997753,-0.066091;;, + 94;4;-0.000589, 0.000254, 0.997703,-0.067094;;, + 95;4;-0.000377, 0.000163, 0.997663,-0.067919;;, + 96;4;-0.000213, 0.000091, 0.997631,-0.068560;;, + 97;4;-0.000095, 0.000040, 0.997608,-0.069017;;, + 98;4;-0.000025, 0.000010, 0.997595,-0.069290;;, + 99;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 100;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 101;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 102;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 103;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 104;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 105;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 106;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 107;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 108;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 109;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 110;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 111;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 112;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 113;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 114;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 115;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 116;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 117;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 118;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 119;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 120;4; 0.000062, 0.000006, 0.997594,-0.068576;;, + 121;4; 0.000613, 0.000057, 0.997623,-0.061624;;, + 122;4; 0.002317, 0.000214, 0.997712,-0.040119;;, + 123;4; 0.005585, 0.000515, 0.997884, 0.001115;;, + 124;4; 0.010271, 0.000947, 0.998130, 0.060247;;, + 125;4; 0.016994, 0.001567, 0.987817, 0.145828;;, + 126;4; 0.026464, 0.002441, 0.953622, 0.267742;;, + 127;4; 0.037379, 0.003447, 0.897171, 0.409435;;, + 128;4; 0.047529, 0.004384, 0.829003, 0.542292;;, + 129;4; 0.055409, 0.005110, 0.760888, 0.646493;;, + 130;4; 0.060254, 0.005557, 0.676745, 0.735061;;, + 131;4; 0.062232, 0.005740, 0.563412, 0.819198;;, + 132;4; 0.063661, 0.005871, 0.448917, 0.885756;;, + 133;4; 0.067704, 0.006244, 0.369415, 0.924667;;, + 134;4; 0.076065, 0.007015, 0.342831, 0.936287;;, + 135;4; 0.101564, 0.017369, 0.385350, 0.899686;;, + 136;4; 0.154897, 0.045860, 0.506947, 0.789957;;, + 137;4; 0.222345, 0.085120, 0.667995, 0.631245;;, + 138;4; 0.281054, 0.121668, 0.802994, 0.472952;;, + 139;4; 0.315699, 0.145729, 0.868318, 0.353725;;, + 140;4; 0.334393, 0.160494, 0.889159, 0.259183;;, + 141;4; 0.347429, 0.170791, 0.899784, 0.168216;;, + 142;4; 0.354227, 0.176161, 0.903606, 0.090036;;, + 143;4; 0.356425, 0.177897, 0.907564, 0.031514;;, + 144;4; 0.356679, 0.178098, 0.917061,-0.007828;;, + 145;4; 0.324974, 0.162267, 0.933574,-0.035686;;, + 146;4; 0.235671, 0.117676, 0.955461,-0.055225;;, + 147;4; 0.121007, 0.060422, 0.977387,-0.065530;;, + 148;4; 0.031703, 0.015831, 0.992538,-0.068949;;, + 149;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 150;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 151;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 152;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 153;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 154;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 155;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 156;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 157;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 158;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 159;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 160;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 161;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 162;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 163;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 164;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 165;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 166;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 167;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 168;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 169;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 170;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 171;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 172;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 173;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 174;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 175;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 176;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 177;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 178;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 179;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 180;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 181;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 182;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 183;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 184;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 185;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 186;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 187;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 188;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 189;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 190;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 191;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 192;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 193;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 194;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 195;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 196;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 197;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 198;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 199;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 200;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 201;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 202;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 203;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 204;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 205;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 206;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 207;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 208;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 209;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 210;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 211;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 212;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 213;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 214;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 215;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 216;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 217;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 218;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 219;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 220;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 221;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 222;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 223;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 224;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 225;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 226;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 227;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 228;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 229;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 230;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 231;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 232;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 233;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 234;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 235;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 236;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 237;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 238;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 239;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 240;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 241;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 242;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 243;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 244;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 245;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 246;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 247;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 248;4;-0.000002,-0.000000, 0.997590,-0.069380;;, + 249;4;-0.000002,-0.000000, 0.997590,-0.069380;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3;-0.000000, 2.352446, 0.000000;;, + 1;3;-0.000000, 2.352447,-0.000000;;, + 2;3;-0.000000, 2.352446, 0.000000;;, + 3;3;-0.000000, 2.352447,-0.000000;;, + 4;3;-0.000000, 2.352446,-0.000000;;, + 5;3;-0.000000, 2.352447,-0.000000;;, + 6;3;-0.000000, 2.352446,-0.000000;;, + 7;3; 0.000000, 2.352446,-0.000000;;, + 8;3;-0.000000, 2.352447,-0.000000;;, + 9;3;-0.000000, 2.352447, 0.000000;;, + 10;3;-0.000000, 2.352446,-0.000000;;, + 11;3; 0.000000, 2.352446, 0.000000;;, + 12;3;-0.000000, 2.352447, 0.000000;;, + 13;3; 0.000000, 2.352446, 0.000000;;, + 14;3;-0.000000, 2.352446, 0.000000;;, + 15;3;-0.000000, 2.352446, 0.000000;;, + 16;3;-0.000000, 2.352447, 0.000000;;, + 17;3; 0.000000, 2.352446, 0.000000;;, + 18;3; 0.000000, 2.352446, 0.000000;;, + 19;3;-0.000000, 2.352446,-0.000000;;, + 20;3; 0.000000, 2.352446,-0.000000;;, + 21;3;-0.000000, 2.352446,-0.000000;;, + 22;3; 0.000000, 2.352446, 0.000000;;, + 23;3;-0.000000, 2.352446,-0.000000;;, + 24;3;-0.000000, 2.352446, 0.000000;;, + 25;3;-0.000000, 2.352446,-0.000000;;, + 26;3; 0.000000, 2.352446, 0.000000;;, + 27;3; 0.000000, 2.352447, 0.000000;;, + 28;3; 0.000000, 2.352446,-0.000000;;, + 29;3;-0.000000, 2.352446, 0.000000;;, + 30;3; 0.000000, 2.352446,-0.000000;;, + 31;3; 0.000000, 2.352446,-0.000000;;, + 32;3; 0.000000, 2.352447,-0.000000;;, + 33;3; 0.000000, 2.352446, 0.000000;;, + 34;3; 0.000000, 2.352446, 0.000000;;, + 35;3; 0.000000, 2.352446,-0.000000;;, + 36;3; 0.000000, 2.352446, 0.000000;;, + 37;3;-0.000000, 2.352446,-0.000000;;, + 38;3; 0.000000, 2.352447, 0.000000;;, + 39;3;-0.000000, 2.352446, 0.000000;;, + 40;3;-0.000000, 2.352447,-0.000000;;, + 41;3;-0.000000, 2.352446,-0.000000;;, + 42;3; 0.000000, 2.352446, 0.000000;;, + 43;3; 0.000000, 2.352446, 0.000000;;, + 44;3; 0.000000, 2.352446,-0.000000;;, + 45;3;-0.000000, 2.352446, 0.000000;;, + 46;3;-0.000000, 2.352446, 0.000000;;, + 47;3;-0.000000, 2.352447,-0.000000;;, + 48;3; 0.000000, 2.352446,-0.000000;;, + 49;3;-0.000000, 2.352447,-0.000000;;, + 50;3; 0.000000, 2.352446, 0.000000;;, + 51;3; 0.000000, 2.352446, 0.000000;;, + 52;3; 0.000000, 2.352447, 0.000000;;, + 53;3;-0.000000, 2.352446, 0.000000;;, + 54;3;-0.000000, 2.352446, 0.000000;;, + 55;3;-0.000000, 2.352446,-0.000000;;, + 56;3;-0.000000, 2.352446, 0.000000;;, + 57;3;-0.000000, 2.352447, 0.000000;;, + 58;3; 0.000000, 2.352447,-0.000000;;, + 59;3;-0.000000, 2.352446, 0.000000;;, + 60;3; 0.000000, 2.352446, 0.000000;;, + 61;3; 0.000000, 2.352446, 0.000000;;, + 62;3;-0.000000, 2.352447, 0.000000;;, + 63;3; 0.000000, 2.352446,-0.000000;;, + 64;3; 0.000000, 2.352446,-0.000000;;, + 65;3;-0.000000, 2.352446,-0.000000;;, + 66;3;-0.000000, 2.352447,-0.000000;;, + 67;3;-0.000000, 2.352446, 0.000000;;, + 68;3; 0.000000, 2.352446, 0.000000;;, + 69;3; 0.000000, 2.352446, 0.000000;;, + 70;3;-0.000000, 2.352446,-0.000000;;, + 71;3;-0.000000, 2.352446, 0.000000;;, + 72;3;-0.000000, 2.352446,-0.000000;;, + 73;3;-0.000000, 2.352446,-0.000000;;, + 74;3; 0.000000, 2.352446, 0.000000;;, + 75;3;-0.000000, 2.352446, 0.000000;;, + 76;3;-0.000000, 2.352447,-0.000000;;, + 77;3;-0.000000, 2.352446, 0.000000;;, + 78;3; 0.000000, 2.352446, 0.000000;;, + 79;3;-0.000000, 2.352446, 0.000000;;, + 80;3;-0.000000, 2.352447,-0.000000;;, + 81;3; 0.000000, 2.352446, 0.000000;;, + 82;3; 0.000000, 2.352446,-0.000000;;, + 83;3; 0.000000, 2.352446, 0.000000;;, + 84;3; 0.000000, 2.352446, 0.000000;;, + 85;3;-0.000000, 2.352447, 0.000000;;, + 86;3; 0.000000, 2.352446,-0.000000;;, + 87;3;-0.000000, 2.352447, 0.000000;;, + 88;3;-0.000000, 2.352446, 0.000000;;, + 89;3;-0.000000, 2.352446,-0.000000;;, + 90;3; 0.000000, 2.352446, 0.000000;;, + 91;3;-0.000000, 2.352446, 0.000000;;, + 92;3; 0.000000, 2.352446, 0.000000;;, + 93;3; 0.000000, 2.352446,-0.000000;;, + 94;3; 0.000000, 2.352446,-0.000000;;, + 95;3; 0.000000, 2.352446, 0.000000;;, + 96;3;-0.000000, 2.352447,-0.000000;;, + 97;3; 0.000000, 2.352447,-0.000000;;, + 98;3;-0.000000, 2.352446,-0.000000;;, + 99;3;-0.000000, 2.352446, 0.000000;;, + 100;3;-0.000000, 2.352446, 0.000000;;, + 101;3;-0.000000, 2.352446, 0.000000;;, + 102;3; 0.000000, 2.352447, 0.000000;;, + 103;3; 0.000000, 2.352446, 0.000000;;, + 104;3; 0.000000, 2.352447, 0.000000;;, + 105;3;-0.000000, 2.352446, 0.000000;;, + 106;3; 0.000000, 2.352447, 0.000000;;, + 107;3; 0.000000, 2.352446, 0.000000;;, + 108;3; 0.000000, 2.352446,-0.000000;;, + 109;3; 0.000000, 2.352446, 0.000000;;, + 110;3; 0.000000, 2.352446, 0.000000;;, + 111;3; 0.000000, 2.352446, 0.000000;;, + 112;3;-0.000000, 2.352446,-0.000000;;, + 113;3; 0.000000, 2.352446, 0.000000;;, + 114;3; 0.000000, 2.352446,-0.000000;;, + 115;3;-0.000000, 2.352446, 0.000000;;, + 116;3; 0.000000, 2.352446,-0.000000;;, + 117;3; 0.000000, 2.352446, 0.000000;;, + 118;3; 0.000000, 2.352447,-0.000000;;, + 119;3;-0.000000, 2.352446, 0.000000;;, + 120;3;-0.000000, 2.352446,-0.000000;;, + 121;3;-0.000000, 2.352446,-0.000000;;, + 122;3;-0.000000, 2.352446,-0.000000;;, + 123;3;-0.000000, 2.352446, 0.000000;;, + 124;3;-0.000000, 2.352446,-0.000000;;, + 125;3; 0.000000, 2.352446,-0.000000;;, + 126;3; 0.000000, 2.352446,-0.000000;;, + 127;3; 0.000000, 2.352446, 0.000000;;, + 128;3; 0.000000, 2.352447, 0.000000;;, + 129;3; 0.000000, 2.352447,-0.000000;;, + 130;3;-0.000000, 2.352446, 0.000000;;, + 131;3;-0.000000, 2.352446,-0.000000;;, + 132;3;-0.000000, 2.352446,-0.000000;;, + 133;3;-0.000000, 2.352446,-0.000000;;, + 134;3;-0.000000, 2.352446,-0.000000;;, + 135;3;-0.000000, 2.352446, 0.000000;;, + 136;3;-0.000000, 2.352447,-0.000000;;, + 137;3; 0.000000, 2.352446, 0.000000;;, + 138;3; 0.000000, 2.352446,-0.000000;;, + 139;3; 0.000000, 2.352446, 0.000000;;, + 140;3; 0.000000, 2.352446,-0.000000;;, + 141;3;-0.000000, 2.352446,-0.000000;;, + 142;3; 0.000000, 2.352447,-0.000000;;, + 143;3;-0.000000, 2.352446, 0.000000;;, + 144;3;-0.000000, 2.352446,-0.000000;;, + 145;3; 0.000000, 2.352446, 0.000000;;, + 146;3; 0.000000, 2.352446, 0.000000;;, + 147;3; 0.000000, 2.352446,-0.000000;;, + 148;3;-0.000000, 2.352447,-0.000000;;, + 149;3;-0.000000, 2.352446, 0.000000;;, + 150;3;-0.000000, 2.352446, 0.000000;;, + 151;3;-0.000000, 2.352446, 0.000000;;, + 152;3;-0.000000, 2.352446, 0.000000;;, + 153;3;-0.000000, 2.352446, 0.000000;;, + 154;3;-0.000000, 2.352446, 0.000000;;, + 155;3;-0.000000, 2.352446, 0.000000;;, + 156;3;-0.000000, 2.352446, 0.000000;;, + 157;3;-0.000000, 2.352446, 0.000000;;, + 158;3;-0.000000, 2.352446, 0.000000;;, + 159;3;-0.000000, 2.352446, 0.000000;;, + 160;3;-0.000000, 2.352446, 0.000000;;, + 161;3;-0.000000, 2.352446, 0.000000;;, + 162;3;-0.000000, 2.352446, 0.000000;;, + 163;3;-0.000000, 2.352446, 0.000000;;, + 164;3;-0.000000, 2.352446, 0.000000;;, + 165;3;-0.000000, 2.352446, 0.000000;;, + 166;3;-0.000000, 2.352446, 0.000000;;, + 167;3;-0.000000, 2.352446, 0.000000;;, + 168;3;-0.000000, 2.352446, 0.000000;;, + 169;3;-0.000000, 2.352446, 0.000000;;, + 170;3;-0.000000, 2.352446, 0.000000;;, + 171;3;-0.000000, 2.352446, 0.000000;;, + 172;3;-0.000000, 2.352446, 0.000000;;, + 173;3;-0.000000, 2.352446, 0.000000;;, + 174;3;-0.000000, 2.352446, 0.000000;;, + 175;3;-0.000000, 2.352446, 0.000000;;, + 176;3;-0.000000, 2.352446, 0.000000;;, + 177;3;-0.000000, 2.352446, 0.000000;;, + 178;3;-0.000000, 2.352446, 0.000000;;, + 179;3;-0.000000, 2.352446, 0.000000;;, + 180;3;-0.000000, 2.352446, 0.000000;;, + 181;3;-0.000000, 2.352446, 0.000000;;, + 182;3;-0.000000, 2.352446, 0.000000;;, + 183;3;-0.000000, 2.352446, 0.000000;;, + 184;3;-0.000000, 2.352446, 0.000000;;, + 185;3;-0.000000, 2.352446, 0.000000;;, + 186;3;-0.000000, 2.352446, 0.000000;;, + 187;3;-0.000000, 2.352446, 0.000000;;, + 188;3;-0.000000, 2.352446, 0.000000;;, + 189;3;-0.000000, 2.352446, 0.000000;;, + 190;3;-0.000000, 2.352446, 0.000000;;, + 191;3;-0.000000, 2.352446, 0.000000;;, + 192;3;-0.000000, 2.352446, 0.000000;;, + 193;3;-0.000000, 2.352446, 0.000000;;, + 194;3;-0.000000, 2.352446, 0.000000;;, + 195;3;-0.000000, 2.352446, 0.000000;;, + 196;3;-0.000000, 2.352446, 0.000000;;, + 197;3;-0.000000, 2.352446, 0.000000;;, + 198;3;-0.000000, 2.352446, 0.000000;;, + 199;3;-0.000000, 2.352446, 0.000000;;, + 200;3;-0.000000, 2.352446, 0.000000;;, + 201;3;-0.000000, 2.352446, 0.000000;;, + 202;3;-0.000000, 2.352446, 0.000000;;, + 203;3;-0.000000, 2.352446, 0.000000;;, + 204;3;-0.000000, 2.352446, 0.000000;;, + 205;3;-0.000000, 2.352446, 0.000000;;, + 206;3;-0.000000, 2.352446, 0.000000;;, + 207;3;-0.000000, 2.352446, 0.000000;;, + 208;3;-0.000000, 2.352446, 0.000000;;, + 209;3;-0.000000, 2.352446, 0.000000;;, + 210;3;-0.000000, 2.352446, 0.000000;;, + 211;3;-0.000000, 2.352446, 0.000000;;, + 212;3;-0.000000, 2.352446, 0.000000;;, + 213;3;-0.000000, 2.352446, 0.000000;;, + 214;3;-0.000000, 2.352446, 0.000000;;, + 215;3;-0.000000, 2.352446, 0.000000;;, + 216;3;-0.000000, 2.352446, 0.000000;;, + 217;3;-0.000000, 2.352446, 0.000000;;, + 218;3;-0.000000, 2.352446, 0.000000;;, + 219;3;-0.000000, 2.352446, 0.000000;;, + 220;3;-0.000000, 2.352446, 0.000000;;, + 221;3;-0.000000, 2.352446, 0.000000;;, + 222;3;-0.000000, 2.352446, 0.000000;;, + 223;3;-0.000000, 2.352446, 0.000000;;, + 224;3;-0.000000, 2.352446, 0.000000;;, + 225;3;-0.000000, 2.352446, 0.000000;;, + 226;3;-0.000000, 2.352446, 0.000000;;, + 227;3;-0.000000, 2.352446, 0.000000;;, + 228;3;-0.000000, 2.352446, 0.000000;;, + 229;3;-0.000000, 2.352446, 0.000000;;, + 230;3;-0.000000, 2.352446, 0.000000;;, + 231;3;-0.000000, 2.352446, 0.000000;;, + 232;3;-0.000000, 2.352446, 0.000000;;, + 233;3;-0.000000, 2.352446, 0.000000;;, + 234;3;-0.000000, 2.352446, 0.000000;;, + 235;3;-0.000000, 2.352446, 0.000000;;, + 236;3;-0.000000, 2.352446, 0.000000;;, + 237;3;-0.000000, 2.352446, 0.000000;;, + 238;3;-0.000000, 2.352446, 0.000000;;, + 239;3;-0.000000, 2.352446, 0.000000;;, + 240;3;-0.000000, 2.352446, 0.000000;;, + 241;3;-0.000000, 2.352446, 0.000000;;, + 242;3;-0.000000, 2.352446, 0.000000;;, + 243;3;-0.000000, 2.352446, 0.000000;;, + 244;3;-0.000000, 2.352446, 0.000000;;, + 245;3;-0.000000, 2.352446, 0.000000;;, + 246;3;-0.000000, 2.352446, 0.000000;;, + 247;3;-0.000000, 2.352446, 0.000000;;, + 248;3;-0.000000, 2.352446, 0.000000;;, + 249;3;-0.000000, 2.352446, 0.000000;;; + } + } + Animation { + {Armature_Bone_021} + AnimationKey { // Rotation + 0; + 250; + 0;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 1;4; 0.000005,-0.000008, 0.987834, 0.155478;;, + 2;4; 0.000017,-0.000034, 0.987938, 0.154713;;, + 3;4; 0.000037,-0.000077, 0.988113, 0.153434;;, + 4;4; 0.000065,-0.000136, 0.988355, 0.151652;;, + 5;4; 0.000101,-0.000212, 0.988663, 0.149393;;, + 6;4; 0.000143,-0.000302, 0.989030, 0.146703;;, + 7;4; 0.000191,-0.000404, 0.989446, 0.143647;;, + 8;4; 0.000243,-0.000516, 0.989901, 0.140310;;, + 9;4; 0.000298,-0.000633, 0.990379, 0.136798;;, + 10;4; 0.000354,-0.000753, 0.990866, 0.133225;;, + 11;4; 0.000409,-0.000870, 0.991345, 0.129712;;, + 12;4; 0.000461,-0.000982, 0.991800, 0.126376;;, + 13;4; 0.000509,-0.001084, 0.992216, 0.123319;;, + 14;4; 0.000552,-0.001174, 0.992583, 0.120629;;, + 15;4; 0.000587,-0.001250, 0.992890, 0.118370;;, + 16;4; 0.000615,-0.001309, 0.993133, 0.116588;;, + 17;4; 0.000635,-0.001352, 0.993307, 0.115310;;, + 18;4; 0.000647,-0.001378, 0.993412, 0.114544;;, + 19;4; 0.000651,-0.001386, 0.993446, 0.114291;;, + 20;4; 0.000647,-0.001378, 0.993415, 0.114520;;, + 21;4; 0.000636,-0.001355, 0.993321, 0.115210;;, + 22;4; 0.000618,-0.001317, 0.993164, 0.116364;;, + 23;4; 0.000593,-0.001263, 0.992944, 0.117975;;, + 24;4; 0.000561,-0.001194, 0.992665, 0.120022;;, + 25;4; 0.000523,-0.001112, 0.992332, 0.122470;;, + 26;4; 0.000479,-0.001019, 0.991950, 0.125269;;, + 27;4; 0.000431,-0.000916, 0.991530, 0.128350;;, + 28;4; 0.000379,-0.000806, 0.991084, 0.131629;;, + 29;4; 0.000326,-0.000693, 0.990623, 0.135011;;, + 30;4; 0.000273,-0.000580, 0.990162, 0.138393;;, + 31;4; 0.000222,-0.000470, 0.989715, 0.141672;;, + 32;4; 0.000173,-0.000367, 0.989295, 0.144753;;, + 33;4; 0.000130,-0.000273, 0.988914, 0.147552;;, + 34;4; 0.000091,-0.000191, 0.988580, 0.150001;;, + 35;4; 0.000059,-0.000123, 0.988301, 0.152048;;, + 36;4; 0.000034,-0.000069, 0.988082, 0.153658;;, + 37;4; 0.000016,-0.000030, 0.987925, 0.154813;;, + 38;4; 0.000005,-0.000007, 0.987831, 0.155503;;, + 39;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 40;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 41;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 42;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 43;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 44;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 45;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 46;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 47;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 48;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 49;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 50;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 51;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 52;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 53;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 54;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 55;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 56;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 57;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 58;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 59;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 60;4;-0.000572,-0.000422, 0.988040, 0.153192;;, + 61;4;-0.002300,-0.001694, 0.988763, 0.145549;;, + 62;4;-0.005108,-0.003761, 0.989938, 0.133123;;, + 63;4;-0.008780,-0.006464, 0.991475, 0.116870;;, + 64;4;-0.012941,-0.009527, 0.993217, 0.098458;;, + 65;4;-0.017102,-0.012590, 0.994959, 0.080046;;, + 66;4;-0.020775,-0.015294, 0.996496, 0.063793;;, + 67;4;-0.023583,-0.017361, 0.997671, 0.051367;;, + 68;4;-0.025310,-0.018632, 0.998394, 0.043724;;, + 69;4;-0.025884,-0.019055, 0.998635, 0.041185;;, + 70;4;-0.025821,-0.019008, 0.998608, 0.041465;;, + 71;4;-0.025630,-0.018868, 0.998528, 0.042310;;, + 72;4;-0.025310,-0.018632, 0.998394, 0.043724;;, + 73;4;-0.024861,-0.018302, 0.998207, 0.045709;;, + 74;4;-0.024285,-0.017878, 0.997965, 0.048261;;, + 75;4;-0.023583,-0.017361, 0.997671, 0.051367;;, + 76;4;-0.022760,-0.016755, 0.997327, 0.055010;;, + 77;4;-0.021821,-0.016064, 0.996934, 0.059164;;, + 78;4;-0.020775,-0.015294, 0.996496, 0.063793;;, + 79;4;-0.019631,-0.014452, 0.996017, 0.068854;;, + 80;4;-0.018402,-0.013547, 0.995503, 0.074292;;, + 81;4;-0.017102,-0.012590, 0.994959, 0.080046;;, + 82;4;-0.015747,-0.011592, 0.994391, 0.086044;;, + 83;4;-0.014353,-0.010567, 0.993808, 0.092209;;, + 84;4;-0.012941,-0.009527, 0.993217, 0.098458;;, + 85;4;-0.011529,-0.008488, 0.992626, 0.104707;;, + 86;4;-0.010136,-0.007462, 0.992043, 0.110872;;, + 87;4;-0.008780,-0.006464, 0.991475, 0.116870;;, + 88;4;-0.007480,-0.005507, 0.990931, 0.122624;;, + 89;4;-0.006251,-0.004603, 0.990417, 0.128062;;, + 90;4;-0.005108,-0.003761, 0.989938, 0.133123;;, + 91;4;-0.004061,-0.002991, 0.989500, 0.137752;;, + 92;4;-0.003123,-0.002300, 0.989107, 0.141906;;, + 93;4;-0.002300,-0.001694, 0.988763, 0.145549;;, + 94;4;-0.001598,-0.001177, 0.988469, 0.148655;;, + 95;4;-0.001021,-0.000752, 0.988227, 0.151207;;, + 96;4;-0.000572,-0.000422, 0.988040, 0.153192;;, + 97;4;-0.000253,-0.000187, 0.987906, 0.154607;;, + 98;4;-0.000062,-0.000046, 0.987826, 0.155451;;, + 99;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 100;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 101;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 102;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 103;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 104;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 105;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 106;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 107;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 108;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 109;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 110;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 111;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 112;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 113;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 114;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 115;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 116;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 117;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 118;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 119;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 120;4; 0.001811, 0.000244, 0.988383, 0.132639;;, + 121;4; 0.006910, 0.000930, 0.990025, 0.067595;;, + 122;4; 0.013456, 0.001812, 0.992134,-0.015920;;, + 123;4; 0.018555, 0.002498, 0.993776,-0.080964;;, + 124;4; 0.020365, 0.002742, 0.994359,-0.104056;;, + 125;4; 0.020365, 0.002742, 0.994359,-0.104056;;, + 126;4; 0.020365, 0.002742, 0.994359,-0.104056;;, + 127;4; 0.020365, 0.002742, 0.994359,-0.104056;;, + 128;4; 0.020365, 0.002742, 0.994359,-0.104056;;, + 129;4; 0.020365, 0.002742, 0.994359,-0.104056;;, + 130;4; 0.022626, 0.003046, 0.985441,-0.134417;;, + 131;4; 0.028993, 0.003904, 0.960323,-0.219932;;, + 132;4; 0.037169, 0.005004, 0.928071,-0.329734;;, + 133;4; 0.043536, 0.005862, 0.902952,-0.415249;;, + 134;4; 0.045797, 0.006166, 0.894034,-0.445609;;, + 135;4; 0.043270, 0.002995, 0.898232,-0.438859;;, + 136;4; 0.035068,-0.007234, 0.910646,-0.416545;;, + 137;4; 0.021624,-0.023850, 0.928176,-0.379032;;, + 138;4; 0.005487,-0.043569, 0.944920,-0.332569;;, + 139;4;-0.010542,-0.062886, 0.956484,-0.284732;;, + 140;4;-0.030218,-0.086269, 0.963896,-0.231024;;, + 141;4;-0.056631,-0.117435, 0.969166,-0.164918;;, + 142;4;-0.083267,-0.148751, 0.972554,-0.093841;;, + 143;4;-0.101744,-0.170427, 0.975110,-0.029145;;, + 144;4;-0.107919,-0.177662, 0.977905, 0.022164;;, + 145;4;-0.098326,-0.161870, 0.981030, 0.065616;;, + 146;4;-0.071305,-0.117388, 0.983921, 0.104880;;, + 147;4;-0.036612,-0.060274, 0.986151, 0.134443;;, + 148;4;-0.009591,-0.015792, 0.987426, 0.150968;;, + 149;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 150;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 151;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 152;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 153;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 154;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 155;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 156;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 157;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 158;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 159;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 160;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 161;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 162;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 163;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 164;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 165;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 166;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 167;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 168;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 169;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 170;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 171;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 172;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 173;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 174;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 175;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 176;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 177;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 178;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 179;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 180;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 181;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 182;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 183;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 184;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 185;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 186;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 187;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 188;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 189;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 190;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 191;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 192;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 193;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 194;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 195;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 196;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 197;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 198;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 199;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 200;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 201;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 202;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 203;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 204;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 205;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 206;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 207;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 208;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 209;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 210;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 211;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 212;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 213;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 214;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 215;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 216;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 217;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 218;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 219;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 220;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 221;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 222;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 223;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 224;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 225;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 226;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 227;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 228;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 229;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 230;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 231;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 232;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 233;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 234;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 235;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 236;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 237;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 238;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 239;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 240;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 241;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 242;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 243;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 244;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 245;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 246;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 247;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 248;4; 0.000001, 0.000000, 0.987800, 0.155731;;, + 249;4; 0.000001, 0.000000, 0.987800, 0.155731;;; + } + AnimationKey { // Scale + 1; + 250; + 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.000001, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000001, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000001, 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.000001, 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3;-0.000000, 2.377757, 0.000000;;, + 1;3;-0.000000, 2.377757,-0.000000;;, + 2;3;-0.000000, 2.377757, 0.000000;;, + 3;3; 0.000000, 2.377757, 0.000000;;, + 4;3; 0.000000, 2.377757, 0.000000;;, + 5;3; 0.000000, 2.377757, 0.000000;;, + 6;3;-0.000000, 2.377757,-0.000000;;, + 7;3; 0.000000, 2.377758, 0.000000;;, + 8;3;-0.000000, 2.377758, 0.000000;;, + 9;3;-0.000000, 2.377757,-0.000000;;, + 10;3; 0.000000, 2.377757,-0.000000;;, + 11;3;-0.000000, 2.377757, 0.000000;;, + 12;3;-0.000000, 2.377757, 0.000000;;, + 13;3; 0.000000, 2.377757, 0.000000;;, + 14;3;-0.000000, 2.377758, 0.000000;;, + 15;3;-0.000000, 2.377757,-0.000000;;, + 16;3;-0.000000, 2.377757,-0.000000;;, + 17;3; 0.000000, 2.377757, 0.000000;;, + 18;3;-0.000000, 2.377757,-0.000000;;, + 19;3; 0.000000, 2.377758, 0.000000;;, + 20;3;-0.000000, 2.377758, 0.000000;;, + 21;3; 0.000000, 2.377758,-0.000000;;, + 22;3;-0.000000, 2.377757,-0.000000;;, + 23;3;-0.000000, 2.377757, 0.000000;;, + 24;3;-0.000000, 2.377757,-0.000000;;, + 25;3;-0.000000, 2.377757, 0.000000;;, + 26;3; 0.000000, 2.377758,-0.000000;;, + 27;3; 0.000000, 2.377757, 0.000000;;, + 28;3;-0.000000, 2.377757, 0.000000;;, + 29;3;-0.000000, 2.377757,-0.000000;;, + 30;3; 0.000000, 2.377758,-0.000000;;, + 31;3; 0.000000, 2.377757,-0.000000;;, + 32;3; 0.000000, 2.377757, 0.000000;;, + 33;3;-0.000000, 2.377757, 0.000000;;, + 34;3;-0.000000, 2.377757, 0.000000;;, + 35;3;-0.000000, 2.377757, 0.000000;;, + 36;3;-0.000000, 2.377757,-0.000000;;, + 37;3;-0.000000, 2.377757, 0.000000;;, + 38;3;-0.000000, 2.377757, 0.000000;;, + 39;3;-0.000000, 2.377757, 0.000000;;, + 40;3;-0.000000, 2.377758, 0.000000;;, + 41;3; 0.000000, 2.377757, 0.000000;;, + 42;3; 0.000000, 2.377758, 0.000000;;, + 43;3; 0.000000, 2.377757, 0.000000;;, + 44;3; 0.000000, 2.377757, 0.000000;;, + 45;3; 0.000000, 2.377757,-0.000000;;, + 46;3; 0.000000, 2.377758, 0.000000;;, + 47;3;-0.000000, 2.377757,-0.000000;;, + 48;3;-0.000000, 2.377758, 0.000000;;, + 49;3; 0.000000, 2.377757,-0.000000;;, + 50;3;-0.000000, 2.377758,-0.000000;;, + 51;3;-0.000000, 2.377757,-0.000000;;, + 52;3; 0.000000, 2.377758,-0.000000;;, + 53;3; 0.000000, 2.377757, 0.000000;;, + 54;3;-0.000000, 2.377757, 0.000000;;, + 55;3;-0.000000, 2.377757, 0.000000;;, + 56;3; 0.000000, 2.377757, 0.000000;;, + 57;3;-0.000000, 2.377758, 0.000000;;, + 58;3; 0.000000, 2.377757, 0.000000;;, + 59;3;-0.000000, 2.377757,-0.000000;;, + 60;3; 0.000000, 2.377757,-0.000001;;, + 61;3; 0.000000, 2.377757,-0.000000;;, + 62;3;-0.000000, 2.377757,-0.000000;;, + 63;3;-0.000000, 2.377757,-0.000000;;, + 64;3;-0.000000, 2.377758,-0.000000;;, + 65;3;-0.000000, 2.377758, 0.000000;;, + 66;3;-0.000000, 2.377758,-0.000000;;, + 67;3; 0.000000, 2.377757,-0.000000;;, + 68;3; 0.000000, 2.377757, 0.000000;;, + 69;3;-0.000000, 2.377757,-0.000000;;, + 70;3; 0.000000, 2.377758, 0.000000;;, + 71;3; 0.000000, 2.377758, 0.000000;;, + 72;3; 0.000000, 2.377757,-0.000000;;, + 73;3;-0.000000, 2.377757,-0.000000;;, + 74;3; 0.000000, 2.377757, 0.000000;;, + 75;3; 0.000000, 2.377757, 0.000000;;, + 76;3; 0.000000, 2.377757, 0.000000;;, + 77;3;-0.000000, 2.377758, 0.000000;;, + 78;3; 0.000000, 2.377758,-0.000000;;, + 79;3; 0.000000, 2.377757,-0.000000;;, + 80;3; 0.000000, 2.377758, 0.000000;;, + 81;3;-0.000000, 2.377757,-0.000000;;, + 82;3;-0.000000, 2.377758, 0.000000;;, + 83;3; 0.000000, 2.377757, 0.000000;;, + 84;3; 0.000000, 2.377757, 0.000000;;, + 85;3;-0.000000, 2.377757, 0.000000;;, + 86;3;-0.000000, 2.377758,-0.000000;;, + 87;3;-0.000000, 2.377758, 0.000000;;, + 88;3; 0.000000, 2.377757, 0.000000;;, + 89;3;-0.000000, 2.377757,-0.000000;;, + 90;3; 0.000000, 2.377757,-0.000000;;, + 91;3;-0.000000, 2.377758,-0.000000;;, + 92;3; 0.000000, 2.377757,-0.000000;;, + 93;3; 0.000000, 2.377758, 0.000000;;, + 94;3;-0.000000, 2.377758,-0.000000;;, + 95;3;-0.000000, 2.377757,-0.000000;;, + 96;3;-0.000000, 2.377757, 0.000000;;, + 97;3;-0.000000, 2.377758,-0.000000;;, + 98;3;-0.000000, 2.377758, 0.000000;;, + 99;3;-0.000000, 2.377757,-0.000000;;, + 100;3; 0.000000, 2.377757,-0.000000;;, + 101;3;-0.000000, 2.377757, 0.000001;;, + 102;3;-0.000000, 2.377758,-0.000000;;, + 103;3; 0.000000, 2.377758,-0.000000;;, + 104;3; 0.000000, 2.377758, 0.000000;;, + 105;3; 0.000000, 2.377757, 0.000000;;, + 106;3; 0.000000, 2.377757, 0.000000;;, + 107;3; 0.000000, 2.377757, 0.000000;;, + 108;3;-0.000000, 2.377757,-0.000000;;, + 109;3; 0.000000, 2.377757,-0.000000;;, + 110;3;-0.000000, 2.377757, 0.000000;;, + 111;3; 0.000000, 2.377758, 0.000000;;, + 112;3;-0.000000, 2.377758, 0.000000;;, + 113;3; 0.000000, 2.377757, 0.000000;;, + 114;3; 0.000000, 2.377758,-0.000000;;, + 115;3;-0.000000, 2.377757, 0.000000;;, + 116;3; 0.000000, 2.377757, 0.000000;;, + 117;3; 0.000000, 2.377758, 0.000000;;, + 118;3; 0.000000, 2.377757, 0.000000;;, + 119;3;-0.000000, 2.377757, 0.000000;;, + 120;3;-0.000000, 2.377757,-0.000000;;, + 121;3; 0.000000, 2.377758, 0.000000;;, + 122;3;-0.000000, 2.377757, 0.000000;;, + 123;3; 0.000000, 2.377757,-0.000000;;, + 124;3; 0.000000, 2.377757,-0.000000;;, + 125;3;-0.000000, 2.377758, 0.000000;;, + 126;3; 0.000000, 2.377757, 0.000000;;, + 127;3; 0.000000, 2.377757, 0.000000;;, + 128;3; 0.000000, 2.377757,-0.000000;;, + 129;3;-0.000000, 2.377757, 0.000000;;, + 130;3; 0.000000, 2.377757,-0.000000;;, + 131;3; 0.000000, 2.377757,-0.000000;;, + 132;3; 0.000000, 2.377757, 0.000000;;, + 133;3;-0.000000, 2.377757, 0.000000;;, + 134;3; 0.000000, 2.377757,-0.000000;;, + 135;3;-0.000000, 2.377758,-0.000000;;, + 136;3;-0.000000, 2.377757,-0.000000;;, + 137;3; 0.000000, 2.377757,-0.000000;;, + 138;3;-0.000000, 2.377757, 0.000000;;, + 139;3; 0.000000, 2.377758, 0.000000;;, + 140;3;-0.000000, 2.377757,-0.000000;;, + 141;3; 0.000000, 2.377757, 0.000000;;, + 142;3; 0.000000, 2.377757, 0.000000;;, + 143;3; 0.000000, 2.377757, 0.000000;;, + 144;3; 0.000000, 2.377757,-0.000000;;, + 145;3;-0.000000, 2.377758, 0.000000;;, + 146;3; 0.000000, 2.377757, 0.000000;;, + 147;3;-0.000000, 2.377758, 0.000000;;, + 148;3;-0.000000, 2.377757,-0.000000;;, + 149;3;-0.000000, 2.377757, 0.000000;;, + 150;3;-0.000000, 2.377757, 0.000000;;, + 151;3;-0.000000, 2.377757, 0.000000;;, + 152;3;-0.000000, 2.377757, 0.000000;;, + 153;3;-0.000000, 2.377757, 0.000000;;, + 154;3;-0.000000, 2.377757, 0.000000;;, + 155;3;-0.000000, 2.377757, 0.000000;;, + 156;3;-0.000000, 2.377757, 0.000000;;, + 157;3;-0.000000, 2.377757, 0.000000;;, + 158;3;-0.000000, 2.377757, 0.000000;;, + 159;3;-0.000000, 2.377757, 0.000000;;, + 160;3;-0.000000, 2.377757, 0.000000;;, + 161;3;-0.000000, 2.377757, 0.000000;;, + 162;3;-0.000000, 2.377757, 0.000000;;, + 163;3;-0.000000, 2.377757, 0.000000;;, + 164;3;-0.000000, 2.377757, 0.000000;;, + 165;3;-0.000000, 2.377757, 0.000000;;, + 166;3;-0.000000, 2.377757, 0.000000;;, + 167;3;-0.000000, 2.377757, 0.000000;;, + 168;3;-0.000000, 2.377757, 0.000000;;, + 169;3;-0.000000, 2.377757, 0.000000;;, + 170;3;-0.000000, 2.377757, 0.000000;;, + 171;3;-0.000000, 2.377757, 0.000000;;, + 172;3;-0.000000, 2.377757, 0.000000;;, + 173;3;-0.000000, 2.377757, 0.000000;;, + 174;3;-0.000000, 2.377757, 0.000000;;, + 175;3;-0.000000, 2.377757, 0.000000;;, + 176;3;-0.000000, 2.377757, 0.000000;;, + 177;3;-0.000000, 2.377757, 0.000000;;, + 178;3;-0.000000, 2.377757, 0.000000;;, + 179;3;-0.000000, 2.377757, 0.000000;;, + 180;3;-0.000000, 2.377757, 0.000000;;, + 181;3;-0.000000, 2.377757, 0.000000;;, + 182;3;-0.000000, 2.377757, 0.000000;;, + 183;3;-0.000000, 2.377757, 0.000000;;, + 184;3;-0.000000, 2.377757, 0.000000;;, + 185;3;-0.000000, 2.377757, 0.000000;;, + 186;3;-0.000000, 2.377757, 0.000000;;, + 187;3;-0.000000, 2.377757, 0.000000;;, + 188;3;-0.000000, 2.377757, 0.000000;;, + 189;3;-0.000000, 2.377757, 0.000000;;, + 190;3;-0.000000, 2.377757, 0.000000;;, + 191;3;-0.000000, 2.377757, 0.000000;;, + 192;3;-0.000000, 2.377757, 0.000000;;, + 193;3;-0.000000, 2.377757, 0.000000;;, + 194;3;-0.000000, 2.377757, 0.000000;;, + 195;3;-0.000000, 2.377757, 0.000000;;, + 196;3;-0.000000, 2.377757, 0.000000;;, + 197;3;-0.000000, 2.377757, 0.000000;;, + 198;3;-0.000000, 2.377757, 0.000000;;, + 199;3;-0.000000, 2.377757, 0.000000;;, + 200;3;-0.000000, 2.377757, 0.000000;;, + 201;3;-0.000000, 2.377757, 0.000000;;, + 202;3;-0.000000, 2.377757, 0.000000;;, + 203;3;-0.000000, 2.377757, 0.000000;;, + 204;3;-0.000000, 2.377757, 0.000000;;, + 205;3;-0.000000, 2.377757, 0.000000;;, + 206;3;-0.000000, 2.377757, 0.000000;;, + 207;3;-0.000000, 2.377757, 0.000000;;, + 208;3;-0.000000, 2.377757, 0.000000;;, + 209;3;-0.000000, 2.377757, 0.000000;;, + 210;3;-0.000000, 2.377757, 0.000000;;, + 211;3;-0.000000, 2.377757, 0.000000;;, + 212;3;-0.000000, 2.377757, 0.000000;;, + 213;3;-0.000000, 2.377757, 0.000000;;, + 214;3;-0.000000, 2.377757, 0.000000;;, + 215;3;-0.000000, 2.377757, 0.000000;;, + 216;3;-0.000000, 2.377757, 0.000000;;, + 217;3;-0.000000, 2.377757, 0.000000;;, + 218;3;-0.000000, 2.377757, 0.000000;;, + 219;3;-0.000000, 2.377757, 0.000000;;, + 220;3;-0.000000, 2.377757, 0.000000;;, + 221;3;-0.000000, 2.377757, 0.000000;;, + 222;3;-0.000000, 2.377757, 0.000000;;, + 223;3;-0.000000, 2.377757, 0.000000;;, + 224;3;-0.000000, 2.377757, 0.000000;;, + 225;3;-0.000000, 2.377757, 0.000000;;, + 226;3;-0.000000, 2.377757, 0.000000;;, + 227;3;-0.000000, 2.377757, 0.000000;;, + 228;3;-0.000000, 2.377757, 0.000000;;, + 229;3;-0.000000, 2.377757, 0.000000;;, + 230;3;-0.000000, 2.377757, 0.000000;;, + 231;3;-0.000000, 2.377757, 0.000000;;, + 232;3;-0.000000, 2.377757, 0.000000;;, + 233;3;-0.000000, 2.377757, 0.000000;;, + 234;3;-0.000000, 2.377757, 0.000000;;, + 235;3;-0.000000, 2.377757, 0.000000;;, + 236;3;-0.000000, 2.377757, 0.000000;;, + 237;3;-0.000000, 2.377757, 0.000000;;, + 238;3;-0.000000, 2.377757, 0.000000;;, + 239;3;-0.000000, 2.377757, 0.000000;;, + 240;3;-0.000000, 2.377757, 0.000000;;, + 241;3;-0.000000, 2.377757, 0.000000;;, + 242;3;-0.000000, 2.377757, 0.000000;;, + 243;3;-0.000000, 2.377757, 0.000000;;, + 244;3;-0.000000, 2.377757, 0.000000;;, + 245;3;-0.000000, 2.377757, 0.000000;;, + 246;3;-0.000000, 2.377757, 0.000000;;, + 247;3;-0.000000, 2.377757, 0.000000;;, + 248;3;-0.000000, 2.377757, 0.000000;;, + 249;3;-0.000000, 2.377757, 0.000000;;; + } + } + Animation { + {Armature_Bone_007} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 1;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 2;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 3;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 4;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 5;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 6;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 7;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 8;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 9;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 10;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 11;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 12;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 13;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 14;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 15;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 16;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 17;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 18;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 19;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 20;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 21;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 22;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 23;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 24;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 25;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 26;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 27;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 28;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 29;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 30;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 31;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 32;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 33;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 34;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 35;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 36;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 37;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 38;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 39;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 40;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 41;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 42;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 43;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 44;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 45;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 46;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 47;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 48;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 49;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 50;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 51;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 52;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 53;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 54;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 55;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 56;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 57;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 58;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 59;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 60;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 61;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 62;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 63;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 64;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 65;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 66;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 67;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 68;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 69;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 70;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 71;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 72;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 73;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 74;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 75;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 76;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 77;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 78;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 79;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 80;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 81;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 82;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 83;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 84;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 85;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 86;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 87;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 88;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 89;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 90;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 91;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 92;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 93;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 94;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 95;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 96;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 97;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 98;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 99;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 100;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 101;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 102;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 103;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 104;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 105;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 106;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 107;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 108;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 109;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 110;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 111;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 112;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 113;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 114;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 115;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 116;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 117;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 118;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 119;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 120;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 121;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 122;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 123;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 124;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 125;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 126;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 127;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 128;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 129;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 130;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 131;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 132;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 133;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 134;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 135;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 136;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 137;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 138;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 139;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 140;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 141;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 142;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 143;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 144;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 145;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 146;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 147;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 148;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 149;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 150;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 151;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 152;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 153;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 154;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 155;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 156;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 157;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 158;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 159;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 160;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 161;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 162;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 163;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 164;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 165;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 166;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 167;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 168;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 169;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 170;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 171;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 172;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 173;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 174;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 175;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 176;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 177;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 178;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 179;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 180;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 181;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 182;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 183;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 184;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 185;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 186;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 187;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 188;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 189;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 190;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 191;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 192;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 193;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 194;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 195;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 196;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 197;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 198;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 199;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 200;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 201;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 202;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 203;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 204;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 205;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 206;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 207;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 208;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 209;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 210;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 211;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 212;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 213;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 214;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 215;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 216;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 217;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 218;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 219;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 220;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 221;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 222;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 223;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 224;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 225;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 226;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 227;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 228;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 229;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 230;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 231;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 232;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 233;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 234;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 235;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 236;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 237;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 238;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 239;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 240;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 241;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 242;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 243;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 244;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 245;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 246;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 247;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 248;4;-0.876025, 0.000000, 0.000000, 0.482267;;, + 249;4;-0.876025, 0.000000, 0.000000, 0.482267;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3; 0.000000, 0.705560, 0.000000;;, + 1;3; 0.000000, 0.705560, 0.000000;;, + 2;3; 0.000000, 0.705560, 0.000000;;, + 3;3; 0.000000, 0.705560, 0.000000;;, + 4;3; 0.000000, 0.705560, 0.000000;;, + 5;3; 0.000000, 0.705560, 0.000000;;, + 6;3; 0.000000, 0.705560, 0.000000;;, + 7;3; 0.000000, 0.705560, 0.000000;;, + 8;3; 0.000000, 0.705560, 0.000000;;, + 9;3; 0.000000, 0.705560, 0.000000;;, + 10;3; 0.000000, 0.705560, 0.000000;;, + 11;3; 0.000000, 0.705560, 0.000000;;, + 12;3; 0.000000, 0.705560, 0.000000;;, + 13;3; 0.000000, 0.705560, 0.000000;;, + 14;3; 0.000000, 0.705560, 0.000000;;, + 15;3; 0.000000, 0.705560, 0.000000;;, + 16;3; 0.000000, 0.705560, 0.000000;;, + 17;3; 0.000000, 0.705560, 0.000000;;, + 18;3; 0.000000, 0.705560, 0.000000;;, + 19;3; 0.000000, 0.705560, 0.000000;;, + 20;3; 0.000000, 0.705560, 0.000000;;, + 21;3; 0.000000, 0.705560, 0.000000;;, + 22;3; 0.000000, 0.705560, 0.000000;;, + 23;3; 0.000000, 0.705560, 0.000000;;, + 24;3; 0.000000, 0.705560, 0.000000;;, + 25;3; 0.000000, 0.705560, 0.000000;;, + 26;3; 0.000000, 0.705560, 0.000000;;, + 27;3; 0.000000, 0.705560, 0.000000;;, + 28;3; 0.000000, 0.705560, 0.000000;;, + 29;3; 0.000000, 0.705560, 0.000000;;, + 30;3; 0.000000, 0.705560, 0.000000;;, + 31;3; 0.000000, 0.705560, 0.000000;;, + 32;3; 0.000000, 0.705560, 0.000000;;, + 33;3; 0.000000, 0.705560, 0.000000;;, + 34;3; 0.000000, 0.705560, 0.000000;;, + 35;3; 0.000000, 0.705560, 0.000000;;, + 36;3; 0.000000, 0.705560, 0.000000;;, + 37;3; 0.000000, 0.705560, 0.000000;;, + 38;3; 0.000000, 0.705560, 0.000000;;, + 39;3; 0.000000, 0.705560, 0.000000;;, + 40;3; 0.000000, 0.705560, 0.000000;;, + 41;3; 0.000000, 0.705559, 0.000000;;, + 42;3;-0.000000, 0.705560, 0.000000;;, + 43;3; 0.000000, 0.705560,-0.000000;;, + 44;3; 0.000000, 0.705560, 0.000000;;, + 45;3; 0.000000, 0.705560,-0.000000;;, + 46;3; 0.000000, 0.705559, 0.000000;;, + 47;3;-0.000000, 0.705560, 0.000000;;, + 48;3; 0.000000, 0.705560,-0.000000;;, + 49;3; 0.000000, 0.705560, 0.000000;;, + 50;3;-0.000000, 0.705559, 0.000000;;, + 51;3; 0.000000, 0.705560,-0.000000;;, + 52;3;-0.000000, 0.705560, 0.000000;;, + 53;3; 0.000000, 0.705560,-0.000000;;, + 54;3; 0.000000, 0.705560, 0.000000;;, + 55;3; 0.000000, 0.705560,-0.000000;;, + 56;3;-0.000000, 0.705560, 0.000000;;, + 57;3; 0.000000, 0.705559, 0.000000;;, + 58;3;-0.000000, 0.705560, 0.000000;;, + 59;3; 0.000000, 0.705560, 0.000000;;, + 60;3; 0.000000, 0.705560,-0.000000;;, + 61;3; 0.000000, 0.705560, 0.000000;;, + 62;3; 0.000000, 0.705560, 0.000000;;, + 63;3; 0.000000, 0.705560, 0.000000;;, + 64;3; 0.000000, 0.705560,-0.000000;;, + 65;3;-0.000000, 0.705560, 0.000000;;, + 66;3; 0.000000, 0.705560, 0.000000;;, + 67;3;-0.000000, 0.705560, 0.000000;;, + 68;3; 0.000000, 0.705559, 0.000000;;, + 69;3; 0.000000, 0.705560, 0.000000;;, + 70;3; 0.000000, 0.705560, 0.000000;;, + 71;3;-0.000000, 0.705560, 0.000000;;, + 72;3;-0.000000, 0.705560, 0.000000;;, + 73;3;-0.000000, 0.705560, 0.000000;;, + 74;3;-0.000000, 0.705560, 0.000000;;, + 75;3;-0.000000, 0.705560, 0.000000;;, + 76;3; 0.000000, 0.705559, 0.000000;;, + 77;3;-0.000000, 0.705560, 0.000000;;, + 78;3; 0.000000, 0.705560, 0.000000;;, + 79;3;-0.000000, 0.705559, 0.000000;;, + 80;3; 0.000000, 0.705560, 0.000000;;, + 81;3;-0.000000, 0.705560, 0.000000;;, + 82;3; 0.000000, 0.705560, 0.000000;;, + 83;3; 0.000000, 0.705560, 0.000000;;, + 84;3; 0.000000, 0.705560,-0.000000;;, + 85;3;-0.000000, 0.705560, 0.000000;;, + 86;3;-0.000000, 0.705560, 0.000000;;, + 87;3; 0.000000, 0.705560,-0.000000;;, + 88;3; 0.000000, 0.705560, 0.000000;;, + 89;3; 0.000000, 0.705560, 0.000000;;, + 90;3; 0.000000, 0.705560, 0.000000;;, + 91;3; 0.000000, 0.705560, 0.000000;;, + 92;3; 0.000000, 0.705560, 0.000000;;, + 93;3; 0.000000, 0.705560, 0.000000;;, + 94;3; 0.000000, 0.705560, 0.000000;;, + 95;3; 0.000000, 0.705560, 0.000000;;, + 96;3; 0.000000, 0.705560,-0.000000;;, + 97;3; 0.000000, 0.705560,-0.000000;;, + 98;3; 0.000000, 0.705560, 0.000000;;, + 99;3; 0.000000, 0.705560, 0.000000;;, + 100;3;-0.000000, 0.705560,-0.000000;;, + 101;3; 0.000000, 0.705560,-0.000000;;, + 102;3; 0.000000, 0.705559, 0.000000;;, + 103;3;-0.000000, 0.705560,-0.000000;;, + 104;3;-0.000000, 0.705559,-0.000000;;, + 105;3;-0.000000, 0.705560,-0.000000;;, + 106;3; 0.000000, 0.705560, 0.000000;;, + 107;3;-0.000000, 0.705559,-0.000000;;, + 108;3; 0.000000, 0.705560,-0.000000;;, + 109;3; 0.000000, 0.705559,-0.000000;;, + 110;3;-0.000000, 0.705559, 0.000000;;, + 111;3; 0.000000, 0.705560,-0.000000;;, + 112;3; 0.000000, 0.705560, 0.000000;;, + 113;3; 0.000000, 0.705560,-0.000000;;, + 114;3;-0.000000, 0.705559, 0.000000;;, + 115;3; 0.000000, 0.705560, 0.000000;;, + 116;3;-0.000000, 0.705560,-0.000000;;, + 117;3; 0.000000, 0.705560, 0.000000;;, + 118;3; 0.000000, 0.705560,-0.000000;;, + 119;3; 0.000000, 0.705560, 0.000000;;, + 120;3; 0.000000, 0.705560,-0.000000;;, + 121;3; 0.000000, 0.705560,-0.000000;;, + 122;3;-0.000000, 0.705560,-0.000000;;, + 123;3; 0.000000, 0.705560, 0.000000;;, + 124;3; 0.000000, 0.705560, 0.000000;;, + 125;3; 0.000000, 0.705560, 0.000000;;, + 126;3;-0.000000, 0.705560, 0.000000;;, + 127;3;-0.000000, 0.705560, 0.000000;;, + 128;3;-0.000000, 0.705560,-0.000000;;, + 129;3; 0.000000, 0.705560, 0.000000;;, + 130;3; 0.000000, 0.705559, 0.000000;;, + 131;3; 0.000000, 0.705560, 0.000000;;, + 132;3; 0.000000, 0.705560, 0.000000;;, + 133;3; 0.000000, 0.705560,-0.000000;;, + 134;3; 0.000000, 0.705560, 0.000000;;, + 135;3; 0.000000, 0.705560, 0.000000;;, + 136;3;-0.000000, 0.705560,-0.000000;;, + 137;3; 0.000000, 0.705560, 0.000000;;, + 138;3;-0.000000, 0.705559, 0.000000;;, + 139;3;-0.000000, 0.705560,-0.000000;;, + 140;3; 0.000000, 0.705560, 0.000000;;, + 141;3; 0.000000, 0.705560, 0.000000;;, + 142;3; 0.000000, 0.705560, 0.000000;;, + 143;3; 0.000000, 0.705560,-0.000000;;, + 144;3; 0.000000, 0.705560, 0.000000;;, + 145;3; 0.000000, 0.705560,-0.000000;;, + 146;3; 0.000000, 0.705560, 0.000000;;, + 147;3; 0.000000, 0.705560,-0.000000;;, + 148;3; 0.000000, 0.705560, 0.000000;;, + 149;3; 0.000000, 0.705560, 0.000000;;, + 150;3; 0.000000, 0.705560, 0.000000;;, + 151;3; 0.000000, 0.705560, 0.000000;;, + 152;3; 0.000000, 0.705560, 0.000000;;, + 153;3; 0.000000, 0.705560, 0.000000;;, + 154;3; 0.000000, 0.705560, 0.000000;;, + 155;3; 0.000000, 0.705560, 0.000000;;, + 156;3; 0.000000, 0.705560, 0.000000;;, + 157;3; 0.000000, 0.705560, 0.000000;;, + 158;3; 0.000000, 0.705560, 0.000000;;, + 159;3; 0.000000, 0.705560, 0.000000;;, + 160;3; 0.000000, 0.705560, 0.000000;;, + 161;3; 0.000000, 0.705560, 0.000000;;, + 162;3; 0.000000, 0.705560, 0.000000;;, + 163;3; 0.000000, 0.705560, 0.000000;;, + 164;3; 0.000000, 0.705560, 0.000000;;, + 165;3; 0.000000, 0.705560, 0.000000;;, + 166;3; 0.000000, 0.705560, 0.000000;;, + 167;3; 0.000000, 0.705560, 0.000000;;, + 168;3; 0.000000, 0.705560, 0.000000;;, + 169;3; 0.000000, 0.705560, 0.000000;;, + 170;3; 0.000000, 0.705560, 0.000000;;, + 171;3; 0.000000, 0.705560, 0.000000;;, + 172;3; 0.000000, 0.705560, 0.000000;;, + 173;3; 0.000000, 0.705560, 0.000000;;, + 174;3; 0.000000, 0.705560, 0.000000;;, + 175;3; 0.000000, 0.705560, 0.000000;;, + 176;3; 0.000000, 0.705560, 0.000000;;, + 177;3; 0.000000, 0.705560, 0.000000;;, + 178;3; 0.000000, 0.705560, 0.000000;;, + 179;3; 0.000000, 0.705560, 0.000000;;, + 180;3; 0.000000, 0.705560, 0.000000;;, + 181;3; 0.000000, 0.705560, 0.000000;;, + 182;3; 0.000000, 0.705560, 0.000000;;, + 183;3; 0.000000, 0.705560, 0.000000;;, + 184;3; 0.000000, 0.705560, 0.000000;;, + 185;3; 0.000000, 0.705560, 0.000000;;, + 186;3; 0.000000, 0.705560, 0.000000;;, + 187;3; 0.000000, 0.705560, 0.000000;;, + 188;3; 0.000000, 0.705560, 0.000000;;, + 189;3; 0.000000, 0.705560, 0.000000;;, + 190;3; 0.000000, 0.705560, 0.000000;;, + 191;3; 0.000000, 0.705560, 0.000000;;, + 192;3; 0.000000, 0.705560, 0.000000;;, + 193;3; 0.000000, 0.705560, 0.000000;;, + 194;3; 0.000000, 0.705560, 0.000000;;, + 195;3; 0.000000, 0.705560, 0.000000;;, + 196;3; 0.000000, 0.705560, 0.000000;;, + 197;3; 0.000000, 0.705560, 0.000000;;, + 198;3; 0.000000, 0.705560, 0.000000;;, + 199;3; 0.000000, 0.705560, 0.000000;;, + 200;3; 0.000000, 0.705560, 0.000000;;, + 201;3; 0.000000, 0.705560, 0.000000;;, + 202;3; 0.000000, 0.705560, 0.000000;;, + 203;3; 0.000000, 0.705560, 0.000000;;, + 204;3; 0.000000, 0.705560, 0.000000;;, + 205;3; 0.000000, 0.705560, 0.000000;;, + 206;3; 0.000000, 0.705560, 0.000000;;, + 207;3; 0.000000, 0.705560, 0.000000;;, + 208;3; 0.000000, 0.705560, 0.000000;;, + 209;3; 0.000000, 0.705560, 0.000000;;, + 210;3; 0.000000, 0.705560, 0.000000;;, + 211;3; 0.000000, 0.705560, 0.000000;;, + 212;3; 0.000000, 0.705560, 0.000000;;, + 213;3; 0.000000, 0.705560, 0.000000;;, + 214;3; 0.000000, 0.705560, 0.000000;;, + 215;3; 0.000000, 0.705560, 0.000000;;, + 216;3; 0.000000, 0.705560, 0.000000;;, + 217;3; 0.000000, 0.705560, 0.000000;;, + 218;3; 0.000000, 0.705560, 0.000000;;, + 219;3; 0.000000, 0.705560, 0.000000;;, + 220;3; 0.000000, 0.705560, 0.000000;;, + 221;3; 0.000000, 0.705560, 0.000000;;, + 222;3; 0.000000, 0.705560, 0.000000;;, + 223;3; 0.000000, 0.705560, 0.000000;;, + 224;3; 0.000000, 0.705560, 0.000000;;, + 225;3; 0.000000, 0.705560, 0.000000;;, + 226;3; 0.000000, 0.705560, 0.000000;;, + 227;3; 0.000000, 0.705560, 0.000000;;, + 228;3; 0.000000, 0.705560, 0.000000;;, + 229;3; 0.000000, 0.705560, 0.000000;;, + 230;3; 0.000000, 0.705560, 0.000000;;, + 231;3; 0.000000, 0.705560, 0.000000;;, + 232;3; 0.000000, 0.705560, 0.000000;;, + 233;3; 0.000000, 0.705560, 0.000000;;, + 234;3; 0.000000, 0.705560, 0.000000;;, + 235;3; 0.000000, 0.705560, 0.000000;;, + 236;3; 0.000000, 0.705560, 0.000000;;, + 237;3; 0.000000, 0.705560, 0.000000;;, + 238;3; 0.000000, 0.705560, 0.000000;;, + 239;3; 0.000000, 0.705560, 0.000000;;, + 240;3; 0.000000, 0.705560, 0.000000;;, + 241;3; 0.000000, 0.705560, 0.000000;;, + 242;3; 0.000000, 0.705560, 0.000000;;, + 243;3; 0.000000, 0.705560, 0.000000;;, + 244;3; 0.000000, 0.705560, 0.000000;;, + 245;3; 0.000000, 0.705560, 0.000000;;, + 246;3; 0.000000, 0.705560, 0.000000;;, + 247;3; 0.000000, 0.705560, 0.000000;;, + 248;3; 0.000000, 0.705560, 0.000000;;, + 249;3; 0.000000, 0.705560, 0.000000;;; + } + } + Animation { + {Armature_Bone_029} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.704993,-0.520003, 0.286271,-0.388111;;, + 1;4;-0.704853,-0.520186, 0.286371,-0.388033;;, + 2;4;-0.704427,-0.520737, 0.286675,-0.387799;;, + 3;4;-0.703716,-0.521659, 0.287182,-0.387408;;, + 4;4;-0.702725,-0.522943, 0.287889,-0.386862;;, + 5;4;-0.701470,-0.524571, 0.288786,-0.386171;;, + 6;4;-0.699974,-0.526511, 0.289853,-0.385348;;, + 7;4;-0.698274,-0.528714, 0.291066,-0.384412;;, + 8;4;-0.696419,-0.531119, 0.292390,-0.383391;;, + 9;4;-0.694466,-0.533650, 0.293784,-0.382316;;, + 10;4;-0.692480,-0.536226, 0.295201,-0.381222;;, + 11;4;-0.690527,-0.538758, 0.296595,-0.380147;;, + 12;4;-0.688672,-0.541162, 0.297919,-0.379125;;, + 13;4;-0.686972,-0.543365, 0.299132,-0.378190;;, + 14;4;-0.685476,-0.545305, 0.300200,-0.377366;;, + 15;4;-0.684220,-0.546933, 0.301096,-0.376675;;, + 16;4;-0.683230,-0.548217, 0.301803,-0.376130;;, + 17;4;-0.682519,-0.549139, 0.302310,-0.375738;;, + 18;4;-0.682093,-0.549690, 0.302614,-0.375504;;, + 19;4;-0.681952,-0.549873, 0.302714,-0.375426;;, + 20;4;-0.682000,-0.549871, 0.302713,-0.375453;;, + 21;4;-0.682151,-0.549854, 0.302704,-0.375536;;, + 22;4;-0.682413,-0.549803, 0.302676,-0.375680;;, + 23;4;-0.682797,-0.549694, 0.302616,-0.375892;;, + 24;4;-0.683312,-0.549502, 0.302510,-0.376175;;, + 25;4;-0.683965,-0.549196, 0.302342,-0.376534;;, + 26;4;-0.684761,-0.548743, 0.302092,-0.376973;;, + 27;4;-0.685703,-0.548109, 0.301743,-0.377491;;, + 28;4;-0.686790,-0.547261, 0.301277,-0.378090;;, + 29;4;-0.688016,-0.546170, 0.300676,-0.378765;;, + 30;4;-0.689373,-0.544811, 0.299928,-0.379511;;, + 31;4;-0.690847,-0.543166, 0.299022,-0.380323;;, + 32;4;-0.692423,-0.541227, 0.297955,-0.381191;;, + 33;4;-0.694085,-0.538991, 0.296724,-0.382106;;, + 34;4;-0.695817,-0.536465, 0.295333,-0.383059;;, + 35;4;-0.697601,-0.533659, 0.293789,-0.384041;;, + 36;4;-0.699423,-0.530592, 0.292100,-0.385044;;, + 37;4;-0.701269,-0.527280, 0.290277,-0.386061;;, + 38;4;-0.703129,-0.523744, 0.288330,-0.387085;;, + 39;4;-0.704993,-0.520003, 0.286271,-0.388111;;, + 40;4;-0.707647,-0.512608, 0.280938,-0.387847;;, + 41;4;-0.711902,-0.498035, 0.269077,-0.384976;;, + 42;4;-0.717771,-0.476293, 0.250630,-0.379489;;, + 43;4;-0.725237,-0.447550, 0.225672,-0.371434;;, + 44;4;-0.734239,-0.412174, 0.194449,-0.360927;;, + 45;4;-0.744668,-0.370768, 0.157405,-0.348169;;, + 46;4;-0.756356,-0.324203, 0.115217,-0.333456;;, + 47;4;-0.769080,-0.273614, 0.068799,-0.317178;;, + 48;4;-0.782562,-0.220378, 0.019285,-0.299815;;, + 49;4;-0.796479,-0.166054,-0.032017,-0.281912;;, + 50;4;-0.810487,-0.112290,-0.083699,-0.264052;;, + 51;4;-0.824238,-0.060722,-0.134341,-0.246816;;, + 52;4;-0.837402,-0.012866,-0.182608,-0.230748;;, + 53;4;-0.849692, 0.029968,-0.227319,-0.216321;;, + 54;4;-0.860869, 0.066728,-0.267506,-0.203920;;, + 55;4;-0.870752, 0.096636,-0.302428,-0.193832;;, + 56;4;-0.879216, 0.119186,-0.331574,-0.186252;;, + 57;4;-0.886185, 0.134104,-0.354637,-0.181288;;, + 58;4;-0.891626, 0.141312,-0.371480,-0.178982;;, + 59;4;-0.895541, 0.140884,-0.382104,-0.179318;;, + 60;4;-0.897098, 0.125652,-0.383212,-0.184541;;, + 61;4;-0.895398, 0.088289,-0.371288,-0.196940;;, + 62;4;-0.890560, 0.030294,-0.346944,-0.216019;;, + 63;4;-0.883080,-0.044033,-0.312354,-0.240376;;, + 64;4;-0.873896,-0.127290,-0.271471,-0.267599;;, + 65;4;-0.864274,-0.209965,-0.229542,-0.294594;;, + 66;4;-0.855523,-0.282605,-0.191915,-0.318290;;, + 67;4;-0.848696,-0.337960,-0.162821,-0.336335;;, + 68;4;-0.844437,-0.371924,-0.144782,-0.347402;;, + 69;4;-0.843007,-0.383191,-0.138755,-0.351072;;, + 70;4;-0.843189,-0.381955,-0.139430,-0.350681;;, + 71;4;-0.843736,-0.378223,-0.141462,-0.349499;;, + 72;4;-0.844648,-0.371969,-0.144859,-0.347518;;, + 73;4;-0.845920,-0.363188,-0.149616,-0.344733;;, + 74;4;-0.847545,-0.351894,-0.155713,-0.341149;;, + 75;4;-0.849509,-0.338133,-0.163117,-0.336779;;, + 76;4;-0.851797,-0.321979,-0.171775,-0.331644;;, + 77;4;-0.854382,-0.303542,-0.181615,-0.325778;;, + 78;4;-0.857237,-0.282970,-0.192540,-0.319225;;, + 79;4;-0.860325,-0.260455,-0.204434,-0.312044;;, + 80;4;-0.863603,-0.236225,-0.217156,-0.304306;;, + 81;4;-0.867023,-0.210552,-0.230544,-0.296094;;, + 82;4;-0.870532,-0.183742,-0.244416,-0.287504;;, + 83;4;-0.874072,-0.156131,-0.258576,-0.278639;;, + 84;4;-0.877585,-0.128077,-0.272816,-0.269612;;, + 85;4;-0.881009,-0.099950,-0.286925,-0.260538;;, + 86;4;-0.884286,-0.072120,-0.300692,-0.251534;;, + 87;4;-0.887359,-0.044946,-0.313914,-0.242712;;, + 88;4;-0.890175,-0.018770,-0.326402,-0.234179;;, + 89;4;-0.892689, 0.006096,-0.337985,-0.226034;;, + 90;4;-0.894859, 0.029376,-0.348512,-0.218366;;, + 91;4;-0.896653, 0.050831,-0.357856,-0.211249;;, + 92;4;-0.898043, 0.070265,-0.365914,-0.204748;;, + 93;4;-0.899011, 0.087518,-0.372605,-0.198911;;, + 94;4;-0.899542, 0.102474,-0.377873,-0.193779;;, + 95;4;-0.899630, 0.115048,-0.381679,-0.189379;;, + 96;4;-0.899270, 0.125189,-0.384004,-0.185727;;, + 97;4;-0.898465, 0.132872,-0.384842,-0.182833;;, + 98;4;-0.897219, 0.138098,-0.384203,-0.180699;;, + 99;4;-0.895541, 0.140884,-0.382104,-0.179318;;, + 100;4;-0.892727, 0.138712,-0.375792,-0.179532;;, + 101;4;-0.888054, 0.128951,-0.362424,-0.182213;;, + 102;4;-0.881523, 0.111562,-0.341984,-0.187379;;, + 103;4;-0.873176, 0.086660,-0.314605,-0.194994;;, + 104;4;-0.863108, 0.054561,-0.280613,-0.204959;;, + 105;4;-0.851474, 0.015824,-0.240561,-0.217096;;, + 106;4;-0.838496,-0.028723,-0.195257,-0.231141;;, + 107;4;-0.824468,-0.077975,-0.145771,-0.246738;;, + 108;4;-0.809744,-0.130568,-0.093409,-0.263449;;, + 109;4;-0.794726,-0.184943,-0.039659,-0.280770;;, + 110;4;-0.779841,-0.239428, 0.013894,-0.298162;;, + 111;4;-0.765510,-0.292350, 0.065670,-0.315082;;, + 112;4;-0.752126,-0.342138, 0.114196,-0.331021;;, + 113;4;-0.740028,-0.387418, 0.158189,-0.345533;;, + 114;4;-0.729489,-0.427068, 0.196609,-0.358252;;, + 115;4;-0.720709,-0.460240, 0.228680,-0.368902;;, + 116;4;-0.713823,-0.486358, 0.253883,-0.377293;;, + 117;4;-0.708900,-0.505088, 0.271926,-0.383314;;, + 118;4;-0.705963,-0.516294, 0.282707,-0.386918;;, + 119;4;-0.704993,-0.520003, 0.286271,-0.388111;;, + 120;4;-0.711363,-0.519362, 0.280800,-0.380526;;, + 121;4;-0.730077,-0.516320, 0.264016,-0.359582;;, + 122;4;-0.756183,-0.509092, 0.238772,-0.333816;;, + 123;4;-0.780559,-0.496997, 0.211924,-0.315939;;, + 124;4;-0.796561,-0.480954, 0.189332,-0.313573;;, + 125;4;-0.810081,-0.456227, 0.166718,-0.322386;;, + 126;4;-0.827465,-0.419671, 0.139810,-0.335998;;, + 127;4;-0.844594,-0.381036, 0.114488,-0.350662;;, + 128;4;-0.856317,-0.353533, 0.097643,-0.361206;;, + 129;4;-0.860204,-0.344208, 0.092151,-0.364801;;, + 130;4;-0.849864,-0.363077, 0.105794,-0.356978;;, + 131;4;-0.820741,-0.416227, 0.144221,-0.334945;;, + 132;4;-0.783348,-0.484472, 0.193561,-0.306654;;, + 133;4;-0.754225,-0.537621, 0.231989,-0.284621;;, + 134;4;-0.743886,-0.556491, 0.245631,-0.276798;;, + 135;4;-0.753367,-0.514166, 0.215534,-0.297647;;, + 136;4;-0.780072,-0.394949, 0.130760,-0.356371;;, + 137;4;-0.814361,-0.241875, 0.021910,-0.431773;;, + 138;4;-0.841067,-0.122658,-0.062864,-0.490497;;, + 139;4;-0.850548,-0.080333,-0.092961,-0.511346;;, + 140;4;-0.841076,-0.123591,-0.064558,-0.490481;;, + 141;4;-0.814392,-0.245027, 0.016186,-0.431717;;, + 142;4;-0.780120,-0.399855, 0.121848,-0.356284;;, + 143;4;-0.753407,-0.518308, 0.208010,-0.297574;;, + 144;4;-0.743886,-0.556491, 0.245631,-0.276798;;, + 145;4;-0.740388,-0.549106, 0.256768,-0.286767;;, + 146;4;-0.730643,-0.539206, 0.268330,-0.314650;;, + 147;4;-0.718157,-0.529231, 0.278208,-0.350403;;, + 148;4;-0.708441,-0.522314, 0.284352,-0.378233;;, + 149;4;-0.704993,-0.520003, 0.286271,-0.388111;;, + 150;4;-0.704993,-0.520003, 0.286271,-0.388111;;, + 151;4;-0.704993,-0.520003, 0.286271,-0.388111;;, + 152;4;-0.704993,-0.520003, 0.286271,-0.388111;;, + 153;4;-0.704993,-0.520003, 0.286271,-0.388111;;, + 154;4;-0.704993,-0.520003, 0.286271,-0.388111;;, + 155;4;-0.704993,-0.520003, 0.286271,-0.388111;;, + 156;4;-0.704993,-0.520003, 0.286271,-0.388111;;, + 157;4;-0.704993,-0.520003, 0.286271,-0.388111;;, + 158;4;-0.704993,-0.520003, 0.286271,-0.388111;;, + 159;4;-0.704993,-0.520003, 0.286271,-0.388111;;, + 160;4;-0.704993,-0.520003, 0.286271,-0.388111;;, + 161;4;-0.704993,-0.520003, 0.286271,-0.388111;;, + 162;4;-0.704993,-0.520003, 0.286271,-0.388111;;, + 163;4;-0.704993,-0.520003, 0.286271,-0.388111;;, + 164;4;-0.704993,-0.520003, 0.286271,-0.388111;;, + 165;4;-0.704993,-0.520003, 0.286271,-0.388111;;, + 166;4;-0.704993,-0.520003, 0.286271,-0.388111;;, + 167;4;-0.704993,-0.520003, 0.286271,-0.388111;;, + 168;4;-0.704993,-0.520003, 0.286271,-0.388111;;, + 169;4;-0.704993,-0.520003, 0.286271,-0.388111;;, + 170;4;-0.704993,-0.520003, 0.286271,-0.388111;;, + 171;4;-0.704993,-0.520003, 0.286271,-0.388111;;, + 172;4;-0.704993,-0.520003, 0.286271,-0.388111;;, + 173;4;-0.704993,-0.520003, 0.286271,-0.388111;;, + 174;4;-0.704993,-0.520003, 0.286271,-0.388111;;, + 175;4;-0.704993,-0.520003, 0.286271,-0.388111;;, + 176;4;-0.704993,-0.520003, 0.286271,-0.388111;;, + 177;4;-0.704993,-0.520003, 0.286271,-0.388111;;, + 178;4;-0.704993,-0.520003, 0.286271,-0.388111;;, + 179;4;-0.704993,-0.520003, 0.286271,-0.388111;;, + 180;4;-0.704993,-0.520003, 0.286271,-0.388111;;, + 181;4;-0.704993,-0.520003, 0.286271,-0.388111;;, + 182;4;-0.704993,-0.520003, 0.286271,-0.388111;;, + 183;4;-0.704993,-0.520003, 0.286271,-0.388111;;, + 184;4;-0.704993,-0.520003, 0.286271,-0.388111;;, + 185;4;-0.704993,-0.520003, 0.286271,-0.388111;;, + 186;4;-0.704993,-0.520003, 0.286271,-0.388111;;, + 187;4;-0.704993,-0.520003, 0.286271,-0.388111;;, + 188;4;-0.704993,-0.520003, 0.286271,-0.388111;;, + 189;4;-0.704993,-0.520003, 0.286271,-0.388111;;, + 190;4;-0.704993,-0.520003, 0.286271,-0.388111;;, + 191;4;-0.704993,-0.520003, 0.286271,-0.388111;;, + 192;4;-0.704993,-0.520003, 0.286271,-0.388111;;, + 193;4;-0.704993,-0.520003, 0.286271,-0.388111;;, + 194;4;-0.704993,-0.520003, 0.286271,-0.388111;;, + 195;4;-0.704993,-0.520003, 0.286271,-0.388111;;, + 196;4;-0.704993,-0.520003, 0.286271,-0.388111;;, + 197;4;-0.704993,-0.520003, 0.286271,-0.388111;;, + 198;4;-0.704993,-0.520003, 0.286271,-0.388111;;, + 199;4;-0.704993,-0.520003, 0.286271,-0.388111;;, + 200;4;-0.704993,-0.520003, 0.286271,-0.388111;;, + 201;4;-0.704993,-0.520003, 0.286271,-0.388111;;, + 202;4;-0.704993,-0.520003, 0.286271,-0.388111;;, + 203;4;-0.704993,-0.520003, 0.286271,-0.388111;;, + 204;4;-0.704993,-0.520003, 0.286271,-0.388111;;, + 205;4;-0.704993,-0.520003, 0.286271,-0.388111;;, + 206;4;-0.704993,-0.520003, 0.286271,-0.388111;;, + 207;4;-0.704993,-0.520003, 0.286271,-0.388111;;, + 208;4;-0.704993,-0.520003, 0.286271,-0.388111;;, + 209;4;-0.704993,-0.520003, 0.286271,-0.388111;;, + 210;4;-0.704993,-0.520003, 0.286271,-0.388111;;, + 211;4;-0.704993,-0.520003, 0.286271,-0.388111;;, + 212;4;-0.704993,-0.520003, 0.286271,-0.388111;;, + 213;4;-0.704993,-0.520003, 0.286271,-0.388111;;, + 214;4;-0.704993,-0.520003, 0.286271,-0.388111;;, + 215;4;-0.704993,-0.520003, 0.286271,-0.388111;;, + 216;4;-0.704993,-0.520003, 0.286271,-0.388111;;, + 217;4;-0.704993,-0.520003, 0.286271,-0.388111;;, + 218;4;-0.704993,-0.520003, 0.286271,-0.388111;;, + 219;4;-0.704993,-0.520003, 0.286271,-0.388111;;, + 220;4;-0.704993,-0.520003, 0.286271,-0.388111;;, + 221;4;-0.704993,-0.520003, 0.286271,-0.388111;;, + 222;4;-0.704993,-0.520003, 0.286271,-0.388111;;, + 223;4;-0.704993,-0.520003, 0.286271,-0.388111;;, + 224;4;-0.704993,-0.520003, 0.286271,-0.388111;;, + 225;4;-0.704993,-0.520003, 0.286271,-0.388111;;, + 226;4;-0.704993,-0.520003, 0.286271,-0.388111;;, + 227;4;-0.704993,-0.520003, 0.286271,-0.388111;;, + 228;4;-0.704993,-0.520003, 0.286271,-0.388111;;, + 229;4;-0.704993,-0.520003, 0.286271,-0.388111;;, + 230;4;-0.704993,-0.520003, 0.286271,-0.388111;;, + 231;4;-0.704993,-0.520003, 0.286271,-0.388111;;, + 232;4;-0.704993,-0.520003, 0.286271,-0.388111;;, + 233;4;-0.704993,-0.520003, 0.286271,-0.388111;;, + 234;4;-0.704993,-0.520003, 0.286271,-0.388111;;, + 235;4;-0.704993,-0.520003, 0.286271,-0.388111;;, + 236;4;-0.704993,-0.520003, 0.286271,-0.388111;;, + 237;4;-0.704993,-0.520003, 0.286271,-0.388111;;, + 238;4;-0.704993,-0.520003, 0.286271,-0.388111;;, + 239;4;-0.704993,-0.520003, 0.286271,-0.388111;;, + 240;4;-0.704993,-0.520003, 0.286271,-0.388111;;, + 241;4;-0.704993,-0.520003, 0.286271,-0.388111;;, + 242;4;-0.704993,-0.520003, 0.286271,-0.388111;;, + 243;4;-0.704993,-0.520003, 0.286271,-0.388111;;, + 244;4;-0.704993,-0.520003, 0.286271,-0.388111;;, + 245;4;-0.704993,-0.520003, 0.286271,-0.388111;;, + 246;4;-0.704993,-0.520003, 0.286271,-0.388111;;, + 247;4;-0.704993,-0.520003, 0.286271,-0.388111;;, + 248;4;-0.704993,-0.520003, 0.286271,-0.388111;;, + 249;4;-0.704993,-0.520003, 0.286271,-0.388111;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3;-0.000000, 1.026680, 0.000000;;, + 1;3;-0.000000, 1.026680, 0.000000;;, + 2;3;-0.000000, 1.026680, 0.000000;;, + 3;3;-0.000000, 1.026680, 0.000000;;, + 4;3;-0.000000, 1.026680, 0.000000;;, + 5;3;-0.000000, 1.026680, 0.000000;;, + 6;3;-0.000000, 1.026680, 0.000000;;, + 7;3;-0.000000, 1.026680, 0.000000;;, + 8;3;-0.000000, 1.026680, 0.000000;;, + 9;3;-0.000000, 1.026680, 0.000000;;, + 10;3;-0.000000, 1.026680, 0.000000;;, + 11;3;-0.000000, 1.026680, 0.000000;;, + 12;3;-0.000000, 1.026680, 0.000000;;, + 13;3;-0.000000, 1.026680, 0.000000;;, + 14;3;-0.000000, 1.026680, 0.000000;;, + 15;3;-0.000000, 1.026680, 0.000000;;, + 16;3;-0.000000, 1.026680, 0.000000;;, + 17;3;-0.000000, 1.026680, 0.000000;;, + 18;3;-0.000000, 1.026680, 0.000000;;, + 19;3;-0.000000, 1.026680, 0.000000;;, + 20;3;-0.000000, 1.026680, 0.000000;;, + 21;3;-0.000000, 1.026680, 0.000000;;, + 22;3;-0.000000, 1.026680, 0.000000;;, + 23;3;-0.000000, 1.026680, 0.000000;;, + 24;3;-0.000000, 1.026680, 0.000000;;, + 25;3;-0.000000, 1.026680, 0.000000;;, + 26;3;-0.000000, 1.026680, 0.000000;;, + 27;3;-0.000000, 1.026680, 0.000000;;, + 28;3;-0.000000, 1.026680, 0.000000;;, + 29;3;-0.000000, 1.026680, 0.000000;;, + 30;3;-0.000000, 1.026680, 0.000000;;, + 31;3;-0.000000, 1.026680, 0.000000;;, + 32;3;-0.000000, 1.026680, 0.000000;;, + 33;3;-0.000000, 1.026680, 0.000000;;, + 34;3;-0.000000, 1.026680, 0.000000;;, + 35;3;-0.000000, 1.026680, 0.000000;;, + 36;3;-0.000000, 1.026680, 0.000000;;, + 37;3;-0.000000, 1.026680, 0.000000;;, + 38;3;-0.000000, 1.026680, 0.000000;;, + 39;3;-0.000000, 1.026680, 0.000000;;, + 40;3; 0.000000, 1.026680,-0.000000;;, + 41;3; 0.000000, 1.026680, 0.000000;;, + 42;3; 0.000000, 1.026680,-0.000000;;, + 43;3;-0.000000, 1.026679,-0.000000;;, + 44;3;-0.000000, 1.026680,-0.000000;;, + 45;3;-0.000000, 1.026680, 0.000000;;, + 46;3; 0.000000, 1.026680,-0.000000;;, + 47;3; 0.000000, 1.026680, 0.000000;;, + 48;3; 0.000000, 1.026680,-0.000000;;, + 49;3; 0.000000, 1.026680,-0.000000;;, + 50;3; 0.000000, 1.026679,-0.000000;;, + 51;3; 0.000000, 1.026680,-0.000000;;, + 52;3; 0.000000, 1.026679, 0.000000;;, + 53;3; 0.000000, 1.026680,-0.000000;;, + 54;3; 0.000000, 1.026680, 0.000000;;, + 55;3; 0.000000, 1.026680,-0.000000;;, + 56;3; 0.000000, 1.026680,-0.000000;;, + 57;3;-0.000000, 1.026679, 0.000000;;, + 58;3;-0.000000, 1.026680,-0.000000;;, + 59;3;-0.000000, 1.026679,-0.000000;;, + 60;3; 0.000000, 1.026680,-0.000000;;, + 61;3;-0.000000, 1.026680,-0.000000;;, + 62;3;-0.000000, 1.026680,-0.000000;;, + 63;3; 0.000000, 1.026679,-0.000000;;, + 64;3; 0.000000, 1.026680,-0.000000;;, + 65;3; 0.000000, 1.026680,-0.000000;;, + 66;3;-0.000000, 1.026680, 0.000000;;, + 67;3;-0.000000, 1.026679, 0.000000;;, + 68;3; 0.000000, 1.026680,-0.000000;;, + 69;3; 0.000000, 1.026680, 0.000000;;, + 70;3; 0.000000, 1.026679,-0.000000;;, + 71;3; 0.000000, 1.026680,-0.000000;;, + 72;3; 0.000000, 1.026680,-0.000000;;, + 73;3; 0.000000, 1.026680,-0.000000;;, + 74;3; 0.000000, 1.026680,-0.000000;;, + 75;3; 0.000000, 1.026680,-0.000000;;, + 76;3; 0.000000, 1.026680,-0.000000;;, + 77;3; 0.000000, 1.026680,-0.000000;;, + 78;3;-0.000000, 1.026680, 0.000000;;, + 79;3;-0.000000, 1.026680,-0.000000;;, + 80;3; 0.000000, 1.026679,-0.000000;;, + 81;3; 0.000000, 1.026680,-0.000000;;, + 82;3; 0.000000, 1.026680,-0.000000;;, + 83;3; 0.000000, 1.026679,-0.000000;;, + 84;3; 0.000000, 1.026680,-0.000000;;, + 85;3; 0.000000, 1.026680,-0.000000;;, + 86;3; 0.000000, 1.026679,-0.000000;;, + 87;3; 0.000000, 1.026679,-0.000000;;, + 88;3; 0.000000, 1.026679,-0.000000;;, + 89;3; 0.000000, 1.026679,-0.000000;;, + 90;3; 0.000000, 1.026680,-0.000000;;, + 91;3; 0.000000, 1.026679,-0.000000;;, + 92;3; 0.000000, 1.026679,-0.000000;;, + 93;3;-0.000000, 1.026680,-0.000000;;, + 94;3; 0.000000, 1.026680,-0.000000;;, + 95;3; 0.000000, 1.026680,-0.000000;;, + 96;3; 0.000000, 1.026679,-0.000000;;, + 97;3;-0.000000, 1.026679,-0.000000;;, + 98;3;-0.000000, 1.026679, 0.000000;;, + 99;3;-0.000000, 1.026679,-0.000000;;, + 100;3; 0.000000, 1.026680, 0.000000;;, + 101;3;-0.000000, 1.026680,-0.000000;;, + 102;3; 0.000000, 1.026680,-0.000000;;, + 103;3; 0.000000, 1.026680,-0.000000;;, + 104;3; 0.000000, 1.026680, 0.000000;;, + 105;3; 0.000000, 1.026679, 0.000000;;, + 106;3; 0.000000, 1.026680, 0.000000;;, + 107;3; 0.000000, 1.026680, 0.000000;;, + 108;3; 0.000000, 1.026680, 0.000000;;, + 109;3;-0.000000, 1.026680, 0.000000;;, + 110;3;-0.000000, 1.026679, 0.000000;;, + 111;3;-0.000000, 1.026679,-0.000000;;, + 112;3;-0.000000, 1.026680, 0.000000;;, + 113;3; 0.000000, 1.026680, 0.000000;;, + 114;3; 0.000000, 1.026680,-0.000000;;, + 115;3; 0.000000, 1.026680, 0.000000;;, + 116;3; 0.000000, 1.026680, 0.000000;;, + 117;3;-0.000000, 1.026680, 0.000000;;, + 118;3; 0.000000, 1.026680, 0.000000;;, + 119;3;-0.000000, 1.026680, 0.000000;;, + 120;3;-0.000000, 1.026680, 0.000000;;, + 121;3; 0.000000, 1.026680, 0.000000;;, + 122;3;-0.000000, 1.026679, 0.000000;;, + 123;3; 0.000000, 1.026680, 0.000000;;, + 124;3;-0.000000, 1.026680,-0.000000;;, + 125;3;-0.000000, 1.026680,-0.000000;;, + 126;3;-0.000000, 1.026680,-0.000000;;, + 127;3; 0.000000, 1.026680,-0.000000;;, + 128;3; 0.000000, 1.026680,-0.000000;;, + 129;3;-0.000000, 1.026680, 0.000000;;, + 130;3;-0.000000, 1.026680, 0.000000;;, + 131;3;-0.000000, 1.026680, 0.000000;;, + 132;3;-0.000000, 1.026680, 0.000000;;, + 133;3;-0.000000, 1.026680, 0.000000;;, + 134;3;-0.000000, 1.026680, 0.000000;;, + 135;3;-0.000000, 1.026679, 0.000000;;, + 136;3; 0.000000, 1.026680, 0.000000;;, + 137;3; 0.000000, 1.026680, 0.000000;;, + 138;3; 0.000000, 1.026680, 0.000000;;, + 139;3; 0.000000, 1.026680, 0.000000;;, + 140;3;-0.000000, 1.026680,-0.000000;;, + 141;3;-0.000000, 1.026680, 0.000000;;, + 142;3;-0.000000, 1.026680, 0.000000;;, + 143;3; 0.000000, 1.026679, 0.000000;;, + 144;3; 0.000000, 1.026680, 0.000000;;, + 145;3; 0.000000, 1.026680,-0.000000;;, + 146;3;-0.000000, 1.026680, 0.000000;;, + 147;3;-0.000000, 1.026680,-0.000000;;, + 148;3; 0.000000, 1.026680, 0.000000;;, + 149;3;-0.000000, 1.026680, 0.000000;;, + 150;3;-0.000000, 1.026680, 0.000000;;, + 151;3;-0.000000, 1.026680, 0.000000;;, + 152;3;-0.000000, 1.026680, 0.000000;;, + 153;3;-0.000000, 1.026680, 0.000000;;, + 154;3;-0.000000, 1.026680, 0.000000;;, + 155;3;-0.000000, 1.026680, 0.000000;;, + 156;3;-0.000000, 1.026680, 0.000000;;, + 157;3;-0.000000, 1.026680, 0.000000;;, + 158;3;-0.000000, 1.026680, 0.000000;;, + 159;3;-0.000000, 1.026680, 0.000000;;, + 160;3;-0.000000, 1.026680, 0.000000;;, + 161;3;-0.000000, 1.026680, 0.000000;;, + 162;3;-0.000000, 1.026680, 0.000000;;, + 163;3;-0.000000, 1.026680, 0.000000;;, + 164;3;-0.000000, 1.026680, 0.000000;;, + 165;3;-0.000000, 1.026680, 0.000000;;, + 166;3;-0.000000, 1.026680, 0.000000;;, + 167;3;-0.000000, 1.026680, 0.000000;;, + 168;3;-0.000000, 1.026680, 0.000000;;, + 169;3;-0.000000, 1.026680, 0.000000;;, + 170;3;-0.000000, 1.026680, 0.000000;;, + 171;3;-0.000000, 1.026680, 0.000000;;, + 172;3;-0.000000, 1.026680, 0.000000;;, + 173;3;-0.000000, 1.026680, 0.000000;;, + 174;3;-0.000000, 1.026680, 0.000000;;, + 175;3;-0.000000, 1.026680, 0.000000;;, + 176;3;-0.000000, 1.026680, 0.000000;;, + 177;3;-0.000000, 1.026680, 0.000000;;, + 178;3;-0.000000, 1.026680, 0.000000;;, + 179;3;-0.000000, 1.026680, 0.000000;;, + 180;3;-0.000000, 1.026680, 0.000000;;, + 181;3;-0.000000, 1.026680, 0.000000;;, + 182;3;-0.000000, 1.026680, 0.000000;;, + 183;3;-0.000000, 1.026680, 0.000000;;, + 184;3;-0.000000, 1.026680, 0.000000;;, + 185;3;-0.000000, 1.026680, 0.000000;;, + 186;3;-0.000000, 1.026680, 0.000000;;, + 187;3;-0.000000, 1.026680, 0.000000;;, + 188;3;-0.000000, 1.026680, 0.000000;;, + 189;3;-0.000000, 1.026680, 0.000000;;, + 190;3;-0.000000, 1.026680, 0.000000;;, + 191;3;-0.000000, 1.026680, 0.000000;;, + 192;3;-0.000000, 1.026680, 0.000000;;, + 193;3;-0.000000, 1.026680, 0.000000;;, + 194;3;-0.000000, 1.026680, 0.000000;;, + 195;3;-0.000000, 1.026680, 0.000000;;, + 196;3;-0.000000, 1.026680, 0.000000;;, + 197;3;-0.000000, 1.026680, 0.000000;;, + 198;3;-0.000000, 1.026680, 0.000000;;, + 199;3;-0.000000, 1.026680, 0.000000;;, + 200;3;-0.000000, 1.026680, 0.000000;;, + 201;3;-0.000000, 1.026680, 0.000000;;, + 202;3;-0.000000, 1.026680, 0.000000;;, + 203;3;-0.000000, 1.026680, 0.000000;;, + 204;3;-0.000000, 1.026680, 0.000000;;, + 205;3;-0.000000, 1.026680, 0.000000;;, + 206;3;-0.000000, 1.026680, 0.000000;;, + 207;3;-0.000000, 1.026680, 0.000000;;, + 208;3;-0.000000, 1.026680, 0.000000;;, + 209;3;-0.000000, 1.026680, 0.000000;;, + 210;3;-0.000000, 1.026680, 0.000000;;, + 211;3;-0.000000, 1.026680, 0.000000;;, + 212;3;-0.000000, 1.026680, 0.000000;;, + 213;3;-0.000000, 1.026680, 0.000000;;, + 214;3;-0.000000, 1.026680, 0.000000;;, + 215;3;-0.000000, 1.026680, 0.000000;;, + 216;3;-0.000000, 1.026680, 0.000000;;, + 217;3;-0.000000, 1.026680, 0.000000;;, + 218;3;-0.000000, 1.026680, 0.000000;;, + 219;3;-0.000000, 1.026680, 0.000000;;, + 220;3;-0.000000, 1.026680, 0.000000;;, + 221;3;-0.000000, 1.026680, 0.000000;;, + 222;3;-0.000000, 1.026680, 0.000000;;, + 223;3;-0.000000, 1.026680, 0.000000;;, + 224;3;-0.000000, 1.026680, 0.000000;;, + 225;3;-0.000000, 1.026680, 0.000000;;, + 226;3;-0.000000, 1.026680, 0.000000;;, + 227;3;-0.000000, 1.026680, 0.000000;;, + 228;3;-0.000000, 1.026680, 0.000000;;, + 229;3;-0.000000, 1.026680, 0.000000;;, + 230;3;-0.000000, 1.026680, 0.000000;;, + 231;3;-0.000000, 1.026680, 0.000000;;, + 232;3;-0.000000, 1.026680, 0.000000;;, + 233;3;-0.000000, 1.026680, 0.000000;;, + 234;3;-0.000000, 1.026680, 0.000000;;, + 235;3;-0.000000, 1.026680, 0.000000;;, + 236;3;-0.000000, 1.026680, 0.000000;;, + 237;3;-0.000000, 1.026680, 0.000000;;, + 238;3;-0.000000, 1.026680, 0.000000;;, + 239;3;-0.000000, 1.026680, 0.000000;;, + 240;3;-0.000000, 1.026680, 0.000000;;, + 241;3;-0.000000, 1.026680, 0.000000;;, + 242;3;-0.000000, 1.026680, 0.000000;;, + 243;3;-0.000000, 1.026680, 0.000000;;, + 244;3;-0.000000, 1.026680, 0.000000;;, + 245;3;-0.000000, 1.026680, 0.000000;;, + 246;3;-0.000000, 1.026680, 0.000000;;, + 247;3;-0.000000, 1.026680, 0.000000;;, + 248;3;-0.000000, 1.026680, 0.000000;;, + 249;3;-0.000000, 1.026680, 0.000000;;; + } + } + Animation { + {Armature_Bone_033} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 1;4;-0.992075,-0.125566, 0.000000, 0.000000;;, + 2;4;-0.991913,-0.126609, 0.000000, 0.000000;;, + 3;4;-0.991642,-0.128353, 0.000000, 0.000000;;, + 4;4;-0.991265,-0.130782, 0.000000, 0.000000;;, + 5;4;-0.990786,-0.133861, 0.000000, 0.000000;;, + 6;4;-0.990217,-0.137529, 0.000000, 0.000000;;, + 7;4;-0.989569,-0.141695, 0.000000, 0.000000;;, + 8;4;-0.988863,-0.146244, 0.000000, 0.000000;;, + 9;4;-0.988119,-0.151032, 0.000000, 0.000000;;, + 10;4;-0.987362,-0.155903, 0.000000, 0.000000;;, + 11;4;-0.986618,-0.160692, 0.000000, 0.000000;;, + 12;4;-0.985911,-0.165240, 0.000000, 0.000000;;, + 13;4;-0.985264,-0.169407, 0.000000, 0.000000;;, + 14;4;-0.984694,-0.173075, 0.000000, 0.000000;;, + 15;4;-0.984215,-0.176154, 0.000000, 0.000000;;, + 16;4;-0.983838,-0.178583, 0.000000, 0.000000;;, + 17;4;-0.983567,-0.180326, 0.000000, 0.000000;;, + 18;4;-0.983405,-0.181369, 0.000000, 0.000000;;, + 19;4;-0.983351,-0.181715, 0.000000, 0.000000;;, + 20;4;-0.983400,-0.181403, 0.000000, 0.000000;;, + 21;4;-0.983546,-0.180462, 0.000000, 0.000000;;, + 22;4;-0.983790,-0.178889, 0.000000, 0.000000;;, + 23;4;-0.984132,-0.176693, 0.000000, 0.000000;;, + 24;4;-0.984565,-0.173902, 0.000000, 0.000000;;, + 25;4;-0.985084,-0.170564, 0.000000, 0.000000;;, + 26;4;-0.985677,-0.166749, 0.000000, 0.000000;;, + 27;4;-0.986329,-0.162548, 0.000000, 0.000000;;, + 28;4;-0.987024,-0.158078, 0.000000, 0.000000;;, + 29;4;-0.987740,-0.153468, 0.000000, 0.000000;;, + 30;4;-0.988456,-0.148858, 0.000000, 0.000000;;, + 31;4;-0.989151,-0.144387, 0.000000, 0.000000;;, + 32;4;-0.989804,-0.140187, 0.000000, 0.000000;;, + 33;4;-0.990396,-0.136371, 0.000000, 0.000000;;, + 34;4;-0.990915,-0.133033, 0.000000, 0.000000;;, + 35;4;-0.991349,-0.130243, 0.000000, 0.000000;;, + 36;4;-0.991690,-0.128047, 0.000000, 0.000000;;, + 37;4;-0.991934,-0.126473, 0.000000, 0.000000;;, + 38;4;-0.992081,-0.125532, 0.000000, 0.000000;;, + 39;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 40;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 41;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 42;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 43;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 44;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 45;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 46;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 47;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 48;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 49;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 50;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 51;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 52;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 53;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 54;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 55;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 56;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 57;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 58;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 59;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 60;4;-0.992197,-0.124554,-0.000012,-0.000513;;, + 61;4;-0.992402,-0.122546,-0.000048,-0.002055;;, + 62;4;-0.992734,-0.119281,-0.000106,-0.004564;;, + 63;4;-0.993170,-0.115010,-0.000183,-0.007845;;, + 64;4;-0.993663,-0.110173,-0.000269,-0.011562;;, + 65;4;-0.994156,-0.105335,-0.000356,-0.015279;;, + 66;4;-0.994591,-0.101065,-0.000432,-0.018560;;, + 67;4;-0.994924,-0.097800,-0.000490,-0.021069;;, + 68;4;-0.995129,-0.095792,-0.000526,-0.022612;;, + 69;4;-0.995197,-0.095124,-0.000538,-0.023124;;, + 70;4;-0.995189,-0.095198,-0.000537,-0.023068;;, + 71;4;-0.995167,-0.095420,-0.000533,-0.022897;;, + 72;4;-0.995129,-0.095792,-0.000526,-0.022612;;, + 73;4;-0.995075,-0.096313,-0.000517,-0.022211;;, + 74;4;-0.995007,-0.096984,-0.000505,-0.021696;;, + 75;4;-0.994924,-0.097800,-0.000490,-0.021069;;, + 76;4;-0.994826,-0.098757,-0.000473,-0.020333;;, + 77;4;-0.994715,-0.099848,-0.000454,-0.019495;;, + 78;4;-0.994591,-0.101065,-0.000432,-0.018560;;, + 79;4;-0.994456,-0.102394,-0.000408,-0.017539;;, + 80;4;-0.994310,-0.103823,-0.000383,-0.016441;;, + 81;4;-0.994156,-0.105335,-0.000356,-0.015279;;, + 82;4;-0.993995,-0.106911,-0.000327,-0.014068;;, + 83;4;-0.993830,-0.108531,-0.000298,-0.012824;;, + 84;4;-0.993663,-0.110173,-0.000269,-0.011562;;, + 85;4;-0.993495,-0.111815,-0.000240,-0.010301;;, + 86;4;-0.993330,-0.113435,-0.000211,-0.009056;;, + 87;4;-0.993170,-0.115010,-0.000183,-0.007845;;, + 88;4;-0.993016,-0.116522,-0.000156,-0.006684;;, + 89;4;-0.992870,-0.117951,-0.000130,-0.005586;;, + 90;4;-0.992734,-0.119281,-0.000106,-0.004564;;, + 91;4;-0.992610,-0.120497,-0.000084,-0.003629;;, + 92;4;-0.992499,-0.121589,-0.000065,-0.002791;;, + 93;4;-0.992402,-0.122546,-0.000048,-0.002055;;, + 94;4;-0.992318,-0.123362,-0.000033,-0.001428;;, + 95;4;-0.992250,-0.124032,-0.000021,-0.000913;;, + 96;4;-0.992197,-0.124554,-0.000012,-0.000513;;, + 97;4;-0.992159,-0.124926,-0.000005,-0.000227;;, + 98;4;-0.992136,-0.125148,-0.000001,-0.000056;;, + 99;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 100;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 101;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 102;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 103;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 104;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 105;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 106;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 107;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 108;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 109;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 110;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 111;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 112;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 113;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 114;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 115;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 116;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 117;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 118;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 119;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 120;4;-0.927564,-0.028398,-0.000000, 0.000000;;, + 121;4;-0.745705, 0.244322,-0.000000, 0.000000;;, + 122;4;-0.512200, 0.594492,-0.000000, 0.000000;;, + 123;4;-0.330341, 0.867212,-0.000000, 0.000000;;, + 124;4;-0.265777, 0.964035,-0.000000, 0.000000;;, + 125;4;-0.322534, 0.911755, 0.017574,-0.003845;;, + 126;4;-0.482401, 0.764499, 0.067074,-0.014674;;, + 127;4;-0.687670, 0.575424, 0.130631,-0.028579;;, + 128;4;-0.847538, 0.428169, 0.180131,-0.039409;;, + 129;4;-0.904295, 0.375889, 0.197705,-0.043254;;, + 130;4;-0.861244, 0.423056, 0.183864,-0.040226;;, + 131;4;-0.739984, 0.555910, 0.144877,-0.031696;;, + 132;4;-0.584287, 0.726495, 0.094819,-0.020744;;, + 133;4;-0.463027, 0.859350, 0.055833,-0.012215;;, + 134;4;-0.419977, 0.906517, 0.041991,-0.009187;;, + 135;4;-0.468199, 0.816668, 0.060015,-0.013130;;, + 136;4;-0.604025, 0.563593, 0.110782,-0.024237;;, + 137;4;-0.778424, 0.238647, 0.175967,-0.038498;;, + 138;4;-0.914250,-0.014428, 0.226734,-0.049605;;, + 139;4;-0.962472,-0.104276, 0.244758,-0.053548;;, + 140;4;-0.962472,-0.104276, 0.244758,-0.053548;;, + 141;4;-0.962472,-0.104276, 0.244758,-0.053548;;, + 142;4;-0.962472,-0.104276, 0.244758,-0.053548;;, + 143;4;-0.962472,-0.104276, 0.244758,-0.053548;;, + 144;4;-0.962472,-0.104276, 0.244758,-0.053548;;, + 145;4;-0.965108,-0.106138, 0.223002,-0.048788;;, + 146;4;-0.972534,-0.111382, 0.161721,-0.035381;;, + 147;4;-0.982067,-0.118115, 0.083037,-0.018167;;, + 148;4;-0.989493,-0.123359, 0.021756,-0.004760;;, + 149;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 150;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 151;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 152;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 153;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 154;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 155;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 156;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 157;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 158;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 159;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 160;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 161;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 162;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 163;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 164;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 165;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 166;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 167;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 168;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 169;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 170;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 171;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 172;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 173;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 174;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 175;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 176;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 177;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 178;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 179;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 180;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 181;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 182;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 183;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 184;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 185;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 186;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 187;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 188;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 189;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 190;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 191;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 192;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 193;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 194;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 195;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 196;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 197;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 198;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 199;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 200;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 201;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 202;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 203;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 204;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 205;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 206;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 207;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 208;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 209;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 210;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 211;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 212;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 213;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 214;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 215;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 216;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 217;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 218;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 219;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 220;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 221;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 222;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 223;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 224;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 225;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 226;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 227;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 228;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 229;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 230;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 231;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 232;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 233;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 234;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 235;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 236;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 237;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 238;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 239;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 240;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 241;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 242;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 243;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 244;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 245;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 246;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 247;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 248;4;-0.992129,-0.125221, 0.000000, 0.000000;;, + 249;4;-0.992129,-0.125221, 0.000000, 0.000000;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3; 0.000000, 2.406489, 0.000000;;, + 1;3; 0.000000, 2.406489, 0.000000;;, + 2;3;-0.000000, 2.406489, 0.000000;;, + 3;3;-0.000000, 2.406489, 0.000000;;, + 4;3; 0.000000, 2.406489,-0.000000;;, + 5;3; 0.000000, 2.406489,-0.000000;;, + 6;3; 0.000000, 2.406489, 0.000000;;, + 7;3; 0.000000, 2.406489,-0.000000;;, + 8;3;-0.000000, 2.406489,-0.000000;;, + 9;3; 0.000000, 2.406489, 0.000000;;, + 10;3; 0.000000, 2.406489,-0.000000;;, + 11;3; 0.000000, 2.406489,-0.000000;;, + 12;3; 0.000000, 2.406489, 0.000000;;, + 13;3; 0.000000, 2.406489, 0.000000;;, + 14;3; 0.000000, 2.406489,-0.000000;;, + 15;3; 0.000000, 2.406489,-0.000000;;, + 16;3; 0.000000, 2.406489, 0.000000;;, + 17;3; 0.000000, 2.406489,-0.000000;;, + 18;3; 0.000000, 2.406489, 0.000000;;, + 19;3; 0.000000, 2.406489, 0.000000;;, + 20;3;-0.000000, 2.406489,-0.000000;;, + 21;3;-0.000000, 2.406489, 0.000000;;, + 22;3; 0.000000, 2.406489, 0.000000;;, + 23;3;-0.000000, 2.406489,-0.000000;;, + 24;3; 0.000000, 2.406489, 0.000000;;, + 25;3; 0.000000, 2.406489, 0.000000;;, + 26;3; 0.000000, 2.406489,-0.000000;;, + 27;3; 0.000000, 2.406489,-0.000000;;, + 28;3; 0.000000, 2.406489, 0.000000;;, + 29;3; 0.000000, 2.406489, 0.000000;;, + 30;3; 0.000000, 2.406489,-0.000000;;, + 31;3;-0.000000, 2.406489, 0.000000;;, + 32;3; 0.000000, 2.406489, 0.000000;;, + 33;3; 0.000000, 2.406489, 0.000000;;, + 34;3;-0.000000, 2.406489,-0.000000;;, + 35;3; 0.000000, 2.406489, 0.000000;;, + 36;3; 0.000000, 2.406489, 0.000000;;, + 37;3; 0.000000, 2.406489,-0.000000;;, + 38;3; 0.000000, 2.406489,-0.000000;;, + 39;3; 0.000000, 2.406489, 0.000000;;, + 40;3; 0.000000, 2.406489,-0.000000;;, + 41;3; 0.000000, 2.406489,-0.000000;;, + 42;3;-0.000000, 2.406489,-0.000000;;, + 43;3; 0.000000, 2.406489, 0.000000;;, + 44;3; 0.000000, 2.406489,-0.000000;;, + 45;3;-0.000000, 2.406489, 0.000000;;, + 46;3; 0.000000, 2.406489, 0.000000;;, + 47;3; 0.000000, 2.406489,-0.000000;;, + 48;3; 0.000000, 2.406489, 0.000000;;, + 49;3; 0.000000, 2.406489,-0.000000;;, + 50;3; 0.000000, 2.406488,-0.000000;;, + 51;3;-0.000000, 2.406489,-0.000000;;, + 52;3;-0.000000, 2.406489,-0.000000;;, + 53;3; 0.000000, 2.406489, 0.000000;;, + 54;3; 0.000000, 2.406489, 0.000000;;, + 55;3; 0.000000, 2.406489, 0.000000;;, + 56;3;-0.000000, 2.406489, 0.000000;;, + 57;3;-0.000000, 2.406489,-0.000000;;, + 58;3;-0.000000, 2.406489, 0.000000;;, + 59;3; 0.000000, 2.406489, 0.000000;;, + 60;3;-0.000000, 2.406489, 0.000000;;, + 61;3;-0.000000, 2.406489,-0.000000;;, + 62;3; 0.000000, 2.406489,-0.000000;;, + 63;3; 0.000000, 2.406489, 0.000000;;, + 64;3;-0.000000, 2.406489, 0.000000;;, + 65;3;-0.000000, 2.406489,-0.000000;;, + 66;3;-0.000000, 2.406489, 0.000000;;, + 67;3; 0.000000, 2.406489, 0.000000;;, + 68;3; 0.000000, 2.406489,-0.000000;;, + 69;3; 0.000000, 2.406489, 0.000000;;, + 70;3;-0.000000, 2.406489, 0.000000;;, + 71;3; 0.000000, 2.406489, 0.000000;;, + 72;3; 0.000000, 2.406489,-0.000000;;, + 73;3;-0.000000, 2.406489,-0.000000;;, + 74;3;-0.000000, 2.406489,-0.000000;;, + 75;3;-0.000000, 2.406489,-0.000000;;, + 76;3;-0.000000, 2.406489, 0.000000;;, + 77;3;-0.000000, 2.406489, 0.000000;;, + 78;3;-0.000000, 2.406489, 0.000000;;, + 79;3; 0.000000, 2.406489,-0.000000;;, + 80;3; 0.000000, 2.406489, 0.000000;;, + 81;3; 0.000000, 2.406489,-0.000000;;, + 82;3; 0.000000, 2.406489,-0.000000;;, + 83;3;-0.000000, 2.406489, 0.000000;;, + 84;3; 0.000000, 2.406489, 0.000000;;, + 85;3; 0.000000, 2.406489,-0.000000;;, + 86;3; 0.000000, 2.406489, 0.000000;;, + 87;3;-0.000000, 2.406489, 0.000000;;, + 88;3; 0.000000, 2.406489,-0.000000;;, + 89;3; 0.000000, 2.406489, 0.000000;;, + 90;3; 0.000000, 2.406489, 0.000000;;, + 91;3;-0.000000, 2.406489,-0.000000;;, + 92;3;-0.000000, 2.406489,-0.000000;;, + 93;3; 0.000000, 2.406488, 0.000000;;, + 94;3;-0.000000, 2.406489,-0.000000;;, + 95;3;-0.000000, 2.406489, 0.000000;;, + 96;3;-0.000000, 2.406488, 0.000000;;, + 97;3; 0.000000, 2.406489,-0.000000;;, + 98;3;-0.000000, 2.406489,-0.000000;;, + 99;3; 0.000000, 2.406489, 0.000000;;, + 100;3;-0.000000, 2.406489,-0.000000;;, + 101;3; 0.000000, 2.406489, 0.000000;;, + 102;3;-0.000000, 2.406489,-0.000000;;, + 103;3;-0.000000, 2.406489,-0.000000;;, + 104;3; 0.000000, 2.406489,-0.000000;;, + 105;3; 0.000000, 2.406489,-0.000000;;, + 106;3; 0.000000, 2.406489,-0.000000;;, + 107;3; 0.000000, 2.406489, 0.000000;;, + 108;3; 0.000000, 2.406489, 0.000000;;, + 109;3; 0.000000, 2.406489, 0.000000;;, + 110;3; 0.000000, 2.406489, 0.000000;;, + 111;3;-0.000000, 2.406489,-0.000000;;, + 112;3; 0.000000, 2.406489,-0.000000;;, + 113;3;-0.000000, 2.406488, 0.000000;;, + 114;3;-0.000000, 2.406489, 0.000000;;, + 115;3; 0.000000, 2.406489,-0.000000;;, + 116;3; 0.000000, 2.406489,-0.000000;;, + 117;3; 0.000000, 2.406489, 0.000000;;, + 118;3;-0.000000, 2.406489, 0.000000;;, + 119;3; 0.000000, 2.406489, 0.000000;;, + 120;3; 0.000000, 2.406489, 0.000000;;, + 121;3;-0.000000, 2.406489,-0.000000;;, + 122;3;-0.000000, 2.406489,-0.000000;;, + 123;3; 0.000000, 2.406489, 0.000000;;, + 124;3; 0.000000, 2.406489,-0.000000;;, + 125;3;-0.000000, 2.406488, 0.000000;;, + 126;3; 0.000000, 2.406489,-0.000000;;, + 127;3; 0.000000, 2.406489,-0.000000;;, + 128;3;-0.000000, 2.406489, 0.000000;;, + 129;3; 0.000000, 2.406489,-0.000000;;, + 130;3; 0.000000, 2.406489,-0.000000;;, + 131;3;-0.000000, 2.406489,-0.000000;;, + 132;3;-0.000000, 2.406489,-0.000000;;, + 133;3; 0.000000, 2.406489,-0.000000;;, + 134;3; 0.000000, 2.406489,-0.000000;;, + 135;3;-0.000000, 2.406489, 0.000000;;, + 136;3;-0.000000, 2.406489,-0.000000;;, + 137;3; 0.000000, 2.406489,-0.000000;;, + 138;3;-0.000000, 2.406489,-0.000000;;, + 139;3; 0.000000, 2.406489, 0.000000;;, + 140;3;-0.000000, 2.406489, 0.000000;;, + 141;3; 0.000000, 2.406489, 0.000000;;, + 142;3;-0.000000, 2.406489, 0.000000;;, + 143;3; 0.000000, 2.406489, 0.000000;;, + 144;3; 0.000000, 2.406489, 0.000000;;, + 145;3;-0.000000, 2.406489,-0.000000;;, + 146;3; 0.000000, 2.406489, 0.000000;;, + 147;3; 0.000000, 2.406489,-0.000000;;, + 148;3;-0.000000, 2.406489, 0.000000;;, + 149;3; 0.000000, 2.406489, 0.000000;;, + 150;3; 0.000000, 2.406489, 0.000000;;, + 151;3; 0.000000, 2.406489, 0.000000;;, + 152;3; 0.000000, 2.406489, 0.000000;;, + 153;3; 0.000000, 2.406489, 0.000000;;, + 154;3; 0.000000, 2.406489, 0.000000;;, + 155;3; 0.000000, 2.406489, 0.000000;;, + 156;3; 0.000000, 2.406489, 0.000000;;, + 157;3; 0.000000, 2.406489, 0.000000;;, + 158;3; 0.000000, 2.406489, 0.000000;;, + 159;3; 0.000000, 2.406489, 0.000000;;, + 160;3; 0.000000, 2.406489, 0.000000;;, + 161;3; 0.000000, 2.406489, 0.000000;;, + 162;3; 0.000000, 2.406489, 0.000000;;, + 163;3; 0.000000, 2.406489, 0.000000;;, + 164;3; 0.000000, 2.406489, 0.000000;;, + 165;3; 0.000000, 2.406489, 0.000000;;, + 166;3; 0.000000, 2.406489, 0.000000;;, + 167;3; 0.000000, 2.406489, 0.000000;;, + 168;3; 0.000000, 2.406489, 0.000000;;, + 169;3; 0.000000, 2.406489, 0.000000;;, + 170;3; 0.000000, 2.406489, 0.000000;;, + 171;3; 0.000000, 2.406489, 0.000000;;, + 172;3; 0.000000, 2.406489, 0.000000;;, + 173;3; 0.000000, 2.406489, 0.000000;;, + 174;3; 0.000000, 2.406489, 0.000000;;, + 175;3; 0.000000, 2.406489, 0.000000;;, + 176;3; 0.000000, 2.406489, 0.000000;;, + 177;3; 0.000000, 2.406489, 0.000000;;, + 178;3; 0.000000, 2.406489, 0.000000;;, + 179;3; 0.000000, 2.406489, 0.000000;;, + 180;3; 0.000000, 2.406489, 0.000000;;, + 181;3; 0.000000, 2.406489, 0.000000;;, + 182;3; 0.000000, 2.406489, 0.000000;;, + 183;3; 0.000000, 2.406489, 0.000000;;, + 184;3; 0.000000, 2.406489, 0.000000;;, + 185;3; 0.000000, 2.406489, 0.000000;;, + 186;3; 0.000000, 2.406489, 0.000000;;, + 187;3; 0.000000, 2.406489, 0.000000;;, + 188;3; 0.000000, 2.406489, 0.000000;;, + 189;3; 0.000000, 2.406489, 0.000000;;, + 190;3; 0.000000, 2.406489, 0.000000;;, + 191;3; 0.000000, 2.406489, 0.000000;;, + 192;3; 0.000000, 2.406489, 0.000000;;, + 193;3; 0.000000, 2.406489, 0.000000;;, + 194;3; 0.000000, 2.406489, 0.000000;;, + 195;3; 0.000000, 2.406489, 0.000000;;, + 196;3; 0.000000, 2.406489, 0.000000;;, + 197;3; 0.000000, 2.406489, 0.000000;;, + 198;3; 0.000000, 2.406489, 0.000000;;, + 199;3; 0.000000, 2.406489, 0.000000;;, + 200;3; 0.000000, 2.406489, 0.000000;;, + 201;3; 0.000000, 2.406489, 0.000000;;, + 202;3; 0.000000, 2.406489, 0.000000;;, + 203;3; 0.000000, 2.406489, 0.000000;;, + 204;3; 0.000000, 2.406489, 0.000000;;, + 205;3; 0.000000, 2.406489, 0.000000;;, + 206;3; 0.000000, 2.406489, 0.000000;;, + 207;3; 0.000000, 2.406489, 0.000000;;, + 208;3; 0.000000, 2.406489, 0.000000;;, + 209;3; 0.000000, 2.406489, 0.000000;;, + 210;3; 0.000000, 2.406489, 0.000000;;, + 211;3; 0.000000, 2.406489, 0.000000;;, + 212;3; 0.000000, 2.406489, 0.000000;;, + 213;3; 0.000000, 2.406489, 0.000000;;, + 214;3; 0.000000, 2.406489, 0.000000;;, + 215;3; 0.000000, 2.406489, 0.000000;;, + 216;3; 0.000000, 2.406489, 0.000000;;, + 217;3; 0.000000, 2.406489, 0.000000;;, + 218;3; 0.000000, 2.406489, 0.000000;;, + 219;3; 0.000000, 2.406489, 0.000000;;, + 220;3; 0.000000, 2.406489, 0.000000;;, + 221;3; 0.000000, 2.406489, 0.000000;;, + 222;3; 0.000000, 2.406489, 0.000000;;, + 223;3; 0.000000, 2.406489, 0.000000;;, + 224;3; 0.000000, 2.406489, 0.000000;;, + 225;3; 0.000000, 2.406489, 0.000000;;, + 226;3; 0.000000, 2.406489, 0.000000;;, + 227;3; 0.000000, 2.406489, 0.000000;;, + 228;3; 0.000000, 2.406489, 0.000000;;, + 229;3; 0.000000, 2.406489, 0.000000;;, + 230;3; 0.000000, 2.406489, 0.000000;;, + 231;3; 0.000000, 2.406489, 0.000000;;, + 232;3; 0.000000, 2.406489, 0.000000;;, + 233;3; 0.000000, 2.406489, 0.000000;;, + 234;3; 0.000000, 2.406489, 0.000000;;, + 235;3; 0.000000, 2.406489, 0.000000;;, + 236;3; 0.000000, 2.406489, 0.000000;;, + 237;3; 0.000000, 2.406489, 0.000000;;, + 238;3; 0.000000, 2.406489, 0.000000;;, + 239;3; 0.000000, 2.406489, 0.000000;;, + 240;3; 0.000000, 2.406489, 0.000000;;, + 241;3; 0.000000, 2.406489, 0.000000;;, + 242;3; 0.000000, 2.406489, 0.000000;;, + 243;3; 0.000000, 2.406489, 0.000000;;, + 244;3; 0.000000, 2.406489, 0.000000;;, + 245;3; 0.000000, 2.406489, 0.000000;;, + 246;3; 0.000000, 2.406489, 0.000000;;, + 247;3; 0.000000, 2.406489, 0.000000;;, + 248;3; 0.000000, 2.406489, 0.000000;;, + 249;3; 0.000000, 2.406489, 0.000000;;; + } + } + Animation { + {Armature_Bone_037} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 1;4;-0.994188,-0.107614, 0.000000, 0.000000;;, + 2;4;-0.994253,-0.106869, 0.000000, 0.000000;;, + 3;4;-0.994363,-0.105623, 0.000000, 0.000000;;, + 4;4;-0.994516,-0.103888, 0.000000, 0.000000;;, + 5;4;-0.994710,-0.101689, 0.000000, 0.000000;;, + 6;4;-0.994940,-0.099069, 0.000000, 0.000000;;, + 7;4;-0.995202,-0.096092, 0.000000, 0.000000;;, + 8;4;-0.995488,-0.092843, 0.000000, 0.000000;;, + 9;4;-0.995789,-0.089422, 0.000000, 0.000000;;, + 10;4;-0.996096,-0.085943, 0.000000, 0.000000;;, + 11;4;-0.996397,-0.082522, 0.000000, 0.000000;;, + 12;4;-0.996683,-0.079273, 0.000000, 0.000000;;, + 13;4;-0.996945,-0.076297, 0.000000, 0.000000;;, + 14;4;-0.997176,-0.073677, 0.000000, 0.000000;;, + 15;4;-0.997369,-0.071478, 0.000000, 0.000000;;, + 16;4;-0.997522,-0.069742, 0.000000, 0.000000;;, + 17;4;-0.997632,-0.068497, 0.000000, 0.000000;;, + 18;4;-0.997697,-0.067752, 0.000000, 0.000000;;, + 19;4;-0.997719,-0.067505, 0.000000, 0.000000;;, + 20;4;-0.997699,-0.067728, 0.000000, 0.000000;;, + 21;4;-0.997640,-0.068400, 0.000000, 0.000000;;, + 22;4;-0.997541,-0.069524, 0.000000, 0.000000;;, + 23;4;-0.997403,-0.071092, 0.000000, 0.000000;;, + 24;4;-0.997228,-0.073086, 0.000000, 0.000000;;, + 25;4;-0.997018,-0.075470, 0.000000, 0.000000;;, + 26;4;-0.996778,-0.078196, 0.000000, 0.000000;;, + 27;4;-0.996514,-0.081196, 0.000000, 0.000000;;, + 28;4;-0.996233,-0.084390, 0.000000, 0.000000;;, + 29;4;-0.995943,-0.087683, 0.000000, 0.000000;;, + 30;4;-0.995653,-0.090976, 0.000000, 0.000000;;, + 31;4;-0.995372,-0.094169, 0.000000, 0.000000;;, + 32;4;-0.995107,-0.097170, 0.000000, 0.000000;;, + 33;4;-0.994867,-0.099895, 0.000000, 0.000000;;, + 34;4;-0.994657,-0.102280, 0.000000, 0.000000;;, + 35;4;-0.994482,-0.104273, 0.000000, 0.000000;;, + 36;4;-0.994344,-0.105842, 0.000000, 0.000000;;, + 37;4;-0.994245,-0.106966, 0.000000, 0.000000;;, + 38;4;-0.994186,-0.107638, 0.000000, 0.000000;;, + 39;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 40;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 41;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 42;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 43;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 44;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 45;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 46;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 47;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 48;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 49;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 50;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 51;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 52;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 53;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 54;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 55;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 56;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 57;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 58;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 59;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 60;4;-0.994230,-0.107053, 0.000129,-0.000606;;, + 61;4;-0.994423,-0.104622, 0.000519,-0.002429;;, + 62;4;-0.994736,-0.100669, 0.001152,-0.005393;;, + 63;4;-0.995146,-0.095499, 0.001979,-0.009270;;, + 64;4;-0.995610,-0.089643, 0.002917,-0.013663;;, + 65;4;-0.996075,-0.083787, 0.003855,-0.018055;;, + 66;4;-0.996485,-0.078617, 0.004683,-0.021932;;, + 67;4;-0.996798,-0.074664, 0.005316,-0.024896;;, + 68;4;-0.996991,-0.072233, 0.005705,-0.026719;;, + 69;4;-0.997055,-0.071426, 0.005834,-0.027325;;, + 70;4;-0.997048,-0.071515, 0.005820,-0.027258;;, + 71;4;-0.997026,-0.071783, 0.005777,-0.027057;;, + 72;4;-0.996991,-0.072233, 0.005705,-0.026719;;, + 73;4;-0.996941,-0.072865, 0.005604,-0.026246;;, + 74;4;-0.996876,-0.073676, 0.005474,-0.025637;;, + 75;4;-0.996798,-0.074664, 0.005316,-0.024896;;, + 76;4;-0.996706,-0.075823, 0.005130,-0.024027;;, + 77;4;-0.996601,-0.077144, 0.004918,-0.023036;;, + 78;4;-0.996485,-0.078617, 0.004683,-0.021932;;, + 79;4;-0.996357,-0.080227, 0.004425,-0.020725;;, + 80;4;-0.996220,-0.081956, 0.004148,-0.019427;;, + 81;4;-0.996075,-0.083787, 0.003855,-0.018055;;, + 82;4;-0.995923,-0.085694, 0.003549,-0.016624;;, + 83;4;-0.995768,-0.087655, 0.003235,-0.015153;;, + 84;4;-0.995610,-0.089643, 0.002917,-0.013663;;, + 85;4;-0.995453,-0.091631, 0.002599,-0.012172;;, + 86;4;-0.995297,-0.093592, 0.002285,-0.010701;;, + 87;4;-0.995146,-0.095499, 0.001979,-0.009270;;, + 88;4;-0.995001,-0.097330, 0.001686,-0.007898;;, + 89;4;-0.994864,-0.099059, 0.001409,-0.006600;;, + 90;4;-0.994736,-0.100669, 0.001152,-0.005393;;, + 91;4;-0.994620,-0.102142, 0.000916,-0.004289;;, + 92;4;-0.994515,-0.103463, 0.000704,-0.003298;;, + 93;4;-0.994423,-0.104622, 0.000519,-0.002429;;, + 94;4;-0.994345,-0.105610, 0.000360,-0.001688;;, + 95;4;-0.994280,-0.106421, 0.000230,-0.001079;;, + 96;4;-0.994230,-0.107053, 0.000129,-0.000606;;, + 97;4;-0.994195,-0.107503, 0.000057,-0.000268;;, + 98;4;-0.994173,-0.107771, 0.000014,-0.000067;;, + 99;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 100;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 101;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 102;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 103;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 104;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 105;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 106;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 107;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 108;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 109;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 110;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 111;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 112;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 113;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 114;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 115;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 116;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 117;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 118;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 119;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 120;4;-0.993119,-0.081663,-0.000000, 0.000000;;, + 121;4;-0.990170,-0.007871,-0.000000,-0.000000;;, + 122;4;-0.986382, 0.086876,-0.000000,-0.000000;;, + 123;4;-0.983433, 0.160668,-0.000000,-0.000000;;, + 124;4;-0.982386, 0.186866,-0.000000,-0.000000;;, + 125;4;-0.982386, 0.186866,-0.000000,-0.000000;;, + 126;4;-0.982386, 0.186866,-0.000000,-0.000000;;, + 127;4;-0.982386, 0.186866,-0.000000,-0.000000;;, + 128;4;-0.982386, 0.186866,-0.000000,-0.000000;;, + 129;4;-0.982386, 0.186866,-0.000000,-0.000000;;, + 130;4;-0.975150, 0.208368, 0.000055, 0.005840;;, + 131;4;-0.954768, 0.268933, 0.000531, 0.022289;;, + 132;4;-0.928598, 0.346699, 0.002004, 0.043410;;, + 133;4;-0.908216, 0.407264, 0.004829, 0.059860;;, + 134;4;-0.900980, 0.428767, 0.008880, 0.065699;;, + 135;4;-0.906992, 0.418320, 0.017847, 0.065048;;, + 136;4;-0.924199, 0.384746, 0.034519, 0.062125;;, + 137;4;-0.947029, 0.330503, 0.053772, 0.055453;;, + 138;4;-0.966241, 0.266583, 0.068095, 0.044578;;, + 139;4;-0.975662, 0.204504, 0.073067, 0.030396;;, + 140;4;-0.978819, 0.130044, 0.065510, 0.008798;;, + 141;4;-0.980519, 0.031250, 0.044227,-0.022966;;, + 142;4;-0.981214,-0.067772, 0.016899,-0.056459;;, + 143;4;-0.981865,-0.136221,-0.004384,-0.080270;;, + 144;4;-0.983238,-0.159049,-0.011940,-0.088338;;, + 145;4;-0.985536,-0.154499,-0.010879,-0.080486;;, + 146;4;-0.988517,-0.141683,-0.007889,-0.058369;;, + 147;4;-0.991468,-0.125227,-0.004051,-0.029970;;, + 148;4;-0.993493,-0.112410,-0.001061,-0.007852;;, + 149;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 150;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 151;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 152;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 153;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 154;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 155;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 156;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 157;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 158;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 159;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 160;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 161;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 162;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 163;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 164;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 165;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 166;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 167;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 168;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 169;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 170;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 171;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 172;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 173;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 174;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 175;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 176;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 177;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 178;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 179;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 180;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 181;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 182;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 183;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 184;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 185;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 186;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 187;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 188;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 189;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 190;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 191;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 192;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 193;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 194;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 195;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 196;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 197;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 198;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 199;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 200;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 201;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 202;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 203;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 204;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 205;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 206;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 207;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 208;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 209;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 210;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 211;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 212;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 213;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 214;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 215;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 216;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 217;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 218;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 219;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 220;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 221;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 222;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 223;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 224;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 225;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 226;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 227;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 228;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 229;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 230;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 231;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 232;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 233;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 234;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 235;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 236;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 237;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 238;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 239;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 240;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 241;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 242;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 243;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 244;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 245;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 246;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 247;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 248;4;-0.994166,-0.107860, 0.000000, 0.000000;;, + 249;4;-0.994166,-0.107860, 0.000000, 0.000000;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3;-0.000000, 2.366877, 0.000000;;, + 1;3;-0.000000, 2.366876, 0.000000;;, + 2;3; 0.000000, 2.366877, 0.000000;;, + 3;3; 0.000000, 2.366877, 0.000000;;, + 4;3;-0.000000, 2.366877, 0.000000;;, + 5;3; 0.000000, 2.366878, 0.000000;;, + 6;3; 0.000000, 2.366877, 0.000000;;, + 7;3; 0.000000, 2.366877,-0.000000;;, + 8;3;-0.000000, 2.366877,-0.000000;;, + 9;3; 0.000000, 2.366877,-0.000000;;, + 10;3; 0.000000, 2.366877, 0.000000;;, + 11;3; 0.000000, 2.366877, 0.000000;;, + 12;3; 0.000000, 2.366877,-0.000000;;, + 13;3;-0.000000, 2.366877,-0.000000;;, + 14;3; 0.000000, 2.366877,-0.000000;;, + 15;3; 0.000000, 2.366877, 0.000000;;, + 16;3; 0.000000, 2.366877,-0.000000;;, + 17;3; 0.000000, 2.366877,-0.000000;;, + 18;3;-0.000000, 2.366877,-0.000000;;, + 19;3; 0.000000, 2.366877,-0.000000;;, + 20;3;-0.000000, 2.366877,-0.000000;;, + 21;3; 0.000000, 2.366877,-0.000000;;, + 22;3; 0.000000, 2.366877, 0.000000;;, + 23;3;-0.000000, 2.366876, 0.000000;;, + 24;3; 0.000000, 2.366877,-0.000000;;, + 25;3; 0.000000, 2.366877,-0.000000;;, + 26;3; 0.000000, 2.366877,-0.000000;;, + 27;3; 0.000000, 2.366877,-0.000000;;, + 28;3;-0.000000, 2.366877, 0.000000;;, + 29;3; 0.000000, 2.366877, 0.000000;;, + 30;3; 0.000000, 2.366877,-0.000000;;, + 31;3; 0.000000, 2.366877,-0.000000;;, + 32;3; 0.000000, 2.366877, 0.000000;;, + 33;3; 0.000000, 2.366877, 0.000000;;, + 34;3; 0.000000, 2.366877,-0.000000;;, + 35;3; 0.000000, 2.366877, 0.000000;;, + 36;3; 0.000000, 2.366877,-0.000000;;, + 37;3; 0.000000, 2.366877,-0.000000;;, + 38;3; 0.000000, 2.366877, 0.000000;;, + 39;3;-0.000000, 2.366877, 0.000000;;, + 40;3;-0.000000, 2.366877, 0.000000;;, + 41;3;-0.000000, 2.366877,-0.000000;;, + 42;3;-0.000000, 2.366877, 0.000000;;, + 43;3;-0.000000, 2.366877,-0.000000;;, + 44;3;-0.000000, 2.366877, 0.000000;;, + 45;3; 0.000000, 2.366877, 0.000000;;, + 46;3; 0.000000, 2.366877,-0.000000;;, + 47;3; 0.000000, 2.366877,-0.000000;;, + 48;3; 0.000000, 2.366877, 0.000000;;, + 49;3; 0.000000, 2.366877, 0.000000;;, + 50;3; 0.000000, 2.366877,-0.000000;;, + 51;3;-0.000000, 2.366877,-0.000000;;, + 52;3;-0.000000, 2.366877,-0.000000;;, + 53;3;-0.000000, 2.366877, 0.000000;;, + 54;3; 0.000000, 2.366877, 0.000000;;, + 55;3; 0.000000, 2.366877, 0.000000;;, + 56;3; 0.000000, 2.366877, 0.000000;;, + 57;3;-0.000000, 2.366877,-0.000000;;, + 58;3;-0.000000, 2.366877, 0.000000;;, + 59;3; 0.000000, 2.366877, 0.000000;;, + 60;3;-0.000000, 2.366877,-0.000000;;, + 61;3;-0.000000, 2.366877, 0.000000;;, + 62;3; 0.000000, 2.366877,-0.000000;;, + 63;3;-0.000000, 2.366877, 0.000000;;, + 64;3;-0.000000, 2.366877, 0.000000;;, + 65;3; 0.000000, 2.366877, 0.000000;;, + 66;3;-0.000000, 2.366877,-0.000000;;, + 67;3;-0.000000, 2.366877, 0.000000;;, + 68;3;-0.000000, 2.366876, 0.000000;;, + 69;3;-0.000000, 2.366876,-0.000000;;, + 70;3;-0.000000, 2.366877, 0.000000;;, + 71;3; 0.000000, 2.366877, 0.000000;;, + 72;3;-0.000000, 2.366877,-0.000000;;, + 73;3;-0.000000, 2.366877,-0.000000;;, + 74;3; 0.000000, 2.366877, 0.000000;;, + 75;3;-0.000000, 2.366876, 0.000000;;, + 76;3; 0.000000, 2.366877, 0.000000;;, + 77;3;-0.000000, 2.366877,-0.000000;;, + 78;3;-0.000000, 2.366876,-0.000000;;, + 79;3; 0.000000, 2.366876,-0.000000;;, + 80;3;-0.000000, 2.366877,-0.000000;;, + 81;3; 0.000000, 2.366878,-0.000000;;, + 82;3; 0.000000, 2.366877,-0.000000;;, + 83;3; 0.000000, 2.366876,-0.000000;;, + 84;3; 0.000000, 2.366876, 0.000000;;, + 85;3;-0.000000, 2.366876, 0.000000;;, + 86;3; 0.000000, 2.366877, 0.000000;;, + 87;3; 0.000000, 2.366877, 0.000000;;, + 88;3;-0.000000, 2.366877,-0.000000;;, + 89;3; 0.000000, 2.366878,-0.000000;;, + 90;3; 0.000000, 2.366877, 0.000000;;, + 91;3; 0.000000, 2.366877, 0.000000;;, + 92;3; 0.000000, 2.366876,-0.000000;;, + 93;3;-0.000000, 2.366877, 0.000000;;, + 94;3;-0.000000, 2.366877, 0.000000;;, + 95;3;-0.000000, 2.366877, 0.000000;;, + 96;3;-0.000000, 2.366877,-0.000000;;, + 97;3;-0.000000, 2.366876,-0.000000;;, + 98;3;-0.000000, 2.366876, 0.000000;;, + 99;3; 0.000000, 2.366877, 0.000000;;, + 100;3;-0.000000, 2.366877, 0.000000;;, + 101;3;-0.000000, 2.366877, 0.000000;;, + 102;3;-0.000000, 2.366877, 0.000000;;, + 103;3; 0.000000, 2.366877, 0.000000;;, + 104;3;-0.000000, 2.366877,-0.000000;;, + 105;3; 0.000000, 2.366877, 0.000000;;, + 106;3;-0.000000, 2.366877, 0.000000;;, + 107;3; 0.000001, 2.366877, 0.000000;;, + 108;3;-0.000000, 2.366876, 0.000000;;, + 109;3; 0.000000, 2.366877, 0.000000;;, + 110;3;-0.000000, 2.366877,-0.000000;;, + 111;3; 0.000000, 2.366877, 0.000000;;, + 112;3; 0.000000, 2.366877,-0.000000;;, + 113;3;-0.000000, 2.366877, 0.000000;;, + 114;3;-0.000000, 2.366877,-0.000000;;, + 115;3; 0.000000, 2.366877,-0.000000;;, + 116;3; 0.000000, 2.366877,-0.000000;;, + 117;3;-0.000000, 2.366876,-0.000000;;, + 118;3;-0.000000, 2.366877,-0.000000;;, + 119;3;-0.000000, 2.366877, 0.000000;;, + 120;3; 0.000000, 2.366878, 0.000000;;, + 121;3; 0.000000, 2.366877,-0.000000;;, + 122;3;-0.000000, 2.366876, 0.000000;;, + 123;3;-0.000000, 2.366877, 0.000000;;, + 124;3; 0.000000, 2.366877,-0.000000;;, + 125;3; 0.000000, 2.366877,-0.000000;;, + 126;3;-0.000000, 2.366877,-0.000000;;, + 127;3; 0.000000, 2.366877, 0.000000;;, + 128;3; 0.000000, 2.366877, 0.000000;;, + 129;3; 0.000000, 2.366876, 0.000000;;, + 130;3;-0.000000, 2.366876,-0.000000;;, + 131;3; 0.000000, 2.366876, 0.000000;;, + 132;3; 0.000000, 2.366877, 0.000000;;, + 133;3;-0.000000, 2.366877,-0.000000;;, + 134;3;-0.000000, 2.366877, 0.000000;;, + 135;3; 0.000000, 2.366877,-0.000000;;, + 136;3;-0.000000, 2.366877,-0.000000;;, + 137;3; 0.000000, 2.366877,-0.000000;;, + 138;3;-0.000000, 2.366877, 0.000000;;, + 139;3; 0.000000, 2.366876,-0.000000;;, + 140;3; 0.000000, 2.366876, 0.000000;;, + 141;3;-0.000000, 2.366877, 0.000000;;, + 142;3; 0.000000, 2.366877,-0.000000;;, + 143;3; 0.000000, 2.366877, 0.000000;;, + 144;3; 0.000000, 2.366877,-0.000000;;, + 145;3; 0.000000, 2.366876,-0.000000;;, + 146;3; 0.000000, 2.366877, 0.000000;;, + 147;3;-0.000000, 2.366876,-0.000000;;, + 148;3;-0.000000, 2.366877,-0.000000;;, + 149;3;-0.000000, 2.366877, 0.000000;;, + 150;3;-0.000000, 2.366877, 0.000000;;, + 151;3;-0.000000, 2.366877, 0.000000;;, + 152;3;-0.000000, 2.366877, 0.000000;;, + 153;3;-0.000000, 2.366877, 0.000000;;, + 154;3;-0.000000, 2.366877, 0.000000;;, + 155;3;-0.000000, 2.366877, 0.000000;;, + 156;3;-0.000000, 2.366877, 0.000000;;, + 157;3;-0.000000, 2.366877, 0.000000;;, + 158;3;-0.000000, 2.366877, 0.000000;;, + 159;3;-0.000000, 2.366877, 0.000000;;, + 160;3;-0.000000, 2.366877, 0.000000;;, + 161;3;-0.000000, 2.366877, 0.000000;;, + 162;3;-0.000000, 2.366877, 0.000000;;, + 163;3;-0.000000, 2.366877, 0.000000;;, + 164;3;-0.000000, 2.366877, 0.000000;;, + 165;3;-0.000000, 2.366877, 0.000000;;, + 166;3;-0.000000, 2.366877, 0.000000;;, + 167;3;-0.000000, 2.366877, 0.000000;;, + 168;3;-0.000000, 2.366877, 0.000000;;, + 169;3;-0.000000, 2.366877, 0.000000;;, + 170;3;-0.000000, 2.366877, 0.000000;;, + 171;3;-0.000000, 2.366877, 0.000000;;, + 172;3;-0.000000, 2.366877, 0.000000;;, + 173;3;-0.000000, 2.366877, 0.000000;;, + 174;3;-0.000000, 2.366877, 0.000000;;, + 175;3;-0.000000, 2.366877, 0.000000;;, + 176;3;-0.000000, 2.366877, 0.000000;;, + 177;3;-0.000000, 2.366877, 0.000000;;, + 178;3;-0.000000, 2.366877, 0.000000;;, + 179;3;-0.000000, 2.366877, 0.000000;;, + 180;3;-0.000000, 2.366877, 0.000000;;, + 181;3;-0.000000, 2.366877, 0.000000;;, + 182;3;-0.000000, 2.366877, 0.000000;;, + 183;3;-0.000000, 2.366877, 0.000000;;, + 184;3;-0.000000, 2.366877, 0.000000;;, + 185;3;-0.000000, 2.366877, 0.000000;;, + 186;3;-0.000000, 2.366877, 0.000000;;, + 187;3;-0.000000, 2.366877, 0.000000;;, + 188;3;-0.000000, 2.366877, 0.000000;;, + 189;3;-0.000000, 2.366877, 0.000000;;, + 190;3;-0.000000, 2.366877, 0.000000;;, + 191;3;-0.000000, 2.366877, 0.000000;;, + 192;3;-0.000000, 2.366877, 0.000000;;, + 193;3;-0.000000, 2.366877, 0.000000;;, + 194;3;-0.000000, 2.366877, 0.000000;;, + 195;3;-0.000000, 2.366877, 0.000000;;, + 196;3;-0.000000, 2.366877, 0.000000;;, + 197;3;-0.000000, 2.366877, 0.000000;;, + 198;3;-0.000000, 2.366877, 0.000000;;, + 199;3;-0.000000, 2.366877, 0.000000;;, + 200;3;-0.000000, 2.366877, 0.000000;;, + 201;3;-0.000000, 2.366877, 0.000000;;, + 202;3;-0.000000, 2.366877, 0.000000;;, + 203;3;-0.000000, 2.366877, 0.000000;;, + 204;3;-0.000000, 2.366877, 0.000000;;, + 205;3;-0.000000, 2.366877, 0.000000;;, + 206;3;-0.000000, 2.366877, 0.000000;;, + 207;3;-0.000000, 2.366877, 0.000000;;, + 208;3;-0.000000, 2.366877, 0.000000;;, + 209;3;-0.000000, 2.366877, 0.000000;;, + 210;3;-0.000000, 2.366877, 0.000000;;, + 211;3;-0.000000, 2.366877, 0.000000;;, + 212;3;-0.000000, 2.366877, 0.000000;;, + 213;3;-0.000000, 2.366877, 0.000000;;, + 214;3;-0.000000, 2.366877, 0.000000;;, + 215;3;-0.000000, 2.366877, 0.000000;;, + 216;3;-0.000000, 2.366877, 0.000000;;, + 217;3;-0.000000, 2.366877, 0.000000;;, + 218;3;-0.000000, 2.366877, 0.000000;;, + 219;3;-0.000000, 2.366877, 0.000000;;, + 220;3;-0.000000, 2.366877, 0.000000;;, + 221;3;-0.000000, 2.366877, 0.000000;;, + 222;3;-0.000000, 2.366877, 0.000000;;, + 223;3;-0.000000, 2.366877, 0.000000;;, + 224;3;-0.000000, 2.366877, 0.000000;;, + 225;3;-0.000000, 2.366877, 0.000000;;, + 226;3;-0.000000, 2.366877, 0.000000;;, + 227;3;-0.000000, 2.366877, 0.000000;;, + 228;3;-0.000000, 2.366877, 0.000000;;, + 229;3;-0.000000, 2.366877, 0.000000;;, + 230;3;-0.000000, 2.366877, 0.000000;;, + 231;3;-0.000000, 2.366877, 0.000000;;, + 232;3;-0.000000, 2.366877, 0.000000;;, + 233;3;-0.000000, 2.366877, 0.000000;;, + 234;3;-0.000000, 2.366877, 0.000000;;, + 235;3;-0.000000, 2.366877, 0.000000;;, + 236;3;-0.000000, 2.366877, 0.000000;;, + 237;3;-0.000000, 2.366877, 0.000000;;, + 238;3;-0.000000, 2.366877, 0.000000;;, + 239;3;-0.000000, 2.366877, 0.000000;;, + 240;3;-0.000000, 2.366877, 0.000000;;, + 241;3;-0.000000, 2.366877, 0.000000;;, + 242;3;-0.000000, 2.366877, 0.000000;;, + 243;3;-0.000000, 2.366877, 0.000000;;, + 244;3;-0.000000, 2.366877, 0.000000;;, + 245;3;-0.000000, 2.366877, 0.000000;;, + 246;3;-0.000000, 2.366877, 0.000000;;, + 247;3;-0.000000, 2.366877, 0.000000;;, + 248;3;-0.000000, 2.366877, 0.000000;;, + 249;3;-0.000000, 2.366877, 0.000000;;; + } + } + Animation { + {Armature_Bone_008} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 1;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 2;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 3;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 4;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 5;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 6;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 7;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 8;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 9;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 10;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 11;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 12;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 13;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 14;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 15;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 16;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 17;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 18;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 19;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 20;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 21;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 22;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 23;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 24;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 25;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 26;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 27;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 28;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 29;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 30;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 31;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 32;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 33;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 34;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 35;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 36;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 37;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 38;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 39;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 40;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 41;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 42;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 43;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 44;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 45;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 46;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 47;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 48;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 49;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 50;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 51;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 52;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 53;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 54;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 55;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 56;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 57;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 58;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 59;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 60;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 61;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 62;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 63;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 64;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 65;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 66;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 67;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 68;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 69;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 70;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 71;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 72;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 73;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 74;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 75;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 76;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 77;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 78;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 79;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 80;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 81;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 82;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 83;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 84;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 85;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 86;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 87;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 88;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 89;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 90;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 91;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 92;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 93;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 94;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 95;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 96;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 97;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 98;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 99;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 100;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 101;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 102;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 103;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 104;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 105;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 106;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 107;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 108;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 109;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 110;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 111;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 112;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 113;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 114;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 115;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 116;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 117;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 118;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 119;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 120;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 121;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 122;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 123;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 124;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 125;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 126;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 127;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 128;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 129;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 130;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 131;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 132;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 133;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 134;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 135;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 136;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 137;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 138;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 139;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 140;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 141;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 142;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 143;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 144;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 145;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 146;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 147;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 148;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 149;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 150;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 151;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 152;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 153;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 154;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 155;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 156;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 157;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 158;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 159;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 160;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 161;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 162;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 163;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 164;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 165;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 166;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 167;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 168;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 169;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 170;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 171;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 172;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 173;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 174;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 175;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 176;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 177;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 178;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 179;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 180;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 181;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 182;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 183;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 184;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 185;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 186;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 187;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 188;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 189;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 190;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 191;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 192;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 193;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 194;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 195;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 196;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 197;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 198;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 199;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 200;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 201;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 202;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 203;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 204;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 205;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 206;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 207;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 208;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 209;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 210;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 211;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 212;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 213;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 214;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 215;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 216;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 217;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 218;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 219;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 220;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 221;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 222;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 223;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 224;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 225;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 226;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 227;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 228;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 229;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 230;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 231;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 232;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 233;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 234;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 235;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 236;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 237;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 238;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 239;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 240;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 241;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 242;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 243;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 244;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 245;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 246;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 247;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 248;4;-0.988879, 0.000000, 0.000000,-0.148725;;, + 249;4;-0.988879, 0.000000, 0.000000,-0.148725;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3; 0.000000, 0.705560, 0.000000;;, + 1;3; 0.000000, 0.705560, 0.000000;;, + 2;3; 0.000000, 0.705560, 0.000000;;, + 3;3; 0.000000, 0.705560, 0.000000;;, + 4;3; 0.000000, 0.705560, 0.000000;;, + 5;3; 0.000000, 0.705560, 0.000000;;, + 6;3; 0.000000, 0.705560, 0.000000;;, + 7;3; 0.000000, 0.705560, 0.000000;;, + 8;3; 0.000000, 0.705560, 0.000000;;, + 9;3; 0.000000, 0.705560, 0.000000;;, + 10;3; 0.000000, 0.705560, 0.000000;;, + 11;3; 0.000000, 0.705560, 0.000000;;, + 12;3; 0.000000, 0.705560, 0.000000;;, + 13;3; 0.000000, 0.705560, 0.000000;;, + 14;3; 0.000000, 0.705560, 0.000000;;, + 15;3; 0.000000, 0.705560, 0.000000;;, + 16;3; 0.000000, 0.705560, 0.000000;;, + 17;3; 0.000000, 0.705560, 0.000000;;, + 18;3; 0.000000, 0.705560, 0.000000;;, + 19;3; 0.000000, 0.705560, 0.000000;;, + 20;3; 0.000000, 0.705560, 0.000000;;, + 21;3; 0.000000, 0.705560, 0.000000;;, + 22;3; 0.000000, 0.705560, 0.000000;;, + 23;3; 0.000000, 0.705560, 0.000000;;, + 24;3; 0.000000, 0.705560, 0.000000;;, + 25;3; 0.000000, 0.705560, 0.000000;;, + 26;3; 0.000000, 0.705560, 0.000000;;, + 27;3; 0.000000, 0.705560, 0.000000;;, + 28;3; 0.000000, 0.705560, 0.000000;;, + 29;3; 0.000000, 0.705560, 0.000000;;, + 30;3; 0.000000, 0.705560, 0.000000;;, + 31;3; 0.000000, 0.705560, 0.000000;;, + 32;3; 0.000000, 0.705560, 0.000000;;, + 33;3; 0.000000, 0.705560, 0.000000;;, + 34;3; 0.000000, 0.705560, 0.000000;;, + 35;3; 0.000000, 0.705560, 0.000000;;, + 36;3; 0.000000, 0.705560, 0.000000;;, + 37;3; 0.000000, 0.705560, 0.000000;;, + 38;3; 0.000000, 0.705560, 0.000000;;, + 39;3; 0.000000, 0.705560, 0.000000;;, + 40;3; 0.000000, 0.705560, 0.000000;;, + 41;3; 0.000000, 0.705559, 0.000000;;, + 42;3;-0.000000, 0.705560, 0.000000;;, + 43;3; 0.000000, 0.705560,-0.000000;;, + 44;3; 0.000000, 0.705560, 0.000000;;, + 45;3; 0.000000, 0.705560,-0.000000;;, + 46;3; 0.000000, 0.705559, 0.000000;;, + 47;3;-0.000000, 0.705560, 0.000000;;, + 48;3; 0.000000, 0.705560,-0.000000;;, + 49;3; 0.000000, 0.705560, 0.000000;;, + 50;3;-0.000000, 0.705559, 0.000000;;, + 51;3; 0.000000, 0.705560,-0.000000;;, + 52;3;-0.000000, 0.705560, 0.000000;;, + 53;3; 0.000000, 0.705560,-0.000000;;, + 54;3; 0.000000, 0.705560, 0.000000;;, + 55;3; 0.000000, 0.705560,-0.000000;;, + 56;3;-0.000000, 0.705560, 0.000000;;, + 57;3; 0.000000, 0.705559, 0.000000;;, + 58;3;-0.000000, 0.705560, 0.000000;;, + 59;3; 0.000000, 0.705560, 0.000000;;, + 60;3; 0.000000, 0.705560,-0.000000;;, + 61;3; 0.000000, 0.705560, 0.000000;;, + 62;3; 0.000000, 0.705560, 0.000000;;, + 63;3; 0.000000, 0.705560, 0.000000;;, + 64;3; 0.000000, 0.705560,-0.000000;;, + 65;3;-0.000000, 0.705560, 0.000000;;, + 66;3; 0.000000, 0.705560, 0.000000;;, + 67;3;-0.000000, 0.705560, 0.000000;;, + 68;3; 0.000000, 0.705559, 0.000000;;, + 69;3; 0.000000, 0.705560, 0.000000;;, + 70;3; 0.000000, 0.705560, 0.000000;;, + 71;3;-0.000000, 0.705560, 0.000000;;, + 72;3;-0.000000, 0.705560, 0.000000;;, + 73;3;-0.000000, 0.705560, 0.000000;;, + 74;3;-0.000000, 0.705560, 0.000000;;, + 75;3;-0.000000, 0.705560, 0.000000;;, + 76;3; 0.000000, 0.705559, 0.000000;;, + 77;3;-0.000000, 0.705560, 0.000000;;, + 78;3; 0.000000, 0.705560, 0.000000;;, + 79;3;-0.000000, 0.705559, 0.000000;;, + 80;3; 0.000000, 0.705560, 0.000000;;, + 81;3;-0.000000, 0.705560, 0.000000;;, + 82;3; 0.000000, 0.705560, 0.000000;;, + 83;3; 0.000000, 0.705560, 0.000000;;, + 84;3; 0.000000, 0.705560,-0.000000;;, + 85;3;-0.000000, 0.705560, 0.000000;;, + 86;3;-0.000000, 0.705560, 0.000000;;, + 87;3; 0.000000, 0.705560,-0.000000;;, + 88;3; 0.000000, 0.705560, 0.000000;;, + 89;3; 0.000000, 0.705560, 0.000000;;, + 90;3; 0.000000, 0.705560, 0.000000;;, + 91;3; 0.000000, 0.705560, 0.000000;;, + 92;3; 0.000000, 0.705560, 0.000000;;, + 93;3; 0.000000, 0.705560, 0.000000;;, + 94;3; 0.000000, 0.705560, 0.000000;;, + 95;3; 0.000000, 0.705560, 0.000000;;, + 96;3; 0.000000, 0.705560,-0.000000;;, + 97;3; 0.000000, 0.705560,-0.000000;;, + 98;3; 0.000000, 0.705560, 0.000000;;, + 99;3; 0.000000, 0.705560, 0.000000;;, + 100;3;-0.000000, 0.705560,-0.000000;;, + 101;3; 0.000000, 0.705560,-0.000000;;, + 102;3; 0.000000, 0.705559, 0.000000;;, + 103;3;-0.000000, 0.705560,-0.000000;;, + 104;3;-0.000000, 0.705559,-0.000000;;, + 105;3;-0.000000, 0.705560,-0.000000;;, + 106;3; 0.000000, 0.705560, 0.000000;;, + 107;3;-0.000000, 0.705559,-0.000000;;, + 108;3; 0.000000, 0.705560,-0.000000;;, + 109;3; 0.000000, 0.705559,-0.000000;;, + 110;3;-0.000000, 0.705559, 0.000000;;, + 111;3; 0.000000, 0.705560,-0.000000;;, + 112;3; 0.000000, 0.705560, 0.000000;;, + 113;3; 0.000000, 0.705560,-0.000000;;, + 114;3;-0.000000, 0.705559, 0.000000;;, + 115;3; 0.000000, 0.705560, 0.000000;;, + 116;3;-0.000000, 0.705560,-0.000000;;, + 117;3; 0.000000, 0.705560, 0.000000;;, + 118;3; 0.000000, 0.705560,-0.000000;;, + 119;3; 0.000000, 0.705560, 0.000000;;, + 120;3; 0.000000, 0.705560,-0.000000;;, + 121;3; 0.000000, 0.705560,-0.000000;;, + 122;3;-0.000000, 0.705560,-0.000000;;, + 123;3; 0.000000, 0.705560, 0.000000;;, + 124;3; 0.000000, 0.705560, 0.000000;;, + 125;3; 0.000000, 0.705560, 0.000000;;, + 126;3;-0.000000, 0.705560, 0.000000;;, + 127;3;-0.000000, 0.705560, 0.000000;;, + 128;3;-0.000000, 0.705560,-0.000000;;, + 129;3; 0.000000, 0.705560, 0.000000;;, + 130;3; 0.000000, 0.705559, 0.000000;;, + 131;3; 0.000000, 0.705560, 0.000000;;, + 132;3; 0.000000, 0.705560, 0.000000;;, + 133;3; 0.000000, 0.705560,-0.000000;;, + 134;3; 0.000000, 0.705560, 0.000000;;, + 135;3; 0.000000, 0.705560, 0.000000;;, + 136;3;-0.000000, 0.705560,-0.000000;;, + 137;3; 0.000000, 0.705560, 0.000000;;, + 138;3;-0.000000, 0.705559, 0.000000;;, + 139;3;-0.000000, 0.705560,-0.000000;;, + 140;3; 0.000000, 0.705560, 0.000000;;, + 141;3; 0.000000, 0.705560, 0.000000;;, + 142;3; 0.000000, 0.705560, 0.000000;;, + 143;3; 0.000000, 0.705560,-0.000000;;, + 144;3; 0.000000, 0.705560, 0.000000;;, + 145;3; 0.000000, 0.705560,-0.000000;;, + 146;3; 0.000000, 0.705560, 0.000000;;, + 147;3; 0.000000, 0.705560,-0.000000;;, + 148;3; 0.000000, 0.705560, 0.000000;;, + 149;3; 0.000000, 0.705560, 0.000000;;, + 150;3; 0.000000, 0.705560, 0.000000;;, + 151;3; 0.000000, 0.705560, 0.000000;;, + 152;3; 0.000000, 0.705560, 0.000000;;, + 153;3; 0.000000, 0.705560, 0.000000;;, + 154;3; 0.000000, 0.705560, 0.000000;;, + 155;3; 0.000000, 0.705560, 0.000000;;, + 156;3; 0.000000, 0.705560, 0.000000;;, + 157;3; 0.000000, 0.705560, 0.000000;;, + 158;3; 0.000000, 0.705560, 0.000000;;, + 159;3; 0.000000, 0.705560, 0.000000;;, + 160;3; 0.000000, 0.705560, 0.000000;;, + 161;3; 0.000000, 0.705560, 0.000000;;, + 162;3; 0.000000, 0.705560, 0.000000;;, + 163;3; 0.000000, 0.705560, 0.000000;;, + 164;3; 0.000000, 0.705560, 0.000000;;, + 165;3; 0.000000, 0.705560, 0.000000;;, + 166;3; 0.000000, 0.705560, 0.000000;;, + 167;3; 0.000000, 0.705560, 0.000000;;, + 168;3; 0.000000, 0.705560, 0.000000;;, + 169;3; 0.000000, 0.705560, 0.000000;;, + 170;3; 0.000000, 0.705560, 0.000000;;, + 171;3; 0.000000, 0.705560, 0.000000;;, + 172;3; 0.000000, 0.705560, 0.000000;;, + 173;3; 0.000000, 0.705560, 0.000000;;, + 174;3; 0.000000, 0.705560, 0.000000;;, + 175;3; 0.000000, 0.705560, 0.000000;;, + 176;3; 0.000000, 0.705560, 0.000000;;, + 177;3; 0.000000, 0.705560, 0.000000;;, + 178;3; 0.000000, 0.705560, 0.000000;;, + 179;3; 0.000000, 0.705560, 0.000000;;, + 180;3; 0.000000, 0.705560, 0.000000;;, + 181;3; 0.000000, 0.705560, 0.000000;;, + 182;3; 0.000000, 0.705560, 0.000000;;, + 183;3; 0.000000, 0.705560, 0.000000;;, + 184;3; 0.000000, 0.705560, 0.000000;;, + 185;3; 0.000000, 0.705560, 0.000000;;, + 186;3; 0.000000, 0.705560, 0.000000;;, + 187;3; 0.000000, 0.705560, 0.000000;;, + 188;3; 0.000000, 0.705560, 0.000000;;, + 189;3; 0.000000, 0.705560, 0.000000;;, + 190;3; 0.000000, 0.705560, 0.000000;;, + 191;3; 0.000000, 0.705560, 0.000000;;, + 192;3; 0.000000, 0.705560, 0.000000;;, + 193;3; 0.000000, 0.705560, 0.000000;;, + 194;3; 0.000000, 0.705560, 0.000000;;, + 195;3; 0.000000, 0.705560, 0.000000;;, + 196;3; 0.000000, 0.705560, 0.000000;;, + 197;3; 0.000000, 0.705560, 0.000000;;, + 198;3; 0.000000, 0.705560, 0.000000;;, + 199;3; 0.000000, 0.705560, 0.000000;;, + 200;3; 0.000000, 0.705560, 0.000000;;, + 201;3; 0.000000, 0.705560, 0.000000;;, + 202;3; 0.000000, 0.705560, 0.000000;;, + 203;3; 0.000000, 0.705560, 0.000000;;, + 204;3; 0.000000, 0.705560, 0.000000;;, + 205;3; 0.000000, 0.705560, 0.000000;;, + 206;3; 0.000000, 0.705560, 0.000000;;, + 207;3; 0.000000, 0.705560, 0.000000;;, + 208;3; 0.000000, 0.705560, 0.000000;;, + 209;3; 0.000000, 0.705560, 0.000000;;, + 210;3; 0.000000, 0.705560, 0.000000;;, + 211;3; 0.000000, 0.705560, 0.000000;;, + 212;3; 0.000000, 0.705560, 0.000000;;, + 213;3; 0.000000, 0.705560, 0.000000;;, + 214;3; 0.000000, 0.705560, 0.000000;;, + 215;3; 0.000000, 0.705560, 0.000000;;, + 216;3; 0.000000, 0.705560, 0.000000;;, + 217;3; 0.000000, 0.705560, 0.000000;;, + 218;3; 0.000000, 0.705560, 0.000000;;, + 219;3; 0.000000, 0.705560, 0.000000;;, + 220;3; 0.000000, 0.705560, 0.000000;;, + 221;3; 0.000000, 0.705560, 0.000000;;, + 222;3; 0.000000, 0.705560, 0.000000;;, + 223;3; 0.000000, 0.705560, 0.000000;;, + 224;3; 0.000000, 0.705560, 0.000000;;, + 225;3; 0.000000, 0.705560, 0.000000;;, + 226;3; 0.000000, 0.705560, 0.000000;;, + 227;3; 0.000000, 0.705560, 0.000000;;, + 228;3; 0.000000, 0.705560, 0.000000;;, + 229;3; 0.000000, 0.705560, 0.000000;;, + 230;3; 0.000000, 0.705560, 0.000000;;, + 231;3; 0.000000, 0.705560, 0.000000;;, + 232;3; 0.000000, 0.705560, 0.000000;;, + 233;3; 0.000000, 0.705560, 0.000000;;, + 234;3; 0.000000, 0.705560, 0.000000;;, + 235;3; 0.000000, 0.705560, 0.000000;;, + 236;3; 0.000000, 0.705560, 0.000000;;, + 237;3; 0.000000, 0.705560, 0.000000;;, + 238;3; 0.000000, 0.705560, 0.000000;;, + 239;3; 0.000000, 0.705560, 0.000000;;, + 240;3; 0.000000, 0.705560, 0.000000;;, + 241;3; 0.000000, 0.705560, 0.000000;;, + 242;3; 0.000000, 0.705560, 0.000000;;, + 243;3; 0.000000, 0.705560, 0.000000;;, + 244;3; 0.000000, 0.705560, 0.000000;;, + 245;3; 0.000000, 0.705560, 0.000000;;, + 246;3; 0.000000, 0.705560, 0.000000;;, + 247;3; 0.000000, 0.705560, 0.000000;;, + 248;3; 0.000000, 0.705560, 0.000000;;, + 249;3; 0.000000, 0.705560, 0.000000;;; + } + } + Animation { + {Armature_Bone_030} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.803352,-0.576633,-0.086724, 0.120822;;, + 1;4;-0.803211,-0.576823,-0.086753, 0.120801;;, + 2;4;-0.802781,-0.577397,-0.086839, 0.120736;;, + 3;4;-0.802064,-0.578355,-0.086983, 0.120629;;, + 4;4;-0.801065,-0.579691,-0.087184, 0.120478;;, + 5;4;-0.799799,-0.581384,-0.087439, 0.120288;;, + 6;4;-0.798291,-0.583401,-0.087742, 0.120061;;, + 7;4;-0.796577,-0.585692,-0.088087, 0.119803;;, + 8;4;-0.794707,-0.588193,-0.088463, 0.119522;;, + 9;4;-0.792737,-0.590826,-0.088859, 0.119226;;, + 10;4;-0.790734,-0.593504,-0.089262, 0.118925;;, + 11;4;-0.788765,-0.596137,-0.089658, 0.118628;;, + 12;4;-0.786894,-0.598638,-0.090034, 0.118347;;, + 13;4;-0.785181,-0.600929,-0.090378, 0.118089;;, + 14;4;-0.783672,-0.602946,-0.090682, 0.117862;;, + 15;4;-0.782406,-0.604639,-0.090936, 0.117672;;, + 16;4;-0.781407,-0.605975,-0.091137, 0.117522;;, + 17;4;-0.780690,-0.606933,-0.091281, 0.117414;;, + 18;4;-0.780261,-0.607507,-0.091368, 0.117349;;, + 19;4;-0.780119,-0.607697,-0.091396, 0.117328;;, + 20;4;-0.780121,-0.607694,-0.091396, 0.117328;;, + 21;4;-0.780135,-0.607675,-0.091393, 0.117331;;, + 22;4;-0.780177,-0.607620,-0.091385, 0.117337;;, + 23;4;-0.780263,-0.607504,-0.091367, 0.117350;;, + 24;4;-0.780415,-0.607300,-0.091337, 0.117373;;, + 25;4;-0.780657,-0.606978,-0.091288, 0.117409;;, + 26;4;-0.781013,-0.606502,-0.091216, 0.117462;;, + 27;4;-0.781509,-0.605838,-0.091117, 0.117537;;, + 28;4;-0.782171,-0.604952,-0.090983, 0.117637;;, + 29;4;-0.783023,-0.603814,-0.090812, 0.117765;;, + 30;4;-0.784083,-0.602397,-0.090599, 0.117924;;, + 31;4;-0.785363,-0.600685,-0.090342, 0.118117;;, + 32;4;-0.786873,-0.598667,-0.090038, 0.118344;;, + 33;4;-0.788611,-0.596342,-0.089688, 0.118605;;, + 34;4;-0.790575,-0.593717,-0.089294, 0.118901;;, + 35;4;-0.792754,-0.590804,-0.088855, 0.119228;;, + 36;4;-0.795136,-0.587619,-0.088376, 0.119587;;, + 37;4;-0.797707,-0.584181,-0.087860, 0.119973;;, + 38;4;-0.800451,-0.580513,-0.087308, 0.120386;;, + 39;4;-0.803352,-0.576633,-0.086724, 0.120822;;, + 40;4;-0.806645,-0.567860,-0.084996, 0.121023;;, + 41;4;-0.810580,-0.549399,-0.080985, 0.120726;;, + 42;4;-0.815166,-0.521229,-0.074684, 0.119930;;, + 43;4;-0.820397,-0.483533,-0.066133, 0.118642;;, + 44;4;-0.826253,-0.436760,-0.055437, 0.116887;;, + 45;4;-0.832691,-0.381669,-0.042772, 0.114702;;, + 46;4;-0.839649,-0.319374,-0.028396, 0.112144;;, + 47;4;-0.847040,-0.251342,-0.012653, 0.109287;;, + 48;4;-0.854755,-0.179369, 0.004038, 0.106225;;, + 49;4;-0.862669,-0.105500, 0.021197, 0.103060;;, + 50;4;-0.870646,-0.031911, 0.038313, 0.099904;;, + 51;4;-0.878547, 0.039227, 0.054878, 0.096870;;, + 52;4;-0.886244, 0.105891, 0.070416, 0.094059;;, + 53;4;-0.893619, 0.166320, 0.084511, 0.091564;;, + 54;4;-0.900576, 0.219086, 0.096827, 0.089457;;, + 55;4;-0.907043, 0.263124, 0.107111, 0.087794;;, + 56;4;-0.912967, 0.297721, 0.115196, 0.086610;;, + 57;4;-0.918316, 0.322478, 0.120984, 0.085928;;, + 58;4;-0.923075, 0.337254, 0.124441, 0.085755;;, + 59;4;-0.927242, 0.342113, 0.125580, 0.086088;;, + 60;4;-0.930925, 0.327489, 0.122110, 0.086937;;, + 61;4;-0.934175, 0.283552, 0.111677, 0.088313;;, + 62;4;-0.936914, 0.212139, 0.094718, 0.090168;;, + 63;4;-0.939084, 0.118747, 0.072537, 0.092382;;, + 64;4;-0.940671, 0.012958, 0.047412, 0.094759;;, + 65;4;-0.941721,-0.092826, 0.022288, 0.097056;;, + 66;4;-0.942332,-0.186203, 0.000110, 0.099035;;, + 67;4;-0.942631,-0.257592,-0.016846, 0.100523;;, + 68;4;-0.942741,-0.301498,-0.027274, 0.101427;;, + 69;4;-0.942760,-0.316087,-0.030739, 0.101725;;, + 70;4;-0.942780,-0.314479,-0.030357, 0.101696;;, + 71;4;-0.942839,-0.309626,-0.029204, 0.101606;;, + 72;4;-0.942931,-0.301500,-0.027274, 0.101456;;, + 73;4;-0.943054,-0.290096,-0.024566, 0.101244;;, + 74;4;-0.943201,-0.275442,-0.021085, 0.100970;;, + 75;4;-0.943365,-0.257599,-0.016847, 0.100634;;, + 76;4;-0.943538,-0.236672,-0.011876, 0.100237;;, + 77;4;-0.943713,-0.212811,-0.006209, 0.099781;;, + 78;4;-0.943878,-0.186218, 0.000108, 0.099268;;, + 79;4;-0.944022,-0.157145, 0.007013, 0.098702;;, + 80;4;-0.944134,-0.125903, 0.014434, 0.098087;;, + 81;4;-0.944200,-0.092850, 0.022284, 0.097428;;, + 82;4;-0.944209,-0.058394, 0.030468, 0.096733;;, + 83;4;-0.944146,-0.022978, 0.038880, 0.096008;;, + 84;4;-0.943999, 0.012925, 0.047407, 0.095260;;, + 85;4;-0.943757, 0.048829, 0.055935, 0.094498;;, + 86;4;-0.943408, 0.084248, 0.064347, 0.093729;;, + 87;4;-0.942944, 0.118709, 0.072532, 0.092963;;, + 88;4;-0.942357, 0.151768, 0.080383, 0.092206;;, + 89;4;-0.941642, 0.183019, 0.087805, 0.091467;;, + 90;4;-0.940793, 0.212101, 0.094712, 0.090751;;, + 91;4;-0.939809, 0.238706, 0.101030, 0.090066;;, + 92;4;-0.938689, 0.262579, 0.106699, 0.089415;;, + 93;4;-0.937434, 0.283521, 0.111672, 0.088803;;, + 94;4;-0.936046, 0.301378, 0.115913, 0.088234;;, + 95;4;-0.934528, 0.316049, 0.119396, 0.087709;;, + 96;4;-0.932885, 0.327470, 0.122107, 0.087231;;, + 97;4;-0.931119, 0.335614, 0.124040, 0.086801;;, + 98;4;-0.929236, 0.340486, 0.125195, 0.086420;;, + 99;4;-0.927242, 0.342113, 0.125580, 0.086088;;, + 100;4;-0.924653, 0.337074, 0.124414, 0.085992;;, + 101;4;-0.920978, 0.321801, 0.120882, 0.086329;;, + 102;4;-0.916221, 0.296249, 0.114974, 0.087100;;, + 103;4;-0.910412, 0.260585, 0.106729, 0.088300;;, + 104;4;-0.903612, 0.215252, 0.096250, 0.089914;;, + 105;4;-0.895919, 0.161017, 0.083713, 0.091910;;, + 106;4;-0.887471, 0.099015, 0.069382, 0.094244;;, + 107;4;-0.878447, 0.030758, 0.053605, 0.096855;;, + 108;4;-0.869063,-0.041900, 0.036811, 0.099666;;, + 109;4;-0.859560,-0.116837, 0.019492, 0.102592;;, + 110;4;-0.850194,-0.191783, 0.002171, 0.105539;;, + 111;4;-0.841217,-0.264471,-0.014627, 0.108412;;, + 112;4;-0.832860,-0.332778,-0.030412, 0.111123;;, + 113;4;-0.825323,-0.394846,-0.044753, 0.113593;;, + 114;4;-0.818763,-0.449165,-0.057303, 0.115760;;, + 115;4;-0.813298,-0.494597,-0.067797, 0.117574;;, + 116;4;-0.809001,-0.530372,-0.076059, 0.119002;;, + 117;4;-0.805909,-0.556047,-0.081985, 0.120024;;, + 118;4;-0.804032,-0.571453,-0.085537, 0.120630;;, + 119;4;-0.803352,-0.576633,-0.086724, 0.120822;;, + 120;4;-0.803273,-0.576744,-0.086741, 0.120810;;, + 121;4;-0.803217,-0.576821,-0.086753, 0.120802;;, + 122;4;-0.803188,-0.576862,-0.086759, 0.120798;;, + 123;4;-0.803179,-0.576875,-0.086761, 0.120796;;, + 124;4;-0.803178,-0.576876,-0.086761, 0.120796;;, + 125;4;-0.803178,-0.576876,-0.086761, 0.120796;;, + 126;4;-0.803178,-0.576876,-0.086761, 0.120796;;, + 127;4;-0.803178,-0.576876,-0.086761, 0.120796;;, + 128;4;-0.803178,-0.576876,-0.086761, 0.120796;;, + 129;4;-0.803178,-0.576876,-0.086761, 0.120796;;, + 130;4;-0.803178,-0.576876,-0.086761, 0.120796;;, + 131;4;-0.803178,-0.576876,-0.086761, 0.120796;;, + 132;4;-0.803178,-0.576876,-0.086761, 0.120796;;, + 133;4;-0.803178,-0.576876,-0.086761, 0.120796;;, + 134;4;-0.803178,-0.576876,-0.086761, 0.120796;;, + 135;4;-0.803178,-0.576876,-0.086761, 0.120796;;, + 136;4;-0.803178,-0.576876,-0.086761, 0.120796;;, + 137;4;-0.803178,-0.576876,-0.086761, 0.120796;;, + 138;4;-0.803178,-0.576876,-0.086761, 0.120796;;, + 139;4;-0.803178,-0.576876,-0.086761, 0.120796;;, + 140;4;-0.803178,-0.576876,-0.086761, 0.120796;;, + 141;4;-0.803178,-0.576876,-0.086761, 0.120796;;, + 142;4;-0.803178,-0.576876,-0.086761, 0.120796;;, + 143;4;-0.803178,-0.576876,-0.086761, 0.120796;;, + 144;4;-0.803178,-0.576876,-0.086761, 0.120796;;, + 145;4;-0.803194,-0.576855,-0.086758, 0.120798;;, + 146;4;-0.803237,-0.576794,-0.086748, 0.120805;;, + 147;4;-0.803293,-0.576715,-0.086737, 0.120813;;, + 148;4;-0.803337,-0.576655,-0.086728, 0.120820;;, + 149;4;-0.803352,-0.576633,-0.086724, 0.120822;;, + 150;4;-0.803352,-0.576633,-0.086724, 0.120822;;, + 151;4;-0.803352,-0.576633,-0.086724, 0.120822;;, + 152;4;-0.803352,-0.576633,-0.086724, 0.120822;;, + 153;4;-0.803352,-0.576633,-0.086724, 0.120822;;, + 154;4;-0.803352,-0.576633,-0.086724, 0.120822;;, + 155;4;-0.803352,-0.576633,-0.086724, 0.120822;;, + 156;4;-0.803352,-0.576633,-0.086724, 0.120822;;, + 157;4;-0.803352,-0.576633,-0.086724, 0.120822;;, + 158;4;-0.803352,-0.576633,-0.086724, 0.120822;;, + 159;4;-0.803352,-0.576633,-0.086724, 0.120822;;, + 160;4;-0.803352,-0.576633,-0.086724, 0.120822;;, + 161;4;-0.803352,-0.576633,-0.086724, 0.120822;;, + 162;4;-0.803352,-0.576633,-0.086724, 0.120822;;, + 163;4;-0.803352,-0.576633,-0.086724, 0.120822;;, + 164;4;-0.803352,-0.576633,-0.086724, 0.120822;;, + 165;4;-0.803352,-0.576633,-0.086724, 0.120822;;, + 166;4;-0.803352,-0.576633,-0.086724, 0.120822;;, + 167;4;-0.803352,-0.576633,-0.086724, 0.120822;;, + 168;4;-0.803352,-0.576633,-0.086724, 0.120822;;, + 169;4;-0.803352,-0.576633,-0.086724, 0.120822;;, + 170;4;-0.803352,-0.576633,-0.086724, 0.120822;;, + 171;4;-0.803352,-0.576633,-0.086724, 0.120822;;, + 172;4;-0.803352,-0.576633,-0.086724, 0.120822;;, + 173;4;-0.803352,-0.576633,-0.086724, 0.120822;;, + 174;4;-0.803352,-0.576633,-0.086724, 0.120822;;, + 175;4;-0.803352,-0.576633,-0.086724, 0.120822;;, + 176;4;-0.803352,-0.576633,-0.086724, 0.120822;;, + 177;4;-0.803352,-0.576633,-0.086724, 0.120822;;, + 178;4;-0.803352,-0.576633,-0.086724, 0.120822;;, + 179;4;-0.803352,-0.576633,-0.086724, 0.120822;;, + 180;4;-0.803352,-0.576633,-0.086724, 0.120822;;, + 181;4;-0.803352,-0.576633,-0.086724, 0.120822;;, + 182;4;-0.803352,-0.576633,-0.086724, 0.120822;;, + 183;4;-0.803352,-0.576633,-0.086724, 0.120822;;, + 184;4;-0.803352,-0.576633,-0.086724, 0.120822;;, + 185;4;-0.803352,-0.576633,-0.086724, 0.120822;;, + 186;4;-0.803352,-0.576633,-0.086724, 0.120822;;, + 187;4;-0.803352,-0.576633,-0.086724, 0.120822;;, + 188;4;-0.803352,-0.576633,-0.086724, 0.120822;;, + 189;4;-0.803352,-0.576633,-0.086724, 0.120822;;, + 190;4;-0.803352,-0.576633,-0.086724, 0.120822;;, + 191;4;-0.803352,-0.576633,-0.086724, 0.120822;;, + 192;4;-0.803352,-0.576633,-0.086724, 0.120822;;, + 193;4;-0.803352,-0.576633,-0.086724, 0.120822;;, + 194;4;-0.803352,-0.576633,-0.086724, 0.120822;;, + 195;4;-0.803352,-0.576633,-0.086724, 0.120822;;, + 196;4;-0.803352,-0.576633,-0.086724, 0.120822;;, + 197;4;-0.803352,-0.576633,-0.086724, 0.120822;;, + 198;4;-0.803352,-0.576633,-0.086724, 0.120822;;, + 199;4;-0.803352,-0.576633,-0.086724, 0.120822;;, + 200;4;-0.803352,-0.576633,-0.086724, 0.120822;;, + 201;4;-0.803352,-0.576633,-0.086724, 0.120822;;, + 202;4;-0.803352,-0.576633,-0.086724, 0.120822;;, + 203;4;-0.803352,-0.576633,-0.086724, 0.120822;;, + 204;4;-0.803352,-0.576633,-0.086724, 0.120822;;, + 205;4;-0.803352,-0.576633,-0.086724, 0.120822;;, + 206;4;-0.803352,-0.576633,-0.086724, 0.120822;;, + 207;4;-0.803352,-0.576633,-0.086724, 0.120822;;, + 208;4;-0.803352,-0.576633,-0.086724, 0.120822;;, + 209;4;-0.803352,-0.576633,-0.086724, 0.120822;;, + 210;4;-0.803352,-0.576633,-0.086724, 0.120822;;, + 211;4;-0.803352,-0.576633,-0.086724, 0.120822;;, + 212;4;-0.803352,-0.576633,-0.086724, 0.120822;;, + 213;4;-0.803352,-0.576633,-0.086724, 0.120822;;, + 214;4;-0.803352,-0.576633,-0.086724, 0.120822;;, + 215;4;-0.803352,-0.576633,-0.086724, 0.120822;;, + 216;4;-0.803352,-0.576633,-0.086724, 0.120822;;, + 217;4;-0.803352,-0.576633,-0.086724, 0.120822;;, + 218;4;-0.803352,-0.576633,-0.086724, 0.120822;;, + 219;4;-0.803352,-0.576633,-0.086724, 0.120822;;, + 220;4;-0.803352,-0.576633,-0.086724, 0.120822;;, + 221;4;-0.803352,-0.576633,-0.086724, 0.120822;;, + 222;4;-0.803352,-0.576633,-0.086724, 0.120822;;, + 223;4;-0.803352,-0.576633,-0.086724, 0.120822;;, + 224;4;-0.803352,-0.576633,-0.086724, 0.120822;;, + 225;4;-0.803352,-0.576633,-0.086724, 0.120822;;, + 226;4;-0.803352,-0.576633,-0.086724, 0.120822;;, + 227;4;-0.803352,-0.576633,-0.086724, 0.120822;;, + 228;4;-0.803352,-0.576633,-0.086724, 0.120822;;, + 229;4;-0.803352,-0.576633,-0.086724, 0.120822;;, + 230;4;-0.803352,-0.576633,-0.086724, 0.120822;;, + 231;4;-0.803352,-0.576633,-0.086724, 0.120822;;, + 232;4;-0.803352,-0.576633,-0.086724, 0.120822;;, + 233;4;-0.803352,-0.576633,-0.086724, 0.120822;;, + 234;4;-0.803352,-0.576633,-0.086724, 0.120822;;, + 235;4;-0.803352,-0.576633,-0.086724, 0.120822;;, + 236;4;-0.803352,-0.576633,-0.086724, 0.120822;;, + 237;4;-0.803352,-0.576633,-0.086724, 0.120822;;, + 238;4;-0.803352,-0.576633,-0.086724, 0.120822;;, + 239;4;-0.803352,-0.576633,-0.086724, 0.120822;;, + 240;4;-0.803352,-0.576633,-0.086724, 0.120822;;, + 241;4;-0.803352,-0.576633,-0.086724, 0.120822;;, + 242;4;-0.803352,-0.576633,-0.086724, 0.120822;;, + 243;4;-0.803352,-0.576633,-0.086724, 0.120822;;, + 244;4;-0.803352,-0.576633,-0.086724, 0.120822;;, + 245;4;-0.803352,-0.576633,-0.086724, 0.120822;;, + 246;4;-0.803352,-0.576633,-0.086724, 0.120822;;, + 247;4;-0.803352,-0.576633,-0.086724, 0.120822;;, + 248;4;-0.803352,-0.576633,-0.086724, 0.120822;;, + 249;4;-0.803352,-0.576633,-0.086724, 0.120822;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3; 0.000000, 0.605340,-0.000000;;, + 1;3; 0.000000, 0.605340,-0.000000;;, + 2;3; 0.000000, 0.605340,-0.000000;;, + 3;3; 0.000000, 0.605340,-0.000000;;, + 4;3; 0.000000, 0.605340,-0.000000;;, + 5;3; 0.000000, 0.605340,-0.000000;;, + 6;3; 0.000000, 0.605340,-0.000000;;, + 7;3; 0.000000, 0.605340,-0.000000;;, + 8;3; 0.000000, 0.605340,-0.000000;;, + 9;3; 0.000000, 0.605340,-0.000000;;, + 10;3; 0.000000, 0.605340,-0.000000;;, + 11;3; 0.000000, 0.605340,-0.000000;;, + 12;3; 0.000000, 0.605340,-0.000000;;, + 13;3; 0.000000, 0.605340,-0.000000;;, + 14;3; 0.000000, 0.605340,-0.000000;;, + 15;3; 0.000000, 0.605340,-0.000000;;, + 16;3; 0.000000, 0.605340,-0.000000;;, + 17;3; 0.000000, 0.605340,-0.000000;;, + 18;3; 0.000000, 0.605340,-0.000000;;, + 19;3; 0.000000, 0.605340,-0.000000;;, + 20;3; 0.000000, 0.605340,-0.000000;;, + 21;3; 0.000000, 0.605340,-0.000000;;, + 22;3; 0.000000, 0.605340,-0.000000;;, + 23;3; 0.000000, 0.605340,-0.000000;;, + 24;3; 0.000000, 0.605340,-0.000000;;, + 25;3; 0.000000, 0.605340,-0.000000;;, + 26;3; 0.000000, 0.605340,-0.000000;;, + 27;3; 0.000000, 0.605340,-0.000000;;, + 28;3; 0.000000, 0.605340,-0.000000;;, + 29;3; 0.000000, 0.605340,-0.000000;;, + 30;3; 0.000000, 0.605340,-0.000000;;, + 31;3; 0.000000, 0.605340,-0.000000;;, + 32;3; 0.000000, 0.605340,-0.000000;;, + 33;3; 0.000000, 0.605340,-0.000000;;, + 34;3; 0.000000, 0.605340,-0.000000;;, + 35;3; 0.000000, 0.605340,-0.000000;;, + 36;3; 0.000000, 0.605340,-0.000000;;, + 37;3; 0.000000, 0.605340,-0.000000;;, + 38;3; 0.000000, 0.605340,-0.000000;;, + 39;3; 0.000000, 0.605340,-0.000000;;, + 40;3;-0.000000, 0.605340, 0.000000;;, + 41;3;-0.000000, 0.605340, 0.000000;;, + 42;3; 0.000000, 0.605340, 0.000000;;, + 43;3; 0.000000, 0.605340, 0.000000;;, + 44;3; 0.000000, 0.605340,-0.000000;;, + 45;3; 0.000000, 0.605341, 0.000000;;, + 46;3;-0.000000, 0.605341, 0.000000;;, + 47;3; 0.000000, 0.605340,-0.000000;;, + 48;3;-0.000000, 0.605340, 0.000000;;, + 49;3;-0.000000, 0.605341,-0.000000;;, + 50;3;-0.000000, 0.605340,-0.000000;;, + 51;3;-0.000000, 0.605340, 0.000000;;, + 52;3; 0.000000, 0.605340, 0.000000;;, + 53;3;-0.000000, 0.605340,-0.000000;;, + 54;3;-0.000000, 0.605340, 0.000000;;, + 55;3; 0.000000, 0.605340, 0.000000;;, + 56;3; 0.000000, 0.605340, 0.000000;;, + 57;3;-0.000000, 0.605340, 0.000000;;, + 58;3; 0.000000, 0.605340, 0.000000;;, + 59;3; 0.000000, 0.605340, 0.000000;;, + 60;3; 0.000000, 0.605340, 0.000000;;, + 61;3; 0.000000, 0.605340,-0.000000;;, + 62;3; 0.000000, 0.605340, 0.000000;;, + 63;3; 0.000000, 0.605340,-0.000000;;, + 64;3; 0.000000, 0.605340,-0.000000;;, + 65;3;-0.000000, 0.605340,-0.000000;;, + 66;3; 0.000000, 0.605340, 0.000000;;, + 67;3; 0.000000, 0.605340, 0.000000;;, + 68;3; 0.000000, 0.605340, 0.000000;;, + 69;3; 0.000000, 0.605340,-0.000000;;, + 70;3; 0.000000, 0.605340, 0.000000;;, + 71;3;-0.000000, 0.605340,-0.000000;;, + 72;3;-0.000000, 0.605340, 0.000000;;, + 73;3;-0.000000, 0.605340, 0.000000;;, + 74;3;-0.000000, 0.605340, 0.000000;;, + 75;3;-0.000000, 0.605340,-0.000000;;, + 76;3; 0.000000, 0.605340, 0.000000;;, + 77;3; 0.000000, 0.605340, 0.000000;;, + 78;3; 0.000000, 0.605340, 0.000000;;, + 79;3; 0.000000, 0.605340, 0.000000;;, + 80;3;-0.000000, 0.605340, 0.000000;;, + 81;3;-0.000000, 0.605340,-0.000000;;, + 82;3; 0.000000, 0.605340, 0.000000;;, + 83;3;-0.000000, 0.605340, 0.000000;;, + 84;3; 0.000000, 0.605340,-0.000000;;, + 85;3; 0.000000, 0.605340, 0.000000;;, + 86;3;-0.000000, 0.605340,-0.000000;;, + 87;3;-0.000000, 0.605340,-0.000000;;, + 88;3;-0.000000, 0.605340, 0.000000;;, + 89;3; 0.000000, 0.605340,-0.000000;;, + 90;3; 0.000000, 0.605340, 0.000000;;, + 91;3;-0.000000, 0.605340,-0.000000;;, + 92;3; 0.000000, 0.605340,-0.000000;;, + 93;3; 0.000000, 0.605340, 0.000000;;, + 94;3;-0.000000, 0.605340, 0.000000;;, + 95;3; 0.000000, 0.605340, 0.000000;;, + 96;3; 0.000000, 0.605340, 0.000000;;, + 97;3; 0.000000, 0.605340, 0.000000;;, + 98;3; 0.000000, 0.605340, 0.000000;;, + 99;3; 0.000000, 0.605340, 0.000000;;, + 100;3;-0.000000, 0.605340,-0.000000;;, + 101;3; 0.000000, 0.605340, 0.000000;;, + 102;3;-0.000000, 0.605340, 0.000000;;, + 103;3;-0.000000, 0.605340,-0.000000;;, + 104;3;-0.000000, 0.605340, 0.000000;;, + 105;3;-0.000000, 0.605340, 0.000000;;, + 106;3;-0.000000, 0.605340,-0.000000;;, + 107;3; 0.000000, 0.605340, 0.000000;;, + 108;3; 0.000000, 0.605340, 0.000000;;, + 109;3; 0.000000, 0.605340,-0.000000;;, + 110;3; 0.000000, 0.605340,-0.000000;;, + 111;3; 0.000000, 0.605340, 0.000000;;, + 112;3;-0.000000, 0.605340, 0.000000;;, + 113;3;-0.000000, 0.605340,-0.000000;;, + 114;3;-0.000000, 0.605340, 0.000000;;, + 115;3; 0.000000, 0.605340,-0.000000;;, + 116;3;-0.000000, 0.605340,-0.000000;;, + 117;3;-0.000000, 0.605340,-0.000000;;, + 118;3;-0.000000, 0.605340, 0.000000;;, + 119;3; 0.000000, 0.605340,-0.000000;;, + 120;3;-0.000000, 0.605340, 0.000000;;, + 121;3; 0.000000, 0.605340,-0.000000;;, + 122;3;-0.000000, 0.605340,-0.000000;;, + 123;3;-0.000000, 0.605341,-0.000000;;, + 124;3; 0.000000, 0.605340, 0.000000;;, + 125;3;-0.000000, 0.605340,-0.000000;;, + 126;3;-0.000000, 0.605340, 0.000000;;, + 127;3; 0.000000, 0.605340,-0.000000;;, + 128;3; 0.000000, 0.605340, 0.000000;;, + 129;3;-0.000000, 0.605340, 0.000000;;, + 130;3;-0.000000, 0.605340,-0.000000;;, + 131;3; 0.000000, 0.605340, 0.000000;;, + 132;3; 0.000000, 0.605340, 0.000000;;, + 133;3;-0.000000, 0.605340, 0.000000;;, + 134;3; 0.000000, 0.605340,-0.000000;;, + 135;3; 0.000000, 0.605340, 0.000000;;, + 136;3;-0.000000, 0.605340, 0.000000;;, + 137;3; 0.000000, 0.605340, 0.000000;;, + 138;3; 0.000000, 0.605340,-0.000000;;, + 139;3; 0.000000, 0.605340,-0.000000;;, + 140;3; 0.000000, 0.605340, 0.000000;;, + 141;3; 0.000000, 0.605340, 0.000000;;, + 142;3; 0.000000, 0.605340, 0.000000;;, + 143;3;-0.000000, 0.605340,-0.000000;;, + 144;3;-0.000000, 0.605340,-0.000000;;, + 145;3;-0.000000, 0.605340,-0.000000;;, + 146;3; 0.000000, 0.605340, 0.000000;;, + 147;3; 0.000000, 0.605340,-0.000000;;, + 148;3;-0.000000, 0.605340, 0.000000;;, + 149;3; 0.000000, 0.605340,-0.000000;;, + 150;3; 0.000000, 0.605340,-0.000000;;, + 151;3; 0.000000, 0.605340,-0.000000;;, + 152;3; 0.000000, 0.605340,-0.000000;;, + 153;3; 0.000000, 0.605340,-0.000000;;, + 154;3; 0.000000, 0.605340,-0.000000;;, + 155;3; 0.000000, 0.605340,-0.000000;;, + 156;3; 0.000000, 0.605340,-0.000000;;, + 157;3; 0.000000, 0.605340,-0.000000;;, + 158;3; 0.000000, 0.605340,-0.000000;;, + 159;3; 0.000000, 0.605340,-0.000000;;, + 160;3; 0.000000, 0.605340,-0.000000;;, + 161;3; 0.000000, 0.605340,-0.000000;;, + 162;3; 0.000000, 0.605340,-0.000000;;, + 163;3; 0.000000, 0.605340,-0.000000;;, + 164;3; 0.000000, 0.605340,-0.000000;;, + 165;3; 0.000000, 0.605340,-0.000000;;, + 166;3; 0.000000, 0.605340,-0.000000;;, + 167;3; 0.000000, 0.605340,-0.000000;;, + 168;3; 0.000000, 0.605340,-0.000000;;, + 169;3; 0.000000, 0.605340,-0.000000;;, + 170;3; 0.000000, 0.605340,-0.000000;;, + 171;3; 0.000000, 0.605340,-0.000000;;, + 172;3; 0.000000, 0.605340,-0.000000;;, + 173;3; 0.000000, 0.605340,-0.000000;;, + 174;3; 0.000000, 0.605340,-0.000000;;, + 175;3; 0.000000, 0.605340,-0.000000;;, + 176;3; 0.000000, 0.605340,-0.000000;;, + 177;3; 0.000000, 0.605340,-0.000000;;, + 178;3; 0.000000, 0.605340,-0.000000;;, + 179;3; 0.000000, 0.605340,-0.000000;;, + 180;3; 0.000000, 0.605340,-0.000000;;, + 181;3; 0.000000, 0.605340,-0.000000;;, + 182;3; 0.000000, 0.605340,-0.000000;;, + 183;3; 0.000000, 0.605340,-0.000000;;, + 184;3; 0.000000, 0.605340,-0.000000;;, + 185;3; 0.000000, 0.605340,-0.000000;;, + 186;3; 0.000000, 0.605340,-0.000000;;, + 187;3; 0.000000, 0.605340,-0.000000;;, + 188;3; 0.000000, 0.605340,-0.000000;;, + 189;3; 0.000000, 0.605340,-0.000000;;, + 190;3; 0.000000, 0.605340,-0.000000;;, + 191;3; 0.000000, 0.605340,-0.000000;;, + 192;3; 0.000000, 0.605340,-0.000000;;, + 193;3; 0.000000, 0.605340,-0.000000;;, + 194;3; 0.000000, 0.605340,-0.000000;;, + 195;3; 0.000000, 0.605340,-0.000000;;, + 196;3; 0.000000, 0.605340,-0.000000;;, + 197;3; 0.000000, 0.605340,-0.000000;;, + 198;3; 0.000000, 0.605340,-0.000000;;, + 199;3; 0.000000, 0.605340,-0.000000;;, + 200;3; 0.000000, 0.605340,-0.000000;;, + 201;3; 0.000000, 0.605340,-0.000000;;, + 202;3; 0.000000, 0.605340,-0.000000;;, + 203;3; 0.000000, 0.605340,-0.000000;;, + 204;3; 0.000000, 0.605340,-0.000000;;, + 205;3; 0.000000, 0.605340,-0.000000;;, + 206;3; 0.000000, 0.605340,-0.000000;;, + 207;3; 0.000000, 0.605340,-0.000000;;, + 208;3; 0.000000, 0.605340,-0.000000;;, + 209;3; 0.000000, 0.605340,-0.000000;;, + 210;3; 0.000000, 0.605340,-0.000000;;, + 211;3; 0.000000, 0.605340,-0.000000;;, + 212;3; 0.000000, 0.605340,-0.000000;;, + 213;3; 0.000000, 0.605340,-0.000000;;, + 214;3; 0.000000, 0.605340,-0.000000;;, + 215;3; 0.000000, 0.605340,-0.000000;;, + 216;3; 0.000000, 0.605340,-0.000000;;, + 217;3; 0.000000, 0.605340,-0.000000;;, + 218;3; 0.000000, 0.605340,-0.000000;;, + 219;3; 0.000000, 0.605340,-0.000000;;, + 220;3; 0.000000, 0.605340,-0.000000;;, + 221;3; 0.000000, 0.605340,-0.000000;;, + 222;3; 0.000000, 0.605340,-0.000000;;, + 223;3; 0.000000, 0.605340,-0.000000;;, + 224;3; 0.000000, 0.605340,-0.000000;;, + 225;3; 0.000000, 0.605340,-0.000000;;, + 226;3; 0.000000, 0.605340,-0.000000;;, + 227;3; 0.000000, 0.605340,-0.000000;;, + 228;3; 0.000000, 0.605340,-0.000000;;, + 229;3; 0.000000, 0.605340,-0.000000;;, + 230;3; 0.000000, 0.605340,-0.000000;;, + 231;3; 0.000000, 0.605340,-0.000000;;, + 232;3; 0.000000, 0.605340,-0.000000;;, + 233;3; 0.000000, 0.605340,-0.000000;;, + 234;3; 0.000000, 0.605340,-0.000000;;, + 235;3; 0.000000, 0.605340,-0.000000;;, + 236;3; 0.000000, 0.605340,-0.000000;;, + 237;3; 0.000000, 0.605340,-0.000000;;, + 238;3; 0.000000, 0.605340,-0.000000;;, + 239;3; 0.000000, 0.605340,-0.000000;;, + 240;3; 0.000000, 0.605340,-0.000000;;, + 241;3; 0.000000, 0.605340,-0.000000;;, + 242;3; 0.000000, 0.605340,-0.000000;;, + 243;3; 0.000000, 0.605340,-0.000000;;, + 244;3; 0.000000, 0.605340,-0.000000;;, + 245;3; 0.000000, 0.605340,-0.000000;;, + 246;3; 0.000000, 0.605340,-0.000000;;, + 247;3; 0.000000, 0.605340,-0.000000;;, + 248;3; 0.000000, 0.605340,-0.000000;;, + 249;3; 0.000000, 0.605340,-0.000000;;; + } + } + Animation { + {Armature_Bone_034} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 1;4;-0.992859,-0.119279, 0.000000, 0.000000;;, + 2;4;-0.992912,-0.118772, 0.000000, 0.000000;;, + 3;4;-0.993003,-0.117925, 0.000000, 0.000000;;, + 4;4;-0.993128,-0.116744, 0.000000, 0.000000;;, + 5;4;-0.993287,-0.115248, 0.000000, 0.000000;;, + 6;4;-0.993477,-0.113466, 0.000000, 0.000000;;, + 7;4;-0.993692,-0.111441, 0.000000, 0.000000;;, + 8;4;-0.993927,-0.109231, 0.000000, 0.000000;;, + 9;4;-0.994174,-0.106904, 0.000000, 0.000000;;, + 10;4;-0.994426,-0.104537, 0.000000, 0.000000;;, + 11;4;-0.994673,-0.102210, 0.000000, 0.000000;;, + 12;4;-0.994908,-0.100000, 0.000000, 0.000000;;, + 13;4;-0.995124,-0.097976, 0.000000, 0.000000;;, + 14;4;-0.995313,-0.096193, 0.000000, 0.000000;;, + 15;4;-0.995472,-0.094697, 0.000000, 0.000000;;, + 16;4;-0.995598,-0.093517, 0.000000, 0.000000;;, + 17;4;-0.995688,-0.092670, 0.000000, 0.000000;;, + 18;4;-0.995742,-0.092163, 0.000000, 0.000000;;, + 19;4;-0.995760,-0.091995, 0.000000, 0.000000;;, + 20;4;-0.995744,-0.092146, 0.000000, 0.000000;;, + 21;4;-0.995695,-0.092604, 0.000000, 0.000000;;, + 22;4;-0.995614,-0.093368, 0.000000, 0.000000;;, + 23;4;-0.995500,-0.094435, 0.000000, 0.000000;;, + 24;4;-0.995356,-0.095791, 0.000000, 0.000000;;, + 25;4;-0.995183,-0.097413, 0.000000, 0.000000;;, + 26;4;-0.994986,-0.099267, 0.000000, 0.000000;;, + 27;4;-0.994769,-0.101308, 0.000000, 0.000000;;, + 28;4;-0.994538,-0.103481, 0.000000, 0.000000;;, + 29;4;-0.994300,-0.105721, 0.000000, 0.000000;;, + 30;4;-0.994062,-0.107961, 0.000000, 0.000000;;, + 31;4;-0.993831,-0.110133, 0.000000, 0.000000;;, + 32;4;-0.993614,-0.112174, 0.000000, 0.000000;;, + 33;4;-0.993417,-0.114028, 0.000000, 0.000000;;, + 34;4;-0.993244,-0.115650, 0.000000, 0.000000;;, + 35;4;-0.993100,-0.117006, 0.000000, 0.000000;;, + 36;4;-0.992987,-0.118073, 0.000000, 0.000000;;, + 37;4;-0.992905,-0.118838, 0.000000, 0.000000;;, + 38;4;-0.992857,-0.119295, 0.000000, 0.000000;;, + 39;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 40;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 41;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 42;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 43;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 44;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 45;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 46;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 47;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 48;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 49;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 50;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 51;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 52;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 53;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 54;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 55;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 56;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 57;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 58;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 59;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 60;4;-0.992982,-0.117611, 0.000286, 0.000197;;, + 61;4;-0.993406,-0.112086, 0.001145, 0.000790;;, + 62;4;-0.994097,-0.103103, 0.002542, 0.001754;;, + 63;4;-0.995000,-0.091355, 0.004370, 0.003015;;, + 64;4;-0.996023,-0.078045, 0.006440, 0.004443;;, + 65;4;-0.997046,-0.064735, 0.008510, 0.005872;;, + 66;4;-0.997950,-0.052986, 0.010338, 0.007133;;, + 67;4;-0.998640,-0.044004, 0.011735, 0.008097;;, + 68;4;-0.999065,-0.038479, 0.012594, 0.008690;;, + 69;4;-0.999206,-0.036643, 0.012880, 0.008887;;, + 70;4;-0.999190,-0.036846, 0.012848, 0.008865;;, + 71;4;-0.999143,-0.037456, 0.012753, 0.008799;;, + 72;4;-0.999065,-0.038479, 0.012594, 0.008690;;, + 73;4;-0.998954,-0.039914, 0.012371, 0.008536;;, + 74;4;-0.998813,-0.041758, 0.012084, 0.008338;;, + 75;4;-0.998640,-0.044004, 0.011735, 0.008097;;, + 76;4;-0.998438,-0.046637, 0.011325, 0.007814;;, + 77;4;-0.998207,-0.049640, 0.010858, 0.007492;;, + 78;4;-0.997950,-0.052986, 0.010338, 0.007133;;, + 79;4;-0.997668,-0.056645, 0.009769, 0.006740;;, + 80;4;-0.997366,-0.060576, 0.009157, 0.006318;;, + 81;4;-0.997046,-0.064735, 0.008510, 0.005872;;, + 82;4;-0.996713,-0.069071, 0.007836, 0.005406;;, + 83;4;-0.996371,-0.073527, 0.007143, 0.004928;;, + 84;4;-0.996023,-0.078045, 0.006440, 0.004443;;, + 85;4;-0.995676,-0.082562, 0.005737, 0.003958;;, + 86;4;-0.995333,-0.087019, 0.005044, 0.003480;;, + 87;4;-0.995000,-0.091355, 0.004370, 0.003015;;, + 88;4;-0.994680,-0.095514, 0.003723, 0.002569;;, + 89;4;-0.994378,-0.099445, 0.003111, 0.002147;;, + 90;4;-0.994097,-0.103103, 0.002542, 0.001754;;, + 91;4;-0.993840,-0.106450, 0.002022, 0.001395;;, + 92;4;-0.993609,-0.109453, 0.001555, 0.001073;;, + 93;4;-0.993406,-0.112086, 0.001145, 0.000790;;, + 94;4;-0.993234,-0.114331, 0.000796, 0.000549;;, + 95;4;-0.993092,-0.116176, 0.000509, 0.000351;;, + 96;4;-0.992982,-0.117611, 0.000286, 0.000197;;, + 97;4;-0.992903,-0.118633, 0.000126, 0.000087;;, + 98;4;-0.992856,-0.119244, 0.000031, 0.000022;;, + 99;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 100;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 101;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 102;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 103;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 104;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 105;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 106;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 107;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 108;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 109;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 110;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 111;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 112;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 113;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 114;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 115;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 116;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 117;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 118;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 119;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 120;4;-0.992879,-0.109668, 0.000000, 0.000000;;, + 121;4;-0.992934,-0.076835, 0.000000, 0.000000;;, + 122;4;-0.992866,-0.020469, 0.000000, 0.000000;;, + 123;4;-0.992543, 0.051082, 0.000000,-0.000000;;, + 124;4;-0.991937, 0.126735, 0.000000,-0.000000;;, + 125;4;-0.980642, 0.212991, 0.000000,-0.000000;;, + 126;4;-0.946598, 0.319705, 0.000000,-0.000000;;, + 127;4;-0.893536, 0.435438, 0.000000,-0.000000;;, + 128;4;-0.833439, 0.542183, 0.000000,-0.000000;;, + 129;4;-0.777816, 0.628492, 0.000000,-0.000000;;, + 130;4;-0.714630, 0.704421, 0.000000,-0.000000;;, + 131;4;-0.633281, 0.776638, 0.000000,-0.000000;;, + 132;4;-0.553069, 0.833831, 0.000000,-0.000000;;, + 133;4;-0.498153, 0.867300, 0.000000,-0.000000;;, + 134;4;-0.479938, 0.877302, 0.000000,-0.000000;;, + 135;4;-0.501692, 0.866777, 0.000000,-0.000000;;, + 136;4;-0.566574, 0.830018, 0.000000,-0.000000;;, + 137;4;-0.659571, 0.763725, 0.000000,-0.000000;;, + 138;4;-0.750859, 0.674931, 0.000000,-0.000000;;, + 139;4;-0.817540, 0.575872, 0.000000,-0.000000;;, + 140;4;-0.869543, 0.440806, 0.000000,-0.000000;;, + 141;4;-0.919544, 0.250588, 0.000000,-0.000000;;, + 142;4;-0.959676, 0.054071, 0.000000,-0.000000;;, + 143;4;-0.983672,-0.084107, 0.000000, 0.000000;;, + 144;4;-0.991431,-0.130633, 0.000000, 0.000000;;, + 145;4;-0.992114,-0.129634, 0.000000, 0.000000;;, + 146;4;-0.992570,-0.126832, 0.000000, 0.000000;;, + 147;4;-0.992787,-0.123238, 0.000000, 0.000000;;, + 148;4;-0.992841,-0.120440, 0.000000, 0.000000;;, + 149;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 150;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 151;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 152;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 153;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 154;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 155;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 156;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 157;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 158;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 159;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 160;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 161;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 162;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 163;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 164;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 165;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 166;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 167;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 168;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 169;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 170;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 171;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 172;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 173;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 174;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 175;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 176;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 177;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 178;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 179;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 180;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 181;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 182;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 183;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 184;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 185;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 186;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 187;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 188;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 189;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 190;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 191;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 192;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 193;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 194;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 195;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 196;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 197;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 198;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 199;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 200;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 201;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 202;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 203;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 204;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 205;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 206;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 207;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 208;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 209;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 210;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 211;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 212;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 213;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 214;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 215;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 216;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 217;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 218;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 219;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 220;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 221;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 222;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 223;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 224;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 225;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 226;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 227;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 228;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 229;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 230;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 231;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 232;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 233;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 234;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 235;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 236;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 237;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 238;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 239;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 240;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 241;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 242;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 243;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 244;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 245;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 246;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 247;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 248;4;-0.992841,-0.119446, 0.000000, 0.000000;;, + 249;4;-0.992841,-0.119446, 0.000000, 0.000000;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3;-0.000000, 2.406491, 0.000000;;, + 1;3; 0.000000, 2.406491,-0.000000;;, + 2;3;-0.000000, 2.406491,-0.000000;;, + 3;3;-0.000000, 2.406491,-0.000000;;, + 4;3; 0.000000, 2.406491,-0.000000;;, + 5;3; 0.000000, 2.406491,-0.000000;;, + 6;3; 0.000000, 2.406491, 0.000000;;, + 7;3; 0.000000, 2.406491, 0.000000;;, + 8;3;-0.000000, 2.406491, 0.000000;;, + 9;3; 0.000000, 2.406491,-0.000000;;, + 10;3; 0.000000, 2.406491, 0.000000;;, + 11;3;-0.000000, 2.406491, 0.000000;;, + 12;3; 0.000000, 2.406491,-0.000000;;, + 13;3;-0.000000, 2.406491, 0.000000;;, + 14;3; 0.000000, 2.406491, 0.000000;;, + 15;3; 0.000000, 2.406491,-0.000000;;, + 16;3; 0.000000, 2.406491,-0.000000;;, + 17;3;-0.000000, 2.406491,-0.000000;;, + 18;3; 0.000000, 2.406491, 0.000000;;, + 19;3; 0.000000, 2.406491,-0.000000;;, + 20;3;-0.000000, 2.406491, 0.000000;;, + 21;3; 0.000000, 2.406491,-0.000000;;, + 22;3; 0.000000, 2.406491,-0.000000;;, + 23;3; 0.000000, 2.406491,-0.000000;;, + 24;3; 0.000000, 2.406491, 0.000000;;, + 25;3; 0.000000, 2.406491, 0.000000;;, + 26;3; 0.000000, 2.406491, 0.000000;;, + 27;3; 0.000000, 2.406491,-0.000000;;, + 28;3;-0.000000, 2.406491, 0.000000;;, + 29;3;-0.000000, 2.406491,-0.000000;;, + 30;3; 0.000000, 2.406491,-0.000000;;, + 31;3; 0.000000, 2.406491,-0.000000;;, + 32;3; 0.000000, 2.406491, 0.000000;;, + 33;3; 0.000000, 2.406491,-0.000000;;, + 34;3; 0.000000, 2.406491,-0.000000;;, + 35;3; 0.000000, 2.406491, 0.000000;;, + 36;3; 0.000000, 2.406491, 0.000000;;, + 37;3; 0.000000, 2.406491, 0.000000;;, + 38;3; 0.000000, 2.406491, 0.000000;;, + 39;3;-0.000000, 2.406491, 0.000000;;, + 40;3;-0.000000, 2.406491,-0.000000;;, + 41;3;-0.000000, 2.406491,-0.000000;;, + 42;3; 0.000000, 2.406491,-0.000000;;, + 43;3; 0.000000, 2.406491,-0.000000;;, + 44;3;-0.000000, 2.406491,-0.000000;;, + 45;3; 0.000000, 2.406491,-0.000000;;, + 46;3; 0.000000, 2.406491, 0.000000;;, + 47;3;-0.000000, 2.406491, 0.000000;;, + 48;3; 0.000000, 2.406491, 0.000000;;, + 49;3; 0.000000, 2.406491, 0.000000;;, + 50;3;-0.000000, 2.406491, 0.000000;;, + 51;3;-0.000000, 2.406491,-0.000000;;, + 52;3;-0.000000, 2.406491,-0.000000;;, + 53;3; 0.000000, 2.406491, 0.000000;;, + 54;3; 0.000000, 2.406491,-0.000000;;, + 55;3; 0.000000, 2.406491, 0.000000;;, + 56;3;-0.000000, 2.406491,-0.000000;;, + 57;3;-0.000000, 2.406491,-0.000000;;, + 58;3; 0.000000, 2.406491,-0.000000;;, + 59;3;-0.000000, 2.406491, 0.000000;;, + 60;3; 0.000000, 2.406491, 0.000000;;, + 61;3;-0.000000, 2.406491, 0.000000;;, + 62;3; 0.000000, 2.406491, 0.000000;;, + 63;3; 0.000000, 2.406491,-0.000000;;, + 64;3;-0.000000, 2.406491, 0.000000;;, + 65;3; 0.000000, 2.406490, 0.000000;;, + 66;3; 0.000000, 2.406491,-0.000000;;, + 67;3;-0.000000, 2.406491,-0.000000;;, + 68;3;-0.000000, 2.406491, 0.000000;;, + 69;3;-0.000000, 2.406491, 0.000000;;, + 70;3;-0.000000, 2.406491,-0.000000;;, + 71;3;-0.000000, 2.406491, 0.000000;;, + 72;3;-0.000000, 2.406491, 0.000000;;, + 73;3; 0.000000, 2.406491, 0.000000;;, + 74;3; 0.000000, 2.406491,-0.000000;;, + 75;3;-0.000000, 2.406491,-0.000000;;, + 76;3;-0.000000, 2.406491, 0.000000;;, + 77;3;-0.000000, 2.406491,-0.000000;;, + 78;3;-0.000000, 2.406491,-0.000000;;, + 79;3; 0.000000, 2.406491,-0.000000;;, + 80;3; 0.000000, 2.406491,-0.000000;;, + 81;3; 0.000000, 2.406491, 0.000000;;, + 82;3; 0.000000, 2.406491,-0.000000;;, + 83;3; 0.000000, 2.406491, 0.000000;;, + 84;3;-0.000000, 2.406491, 0.000000;;, + 85;3; 0.000000, 2.406491,-0.000000;;, + 86;3; 0.000000, 2.406491,-0.000000;;, + 87;3;-0.000000, 2.406491,-0.000000;;, + 88;3; 0.000000, 2.406491, 0.000000;;, + 89;3;-0.000000, 2.406491,-0.000000;;, + 90;3;-0.000000, 2.406491,-0.000000;;, + 91;3; 0.000000, 2.406491,-0.000000;;, + 92;3; 0.000000, 2.406491, 0.000000;;, + 93;3;-0.000000, 2.406491, 0.000000;;, + 94;3;-0.000000, 2.406491, 0.000000;;, + 95;3; 0.000000, 2.406491,-0.000000;;, + 96;3; 0.000000, 2.406491, 0.000000;;, + 97;3;-0.000000, 2.406491,-0.000000;;, + 98;3; 0.000000, 2.406491, 0.000000;;, + 99;3;-0.000000, 2.406491, 0.000000;;, + 100;3; 0.000000, 2.406491,-0.000000;;, + 101;3; 0.000000, 2.406491, 0.000000;;, + 102;3; 0.000000, 2.406491,-0.000000;;, + 103;3;-0.000000, 2.406491,-0.000000;;, + 104;3; 0.000000, 2.406491,-0.000000;;, + 105;3; 0.000000, 2.406491, 0.000000;;, + 106;3; 0.000000, 2.406491, 0.000000;;, + 107;3;-0.000000, 2.406491,-0.000000;;, + 108;3; 0.000000, 2.406491,-0.000000;;, + 109;3; 0.000000, 2.406491, 0.000000;;, + 110;3; 0.000000, 2.406491,-0.000000;;, + 111;3;-0.000000, 2.406491, 0.000000;;, + 112;3;-0.000000, 2.406491,-0.000000;;, + 113;3;-0.000000, 2.406491,-0.000000;;, + 114;3;-0.000000, 2.406491, 0.000000;;, + 115;3; 0.000000, 2.406491,-0.000000;;, + 116;3; 0.000000, 2.406491,-0.000000;;, + 117;3; 0.000000, 2.406491,-0.000000;;, + 118;3;-0.000000, 2.406491, 0.000000;;, + 119;3;-0.000000, 2.406491, 0.000000;;, + 120;3; 0.000000, 2.406491,-0.000000;;, + 121;3;-0.000000, 2.406491,-0.000000;;, + 122;3; 0.000000, 2.406491, 0.000000;;, + 123;3; 0.000000, 2.406491,-0.000000;;, + 124;3;-0.000000, 2.406491,-0.000000;;, + 125;3;-0.000000, 2.406491, 0.000000;;, + 126;3;-0.000000, 2.406491, 0.000000;;, + 127;3;-0.000000, 2.406491,-0.000000;;, + 128;3; 0.000000, 2.406491,-0.000000;;, + 129;3; 0.000000, 2.406491,-0.000000;;, + 130;3; 0.000000, 2.406491,-0.000000;;, + 131;3;-0.000000, 2.406491,-0.000000;;, + 132;3;-0.000000, 2.406491,-0.000000;;, + 133;3; 0.000000, 2.406491, 0.000000;;, + 134;3; 0.000000, 2.406491, 0.000000;;, + 135;3;-0.000000, 2.406491, 0.000000;;, + 136;3; 0.000000, 2.406491, 0.000000;;, + 137;3;-0.000000, 2.406491,-0.000000;;, + 138;3;-0.000000, 2.406491,-0.000000;;, + 139;3;-0.000000, 2.406491,-0.000000;;, + 140;3; 0.000000, 2.406491,-0.000000;;, + 141;3;-0.000000, 2.406491,-0.000000;;, + 142;3;-0.000000, 2.406491,-0.000000;;, + 143;3;-0.000000, 2.406491,-0.000000;;, + 144;3;-0.000000, 2.406491,-0.000000;;, + 145;3;-0.000000, 2.406491, 0.000000;;, + 146;3; 0.000000, 2.406491, 0.000000;;, + 147;3; 0.000000, 2.406491, 0.000000;;, + 148;3;-0.000000, 2.406491, 0.000000;;, + 149;3;-0.000000, 2.406491, 0.000000;;, + 150;3;-0.000000, 2.406491, 0.000000;;, + 151;3;-0.000000, 2.406491, 0.000000;;, + 152;3;-0.000000, 2.406491, 0.000000;;, + 153;3;-0.000000, 2.406491, 0.000000;;, + 154;3;-0.000000, 2.406491, 0.000000;;, + 155;3;-0.000000, 2.406491, 0.000000;;, + 156;3;-0.000000, 2.406491, 0.000000;;, + 157;3;-0.000000, 2.406491, 0.000000;;, + 158;3;-0.000000, 2.406491, 0.000000;;, + 159;3;-0.000000, 2.406491, 0.000000;;, + 160;3;-0.000000, 2.406491, 0.000000;;, + 161;3;-0.000000, 2.406491, 0.000000;;, + 162;3;-0.000000, 2.406491, 0.000000;;, + 163;3;-0.000000, 2.406491, 0.000000;;, + 164;3;-0.000000, 2.406491, 0.000000;;, + 165;3;-0.000000, 2.406491, 0.000000;;, + 166;3;-0.000000, 2.406491, 0.000000;;, + 167;3;-0.000000, 2.406491, 0.000000;;, + 168;3;-0.000000, 2.406491, 0.000000;;, + 169;3;-0.000000, 2.406491, 0.000000;;, + 170;3;-0.000000, 2.406491, 0.000000;;, + 171;3;-0.000000, 2.406491, 0.000000;;, + 172;3;-0.000000, 2.406491, 0.000000;;, + 173;3;-0.000000, 2.406491, 0.000000;;, + 174;3;-0.000000, 2.406491, 0.000000;;, + 175;3;-0.000000, 2.406491, 0.000000;;, + 176;3;-0.000000, 2.406491, 0.000000;;, + 177;3;-0.000000, 2.406491, 0.000000;;, + 178;3;-0.000000, 2.406491, 0.000000;;, + 179;3;-0.000000, 2.406491, 0.000000;;, + 180;3;-0.000000, 2.406491, 0.000000;;, + 181;3;-0.000000, 2.406491, 0.000000;;, + 182;3;-0.000000, 2.406491, 0.000000;;, + 183;3;-0.000000, 2.406491, 0.000000;;, + 184;3;-0.000000, 2.406491, 0.000000;;, + 185;3;-0.000000, 2.406491, 0.000000;;, + 186;3;-0.000000, 2.406491, 0.000000;;, + 187;3;-0.000000, 2.406491, 0.000000;;, + 188;3;-0.000000, 2.406491, 0.000000;;, + 189;3;-0.000000, 2.406491, 0.000000;;, + 190;3;-0.000000, 2.406491, 0.000000;;, + 191;3;-0.000000, 2.406491, 0.000000;;, + 192;3;-0.000000, 2.406491, 0.000000;;, + 193;3;-0.000000, 2.406491, 0.000000;;, + 194;3;-0.000000, 2.406491, 0.000000;;, + 195;3;-0.000000, 2.406491, 0.000000;;, + 196;3;-0.000000, 2.406491, 0.000000;;, + 197;3;-0.000000, 2.406491, 0.000000;;, + 198;3;-0.000000, 2.406491, 0.000000;;, + 199;3;-0.000000, 2.406491, 0.000000;;, + 200;3;-0.000000, 2.406491, 0.000000;;, + 201;3;-0.000000, 2.406491, 0.000000;;, + 202;3;-0.000000, 2.406491, 0.000000;;, + 203;3;-0.000000, 2.406491, 0.000000;;, + 204;3;-0.000000, 2.406491, 0.000000;;, + 205;3;-0.000000, 2.406491, 0.000000;;, + 206;3;-0.000000, 2.406491, 0.000000;;, + 207;3;-0.000000, 2.406491, 0.000000;;, + 208;3;-0.000000, 2.406491, 0.000000;;, + 209;3;-0.000000, 2.406491, 0.000000;;, + 210;3;-0.000000, 2.406491, 0.000000;;, + 211;3;-0.000000, 2.406491, 0.000000;;, + 212;3;-0.000000, 2.406491, 0.000000;;, + 213;3;-0.000000, 2.406491, 0.000000;;, + 214;3;-0.000000, 2.406491, 0.000000;;, + 215;3;-0.000000, 2.406491, 0.000000;;, + 216;3;-0.000000, 2.406491, 0.000000;;, + 217;3;-0.000000, 2.406491, 0.000000;;, + 218;3;-0.000000, 2.406491, 0.000000;;, + 219;3;-0.000000, 2.406491, 0.000000;;, + 220;3;-0.000000, 2.406491, 0.000000;;, + 221;3;-0.000000, 2.406491, 0.000000;;, + 222;3;-0.000000, 2.406491, 0.000000;;, + 223;3;-0.000000, 2.406491, 0.000000;;, + 224;3;-0.000000, 2.406491, 0.000000;;, + 225;3;-0.000000, 2.406491, 0.000000;;, + 226;3;-0.000000, 2.406491, 0.000000;;, + 227;3;-0.000000, 2.406491, 0.000000;;, + 228;3;-0.000000, 2.406491, 0.000000;;, + 229;3;-0.000000, 2.406491, 0.000000;;, + 230;3;-0.000000, 2.406491, 0.000000;;, + 231;3;-0.000000, 2.406491, 0.000000;;, + 232;3;-0.000000, 2.406491, 0.000000;;, + 233;3;-0.000000, 2.406491, 0.000000;;, + 234;3;-0.000000, 2.406491, 0.000000;;, + 235;3;-0.000000, 2.406491, 0.000000;;, + 236;3;-0.000000, 2.406491, 0.000000;;, + 237;3;-0.000000, 2.406491, 0.000000;;, + 238;3;-0.000000, 2.406491, 0.000000;;, + 239;3;-0.000000, 2.406491, 0.000000;;, + 240;3;-0.000000, 2.406491, 0.000000;;, + 241;3;-0.000000, 2.406491, 0.000000;;, + 242;3;-0.000000, 2.406491, 0.000000;;, + 243;3;-0.000000, 2.406491, 0.000000;;, + 244;3;-0.000000, 2.406491, 0.000000;;, + 245;3;-0.000000, 2.406491, 0.000000;;, + 246;3;-0.000000, 2.406491, 0.000000;;, + 247;3;-0.000000, 2.406491, 0.000000;;, + 248;3;-0.000000, 2.406491, 0.000000;;, + 249;3;-0.000000, 2.406491, 0.000000;;; + } + } + Animation { + {Armature_Bone_038} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 1;4;-0.995791,-0.091647, 0.000000, 0.000000;;, + 2;4;-0.995815,-0.091359, 0.000000, 0.000000;;, + 3;4;-0.995856,-0.090877, 0.000000, 0.000000;;, + 4;4;-0.995912,-0.090205, 0.000000, 0.000000;;, + 5;4;-0.995984,-0.089354, 0.000000, 0.000000;;, + 6;4;-0.996069,-0.088341, 0.000000, 0.000000;;, + 7;4;-0.996166,-0.087189, 0.000000, 0.000000;;, + 8;4;-0.996272,-0.085932, 0.000000, 0.000000;;, + 9;4;-0.996384,-0.084608, 0.000000, 0.000000;;, + 10;4;-0.996497,-0.083262, 0.000000, 0.000000;;, + 11;4;-0.996609,-0.081939, 0.000000, 0.000000;;, + 12;4;-0.996715,-0.080681, 0.000000, 0.000000;;, + 13;4;-0.996812,-0.079530, 0.000000, 0.000000;;, + 14;4;-0.996897,-0.078516, 0.000000, 0.000000;;, + 15;4;-0.996969,-0.077665, 0.000000, 0.000000;;, + 16;4;-0.997025,-0.076994, 0.000000, 0.000000;;, + 17;4;-0.997066,-0.076512, 0.000000, 0.000000;;, + 18;4;-0.997090,-0.076223, 0.000000, 0.000000;;, + 19;4;-0.997098,-0.076128, 0.000000, 0.000000;;, + 20;4;-0.997091,-0.076214, 0.000000, 0.000000;;, + 21;4;-0.997069,-0.076474, 0.000000, 0.000000;;, + 22;4;-0.997032,-0.076909, 0.000000, 0.000000;;, + 23;4;-0.996981,-0.077516, 0.000000, 0.000000;;, + 24;4;-0.996916,-0.078287, 0.000000, 0.000000;;, + 25;4;-0.996839,-0.079210, 0.000000, 0.000000;;, + 26;4;-0.996750,-0.080264, 0.000000, 0.000000;;, + 27;4;-0.996652,-0.081425, 0.000000, 0.000000;;, + 28;4;-0.996548,-0.082661, 0.000000, 0.000000;;, + 29;4;-0.996440,-0.083935, 0.000000, 0.000000;;, + 30;4;-0.996333,-0.085209, 0.000000, 0.000000;;, + 31;4;-0.996229,-0.086445, 0.000000, 0.000000;;, + 32;4;-0.996131,-0.087606, 0.000000, 0.000000;;, + 33;4;-0.996042,-0.088661, 0.000000, 0.000000;;, + 34;4;-0.995965,-0.089583, 0.000000, 0.000000;;, + 35;4;-0.995900,-0.090354, 0.000000, 0.000000;;, + 36;4;-0.995849,-0.090961, 0.000000, 0.000000;;, + 37;4;-0.995812,-0.091396, 0.000000, 0.000000;;, + 38;4;-0.995790,-0.091656, 0.000000, 0.000000;;, + 39;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 40;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 41;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 42;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 43;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 44;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 45;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 46;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 47;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 48;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 49;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 50;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 51;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 52;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 53;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 54;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 55;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 56;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 57;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 58;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 59;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 60;4;-0.995865,-0.089200, 0.000328, 0.000349;;, + 61;4;-0.996113,-0.081547, 0.001316, 0.001398;;, + 62;4;-0.996517,-0.069104, 0.002923, 0.003105;;, + 63;4;-0.997045,-0.052830, 0.005024, 0.005337;;, + 64;4;-0.997643,-0.034394, 0.007405, 0.007865;;, + 65;4;-0.998241,-0.015958, 0.009785, 0.010394;;, + 66;4;-0.998769, 0.000316, 0.011886, 0.012626;;, + 67;4;-0.999172, 0.012759, 0.013493, 0.014332;;, + 68;4;-0.999421, 0.020412, 0.014481, 0.015382;;, + 69;4;-0.999503, 0.022954, 0.014809, 0.015731;;, + 70;4;-0.999494, 0.022674, 0.014773, 0.015692;;, + 71;4;-0.999467, 0.021828, 0.014664, 0.015576;;, + 72;4;-0.999421, 0.020412, 0.014481, 0.015382;;, + 73;4;-0.999356, 0.018424, 0.014224, 0.015109;;, + 74;4;-0.999273, 0.015869, 0.013894, 0.014759;;, + 75;4;-0.999172, 0.012759, 0.013493, 0.014332;;, + 76;4;-0.999054, 0.009111, 0.013022, 0.013832;;, + 77;4;-0.998919, 0.004952, 0.012485, 0.013262;;, + 78;4;-0.998769, 0.000316, 0.011886, 0.012626;;, + 79;4;-0.998604,-0.004751, 0.011232, 0.011931;;, + 80;4;-0.998428,-0.010197, 0.010529, 0.011184;;, + 81;4;-0.998241,-0.015958, 0.009785, 0.010394;;, + 82;4;-0.998046,-0.021964, 0.009010, 0.009570;;, + 83;4;-0.997846,-0.028136, 0.008213, 0.008723;;, + 84;4;-0.997643,-0.034394, 0.007405, 0.007865;;, + 85;4;-0.997440,-0.040652, 0.006597, 0.007007;;, + 86;4;-0.997240,-0.046824, 0.005800, 0.006160;;, + 87;4;-0.997045,-0.052830, 0.005024, 0.005337;;, + 88;4;-0.996858,-0.058591, 0.004280, 0.004547;;, + 89;4;-0.996681,-0.064037, 0.003577, 0.003800;;, + 90;4;-0.996517,-0.069105, 0.002923, 0.003105;;, + 91;4;-0.996367,-0.073740, 0.002324, 0.002469;;, + 92;4;-0.996232,-0.077899, 0.001787, 0.001899;;, + 93;4;-0.996113,-0.081547, 0.001316, 0.001398;;, + 94;4;-0.996013,-0.084657, 0.000915, 0.000972;;, + 95;4;-0.995930,-0.087212, 0.000585, 0.000621;;, + 96;4;-0.995865,-0.089200, 0.000328, 0.000349;;, + 97;4;-0.995819,-0.090616, 0.000145, 0.000154;;, + 98;4;-0.995792,-0.091462, 0.000036, 0.000038;;, + 99;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 100;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 101;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 102;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 103;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 104;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 105;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 106;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 107;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 108;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 109;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 110;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 111;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 112;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 113;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 114;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 115;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 116;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 117;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 118;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 119;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 120;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 121;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 122;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 123;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 124;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 125;4;-0.975771,-0.026943, 0.000000, 0.000000;;, + 126;4;-0.919405, 0.155578, 0.000000, 0.000000;;, + 127;4;-0.847032, 0.389933, 0.000000, 0.000000;;, + 128;4;-0.790666, 0.572454,-0.000000, 0.000000;;, + 129;4;-0.770654, 0.637253,-0.000000, 0.000000;;, + 130;4;-0.770654, 0.637253,-0.000000, 0.000000;;, + 131;4;-0.770654, 0.637253,-0.000000, 0.000000;;, + 132;4;-0.770654, 0.637253,-0.000000, 0.000000;;, + 133;4;-0.770654, 0.637253,-0.000000, 0.000000;;, + 134;4;-0.770654, 0.637253,-0.000000, 0.000000;;, + 135;4;-0.791009, 0.596312, 0.000000, 0.000000;;, + 136;4;-0.848342, 0.475164, 0.000000,-0.000000;;, + 137;4;-0.921957, 0.303958, 0.000000,-0.000000;;, + 138;4;-0.979290, 0.140156, 0.000000,-0.000000;;, + 139;4;-0.999645, 0.026644, 0.000000,-0.000000;;, + 140;4;-0.998075,-0.051756, 0.000000,-0.000000;;, + 141;4;-0.993654,-0.116657, 0.000000,-0.000000;;, + 142;4;-0.987977,-0.160876, 0.000000,-0.000000;;, + 143;4;-0.983556,-0.183124, 0.000000,-0.000000;;, + 144;4;-0.981986,-0.188953, 0.000000,-0.000000;;, + 145;4;-0.983213,-0.180312, 0.000000,-0.000000;;, + 146;4;-0.986667,-0.155973, 0.000000,-0.000000;;, + 147;4;-0.991102,-0.124722, 0.000000,-0.000000;;, + 148;4;-0.994556,-0.100383, 0.000000,-0.000000;;, + 149;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 150;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 151;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 152;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 153;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 154;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 155;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 156;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 157;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 158;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 159;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 160;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 161;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 162;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 163;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 164;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 165;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 166;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 167;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 168;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 169;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 170;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 171;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 172;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 173;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 174;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 175;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 176;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 177;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 178;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 179;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 180;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 181;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 182;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 183;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 184;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 185;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 186;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 187;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 188;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 189;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 190;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 191;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 192;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 193;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 194;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 195;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 196;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 197;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 198;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 199;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 200;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 201;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 202;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 203;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 204;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 205;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 206;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 207;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 208;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 209;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 210;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 211;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 212;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 213;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 214;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 215;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 216;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 217;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 218;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 219;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 220;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 221;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 222;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 223;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 224;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 225;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 226;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 227;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 228;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 229;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 230;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 231;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 232;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 233;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 234;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 235;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 236;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 237;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 238;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 239;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 240;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 241;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 242;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 243;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 244;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 245;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 246;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 247;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 248;4;-0.995783,-0.091742, 0.000000, 0.000000;;, + 249;4;-0.995783,-0.091742, 0.000000, 0.000000;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3; 0.000000, 2.366877, 0.000000;;, + 1;3; 0.000000, 2.366877, 0.000000;;, + 2;3;-0.000000, 2.366877, 0.000000;;, + 3;3; 0.000000, 2.366877,-0.000000;;, + 4;3; 0.000000, 2.366877, 0.000000;;, + 5;3; 0.000000, 2.366877, 0.000000;;, + 6;3; 0.000000, 2.366877, 0.000000;;, + 7;3; 0.000000, 2.366877,-0.000000;;, + 8;3; 0.000000, 2.366877, 0.000000;;, + 9;3; 0.000000, 2.366877, 0.000000;;, + 10;3; 0.000000, 2.366877,-0.000000;;, + 11;3;-0.000000, 2.366877, 0.000000;;, + 12;3; 0.000000, 2.366877, 0.000000;;, + 13;3; 0.000000, 2.366878, 0.000000;;, + 14;3; 0.000000, 2.366877,-0.000000;;, + 15;3;-0.000000, 2.366877,-0.000000;;, + 16;3;-0.000000, 2.366878,-0.000000;;, + 17;3;-0.000000, 2.366877,-0.000000;;, + 18;3; 0.000000, 2.366877, 0.000000;;, + 19;3;-0.000000, 2.366878, 0.000000;;, + 20;3; 0.000000, 2.366877, 0.000000;;, + 21;3; 0.000000, 2.366877,-0.000000;;, + 22;3;-0.000000, 2.366877, 0.000000;;, + 23;3;-0.000000, 2.366877,-0.000000;;, + 24;3;-0.000000, 2.366877,-0.000000;;, + 25;3; 0.000000, 2.366877, 0.000000;;, + 26;3; 0.000000, 2.366877, 0.000000;;, + 27;3;-0.000000, 2.366877,-0.000000;;, + 28;3; 0.000000, 2.366877,-0.000000;;, + 29;3; 0.000000, 2.366877,-0.000000;;, + 30;3; 0.000000, 2.366877,-0.000000;;, + 31;3; 0.000000, 2.366877,-0.000000;;, + 32;3;-0.000000, 2.366877, 0.000000;;, + 33;3; 0.000000, 2.366877, 0.000000;;, + 34;3; 0.000000, 2.366877,-0.000000;;, + 35;3; 0.000000, 2.366877,-0.000000;;, + 36;3; 0.000000, 2.366877,-0.000000;;, + 37;3;-0.000000, 2.366877, 0.000000;;, + 38;3; 0.000000, 2.366877, 0.000000;;, + 39;3; 0.000000, 2.366877, 0.000000;;, + 40;3;-0.000000, 2.366877,-0.000000;;, + 41;3;-0.000000, 2.366877,-0.000000;;, + 42;3; 0.000000, 2.366877, 0.000000;;, + 43;3; 0.000000, 2.366877,-0.000000;;, + 44;3;-0.000000, 2.366876,-0.000000;;, + 45;3;-0.000000, 2.366877, 0.000000;;, + 46;3;-0.000000, 2.366877, 0.000000;;, + 47;3; 0.000000, 2.366877,-0.000000;;, + 48;3; 0.000000, 2.366877, 0.000000;;, + 49;3; 0.000000, 2.366877,-0.000000;;, + 50;3; 0.000000, 2.366877, 0.000000;;, + 51;3;-0.000000, 2.366877,-0.000000;;, + 52;3;-0.000000, 2.366877, 0.000000;;, + 53;3;-0.000000, 2.366877, 0.000000;;, + 54;3; 0.000000, 2.366877, 0.000000;;, + 55;3;-0.000000, 2.366877,-0.000000;;, + 56;3;-0.000000, 2.366878,-0.000000;;, + 57;3;-0.000000, 2.366877, 0.000000;;, + 58;3; 0.000000, 2.366877, 0.000000;;, + 59;3;-0.000000, 2.366877, 0.000000;;, + 60;3; 0.000000, 2.366877, 0.000000;;, + 61;3;-0.000000, 2.366877, 0.000000;;, + 62;3; 0.000000, 2.366877, 0.000000;;, + 63;3;-0.000000, 2.366878,-0.000000;;, + 64;3; 0.000000, 2.366877, 0.000000;;, + 65;3;-0.000000, 2.366877,-0.000000;;, + 66;3;-0.000000, 2.366877,-0.000000;;, + 67;3;-0.000000, 2.366877,-0.000000;;, + 68;3; 0.000000, 2.366877, 0.000000;;, + 69;3;-0.000000, 2.366877,-0.000000;;, + 70;3; 0.000000, 2.366877,-0.000000;;, + 71;3;-0.000000, 2.366877, 0.000000;;, + 72;3; 0.000000, 2.366876, 0.000000;;, + 73;3;-0.000000, 2.366877,-0.000000;;, + 74;3;-0.000000, 2.366877, 0.000000;;, + 75;3; 0.000000, 2.366876,-0.000000;;, + 76;3;-0.000000, 2.366877, 0.000000;;, + 77;3;-0.000000, 2.366877, 0.000000;;, + 78;3;-0.000000, 2.366876, 0.000000;;, + 79;3; 0.000000, 2.366877, 0.000000;;, + 80;3; 0.000000, 2.366877,-0.000000;;, + 81;3;-0.000000, 2.366876, 0.000000;;, + 82;3; 0.000000, 2.366877, 0.000000;;, + 83;3; 0.000000, 2.366877,-0.000000;;, + 84;3;-0.000000, 2.366877,-0.000000;;, + 85;3; 0.000000, 2.366877, 0.000000;;, + 86;3;-0.000000, 2.366877, 0.000000;;, + 87;3;-0.000000, 2.366877,-0.000000;;, + 88;3;-0.000000, 2.366877,-0.000000;;, + 89;3; 0.000000, 2.366877, 0.000000;;, + 90;3; 0.000000, 2.366877, 0.000000;;, + 91;3; 0.000000, 2.366877, 0.000000;;, + 92;3;-0.000000, 2.366877, 0.000000;;, + 93;3; 0.000000, 2.366877,-0.000000;;, + 94;3;-0.000000, 2.366877,-0.000000;;, + 95;3;-0.000000, 2.366877, 0.000000;;, + 96;3;-0.000000, 2.366877,-0.000000;;, + 97;3; 0.000000, 2.366877,-0.000000;;, + 98;3; 0.000000, 2.366877,-0.000000;;, + 99;3;-0.000000, 2.366877, 0.000000;;, + 100;3;-0.000000, 2.366877,-0.000000;;, + 101;3;-0.000000, 2.366877,-0.000000;;, + 102;3; 0.000000, 2.366877, 0.000000;;, + 103;3; 0.000000, 2.366877,-0.000000;;, + 104;3;-0.000000, 2.366877,-0.000000;;, + 105;3; 0.000000, 2.366877,-0.000000;;, + 106;3; 0.000000, 2.366877,-0.000000;;, + 107;3;-0.000000, 2.366877,-0.000000;;, + 108;3; 0.000000, 2.366877,-0.000000;;, + 109;3;-0.000000, 2.366877,-0.000000;;, + 110;3;-0.000000, 2.366877, 0.000000;;, + 111;3;-0.000000, 2.366877, 0.000000;;, + 112;3; 0.000000, 2.366877,-0.000000;;, + 113;3; 0.000000, 2.366877, 0.000000;;, + 114;3;-0.000000, 2.366877, 0.000000;;, + 115;3;-0.000000, 2.366877, 0.000000;;, + 116;3; 0.000000, 2.366877, 0.000000;;, + 117;3;-0.000000, 2.366877,-0.000000;;, + 118;3;-0.000000, 2.366877,-0.000000;;, + 119;3; 0.000000, 2.366877, 0.000000;;, + 120;3; 0.000000, 2.366877,-0.000000;;, + 121;3; 0.000000, 2.366877, 0.000000;;, + 122;3;-0.000000, 2.366877, 0.000000;;, + 123;3; 0.000000, 2.366877,-0.000000;;, + 124;3; 0.000000, 2.366877,-0.000000;;, + 125;3; 0.000000, 2.366877,-0.000000;;, + 126;3; 0.000000, 2.366877,-0.000000;;, + 127;3; 0.000000, 2.366876, 0.000000;;, + 128;3; 0.000000, 2.366877,-0.000000;;, + 129;3; 0.000000, 2.366877, 0.000000;;, + 130;3;-0.000000, 2.366877,-0.000000;;, + 131;3; 0.000000, 2.366877,-0.000000;;, + 132;3; 0.000000, 2.366877, 0.000000;;, + 133;3;-0.000000, 2.366877, 0.000000;;, + 134;3; 0.000000, 2.366877, 0.000000;;, + 135;3; 0.000000, 2.366877, 0.000000;;, + 136;3; 0.000000, 2.366877, 0.000000;;, + 137;3;-0.000000, 2.366877, 0.000000;;, + 138;3;-0.000000, 2.366876,-0.000000;;, + 139;3;-0.000000, 2.366877, 0.000000;;, + 140;3; 0.000000, 2.366877, 0.000000;;, + 141;3;-0.000000, 2.366876, 0.000000;;, + 142;3;-0.000000, 2.366877, 0.000000;;, + 143;3; 0.000000, 2.366877,-0.000000;;, + 144;3;-0.000000, 2.366878,-0.000000;;, + 145;3; 0.000000, 2.366878,-0.000000;;, + 146;3; 0.000000, 2.366877, 0.000000;;, + 147;3; 0.000000, 2.366877, 0.000000;;, + 148;3; 0.000000, 2.366877,-0.000000;;, + 149;3; 0.000000, 2.366877, 0.000000;;, + 150;3; 0.000000, 2.366877, 0.000000;;, + 151;3; 0.000000, 2.366877, 0.000000;;, + 152;3; 0.000000, 2.366877, 0.000000;;, + 153;3; 0.000000, 2.366877, 0.000000;;, + 154;3; 0.000000, 2.366877, 0.000000;;, + 155;3; 0.000000, 2.366877, 0.000000;;, + 156;3; 0.000000, 2.366877, 0.000000;;, + 157;3; 0.000000, 2.366877, 0.000000;;, + 158;3; 0.000000, 2.366877, 0.000000;;, + 159;3; 0.000000, 2.366877, 0.000000;;, + 160;3; 0.000000, 2.366877, 0.000000;;, + 161;3; 0.000000, 2.366877, 0.000000;;, + 162;3; 0.000000, 2.366877, 0.000000;;, + 163;3; 0.000000, 2.366877, 0.000000;;, + 164;3; 0.000000, 2.366877, 0.000000;;, + 165;3; 0.000000, 2.366877, 0.000000;;, + 166;3; 0.000000, 2.366877, 0.000000;;, + 167;3; 0.000000, 2.366877, 0.000000;;, + 168;3; 0.000000, 2.366877, 0.000000;;, + 169;3; 0.000000, 2.366877, 0.000000;;, + 170;3; 0.000000, 2.366877, 0.000000;;, + 171;3; 0.000000, 2.366877, 0.000000;;, + 172;3; 0.000000, 2.366877, 0.000000;;, + 173;3; 0.000000, 2.366877, 0.000000;;, + 174;3; 0.000000, 2.366877, 0.000000;;, + 175;3; 0.000000, 2.366877, 0.000000;;, + 176;3; 0.000000, 2.366877, 0.000000;;, + 177;3; 0.000000, 2.366877, 0.000000;;, + 178;3; 0.000000, 2.366877, 0.000000;;, + 179;3; 0.000000, 2.366877, 0.000000;;, + 180;3; 0.000000, 2.366877, 0.000000;;, + 181;3; 0.000000, 2.366877, 0.000000;;, + 182;3; 0.000000, 2.366877, 0.000000;;, + 183;3; 0.000000, 2.366877, 0.000000;;, + 184;3; 0.000000, 2.366877, 0.000000;;, + 185;3; 0.000000, 2.366877, 0.000000;;, + 186;3; 0.000000, 2.366877, 0.000000;;, + 187;3; 0.000000, 2.366877, 0.000000;;, + 188;3; 0.000000, 2.366877, 0.000000;;, + 189;3; 0.000000, 2.366877, 0.000000;;, + 190;3; 0.000000, 2.366877, 0.000000;;, + 191;3; 0.000000, 2.366877, 0.000000;;, + 192;3; 0.000000, 2.366877, 0.000000;;, + 193;3; 0.000000, 2.366877, 0.000000;;, + 194;3; 0.000000, 2.366877, 0.000000;;, + 195;3; 0.000000, 2.366877, 0.000000;;, + 196;3; 0.000000, 2.366877, 0.000000;;, + 197;3; 0.000000, 2.366877, 0.000000;;, + 198;3; 0.000000, 2.366877, 0.000000;;, + 199;3; 0.000000, 2.366877, 0.000000;;, + 200;3; 0.000000, 2.366877, 0.000000;;, + 201;3; 0.000000, 2.366877, 0.000000;;, + 202;3; 0.000000, 2.366877, 0.000000;;, + 203;3; 0.000000, 2.366877, 0.000000;;, + 204;3; 0.000000, 2.366877, 0.000000;;, + 205;3; 0.000000, 2.366877, 0.000000;;, + 206;3; 0.000000, 2.366877, 0.000000;;, + 207;3; 0.000000, 2.366877, 0.000000;;, + 208;3; 0.000000, 2.366877, 0.000000;;, + 209;3; 0.000000, 2.366877, 0.000000;;, + 210;3; 0.000000, 2.366877, 0.000000;;, + 211;3; 0.000000, 2.366877, 0.000000;;, + 212;3; 0.000000, 2.366877, 0.000000;;, + 213;3; 0.000000, 2.366877, 0.000000;;, + 214;3; 0.000000, 2.366877, 0.000000;;, + 215;3; 0.000000, 2.366877, 0.000000;;, + 216;3; 0.000000, 2.366877, 0.000000;;, + 217;3; 0.000000, 2.366877, 0.000000;;, + 218;3; 0.000000, 2.366877, 0.000000;;, + 219;3; 0.000000, 2.366877, 0.000000;;, + 220;3; 0.000000, 2.366877, 0.000000;;, + 221;3; 0.000000, 2.366877, 0.000000;;, + 222;3; 0.000000, 2.366877, 0.000000;;, + 223;3; 0.000000, 2.366877, 0.000000;;, + 224;3; 0.000000, 2.366877, 0.000000;;, + 225;3; 0.000000, 2.366877, 0.000000;;, + 226;3; 0.000000, 2.366877, 0.000000;;, + 227;3; 0.000000, 2.366877, 0.000000;;, + 228;3; 0.000000, 2.366877, 0.000000;;, + 229;3; 0.000000, 2.366877, 0.000000;;, + 230;3; 0.000000, 2.366877, 0.000000;;, + 231;3; 0.000000, 2.366877, 0.000000;;, + 232;3; 0.000000, 2.366877, 0.000000;;, + 233;3; 0.000000, 2.366877, 0.000000;;, + 234;3; 0.000000, 2.366877, 0.000000;;, + 235;3; 0.000000, 2.366877, 0.000000;;, + 236;3; 0.000000, 2.366877, 0.000000;;, + 237;3; 0.000000, 2.366877, 0.000000;;, + 238;3; 0.000000, 2.366877, 0.000000;;, + 239;3; 0.000000, 2.366877, 0.000000;;, + 240;3; 0.000000, 2.366877, 0.000000;;, + 241;3; 0.000000, 2.366877, 0.000000;;, + 242;3; 0.000000, 2.366877, 0.000000;;, + 243;3; 0.000000, 2.366877, 0.000000;;, + 244;3; 0.000000, 2.366877, 0.000000;;, + 245;3; 0.000000, 2.366877, 0.000000;;, + 246;3; 0.000000, 2.366877, 0.000000;;, + 247;3; 0.000000, 2.366877, 0.000000;;, + 248;3; 0.000000, 2.366877, 0.000000;;, + 249;3; 0.000000, 2.366877, 0.000000;;; + } + } + Animation { + {Armature_Bone_009} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 1;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 2;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 3;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 4;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 5;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 6;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 7;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 8;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 9;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 10;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 11;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 12;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 13;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 14;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 15;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 16;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 17;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 18;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 19;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 20;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 21;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 22;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 23;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 24;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 25;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 26;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 27;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 28;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 29;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 30;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 31;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 32;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 33;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 34;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 35;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 36;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 37;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 38;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 39;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 40;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 41;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 42;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 43;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 44;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 45;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 46;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 47;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 48;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 49;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 50;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 51;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 52;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 53;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 54;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 55;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 56;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 57;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 58;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 59;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 60;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 61;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 62;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 63;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 64;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 65;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 66;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 67;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 68;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 69;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 70;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 71;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 72;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 73;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 74;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 75;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 76;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 77;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 78;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 79;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 80;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 81;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 82;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 83;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 84;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 85;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 86;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 87;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 88;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 89;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 90;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 91;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 92;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 93;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 94;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 95;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 96;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 97;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 98;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 99;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 100;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 101;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 102;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 103;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 104;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 105;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 106;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 107;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 108;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 109;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 110;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 111;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 112;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 113;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 114;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 115;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 116;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 117;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 118;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 119;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 120;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 121;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 122;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 123;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 124;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 125;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 126;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 127;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 128;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 129;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 130;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 131;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 132;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 133;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 134;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 135;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 136;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 137;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 138;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 139;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 140;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 141;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 142;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 143;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 144;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 145;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 146;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 147;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 148;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 149;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 150;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 151;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 152;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 153;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 154;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 155;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 156;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 157;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 158;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 159;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 160;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 161;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 162;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 163;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 164;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 165;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 166;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 167;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 168;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 169;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 170;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 171;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 172;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 173;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 174;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 175;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 176;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 177;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 178;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 179;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 180;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 181;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 182;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 183;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 184;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 185;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 186;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 187;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 188;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 189;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 190;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 191;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 192;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 193;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 194;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 195;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 196;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 197;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 198;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 199;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 200;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 201;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 202;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 203;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 204;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 205;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 206;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 207;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 208;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 209;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 210;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 211;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 212;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 213;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 214;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 215;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 216;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 217;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 218;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 219;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 220;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 221;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 222;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 223;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 224;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 225;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 226;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 227;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 228;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 229;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 230;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 231;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 232;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 233;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 234;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 235;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 236;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 237;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 238;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 239;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 240;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 241;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 242;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 243;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 244;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 245;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 246;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 247;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 248;4;-0.965533, 0.000000, 0.000000, 0.260280;;, + 249;4;-0.965533, 0.000000, 0.000000, 0.260280;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3; 0.000000, 0.705560, 0.000000;;, + 1;3; 0.000000, 0.705560, 0.000000;;, + 2;3; 0.000000, 0.705560, 0.000000;;, + 3;3; 0.000000, 0.705560, 0.000000;;, + 4;3; 0.000000, 0.705560, 0.000000;;, + 5;3; 0.000000, 0.705560, 0.000000;;, + 6;3; 0.000000, 0.705560, 0.000000;;, + 7;3; 0.000000, 0.705560, 0.000000;;, + 8;3; 0.000000, 0.705560, 0.000000;;, + 9;3; 0.000000, 0.705560, 0.000000;;, + 10;3; 0.000000, 0.705560, 0.000000;;, + 11;3; 0.000000, 0.705560, 0.000000;;, + 12;3; 0.000000, 0.705560, 0.000000;;, + 13;3; 0.000000, 0.705560, 0.000000;;, + 14;3; 0.000000, 0.705560, 0.000000;;, + 15;3; 0.000000, 0.705560, 0.000000;;, + 16;3; 0.000000, 0.705560, 0.000000;;, + 17;3; 0.000000, 0.705560, 0.000000;;, + 18;3; 0.000000, 0.705560, 0.000000;;, + 19;3; 0.000000, 0.705560, 0.000000;;, + 20;3; 0.000000, 0.705560, 0.000000;;, + 21;3; 0.000000, 0.705560, 0.000000;;, + 22;3; 0.000000, 0.705560, 0.000000;;, + 23;3; 0.000000, 0.705560, 0.000000;;, + 24;3; 0.000000, 0.705560, 0.000000;;, + 25;3; 0.000000, 0.705560, 0.000000;;, + 26;3; 0.000000, 0.705560, 0.000000;;, + 27;3; 0.000000, 0.705560, 0.000000;;, + 28;3; 0.000000, 0.705560, 0.000000;;, + 29;3; 0.000000, 0.705560, 0.000000;;, + 30;3; 0.000000, 0.705560, 0.000000;;, + 31;3; 0.000000, 0.705560, 0.000000;;, + 32;3; 0.000000, 0.705560, 0.000000;;, + 33;3; 0.000000, 0.705560, 0.000000;;, + 34;3; 0.000000, 0.705560, 0.000000;;, + 35;3; 0.000000, 0.705560, 0.000000;;, + 36;3; 0.000000, 0.705560, 0.000000;;, + 37;3; 0.000000, 0.705560, 0.000000;;, + 38;3; 0.000000, 0.705560, 0.000000;;, + 39;3; 0.000000, 0.705560, 0.000000;;, + 40;3; 0.000000, 0.705560, 0.000000;;, + 41;3; 0.000000, 0.705559, 0.000000;;, + 42;3;-0.000000, 0.705560, 0.000000;;, + 43;3; 0.000000, 0.705560,-0.000000;;, + 44;3; 0.000000, 0.705560, 0.000000;;, + 45;3; 0.000000, 0.705560,-0.000000;;, + 46;3; 0.000000, 0.705559, 0.000000;;, + 47;3;-0.000000, 0.705560, 0.000000;;, + 48;3; 0.000000, 0.705560,-0.000000;;, + 49;3; 0.000000, 0.705560, 0.000000;;, + 50;3;-0.000000, 0.705559, 0.000000;;, + 51;3; 0.000000, 0.705560,-0.000000;;, + 52;3;-0.000000, 0.705560, 0.000000;;, + 53;3; 0.000000, 0.705560,-0.000000;;, + 54;3; 0.000000, 0.705560, 0.000000;;, + 55;3; 0.000000, 0.705560,-0.000000;;, + 56;3;-0.000000, 0.705560, 0.000000;;, + 57;3; 0.000000, 0.705559, 0.000000;;, + 58;3;-0.000000, 0.705560, 0.000000;;, + 59;3; 0.000000, 0.705560, 0.000000;;, + 60;3; 0.000000, 0.705560,-0.000000;;, + 61;3; 0.000000, 0.705560, 0.000000;;, + 62;3; 0.000000, 0.705560, 0.000000;;, + 63;3; 0.000000, 0.705560, 0.000000;;, + 64;3; 0.000000, 0.705560,-0.000000;;, + 65;3;-0.000000, 0.705560, 0.000000;;, + 66;3; 0.000000, 0.705560, 0.000000;;, + 67;3;-0.000000, 0.705560, 0.000000;;, + 68;3; 0.000000, 0.705559, 0.000000;;, + 69;3; 0.000000, 0.705560, 0.000000;;, + 70;3; 0.000000, 0.705560, 0.000000;;, + 71;3;-0.000000, 0.705560, 0.000000;;, + 72;3;-0.000000, 0.705560, 0.000000;;, + 73;3;-0.000000, 0.705560, 0.000000;;, + 74;3;-0.000000, 0.705560, 0.000000;;, + 75;3;-0.000000, 0.705560, 0.000000;;, + 76;3; 0.000000, 0.705559, 0.000000;;, + 77;3;-0.000000, 0.705560, 0.000000;;, + 78;3; 0.000000, 0.705560, 0.000000;;, + 79;3;-0.000000, 0.705559, 0.000000;;, + 80;3; 0.000000, 0.705560, 0.000000;;, + 81;3;-0.000000, 0.705560, 0.000000;;, + 82;3; 0.000000, 0.705560, 0.000000;;, + 83;3; 0.000000, 0.705560, 0.000000;;, + 84;3; 0.000000, 0.705560,-0.000000;;, + 85;3;-0.000000, 0.705560, 0.000000;;, + 86;3;-0.000000, 0.705560, 0.000000;;, + 87;3; 0.000000, 0.705560,-0.000000;;, + 88;3; 0.000000, 0.705560, 0.000000;;, + 89;3; 0.000000, 0.705560, 0.000000;;, + 90;3; 0.000000, 0.705560, 0.000000;;, + 91;3; 0.000000, 0.705560, 0.000000;;, + 92;3; 0.000000, 0.705560, 0.000000;;, + 93;3; 0.000000, 0.705560, 0.000000;;, + 94;3; 0.000000, 0.705560, 0.000000;;, + 95;3; 0.000000, 0.705560, 0.000000;;, + 96;3; 0.000000, 0.705560,-0.000000;;, + 97;3; 0.000000, 0.705560,-0.000000;;, + 98;3; 0.000000, 0.705560, 0.000000;;, + 99;3; 0.000000, 0.705560, 0.000000;;, + 100;3;-0.000000, 0.705560,-0.000000;;, + 101;3; 0.000000, 0.705560,-0.000000;;, + 102;3; 0.000000, 0.705559, 0.000000;;, + 103;3;-0.000000, 0.705560,-0.000000;;, + 104;3;-0.000000, 0.705559,-0.000000;;, + 105;3;-0.000000, 0.705560,-0.000000;;, + 106;3; 0.000000, 0.705560, 0.000000;;, + 107;3;-0.000000, 0.705559,-0.000000;;, + 108;3; 0.000000, 0.705560,-0.000000;;, + 109;3; 0.000000, 0.705559,-0.000000;;, + 110;3;-0.000000, 0.705559, 0.000000;;, + 111;3; 0.000000, 0.705560,-0.000000;;, + 112;3; 0.000000, 0.705560, 0.000000;;, + 113;3; 0.000000, 0.705560,-0.000000;;, + 114;3;-0.000000, 0.705559, 0.000000;;, + 115;3; 0.000000, 0.705560, 0.000000;;, + 116;3;-0.000000, 0.705560,-0.000000;;, + 117;3; 0.000000, 0.705560, 0.000000;;, + 118;3; 0.000000, 0.705560,-0.000000;;, + 119;3; 0.000000, 0.705560, 0.000000;;, + 120;3; 0.000000, 0.705560,-0.000000;;, + 121;3; 0.000000, 0.705560,-0.000000;;, + 122;3;-0.000000, 0.705560,-0.000000;;, + 123;3; 0.000000, 0.705560, 0.000000;;, + 124;3; 0.000000, 0.705560, 0.000000;;, + 125;3; 0.000000, 0.705560, 0.000000;;, + 126;3;-0.000000, 0.705560, 0.000000;;, + 127;3;-0.000000, 0.705560, 0.000000;;, + 128;3;-0.000000, 0.705560,-0.000000;;, + 129;3; 0.000000, 0.705560, 0.000000;;, + 130;3; 0.000000, 0.705559, 0.000000;;, + 131;3; 0.000000, 0.705560, 0.000000;;, + 132;3; 0.000000, 0.705560, 0.000000;;, + 133;3; 0.000000, 0.705560,-0.000000;;, + 134;3; 0.000000, 0.705560, 0.000000;;, + 135;3; 0.000000, 0.705560, 0.000000;;, + 136;3;-0.000000, 0.705560,-0.000000;;, + 137;3; 0.000000, 0.705560, 0.000000;;, + 138;3;-0.000000, 0.705559, 0.000000;;, + 139;3;-0.000000, 0.705560,-0.000000;;, + 140;3; 0.000000, 0.705560, 0.000000;;, + 141;3; 0.000000, 0.705560, 0.000000;;, + 142;3; 0.000000, 0.705560, 0.000000;;, + 143;3; 0.000000, 0.705560,-0.000000;;, + 144;3; 0.000000, 0.705560, 0.000000;;, + 145;3; 0.000000, 0.705560,-0.000000;;, + 146;3; 0.000000, 0.705560, 0.000000;;, + 147;3; 0.000000, 0.705560,-0.000000;;, + 148;3; 0.000000, 0.705560, 0.000000;;, + 149;3; 0.000000, 0.705560, 0.000000;;, + 150;3; 0.000000, 0.705560, 0.000000;;, + 151;3; 0.000000, 0.705560, 0.000000;;, + 152;3; 0.000000, 0.705560, 0.000000;;, + 153;3; 0.000000, 0.705560, 0.000000;;, + 154;3; 0.000000, 0.705560, 0.000000;;, + 155;3; 0.000000, 0.705560, 0.000000;;, + 156;3; 0.000000, 0.705560, 0.000000;;, + 157;3; 0.000000, 0.705560, 0.000000;;, + 158;3; 0.000000, 0.705560, 0.000000;;, + 159;3; 0.000000, 0.705560, 0.000000;;, + 160;3; 0.000000, 0.705560, 0.000000;;, + 161;3; 0.000000, 0.705560, 0.000000;;, + 162;3; 0.000000, 0.705560, 0.000000;;, + 163;3; 0.000000, 0.705560, 0.000000;;, + 164;3; 0.000000, 0.705560, 0.000000;;, + 165;3; 0.000000, 0.705560, 0.000000;;, + 166;3; 0.000000, 0.705560, 0.000000;;, + 167;3; 0.000000, 0.705560, 0.000000;;, + 168;3; 0.000000, 0.705560, 0.000000;;, + 169;3; 0.000000, 0.705560, 0.000000;;, + 170;3; 0.000000, 0.705560, 0.000000;;, + 171;3; 0.000000, 0.705560, 0.000000;;, + 172;3; 0.000000, 0.705560, 0.000000;;, + 173;3; 0.000000, 0.705560, 0.000000;;, + 174;3; 0.000000, 0.705560, 0.000000;;, + 175;3; 0.000000, 0.705560, 0.000000;;, + 176;3; 0.000000, 0.705560, 0.000000;;, + 177;3; 0.000000, 0.705560, 0.000000;;, + 178;3; 0.000000, 0.705560, 0.000000;;, + 179;3; 0.000000, 0.705560, 0.000000;;, + 180;3; 0.000000, 0.705560, 0.000000;;, + 181;3; 0.000000, 0.705560, 0.000000;;, + 182;3; 0.000000, 0.705560, 0.000000;;, + 183;3; 0.000000, 0.705560, 0.000000;;, + 184;3; 0.000000, 0.705560, 0.000000;;, + 185;3; 0.000000, 0.705560, 0.000000;;, + 186;3; 0.000000, 0.705560, 0.000000;;, + 187;3; 0.000000, 0.705560, 0.000000;;, + 188;3; 0.000000, 0.705560, 0.000000;;, + 189;3; 0.000000, 0.705560, 0.000000;;, + 190;3; 0.000000, 0.705560, 0.000000;;, + 191;3; 0.000000, 0.705560, 0.000000;;, + 192;3; 0.000000, 0.705560, 0.000000;;, + 193;3; 0.000000, 0.705560, 0.000000;;, + 194;3; 0.000000, 0.705560, 0.000000;;, + 195;3; 0.000000, 0.705560, 0.000000;;, + 196;3; 0.000000, 0.705560, 0.000000;;, + 197;3; 0.000000, 0.705560, 0.000000;;, + 198;3; 0.000000, 0.705560, 0.000000;;, + 199;3; 0.000000, 0.705560, 0.000000;;, + 200;3; 0.000000, 0.705560, 0.000000;;, + 201;3; 0.000000, 0.705560, 0.000000;;, + 202;3; 0.000000, 0.705560, 0.000000;;, + 203;3; 0.000000, 0.705560, 0.000000;;, + 204;3; 0.000000, 0.705560, 0.000000;;, + 205;3; 0.000000, 0.705560, 0.000000;;, + 206;3; 0.000000, 0.705560, 0.000000;;, + 207;3; 0.000000, 0.705560, 0.000000;;, + 208;3; 0.000000, 0.705560, 0.000000;;, + 209;3; 0.000000, 0.705560, 0.000000;;, + 210;3; 0.000000, 0.705560, 0.000000;;, + 211;3; 0.000000, 0.705560, 0.000000;;, + 212;3; 0.000000, 0.705560, 0.000000;;, + 213;3; 0.000000, 0.705560, 0.000000;;, + 214;3; 0.000000, 0.705560, 0.000000;;, + 215;3; 0.000000, 0.705560, 0.000000;;, + 216;3; 0.000000, 0.705560, 0.000000;;, + 217;3; 0.000000, 0.705560, 0.000000;;, + 218;3; 0.000000, 0.705560, 0.000000;;, + 219;3; 0.000000, 0.705560, 0.000000;;, + 220;3; 0.000000, 0.705560, 0.000000;;, + 221;3; 0.000000, 0.705560, 0.000000;;, + 222;3; 0.000000, 0.705560, 0.000000;;, + 223;3; 0.000000, 0.705560, 0.000000;;, + 224;3; 0.000000, 0.705560, 0.000000;;, + 225;3; 0.000000, 0.705560, 0.000000;;, + 226;3; 0.000000, 0.705560, 0.000000;;, + 227;3; 0.000000, 0.705560, 0.000000;;, + 228;3; 0.000000, 0.705560, 0.000000;;, + 229;3; 0.000000, 0.705560, 0.000000;;, + 230;3; 0.000000, 0.705560, 0.000000;;, + 231;3; 0.000000, 0.705560, 0.000000;;, + 232;3; 0.000000, 0.705560, 0.000000;;, + 233;3; 0.000000, 0.705560, 0.000000;;, + 234;3; 0.000000, 0.705560, 0.000000;;, + 235;3; 0.000000, 0.705560, 0.000000;;, + 236;3; 0.000000, 0.705560, 0.000000;;, + 237;3; 0.000000, 0.705560, 0.000000;;, + 238;3; 0.000000, 0.705560, 0.000000;;, + 239;3; 0.000000, 0.705560, 0.000000;;, + 240;3; 0.000000, 0.705560, 0.000000;;, + 241;3; 0.000000, 0.705560, 0.000000;;, + 242;3; 0.000000, 0.705560, 0.000000;;, + 243;3; 0.000000, 0.705560, 0.000000;;, + 244;3; 0.000000, 0.705560, 0.000000;;, + 245;3; 0.000000, 0.705560, 0.000000;;, + 246;3; 0.000000, 0.705560, 0.000000;;, + 247;3; 0.000000, 0.705560, 0.000000;;, + 248;3; 0.000000, 0.705560, 0.000000;;, + 249;3; 0.000000, 0.705560, 0.000000;;; + } + } + Animation { + {Armature_Bone_031} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 1;4;-0.782410,-0.565761, 0.152513,-0.210916;;, + 2;4;-0.782167,-0.566089, 0.152602,-0.210850;;, + 3;4;-0.781760,-0.566639, 0.152750,-0.210740;;, + 4;4;-0.781194,-0.567404, 0.152956,-0.210588;;, + 5;4;-0.780475,-0.568374, 0.153217,-0.210394;;, + 6;4;-0.779620,-0.569529, 0.153529,-0.210163;;, + 7;4;-0.778648,-0.570841, 0.153883,-0.209901;;, + 8;4;-0.777587,-0.572274, 0.154269,-0.209615;;, + 9;4;-0.776470,-0.573783, 0.154676,-0.209314;;, + 10;4;-0.775334,-0.575317, 0.155089,-0.209008;;, + 11;4;-0.774217,-0.576825, 0.155496,-0.208707;;, + 12;4;-0.773156,-0.578258, 0.155882,-0.208421;;, + 13;4;-0.772184,-0.579571, 0.156236,-0.208159;;, + 14;4;-0.771329,-0.580726, 0.156547,-0.207928;;, + 15;4;-0.770611,-0.581696, 0.156809,-0.207735;;, + 16;4;-0.770044,-0.582461, 0.157015,-0.207582;;, + 17;4;-0.769638,-0.583010, 0.157163,-0.207472;;, + 18;4;-0.769394,-0.583339, 0.157252,-0.207407;;, + 19;4;-0.769314,-0.583447, 0.157281,-0.207385;;, + 20;4;-0.769315,-0.583446, 0.157280,-0.207385;;, + 21;4;-0.769323,-0.583435, 0.157278,-0.207388;;, + 22;4;-0.769346,-0.583403, 0.157269,-0.207394;;, + 23;4;-0.769395,-0.583337, 0.157251,-0.207407;;, + 24;4;-0.769482,-0.583220, 0.157220,-0.207430;;, + 25;4;-0.769619,-0.583035, 0.157170,-0.207467;;, + 26;4;-0.769821,-0.582763, 0.157096,-0.207522;;, + 27;4;-0.770102,-0.582383, 0.156994,-0.207598;;, + 28;4;-0.770478,-0.581875, 0.156857,-0.207699;;, + 29;4;-0.770961,-0.581223, 0.156681,-0.207829;;, + 30;4;-0.771562,-0.580411, 0.156462,-0.207991;;, + 31;4;-0.772288,-0.579430, 0.156198,-0.208187;;, + 32;4;-0.773144,-0.578274, 0.155886,-0.208418;;, + 33;4;-0.774130,-0.576943, 0.155527,-0.208684;;, + 34;4;-0.775244,-0.575439, 0.155122,-0.208984;;, + 35;4;-0.776480,-0.573770, 0.154672,-0.209317;;, + 36;4;-0.777831,-0.571945, 0.154180,-0.209681;;, + 37;4;-0.779289,-0.569976, 0.153649,-0.210074;;, + 38;4;-0.780845,-0.567875, 0.153083,-0.210494;;, + 39;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 40;4;-0.784615,-0.558689, 0.149850,-0.210607;;, + 41;4;-0.787631,-0.542257, 0.143134,-0.208693;;, + 42;4;-0.791558,-0.516327, 0.132321,-0.205191;;, + 43;4;-0.796402,-0.481069, 0.117481,-0.200132;;, + 44;4;-0.802147,-0.436909, 0.098797,-0.193593;;, + 45;4;-0.808751,-0.384579, 0.076579,-0.185698;;, + 46;4;-0.816145,-0.325150, 0.051287,-0.176632;;, + 47;4;-0.824227,-0.260042, 0.023531,-0.166636;;, + 48;4;-0.832864,-0.190997,-0.005944,-0.156007;;, + 49;4;-0.841900,-0.119997,-0.036286,-0.145081;;, + 50;4;-0.851160,-0.049160,-0.066583,-0.134214;;, + 51;4;-0.860463, 0.019402,-0.095928,-0.123765;;, + 52;4;-0.869635, 0.083718,-0.123471,-0.114063;;, + 53;4;-0.878518, 0.142065,-0.148471,-0.105398;;, + 54;4;-0.886976, 0.193049,-0.170325,-0.098003;;, + 55;4;-0.894902, 0.235624,-0.188583,-0.092052;;, + 56;4;-0.902217, 0.269086,-0.202938,-0.087660;;, + 57;4;-0.908867, 0.293039,-0.213219,-0.084891;;, + 58;4;-0.914822, 0.307336,-0.219359,-0.083769;;, + 59;4;-0.920067, 0.312031,-0.221382,-0.084280;;, + 60;4;-0.924508, 0.298929,-0.217160,-0.088840;;, + 61;4;-0.927979, 0.259592,-0.204481,-0.099894;;, + 62;4;-0.930409, 0.195664,-0.183873,-0.117002;;, + 63;4;-0.931805, 0.112066,-0.156924,-0.138898;;, + 64;4;-0.932285, 0.017374,-0.126399,-0.163406;;, + 65;4;-0.932086,-0.077311,-0.095875,-0.187730;;, + 66;4;-0.931513,-0.160889,-0.068931,-0.209095;;, + 67;4;-0.930862,-0.224787,-0.048332,-0.225373;;, + 68;4;-0.930368,-0.264085,-0.035663,-0.235359;;, + 69;4;-0.930183,-0.277143,-0.031453,-0.238671;;, + 70;4;-0.930245,-0.275704,-0.031917,-0.238317;;, + 71;4;-0.930431,-0.271361,-0.033317,-0.237249;;, + 72;4;-0.930735,-0.264089,-0.035662,-0.235457;;, + 73;4;-0.931150,-0.253883,-0.038952,-0.232941;;, + 74;4;-0.931667,-0.240769,-0.043180,-0.229702;;, + 75;4;-0.932274,-0.224801,-0.048328,-0.225753;;, + 76;4;-0.932959,-0.206073,-0.054366,-0.221114;;, + 77;4;-0.933703,-0.184718,-0.061250,-0.215815;;, + 78;4;-0.934488,-0.160918,-0.068923,-0.209897;;, + 79;4;-0.935292,-0.134900,-0.077311,-0.203413;;, + 80;4;-0.936091,-0.106939,-0.086325,-0.196428;;, + 81;4;-0.936859,-0.077357,-0.095862,-0.189017;;, + 82;4;-0.937566,-0.046519,-0.105804,-0.181266;;, + 83;4;-0.938186,-0.014822,-0.116022,-0.173271;;, + 84;4;-0.938690, 0.017312,-0.126382,-0.165132;;, + 85;4;-0.939049, 0.049447,-0.136741,-0.156955;;, + 86;4;-0.939238, 0.081148,-0.146961,-0.148843;;, + 87;4;-0.939234, 0.111993,-0.156905,-0.140901;;, + 88;4;-0.939016, 0.141584,-0.166444,-0.133224;;, + 89;4;-0.938568, 0.169557,-0.175461,-0.125902;;, + 90;4;-0.937875, 0.195590,-0.183853,-0.119015;;, + 91;4;-0.936928, 0.219408,-0.191531,-0.112630;;, + 92;4;-0.935721, 0.240781,-0.198420,-0.106805;;, + 93;4;-0.934252, 0.259530,-0.204464,-0.101585;;, + 94;4;-0.932520, 0.275521,-0.209618,-0.097006;;, + 95;4;-0.930528, 0.288660,-0.213853,-0.093091;;, + 96;4;-0.928279, 0.298892,-0.217150,-0.089856;;, + 97;4;-0.925782, 0.306192,-0.219502,-0.087310;;, + 98;4;-0.923041, 0.310563,-0.220910,-0.085453;;, + 99;4;-0.920067, 0.312031,-0.221382,-0.084280;;, + 100;4;-0.916430, 0.307223,-0.219329,-0.084202;;, + 101;4;-0.911692, 0.292626,-0.213107,-0.085653;;, + 102;4;-0.905863, 0.268198,-0.202699,-0.088642;;, + 103;4;-0.898981, 0.234102,-0.188172,-0.093151;;, + 104;4;-0.891115, 0.190758,-0.169708,-0.099119;;, + 105;4;-0.882373, 0.138905,-0.147619,-0.106437;;, + 106;4;-0.872905, 0.079626,-0.122368,-0.114945;;, + 107;4;-0.862903, 0.014370,-0.094571,-0.124422;;, + 108;4;-0.852594,-0.055090,-0.064984,-0.134601;;, + 109;4;-0.842236,-0.126722,-0.034473,-0.145171;;, + 110;4;-0.832093,-0.198356,-0.003961,-0.155799;;, + 111;4;-0.822427,-0.267822, 0.025628,-0.166151;;, + 112;4;-0.813476,-0.333089, 0.053428,-0.175912;;, + 113;4;-0.805443,-0.392381, 0.078682,-0.184806;;, + 114;4;-0.798488,-0.444253, 0.100776,-0.192607;;, + 115;4;-0.792726,-0.487616, 0.119246,-0.199141;;, + 116;4;-0.788226,-0.521736, 0.133779,-0.204292;;, + 117;4;-0.785023,-0.546190, 0.144194,-0.207990;;, + 118;4;-0.783118,-0.560814, 0.150423,-0.210204;;, + 119;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 120;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 121;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 122;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 123;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 124;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 125;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 126;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 127;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 128;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 129;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 130;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 131;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 132;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 133;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 134;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 135;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 136;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 137;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 138;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 139;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 140;4;-0.796732,-0.533923, 0.143931,-0.214776;;, + 141;4;-0.836846,-0.444553, 0.119839,-0.225590;;, + 142;4;-0.888352,-0.329802, 0.088905,-0.239475;;, + 143;4;-0.928466,-0.240432, 0.064814,-0.250288;;, + 144;4;-0.942707,-0.208703, 0.056260,-0.254127;;, + 145;4;-0.928466,-0.240432, 0.064814,-0.250288;;, + 146;4;-0.888352,-0.329802, 0.088905,-0.239475;;, + 147;4;-0.836846,-0.444553, 0.119839,-0.225590;;, + 148;4;-0.796732,-0.533923, 0.143931,-0.214776;;, + 149;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 150;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 151;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 152;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 153;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 154;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 155;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 156;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 157;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 158;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 159;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 160;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 161;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 162;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 163;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 164;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 165;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 166;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 167;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 168;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 169;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 170;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 171;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 172;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 173;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 174;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 175;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 176;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 177;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 178;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 179;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 180;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 181;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 182;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 183;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 184;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 185;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 186;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 187;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 188;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 189;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 190;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 191;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 192;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 193;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 194;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 195;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 196;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 197;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 198;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 199;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 200;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 201;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 202;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 203;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 204;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 205;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 206;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 207;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 208;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 209;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 210;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 211;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 212;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 213;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 214;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 215;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 216;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 217;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 218;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 219;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 220;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 221;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 222;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 223;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 224;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 225;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 226;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 227;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 228;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 229;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 230;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 231;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 232;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 233;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 234;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 235;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 236;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 237;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 238;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 239;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 240;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 241;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 242;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 243;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 244;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 245;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 246;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 247;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 248;4;-0.782491,-0.565652, 0.152484,-0.210937;;, + 249;4;-0.782491,-0.565652, 0.152484,-0.210937;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3; 0.000000, 0.657669,-0.000000;;, + 1;3; 0.000000, 0.657669,-0.000000;;, + 2;3; 0.000000, 0.657669,-0.000000;;, + 3;3; 0.000000, 0.657669,-0.000000;;, + 4;3; 0.000000, 0.657669,-0.000000;;, + 5;3; 0.000000, 0.657669,-0.000000;;, + 6;3; 0.000000, 0.657669,-0.000000;;, + 7;3; 0.000000, 0.657669,-0.000000;;, + 8;3; 0.000000, 0.657669,-0.000000;;, + 9;3; 0.000000, 0.657669,-0.000000;;, + 10;3; 0.000000, 0.657669,-0.000000;;, + 11;3; 0.000000, 0.657669,-0.000000;;, + 12;3; 0.000000, 0.657669,-0.000000;;, + 13;3; 0.000000, 0.657669,-0.000000;;, + 14;3; 0.000000, 0.657669,-0.000000;;, + 15;3; 0.000000, 0.657669,-0.000000;;, + 16;3; 0.000000, 0.657669,-0.000000;;, + 17;3; 0.000000, 0.657669,-0.000000;;, + 18;3; 0.000000, 0.657669,-0.000000;;, + 19;3; 0.000000, 0.657669,-0.000000;;, + 20;3; 0.000000, 0.657669,-0.000000;;, + 21;3; 0.000000, 0.657669,-0.000000;;, + 22;3; 0.000000, 0.657669,-0.000000;;, + 23;3; 0.000000, 0.657669,-0.000000;;, + 24;3; 0.000000, 0.657669,-0.000000;;, + 25;3; 0.000000, 0.657669,-0.000000;;, + 26;3; 0.000000, 0.657669,-0.000000;;, + 27;3; 0.000000, 0.657669,-0.000000;;, + 28;3; 0.000000, 0.657669,-0.000000;;, + 29;3; 0.000000, 0.657669,-0.000000;;, + 30;3; 0.000000, 0.657669,-0.000000;;, + 31;3; 0.000000, 0.657669,-0.000000;;, + 32;3; 0.000000, 0.657669,-0.000000;;, + 33;3; 0.000000, 0.657669,-0.000000;;, + 34;3; 0.000000, 0.657669,-0.000000;;, + 35;3; 0.000000, 0.657669,-0.000000;;, + 36;3; 0.000000, 0.657669,-0.000000;;, + 37;3; 0.000000, 0.657669,-0.000000;;, + 38;3; 0.000000, 0.657669,-0.000000;;, + 39;3; 0.000000, 0.657669,-0.000000;;, + 40;3; 0.000000, 0.657669, 0.000000;;, + 41;3; 0.000000, 0.657669,-0.000000;;, + 42;3;-0.000000, 0.657669, 0.000000;;, + 43;3;-0.000000, 0.657669,-0.000000;;, + 44;3; 0.000000, 0.657669, 0.000000;;, + 45;3;-0.000000, 0.657669,-0.000000;;, + 46;3;-0.000000, 0.657669,-0.000000;;, + 47;3; 0.000000, 0.657669,-0.000000;;, + 48;3; 0.000000, 0.657669,-0.000000;;, + 49;3; 0.000000, 0.657669,-0.000000;;, + 50;3;-0.000000, 0.657669, 0.000000;;, + 51;3;-0.000000, 0.657669, 0.000000;;, + 52;3; 0.000000, 0.657669, 0.000000;;, + 53;3;-0.000000, 0.657669,-0.000000;;, + 54;3; 0.000000, 0.657669, 0.000000;;, + 55;3; 0.000000, 0.657669,-0.000000;;, + 56;3; 0.000000, 0.657669, 0.000000;;, + 57;3;-0.000000, 0.657669, 0.000000;;, + 58;3; 0.000000, 0.657669,-0.000000;;, + 59;3;-0.000000, 0.657669,-0.000000;;, + 60;3;-0.000000, 0.657669, 0.000000;;, + 61;3;-0.000000, 0.657669,-0.000000;;, + 62;3;-0.000000, 0.657669,-0.000000;;, + 63;3; 0.000000, 0.657669, 0.000000;;, + 64;3; 0.000000, 0.657669,-0.000000;;, + 65;3; 0.000000, 0.657669, 0.000000;;, + 66;3; 0.000000, 0.657669,-0.000000;;, + 67;3;-0.000000, 0.657669, 0.000000;;, + 68;3; 0.000000, 0.657669, 0.000000;;, + 69;3; 0.000000, 0.657669, 0.000000;;, + 70;3; 0.000000, 0.657669, 0.000000;;, + 71;3; 0.000000, 0.657669,-0.000000;;, + 72;3; 0.000000, 0.657669,-0.000000;;, + 73;3; 0.000000, 0.657669,-0.000000;;, + 74;3; 0.000000, 0.657669,-0.000000;;, + 75;3; 0.000000, 0.657669, 0.000000;;, + 76;3; 0.000000, 0.657669, 0.000000;;, + 77;3; 0.000000, 0.657669, 0.000000;;, + 78;3; 0.000000, 0.657669,-0.000000;;, + 79;3; 0.000000, 0.657669, 0.000000;;, + 80;3; 0.000000, 0.657669,-0.000000;;, + 81;3; 0.000000, 0.657669, 0.000000;;, + 82;3; 0.000000, 0.657669,-0.000000;;, + 83;3; 0.000000, 0.657669,-0.000000;;, + 84;3; 0.000000, 0.657669,-0.000000;;, + 85;3; 0.000000, 0.657669, 0.000000;;, + 86;3;-0.000000, 0.657669,-0.000000;;, + 87;3; 0.000000, 0.657669, 0.000000;;, + 88;3; 0.000000, 0.657669,-0.000000;;, + 89;3; 0.000000, 0.657669,-0.000000;;, + 90;3;-0.000000, 0.657669,-0.000000;;, + 91;3;-0.000000, 0.657669,-0.000000;;, + 92;3;-0.000000, 0.657669, 0.000000;;, + 93;3;-0.000000, 0.657669,-0.000000;;, + 94;3; 0.000000, 0.657669,-0.000000;;, + 95;3;-0.000000, 0.657669, 0.000000;;, + 96;3; 0.000000, 0.657669,-0.000000;;, + 97;3; 0.000000, 0.657669,-0.000000;;, + 98;3; 0.000000, 0.657669,-0.000000;;, + 99;3;-0.000000, 0.657669,-0.000000;;, + 100;3;-0.000000, 0.657669,-0.000000;;, + 101;3;-0.000000, 0.657669,-0.000000;;, + 102;3; 0.000000, 0.657669, 0.000000;;, + 103;3;-0.000000, 0.657669, 0.000000;;, + 104;3;-0.000000, 0.657669,-0.000000;;, + 105;3;-0.000000, 0.657669,-0.000000;;, + 106;3;-0.000000, 0.657669, 0.000000;;, + 107;3; 0.000000, 0.657669, 0.000000;;, + 108;3;-0.000000, 0.657669, 0.000000;;, + 109;3; 0.000000, 0.657669,-0.000000;;, + 110;3; 0.000000, 0.657669,-0.000000;;, + 111;3;-0.000000, 0.657669,-0.000000;;, + 112;3;-0.000000, 0.657669, 0.000000;;, + 113;3; 0.000000, 0.657669,-0.000000;;, + 114;3;-0.000000, 0.657669,-0.000000;;, + 115;3;-0.000000, 0.657669, 0.000000;;, + 116;3;-0.000000, 0.657669,-0.000000;;, + 117;3;-0.000000, 0.657669,-0.000000;;, + 118;3;-0.000000, 0.657669,-0.000000;;, + 119;3; 0.000000, 0.657669,-0.000000;;, + 120;3; 0.000000, 0.657669, 0.000000;;, + 121;3;-0.000000, 0.657669, 0.000000;;, + 122;3;-0.000000, 0.657669, 0.000000;;, + 123;3; 0.000000, 0.657669, 0.000000;;, + 124;3; 0.000000, 0.657669, 0.000000;;, + 125;3;-0.000000, 0.657669, 0.000000;;, + 126;3; 0.000000, 0.657669, 0.000000;;, + 127;3; 0.000000, 0.657669,-0.000000;;, + 128;3;-0.000000, 0.657669, 0.000000;;, + 129;3; 0.000000, 0.657669, 0.000000;;, + 130;3; 0.000000, 0.657669,-0.000000;;, + 131;3;-0.000000, 0.657669, 0.000000;;, + 132;3; 0.000000, 0.657669, 0.000000;;, + 133;3; 0.000000, 0.657669,-0.000000;;, + 134;3; 0.000000, 0.657669,-0.000000;;, + 135;3; 0.000000, 0.657669,-0.000000;;, + 136;3; 0.000000, 0.657669, 0.000000;;, + 137;3;-0.000000, 0.657669, 0.000000;;, + 138;3; 0.000000, 0.657669, 0.000000;;, + 139;3; 0.000000, 0.657669, 0.000000;;, + 140;3;-0.000000, 0.657669,-0.000000;;, + 141;3;-0.000000, 0.657669,-0.000000;;, + 142;3; 0.000000, 0.657669, 0.000000;;, + 143;3; 0.000000, 0.657669, 0.000000;;, + 144;3; 0.000000, 0.657669, 0.000000;;, + 145;3; 0.000000, 0.657669,-0.000000;;, + 146;3; 0.000000, 0.657669,-0.000000;;, + 147;3; 0.000000, 0.657669,-0.000000;;, + 148;3; 0.000000, 0.657669, 0.000000;;, + 149;3; 0.000000, 0.657669,-0.000000;;, + 150;3; 0.000000, 0.657669,-0.000000;;, + 151;3; 0.000000, 0.657669,-0.000000;;, + 152;3; 0.000000, 0.657669,-0.000000;;, + 153;3; 0.000000, 0.657669,-0.000000;;, + 154;3; 0.000000, 0.657669,-0.000000;;, + 155;3; 0.000000, 0.657669,-0.000000;;, + 156;3; 0.000000, 0.657669,-0.000000;;, + 157;3; 0.000000, 0.657669,-0.000000;;, + 158;3; 0.000000, 0.657669,-0.000000;;, + 159;3; 0.000000, 0.657669,-0.000000;;, + 160;3; 0.000000, 0.657669,-0.000000;;, + 161;3; 0.000000, 0.657669,-0.000000;;, + 162;3; 0.000000, 0.657669,-0.000000;;, + 163;3; 0.000000, 0.657669,-0.000000;;, + 164;3; 0.000000, 0.657669,-0.000000;;, + 165;3; 0.000000, 0.657669,-0.000000;;, + 166;3; 0.000000, 0.657669,-0.000000;;, + 167;3; 0.000000, 0.657669,-0.000000;;, + 168;3; 0.000000, 0.657669,-0.000000;;, + 169;3; 0.000000, 0.657669,-0.000000;;, + 170;3; 0.000000, 0.657669,-0.000000;;, + 171;3; 0.000000, 0.657669,-0.000000;;, + 172;3; 0.000000, 0.657669,-0.000000;;, + 173;3; 0.000000, 0.657669,-0.000000;;, + 174;3; 0.000000, 0.657669,-0.000000;;, + 175;3; 0.000000, 0.657669,-0.000000;;, + 176;3; 0.000000, 0.657669,-0.000000;;, + 177;3; 0.000000, 0.657669,-0.000000;;, + 178;3; 0.000000, 0.657669,-0.000000;;, + 179;3; 0.000000, 0.657669,-0.000000;;, + 180;3; 0.000000, 0.657669,-0.000000;;, + 181;3; 0.000000, 0.657669,-0.000000;;, + 182;3; 0.000000, 0.657669,-0.000000;;, + 183;3; 0.000000, 0.657669,-0.000000;;, + 184;3; 0.000000, 0.657669,-0.000000;;, + 185;3; 0.000000, 0.657669,-0.000000;;, + 186;3; 0.000000, 0.657669,-0.000000;;, + 187;3; 0.000000, 0.657669,-0.000000;;, + 188;3; 0.000000, 0.657669,-0.000000;;, + 189;3; 0.000000, 0.657669,-0.000000;;, + 190;3; 0.000000, 0.657669,-0.000000;;, + 191;3; 0.000000, 0.657669,-0.000000;;, + 192;3; 0.000000, 0.657669,-0.000000;;, + 193;3; 0.000000, 0.657669,-0.000000;;, + 194;3; 0.000000, 0.657669,-0.000000;;, + 195;3; 0.000000, 0.657669,-0.000000;;, + 196;3; 0.000000, 0.657669,-0.000000;;, + 197;3; 0.000000, 0.657669,-0.000000;;, + 198;3; 0.000000, 0.657669,-0.000000;;, + 199;3; 0.000000, 0.657669,-0.000000;;, + 200;3; 0.000000, 0.657669,-0.000000;;, + 201;3; 0.000000, 0.657669,-0.000000;;, + 202;3; 0.000000, 0.657669,-0.000000;;, + 203;3; 0.000000, 0.657669,-0.000000;;, + 204;3; 0.000000, 0.657669,-0.000000;;, + 205;3; 0.000000, 0.657669,-0.000000;;, + 206;3; 0.000000, 0.657669,-0.000000;;, + 207;3; 0.000000, 0.657669,-0.000000;;, + 208;3; 0.000000, 0.657669,-0.000000;;, + 209;3; 0.000000, 0.657669,-0.000000;;, + 210;3; 0.000000, 0.657669,-0.000000;;, + 211;3; 0.000000, 0.657669,-0.000000;;, + 212;3; 0.000000, 0.657669,-0.000000;;, + 213;3; 0.000000, 0.657669,-0.000000;;, + 214;3; 0.000000, 0.657669,-0.000000;;, + 215;3; 0.000000, 0.657669,-0.000000;;, + 216;3; 0.000000, 0.657669,-0.000000;;, + 217;3; 0.000000, 0.657669,-0.000000;;, + 218;3; 0.000000, 0.657669,-0.000000;;, + 219;3; 0.000000, 0.657669,-0.000000;;, + 220;3; 0.000000, 0.657669,-0.000000;;, + 221;3; 0.000000, 0.657669,-0.000000;;, + 222;3; 0.000000, 0.657669,-0.000000;;, + 223;3; 0.000000, 0.657669,-0.000000;;, + 224;3; 0.000000, 0.657669,-0.000000;;, + 225;3; 0.000000, 0.657669,-0.000000;;, + 226;3; 0.000000, 0.657669,-0.000000;;, + 227;3; 0.000000, 0.657669,-0.000000;;, + 228;3; 0.000000, 0.657669,-0.000000;;, + 229;3; 0.000000, 0.657669,-0.000000;;, + 230;3; 0.000000, 0.657669,-0.000000;;, + 231;3; 0.000000, 0.657669,-0.000000;;, + 232;3; 0.000000, 0.657669,-0.000000;;, + 233;3; 0.000000, 0.657669,-0.000000;;, + 234;3; 0.000000, 0.657669,-0.000000;;, + 235;3; 0.000000, 0.657669,-0.000000;;, + 236;3; 0.000000, 0.657669,-0.000000;;, + 237;3; 0.000000, 0.657669,-0.000000;;, + 238;3; 0.000000, 0.657669,-0.000000;;, + 239;3; 0.000000, 0.657669,-0.000000;;, + 240;3; 0.000000, 0.657669,-0.000000;;, + 241;3; 0.000000, 0.657669,-0.000000;;, + 242;3; 0.000000, 0.657669,-0.000000;;, + 243;3; 0.000000, 0.657669,-0.000000;;, + 244;3; 0.000000, 0.657669,-0.000000;;, + 245;3; 0.000000, 0.657669,-0.000000;;, + 246;3; 0.000000, 0.657669,-0.000000;;, + 247;3; 0.000000, 0.657669,-0.000000;;, + 248;3; 0.000000, 0.657669,-0.000000;;, + 249;3; 0.000000, 0.657669,-0.000000;;; + } + } + Animation { + {Armature_Bone_035} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 1;4;-0.987909,-0.155034, 0.000000,-0.000000;;, + 2;4;-0.987887,-0.155170, 0.000000,-0.000000;;, + 3;4;-0.987851,-0.155396, 0.000000,-0.000000;;, + 4;4;-0.987800,-0.155713, 0.000000,-0.000000;;, + 5;4;-0.987736,-0.156114, 0.000000,-0.000000;;, + 6;4;-0.987659,-0.156591, 0.000000,-0.000000;;, + 7;4;-0.987572,-0.157133, 0.000000,-0.000000;;, + 8;4;-0.987476,-0.157725, 0.000000,-0.000000;;, + 9;4;-0.987376,-0.158349, 0.000000,-0.000000;;, + 10;4;-0.987274,-0.158983, 0.000000,-0.000000;;, + 11;4;-0.987174,-0.159606, 0.000000,-0.000000;;, + 12;4;-0.987079,-0.160198, 0.000000,-0.000000;;, + 13;4;-0.986992,-0.160741, 0.000000,-0.000000;;, + 14;4;-0.986915,-0.161218, 0.000000,-0.000000;;, + 15;4;-0.986851,-0.161619, 0.000000,-0.000000;;, + 16;4;-0.986800,-0.161935, 0.000000,-0.000000;;, + 17;4;-0.986763,-0.162162, 0.000000,-0.000000;;, + 18;4;-0.986742,-0.162298, 0.000000,-0.000000;;, + 19;4;-0.986734,-0.162343, 0.000000,-0.000000;;, + 20;4;-0.986741,-0.162302, 0.000000,-0.000000;;, + 21;4;-0.986761,-0.162180, 0.000000,-0.000000;;, + 22;4;-0.986794,-0.161975, 0.000000,-0.000000;;, + 23;4;-0.986839,-0.161689, 0.000000,-0.000000;;, + 24;4;-0.986898,-0.161326, 0.000000,-0.000000;;, + 25;4;-0.986968,-0.160891, 0.000000,-0.000000;;, + 26;4;-0.987047,-0.160395, 0.000000,-0.000000;;, + 27;4;-0.987135,-0.159848, 0.000000,-0.000000;;, + 28;4;-0.987229,-0.159266, 0.000000,-0.000000;;, + 29;4;-0.987325,-0.158666, 0.000000,-0.000000;;, + 30;4;-0.987422,-0.158066, 0.000000,-0.000000;;, + 31;4;-0.987515,-0.157484, 0.000000,-0.000000;;, + 32;4;-0.987603,-0.156937, 0.000000,-0.000000;;, + 33;4;-0.987683,-0.156440, 0.000000,-0.000000;;, + 34;4;-0.987753,-0.156006, 0.000000,-0.000000;;, + 35;4;-0.987811,-0.155642, 0.000000,-0.000000;;, + 36;4;-0.987857,-0.155357, 0.000000,-0.000000;;, + 37;4;-0.987890,-0.155152, 0.000000,-0.000000;;, + 38;4;-0.987910,-0.155029, 0.000000,-0.000000;;, + 39;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 40;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 41;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 42;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 43;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 44;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 45;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 46;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 47;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 48;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 49;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 50;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 51;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 52;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 53;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 54;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 55;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 56;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 57;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 58;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 59;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 60;4;-0.988099,-0.153467, 0.000000,-0.000319;;, + 61;4;-0.988649,-0.148885, 0.000001,-0.001280;;, + 62;4;-0.989544,-0.141437, 0.000002,-0.002842;;, + 63;4;-0.990714,-0.131694, 0.000003,-0.004886;;, + 64;4;-0.992040,-0.120657, 0.000004,-0.007201;;, + 65;4;-0.993365,-0.109620, 0.000005,-0.009515;;, + 66;4;-0.994535,-0.099878, 0.000006,-0.011559;;, + 67;4;-0.995430,-0.092429, 0.000007,-0.013121;;, + 68;4;-0.995980,-0.087848, 0.000008,-0.014082;;, + 69;4;-0.996163,-0.086325, 0.000008,-0.014401;;, + 70;4;-0.996143,-0.086493, 0.000008,-0.014366;;, + 71;4;-0.996082,-0.087000, 0.000008,-0.014260;;, + 72;4;-0.995980,-0.087848, 0.000008,-0.014082;;, + 73;4;-0.995837,-0.089038, 0.000007,-0.013832;;, + 74;4;-0.995654,-0.090567, 0.000007,-0.013512;;, + 75;4;-0.995430,-0.092429, 0.000007,-0.013121;;, + 76;4;-0.995168,-0.094613, 0.000007,-0.012663;;, + 77;4;-0.994869,-0.097103, 0.000006,-0.012141;;, + 78;4;-0.994535,-0.099878, 0.000006,-0.011559;;, + 79;4;-0.994171,-0.102911, 0.000006,-0.010923;;, + 80;4;-0.993779,-0.106171, 0.000005,-0.010239;;, + 81;4;-0.993365,-0.109620, 0.000005,-0.009515;;, + 82;4;-0.992933,-0.113216, 0.000005,-0.008761;;, + 83;4;-0.992490,-0.116911, 0.000004,-0.007986;;, + 84;4;-0.992040,-0.120657, 0.000004,-0.007201;;, + 85;4;-0.991590,-0.124403, 0.000003,-0.006415;;, + 86;4;-0.991146,-0.128099, 0.000003,-0.005640;;, + 87;4;-0.990714,-0.131694, 0.000003,-0.004886;;, + 88;4;-0.990300,-0.135143, 0.000002,-0.004162;;, + 89;4;-0.989908,-0.138403, 0.000002,-0.003479;;, + 90;4;-0.989544,-0.141437, 0.000002,-0.002842;;, + 91;4;-0.989211,-0.144212, 0.000001,-0.002260;;, + 92;4;-0.988912,-0.146702, 0.000001,-0.001738;;, + 93;4;-0.988649,-0.148885, 0.000001,-0.001280;;, + 94;4;-0.988426,-0.150747, 0.000000,-0.000890;;, + 95;4;-0.988242,-0.152277, 0.000000,-0.000569;;, + 96;4;-0.988099,-0.153467, 0.000000,-0.000319;;, + 97;4;-0.987997,-0.154315, 0.000000,-0.000141;;, + 98;4;-0.987936,-0.154821, 0.000000,-0.000035;;, + 99;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 100;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 101;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 102;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 103;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 104;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 105;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 106;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 107;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 108;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 109;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 110;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 111;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 112;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 113;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 114;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 115;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 116;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 117;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 118;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 119;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 120;4;-0.988834,-0.135946, 0.000000,-0.000000;;, + 121;4;-0.991420,-0.082310, 0.000000,-0.000000;;, + 122;4;-0.994740,-0.013440, 0.000000,-0.000000;;, + 123;4;-0.997326, 0.040196, 0.000000,-0.000000;;, + 124;4;-0.998244, 0.059239, 0.000000,-0.000000;;, + 125;4;-0.998244, 0.059239, 0.000000,-0.000000;;, + 126;4;-0.998244, 0.059239, 0.000000,-0.000000;;, + 127;4;-0.998244, 0.059239, 0.000000,-0.000000;;, + 128;4;-0.998244, 0.059239, 0.000000,-0.000000;;, + 129;4;-0.998244, 0.059239, 0.000000,-0.000000;;, + 130;4;-0.998244, 0.059239, 0.000000,-0.000000;;, + 131;4;-0.998244, 0.059239, 0.000000,-0.000000;;, + 132;4;-0.998244, 0.059239, 0.000000,-0.000000;;, + 133;4;-0.998244, 0.059239, 0.000000,-0.000000;;, + 134;4;-0.998244, 0.059239, 0.000000,-0.000000;;, + 135;4;-0.957797, 0.128604, 0.000000,-0.000000;;, + 136;4;-0.843869, 0.323984, 0.000000,-0.000000;;, + 137;4;-0.697587, 0.574850, 0.000000,-0.000000;;, + 138;4;-0.583660, 0.770230, 0.000000,-0.000000;;, + 139;4;-0.543213, 0.839595, 0.000000,-0.000000;;, + 140;4;-0.582031, 0.797360, 0.000000,-0.000000;;, + 141;4;-0.691492, 0.671349, 0.000000,-0.000000;;, + 142;4;-0.832372, 0.490631, 0.000000,-0.000000;;, + 143;4;-0.942738, 0.313058,-0.000000,-0.000000;;, + 144;4;-0.983095, 0.183095,-0.000000,-0.000000;;, + 145;4;-0.984780, 0.081436,-0.000000,-0.000000;;, + 146;4;-0.986219,-0.016414,-0.000000,-0.000000;;, + 147;4;-0.987236,-0.094769, 0.000000,-0.000000;;, + 148;4;-0.987771,-0.141057, 0.000000,-0.000000;;, + 149;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 150;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 151;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 152;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 153;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 154;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 155;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 156;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 157;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 158;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 159;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 160;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 161;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 162;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 163;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 164;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 165;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 166;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 167;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 168;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 169;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 170;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 171;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 172;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 173;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 174;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 175;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 176;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 177;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 178;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 179;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 180;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 181;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 182;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 183;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 184;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 185;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 186;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 187;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 188;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 189;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 190;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 191;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 192;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 193;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 194;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 195;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 196;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 197;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 198;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 199;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 200;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 201;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 202;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 203;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 204;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 205;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 206;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 207;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 208;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 209;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 210;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 211;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 212;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 213;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 214;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 215;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 216;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 217;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 218;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 219;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 220;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 221;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 222;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 223;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 224;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 225;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 226;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 227;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 228;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 229;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 230;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 231;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 232;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 233;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 234;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 235;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 236;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 237;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 238;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 239;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 240;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 241;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 242;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 243;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 244;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 245;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 246;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 247;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 248;4;-0.987916,-0.154989, 0.000000,-0.000000;;, + 249;4;-0.987916,-0.154989, 0.000000,-0.000000;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3;-0.000000, 2.406491,-0.000000;;, + 1;3; 0.000000, 2.406491, 0.000000;;, + 2;3; 0.000000, 2.406491,-0.000000;;, + 3;3; 0.000000, 2.406491, 0.000000;;, + 4;3; 0.000000, 2.406491,-0.000000;;, + 5;3; 0.000000, 2.406491,-0.000000;;, + 6;3; 0.000000, 2.406491,-0.000000;;, + 7;3; 0.000000, 2.406491, 0.000000;;, + 8;3; 0.000000, 2.406491, 0.000000;;, + 9;3; 0.000000, 2.406491, 0.000000;;, + 10;3;-0.000000, 2.406491, 0.000000;;, + 11;3; 0.000000, 2.406491,-0.000000;;, + 12;3;-0.000000, 2.406491,-0.000000;;, + 13;3; 0.000000, 2.406491,-0.000000;;, + 14;3; 0.000000, 2.406491, 0.000000;;, + 15;3; 0.000000, 2.406491,-0.000000;;, + 16;3;-0.000000, 2.406491, 0.000000;;, + 17;3; 0.000000, 2.406491, 0.000000;;, + 18;3; 0.000000, 2.406491, 0.000000;;, + 19;3; 0.000000, 2.406491,-0.000000;;, + 20;3; 0.000000, 2.406491,-0.000000;;, + 21;3;-0.000000, 2.406491,-0.000000;;, + 22;3; 0.000000, 2.406491,-0.000000;;, + 23;3; 0.000000, 2.406491, 0.000000;;, + 24;3; 0.000000, 2.406491, 0.000000;;, + 25;3; 0.000000, 2.406491,-0.000000;;, + 26;3; 0.000000, 2.406491, 0.000000;;, + 27;3; 0.000000, 2.406491, 0.000000;;, + 28;3; 0.000000, 2.406491, 0.000000;;, + 29;3;-0.000000, 2.406491, 0.000000;;, + 30;3; 0.000000, 2.406491, 0.000000;;, + 31;3; 0.000000, 2.406491, 0.000000;;, + 32;3; 0.000000, 2.406491,-0.000000;;, + 33;3; 0.000000, 2.406491, 0.000000;;, + 34;3; 0.000000, 2.406491, 0.000000;;, + 35;3; 0.000000, 2.406491, 0.000000;;, + 36;3; 0.000000, 2.406491,-0.000000;;, + 37;3; 0.000000, 2.406491, 0.000000;;, + 38;3; 0.000000, 2.406491, 0.000000;;, + 39;3;-0.000000, 2.406491,-0.000000;;, + 40;3;-0.000000, 2.406491,-0.000000;;, + 41;3; 0.000000, 2.406491,-0.000000;;, + 42;3;-0.000000, 2.406491,-0.000000;;, + 43;3;-0.000000, 2.406491,-0.000000;;, + 44;3; 0.000000, 2.406491,-0.000000;;, + 45;3;-0.000000, 2.406491, 0.000000;;, + 46;3; 0.000000, 2.406491,-0.000000;;, + 47;3;-0.000000, 2.406491, 0.000000;;, + 48;3; 0.000000, 2.406491,-0.000000;;, + 49;3; 0.000000, 2.406491,-0.000000;;, + 50;3;-0.000000, 2.406491,-0.000000;;, + 51;3;-0.000000, 2.406491,-0.000000;;, + 52;3;-0.000000, 2.406491,-0.000000;;, + 53;3; 0.000000, 2.406491, 0.000000;;, + 54;3; 0.000000, 2.406491, 0.000000;;, + 55;3;-0.000000, 2.406491,-0.000000;;, + 56;3; 0.000000, 2.406491, 0.000000;;, + 57;3; 0.000000, 2.406491, 0.000000;;, + 58;3; 0.000000, 2.406491,-0.000000;;, + 59;3; 0.000000, 2.406491, 0.000000;;, + 60;3; 0.000000, 2.406492,-0.000000;;, + 61;3;-0.000000, 2.406491,-0.000000;;, + 62;3; 0.000000, 2.406491,-0.000000;;, + 63;3;-0.000000, 2.406491, 0.000000;;, + 64;3;-0.000000, 2.406491, 0.000000;;, + 65;3; 0.000000, 2.406491,-0.000000;;, + 66;3; 0.000000, 2.406491, 0.000000;;, + 67;3; 0.000000, 2.406491, 0.000000;;, + 68;3; 0.000000, 2.406491, 0.000000;;, + 69;3; 0.000000, 2.406491, 0.000000;;, + 70;3; 0.000000, 2.406491, 0.000000;;, + 71;3; 0.000000, 2.406491, 0.000000;;, + 72;3; 0.000000, 2.406491,-0.000000;;, + 73;3; 0.000000, 2.406491,-0.000000;;, + 74;3; 0.000000, 2.406491, 0.000000;;, + 75;3; 0.000000, 2.406491, 0.000000;;, + 76;3; 0.000000, 2.406491,-0.000000;;, + 77;3; 0.000000, 2.406491,-0.000000;;, + 78;3; 0.000000, 2.406491,-0.000000;;, + 79;3; 0.000000, 2.406491, 0.000000;;, + 80;3;-0.000000, 2.406491, 0.000000;;, + 81;3; 0.000000, 2.406491, 0.000000;;, + 82;3; 0.000000, 2.406491, 0.000000;;, + 83;3; 0.000000, 2.406491, 0.000000;;, + 84;3; 0.000000, 2.406491, 0.000000;;, + 85;3;-0.000000, 2.406491, 0.000000;;, + 86;3;-0.000000, 2.406491, 0.000000;;, + 87;3; 0.000000, 2.406491,-0.000000;;, + 88;3;-0.000000, 2.406491,-0.000000;;, + 89;3; 0.000000, 2.406491, 0.000000;;, + 90;3;-0.000000, 2.406491,-0.000000;;, + 91;3;-0.000000, 2.406491, 0.000000;;, + 92;3;-0.000000, 2.406491, 0.000000;;, + 93;3;-0.000000, 2.406491,-0.000000;;, + 94;3;-0.000000, 2.406492,-0.000000;;, + 95;3; 0.000000, 2.406491,-0.000000;;, + 96;3;-0.000000, 2.406491,-0.000000;;, + 97;3; 0.000000, 2.406491,-0.000000;;, + 98;3;-0.000000, 2.406491,-0.000000;;, + 99;3; 0.000000, 2.406491, 0.000000;;, + 100;3;-0.000000, 2.406491, 0.000000;;, + 101;3; 0.000000, 2.406491, 0.000000;;, + 102;3; 0.000000, 2.406491,-0.000000;;, + 103;3;-0.000000, 2.406491, 0.000000;;, + 104;3; 0.000000, 2.406491, 0.000000;;, + 105;3;-0.000000, 2.406491, 0.000000;;, + 106;3;-0.000000, 2.406491, 0.000000;;, + 107;3; 0.000000, 2.406491,-0.000000;;, + 108;3;-0.000000, 2.406491,-0.000000;;, + 109;3;-0.000000, 2.406491,-0.000000;;, + 110;3;-0.000000, 2.406491, 0.000000;;, + 111;3; 0.000000, 2.406491,-0.000000;;, + 112;3;-0.000000, 2.406491,-0.000000;;, + 113;3; 0.000000, 2.406491, 0.000000;;, + 114;3;-0.000000, 2.406491, 0.000000;;, + 115;3;-0.000000, 2.406491, 0.000000;;, + 116;3;-0.000000, 2.406491, 0.000000;;, + 117;3;-0.000000, 2.406491, 0.000000;;, + 118;3;-0.000000, 2.406491, 0.000000;;, + 119;3;-0.000000, 2.406491,-0.000000;;, + 120;3;-0.000000, 2.406491,-0.000000;;, + 121;3; 0.000000, 2.406491, 0.000000;;, + 122;3;-0.000000, 2.406491,-0.000000;;, + 123;3; 0.000000, 2.406491, 0.000000;;, + 124;3; 0.000000, 2.406491,-0.000000;;, + 125;3; 0.000000, 2.406491, 0.000000;;, + 126;3;-0.000000, 2.406491,-0.000000;;, + 127;3;-0.000000, 2.406491,-0.000000;;, + 128;3; 0.000000, 2.406491,-0.000000;;, + 129;3;-0.000000, 2.406491, 0.000000;;, + 130;3;-0.000000, 2.406491,-0.000000;;, + 131;3; 0.000000, 2.406491,-0.000000;;, + 132;3;-0.000000, 2.406491, 0.000000;;, + 133;3;-0.000000, 2.406491, 0.000000;;, + 134;3;-0.000000, 2.406491,-0.000000;;, + 135;3; 0.000000, 2.406491, 0.000000;;, + 136;3;-0.000000, 2.406491,-0.000000;;, + 137;3;-0.000000, 2.406491, 0.000000;;, + 138;3; 0.000000, 2.406491, 0.000000;;, + 139;3;-0.000000, 2.406491, 0.000000;;, + 140;3; 0.000000, 2.406491, 0.000000;;, + 141;3; 0.000000, 2.406491,-0.000000;;, + 142;3; 0.000000, 2.406491, 0.000000;;, + 143;3;-0.000000, 2.406491, 0.000000;;, + 144;3; 0.000000, 2.406492, 0.000000;;, + 145;3;-0.000000, 2.406491, 0.000000;;, + 146;3;-0.000000, 2.406491, 0.000000;;, + 147;3; 0.000000, 2.406491,-0.000000;;, + 148;3; 0.000000, 2.406491,-0.000000;;, + 149;3;-0.000000, 2.406491,-0.000000;;, + 150;3;-0.000000, 2.406491,-0.000000;;, + 151;3;-0.000000, 2.406491,-0.000000;;, + 152;3;-0.000000, 2.406491,-0.000000;;, + 153;3;-0.000000, 2.406491,-0.000000;;, + 154;3;-0.000000, 2.406491,-0.000000;;, + 155;3;-0.000000, 2.406491,-0.000000;;, + 156;3;-0.000000, 2.406491,-0.000000;;, + 157;3;-0.000000, 2.406491,-0.000000;;, + 158;3;-0.000000, 2.406491,-0.000000;;, + 159;3;-0.000000, 2.406491,-0.000000;;, + 160;3;-0.000000, 2.406491,-0.000000;;, + 161;3;-0.000000, 2.406491,-0.000000;;, + 162;3;-0.000000, 2.406491,-0.000000;;, + 163;3;-0.000000, 2.406491,-0.000000;;, + 164;3;-0.000000, 2.406491,-0.000000;;, + 165;3;-0.000000, 2.406491,-0.000000;;, + 166;3;-0.000000, 2.406491,-0.000000;;, + 167;3;-0.000000, 2.406491,-0.000000;;, + 168;3;-0.000000, 2.406491,-0.000000;;, + 169;3;-0.000000, 2.406491,-0.000000;;, + 170;3;-0.000000, 2.406491,-0.000000;;, + 171;3;-0.000000, 2.406491,-0.000000;;, + 172;3;-0.000000, 2.406491,-0.000000;;, + 173;3;-0.000000, 2.406491,-0.000000;;, + 174;3;-0.000000, 2.406491,-0.000000;;, + 175;3;-0.000000, 2.406491,-0.000000;;, + 176;3;-0.000000, 2.406491,-0.000000;;, + 177;3;-0.000000, 2.406491,-0.000000;;, + 178;3;-0.000000, 2.406491,-0.000000;;, + 179;3;-0.000000, 2.406491,-0.000000;;, + 180;3;-0.000000, 2.406491,-0.000000;;, + 181;3;-0.000000, 2.406491,-0.000000;;, + 182;3;-0.000000, 2.406491,-0.000000;;, + 183;3;-0.000000, 2.406491,-0.000000;;, + 184;3;-0.000000, 2.406491,-0.000000;;, + 185;3;-0.000000, 2.406491,-0.000000;;, + 186;3;-0.000000, 2.406491,-0.000000;;, + 187;3;-0.000000, 2.406491,-0.000000;;, + 188;3;-0.000000, 2.406491,-0.000000;;, + 189;3;-0.000000, 2.406491,-0.000000;;, + 190;3;-0.000000, 2.406491,-0.000000;;, + 191;3;-0.000000, 2.406491,-0.000000;;, + 192;3;-0.000000, 2.406491,-0.000000;;, + 193;3;-0.000000, 2.406491,-0.000000;;, + 194;3;-0.000000, 2.406491,-0.000000;;, + 195;3;-0.000000, 2.406491,-0.000000;;, + 196;3;-0.000000, 2.406491,-0.000000;;, + 197;3;-0.000000, 2.406491,-0.000000;;, + 198;3;-0.000000, 2.406491,-0.000000;;, + 199;3;-0.000000, 2.406491,-0.000000;;, + 200;3;-0.000000, 2.406491,-0.000000;;, + 201;3;-0.000000, 2.406491,-0.000000;;, + 202;3;-0.000000, 2.406491,-0.000000;;, + 203;3;-0.000000, 2.406491,-0.000000;;, + 204;3;-0.000000, 2.406491,-0.000000;;, + 205;3;-0.000000, 2.406491,-0.000000;;, + 206;3;-0.000000, 2.406491,-0.000000;;, + 207;3;-0.000000, 2.406491,-0.000000;;, + 208;3;-0.000000, 2.406491,-0.000000;;, + 209;3;-0.000000, 2.406491,-0.000000;;, + 210;3;-0.000000, 2.406491,-0.000000;;, + 211;3;-0.000000, 2.406491,-0.000000;;, + 212;3;-0.000000, 2.406491,-0.000000;;, + 213;3;-0.000000, 2.406491,-0.000000;;, + 214;3;-0.000000, 2.406491,-0.000000;;, + 215;3;-0.000000, 2.406491,-0.000000;;, + 216;3;-0.000000, 2.406491,-0.000000;;, + 217;3;-0.000000, 2.406491,-0.000000;;, + 218;3;-0.000000, 2.406491,-0.000000;;, + 219;3;-0.000000, 2.406491,-0.000000;;, + 220;3;-0.000000, 2.406491,-0.000000;;, + 221;3;-0.000000, 2.406491,-0.000000;;, + 222;3;-0.000000, 2.406491,-0.000000;;, + 223;3;-0.000000, 2.406491,-0.000000;;, + 224;3;-0.000000, 2.406491,-0.000000;;, + 225;3;-0.000000, 2.406491,-0.000000;;, + 226;3;-0.000000, 2.406491,-0.000000;;, + 227;3;-0.000000, 2.406491,-0.000000;;, + 228;3;-0.000000, 2.406491,-0.000000;;, + 229;3;-0.000000, 2.406491,-0.000000;;, + 230;3;-0.000000, 2.406491,-0.000000;;, + 231;3;-0.000000, 2.406491,-0.000000;;, + 232;3;-0.000000, 2.406491,-0.000000;;, + 233;3;-0.000000, 2.406491,-0.000000;;, + 234;3;-0.000000, 2.406491,-0.000000;;, + 235;3;-0.000000, 2.406491,-0.000000;;, + 236;3;-0.000000, 2.406491,-0.000000;;, + 237;3;-0.000000, 2.406491,-0.000000;;, + 238;3;-0.000000, 2.406491,-0.000000;;, + 239;3;-0.000000, 2.406491,-0.000000;;, + 240;3;-0.000000, 2.406491,-0.000000;;, + 241;3;-0.000000, 2.406491,-0.000000;;, + 242;3;-0.000000, 2.406491,-0.000000;;, + 243;3;-0.000000, 2.406491,-0.000000;;, + 244;3;-0.000000, 2.406491,-0.000000;;, + 245;3;-0.000000, 2.406491,-0.000000;;, + 246;3;-0.000000, 2.406491,-0.000000;;, + 247;3;-0.000000, 2.406491,-0.000000;;, + 248;3;-0.000000, 2.406491,-0.000000;;, + 249;3;-0.000000, 2.406491,-0.000000;;; + } + } + Animation { + {Armature_Bone_039} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 1;4;-0.982329,-0.187065, 0.000000,-0.000000;;, + 2;4;-0.982545,-0.185626, 0.000000,-0.000000;;, + 3;4;-0.982906,-0.183221, 0.000000,-0.000000;;, + 4;4;-0.983410,-0.179871, 0.000000,-0.000000;;, + 5;4;-0.984049,-0.175624, 0.000000,-0.000000;;, + 6;4;-0.984809,-0.170566, 0.000000,-0.000000;;, + 7;4;-0.985674,-0.164819, 0.000000,-0.000000;;, + 8;4;-0.986617,-0.158545, 0.000000,-0.000000;;, + 9;4;-0.987610,-0.151940, 0.000000,-0.000000;;, + 10;4;-0.988620,-0.145222, 0.000000,-0.000000;;, + 11;4;-0.989613,-0.138618, 0.000000,-0.000000;;, + 12;4;-0.990557,-0.132344, 0.000000,-0.000000;;, + 13;4;-0.991421,-0.126597, 0.000000,-0.000000;;, + 14;4;-0.992182,-0.121539, 0.000000,-0.000000;;, + 15;4;-0.992820,-0.117292, 0.000000,-0.000000;;, + 16;4;-0.993324,-0.113942, 0.000000,-0.000000;;, + 17;4;-0.993685,-0.111537, 0.000000,-0.000000;;, + 18;4;-0.993902,-0.110098, 0.000000,-0.000000;;, + 19;4;-0.993973,-0.109622, 0.000000,-0.000000;;, + 20;4;-0.993909,-0.110052, 0.000000,-0.000000;;, + 21;4;-0.993714,-0.111349, 0.000000,-0.000000;;, + 22;4;-0.993387,-0.113520, 0.000000,-0.000000;;, + 23;4;-0.992932,-0.116548, 0.000000,-0.000000;;, + 24;4;-0.992353,-0.120397, 0.000000,-0.000000;;, + 25;4;-0.991661,-0.125001, 0.000000,-0.000000;;, + 26;4;-0.990870,-0.130264, 0.000000,-0.000000;;, + 27;4;-0.989998,-0.136057, 0.000000,-0.000000;;, + 28;4;-0.989071,-0.142223, 0.000000,-0.000000;;, + 29;4;-0.988115,-0.148581, 0.000000,-0.000000;;, + 30;4;-0.987159,-0.154940, 0.000000,-0.000000;;, + 31;4;-0.986232,-0.161106, 0.000000,-0.000000;;, + 32;4;-0.985361,-0.166899, 0.000000,-0.000000;;, + 33;4;-0.984569,-0.172162, 0.000000,-0.000000;;, + 34;4;-0.983877,-0.176766, 0.000000,-0.000000;;, + 35;4;-0.983298,-0.180615, 0.000000,-0.000000;;, + 36;4;-0.982843,-0.183643, 0.000000,-0.000000;;, + 37;4;-0.982517,-0.185813, 0.000000,-0.000000;;, + 38;4;-0.982322,-0.187111, 0.000000,-0.000000;;, + 39;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 40;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 41;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 42;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 43;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 44;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 45;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 46;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 47;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 48;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 49;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 50;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 51;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 52;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 53;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 54;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 55;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 56;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 57;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 58;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 59;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 60;4;-0.982563,-0.185292, 0.000160,-0.000444;;, + 61;4;-0.983484,-0.178526, 0.000640,-0.001782;;, + 62;4;-0.984981,-0.167523, 0.001421,-0.003956;;, + 63;4;-0.986939,-0.153133, 0.002442,-0.006800;;, + 64;4;-0.989157,-0.136831, 0.003599,-0.010022;;, + 65;4;-0.991375,-0.120529, 0.004757,-0.013244;;, + 66;4;-0.993333,-0.106139, 0.005778,-0.016088;;, + 67;4;-0.994830,-0.095137, 0.006559,-0.018262;;, + 68;4;-0.995751,-0.088370, 0.007039,-0.019600;;, + 69;4;-0.996057,-0.086122, 0.007199,-0.020044;;, + 70;4;-0.996023,-0.086370, 0.007181,-0.019995;;, + 71;4;-0.995922,-0.087118, 0.007128,-0.019847;;, + 72;4;-0.995751,-0.088370, 0.007039,-0.019600;;, + 73;4;-0.995512,-0.090128, 0.006915,-0.019252;;, + 74;4;-0.995205,-0.092387, 0.006754,-0.018806;;, + 75;4;-0.994830,-0.095137, 0.006559,-0.018262;;, + 76;4;-0.994391,-0.098362, 0.006330,-0.017625;;, + 77;4;-0.993891,-0.102040, 0.006069,-0.016898;;, + 78;4;-0.993333,-0.106139, 0.005778,-0.016088;;, + 79;4;-0.992724,-0.110620, 0.005460,-0.015202;;, + 80;4;-0.992068,-0.115435, 0.005118,-0.014251;;, + 81;4;-0.991375,-0.120529, 0.004757,-0.013244;;, + 82;4;-0.990653,-0.125840, 0.004380,-0.012194;;, + 83;4;-0.989910,-0.131298, 0.003992,-0.011116;;, + 84;4;-0.989157,-0.136831, 0.003599,-0.010022;;, + 85;4;-0.988404,-0.142364, 0.003207,-0.008928;;, + 86;4;-0.987661,-0.147823, 0.002819,-0.007850;;, + 87;4;-0.986939,-0.153133, 0.002442,-0.006800;;, + 88;4;-0.986246,-0.158227, 0.002081,-0.005793;;, + 89;4;-0.985590,-0.163043, 0.001739,-0.004842;;, + 90;4;-0.984981,-0.167523, 0.001421,-0.003956;;, + 91;4;-0.984423,-0.171622, 0.001130,-0.003146;;, + 92;4;-0.983923,-0.175300, 0.000869,-0.002419;;, + 93;4;-0.983484,-0.178526, 0.000640,-0.001782;;, + 94;4;-0.983109,-0.181276, 0.000445,-0.001238;;, + 95;4;-0.982802,-0.183535, 0.000284,-0.000792;;, + 96;4;-0.982563,-0.185292, 0.000160,-0.000444;;, + 97;4;-0.982392,-0.186545, 0.000071,-0.000197;;, + 98;4;-0.982291,-0.187293, 0.000018,-0.000049;;, + 99;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 100;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 101;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 102;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 103;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 104;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 105;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 106;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 107;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 108;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 109;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 110;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 111;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 112;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 113;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 114;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 115;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 116;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 117;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 118;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 119;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 120;4;-0.983833,-0.170459, 0.000000,-0.000000;;, + 121;4;-0.988273,-0.122345, 0.000000,-0.000000;;, + 122;4;-0.993973,-0.060567, 0.000000,-0.000000;;, + 123;4;-0.998413,-0.012453, 0.000000, 0.000000;;, + 124;4;-0.999989, 0.004628, 0.000000, 0.000000;;, + 125;4;-0.999215,-0.007501, 0.000000, 0.000000;;, + 126;4;-0.997032,-0.041664, 0.000000,-0.000000;;, + 127;4;-0.994230,-0.085530, 0.000000,-0.000000;;, + 128;4;-0.992048,-0.119694, 0.000000,-0.000000;;, + 129;4;-0.991273,-0.131823, 0.000000,-0.000000;;, + 130;4;-0.992048,-0.130976, 0.000000,-0.000000;;, + 131;4;-0.994230,-0.123659, 0.000000,-0.000000;;, + 132;4;-0.997032,-0.101021, 0.000000,-0.000000;;, + 133;4;-0.999215,-0.057617, 0.000000, 0.000000;;, + 134;4;-0.999989, 0.004628, 0.000000, 0.000000;;, + 135;4;-0.969713, 0.121161, 0.000000, 0.000000;;, + 136;4;-0.884434, 0.317475, 0.000000, 0.000000;;, + 137;4;-0.774936, 0.536448, 0.000000,-0.000000;;, + 138;4;-0.689657, 0.696676, 0.000000,-0.000000;;, + 139;4;-0.659381, 0.751809, 0.000000,-0.000000;;, + 140;4;-0.689050, 0.710526, 0.000000, 0.000000;;, + 141;4;-0.772618, 0.587614,-0.000000, 0.000000;;, + 142;4;-0.879918, 0.412002,-0.000000, 0.000000;;, + 143;4;-0.963486, 0.240596,-0.000000, 0.000000;;, + 144;4;-0.993155, 0.116803,-0.000000, 0.000000;;, + 145;4;-0.992186, 0.022403,-0.000000, 0.000000;;, + 146;4;-0.989458,-0.066214,-0.000000, 0.000000;;, + 147;4;-0.985954,-0.135526,-0.000000, 0.000000;;, + 148;4;-0.983226,-0.175649, 0.000000,-0.000000;;, + 149;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 150;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 151;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 152;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 153;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 154;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 155;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 156;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 157;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 158;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 159;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 160;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 161;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 162;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 163;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 164;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 165;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 166;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 167;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 168;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 169;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 170;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 171;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 172;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 173;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 174;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 175;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 176;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 177;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 178;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 179;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 180;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 181;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 182;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 183;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 184;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 185;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 186;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 187;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 188;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 189;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 190;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 191;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 192;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 193;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 194;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 195;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 196;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 197;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 198;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 199;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 200;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 201;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 202;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 203;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 204;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 205;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 206;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 207;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 208;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 209;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 210;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 211;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 212;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 213;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 214;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 215;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 216;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 217;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 218;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 219;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 220;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 221;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 222;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 223;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 224;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 225;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 226;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 227;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 228;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 229;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 230;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 231;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 232;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 233;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 234;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 235;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 236;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 237;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 238;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 239;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 240;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 241;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 242;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 243;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 244;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 245;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 246;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 247;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 248;4;-0.982257,-0.187541, 0.000000,-0.000000;;, + 249;4;-0.982257,-0.187541, 0.000000,-0.000000;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3;-0.000000, 2.366877,-0.000000;;, + 1;3;-0.000000, 2.366877,-0.000000;;, + 2;3;-0.000000, 2.366877,-0.000000;;, + 3;3;-0.000000, 2.366877,-0.000000;;, + 4;3;-0.000000, 2.366877, 0.000000;;, + 5;3;-0.000000, 2.366877,-0.000000;;, + 6;3;-0.000000, 2.366877,-0.000000;;, + 7;3;-0.000000, 2.366877,-0.000000;;, + 8;3; 0.000000, 2.366877,-0.000000;;, + 9;3;-0.000000, 2.366876,-0.000000;;, + 10;3;-0.000000, 2.366877,-0.000000;;, + 11;3;-0.000000, 2.366877,-0.000000;;, + 12;3;-0.000000, 2.366877, 0.000000;;, + 13;3;-0.000000, 2.366877, 0.000000;;, + 14;3;-0.000000, 2.366877,-0.000000;;, + 15;3;-0.000000, 2.366877, 0.000000;;, + 16;3;-0.000000, 2.366877, 0.000000;;, + 17;3;-0.000000, 2.366877, 0.000000;;, + 18;3;-0.000000, 2.366877, 0.000000;;, + 19;3;-0.000000, 2.366877,-0.000000;;, + 20;3;-0.000000, 2.366877, 0.000000;;, + 21;3;-0.000000, 2.366876, 0.000000;;, + 22;3;-0.000000, 2.366877,-0.000000;;, + 23;3;-0.000000, 2.366877,-0.000000;;, + 24;3;-0.000000, 2.366877,-0.000000;;, + 25;3;-0.000000, 2.366877,-0.000000;;, + 26;3;-0.000000, 2.366877, 0.000000;;, + 27;3;-0.000000, 2.366877, 0.000000;;, + 28;3;-0.000000, 2.366876,-0.000000;;, + 29;3;-0.000000, 2.366877, 0.000000;;, + 30;3;-0.000000, 2.366877,-0.000000;;, + 31;3;-0.000000, 2.366877, 0.000000;;, + 32;3;-0.000000, 2.366877, 0.000000;;, + 33;3; 0.000000, 2.366877,-0.000000;;, + 34;3;-0.000000, 2.366877,-0.000000;;, + 35;3;-0.000000, 2.366877,-0.000000;;, + 36;3;-0.000000, 2.366877,-0.000000;;, + 37;3;-0.000000, 2.366877,-0.000000;;, + 38;3;-0.000000, 2.366877,-0.000000;;, + 39;3;-0.000000, 2.366877,-0.000000;;, + 40;3; 0.000000, 2.366876, 0.000000;;, + 41;3; 0.000000, 2.366878, 0.000000;;, + 42;3; 0.000000, 2.366877,-0.000000;;, + 43;3;-0.000000, 2.366877, 0.000000;;, + 44;3; 0.000000, 2.366876,-0.000000;;, + 45;3; 0.000000, 2.366877, 0.000000;;, + 46;3; 0.000000, 2.366877, 0.000000;;, + 47;3;-0.000000, 2.366877, 0.000000;;, + 48;3; 0.000000, 2.366877, 0.000000;;, + 49;3;-0.000000, 2.366877, 0.000000;;, + 50;3; 0.000000, 2.366877, 0.000000;;, + 51;3; 0.000000, 2.366877, 0.000000;;, + 52;3;-0.000000, 2.366877,-0.000000;;, + 53;3; 0.000000, 2.366877, 0.000000;;, + 54;3;-0.000000, 2.366877,-0.000000;;, + 55;3; 0.000000, 2.366876,-0.000000;;, + 56;3;-0.000000, 2.366877, 0.000000;;, + 57;3;-0.000000, 2.366877,-0.000000;;, + 58;3;-0.000000, 2.366877,-0.000000;;, + 59;3;-0.000000, 2.366877, 0.000000;;, + 60;3;-0.000000, 2.366877, 0.000000;;, + 61;3;-0.000000, 2.366876,-0.000000;;, + 62;3; 0.000000, 2.366877,-0.000000;;, + 63;3; 0.000000, 2.366876, 0.000000;;, + 64;3; 0.000000, 2.366877,-0.000000;;, + 65;3; 0.000000, 2.366877,-0.000000;;, + 66;3; 0.000000, 2.366876, 0.000000;;, + 67;3; 0.000000, 2.366877, 0.000000;;, + 68;3;-0.000000, 2.366877, 0.000000;;, + 69;3;-0.000000, 2.366877,-0.000000;;, + 70;3;-0.000000, 2.366877, 0.000000;;, + 71;3;-0.000000, 2.366877, 0.000000;;, + 72;3;-0.000000, 2.366877, 0.000000;;, + 73;3;-0.000000, 2.366877, 0.000000;;, + 74;3;-0.000000, 2.366876, 0.000000;;, + 75;3; 0.000000, 2.366877,-0.000000;;, + 76;3; 0.000000, 2.366877, 0.000000;;, + 77;3;-0.000000, 2.366877, 0.000000;;, + 78;3; 0.000000, 2.366877,-0.000000;;, + 79;3; 0.000000, 2.366876,-0.000000;;, + 80;3;-0.000000, 2.366877,-0.000000;;, + 81;3; 0.000000, 2.366877,-0.000000;;, + 82;3;-0.000000, 2.366877,-0.000000;;, + 83;3;-0.000000, 2.366876, 0.000000;;, + 84;3; 0.000000, 2.366877,-0.000000;;, + 85;3;-0.000000, 2.366877,-0.000000;;, + 86;3; 0.000000, 2.366878, 0.000000;;, + 87;3;-0.000000, 2.366877, 0.000001;;, + 88;3; 0.000000, 2.366877,-0.000000;;, + 89;3;-0.000000, 2.366877, 0.000000;;, + 90;3;-0.000000, 2.366877,-0.000000;;, + 91;3; 0.000000, 2.366877, 0.000000;;, + 92;3; 0.000000, 2.366877, 0.000001;;, + 93;3; 0.000000, 2.366877,-0.000000;;, + 94;3; 0.000000, 2.366877,-0.000000;;, + 95;3; 0.000000, 2.366877, 0.000000;;, + 96;3; 0.000000, 2.366876,-0.000000;;, + 97;3; 0.000000, 2.366876, 0.000000;;, + 98;3; 0.000000, 2.366877, 0.000000;;, + 99;3;-0.000000, 2.366877, 0.000000;;, + 100;3; 0.000000, 2.366877,-0.000000;;, + 101;3;-0.000000, 2.366877, 0.000000;;, + 102;3; 0.000000, 2.366876,-0.000000;;, + 103;3; 0.000000, 2.366877, 0.000000;;, + 104;3;-0.000000, 2.366877,-0.000000;;, + 105;3;-0.000000, 2.366877,-0.000000;;, + 106;3;-0.000000, 2.366877, 0.000000;;, + 107;3;-0.000001, 2.366877,-0.000000;;, + 108;3; 0.000000, 2.366877,-0.000000;;, + 109;3; 0.000000, 2.366878, 0.000000;;, + 110;3; 0.000000, 2.366878, 0.000000;;, + 111;3; 0.000000, 2.366877,-0.000000;;, + 112;3; 0.000000, 2.366877, 0.000000;;, + 113;3;-0.000000, 2.366877, 0.000000;;, + 114;3;-0.000000, 2.366877,-0.000000;;, + 115;3; 0.000000, 2.366877, 0.000000;;, + 116;3; 0.000000, 2.366877, 0.000000;;, + 117;3; 0.000000, 2.366877, 0.000000;;, + 118;3; 0.000000, 2.366877,-0.000000;;, + 119;3;-0.000000, 2.366877,-0.000000;;, + 120;3;-0.000000, 2.366877, 0.000000;;, + 121;3; 0.000000, 2.366877,-0.000000;;, + 122;3; 0.000000, 2.366877, 0.000000;;, + 123;3; 0.000000, 2.366877, 0.000000;;, + 124;3; 0.000000, 2.366877, 0.000000;;, + 125;3; 0.000000, 2.366877, 0.000000;;, + 126;3; 0.000000, 2.366877, 0.000000;;, + 127;3;-0.000000, 2.366877,-0.000000;;, + 128;3; 0.000000, 2.366877, 0.000000;;, + 129;3;-0.000000, 2.366877, 0.000000;;, + 130;3; 0.000000, 2.366877,-0.000000;;, + 131;3;-0.000000, 2.366877,-0.000000;;, + 132;3;-0.000000, 2.366877, 0.000000;;, + 133;3; 0.000000, 2.366877,-0.000000;;, + 134;3;-0.000000, 2.366877,-0.000000;;, + 135;3;-0.000000, 2.366877, 0.000000;;, + 136;3; 0.000000, 2.366877,-0.000000;;, + 137;3; 0.000000, 2.366877, 0.000000;;, + 138;3; 0.000000, 2.366877, 0.000000;;, + 139;3;-0.000000, 2.366877, 0.000000;;, + 140;3; 0.000000, 2.366877,-0.000000;;, + 141;3; 0.000000, 2.366877,-0.000000;;, + 142;3; 0.000000, 2.366877,-0.000000;;, + 143;3;-0.000000, 2.366876, 0.000000;;, + 144;3; 0.000000, 2.366877,-0.000000;;, + 145;3; 0.000000, 2.366877, 0.000000;;, + 146;3;-0.000000, 2.366877,-0.000000;;, + 147;3; 0.000000, 2.366877, 0.000000;;, + 148;3; 0.000000, 2.366877, 0.000000;;, + 149;3;-0.000000, 2.366877,-0.000000;;, + 150;3;-0.000000, 2.366877,-0.000000;;, + 151;3;-0.000000, 2.366877,-0.000000;;, + 152;3;-0.000000, 2.366877,-0.000000;;, + 153;3;-0.000000, 2.366877,-0.000000;;, + 154;3;-0.000000, 2.366877,-0.000000;;, + 155;3;-0.000000, 2.366877,-0.000000;;, + 156;3;-0.000000, 2.366877,-0.000000;;, + 157;3;-0.000000, 2.366877,-0.000000;;, + 158;3;-0.000000, 2.366877,-0.000000;;, + 159;3;-0.000000, 2.366877,-0.000000;;, + 160;3;-0.000000, 2.366877,-0.000000;;, + 161;3;-0.000000, 2.366877,-0.000000;;, + 162;3;-0.000000, 2.366877,-0.000000;;, + 163;3;-0.000000, 2.366877,-0.000000;;, + 164;3;-0.000000, 2.366877,-0.000000;;, + 165;3;-0.000000, 2.366877,-0.000000;;, + 166;3;-0.000000, 2.366877,-0.000000;;, + 167;3;-0.000000, 2.366877,-0.000000;;, + 168;3;-0.000000, 2.366877,-0.000000;;, + 169;3;-0.000000, 2.366877,-0.000000;;, + 170;3;-0.000000, 2.366877,-0.000000;;, + 171;3;-0.000000, 2.366877,-0.000000;;, + 172;3;-0.000000, 2.366877,-0.000000;;, + 173;3;-0.000000, 2.366877,-0.000000;;, + 174;3;-0.000000, 2.366877,-0.000000;;, + 175;3;-0.000000, 2.366877,-0.000000;;, + 176;3;-0.000000, 2.366877,-0.000000;;, + 177;3;-0.000000, 2.366877,-0.000000;;, + 178;3;-0.000000, 2.366877,-0.000000;;, + 179;3;-0.000000, 2.366877,-0.000000;;, + 180;3;-0.000000, 2.366877,-0.000000;;, + 181;3;-0.000000, 2.366877,-0.000000;;, + 182;3;-0.000000, 2.366877,-0.000000;;, + 183;3;-0.000000, 2.366877,-0.000000;;, + 184;3;-0.000000, 2.366877,-0.000000;;, + 185;3;-0.000000, 2.366877,-0.000000;;, + 186;3;-0.000000, 2.366877,-0.000000;;, + 187;3;-0.000000, 2.366877,-0.000000;;, + 188;3;-0.000000, 2.366877,-0.000000;;, + 189;3;-0.000000, 2.366877,-0.000000;;, + 190;3;-0.000000, 2.366877,-0.000000;;, + 191;3;-0.000000, 2.366877,-0.000000;;, + 192;3;-0.000000, 2.366877,-0.000000;;, + 193;3;-0.000000, 2.366877,-0.000000;;, + 194;3;-0.000000, 2.366877,-0.000000;;, + 195;3;-0.000000, 2.366877,-0.000000;;, + 196;3;-0.000000, 2.366877,-0.000000;;, + 197;3;-0.000000, 2.366877,-0.000000;;, + 198;3;-0.000000, 2.366877,-0.000000;;, + 199;3;-0.000000, 2.366877,-0.000000;;, + 200;3;-0.000000, 2.366877,-0.000000;;, + 201;3;-0.000000, 2.366877,-0.000000;;, + 202;3;-0.000000, 2.366877,-0.000000;;, + 203;3;-0.000000, 2.366877,-0.000000;;, + 204;3;-0.000000, 2.366877,-0.000000;;, + 205;3;-0.000000, 2.366877,-0.000000;;, + 206;3;-0.000000, 2.366877,-0.000000;;, + 207;3;-0.000000, 2.366877,-0.000000;;, + 208;3;-0.000000, 2.366877,-0.000000;;, + 209;3;-0.000000, 2.366877,-0.000000;;, + 210;3;-0.000000, 2.366877,-0.000000;;, + 211;3;-0.000000, 2.366877,-0.000000;;, + 212;3;-0.000000, 2.366877,-0.000000;;, + 213;3;-0.000000, 2.366877,-0.000000;;, + 214;3;-0.000000, 2.366877,-0.000000;;, + 215;3;-0.000000, 2.366877,-0.000000;;, + 216;3;-0.000000, 2.366877,-0.000000;;, + 217;3;-0.000000, 2.366877,-0.000000;;, + 218;3;-0.000000, 2.366877,-0.000000;;, + 219;3;-0.000000, 2.366877,-0.000000;;, + 220;3;-0.000000, 2.366877,-0.000000;;, + 221;3;-0.000000, 2.366877,-0.000000;;, + 222;3;-0.000000, 2.366877,-0.000000;;, + 223;3;-0.000000, 2.366877,-0.000000;;, + 224;3;-0.000000, 2.366877,-0.000000;;, + 225;3;-0.000000, 2.366877,-0.000000;;, + 226;3;-0.000000, 2.366877,-0.000000;;, + 227;3;-0.000000, 2.366877,-0.000000;;, + 228;3;-0.000000, 2.366877,-0.000000;;, + 229;3;-0.000000, 2.366877,-0.000000;;, + 230;3;-0.000000, 2.366877,-0.000000;;, + 231;3;-0.000000, 2.366877,-0.000000;;, + 232;3;-0.000000, 2.366877,-0.000000;;, + 233;3;-0.000000, 2.366877,-0.000000;;, + 234;3;-0.000000, 2.366877,-0.000000;;, + 235;3;-0.000000, 2.366877,-0.000000;;, + 236;3;-0.000000, 2.366877,-0.000000;;, + 237;3;-0.000000, 2.366877,-0.000000;;, + 238;3;-0.000000, 2.366877,-0.000000;;, + 239;3;-0.000000, 2.366877,-0.000000;;, + 240;3;-0.000000, 2.366877,-0.000000;;, + 241;3;-0.000000, 2.366877,-0.000000;;, + 242;3;-0.000000, 2.366877,-0.000000;;, + 243;3;-0.000000, 2.366877,-0.000000;;, + 244;3;-0.000000, 2.366877,-0.000000;;, + 245;3;-0.000000, 2.366877,-0.000000;;, + 246;3;-0.000000, 2.366877,-0.000000;;, + 247;3;-0.000000, 2.366877,-0.000000;;, + 248;3;-0.000000, 2.366877,-0.000000;;, + 249;3;-0.000000, 2.366877,-0.000000;;; + } + } + Animation { + {Armature_Bone_010} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 1;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 2;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 3;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 4;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 5;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 6;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 7;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 8;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 9;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 10;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 11;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 12;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 13;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 14;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 15;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 16;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 17;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 18;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 19;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 20;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 21;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 22;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 23;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 24;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 25;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 26;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 27;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 28;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 29;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 30;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 31;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 32;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 33;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 34;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 35;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 36;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 37;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 38;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 39;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 40;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 41;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 42;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 43;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 44;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 45;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 46;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 47;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 48;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 49;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 50;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 51;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 52;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 53;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 54;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 55;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 56;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 57;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 58;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 59;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 60;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 61;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 62;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 63;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 64;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 65;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 66;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 67;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 68;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 69;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 70;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 71;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 72;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 73;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 74;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 75;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 76;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 77;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 78;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 79;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 80;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 81;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 82;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 83;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 84;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 85;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 86;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 87;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 88;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 89;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 90;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 91;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 92;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 93;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 94;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 95;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 96;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 97;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 98;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 99;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 100;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 101;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 102;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 103;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 104;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 105;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 106;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 107;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 108;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 109;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 110;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 111;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 112;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 113;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 114;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 115;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 116;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 117;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 118;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 119;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 120;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 121;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 122;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 123;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 124;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 125;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 126;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 127;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 128;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 129;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 130;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 131;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 132;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 133;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 134;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 135;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 136;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 137;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 138;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 139;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 140;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 141;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 142;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 143;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 144;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 145;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 146;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 147;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 148;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 149;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 150;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 151;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 152;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 153;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 154;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 155;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 156;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 157;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 158;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 159;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 160;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 161;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 162;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 163;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 164;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 165;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 166;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 167;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 168;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 169;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 170;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 171;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 172;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 173;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 174;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 175;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 176;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 177;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 178;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 179;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 180;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 181;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 182;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 183;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 184;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 185;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 186;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 187;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 188;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 189;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 190;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 191;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 192;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 193;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 194;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 195;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 196;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 197;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 198;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 199;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 200;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 201;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 202;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 203;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 204;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 205;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 206;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 207;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 208;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 209;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 210;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 211;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 212;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 213;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 214;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 215;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 216;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 217;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 218;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 219;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 220;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 221;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 222;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 223;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 224;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 225;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 226;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 227;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 228;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 229;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 230;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 231;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 232;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 233;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 234;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 235;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 236;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 237;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 238;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 239;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 240;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 241;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 242;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 243;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 244;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 245;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 246;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 247;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 248;4;-0.548103,-0.446747, 0.548103,-0.446747;;, + 249;4;-0.548103,-0.446747, 0.548103,-0.446747;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3; 0.000000, 0.705560, 0.000000;;, + 1;3; 0.000000, 0.705560, 0.000000;;, + 2;3; 0.000000, 0.705560, 0.000000;;, + 3;3; 0.000000, 0.705560, 0.000000;;, + 4;3; 0.000000, 0.705560, 0.000000;;, + 5;3; 0.000000, 0.705560, 0.000000;;, + 6;3; 0.000000, 0.705560, 0.000000;;, + 7;3; 0.000000, 0.705560, 0.000000;;, + 8;3; 0.000000, 0.705560, 0.000000;;, + 9;3; 0.000000, 0.705560, 0.000000;;, + 10;3; 0.000000, 0.705560, 0.000000;;, + 11;3; 0.000000, 0.705560, 0.000000;;, + 12;3; 0.000000, 0.705560, 0.000000;;, + 13;3; 0.000000, 0.705560, 0.000000;;, + 14;3; 0.000000, 0.705560, 0.000000;;, + 15;3; 0.000000, 0.705560, 0.000000;;, + 16;3; 0.000000, 0.705560, 0.000000;;, + 17;3; 0.000000, 0.705560, 0.000000;;, + 18;3; 0.000000, 0.705560, 0.000000;;, + 19;3; 0.000000, 0.705560, 0.000000;;, + 20;3; 0.000000, 0.705560, 0.000000;;, + 21;3; 0.000000, 0.705560, 0.000000;;, + 22;3; 0.000000, 0.705560, 0.000000;;, + 23;3; 0.000000, 0.705560, 0.000000;;, + 24;3; 0.000000, 0.705560, 0.000000;;, + 25;3; 0.000000, 0.705560, 0.000000;;, + 26;3; 0.000000, 0.705560, 0.000000;;, + 27;3; 0.000000, 0.705560, 0.000000;;, + 28;3; 0.000000, 0.705560, 0.000000;;, + 29;3; 0.000000, 0.705560, 0.000000;;, + 30;3; 0.000000, 0.705560, 0.000000;;, + 31;3; 0.000000, 0.705560, 0.000000;;, + 32;3; 0.000000, 0.705560, 0.000000;;, + 33;3; 0.000000, 0.705560, 0.000000;;, + 34;3; 0.000000, 0.705560, 0.000000;;, + 35;3; 0.000000, 0.705560, 0.000000;;, + 36;3; 0.000000, 0.705560, 0.000000;;, + 37;3; 0.000000, 0.705560, 0.000000;;, + 38;3; 0.000000, 0.705560, 0.000000;;, + 39;3; 0.000000, 0.705560, 0.000000;;, + 40;3; 0.000000, 0.705560, 0.000000;;, + 41;3; 0.000000, 0.705559, 0.000000;;, + 42;3;-0.000000, 0.705560, 0.000000;;, + 43;3; 0.000000, 0.705560,-0.000000;;, + 44;3; 0.000000, 0.705560, 0.000000;;, + 45;3; 0.000000, 0.705560,-0.000000;;, + 46;3; 0.000000, 0.705559, 0.000000;;, + 47;3;-0.000000, 0.705560, 0.000000;;, + 48;3; 0.000000, 0.705560,-0.000000;;, + 49;3; 0.000000, 0.705560, 0.000000;;, + 50;3;-0.000000, 0.705559, 0.000000;;, + 51;3; 0.000000, 0.705560,-0.000000;;, + 52;3;-0.000000, 0.705560, 0.000000;;, + 53;3; 0.000000, 0.705560,-0.000000;;, + 54;3; 0.000000, 0.705560, 0.000000;;, + 55;3; 0.000000, 0.705560,-0.000000;;, + 56;3;-0.000000, 0.705560, 0.000000;;, + 57;3; 0.000000, 0.705559, 0.000000;;, + 58;3;-0.000000, 0.705560, 0.000000;;, + 59;3; 0.000000, 0.705560, 0.000000;;, + 60;3; 0.000000, 0.705560,-0.000000;;, + 61;3; 0.000000, 0.705560, 0.000000;;, + 62;3; 0.000000, 0.705560, 0.000000;;, + 63;3; 0.000000, 0.705560, 0.000000;;, + 64;3; 0.000000, 0.705560,-0.000000;;, + 65;3;-0.000000, 0.705560, 0.000000;;, + 66;3; 0.000000, 0.705560, 0.000000;;, + 67;3;-0.000000, 0.705560, 0.000000;;, + 68;3; 0.000000, 0.705559, 0.000000;;, + 69;3; 0.000000, 0.705560, 0.000000;;, + 70;3; 0.000000, 0.705560, 0.000000;;, + 71;3;-0.000000, 0.705560, 0.000000;;, + 72;3;-0.000000, 0.705560, 0.000000;;, + 73;3;-0.000000, 0.705560, 0.000000;;, + 74;3;-0.000000, 0.705560, 0.000000;;, + 75;3;-0.000000, 0.705560, 0.000000;;, + 76;3; 0.000000, 0.705559, 0.000000;;, + 77;3;-0.000000, 0.705560, 0.000000;;, + 78;3; 0.000000, 0.705560, 0.000000;;, + 79;3;-0.000000, 0.705559, 0.000000;;, + 80;3; 0.000000, 0.705560, 0.000000;;, + 81;3;-0.000000, 0.705560, 0.000000;;, + 82;3; 0.000000, 0.705560, 0.000000;;, + 83;3; 0.000000, 0.705560, 0.000000;;, + 84;3; 0.000000, 0.705560,-0.000000;;, + 85;3;-0.000000, 0.705560, 0.000000;;, + 86;3;-0.000000, 0.705560, 0.000000;;, + 87;3; 0.000000, 0.705560,-0.000000;;, + 88;3; 0.000000, 0.705560, 0.000000;;, + 89;3; 0.000000, 0.705560, 0.000000;;, + 90;3; 0.000000, 0.705560, 0.000000;;, + 91;3; 0.000000, 0.705560, 0.000000;;, + 92;3; 0.000000, 0.705560, 0.000000;;, + 93;3; 0.000000, 0.705560, 0.000000;;, + 94;3; 0.000000, 0.705560, 0.000000;;, + 95;3; 0.000000, 0.705560, 0.000000;;, + 96;3; 0.000000, 0.705560,-0.000000;;, + 97;3; 0.000000, 0.705560,-0.000000;;, + 98;3; 0.000000, 0.705560, 0.000000;;, + 99;3; 0.000000, 0.705560, 0.000000;;, + 100;3;-0.000000, 0.705560,-0.000000;;, + 101;3; 0.000000, 0.705560,-0.000000;;, + 102;3; 0.000000, 0.705559, 0.000000;;, + 103;3;-0.000000, 0.705560,-0.000000;;, + 104;3;-0.000000, 0.705559,-0.000000;;, + 105;3;-0.000000, 0.705560,-0.000000;;, + 106;3; 0.000000, 0.705560, 0.000000;;, + 107;3;-0.000000, 0.705559,-0.000000;;, + 108;3; 0.000000, 0.705560,-0.000000;;, + 109;3; 0.000000, 0.705559,-0.000000;;, + 110;3;-0.000000, 0.705559, 0.000000;;, + 111;3; 0.000000, 0.705560,-0.000000;;, + 112;3; 0.000000, 0.705560, 0.000000;;, + 113;3; 0.000000, 0.705560,-0.000000;;, + 114;3;-0.000000, 0.705559, 0.000000;;, + 115;3; 0.000000, 0.705560, 0.000000;;, + 116;3;-0.000000, 0.705560,-0.000000;;, + 117;3; 0.000000, 0.705560, 0.000000;;, + 118;3; 0.000000, 0.705560,-0.000000;;, + 119;3; 0.000000, 0.705560, 0.000000;;, + 120;3; 0.000000, 0.705560,-0.000000;;, + 121;3; 0.000000, 0.705560,-0.000000;;, + 122;3;-0.000000, 0.705560,-0.000000;;, + 123;3; 0.000000, 0.705560, 0.000000;;, + 124;3; 0.000000, 0.705560, 0.000000;;, + 125;3; 0.000000, 0.705560, 0.000000;;, + 126;3;-0.000000, 0.705560, 0.000000;;, + 127;3;-0.000000, 0.705560, 0.000000;;, + 128;3;-0.000000, 0.705560,-0.000000;;, + 129;3; 0.000000, 0.705560, 0.000000;;, + 130;3; 0.000000, 0.705559, 0.000000;;, + 131;3; 0.000000, 0.705560, 0.000000;;, + 132;3; 0.000000, 0.705560, 0.000000;;, + 133;3; 0.000000, 0.705560,-0.000000;;, + 134;3; 0.000000, 0.705560, 0.000000;;, + 135;3; 0.000000, 0.705560, 0.000000;;, + 136;3;-0.000000, 0.705560,-0.000000;;, + 137;3; 0.000000, 0.705560, 0.000000;;, + 138;3;-0.000000, 0.705559, 0.000000;;, + 139;3;-0.000000, 0.705560,-0.000000;;, + 140;3; 0.000000, 0.705560, 0.000000;;, + 141;3; 0.000000, 0.705560, 0.000000;;, + 142;3; 0.000000, 0.705560, 0.000000;;, + 143;3; 0.000000, 0.705560,-0.000000;;, + 144;3; 0.000000, 0.705560, 0.000000;;, + 145;3; 0.000000, 0.705560,-0.000000;;, + 146;3; 0.000000, 0.705560, 0.000000;;, + 147;3; 0.000000, 0.705560,-0.000000;;, + 148;3; 0.000000, 0.705560, 0.000000;;, + 149;3; 0.000000, 0.705560, 0.000000;;, + 150;3; 0.000000, 0.705560, 0.000000;;, + 151;3; 0.000000, 0.705560, 0.000000;;, + 152;3; 0.000000, 0.705560, 0.000000;;, + 153;3; 0.000000, 0.705560, 0.000000;;, + 154;3; 0.000000, 0.705560, 0.000000;;, + 155;3; 0.000000, 0.705560, 0.000000;;, + 156;3; 0.000000, 0.705560, 0.000000;;, + 157;3; 0.000000, 0.705560, 0.000000;;, + 158;3; 0.000000, 0.705560, 0.000000;;, + 159;3; 0.000000, 0.705560, 0.000000;;, + 160;3; 0.000000, 0.705560, 0.000000;;, + 161;3; 0.000000, 0.705560, 0.000000;;, + 162;3; 0.000000, 0.705560, 0.000000;;, + 163;3; 0.000000, 0.705560, 0.000000;;, + 164;3; 0.000000, 0.705560, 0.000000;;, + 165;3; 0.000000, 0.705560, 0.000000;;, + 166;3; 0.000000, 0.705560, 0.000000;;, + 167;3; 0.000000, 0.705560, 0.000000;;, + 168;3; 0.000000, 0.705560, 0.000000;;, + 169;3; 0.000000, 0.705560, 0.000000;;, + 170;3; 0.000000, 0.705560, 0.000000;;, + 171;3; 0.000000, 0.705560, 0.000000;;, + 172;3; 0.000000, 0.705560, 0.000000;;, + 173;3; 0.000000, 0.705560, 0.000000;;, + 174;3; 0.000000, 0.705560, 0.000000;;, + 175;3; 0.000000, 0.705560, 0.000000;;, + 176;3; 0.000000, 0.705560, 0.000000;;, + 177;3; 0.000000, 0.705560, 0.000000;;, + 178;3; 0.000000, 0.705560, 0.000000;;, + 179;3; 0.000000, 0.705560, 0.000000;;, + 180;3; 0.000000, 0.705560, 0.000000;;, + 181;3; 0.000000, 0.705560, 0.000000;;, + 182;3; 0.000000, 0.705560, 0.000000;;, + 183;3; 0.000000, 0.705560, 0.000000;;, + 184;3; 0.000000, 0.705560, 0.000000;;, + 185;3; 0.000000, 0.705560, 0.000000;;, + 186;3; 0.000000, 0.705560, 0.000000;;, + 187;3; 0.000000, 0.705560, 0.000000;;, + 188;3; 0.000000, 0.705560, 0.000000;;, + 189;3; 0.000000, 0.705560, 0.000000;;, + 190;3; 0.000000, 0.705560, 0.000000;;, + 191;3; 0.000000, 0.705560, 0.000000;;, + 192;3; 0.000000, 0.705560, 0.000000;;, + 193;3; 0.000000, 0.705560, 0.000000;;, + 194;3; 0.000000, 0.705560, 0.000000;;, + 195;3; 0.000000, 0.705560, 0.000000;;, + 196;3; 0.000000, 0.705560, 0.000000;;, + 197;3; 0.000000, 0.705560, 0.000000;;, + 198;3; 0.000000, 0.705560, 0.000000;;, + 199;3; 0.000000, 0.705560, 0.000000;;, + 200;3; 0.000000, 0.705560, 0.000000;;, + 201;3; 0.000000, 0.705560, 0.000000;;, + 202;3; 0.000000, 0.705560, 0.000000;;, + 203;3; 0.000000, 0.705560, 0.000000;;, + 204;3; 0.000000, 0.705560, 0.000000;;, + 205;3; 0.000000, 0.705560, 0.000000;;, + 206;3; 0.000000, 0.705560, 0.000000;;, + 207;3; 0.000000, 0.705560, 0.000000;;, + 208;3; 0.000000, 0.705560, 0.000000;;, + 209;3; 0.000000, 0.705560, 0.000000;;, + 210;3; 0.000000, 0.705560, 0.000000;;, + 211;3; 0.000000, 0.705560, 0.000000;;, + 212;3; 0.000000, 0.705560, 0.000000;;, + 213;3; 0.000000, 0.705560, 0.000000;;, + 214;3; 0.000000, 0.705560, 0.000000;;, + 215;3; 0.000000, 0.705560, 0.000000;;, + 216;3; 0.000000, 0.705560, 0.000000;;, + 217;3; 0.000000, 0.705560, 0.000000;;, + 218;3; 0.000000, 0.705560, 0.000000;;, + 219;3; 0.000000, 0.705560, 0.000000;;, + 220;3; 0.000000, 0.705560, 0.000000;;, + 221;3; 0.000000, 0.705560, 0.000000;;, + 222;3; 0.000000, 0.705560, 0.000000;;, + 223;3; 0.000000, 0.705560, 0.000000;;, + 224;3; 0.000000, 0.705560, 0.000000;;, + 225;3; 0.000000, 0.705560, 0.000000;;, + 226;3; 0.000000, 0.705560, 0.000000;;, + 227;3; 0.000000, 0.705560, 0.000000;;, + 228;3; 0.000000, 0.705560, 0.000000;;, + 229;3; 0.000000, 0.705560, 0.000000;;, + 230;3; 0.000000, 0.705560, 0.000000;;, + 231;3; 0.000000, 0.705560, 0.000000;;, + 232;3; 0.000000, 0.705560, 0.000000;;, + 233;3; 0.000000, 0.705560, 0.000000;;, + 234;3; 0.000000, 0.705560, 0.000000;;, + 235;3; 0.000000, 0.705560, 0.000000;;, + 236;3; 0.000000, 0.705560, 0.000000;;, + 237;3; 0.000000, 0.705560, 0.000000;;, + 238;3; 0.000000, 0.705560, 0.000000;;, + 239;3; 0.000000, 0.705560, 0.000000;;, + 240;3; 0.000000, 0.705560, 0.000000;;, + 241;3; 0.000000, 0.705560, 0.000000;;, + 242;3; 0.000000, 0.705560, 0.000000;;, + 243;3; 0.000000, 0.705560, 0.000000;;, + 244;3; 0.000000, 0.705560, 0.000000;;, + 245;3; 0.000000, 0.705560, 0.000000;;, + 246;3; 0.000000, 0.705560, 0.000000;;, + 247;3; 0.000000, 0.705560, 0.000000;;, + 248;3; 0.000000, 0.705560, 0.000000;;, + 249;3; 0.000000, 0.705560, 0.000000;;; + } + } + Animation { + {Armature_Bone_011} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 1;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 2;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 3;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 4;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 5;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 6;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 7;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 8;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 9;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 10;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 11;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 12;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 13;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 14;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 15;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 16;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 17;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 18;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 19;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 20;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 21;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 22;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 23;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 24;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 25;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 26;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 27;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 28;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 29;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 30;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 31;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 32;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 33;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 34;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 35;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 36;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 37;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 38;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 39;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 40;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 41;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 42;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 43;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 44;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 45;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 46;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 47;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 48;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 49;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 50;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 51;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 52;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 53;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 54;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 55;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 56;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 57;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 58;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 59;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 60;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 61;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 62;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 63;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 64;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 65;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 66;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 67;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 68;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 69;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 70;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 71;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 72;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 73;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 74;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 75;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 76;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 77;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 78;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 79;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 80;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 81;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 82;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 83;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 84;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 85;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 86;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 87;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 88;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 89;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 90;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 91;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 92;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 93;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 94;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 95;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 96;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 97;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 98;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 99;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 100;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 101;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 102;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 103;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 104;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 105;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 106;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 107;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 108;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 109;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 110;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 111;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 112;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 113;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 114;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 115;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 116;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 117;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 118;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 119;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 120;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 121;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 122;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 123;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 124;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 125;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 126;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 127;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 128;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 129;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 130;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 131;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 132;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 133;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 134;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 135;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 136;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 137;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 138;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 139;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 140;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 141;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 142;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 143;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 144;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 145;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 146;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 147;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 148;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 149;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 150;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 151;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 152;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 153;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 154;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 155;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 156;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 157;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 158;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 159;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 160;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 161;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 162;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 163;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 164;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 165;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 166;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 167;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 168;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 169;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 170;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 171;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 172;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 173;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 174;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 175;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 176;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 177;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 178;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 179;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 180;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 181;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 182;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 183;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 184;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 185;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 186;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 187;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 188;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 189;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 190;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 191;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 192;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 193;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 194;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 195;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 196;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 197;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 198;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 199;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 200;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 201;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 202;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 203;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 204;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 205;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 206;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 207;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 208;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 209;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 210;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 211;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 212;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 213;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 214;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 215;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 216;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 217;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 218;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 219;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 220;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 221;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 222;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 223;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 224;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 225;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 226;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 227;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 228;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 229;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 230;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 231;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 232;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 233;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 234;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 235;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 236;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 237;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 238;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 239;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 240;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 241;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 242;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 243;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 244;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 245;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 246;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 247;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 248;4;-0.444510,-0.549669, 0.449764,-0.545882;;, + 249;4;-0.444510,-0.549669, 0.449764,-0.545882;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3; 0.000000, 0.705560, 0.000000;;, + 1;3; 0.000000, 0.705560, 0.000000;;, + 2;3; 0.000000, 0.705560, 0.000000;;, + 3;3; 0.000000, 0.705560, 0.000000;;, + 4;3; 0.000000, 0.705560, 0.000000;;, + 5;3; 0.000000, 0.705560, 0.000000;;, + 6;3; 0.000000, 0.705560, 0.000000;;, + 7;3; 0.000000, 0.705560, 0.000000;;, + 8;3; 0.000000, 0.705560, 0.000000;;, + 9;3; 0.000000, 0.705560, 0.000000;;, + 10;3; 0.000000, 0.705560, 0.000000;;, + 11;3; 0.000000, 0.705560, 0.000000;;, + 12;3; 0.000000, 0.705560, 0.000000;;, + 13;3; 0.000000, 0.705560, 0.000000;;, + 14;3; 0.000000, 0.705560, 0.000000;;, + 15;3; 0.000000, 0.705560, 0.000000;;, + 16;3; 0.000000, 0.705560, 0.000000;;, + 17;3; 0.000000, 0.705560, 0.000000;;, + 18;3; 0.000000, 0.705560, 0.000000;;, + 19;3; 0.000000, 0.705560, 0.000000;;, + 20;3; 0.000000, 0.705560, 0.000000;;, + 21;3; 0.000000, 0.705560, 0.000000;;, + 22;3; 0.000000, 0.705560, 0.000000;;, + 23;3; 0.000000, 0.705560, 0.000000;;, + 24;3; 0.000000, 0.705560, 0.000000;;, + 25;3; 0.000000, 0.705560, 0.000000;;, + 26;3; 0.000000, 0.705560, 0.000000;;, + 27;3; 0.000000, 0.705560, 0.000000;;, + 28;3; 0.000000, 0.705560, 0.000000;;, + 29;3; 0.000000, 0.705560, 0.000000;;, + 30;3; 0.000000, 0.705560, 0.000000;;, + 31;3; 0.000000, 0.705560, 0.000000;;, + 32;3; 0.000000, 0.705560, 0.000000;;, + 33;3; 0.000000, 0.705560, 0.000000;;, + 34;3; 0.000000, 0.705560, 0.000000;;, + 35;3; 0.000000, 0.705560, 0.000000;;, + 36;3; 0.000000, 0.705560, 0.000000;;, + 37;3; 0.000000, 0.705560, 0.000000;;, + 38;3; 0.000000, 0.705560, 0.000000;;, + 39;3; 0.000000, 0.705560, 0.000000;;, + 40;3; 0.000000, 0.705560, 0.000000;;, + 41;3; 0.000000, 0.705559, 0.000000;;, + 42;3;-0.000000, 0.705560, 0.000000;;, + 43;3; 0.000000, 0.705560,-0.000000;;, + 44;3; 0.000000, 0.705560, 0.000000;;, + 45;3; 0.000000, 0.705560,-0.000000;;, + 46;3; 0.000000, 0.705559, 0.000000;;, + 47;3;-0.000000, 0.705560, 0.000000;;, + 48;3; 0.000000, 0.705560,-0.000000;;, + 49;3; 0.000000, 0.705560, 0.000000;;, + 50;3;-0.000000, 0.705559, 0.000000;;, + 51;3; 0.000000, 0.705560,-0.000000;;, + 52;3;-0.000000, 0.705560, 0.000000;;, + 53;3; 0.000000, 0.705560,-0.000000;;, + 54;3; 0.000000, 0.705560, 0.000000;;, + 55;3; 0.000000, 0.705560,-0.000000;;, + 56;3;-0.000000, 0.705560, 0.000000;;, + 57;3; 0.000000, 0.705559, 0.000000;;, + 58;3;-0.000000, 0.705560, 0.000000;;, + 59;3; 0.000000, 0.705560, 0.000000;;, + 60;3; 0.000000, 0.705560,-0.000000;;, + 61;3; 0.000000, 0.705560, 0.000000;;, + 62;3; 0.000000, 0.705560, 0.000000;;, + 63;3; 0.000000, 0.705560, 0.000000;;, + 64;3; 0.000000, 0.705560,-0.000000;;, + 65;3;-0.000000, 0.705560, 0.000000;;, + 66;3; 0.000000, 0.705560, 0.000000;;, + 67;3;-0.000000, 0.705560, 0.000000;;, + 68;3; 0.000000, 0.705559, 0.000000;;, + 69;3; 0.000000, 0.705560, 0.000000;;, + 70;3; 0.000000, 0.705560, 0.000000;;, + 71;3;-0.000000, 0.705560, 0.000000;;, + 72;3;-0.000000, 0.705560, 0.000000;;, + 73;3;-0.000000, 0.705560, 0.000000;;, + 74;3;-0.000000, 0.705560, 0.000000;;, + 75;3;-0.000000, 0.705560, 0.000000;;, + 76;3; 0.000000, 0.705559, 0.000000;;, + 77;3;-0.000000, 0.705560, 0.000000;;, + 78;3; 0.000000, 0.705560, 0.000000;;, + 79;3;-0.000000, 0.705559, 0.000000;;, + 80;3; 0.000000, 0.705560, 0.000000;;, + 81;3;-0.000000, 0.705560, 0.000000;;, + 82;3; 0.000000, 0.705560, 0.000000;;, + 83;3; 0.000000, 0.705560, 0.000000;;, + 84;3; 0.000000, 0.705560,-0.000000;;, + 85;3;-0.000000, 0.705560, 0.000000;;, + 86;3;-0.000000, 0.705560, 0.000000;;, + 87;3; 0.000000, 0.705560,-0.000000;;, + 88;3; 0.000000, 0.705560, 0.000000;;, + 89;3; 0.000000, 0.705560, 0.000000;;, + 90;3; 0.000000, 0.705560, 0.000000;;, + 91;3; 0.000000, 0.705560, 0.000000;;, + 92;3; 0.000000, 0.705560, 0.000000;;, + 93;3; 0.000000, 0.705560, 0.000000;;, + 94;3; 0.000000, 0.705560, 0.000000;;, + 95;3; 0.000000, 0.705560, 0.000000;;, + 96;3; 0.000000, 0.705560,-0.000000;;, + 97;3; 0.000000, 0.705560,-0.000000;;, + 98;3; 0.000000, 0.705560, 0.000000;;, + 99;3; 0.000000, 0.705560, 0.000000;;, + 100;3;-0.000000, 0.705560,-0.000000;;, + 101;3; 0.000000, 0.705560,-0.000000;;, + 102;3; 0.000000, 0.705559, 0.000000;;, + 103;3;-0.000000, 0.705560,-0.000000;;, + 104;3;-0.000000, 0.705559,-0.000000;;, + 105;3;-0.000000, 0.705560,-0.000000;;, + 106;3; 0.000000, 0.705560, 0.000000;;, + 107;3;-0.000000, 0.705559,-0.000000;;, + 108;3; 0.000000, 0.705560,-0.000000;;, + 109;3; 0.000000, 0.705559,-0.000000;;, + 110;3;-0.000000, 0.705559, 0.000000;;, + 111;3; 0.000000, 0.705560,-0.000000;;, + 112;3; 0.000000, 0.705560, 0.000000;;, + 113;3; 0.000000, 0.705560,-0.000000;;, + 114;3;-0.000000, 0.705559, 0.000000;;, + 115;3; 0.000000, 0.705560, 0.000000;;, + 116;3;-0.000000, 0.705560,-0.000000;;, + 117;3; 0.000000, 0.705560, 0.000000;;, + 118;3; 0.000000, 0.705560,-0.000000;;, + 119;3; 0.000000, 0.705560, 0.000000;;, + 120;3; 0.000000, 0.705560,-0.000000;;, + 121;3; 0.000000, 0.705560,-0.000000;;, + 122;3;-0.000000, 0.705560,-0.000000;;, + 123;3; 0.000000, 0.705560, 0.000000;;, + 124;3; 0.000000, 0.705560, 0.000000;;, + 125;3; 0.000000, 0.705560, 0.000000;;, + 126;3;-0.000000, 0.705560, 0.000000;;, + 127;3;-0.000000, 0.705560, 0.000000;;, + 128;3;-0.000000, 0.705560,-0.000000;;, + 129;3; 0.000000, 0.705560, 0.000000;;, + 130;3; 0.000000, 0.705559, 0.000000;;, + 131;3; 0.000000, 0.705560, 0.000000;;, + 132;3; 0.000000, 0.705560, 0.000000;;, + 133;3; 0.000000, 0.705560,-0.000000;;, + 134;3; 0.000000, 0.705560, 0.000000;;, + 135;3; 0.000000, 0.705560, 0.000000;;, + 136;3;-0.000000, 0.705560,-0.000000;;, + 137;3; 0.000000, 0.705560, 0.000000;;, + 138;3;-0.000000, 0.705559, 0.000000;;, + 139;3;-0.000000, 0.705560,-0.000000;;, + 140;3; 0.000000, 0.705560, 0.000000;;, + 141;3; 0.000000, 0.705560, 0.000000;;, + 142;3; 0.000000, 0.705560, 0.000000;;, + 143;3; 0.000000, 0.705560,-0.000000;;, + 144;3; 0.000000, 0.705560, 0.000000;;, + 145;3; 0.000000, 0.705560,-0.000000;;, + 146;3; 0.000000, 0.705560, 0.000000;;, + 147;3; 0.000000, 0.705560,-0.000000;;, + 148;3; 0.000000, 0.705560, 0.000000;;, + 149;3; 0.000000, 0.705560, 0.000000;;, + 150;3; 0.000000, 0.705560, 0.000000;;, + 151;3; 0.000000, 0.705560, 0.000000;;, + 152;3; 0.000000, 0.705560, 0.000000;;, + 153;3; 0.000000, 0.705560, 0.000000;;, + 154;3; 0.000000, 0.705560, 0.000000;;, + 155;3; 0.000000, 0.705560, 0.000000;;, + 156;3; 0.000000, 0.705560, 0.000000;;, + 157;3; 0.000000, 0.705560, 0.000000;;, + 158;3; 0.000000, 0.705560, 0.000000;;, + 159;3; 0.000000, 0.705560, 0.000000;;, + 160;3; 0.000000, 0.705560, 0.000000;;, + 161;3; 0.000000, 0.705560, 0.000000;;, + 162;3; 0.000000, 0.705560, 0.000000;;, + 163;3; 0.000000, 0.705560, 0.000000;;, + 164;3; 0.000000, 0.705560, 0.000000;;, + 165;3; 0.000000, 0.705560, 0.000000;;, + 166;3; 0.000000, 0.705560, 0.000000;;, + 167;3; 0.000000, 0.705560, 0.000000;;, + 168;3; 0.000000, 0.705560, 0.000000;;, + 169;3; 0.000000, 0.705560, 0.000000;;, + 170;3; 0.000000, 0.705560, 0.000000;;, + 171;3; 0.000000, 0.705560, 0.000000;;, + 172;3; 0.000000, 0.705560, 0.000000;;, + 173;3; 0.000000, 0.705560, 0.000000;;, + 174;3; 0.000000, 0.705560, 0.000000;;, + 175;3; 0.000000, 0.705560, 0.000000;;, + 176;3; 0.000000, 0.705560, 0.000000;;, + 177;3; 0.000000, 0.705560, 0.000000;;, + 178;3; 0.000000, 0.705560, 0.000000;;, + 179;3; 0.000000, 0.705560, 0.000000;;, + 180;3; 0.000000, 0.705560, 0.000000;;, + 181;3; 0.000000, 0.705560, 0.000000;;, + 182;3; 0.000000, 0.705560, 0.000000;;, + 183;3; 0.000000, 0.705560, 0.000000;;, + 184;3; 0.000000, 0.705560, 0.000000;;, + 185;3; 0.000000, 0.705560, 0.000000;;, + 186;3; 0.000000, 0.705560, 0.000000;;, + 187;3; 0.000000, 0.705560, 0.000000;;, + 188;3; 0.000000, 0.705560, 0.000000;;, + 189;3; 0.000000, 0.705560, 0.000000;;, + 190;3; 0.000000, 0.705560, 0.000000;;, + 191;3; 0.000000, 0.705560, 0.000000;;, + 192;3; 0.000000, 0.705560, 0.000000;;, + 193;3; 0.000000, 0.705560, 0.000000;;, + 194;3; 0.000000, 0.705560, 0.000000;;, + 195;3; 0.000000, 0.705560, 0.000000;;, + 196;3; 0.000000, 0.705560, 0.000000;;, + 197;3; 0.000000, 0.705560, 0.000000;;, + 198;3; 0.000000, 0.705560, 0.000000;;, + 199;3; 0.000000, 0.705560, 0.000000;;, + 200;3; 0.000000, 0.705560, 0.000000;;, + 201;3; 0.000000, 0.705560, 0.000000;;, + 202;3; 0.000000, 0.705560, 0.000000;;, + 203;3; 0.000000, 0.705560, 0.000000;;, + 204;3; 0.000000, 0.705560, 0.000000;;, + 205;3; 0.000000, 0.705560, 0.000000;;, + 206;3; 0.000000, 0.705560, 0.000000;;, + 207;3; 0.000000, 0.705560, 0.000000;;, + 208;3; 0.000000, 0.705560, 0.000000;;, + 209;3; 0.000000, 0.705560, 0.000000;;, + 210;3; 0.000000, 0.705560, 0.000000;;, + 211;3; 0.000000, 0.705560, 0.000000;;, + 212;3; 0.000000, 0.705560, 0.000000;;, + 213;3; 0.000000, 0.705560, 0.000000;;, + 214;3; 0.000000, 0.705560, 0.000000;;, + 215;3; 0.000000, 0.705560, 0.000000;;, + 216;3; 0.000000, 0.705560, 0.000000;;, + 217;3; 0.000000, 0.705560, 0.000000;;, + 218;3; 0.000000, 0.705560, 0.000000;;, + 219;3; 0.000000, 0.705560, 0.000000;;, + 220;3; 0.000000, 0.705560, 0.000000;;, + 221;3; 0.000000, 0.705560, 0.000000;;, + 222;3; 0.000000, 0.705560, 0.000000;;, + 223;3; 0.000000, 0.705560, 0.000000;;, + 224;3; 0.000000, 0.705560, 0.000000;;, + 225;3; 0.000000, 0.705560, 0.000000;;, + 226;3; 0.000000, 0.705560, 0.000000;;, + 227;3; 0.000000, 0.705560, 0.000000;;, + 228;3; 0.000000, 0.705560, 0.000000;;, + 229;3; 0.000000, 0.705560, 0.000000;;, + 230;3; 0.000000, 0.705560, 0.000000;;, + 231;3; 0.000000, 0.705560, 0.000000;;, + 232;3; 0.000000, 0.705560, 0.000000;;, + 233;3; 0.000000, 0.705560, 0.000000;;, + 234;3; 0.000000, 0.705560, 0.000000;;, + 235;3; 0.000000, 0.705560, 0.000000;;, + 236;3; 0.000000, 0.705560, 0.000000;;, + 237;3; 0.000000, 0.705560, 0.000000;;, + 238;3; 0.000000, 0.705560, 0.000000;;, + 239;3; 0.000000, 0.705560, 0.000000;;, + 240;3; 0.000000, 0.705560, 0.000000;;, + 241;3; 0.000000, 0.705560, 0.000000;;, + 242;3; 0.000000, 0.705560, 0.000000;;, + 243;3; 0.000000, 0.705560, 0.000000;;, + 244;3; 0.000000, 0.705560, 0.000000;;, + 245;3; 0.000000, 0.705560, 0.000000;;, + 246;3; 0.000000, 0.705560, 0.000000;;, + 247;3; 0.000000, 0.705560, 0.000000;;, + 248;3; 0.000000, 0.705560, 0.000000;;, + 249;3; 0.000000, 0.705560, 0.000000;;; + } + } + Animation { + {Armature_Bone_012} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 1;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 2;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 3;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 4;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 5;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 6;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 7;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 8;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 9;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 10;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 11;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 12;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 13;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 14;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 15;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 16;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 17;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 18;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 19;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 20;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 21;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 22;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 23;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 24;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 25;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 26;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 27;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 28;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 29;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 30;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 31;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 32;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 33;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 34;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 35;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 36;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 37;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 38;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 39;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 40;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 41;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 42;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 43;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 44;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 45;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 46;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 47;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 48;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 49;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 50;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 51;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 52;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 53;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 54;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 55;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 56;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 57;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 58;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 59;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 60;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 61;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 62;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 63;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 64;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 65;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 66;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 67;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 68;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 69;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 70;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 71;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 72;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 73;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 74;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 75;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 76;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 77;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 78;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 79;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 80;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 81;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 82;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 83;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 84;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 85;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 86;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 87;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 88;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 89;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 90;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 91;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 92;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 93;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 94;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 95;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 96;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 97;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 98;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 99;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 100;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 101;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 102;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 103;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 104;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 105;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 106;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 107;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 108;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 109;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 110;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 111;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 112;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 113;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 114;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 115;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 116;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 117;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 118;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 119;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 120;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 121;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 122;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 123;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 124;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 125;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 126;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 127;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 128;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 129;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 130;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 131;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 132;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 133;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 134;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 135;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 136;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 137;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 138;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 139;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 140;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 141;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 142;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 143;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 144;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 145;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 146;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 147;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 148;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 149;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 150;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 151;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 152;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 153;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 154;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 155;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 156;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 157;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 158;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 159;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 160;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 161;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 162;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 163;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 164;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 165;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 166;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 167;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 168;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 169;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 170;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 171;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 172;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 173;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 174;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 175;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 176;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 177;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 178;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 179;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 180;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 181;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 182;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 183;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 184;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 185;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 186;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 187;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 188;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 189;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 190;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 191;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 192;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 193;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 194;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 195;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 196;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 197;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 198;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 199;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 200;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 201;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 202;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 203;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 204;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 205;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 206;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 207;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 208;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 209;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 210;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 211;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 212;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 213;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 214;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 215;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 216;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 217;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 218;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 219;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 220;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 221;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 222;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 223;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 224;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 225;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 226;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 227;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 228;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 229;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 230;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 231;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 232;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 233;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 234;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 235;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 236;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 237;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 238;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 239;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 240;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 241;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 242;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 243;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 244;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 245;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 246;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 247;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 248;4;-0.261556, 0.654903,-0.563708,-0.430027;;, + 249;4;-0.261556, 0.654903,-0.563708,-0.430027;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3; 0.000000, 0.705560, 0.000000;;, + 1;3; 0.000000, 0.705560, 0.000000;;, + 2;3; 0.000000, 0.705560, 0.000000;;, + 3;3; 0.000000, 0.705560, 0.000000;;, + 4;3; 0.000000, 0.705560, 0.000000;;, + 5;3; 0.000000, 0.705560, 0.000000;;, + 6;3; 0.000000, 0.705560, 0.000000;;, + 7;3; 0.000000, 0.705560, 0.000000;;, + 8;3; 0.000000, 0.705560, 0.000000;;, + 9;3; 0.000000, 0.705560, 0.000000;;, + 10;3; 0.000000, 0.705560, 0.000000;;, + 11;3; 0.000000, 0.705560, 0.000000;;, + 12;3; 0.000000, 0.705560, 0.000000;;, + 13;3; 0.000000, 0.705560, 0.000000;;, + 14;3; 0.000000, 0.705560, 0.000000;;, + 15;3; 0.000000, 0.705560, 0.000000;;, + 16;3; 0.000000, 0.705560, 0.000000;;, + 17;3; 0.000000, 0.705560, 0.000000;;, + 18;3; 0.000000, 0.705560, 0.000000;;, + 19;3; 0.000000, 0.705560, 0.000000;;, + 20;3; 0.000000, 0.705560, 0.000000;;, + 21;3; 0.000000, 0.705560, 0.000000;;, + 22;3; 0.000000, 0.705560, 0.000000;;, + 23;3; 0.000000, 0.705560, 0.000000;;, + 24;3; 0.000000, 0.705560, 0.000000;;, + 25;3; 0.000000, 0.705560, 0.000000;;, + 26;3; 0.000000, 0.705560, 0.000000;;, + 27;3; 0.000000, 0.705560, 0.000000;;, + 28;3; 0.000000, 0.705560, 0.000000;;, + 29;3; 0.000000, 0.705560, 0.000000;;, + 30;3; 0.000000, 0.705560, 0.000000;;, + 31;3; 0.000000, 0.705560, 0.000000;;, + 32;3; 0.000000, 0.705560, 0.000000;;, + 33;3; 0.000000, 0.705560, 0.000000;;, + 34;3; 0.000000, 0.705560, 0.000000;;, + 35;3; 0.000000, 0.705560, 0.000000;;, + 36;3; 0.000000, 0.705560, 0.000000;;, + 37;3; 0.000000, 0.705560, 0.000000;;, + 38;3; 0.000000, 0.705560, 0.000000;;, + 39;3; 0.000000, 0.705560, 0.000000;;, + 40;3; 0.000000, 0.705560, 0.000000;;, + 41;3; 0.000000, 0.705559, 0.000000;;, + 42;3;-0.000000, 0.705560, 0.000000;;, + 43;3; 0.000000, 0.705560,-0.000000;;, + 44;3; 0.000000, 0.705560, 0.000000;;, + 45;3; 0.000000, 0.705560,-0.000000;;, + 46;3; 0.000000, 0.705559, 0.000000;;, + 47;3;-0.000000, 0.705560, 0.000000;;, + 48;3; 0.000000, 0.705560,-0.000000;;, + 49;3; 0.000000, 0.705560, 0.000000;;, + 50;3;-0.000000, 0.705559, 0.000000;;, + 51;3; 0.000000, 0.705560,-0.000000;;, + 52;3;-0.000000, 0.705560, 0.000000;;, + 53;3; 0.000000, 0.705560,-0.000000;;, + 54;3; 0.000000, 0.705560, 0.000000;;, + 55;3; 0.000000, 0.705560,-0.000000;;, + 56;3;-0.000000, 0.705560, 0.000000;;, + 57;3; 0.000000, 0.705559, 0.000000;;, + 58;3;-0.000000, 0.705560, 0.000000;;, + 59;3; 0.000000, 0.705560, 0.000000;;, + 60;3; 0.000000, 0.705560,-0.000000;;, + 61;3; 0.000000, 0.705560, 0.000000;;, + 62;3; 0.000000, 0.705560, 0.000000;;, + 63;3; 0.000000, 0.705560, 0.000000;;, + 64;3; 0.000000, 0.705560,-0.000000;;, + 65;3;-0.000000, 0.705560, 0.000000;;, + 66;3; 0.000000, 0.705560, 0.000000;;, + 67;3;-0.000000, 0.705560, 0.000000;;, + 68;3; 0.000000, 0.705559, 0.000000;;, + 69;3; 0.000000, 0.705560, 0.000000;;, + 70;3; 0.000000, 0.705560, 0.000000;;, + 71;3;-0.000000, 0.705560, 0.000000;;, + 72;3;-0.000000, 0.705560, 0.000000;;, + 73;3;-0.000000, 0.705560, 0.000000;;, + 74;3;-0.000000, 0.705560, 0.000000;;, + 75;3;-0.000000, 0.705560, 0.000000;;, + 76;3; 0.000000, 0.705559, 0.000000;;, + 77;3;-0.000000, 0.705560, 0.000000;;, + 78;3; 0.000000, 0.705560, 0.000000;;, + 79;3;-0.000000, 0.705559, 0.000000;;, + 80;3; 0.000000, 0.705560, 0.000000;;, + 81;3;-0.000000, 0.705560, 0.000000;;, + 82;3; 0.000000, 0.705560, 0.000000;;, + 83;3; 0.000000, 0.705560, 0.000000;;, + 84;3; 0.000000, 0.705560,-0.000000;;, + 85;3;-0.000000, 0.705560, 0.000000;;, + 86;3;-0.000000, 0.705560, 0.000000;;, + 87;3; 0.000000, 0.705560,-0.000000;;, + 88;3; 0.000000, 0.705560, 0.000000;;, + 89;3; 0.000000, 0.705560, 0.000000;;, + 90;3; 0.000000, 0.705560, 0.000000;;, + 91;3; 0.000000, 0.705560, 0.000000;;, + 92;3; 0.000000, 0.705560, 0.000000;;, + 93;3; 0.000000, 0.705560, 0.000000;;, + 94;3; 0.000000, 0.705560, 0.000000;;, + 95;3; 0.000000, 0.705560, 0.000000;;, + 96;3; 0.000000, 0.705560,-0.000000;;, + 97;3; 0.000000, 0.705560,-0.000000;;, + 98;3; 0.000000, 0.705560, 0.000000;;, + 99;3; 0.000000, 0.705560, 0.000000;;, + 100;3;-0.000000, 0.705560,-0.000000;;, + 101;3; 0.000000, 0.705560,-0.000000;;, + 102;3; 0.000000, 0.705559, 0.000000;;, + 103;3;-0.000000, 0.705560,-0.000000;;, + 104;3;-0.000000, 0.705559,-0.000000;;, + 105;3;-0.000000, 0.705560,-0.000000;;, + 106;3; 0.000000, 0.705560, 0.000000;;, + 107;3;-0.000000, 0.705559,-0.000000;;, + 108;3; 0.000000, 0.705560,-0.000000;;, + 109;3; 0.000000, 0.705559,-0.000000;;, + 110;3;-0.000000, 0.705559, 0.000000;;, + 111;3; 0.000000, 0.705560,-0.000000;;, + 112;3; 0.000000, 0.705560, 0.000000;;, + 113;3; 0.000000, 0.705560,-0.000000;;, + 114;3;-0.000000, 0.705559, 0.000000;;, + 115;3; 0.000000, 0.705560, 0.000000;;, + 116;3;-0.000000, 0.705560,-0.000000;;, + 117;3; 0.000000, 0.705560, 0.000000;;, + 118;3; 0.000000, 0.705560,-0.000000;;, + 119;3; 0.000000, 0.705560, 0.000000;;, + 120;3; 0.000000, 0.705560,-0.000000;;, + 121;3; 0.000000, 0.705560,-0.000000;;, + 122;3;-0.000000, 0.705560,-0.000000;;, + 123;3; 0.000000, 0.705560, 0.000000;;, + 124;3; 0.000000, 0.705560, 0.000000;;, + 125;3; 0.000000, 0.705560, 0.000000;;, + 126;3;-0.000000, 0.705560, 0.000000;;, + 127;3;-0.000000, 0.705560, 0.000000;;, + 128;3;-0.000000, 0.705560,-0.000000;;, + 129;3; 0.000000, 0.705560, 0.000000;;, + 130;3; 0.000000, 0.705559, 0.000000;;, + 131;3; 0.000000, 0.705560, 0.000000;;, + 132;3; 0.000000, 0.705560, 0.000000;;, + 133;3; 0.000000, 0.705560,-0.000000;;, + 134;3; 0.000000, 0.705560, 0.000000;;, + 135;3; 0.000000, 0.705560, 0.000000;;, + 136;3;-0.000000, 0.705560,-0.000000;;, + 137;3; 0.000000, 0.705560, 0.000000;;, + 138;3;-0.000000, 0.705559, 0.000000;;, + 139;3;-0.000000, 0.705560,-0.000000;;, + 140;3; 0.000000, 0.705560, 0.000000;;, + 141;3; 0.000000, 0.705560, 0.000000;;, + 142;3; 0.000000, 0.705560, 0.000000;;, + 143;3; 0.000000, 0.705560,-0.000000;;, + 144;3; 0.000000, 0.705560, 0.000000;;, + 145;3; 0.000000, 0.705560,-0.000000;;, + 146;3; 0.000000, 0.705560, 0.000000;;, + 147;3; 0.000000, 0.705560,-0.000000;;, + 148;3; 0.000000, 0.705560, 0.000000;;, + 149;3; 0.000000, 0.705560, 0.000000;;, + 150;3; 0.000000, 0.705560, 0.000000;;, + 151;3; 0.000000, 0.705560, 0.000000;;, + 152;3; 0.000000, 0.705560, 0.000000;;, + 153;3; 0.000000, 0.705560, 0.000000;;, + 154;3; 0.000000, 0.705560, 0.000000;;, + 155;3; 0.000000, 0.705560, 0.000000;;, + 156;3; 0.000000, 0.705560, 0.000000;;, + 157;3; 0.000000, 0.705560, 0.000000;;, + 158;3; 0.000000, 0.705560, 0.000000;;, + 159;3; 0.000000, 0.705560, 0.000000;;, + 160;3; 0.000000, 0.705560, 0.000000;;, + 161;3; 0.000000, 0.705560, 0.000000;;, + 162;3; 0.000000, 0.705560, 0.000000;;, + 163;3; 0.000000, 0.705560, 0.000000;;, + 164;3; 0.000000, 0.705560, 0.000000;;, + 165;3; 0.000000, 0.705560, 0.000000;;, + 166;3; 0.000000, 0.705560, 0.000000;;, + 167;3; 0.000000, 0.705560, 0.000000;;, + 168;3; 0.000000, 0.705560, 0.000000;;, + 169;3; 0.000000, 0.705560, 0.000000;;, + 170;3; 0.000000, 0.705560, 0.000000;;, + 171;3; 0.000000, 0.705560, 0.000000;;, + 172;3; 0.000000, 0.705560, 0.000000;;, + 173;3; 0.000000, 0.705560, 0.000000;;, + 174;3; 0.000000, 0.705560, 0.000000;;, + 175;3; 0.000000, 0.705560, 0.000000;;, + 176;3; 0.000000, 0.705560, 0.000000;;, + 177;3; 0.000000, 0.705560, 0.000000;;, + 178;3; 0.000000, 0.705560, 0.000000;;, + 179;3; 0.000000, 0.705560, 0.000000;;, + 180;3; 0.000000, 0.705560, 0.000000;;, + 181;3; 0.000000, 0.705560, 0.000000;;, + 182;3; 0.000000, 0.705560, 0.000000;;, + 183;3; 0.000000, 0.705560, 0.000000;;, + 184;3; 0.000000, 0.705560, 0.000000;;, + 185;3; 0.000000, 0.705560, 0.000000;;, + 186;3; 0.000000, 0.705560, 0.000000;;, + 187;3; 0.000000, 0.705560, 0.000000;;, + 188;3; 0.000000, 0.705560, 0.000000;;, + 189;3; 0.000000, 0.705560, 0.000000;;, + 190;3; 0.000000, 0.705560, 0.000000;;, + 191;3; 0.000000, 0.705560, 0.000000;;, + 192;3; 0.000000, 0.705560, 0.000000;;, + 193;3; 0.000000, 0.705560, 0.000000;;, + 194;3; 0.000000, 0.705560, 0.000000;;, + 195;3; 0.000000, 0.705560, 0.000000;;, + 196;3; 0.000000, 0.705560, 0.000000;;, + 197;3; 0.000000, 0.705560, 0.000000;;, + 198;3; 0.000000, 0.705560, 0.000000;;, + 199;3; 0.000000, 0.705560, 0.000000;;, + 200;3; 0.000000, 0.705560, 0.000000;;, + 201;3; 0.000000, 0.705560, 0.000000;;, + 202;3; 0.000000, 0.705560, 0.000000;;, + 203;3; 0.000000, 0.705560, 0.000000;;, + 204;3; 0.000000, 0.705560, 0.000000;;, + 205;3; 0.000000, 0.705560, 0.000000;;, + 206;3; 0.000000, 0.705560, 0.000000;;, + 207;3; 0.000000, 0.705560, 0.000000;;, + 208;3; 0.000000, 0.705560, 0.000000;;, + 209;3; 0.000000, 0.705560, 0.000000;;, + 210;3; 0.000000, 0.705560, 0.000000;;, + 211;3; 0.000000, 0.705560, 0.000000;;, + 212;3; 0.000000, 0.705560, 0.000000;;, + 213;3; 0.000000, 0.705560, 0.000000;;, + 214;3; 0.000000, 0.705560, 0.000000;;, + 215;3; 0.000000, 0.705560, 0.000000;;, + 216;3; 0.000000, 0.705560, 0.000000;;, + 217;3; 0.000000, 0.705560, 0.000000;;, + 218;3; 0.000000, 0.705560, 0.000000;;, + 219;3; 0.000000, 0.705560, 0.000000;;, + 220;3; 0.000000, 0.705560, 0.000000;;, + 221;3; 0.000000, 0.705560, 0.000000;;, + 222;3; 0.000000, 0.705560, 0.000000;;, + 223;3; 0.000000, 0.705560, 0.000000;;, + 224;3; 0.000000, 0.705560, 0.000000;;, + 225;3; 0.000000, 0.705560, 0.000000;;, + 226;3; 0.000000, 0.705560, 0.000000;;, + 227;3; 0.000000, 0.705560, 0.000000;;, + 228;3; 0.000000, 0.705560, 0.000000;;, + 229;3; 0.000000, 0.705560, 0.000000;;, + 230;3; 0.000000, 0.705560, 0.000000;;, + 231;3; 0.000000, 0.705560, 0.000000;;, + 232;3; 0.000000, 0.705560, 0.000000;;, + 233;3; 0.000000, 0.705560, 0.000000;;, + 234;3; 0.000000, 0.705560, 0.000000;;, + 235;3; 0.000000, 0.705560, 0.000000;;, + 236;3; 0.000000, 0.705560, 0.000000;;, + 237;3; 0.000000, 0.705560, 0.000000;;, + 238;3; 0.000000, 0.705560, 0.000000;;, + 239;3; 0.000000, 0.705560, 0.000000;;, + 240;3; 0.000000, 0.705560, 0.000000;;, + 241;3; 0.000000, 0.705560, 0.000000;;, + 242;3; 0.000000, 0.705560, 0.000000;;, + 243;3; 0.000000, 0.705560, 0.000000;;, + 244;3; 0.000000, 0.705560, 0.000000;;, + 245;3; 0.000000, 0.705560, 0.000000;;, + 246;3; 0.000000, 0.705560, 0.000000;;, + 247;3; 0.000000, 0.705560, 0.000000;;, + 248;3; 0.000000, 0.705560, 0.000000;;, + 249;3; 0.000000, 0.705560, 0.000000;;; + } + } + Animation { + {Armature_Bone_013} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 1;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 2;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 3;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 4;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 5;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 6;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 7;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 8;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 9;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 10;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 11;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 12;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 13;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 14;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 15;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 16;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 17;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 18;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 19;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 20;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 21;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 22;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 23;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 24;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 25;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 26;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 27;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 28;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 29;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 30;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 31;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 32;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 33;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 34;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 35;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 36;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 37;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 38;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 39;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 40;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 41;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 42;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 43;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 44;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 45;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 46;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 47;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 48;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 49;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 50;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 51;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 52;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 53;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 54;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 55;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 56;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 57;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 58;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 59;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 60;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 61;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 62;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 63;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 64;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 65;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 66;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 67;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 68;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 69;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 70;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 71;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 72;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 73;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 74;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 75;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 76;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 77;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 78;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 79;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 80;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 81;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 82;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 83;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 84;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 85;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 86;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 87;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 88;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 89;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 90;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 91;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 92;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 93;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 94;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 95;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 96;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 97;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 98;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 99;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 100;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 101;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 102;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 103;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 104;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 105;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 106;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 107;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 108;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 109;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 110;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 111;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 112;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 113;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 114;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 115;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 116;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 117;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 118;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 119;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 120;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 121;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 122;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 123;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 124;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 125;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 126;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 127;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 128;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 129;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 130;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 131;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 132;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 133;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 134;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 135;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 136;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 137;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 138;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 139;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 140;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 141;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 142;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 143;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 144;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 145;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 146;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 147;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 148;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 149;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 150;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 151;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 152;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 153;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 154;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 155;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 156;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 157;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 158;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 159;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 160;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 161;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 162;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 163;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 164;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 165;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 166;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 167;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 168;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 169;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 170;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 171;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 172;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 173;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 174;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 175;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 176;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 177;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 178;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 179;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 180;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 181;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 182;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 183;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 184;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 185;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 186;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 187;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 188;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 189;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 190;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 191;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 192;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 193;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 194;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 195;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 196;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 197;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 198;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 199;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 200;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 201;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 202;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 203;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 204;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 205;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 206;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 207;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 208;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 209;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 210;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 211;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 212;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 213;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 214;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 215;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 216;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 217;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 218;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 219;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 220;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 221;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 222;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 223;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 224;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 225;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 226;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 227;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 228;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 229;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 230;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 231;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 232;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 233;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 234;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 235;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 236;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 237;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 238;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 239;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 240;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 241;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 242;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 243;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 244;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 245;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 246;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 247;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 248;4;-0.516917, 0.413523,-0.319374,-0.678083;;, + 249;4;-0.516917, 0.413523,-0.319374,-0.678083;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3; 0.000000, 0.705560, 0.000000;;, + 1;3; 0.000000, 0.705560, 0.000000;;, + 2;3; 0.000000, 0.705560, 0.000000;;, + 3;3; 0.000000, 0.705560, 0.000000;;, + 4;3; 0.000000, 0.705560, 0.000000;;, + 5;3; 0.000000, 0.705560, 0.000000;;, + 6;3; 0.000000, 0.705560, 0.000000;;, + 7;3; 0.000000, 0.705560, 0.000000;;, + 8;3; 0.000000, 0.705560, 0.000000;;, + 9;3; 0.000000, 0.705560, 0.000000;;, + 10;3; 0.000000, 0.705560, 0.000000;;, + 11;3; 0.000000, 0.705560, 0.000000;;, + 12;3; 0.000000, 0.705560, 0.000000;;, + 13;3; 0.000000, 0.705560, 0.000000;;, + 14;3; 0.000000, 0.705560, 0.000000;;, + 15;3; 0.000000, 0.705560, 0.000000;;, + 16;3; 0.000000, 0.705560, 0.000000;;, + 17;3; 0.000000, 0.705560, 0.000000;;, + 18;3; 0.000000, 0.705560, 0.000000;;, + 19;3; 0.000000, 0.705560, 0.000000;;, + 20;3; 0.000000, 0.705560, 0.000000;;, + 21;3; 0.000000, 0.705560, 0.000000;;, + 22;3; 0.000000, 0.705560, 0.000000;;, + 23;3; 0.000000, 0.705560, 0.000000;;, + 24;3; 0.000000, 0.705560, 0.000000;;, + 25;3; 0.000000, 0.705560, 0.000000;;, + 26;3; 0.000000, 0.705560, 0.000000;;, + 27;3; 0.000000, 0.705560, 0.000000;;, + 28;3; 0.000000, 0.705560, 0.000000;;, + 29;3; 0.000000, 0.705560, 0.000000;;, + 30;3; 0.000000, 0.705560, 0.000000;;, + 31;3; 0.000000, 0.705560, 0.000000;;, + 32;3; 0.000000, 0.705560, 0.000000;;, + 33;3; 0.000000, 0.705560, 0.000000;;, + 34;3; 0.000000, 0.705560, 0.000000;;, + 35;3; 0.000000, 0.705560, 0.000000;;, + 36;3; 0.000000, 0.705560, 0.000000;;, + 37;3; 0.000000, 0.705560, 0.000000;;, + 38;3; 0.000000, 0.705560, 0.000000;;, + 39;3; 0.000000, 0.705560, 0.000000;;, + 40;3; 0.000000, 0.705560, 0.000000;;, + 41;3; 0.000000, 0.705559, 0.000000;;, + 42;3;-0.000000, 0.705560, 0.000000;;, + 43;3; 0.000000, 0.705560,-0.000000;;, + 44;3; 0.000000, 0.705560, 0.000000;;, + 45;3; 0.000000, 0.705560,-0.000000;;, + 46;3; 0.000000, 0.705559, 0.000000;;, + 47;3;-0.000000, 0.705560, 0.000000;;, + 48;3; 0.000000, 0.705560,-0.000000;;, + 49;3; 0.000000, 0.705560, 0.000000;;, + 50;3;-0.000000, 0.705559, 0.000000;;, + 51;3; 0.000000, 0.705560,-0.000000;;, + 52;3;-0.000000, 0.705560, 0.000000;;, + 53;3; 0.000000, 0.705560,-0.000000;;, + 54;3; 0.000000, 0.705560, 0.000000;;, + 55;3; 0.000000, 0.705560,-0.000000;;, + 56;3;-0.000000, 0.705560, 0.000000;;, + 57;3; 0.000000, 0.705559, 0.000000;;, + 58;3;-0.000000, 0.705560, 0.000000;;, + 59;3; 0.000000, 0.705560, 0.000000;;, + 60;3; 0.000000, 0.705560,-0.000000;;, + 61;3; 0.000000, 0.705560, 0.000000;;, + 62;3; 0.000000, 0.705560, 0.000000;;, + 63;3; 0.000000, 0.705560, 0.000000;;, + 64;3; 0.000000, 0.705560,-0.000000;;, + 65;3;-0.000000, 0.705560, 0.000000;;, + 66;3; 0.000000, 0.705560, 0.000000;;, + 67;3;-0.000000, 0.705560, 0.000000;;, + 68;3; 0.000000, 0.705559, 0.000000;;, + 69;3; 0.000000, 0.705560, 0.000000;;, + 70;3; 0.000000, 0.705560, 0.000000;;, + 71;3;-0.000000, 0.705560, 0.000000;;, + 72;3;-0.000000, 0.705560, 0.000000;;, + 73;3;-0.000000, 0.705560, 0.000000;;, + 74;3;-0.000000, 0.705560, 0.000000;;, + 75;3;-0.000000, 0.705560, 0.000000;;, + 76;3; 0.000000, 0.705559, 0.000000;;, + 77;3;-0.000000, 0.705560, 0.000000;;, + 78;3; 0.000000, 0.705560, 0.000000;;, + 79;3;-0.000000, 0.705559, 0.000000;;, + 80;3; 0.000000, 0.705560, 0.000000;;, + 81;3;-0.000000, 0.705560, 0.000000;;, + 82;3; 0.000000, 0.705560, 0.000000;;, + 83;3; 0.000000, 0.705560, 0.000000;;, + 84;3; 0.000000, 0.705560,-0.000000;;, + 85;3;-0.000000, 0.705560, 0.000000;;, + 86;3;-0.000000, 0.705560, 0.000000;;, + 87;3; 0.000000, 0.705560,-0.000000;;, + 88;3; 0.000000, 0.705560, 0.000000;;, + 89;3; 0.000000, 0.705560, 0.000000;;, + 90;3; 0.000000, 0.705560, 0.000000;;, + 91;3; 0.000000, 0.705560, 0.000000;;, + 92;3; 0.000000, 0.705560, 0.000000;;, + 93;3; 0.000000, 0.705560, 0.000000;;, + 94;3; 0.000000, 0.705560, 0.000000;;, + 95;3; 0.000000, 0.705560, 0.000000;;, + 96;3; 0.000000, 0.705560,-0.000000;;, + 97;3; 0.000000, 0.705560,-0.000000;;, + 98;3; 0.000000, 0.705560, 0.000000;;, + 99;3; 0.000000, 0.705560, 0.000000;;, + 100;3;-0.000000, 0.705560,-0.000000;;, + 101;3; 0.000000, 0.705560,-0.000000;;, + 102;3; 0.000000, 0.705559, 0.000000;;, + 103;3;-0.000000, 0.705560,-0.000000;;, + 104;3;-0.000000, 0.705559,-0.000000;;, + 105;3;-0.000000, 0.705560,-0.000000;;, + 106;3; 0.000000, 0.705560, 0.000000;;, + 107;3;-0.000000, 0.705559,-0.000000;;, + 108;3; 0.000000, 0.705560,-0.000000;;, + 109;3; 0.000000, 0.705559,-0.000000;;, + 110;3;-0.000000, 0.705559, 0.000000;;, + 111;3; 0.000000, 0.705560,-0.000000;;, + 112;3; 0.000000, 0.705560, 0.000000;;, + 113;3; 0.000000, 0.705560,-0.000000;;, + 114;3;-0.000000, 0.705559, 0.000000;;, + 115;3; 0.000000, 0.705560, 0.000000;;, + 116;3;-0.000000, 0.705560,-0.000000;;, + 117;3; 0.000000, 0.705560, 0.000000;;, + 118;3; 0.000000, 0.705560,-0.000000;;, + 119;3; 0.000000, 0.705560, 0.000000;;, + 120;3; 0.000000, 0.705560,-0.000000;;, + 121;3; 0.000000, 0.705560,-0.000000;;, + 122;3;-0.000000, 0.705560,-0.000000;;, + 123;3; 0.000000, 0.705560, 0.000000;;, + 124;3; 0.000000, 0.705560, 0.000000;;, + 125;3; 0.000000, 0.705560, 0.000000;;, + 126;3;-0.000000, 0.705560, 0.000000;;, + 127;3;-0.000000, 0.705560, 0.000000;;, + 128;3;-0.000000, 0.705560,-0.000000;;, + 129;3; 0.000000, 0.705560, 0.000000;;, + 130;3; 0.000000, 0.705559, 0.000000;;, + 131;3; 0.000000, 0.705560, 0.000000;;, + 132;3; 0.000000, 0.705560, 0.000000;;, + 133;3; 0.000000, 0.705560,-0.000000;;, + 134;3; 0.000000, 0.705560, 0.000000;;, + 135;3; 0.000000, 0.705560, 0.000000;;, + 136;3;-0.000000, 0.705560,-0.000000;;, + 137;3; 0.000000, 0.705560, 0.000000;;, + 138;3;-0.000000, 0.705559, 0.000000;;, + 139;3;-0.000000, 0.705560,-0.000000;;, + 140;3; 0.000000, 0.705560, 0.000000;;, + 141;3; 0.000000, 0.705560, 0.000000;;, + 142;3; 0.000000, 0.705560, 0.000000;;, + 143;3; 0.000000, 0.705560,-0.000000;;, + 144;3; 0.000000, 0.705560, 0.000000;;, + 145;3; 0.000000, 0.705560,-0.000000;;, + 146;3; 0.000000, 0.705560, 0.000000;;, + 147;3; 0.000000, 0.705560,-0.000000;;, + 148;3; 0.000000, 0.705560, 0.000000;;, + 149;3; 0.000000, 0.705560, 0.000000;;, + 150;3; 0.000000, 0.705560, 0.000000;;, + 151;3; 0.000000, 0.705560, 0.000000;;, + 152;3; 0.000000, 0.705560, 0.000000;;, + 153;3; 0.000000, 0.705560, 0.000000;;, + 154;3; 0.000000, 0.705560, 0.000000;;, + 155;3; 0.000000, 0.705560, 0.000000;;, + 156;3; 0.000000, 0.705560, 0.000000;;, + 157;3; 0.000000, 0.705560, 0.000000;;, + 158;3; 0.000000, 0.705560, 0.000000;;, + 159;3; 0.000000, 0.705560, 0.000000;;, + 160;3; 0.000000, 0.705560, 0.000000;;, + 161;3; 0.000000, 0.705560, 0.000000;;, + 162;3; 0.000000, 0.705560, 0.000000;;, + 163;3; 0.000000, 0.705560, 0.000000;;, + 164;3; 0.000000, 0.705560, 0.000000;;, + 165;3; 0.000000, 0.705560, 0.000000;;, + 166;3; 0.000000, 0.705560, 0.000000;;, + 167;3; 0.000000, 0.705560, 0.000000;;, + 168;3; 0.000000, 0.705560, 0.000000;;, + 169;3; 0.000000, 0.705560, 0.000000;;, + 170;3; 0.000000, 0.705560, 0.000000;;, + 171;3; 0.000000, 0.705560, 0.000000;;, + 172;3; 0.000000, 0.705560, 0.000000;;, + 173;3; 0.000000, 0.705560, 0.000000;;, + 174;3; 0.000000, 0.705560, 0.000000;;, + 175;3; 0.000000, 0.705560, 0.000000;;, + 176;3; 0.000000, 0.705560, 0.000000;;, + 177;3; 0.000000, 0.705560, 0.000000;;, + 178;3; 0.000000, 0.705560, 0.000000;;, + 179;3; 0.000000, 0.705560, 0.000000;;, + 180;3; 0.000000, 0.705560, 0.000000;;, + 181;3; 0.000000, 0.705560, 0.000000;;, + 182;3; 0.000000, 0.705560, 0.000000;;, + 183;3; 0.000000, 0.705560, 0.000000;;, + 184;3; 0.000000, 0.705560, 0.000000;;, + 185;3; 0.000000, 0.705560, 0.000000;;, + 186;3; 0.000000, 0.705560, 0.000000;;, + 187;3; 0.000000, 0.705560, 0.000000;;, + 188;3; 0.000000, 0.705560, 0.000000;;, + 189;3; 0.000000, 0.705560, 0.000000;;, + 190;3; 0.000000, 0.705560, 0.000000;;, + 191;3; 0.000000, 0.705560, 0.000000;;, + 192;3; 0.000000, 0.705560, 0.000000;;, + 193;3; 0.000000, 0.705560, 0.000000;;, + 194;3; 0.000000, 0.705560, 0.000000;;, + 195;3; 0.000000, 0.705560, 0.000000;;, + 196;3; 0.000000, 0.705560, 0.000000;;, + 197;3; 0.000000, 0.705560, 0.000000;;, + 198;3; 0.000000, 0.705560, 0.000000;;, + 199;3; 0.000000, 0.705560, 0.000000;;, + 200;3; 0.000000, 0.705560, 0.000000;;, + 201;3; 0.000000, 0.705560, 0.000000;;, + 202;3; 0.000000, 0.705560, 0.000000;;, + 203;3; 0.000000, 0.705560, 0.000000;;, + 204;3; 0.000000, 0.705560, 0.000000;;, + 205;3; 0.000000, 0.705560, 0.000000;;, + 206;3; 0.000000, 0.705560, 0.000000;;, + 207;3; 0.000000, 0.705560, 0.000000;;, + 208;3; 0.000000, 0.705560, 0.000000;;, + 209;3; 0.000000, 0.705560, 0.000000;;, + 210;3; 0.000000, 0.705560, 0.000000;;, + 211;3; 0.000000, 0.705560, 0.000000;;, + 212;3; 0.000000, 0.705560, 0.000000;;, + 213;3; 0.000000, 0.705560, 0.000000;;, + 214;3; 0.000000, 0.705560, 0.000000;;, + 215;3; 0.000000, 0.705560, 0.000000;;, + 216;3; 0.000000, 0.705560, 0.000000;;, + 217;3; 0.000000, 0.705560, 0.000000;;, + 218;3; 0.000000, 0.705560, 0.000000;;, + 219;3; 0.000000, 0.705560, 0.000000;;, + 220;3; 0.000000, 0.705560, 0.000000;;, + 221;3; 0.000000, 0.705560, 0.000000;;, + 222;3; 0.000000, 0.705560, 0.000000;;, + 223;3; 0.000000, 0.705560, 0.000000;;, + 224;3; 0.000000, 0.705560, 0.000000;;, + 225;3; 0.000000, 0.705560, 0.000000;;, + 226;3; 0.000000, 0.705560, 0.000000;;, + 227;3; 0.000000, 0.705560, 0.000000;;, + 228;3; 0.000000, 0.705560, 0.000000;;, + 229;3; 0.000000, 0.705560, 0.000000;;, + 230;3; 0.000000, 0.705560, 0.000000;;, + 231;3; 0.000000, 0.705560, 0.000000;;, + 232;3; 0.000000, 0.705560, 0.000000;;, + 233;3; 0.000000, 0.705560, 0.000000;;, + 234;3; 0.000000, 0.705560, 0.000000;;, + 235;3; 0.000000, 0.705560, 0.000000;;, + 236;3; 0.000000, 0.705560, 0.000000;;, + 237;3; 0.000000, 0.705560, 0.000000;;, + 238;3; 0.000000, 0.705560, 0.000000;;, + 239;3; 0.000000, 0.705560, 0.000000;;, + 240;3; 0.000000, 0.705560, 0.000000;;, + 241;3; 0.000000, 0.705560, 0.000000;;, + 242;3; 0.000000, 0.705560, 0.000000;;, + 243;3; 0.000000, 0.705560, 0.000000;;, + 244;3; 0.000000, 0.705560, 0.000000;;, + 245;3; 0.000000, 0.705560, 0.000000;;, + 246;3; 0.000000, 0.705560, 0.000000;;, + 247;3; 0.000000, 0.705560, 0.000000;;, + 248;3; 0.000000, 0.705560, 0.000000;;, + 249;3; 0.000000, 0.705560, 0.000000;;; + } + } + Animation { + {Cube} + AnimationKey { // Rotation + 0; + 250; + 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;;, + 189;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 190;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 191;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 192;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 193;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 194;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 195;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 196;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 197;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 198;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 199;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 200;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 201;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 202;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 203;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 204;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 205;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 206;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 207;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 208;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 209;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 210;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 211;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 212;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 213;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 214;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 215;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 216;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 217;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 218;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 219;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 220;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 221;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 222;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 223;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 224;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 225;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 226;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 227;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 228;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 229;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 230;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 231;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 232;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 233;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 234;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 235;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 236;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 237;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 238;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 239;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 240;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 241;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 242;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 243;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 244;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 245;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 246;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 247;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 248;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 249;4;-1.000000, 0.000000, 0.000000, 0.000000;;; + } + AnimationKey { // Scale + 1; + 250; + 0;3; 0.594084, 1.000000, 0.474968;;, + 1;3; 0.594084, 1.000000, 0.474968;;, + 2;3; 0.594084, 1.000000, 0.474968;;, + 3;3; 0.594084, 1.000000, 0.474968;;, + 4;3; 0.594084, 1.000000, 0.474968;;, + 5;3; 0.594084, 1.000000, 0.474968;;, + 6;3; 0.594084, 1.000000, 0.474968;;, + 7;3; 0.594084, 1.000000, 0.474968;;, + 8;3; 0.594084, 1.000000, 0.474968;;, + 9;3; 0.594084, 1.000000, 0.474968;;, + 10;3; 0.594084, 1.000000, 0.474968;;, + 11;3; 0.594084, 1.000000, 0.474968;;, + 12;3; 0.594084, 1.000000, 0.474968;;, + 13;3; 0.594084, 1.000000, 0.474968;;, + 14;3; 0.594084, 1.000000, 0.474968;;, + 15;3; 0.594084, 1.000000, 0.474968;;, + 16;3; 0.594084, 1.000000, 0.474968;;, + 17;3; 0.594084, 1.000000, 0.474968;;, + 18;3; 0.594084, 1.000000, 0.474968;;, + 19;3; 0.594084, 1.000000, 0.474968;;, + 20;3; 0.594084, 1.000000, 0.474968;;, + 21;3; 0.594084, 1.000000, 0.474968;;, + 22;3; 0.594084, 1.000000, 0.474968;;, + 23;3; 0.594084, 1.000000, 0.474968;;, + 24;3; 0.594084, 1.000000, 0.474968;;, + 25;3; 0.594084, 1.000000, 0.474968;;, + 26;3; 0.594084, 1.000000, 0.474968;;, + 27;3; 0.594084, 1.000000, 0.474968;;, + 28;3; 0.594084, 1.000000, 0.474968;;, + 29;3; 0.594084, 1.000000, 0.474968;;, + 30;3; 0.594084, 1.000000, 0.474968;;, + 31;3; 0.594084, 1.000000, 0.474968;;, + 32;3; 0.594084, 1.000000, 0.474968;;, + 33;3; 0.594084, 1.000000, 0.474968;;, + 34;3; 0.594084, 1.000000, 0.474968;;, + 35;3; 0.594084, 1.000000, 0.474968;;, + 36;3; 0.594084, 1.000000, 0.474968;;, + 37;3; 0.594084, 1.000000, 0.474968;;, + 38;3; 0.594084, 1.000000, 0.474968;;, + 39;3; 0.594084, 1.000000, 0.474968;;, + 40;3; 0.594084, 1.000000, 0.474968;;, + 41;3; 0.594084, 1.000000, 0.474968;;, + 42;3; 0.594084, 1.000000, 0.474968;;, + 43;3; 0.594084, 1.000000, 0.474968;;, + 44;3; 0.594084, 1.000000, 0.474968;;, + 45;3; 0.594084, 1.000000, 0.474968;;, + 46;3; 0.594084, 1.000000, 0.474968;;, + 47;3; 0.594084, 1.000000, 0.474968;;, + 48;3; 0.594084, 1.000000, 0.474968;;, + 49;3; 0.594084, 1.000000, 0.474968;;, + 50;3; 0.594084, 1.000000, 0.474968;;, + 51;3; 0.594084, 1.000000, 0.474968;;, + 52;3; 0.594084, 1.000000, 0.474968;;, + 53;3; 0.594084, 1.000000, 0.474968;;, + 54;3; 0.594084, 1.000000, 0.474968;;, + 55;3; 0.594084, 1.000000, 0.474968;;, + 56;3; 0.594084, 1.000000, 0.474968;;, + 57;3; 0.594084, 1.000000, 0.474968;;, + 58;3; 0.594084, 1.000000, 0.474968;;, + 59;3; 0.594084, 1.000000, 0.474968;;, + 60;3; 0.594084, 1.000000, 0.474968;;, + 61;3; 0.594084, 1.000000, 0.474968;;, + 62;3; 0.594084, 1.000000, 0.474968;;, + 63;3; 0.594084, 1.000000, 0.474968;;, + 64;3; 0.594084, 1.000000, 0.474968;;, + 65;3; 0.594084, 1.000000, 0.474968;;, + 66;3; 0.594084, 1.000000, 0.474968;;, + 67;3; 0.594084, 1.000000, 0.474968;;, + 68;3; 0.594084, 1.000000, 0.474968;;, + 69;3; 0.594084, 1.000000, 0.474968;;, + 70;3; 0.594084, 1.000000, 0.474968;;, + 71;3; 0.594084, 1.000000, 0.474968;;, + 72;3; 0.594084, 1.000000, 0.474968;;, + 73;3; 0.594084, 1.000000, 0.474968;;, + 74;3; 0.594084, 1.000000, 0.474968;;, + 75;3; 0.594084, 1.000000, 0.474968;;, + 76;3; 0.594084, 1.000000, 0.474968;;, + 77;3; 0.594084, 1.000000, 0.474968;;, + 78;3; 0.594084, 1.000000, 0.474968;;, + 79;3; 0.594084, 1.000000, 0.474968;;, + 80;3; 0.594084, 1.000000, 0.474968;;, + 81;3; 0.594084, 1.000000, 0.474968;;, + 82;3; 0.594084, 1.000000, 0.474968;;, + 83;3; 0.594084, 1.000000, 0.474968;;, + 84;3; 0.594084, 1.000000, 0.474968;;, + 85;3; 0.594084, 1.000000, 0.474968;;, + 86;3; 0.594084, 1.000000, 0.474968;;, + 87;3; 0.594084, 1.000000, 0.474968;;, + 88;3; 0.594084, 1.000000, 0.474968;;, + 89;3; 0.594084, 1.000000, 0.474968;;, + 90;3; 0.594084, 1.000000, 0.474968;;, + 91;3; 0.594084, 1.000000, 0.474968;;, + 92;3; 0.594084, 1.000000, 0.474968;;, + 93;3; 0.594084, 1.000000, 0.474968;;, + 94;3; 0.594084, 1.000000, 0.474968;;, + 95;3; 0.594084, 1.000000, 0.474968;;, + 96;3; 0.594084, 1.000000, 0.474968;;, + 97;3; 0.594084, 1.000000, 0.474968;;, + 98;3; 0.594084, 1.000000, 0.474968;;, + 99;3; 0.594084, 1.000000, 0.474968;;, + 100;3; 0.594084, 1.000000, 0.474968;;, + 101;3; 0.594084, 1.000000, 0.474968;;, + 102;3; 0.594084, 1.000000, 0.474968;;, + 103;3; 0.594084, 1.000000, 0.474968;;, + 104;3; 0.594084, 1.000000, 0.474968;;, + 105;3; 0.594084, 1.000000, 0.474968;;, + 106;3; 0.594084, 1.000000, 0.474968;;, + 107;3; 0.594084, 1.000000, 0.474968;;, + 108;3; 0.594084, 1.000000, 0.474968;;, + 109;3; 0.594084, 1.000000, 0.474968;;, + 110;3; 0.594084, 1.000000, 0.474968;;, + 111;3; 0.594084, 1.000000, 0.474968;;, + 112;3; 0.594084, 1.000000, 0.474968;;, + 113;3; 0.594084, 1.000000, 0.474968;;, + 114;3; 0.594084, 1.000000, 0.474968;;, + 115;3; 0.594084, 1.000000, 0.474968;;, + 116;3; 0.594084, 1.000000, 0.474968;;, + 117;3; 0.594084, 1.000000, 0.474968;;, + 118;3; 0.594084, 1.000000, 0.474968;;, + 119;3; 0.594084, 1.000000, 0.474968;;, + 120;3; 0.594084, 1.000000, 0.474968;;, + 121;3; 0.594084, 1.000000, 0.474968;;, + 122;3; 0.594084, 1.000000, 0.474968;;, + 123;3; 0.594084, 1.000000, 0.474968;;, + 124;3; 0.594084, 1.000000, 0.474968;;, + 125;3; 0.594084, 1.000000, 0.474968;;, + 126;3; 0.594084, 1.000000, 0.474968;;, + 127;3; 0.594084, 1.000000, 0.474968;;, + 128;3; 0.594084, 1.000000, 0.474968;;, + 129;3; 0.594084, 1.000000, 0.474968;;, + 130;3; 0.594084, 1.000000, 0.474968;;, + 131;3; 0.594084, 1.000000, 0.474968;;, + 132;3; 0.594084, 1.000000, 0.474968;;, + 133;3; 0.594084, 1.000000, 0.474968;;, + 134;3; 0.594084, 1.000000, 0.474968;;, + 135;3; 0.594084, 1.000000, 0.474968;;, + 136;3; 0.594084, 1.000000, 0.474968;;, + 137;3; 0.594084, 1.000000, 0.474968;;, + 138;3; 0.594084, 1.000000, 0.474968;;, + 139;3; 0.594084, 1.000000, 0.474968;;, + 140;3; 0.594084, 1.000000, 0.474968;;, + 141;3; 0.594084, 1.000000, 0.474968;;, + 142;3; 0.594084, 1.000000, 0.474968;;, + 143;3; 0.594084, 1.000000, 0.474968;;, + 144;3; 0.594084, 1.000000, 0.474968;;, + 145;3; 0.594084, 1.000000, 0.474968;;, + 146;3; 0.594084, 1.000000, 0.474968;;, + 147;3; 0.594084, 1.000000, 0.474968;;, + 148;3; 0.594084, 1.000000, 0.474968;;, + 149;3; 0.594084, 1.000000, 0.474968;;, + 150;3; 0.594084, 1.000000, 0.474968;;, + 151;3; 0.594084, 1.000000, 0.474968;;, + 152;3; 0.594084, 1.000000, 0.474968;;, + 153;3; 0.594084, 1.000000, 0.474968;;, + 154;3; 0.594084, 1.000000, 0.474968;;, + 155;3; 0.594084, 1.000000, 0.474968;;, + 156;3; 0.594084, 1.000000, 0.474968;;, + 157;3; 0.594084, 1.000000, 0.474968;;, + 158;3; 0.594084, 1.000000, 0.474968;;, + 159;3; 0.594084, 1.000000, 0.474968;;, + 160;3; 0.594084, 1.000000, 0.474968;;, + 161;3; 0.594084, 1.000000, 0.474968;;, + 162;3; 0.594084, 1.000000, 0.474968;;, + 163;3; 0.594084, 1.000000, 0.474968;;, + 164;3; 0.594084, 1.000000, 0.474968;;, + 165;3; 0.594084, 1.000000, 0.474968;;, + 166;3; 0.594084, 1.000000, 0.474968;;, + 167;3; 0.594084, 1.000000, 0.474968;;, + 168;3; 0.594084, 1.000000, 0.474968;;, + 169;3; 0.594084, 1.000000, 0.474968;;, + 170;3; 0.594084, 1.000000, 0.474968;;, + 171;3; 0.594084, 1.000000, 0.474968;;, + 172;3; 0.594084, 1.000000, 0.474968;;, + 173;3; 0.594084, 1.000000, 0.474968;;, + 174;3; 0.594084, 1.000000, 0.474968;;, + 175;3; 0.594084, 1.000000, 0.474968;;, + 176;3; 0.594084, 1.000000, 0.474968;;, + 177;3; 0.594084, 1.000000, 0.474968;;, + 178;3; 0.594084, 1.000000, 0.474968;;, + 179;3; 0.594084, 1.000000, 0.474968;;, + 180;3; 0.594084, 1.000000, 0.474968;;, + 181;3; 0.594084, 1.000000, 0.474968;;, + 182;3; 0.594084, 1.000000, 0.474968;;, + 183;3; 0.594084, 1.000000, 0.474968;;, + 184;3; 0.594084, 1.000000, 0.474968;;, + 185;3; 0.594084, 1.000000, 0.474968;;, + 186;3; 0.594084, 1.000000, 0.474968;;, + 187;3; 0.594084, 1.000000, 0.474968;;, + 188;3; 0.594084, 1.000000, 0.474968;;, + 189;3; 0.594084, 1.000000, 0.474968;;, + 190;3; 0.594084, 1.000000, 0.474968;;, + 191;3; 0.594084, 1.000000, 0.474968;;, + 192;3; 0.594084, 1.000000, 0.474968;;, + 193;3; 0.594084, 1.000000, 0.474968;;, + 194;3; 0.594084, 1.000000, 0.474968;;, + 195;3; 0.594084, 1.000000, 0.474968;;, + 196;3; 0.594084, 1.000000, 0.474968;;, + 197;3; 0.594084, 1.000000, 0.474968;;, + 198;3; 0.594084, 1.000000, 0.474968;;, + 199;3; 0.594084, 1.000000, 0.474968;;, + 200;3; 0.594084, 1.000000, 0.474968;;, + 201;3; 0.594084, 1.000000, 0.474968;;, + 202;3; 0.594084, 1.000000, 0.474968;;, + 203;3; 0.594084, 1.000000, 0.474968;;, + 204;3; 0.594084, 1.000000, 0.474968;;, + 205;3; 0.594084, 1.000000, 0.474968;;, + 206;3; 0.594084, 1.000000, 0.474968;;, + 207;3; 0.594084, 1.000000, 0.474968;;, + 208;3; 0.594084, 1.000000, 0.474968;;, + 209;3; 0.594084, 1.000000, 0.474968;;, + 210;3; 0.594084, 1.000000, 0.474968;;, + 211;3; 0.594084, 1.000000, 0.474968;;, + 212;3; 0.594084, 1.000000, 0.474968;;, + 213;3; 0.594084, 1.000000, 0.474968;;, + 214;3; 0.594084, 1.000000, 0.474968;;, + 215;3; 0.594084, 1.000000, 0.474968;;, + 216;3; 0.594084, 1.000000, 0.474968;;, + 217;3; 0.594084, 1.000000, 0.474968;;, + 218;3; 0.594084, 1.000000, 0.474968;;, + 219;3; 0.594084, 1.000000, 0.474968;;, + 220;3; 0.594084, 1.000000, 0.474968;;, + 221;3; 0.594084, 1.000000, 0.474968;;, + 222;3; 0.594084, 1.000000, 0.474968;;, + 223;3; 0.594084, 1.000000, 0.474968;;, + 224;3; 0.594084, 1.000000, 0.474968;;, + 225;3; 0.594084, 1.000000, 0.474968;;, + 226;3; 0.594084, 1.000000, 0.474968;;, + 227;3; 0.594084, 1.000000, 0.474968;;, + 228;3; 0.594084, 1.000000, 0.474968;;, + 229;3; 0.594084, 1.000000, 0.474968;;, + 230;3; 0.594084, 1.000000, 0.474968;;, + 231;3; 0.594084, 1.000000, 0.474968;;, + 232;3; 0.594084, 1.000000, 0.474968;;, + 233;3; 0.594084, 1.000000, 0.474968;;, + 234;3; 0.594084, 1.000000, 0.474968;;, + 235;3; 0.594084, 1.000000, 0.474968;;, + 236;3; 0.594084, 1.000000, 0.474968;;, + 237;3; 0.594084, 1.000000, 0.474968;;, + 238;3; 0.594084, 1.000000, 0.474968;;, + 239;3; 0.594084, 1.000000, 0.474968;;, + 240;3; 0.594084, 1.000000, 0.474968;;, + 241;3; 0.594084, 1.000000, 0.474968;;, + 242;3; 0.594084, 1.000000, 0.474968;;, + 243;3; 0.594084, 1.000000, 0.474968;;, + 244;3; 0.594084, 1.000000, 0.474968;;, + 245;3; 0.594084, 1.000000, 0.474968;;, + 246;3; 0.594084, 1.000000, 0.474968;;, + 247;3; 0.594084, 1.000000, 0.474968;;, + 248;3; 0.594084, 1.000000, 0.474968;;, + 249;3; 0.594084, 1.000000, 0.474968;;; + } + AnimationKey { // Position + 2; + 250; + 0;3;-0.790636,-0.072915,-0.120927;;, + 1;3;-0.790636,-0.072915,-0.120927;;, + 2;3;-0.790636,-0.072915,-0.120927;;, + 3;3;-0.790636,-0.072915,-0.120927;;, + 4;3;-0.790636,-0.072915,-0.120927;;, + 5;3;-0.790636,-0.072915,-0.120927;;, + 6;3;-0.790636,-0.072915,-0.120927;;, + 7;3;-0.790636,-0.072915,-0.120927;;, + 8;3;-0.790636,-0.072915,-0.120927;;, + 9;3;-0.790636,-0.072915,-0.120927;;, + 10;3;-0.790636,-0.072915,-0.120927;;, + 11;3;-0.790636,-0.072915,-0.120927;;, + 12;3;-0.790636,-0.072915,-0.120927;;, + 13;3;-0.790636,-0.072915,-0.120927;;, + 14;3;-0.790636,-0.072915,-0.120927;;, + 15;3;-0.790636,-0.072915,-0.120927;;, + 16;3;-0.790636,-0.072915,-0.120927;;, + 17;3;-0.790636,-0.072915,-0.120927;;, + 18;3;-0.790636,-0.072915,-0.120927;;, + 19;3;-0.790636,-0.072915,-0.120927;;, + 20;3;-0.790636,-0.072915,-0.120927;;, + 21;3;-0.790636,-0.072915,-0.120927;;, + 22;3;-0.790636,-0.072915,-0.120927;;, + 23;3;-0.790636,-0.072915,-0.120927;;, + 24;3;-0.790636,-0.072915,-0.120927;;, + 25;3;-0.790636,-0.072915,-0.120927;;, + 26;3;-0.790636,-0.072915,-0.120927;;, + 27;3;-0.790636,-0.072915,-0.120927;;, + 28;3;-0.790636,-0.072915,-0.120927;;, + 29;3;-0.790636,-0.072915,-0.120927;;, + 30;3;-0.790636,-0.072915,-0.120927;;, + 31;3;-0.790636,-0.072915,-0.120927;;, + 32;3;-0.790636,-0.072915,-0.120927;;, + 33;3;-0.790636,-0.072915,-0.120927;;, + 34;3;-0.790636,-0.072915,-0.120927;;, + 35;3;-0.790636,-0.072915,-0.120927;;, + 36;3;-0.790636,-0.072915,-0.120927;;, + 37;3;-0.790636,-0.072915,-0.120927;;, + 38;3;-0.790636,-0.072915,-0.120927;;, + 39;3;-0.790636,-0.072915,-0.120927;;, + 40;3;-0.790636,-0.072915,-0.120927;;, + 41;3;-0.790636,-0.072915,-0.120927;;, + 42;3;-0.790636,-0.072915,-0.120927;;, + 43;3;-0.790636,-0.072915,-0.120927;;, + 44;3;-0.790636,-0.072915,-0.120927;;, + 45;3;-0.790636,-0.072915,-0.120927;;, + 46;3;-0.790636,-0.072915,-0.120927;;, + 47;3;-0.790636,-0.072915,-0.120927;;, + 48;3;-0.790636,-0.072915,-0.120927;;, + 49;3;-0.790636,-0.072915,-0.120927;;, + 50;3;-0.790636,-0.072915,-0.120927;;, + 51;3;-0.790636,-0.072915,-0.120927;;, + 52;3;-0.790636,-0.072915,-0.120927;;, + 53;3;-0.790636,-0.072915,-0.120927;;, + 54;3;-0.790636,-0.072915,-0.120927;;, + 55;3;-0.790636,-0.072915,-0.120927;;, + 56;3;-0.790636,-0.072915,-0.120927;;, + 57;3;-0.790636,-0.072915,-0.120927;;, + 58;3;-0.790636,-0.072915,-0.120927;;, + 59;3;-0.790636,-0.072915,-0.120927;;, + 60;3;-0.790636,-0.072915,-0.120927;;, + 61;3;-0.790636,-0.072915,-0.120927;;, + 62;3;-0.790636,-0.072915,-0.120927;;, + 63;3;-0.790636,-0.072915,-0.120927;;, + 64;3;-0.790636,-0.072915,-0.120927;;, + 65;3;-0.790636,-0.072915,-0.120927;;, + 66;3;-0.790636,-0.072915,-0.120927;;, + 67;3;-0.790636,-0.072915,-0.120927;;, + 68;3;-0.790636,-0.072915,-0.120927;;, + 69;3;-0.790636,-0.072915,-0.120927;;, + 70;3;-0.790636,-0.072915,-0.120927;;, + 71;3;-0.790636,-0.072915,-0.120927;;, + 72;3;-0.790636,-0.072915,-0.120927;;, + 73;3;-0.790636,-0.072915,-0.120927;;, + 74;3;-0.790636,-0.072915,-0.120927;;, + 75;3;-0.790636,-0.072915,-0.120927;;, + 76;3;-0.790636,-0.072915,-0.120927;;, + 77;3;-0.790636,-0.072915,-0.120927;;, + 78;3;-0.790636,-0.072915,-0.120927;;, + 79;3;-0.790636,-0.072915,-0.120927;;, + 80;3;-0.790636,-0.072915,-0.120927;;, + 81;3;-0.790636,-0.072915,-0.120927;;, + 82;3;-0.790636,-0.072915,-0.120927;;, + 83;3;-0.790636,-0.072915,-0.120927;;, + 84;3;-0.790636,-0.072915,-0.120927;;, + 85;3;-0.790636,-0.072915,-0.120927;;, + 86;3;-0.790636,-0.072915,-0.120927;;, + 87;3;-0.790636,-0.072915,-0.120927;;, + 88;3;-0.790636,-0.072915,-0.120927;;, + 89;3;-0.790636,-0.072915,-0.120927;;, + 90;3;-0.790636,-0.072915,-0.120927;;, + 91;3;-0.790636,-0.072915,-0.120927;;, + 92;3;-0.790636,-0.072915,-0.120927;;, + 93;3;-0.790636,-0.072915,-0.120927;;, + 94;3;-0.790636,-0.072915,-0.120927;;, + 95;3;-0.790636,-0.072915,-0.120927;;, + 96;3;-0.790636,-0.072915,-0.120927;;, + 97;3;-0.790636,-0.072915,-0.120927;;, + 98;3;-0.790636,-0.072915,-0.120927;;, + 99;3;-0.790636,-0.072915,-0.120927;;, + 100;3;-0.790636,-0.072915,-0.120927;;, + 101;3;-0.790636,-0.072915,-0.120927;;, + 102;3;-0.790636,-0.072915,-0.120927;;, + 103;3;-0.790636,-0.072915,-0.120927;;, + 104;3;-0.790636,-0.072915,-0.120927;;, + 105;3;-0.790636,-0.072915,-0.120927;;, + 106;3;-0.790636,-0.072915,-0.120927;;, + 107;3;-0.790636,-0.072915,-0.120927;;, + 108;3;-0.790636,-0.072915,-0.120927;;, + 109;3;-0.790636,-0.072915,-0.120927;;, + 110;3;-0.790636,-0.072915,-0.120927;;, + 111;3;-0.790636,-0.072915,-0.120927;;, + 112;3;-0.790636,-0.072915,-0.120927;;, + 113;3;-0.790636,-0.072915,-0.120927;;, + 114;3;-0.790636,-0.072915,-0.120927;;, + 115;3;-0.790636,-0.072915,-0.120927;;, + 116;3;-0.790636,-0.072915,-0.120927;;, + 117;3;-0.790636,-0.072915,-0.120927;;, + 118;3;-0.790636,-0.072915,-0.120927;;, + 119;3;-0.790636,-0.072915,-0.120927;;, + 120;3;-0.790636,-0.072915,-0.120927;;, + 121;3;-0.790636,-0.072915,-0.120927;;, + 122;3;-0.790636,-0.072915,-0.120927;;, + 123;3;-0.790636,-0.072915,-0.120927;;, + 124;3;-0.790636,-0.072915,-0.120927;;, + 125;3;-0.790636,-0.072915,-0.120927;;, + 126;3;-0.790636,-0.072915,-0.120927;;, + 127;3;-0.790636,-0.072915,-0.120927;;, + 128;3;-0.790636,-0.072915,-0.120927;;, + 129;3;-0.790636,-0.072915,-0.120927;;, + 130;3;-0.790636,-0.072915,-0.120927;;, + 131;3;-0.790636,-0.072915,-0.120927;;, + 132;3;-0.790636,-0.072915,-0.120927;;, + 133;3;-0.790636,-0.072915,-0.120927;;, + 134;3;-0.790636,-0.072915,-0.120927;;, + 135;3;-0.790636,-0.072915,-0.120927;;, + 136;3;-0.790636,-0.072915,-0.120927;;, + 137;3;-0.790636,-0.072915,-0.120927;;, + 138;3;-0.790636,-0.072915,-0.120927;;, + 139;3;-0.790636,-0.072915,-0.120927;;, + 140;3;-0.790636,-0.072915,-0.120927;;, + 141;3;-0.790636,-0.072915,-0.120927;;, + 142;3;-0.790636,-0.072915,-0.120927;;, + 143;3;-0.790636,-0.072915,-0.120927;;, + 144;3;-0.790636,-0.072915,-0.120927;;, + 145;3;-0.790636,-0.072915,-0.120927;;, + 146;3;-0.790636,-0.072915,-0.120927;;, + 147;3;-0.790636,-0.072915,-0.120927;;, + 148;3;-0.790636,-0.072915,-0.120927;;, + 149;3;-0.790636,-0.072915,-0.120927;;, + 150;3;-0.790636,-0.072915,-0.120927;;, + 151;3;-0.790636,-0.072915,-0.120927;;, + 152;3;-0.790636,-0.072915,-0.120927;;, + 153;3;-0.790636,-0.072915,-0.120927;;, + 154;3;-0.790636,-0.072915,-0.120927;;, + 155;3;-0.790636,-0.072915,-0.120927;;, + 156;3;-0.790636,-0.072915,-0.120927;;, + 157;3;-0.790636,-0.072915,-0.120927;;, + 158;3;-0.790636,-0.072915,-0.120927;;, + 159;3;-0.790636,-0.072915,-0.120927;;, + 160;3;-0.790636,-0.072915,-0.120927;;, + 161;3;-0.790636,-0.072915,-0.120927;;, + 162;3;-0.790636,-0.072915,-0.120927;;, + 163;3;-0.790636,-0.072915,-0.120927;;, + 164;3;-0.790636,-0.072915,-0.120927;;, + 165;3;-0.790636,-0.072915,-0.120927;;, + 166;3;-0.790636,-0.072915,-0.120927;;, + 167;3;-0.790636,-0.072915,-0.120927;;, + 168;3;-0.790636,-0.072915,-0.120927;;, + 169;3;-0.790636,-0.072915,-0.120927;;, + 170;3;-0.790636,-0.072915,-0.120927;;, + 171;3;-0.790636,-0.072915,-0.120927;;, + 172;3;-0.790636,-0.072915,-0.120927;;, + 173;3;-0.790636,-0.072915,-0.120927;;, + 174;3;-0.790636,-0.072915,-0.120927;;, + 175;3;-0.790636,-0.072915,-0.120927;;, + 176;3;-0.790636,-0.072915,-0.120927;;, + 177;3;-0.790636,-0.072915,-0.120927;;, + 178;3;-0.790636,-0.072915,-0.120927;;, + 179;3;-0.790636,-0.072915,-0.120927;;, + 180;3;-0.790636,-0.072915,-0.120927;;, + 181;3;-0.790636,-0.072915,-0.120927;;, + 182;3;-0.790636,-0.072915,-0.120927;;, + 183;3;-0.790636,-0.072915,-0.120927;;, + 184;3;-0.790636,-0.072915,-0.120927;;, + 185;3;-0.790636,-0.072915,-0.120927;;, + 186;3;-0.790636,-0.072915,-0.120927;;, + 187;3;-0.790636,-0.072915,-0.120927;;, + 188;3;-0.790636,-0.072915,-0.120927;;, + 189;3;-0.790636,-0.072915,-0.120927;;, + 190;3;-0.790636,-0.072915,-0.120927;;, + 191;3;-0.790636,-0.072915,-0.120927;;, + 192;3;-0.790636,-0.072915,-0.120927;;, + 193;3;-0.790636,-0.072915,-0.120927;;, + 194;3;-0.790636,-0.072915,-0.120927;;, + 195;3;-0.790636,-0.072915,-0.120927;;, + 196;3;-0.790636,-0.072915,-0.120927;;, + 197;3;-0.790636,-0.072915,-0.120927;;, + 198;3;-0.790636,-0.072915,-0.120927;;, + 199;3;-0.790636,-0.072915,-0.120927;;, + 200;3;-0.790636,-0.072915,-0.120927;;, + 201;3;-0.790636,-0.072915,-0.120927;;, + 202;3;-0.790636,-0.072915,-0.120927;;, + 203;3;-0.790636,-0.072915,-0.120927;;, + 204;3;-0.790636,-0.072915,-0.120927;;, + 205;3;-0.790636,-0.072915,-0.120927;;, + 206;3;-0.790636,-0.072915,-0.120927;;, + 207;3;-0.790636,-0.072915,-0.120927;;, + 208;3;-0.790636,-0.072915,-0.120927;;, + 209;3;-0.790636,-0.072915,-0.120927;;, + 210;3;-0.790636,-0.072915,-0.120927;;, + 211;3;-0.790636,-0.072915,-0.120927;;, + 212;3;-0.790636,-0.072915,-0.120927;;, + 213;3;-0.790636,-0.072915,-0.120927;;, + 214;3;-0.790636,-0.072915,-0.120927;;, + 215;3;-0.790636,-0.072915,-0.120927;;, + 216;3;-0.790636,-0.072915,-0.120927;;, + 217;3;-0.790636,-0.072915,-0.120927;;, + 218;3;-0.790636,-0.072915,-0.120927;;, + 219;3;-0.790636,-0.072915,-0.120927;;, + 220;3;-0.790636,-0.072915,-0.120927;;, + 221;3;-0.790636,-0.072915,-0.120927;;, + 222;3;-0.790636,-0.072915,-0.120927;;, + 223;3;-0.790636,-0.072915,-0.120927;;, + 224;3;-0.790636,-0.072915,-0.120927;;, + 225;3;-0.790636,-0.072915,-0.120927;;, + 226;3;-0.790636,-0.072915,-0.120927;;, + 227;3;-0.790636,-0.072915,-0.120927;;, + 228;3;-0.790636,-0.072915,-0.120927;;, + 229;3;-0.790636,-0.072915,-0.120927;;, + 230;3;-0.790636,-0.072915,-0.120927;;, + 231;3;-0.790636,-0.072915,-0.120927;;, + 232;3;-0.790636,-0.072915,-0.120927;;, + 233;3;-0.790636,-0.072915,-0.120927;;, + 234;3;-0.790636,-0.072915,-0.120927;;, + 235;3;-0.790636,-0.072915,-0.120927;;, + 236;3;-0.790636,-0.072915,-0.120927;;, + 237;3;-0.790636,-0.072915,-0.120927;;, + 238;3;-0.790636,-0.072915,-0.120927;;, + 239;3;-0.790636,-0.072915,-0.120927;;, + 240;3;-0.790636,-0.072915,-0.120927;;, + 241;3;-0.790636,-0.072915,-0.120927;;, + 242;3;-0.790636,-0.072915,-0.120927;;, + 243;3;-0.790636,-0.072915,-0.120927;;, + 244;3;-0.790636,-0.072915,-0.120927;;, + 245;3;-0.790636,-0.072915,-0.120927;;, + 246;3;-0.790636,-0.072915,-0.120927;;, + 247;3;-0.790636,-0.072915,-0.120927;;, + 248;3;-0.790636,-0.072915,-0.120927;;, + 249;3;-0.790636,-0.072915,-0.120927;;; + } + } +} // End of AnimationSet Global diff --git a/mods/_various/mobs/models/mobs_bee.x b/mods/_various/legacy_mobs/models/mobs_bee.x similarity index 100% rename from mods/_various/mobs/models/mobs_bee.x rename to mods/_various/legacy_mobs/models/mobs_bee.x diff --git a/mods/_various/mobs/models/mobs_bunny.b3d b/mods/_various/legacy_mobs/models/mobs_bunny.b3d similarity index 100% rename from mods/_various/mobs/models/mobs_bunny.b3d rename to mods/_various/legacy_mobs/models/mobs_bunny.b3d diff --git a/mods/_various/mobs/models/mobs_chicken.x b/mods/_various/legacy_mobs/models/mobs_chicken.x similarity index 100% rename from mods/_various/mobs/models/mobs_chicken.x rename to mods/_various/legacy_mobs/models/mobs_chicken.x diff --git a/mods/_various/mobs/models/mobs_cow.x b/mods/_various/legacy_mobs/models/mobs_cow.x similarity index 100% rename from mods/_various/mobs/models/mobs_cow.x rename to mods/_various/legacy_mobs/models/mobs_cow.x diff --git a/mods/_various/mobs/models/mobs_oerkki.b3d b/mods/_various/legacy_mobs/models/mobs_oerkki.b3d similarity index 100% rename from mods/_various/mobs/models/mobs_oerkki.b3d rename to mods/_various/legacy_mobs/models/mobs_oerkki.b3d diff --git a/mods/_various/mobs/models/mobs_pumba.x b/mods/_various/legacy_mobs/models/mobs_pumba.x similarity index 100% rename from mods/_various/mobs/models/mobs_pumba.x rename to mods/_various/legacy_mobs/models/mobs_pumba.x diff --git a/mods/_various/mobs/models/mobs_sand_monster.b3d b/mods/_various/legacy_mobs/models/mobs_sand_monster.b3d similarity index 100% rename from mods/_various/mobs/models/mobs_sand_monster.b3d rename to mods/_various/legacy_mobs/models/mobs_sand_monster.b3d diff --git a/mods/_various/mobs/models/mobs_sheep.b3d b/mods/_various/legacy_mobs/models/mobs_sheep.b3d similarity index 100% rename from mods/_various/mobs/models/mobs_sheep.b3d rename to mods/_various/legacy_mobs/models/mobs_sheep.b3d diff --git a/mods/_various/mobs/models/mobs_sheep_shaved.b3d b/mods/_various/legacy_mobs/models/mobs_sheep_shaved.b3d similarity index 100% rename from mods/_various/mobs/models/mobs_sheep_shaved.b3d rename to mods/_various/legacy_mobs/models/mobs_sheep_shaved.b3d diff --git a/mods/_various/mobs/models/mobs_spider.x b/mods/_various/legacy_mobs/models/mobs_spider.x similarity index 100% rename from mods/_various/mobs/models/mobs_spider.x rename to mods/_various/legacy_mobs/models/mobs_spider.x diff --git a/mods/_various/mobs/models/mobs_stone_monster.b3d b/mods/_various/legacy_mobs/models/mobs_stone_monster.b3d similarity index 100% rename from mods/_various/mobs/models/mobs_stone_monster.b3d rename to mods/_various/legacy_mobs/models/mobs_stone_monster.b3d diff --git a/mods/_various/mobs/models/mobs_tree_monster.b3d b/mods/_various/legacy_mobs/models/mobs_tree_monster.b3d similarity index 100% rename from mods/_various/mobs/models/mobs_tree_monster.b3d rename to mods/_various/legacy_mobs/models/mobs_tree_monster.b3d diff --git a/mods/_various/legacy_mobs/models/tarantula.x b/mods/_various/legacy_mobs/models/tarantula.x new file mode 100644 index 000000000..03cc0d06b --- /dev/null +++ b/mods/_various/legacy_mobs/models/tarantula.x @@ -0,0 +1,37588 @@ +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.672467,-1.528196,-0.828771, 1.000000;; + } + Frame Armature_Bone { + FrameTransformMatrix { + -0.022287, 0.000001,-0.999752, 0.000000, + 0.999752, 0.000000,-0.022287, 0.000000, + -0.000000,-1.000000,-0.000001, 0.000000, + 0.506179, 1.550838, 1.103719, 1.000000;; + } + Frame Armature_Bone_002 { + FrameTransformMatrix { + -0.000001,-0.000000, 1.000000, 0.000000, + -0.022286, 0.999752,-0.000000, 0.000000, + -0.999752,-0.022287,-0.000001, 0.000000, + 0.000000, 0.344354,-0.000000, 1.000000;; + } + Frame Armature_Bone_003 { + FrameTransformMatrix { + 0.920869,-0.389858, 0.003366, 0.000000, + 0.374396, 0.886689, 0.271313, 0.000000, + -0.108759,-0.248583, 0.962485, 0.000000, + 0.000000, 0.826434, 0.000000, 1.000000;; + } + Frame Armature_Bone_005 { + FrameTransformMatrix { + -0.387537, 0.916651,-0.097809, 0.000000, + -0.044231,-0.124468,-0.991237, 0.000000, + -0.920793,-0.379815, 0.088780, 0.000000, + 0.000000, 0.761776, 0.000000, 1.000000;; + } + Frame Armature_Bone_006 { + FrameTransformMatrix { + 0.994682, 0.102985,-0.000918, 0.000000, + -0.102944, 0.994472, 0.020679, 0.000000, + 0.003042,-0.020475, 0.999786, 0.000000, + 0.000000, 0.660698, 0.000000, 1.000000;; + } + } // End of Armature_Bone_006 + } // End of Armature_Bone_005 + } // End of Armature_Bone_003 + Frame Armature_Bone_004 { + FrameTransformMatrix { + 0.936957, 0.349445, 0.000925, 0.000000, + -0.333569, 0.893594, 0.300370, 0.000000, + 0.104136,-0.281742, 0.953822, 0.000000, + 0.000000, 0.826434, 0.000000, 1.000000;; + } + Frame Armature_Bone_007 { + FrameTransformMatrix { + 0.341940, 0.931761,-0.122062, 0.000000, + 0.074553,-0.156381,-0.984879, 0.000000, + -0.936760, 0.327669,-0.122939, 0.000000, + -0.000000, 0.747179,-0.000000, 1.000000;; + } + Frame Armature_Bone_008 { + FrameTransformMatrix { + 0.994198, 0.107557,-0.001024, 0.000000, + -0.107516, 0.994008, 0.019680, 0.000000, + 0.003134,-0.019455, 0.999806, 0.000000, + 0.000000, 0.672674, 0.000000, 1.000000;; + } + } // End of Armature_Bone_008 + } // End of Armature_Bone_007 + } // End of Armature_Bone_004 + Frame Armature_Bone_009 { + FrameTransformMatrix { + -0.738149, 0.674637, 0.000000, 0.000000, + -0.674637,-0.738150,-0.000000, 0.000000, + 0.000000,-0.000000, 1.000000, 0.000000, + 0.000000, 0.826434, 0.000000, 1.000000;; + } + Frame Armature_Bone_029 { + FrameTransformMatrix { + 0.674637,-0.738150,-0.000000, 0.000000, + 0.738150, 0.674637, 0.000000, 0.000000, + 0.000000,-0.000000, 1.000000, 0.000000, + 0.000000, 0.868658, 0.000000, 1.000000;; + } + Frame Armature_Bone_033 { + 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, 1.279916, 0.000000, 1.000000;; + } + Frame Armature_Bone_037 { + 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, 1.228417, 0.000000, 1.000000;; + } + } // End of Armature_Bone_037 + } // End of Armature_Bone_033 + } // End of Armature_Bone_029 + } // End of Armature_Bone_009 + Frame Armature_Bone_010 { + FrameTransformMatrix { + -0.443098, 0.896473, 0.000000, 0.000000, + -0.896473,-0.443098, 0.000000, 0.000000, + 0.000000,-0.000000, 1.000000, 0.000000, + 0.000000, 0.826434, 0.000000, 1.000000;; + } + Frame Armature_Bone_030 { + FrameTransformMatrix { + 0.896473,-0.443098,-0.000000, 0.000000, + 0.443098, 0.896473, 0.000000, 0.000000, + 0.000000,-0.000000, 1.000000, 0.000000, + 0.000000, 0.666142,-0.000000, 1.000000;; + } + Frame Armature_Bone_034 { + 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, 1.279916, 0.000000, 1.000000;; + } + Frame Armature_Bone_038 { + 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, 1.228416,-0.000000, 1.000000;; + } + } // End of Armature_Bone_038 + } // End of Armature_Bone_034 + } // End of Armature_Bone_030 + } // End of Armature_Bone_010 + Frame Armature_Bone_011 { + FrameTransformMatrix { + 0.142387, 0.989811,-0.000000, 0.000000, + -0.989811, 0.142387, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.000000, 0.826434, 0.000000, 1.000000;; + } + Frame Armature_Bone_031 { + FrameTransformMatrix { + 0.989811, 0.142387, 0.000000, 0.000000, + -0.142387, 0.989811,-0.000000, 0.000000, + -0.000000,-0.000000, 1.000000, 0.000000, + 0.000000, 0.586459, 0.000000, 1.000000;; + } + Frame Armature_Bone_035 { + 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, 1.279916, 0.000000, 1.000000;; + } + Frame Armature_Bone_039 { + 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, 1.228416,-0.000000, 1.000000;; + } + } // End of Armature_Bone_039 + } // End of Armature_Bone_035 + } // End of Armature_Bone_031 + } // End of Armature_Bone_011 + Frame Armature_Bone_012 { + FrameTransformMatrix { + 0.577704, 0.816246,-0.000000, 0.000000, + -0.816246, 0.577704,-0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.000000, 0.826434, 0.000000, 1.000000;; + } + Frame Armature_Bone_032 { + FrameTransformMatrix { + 0.816246, 0.577704, 0.000000, 0.000000, + -0.577704, 0.816246,-0.000000, 0.000000, + -0.000000,-0.000000, 1.000000, 0.000000, + -0.000000, 0.690756, 0.000000, 1.000000;; + } + Frame Armature_Bone_036 { + 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, 1.279916, 0.000000, 1.000000;; + } + Frame Armature_Bone_040 { + 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, 1.228417, 0.000000, 1.000000;; + } + } // End of Armature_Bone_040 + } // End of Armature_Bone_036 + } // End of Armature_Bone_032 + } // End of Armature_Bone_012 + Frame Armature_Bone_013 { + FrameTransformMatrix { + -0.724868,-0.688888, 0.000000, 0.000000, + 0.688888,-0.724868, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.000000, 0.826434, 0.000000, 1.000000;; + } + Frame Armature_Bone_017 { + FrameTransformMatrix { + 0.688888, 0.724868,-0.000000, 0.000000, + -0.724868, 0.688888, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + -0.000000, 0.893468, 0.000000, 1.000000;; + } + Frame Armature_Bone_021 { + 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, 1.294482,-0.000000, 1.000000;; + } + Frame Armature_Bone_025 { + 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, 1.228822,-0.000000, 1.000000;; + } + } // End of Armature_Bone_025 + } // End of Armature_Bone_021 + } // End of Armature_Bone_017 + } // End of Armature_Bone_013 + Frame Armature_Bone_014 { + FrameTransformMatrix { + 0.525789,-0.850615,-0.000000, 0.000000, + 0.850615, 0.525789, 0.000000, 0.000000, + 0.000000,-0.000000, 1.000000, 0.000000, + 0.000000, 0.826434, 0.000000, 1.000000;; + } + Frame Armature_Bone_018 { + FrameTransformMatrix { + 0.850615,-0.525789, 0.000000, 0.000000, + 0.525789, 0.850615,-0.000000, 0.000000, + -0.000000, 0.000000, 1.000000, 0.000000, + -0.000000, 0.680634,-0.000000, 1.000000;; + } + Frame Armature_Bone_022 { + 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, 1.294481,-0.000000, 1.000000;; + } + Frame Armature_Bone_026 { + 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, 1.228822,-0.000000, 1.000000;; + } + } // End of Armature_Bone_026 + } // End of Armature_Bone_022 + } // End of Armature_Bone_018 + } // End of Armature_Bone_014 + Frame Armature_Bone_015 { + FrameTransformMatrix { + 0.077964,-0.996956,-0.000000, 0.000000, + 0.996956, 0.077964, 0.000000, 0.000000, + 0.000000,-0.000000, 1.000000, 0.000000, + 0.000000, 0.826434, 0.000000, 1.000000;; + } + Frame Armature_Bone_019 { + FrameTransformMatrix { + 0.996956,-0.077964, 0.000000, 0.000000, + 0.077964, 0.996956,-0.000000, 0.000000, + -0.000000, 0.000000, 1.000000, 0.000000, + -0.000000, 0.592826, 0.000000, 1.000000;; + } + Frame Armature_Bone_023 { + 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, 1.294482,-0.000000, 1.000000;; + } + Frame Armature_Bone_027 { + 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, 1.228822,-0.000000, 1.000000;; + } + } // End of Armature_Bone_027 + } // End of Armature_Bone_023 + } // End of Armature_Bone_019 + } // End of Armature_Bone_015 + Frame Armature_Bone_016 { + FrameTransformMatrix { + -0.449112,-0.893475, 0.000000, 0.000000, + 0.893475,-0.449113, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.000000, 0.826434, 0.000000, 1.000000;; + } + Frame Armature_Bone_020 { + FrameTransformMatrix { + 0.893475, 0.449112,-0.000000, 0.000000, + -0.449112, 0.893475,-0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.000000, 0.683319, 0.000000, 1.000000;; + } + Frame Armature_Bone_024 { + 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, 1.294482,-0.000000, 1.000000;; + } + Frame Armature_Bone_028 { + 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, 1.228822,-0.000000, 1.000000;; + } + } // End of Armature_Bone_028 + } // End of Armature_Bone_024 + } // End of Armature_Bone_020 + } // End of Armature_Bone_016 + } // End of Armature_Bone_002 + } // End of Armature_Bone + Frame Armature_Bone_001 { + FrameTransformMatrix { + 0.000000, 1.000000, 0.000000, 0.000000, + -1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.506179, 1.550838, 1.103719, 1.000000;; + } + } // End of Armature_Bone_001 + Frame Cube_001 { + FrameTransformMatrix { + -0.165085,-0.000000, 0.000000, 0.000000, + 0.000000,-0.348037, 0.000000, 0.000000, + 0.000000, 0.000000, 0.189174, 0.000000, + 0.672467, 1.528196, 1.101588, 1.000000;; + } + Mesh { // Cube_001 mesh + 744; + -7.525823; 8.883257;-0.581474;, + -7.525823; 5.349147;-0.581474;, + -8.858474; 5.349147;-0.581474;, + -8.858473; 8.883258;-0.581474;, + -7.525823; 8.883256; 0.581474;, + -8.858474; 8.883257; 0.581474;, + -8.858474; 5.349147; 0.581474;, + -7.525823; 5.349146; 0.581474;, + -7.525823; 8.883257;-0.581474;, + -7.525823; 8.883256; 0.581474;, + -7.525823; 5.349146; 0.581474;, + -7.525823; 5.349147;-0.581474;, + -7.525823; 5.349147;-0.581474;, + -7.525823; 5.349146; 0.581474;, + -8.858474; 5.349147; 0.581474;, + -8.858474; 5.349147;-0.581474;, + -8.858474; 5.349147;-0.581474;, + -8.858474; 5.349147; 0.581474;, + -8.858474; 8.883257; 0.581474;, + -8.858473; 8.883258;-0.581474;, + -7.525823; 8.883256; 0.581474;, + -7.525823; 8.883257;-0.581474;, + -8.858473; 8.883258;-0.581474;, + -8.858474; 8.883257; 0.581474;, + -7.404673; 5.325300;-0.687197;, + -7.404673; 1.791190;-0.687197;, + -8.979624; 1.791191;-0.687197;, + -8.979624; 5.325301;-0.687197;, + -7.404673; 5.325299; 0.687197;, + -8.979624; 5.325300; 0.687197;, + -8.979624; 1.791191; 0.687197;, + -7.404673; 1.791189; 0.687197;, + -7.404673; 5.325300;-0.687197;, + -7.404673; 5.325299; 0.687197;, + -7.404673; 1.791189; 0.687197;, + -7.404673; 1.791190;-0.687197;, + -7.404673; 1.791190;-0.687197;, + -7.404673; 1.791189; 0.687197;, + -8.979624; 1.791191; 0.687197;, + -8.979624; 1.791191;-0.687197;, + -8.979624; 1.791191;-0.687197;, + -8.979624; 1.791191; 0.687197;, + -8.979624; 5.325300; 0.687197;, + -8.979624; 5.325301;-0.687197;, + -7.404673; 5.325299; 0.687197;, + -7.404673; 5.325300;-0.687197;, + -8.979624; 5.325301;-0.687197;, + -8.979624; 5.325300; 0.687197;, + -7.586398;10.606580;-0.528613;, + -7.586398; 8.904172;-0.528613;, + -8.797898; 8.904172;-0.528613;, + -8.797898;10.606581;-0.528613;, + -7.586398;10.606580; 0.528613;, + -8.797898;10.606580; 0.528613;, + -8.797899; 8.904172; 0.528613;, + -7.586398; 8.904171; 0.528613;, + -7.586398;10.606580;-0.528613;, + -7.586398;10.606580; 0.528613;, + -7.586398; 8.904171; 0.528613;, + -7.586398; 8.904172;-0.528613;, + -7.586398; 8.904172;-0.528613;, + -7.586398; 8.904171; 0.528613;, + -8.797899; 8.904172; 0.528613;, + -8.797898; 8.904172;-0.528613;, + -8.797898; 8.904172;-0.528613;, + -8.797899; 8.904172; 0.528613;, + -8.797898;10.606580; 0.528613;, + -8.797898;10.606581;-0.528613;, + -7.586398;10.606580; 0.528613;, + -7.586398;10.606580;-0.528613;, + -8.797898;10.606581;-0.528613;, + -8.797898;10.606580; 0.528613;, + -5.594649;10.606580;-0.528613;, + -5.594649; 8.904172;-0.528613;, + -6.927300; 8.904172;-0.528613;, + -6.927299;10.606581;-0.528613;, + -5.594649;10.606580; 0.528613;, + -6.927299;10.606580; 0.528613;, + -6.927300; 8.904172; 0.528613;, + -5.594649; 8.904171; 0.528613;, + -5.594649;10.606580;-0.528613;, + -5.594649;10.606580; 0.528613;, + -5.594649; 8.904171; 0.528613;, + -5.594649; 8.904172;-0.528613;, + -5.594649; 8.904172;-0.528613;, + -5.594649; 8.904171; 0.528613;, + -6.927300; 8.904172; 0.528613;, + -6.927300; 8.904172;-0.528613;, + -6.927300; 8.904172;-0.528613;, + -6.927300; 8.904172; 0.528613;, + -6.927299;10.606580; 0.528613;, + -6.927299;10.606581;-0.528613;, + -5.594649;10.606580; 0.528613;, + -5.594649;10.606580;-0.528613;, + -6.927299;10.606581;-0.528613;, + -6.927299;10.606580; 0.528613;, + -5.473499; 5.325300;-0.687197;, + -5.473499; 1.791190;-0.687197;, + -7.048450; 1.791191;-0.687197;, + -7.048450; 5.325301;-0.687197;, + -5.473498; 5.325299; 0.687197;, + -7.048450; 5.325300; 0.687197;, + -7.048450; 1.791191; 0.687197;, + -5.473499; 1.791189; 0.687197;, + -5.473499; 5.325300;-0.687197;, + -5.473498; 5.325299; 0.687197;, + -5.473499; 1.791189; 0.687197;, + -5.473499; 1.791190;-0.687197;, + -5.473499; 1.791190;-0.687197;, + -5.473499; 1.791189; 0.687197;, + -7.048450; 1.791191; 0.687197;, + -7.048450; 1.791191;-0.687197;, + -7.048450; 1.791191;-0.687197;, + -7.048450; 1.791191; 0.687197;, + -7.048450; 5.325300; 0.687197;, + -7.048450; 5.325301;-0.687197;, + -5.473498; 5.325299; 0.687197;, + -5.473499; 5.325300;-0.687197;, + -7.048450; 5.325301;-0.687197;, + -7.048450; 5.325300; 0.687197;, + -5.594649; 8.883257;-0.581474;, + -5.594649; 5.349147;-0.581474;, + -6.927300; 5.349147;-0.581474;, + -6.927299; 8.883258;-0.581474;, + -5.594649; 8.883256; 0.581474;, + -6.927299; 8.883257; 0.581474;, + -6.927300; 5.349147; 0.581474;, + -5.594649; 5.349146; 0.581474;, + -5.594649; 8.883257;-0.581474;, + -5.594649; 8.883256; 0.581474;, + -5.594649; 5.349146; 0.581474;, + -5.594649; 5.349147;-0.581474;, + -5.594649; 5.349147;-0.581474;, + -5.594649; 5.349146; 0.581474;, + -6.927300; 5.349147; 0.581474;, + -6.927300; 5.349147;-0.581474;, + -6.927300; 5.349147;-0.581474;, + -6.927300; 5.349147; 0.581474;, + -6.927299; 8.883257; 0.581474;, + -6.927299; 8.883258;-0.581474;, + -5.594649; 8.883256; 0.581474;, + -5.594649; 8.883257;-0.581474;, + -6.927299; 8.883258;-0.581474;, + -6.927299; 8.883257; 0.581474;, + -3.424468; 8.883257;-0.581474;, + -3.424468; 5.349147;-0.581474;, + -4.757119; 5.349147;-0.581474;, + -4.757119; 8.883258;-0.581474;, + -3.424468; 8.883256; 0.581474;, + -4.757119; 8.883257; 0.581474;, + -4.757119; 5.349147; 0.581474;, + -3.424469; 5.349146; 0.581474;, + -3.424468; 8.883257;-0.581474;, + -3.424468; 8.883256; 0.581474;, + -3.424469; 5.349146; 0.581474;, + -3.424468; 5.349147;-0.581474;, + -3.424468; 5.349147;-0.581474;, + -3.424469; 5.349146; 0.581474;, + -4.757119; 5.349147; 0.581474;, + -4.757119; 5.349147;-0.581474;, + -4.757119; 5.349147;-0.581474;, + -4.757119; 5.349147; 0.581474;, + -4.757119; 8.883257; 0.581474;, + -4.757119; 8.883258;-0.581474;, + -3.424468; 8.883256; 0.581474;, + -3.424468; 8.883257;-0.581474;, + -4.757119; 8.883258;-0.581474;, + -4.757119; 8.883257; 0.581474;, + -3.303318; 5.325300;-0.687197;, + -3.303318; 1.791190;-0.687197;, + -4.878269; 1.791191;-0.687197;, + -4.878269; 5.325301;-0.687197;, + -3.303318; 5.325299; 0.687197;, + -4.878269; 5.325300; 0.687197;, + -4.878269; 1.791191; 0.687197;, + -3.303319; 1.791189; 0.687197;, + -3.303318; 5.325300;-0.687197;, + -3.303318; 5.325299; 0.687197;, + -3.303319; 1.791189; 0.687197;, + -3.303318; 1.791190;-0.687197;, + -3.303318; 1.791190;-0.687197;, + -3.303319; 1.791189; 0.687197;, + -4.878269; 1.791191; 0.687197;, + -4.878269; 1.791191;-0.687197;, + -4.878269; 1.791191;-0.687197;, + -4.878269; 1.791191; 0.687197;, + -4.878269; 5.325300; 0.687197;, + -4.878269; 5.325301;-0.687197;, + -3.303318; 5.325299; 0.687197;, + -3.303318; 5.325300;-0.687197;, + -4.878269; 5.325301;-0.687197;, + -4.878269; 5.325300; 0.687197;, + -3.485043;10.606580;-0.528613;, + -3.485043; 8.904172;-0.528613;, + -4.696544; 8.904172;-0.528613;, + -4.696544;10.606581;-0.528613;, + -3.485043;10.606580; 0.528613;, + -4.696544;10.606580; 0.528613;, + -4.696544; 8.904172; 0.528613;, + -3.485044; 8.904171; 0.528613;, + -3.485043;10.606580;-0.528613;, + -3.485043;10.606580; 0.528613;, + -3.485044; 8.904171; 0.528613;, + -3.485043; 8.904172;-0.528613;, + -3.485043; 8.904172;-0.528613;, + -3.485044; 8.904171; 0.528613;, + -4.696544; 8.904172; 0.528613;, + -4.696544; 8.904172;-0.528613;, + -4.696544; 8.904172;-0.528613;, + -4.696544; 8.904172; 0.528613;, + -4.696544;10.606580; 0.528613;, + -4.696544;10.606581;-0.528613;, + -3.485043;10.606580; 0.528613;, + -3.485043;10.606580;-0.528613;, + -4.696544;10.606581;-0.528613;, + -4.696544;10.606580; 0.528613;, + -1.540829;10.606580;-0.528613;, + -1.540829; 8.904172;-0.528613;, + -2.752330; 8.904172;-0.528613;, + -2.752330;10.606581;-0.528613;, + -1.540829;10.606580; 0.528613;, + -2.752330;10.606580; 0.528613;, + -2.752330; 8.904172; 0.528613;, + -1.540830; 8.904171; 0.528613;, + -1.540829;10.606580;-0.528613;, + -1.540829;10.606580; 0.528613;, + -1.540830; 8.904171; 0.528613;, + -1.540829; 8.904172;-0.528613;, + -1.540829; 8.904172;-0.528613;, + -1.540830; 8.904171; 0.528613;, + -2.752330; 8.904172; 0.528613;, + -2.752330; 8.904172;-0.528613;, + -2.752330; 8.904172;-0.528613;, + -2.752330; 8.904172; 0.528613;, + -2.752330;10.606580; 0.528613;, + -2.752330;10.606581;-0.528613;, + -1.540829;10.606580; 0.528613;, + -1.540829;10.606580;-0.528613;, + -2.752330;10.606581;-0.528613;, + -2.752330;10.606580; 0.528613;, + -1.298529; 5.325300;-0.687197;, + -1.298529; 1.791190;-0.687197;, + -2.994630; 1.791191;-0.687197;, + -2.994630; 5.325301;-0.687197;, + -1.298529; 5.325299; 0.687197;, + -2.994630; 5.325300; 0.687197;, + -2.994631; 1.791191; 0.687197;, + -1.298530; 1.791189; 0.687197;, + -1.298529; 5.325300;-0.687197;, + -1.298529; 5.325299; 0.687197;, + -1.298530; 1.791189; 0.687197;, + -1.298529; 1.791190;-0.687197;, + -1.298529; 1.791190;-0.687197;, + -1.298530; 1.791189; 0.687197;, + -2.994631; 1.791191; 0.687197;, + -2.994630; 1.791191;-0.687197;, + -2.994630; 1.791191;-0.687197;, + -2.994631; 1.791191; 0.687197;, + -2.994630; 5.325300; 0.687197;, + -2.994630; 5.325301;-0.687197;, + -1.298529; 5.325299; 0.687197;, + -1.298529; 5.325300;-0.687197;, + -2.994630; 5.325301;-0.687197;, + -2.994630; 5.325300; 0.687197;, + -1.480254; 8.883257;-0.581474;, + -1.480254; 5.349147;-0.581474;, + -2.812905; 5.349147;-0.581474;, + -2.812905; 8.883258;-0.581474;, + -1.480254; 8.883256; 0.581474;, + -2.812905; 8.883257; 0.581474;, + -2.812905; 5.349147; 0.581474;, + -1.480255; 5.349146; 0.581474;, + -1.480254; 8.883257;-0.581474;, + -1.480254; 8.883256; 0.581474;, + -1.480255; 5.349146; 0.581474;, + -1.480254; 5.349147;-0.581474;, + -1.480254; 5.349147;-0.581474;, + -1.480255; 5.349146; 0.581474;, + -2.812905; 5.349147; 0.581474;, + -2.812905; 5.349147;-0.581474;, + -2.812905; 5.349147;-0.581474;, + -2.812905; 5.349147; 0.581474;, + -2.812905; 8.883257; 0.581474;, + -2.812905; 8.883258;-0.581474;, + -1.480254; 8.883256; 0.581474;, + -1.480254; 8.883257;-0.581474;, + -2.812905; 8.883258;-0.581474;, + -2.812905; 8.883257; 0.581474;, + -1.359104;-1.799264;-0.634335;, + -1.359104;-5.333374;-0.634335;, + -2.934055;-5.333374;-0.634335;, + -2.934055;-1.799264;-0.634335;, + -1.359104;-1.799265; 0.634335;, + -2.934055;-1.799264; 0.634335;, + -2.934056;-5.333374; 0.634335;, + -1.359105;-5.333375; 0.634335;, + -1.359104;-1.799264;-0.634335;, + -1.359104;-1.799265; 0.634335;, + -1.359105;-5.333375; 0.634335;, + -1.359104;-5.333374;-0.634335;, + -1.359104;-5.333374;-0.634335;, + -1.359105;-5.333375; 0.634335;, + -2.934056;-5.333374; 0.634335;, + -2.934055;-5.333374;-0.634335;, + -2.934055;-5.333374;-0.634335;, + -2.934056;-5.333374; 0.634335;, + -2.934055;-1.799264; 0.634335;, + -2.934055;-1.799264;-0.634335;, + -1.359104;-1.799265; 0.634335;, + -1.359104;-1.799264;-0.634335;, + -2.934055;-1.799264;-0.634335;, + -2.934055;-1.799264; 0.634335;, + -1.480254;-5.357221;-0.581474;, + -1.480254;-8.891331;-0.581474;, + -2.812905;-8.891331;-0.581474;, + -2.812905;-5.357221;-0.581474;, + -1.480254;-5.357222; 0.581474;, + -2.812905;-5.357221; 0.581474;, + -2.812905;-8.891331; 0.581474;, + -1.480255;-8.891333; 0.581474;, + -1.480254;-5.357221;-0.581474;, + -1.480254;-5.357222; 0.581474;, + -1.480255;-8.891333; 0.581474;, + -1.480254;-8.891331;-0.581474;, + -1.480254;-8.891331;-0.581474;, + -1.480255;-8.891333; 0.581474;, + -2.812905;-8.891331; 0.581474;, + -2.812905;-8.891331;-0.581474;, + -2.812905;-8.891331;-0.581474;, + -2.812905;-8.891331; 0.581474;, + -2.812905;-5.357221; 0.581474;, + -2.812905;-5.357221;-0.581474;, + -1.480254;-5.357222; 0.581474;, + -1.480254;-5.357221;-0.581474;, + -2.812905;-5.357221;-0.581474;, + -2.812905;-5.357221; 0.581474;, + -1.540829;-8.911617;-0.528613;, + -1.540829;-10.614025;-0.528613;, + -2.752330;-10.614025;-0.528613;, + -2.752330;-8.911616;-0.528613;, + -1.540829;-8.911617; 0.528613;, + -2.752330;-8.911617; 0.528613;, + -2.752330;-10.614025; 0.528613;, + -1.540830;-10.614026; 0.528613;, + -1.540829;-8.911617;-0.528613;, + -1.540829;-8.911617; 0.528613;, + -1.540830;-10.614026; 0.528613;, + -1.540829;-10.614025;-0.528613;, + -1.540829;-10.614025;-0.528613;, + -1.540830;-10.614026; 0.528613;, + -2.752330;-10.614025; 0.528613;, + -2.752330;-10.614025;-0.528613;, + -2.752330;-10.614025;-0.528613;, + -2.752330;-10.614025; 0.528613;, + -2.752330;-8.911617; 0.528613;, + -2.752330;-8.911616;-0.528613;, + -1.540829;-8.911617; 0.528613;, + -1.540829;-8.911617;-0.528613;, + -2.752330;-8.911616;-0.528613;, + -2.752330;-8.911617; 0.528613;, + -3.470963;-8.911617;-0.528613;, + -3.470963;-10.614025;-0.528613;, + -4.682464;-10.614025;-0.528613;, + -4.682464;-8.911616;-0.528613;, + -3.470963;-8.911617; 0.528613;, + -4.682464;-8.911617; 0.528613;, + -4.682464;-10.614025; 0.528613;, + -3.470964;-10.614026; 0.528613;, + -3.470963;-8.911617;-0.528613;, + -3.470963;-8.911617; 0.528613;, + -3.470964;-10.614026; 0.528613;, + -3.470963;-10.614025;-0.528613;, + -3.470963;-10.614025;-0.528613;, + -3.470964;-10.614026; 0.528613;, + -4.682464;-10.614025; 0.528613;, + -4.682464;-10.614025;-0.528613;, + -4.682464;-10.614025;-0.528613;, + -4.682464;-10.614025; 0.528613;, + -4.682464;-8.911617; 0.528613;, + -4.682464;-8.911616;-0.528613;, + -3.470963;-8.911617; 0.528613;, + -3.470963;-8.911617;-0.528613;, + -4.682464;-8.911616;-0.528613;, + -4.682464;-8.911617; 0.528613;, + -3.410388;-5.357221;-0.581474;, + -3.410388;-8.891331;-0.581474;, + -4.743039;-8.891331;-0.581474;, + -4.743039;-5.357221;-0.581474;, + -3.410388;-5.357222; 0.581474;, + -4.743039;-5.357221; 0.581474;, + -4.743039;-8.891331; 0.581474;, + -3.410389;-8.891333; 0.581474;, + -3.410388;-5.357221;-0.581474;, + -3.410388;-5.357222; 0.581474;, + -3.410389;-8.891333; 0.581474;, + -3.410388;-8.891331;-0.581474;, + -3.410388;-8.891331;-0.581474;, + -3.410389;-8.891333; 0.581474;, + -4.743039;-8.891331; 0.581474;, + -4.743039;-8.891331;-0.581474;, + -4.743039;-8.891331;-0.581474;, + -4.743039;-8.891331; 0.581474;, + -4.743039;-5.357221; 0.581474;, + -4.743039;-5.357221;-0.581474;, + -3.410388;-5.357222; 0.581474;, + -3.410388;-5.357221;-0.581474;, + -4.743039;-5.357221;-0.581474;, + -4.743039;-5.357221; 0.581474;, + -3.289238;-1.799264;-0.687197;, + -3.289238;-5.333374;-0.687197;, + -4.864189;-5.333374;-0.687197;, + -4.864189;-1.799264;-0.687197;, + -3.289238;-1.799265; 0.687197;, + -4.864189;-1.799264; 0.687197;, + -4.864189;-5.333374; 0.687197;, + -3.289239;-5.333375; 0.687197;, + -3.289238;-1.799264;-0.687197;, + -3.289238;-1.799265; 0.687197;, + -3.289239;-5.333375; 0.687197;, + -3.289238;-5.333374;-0.687197;, + -3.289238;-5.333374;-0.687197;, + -3.289239;-5.333375; 0.687197;, + -4.864189;-5.333374; 0.687197;, + -4.864189;-5.333374;-0.687197;, + -4.864189;-5.333374;-0.687197;, + -4.864189;-5.333374; 0.687197;, + -4.864189;-1.799264; 0.687197;, + -4.864189;-1.799264;-0.687197;, + -3.289238;-1.799265; 0.687197;, + -3.289238;-1.799264;-0.687197;, + -4.864189;-1.799264;-0.687197;, + -4.864189;-1.799264; 0.687197;, + -5.629385;-1.799264;-0.687197;, + -5.629385;-5.333374;-0.687197;, + -7.204336;-5.333374;-0.687197;, + -7.204336;-1.799264;-0.687197;, + -5.629385;-1.799265; 0.687197;, + -7.204336;-1.799264; 0.687197;, + -7.204336;-5.333374; 0.687197;, + -5.629385;-5.333375; 0.687197;, + -5.629385;-1.799264;-0.687197;, + -5.629385;-1.799265; 0.687197;, + -5.629385;-5.333375; 0.687197;, + -5.629385;-5.333374;-0.687197;, + -5.629385;-5.333374;-0.687197;, + -5.629385;-5.333375; 0.687197;, + -7.204336;-5.333374; 0.687197;, + -7.204336;-5.333374;-0.687197;, + -7.204336;-5.333374;-0.687197;, + -7.204336;-5.333374; 0.687197;, + -7.204336;-1.799264; 0.687197;, + -7.204336;-1.799264;-0.687197;, + -5.629385;-1.799265; 0.687197;, + -5.629385;-1.799264;-0.687197;, + -7.204336;-1.799264;-0.687197;, + -7.204336;-1.799264; 0.687197;, + -5.750535;-5.357221;-0.581474;, + -5.750535;-8.891331;-0.581474;, + -7.083186;-8.891331;-0.581474;, + -7.083186;-5.357221;-0.581474;, + -5.750535;-5.357222; 0.581474;, + -7.083186;-5.357221; 0.581474;, + -7.083186;-8.891331; 0.581474;, + -5.750535;-8.891333; 0.581474;, + -5.750535;-5.357221;-0.581474;, + -5.750535;-5.357222; 0.581474;, + -5.750535;-8.891333; 0.581474;, + -5.750535;-8.891331;-0.581474;, + -5.750535;-8.891331;-0.581474;, + -5.750535;-8.891333; 0.581474;, + -7.083186;-8.891331; 0.581474;, + -7.083186;-8.891331;-0.581474;, + -7.083186;-8.891331;-0.581474;, + -7.083186;-8.891331; 0.581474;, + -7.083186;-5.357221; 0.581474;, + -7.083186;-5.357221;-0.581474;, + -5.750535;-5.357222; 0.581474;, + -5.750535;-5.357221;-0.581474;, + -7.083186;-5.357221;-0.581474;, + -7.083186;-5.357221; 0.581474;, + -5.811110;-8.911617;-0.528613;, + -5.811110;-10.614025;-0.528613;, + -7.022611;-10.614025;-0.528613;, + -7.022611;-8.911616;-0.528613;, + -5.811110;-8.911617; 0.528613;, + -7.022611;-8.911617; 0.528613;, + -7.022611;-10.614025; 0.528613;, + -5.811110;-10.614026; 0.528613;, + -5.811110;-8.911617;-0.528613;, + -5.811110;-8.911617; 0.528613;, + -5.811110;-10.614026; 0.528613;, + -5.811110;-10.614025;-0.528613;, + -5.811110;-10.614025;-0.528613;, + -5.811110;-10.614026; 0.528613;, + -7.022611;-10.614025; 0.528613;, + -7.022611;-10.614025;-0.528613;, + -7.022611;-10.614025;-0.528613;, + -7.022611;-10.614025; 0.528613;, + -7.022611;-8.911617; 0.528613;, + -7.022611;-8.911616;-0.528613;, + -5.811110;-8.911617; 0.528613;, + -5.811110;-8.911617;-0.528613;, + -7.022611;-8.911616;-0.528613;, + -7.022611;-8.911617; 0.528613;, + -7.868211;-8.911617;-0.528613;, + -7.868211;-10.614025;-0.528613;, + -9.079711;-10.614025;-0.528613;, + -9.079711;-8.911616;-0.528613;, + -7.868210;-8.911617; 0.528613;, + -9.079711;-8.911617; 0.528613;, + -9.079712;-10.614025; 0.528613;, + -7.868211;-10.614026; 0.528613;, + -7.868211;-8.911617;-0.528613;, + -7.868210;-8.911617; 0.528613;, + -7.868211;-10.614026; 0.528613;, + -7.868211;-10.614025;-0.528613;, + -7.868211;-10.614025;-0.528613;, + -7.868211;-10.614026; 0.528613;, + -9.079712;-10.614025; 0.528613;, + -9.079711;-10.614025;-0.528613;, + -9.079711;-10.614025;-0.528613;, + -9.079712;-10.614025; 0.528613;, + -9.079711;-8.911617; 0.528613;, + -9.079711;-8.911616;-0.528613;, + -7.868210;-8.911617; 0.528613;, + -7.868211;-8.911617;-0.528613;, + -9.079711;-8.911616;-0.528613;, + -9.079711;-8.911617; 0.528613;, + -7.807635;-5.357221;-0.581474;, + -7.807635;-8.891331;-0.581474;, + -9.140286;-8.891331;-0.581474;, + -9.140285;-5.357221;-0.581474;, + -7.807635;-5.357222; 0.581474;, + -9.140286;-5.357221; 0.581474;, + -9.140286;-8.891331; 0.581474;, + -7.807636;-8.891333; 0.581474;, + -7.807635;-5.357221;-0.581474;, + -7.807635;-5.357222; 0.581474;, + -7.807636;-8.891333; 0.581474;, + -7.807635;-8.891331;-0.581474;, + -7.807635;-8.891331;-0.581474;, + -7.807636;-8.891333; 0.581474;, + -9.140286;-8.891331; 0.581474;, + -9.140286;-8.891331;-0.581474;, + -9.140286;-8.891331;-0.581474;, + -9.140286;-8.891331; 0.581474;, + -9.140286;-5.357221; 0.581474;, + -9.140285;-5.357221;-0.581474;, + -7.807635;-5.357222; 0.581474;, + -7.807635;-5.357221;-0.581474;, + -9.140285;-5.357221;-0.581474;, + -9.140286;-5.357221; 0.581474;, + -7.686485;-1.799264;-0.687197;, + -7.686485;-5.333374;-0.687197;, + -9.261436;-5.333374;-0.687197;, + -9.261436;-1.799264;-0.687197;, + -7.686485;-1.799265; 0.687197;, + -9.261436;-1.799264; 0.687197;, + -9.261436;-5.333374; 0.687197;, + -7.686486;-5.333375; 0.687197;, + -7.686485;-1.799264;-0.687197;, + -7.686485;-1.799265; 0.687197;, + -7.686486;-5.333375; 0.687197;, + -7.686485;-5.333374;-0.687197;, + -7.686485;-5.333374;-0.687197;, + -7.686486;-5.333375; 0.687197;, + -9.261436;-5.333374; 0.687197;, + -9.261436;-5.333374;-0.687197;, + -9.261436;-5.333374;-0.687197;, + -9.261436;-5.333374; 0.687197;, + -9.261436;-1.799264; 0.687197;, + -9.261436;-1.799264;-0.687197;, + -7.686485;-1.799265; 0.687197;, + -7.686485;-1.799264;-0.687197;, + -9.261436;-1.799264;-0.687197;, + -9.261436;-1.799264; 0.687197;, + -10.782356;-0.636671;-4.141139;, + -10.782356;-0.845377;-4.141139;, + -11.024656;-0.845377;-4.141139;, + -11.024656;-0.636671;-4.141139;, + -10.782356;-0.636671;-2.555301;, + -11.024656;-0.636671;-2.555301;, + -11.024656;-0.845377;-2.555301;, + -10.782356;-0.845377;-2.555301;, + -10.782356;-0.636671;-4.141139;, + -10.782356;-0.636671;-2.555301;, + -10.782356;-0.845377;-2.555301;, + -10.782356;-0.845377;-4.141139;, + -10.782356;-0.845377;-4.141139;, + -10.782356;-0.845377;-2.555301;, + -11.024656;-0.845377;-2.555301;, + -11.024656;-0.845377;-4.141139;, + -11.024656;-0.845377;-4.141139;, + -11.024656;-0.845377;-2.555301;, + -11.024656;-0.636671;-2.555301;, + -11.024656;-0.636671;-4.141139;, + -10.782356;-0.636671;-2.555301;, + -10.782356;-0.636671;-4.141139;, + -11.024656;-0.636671;-4.141139;, + -11.024656;-0.636671;-2.555301;, + -10.782356; 0.889617;-4.134565;, + -10.782356; 0.658270;-4.134565;, + -11.024656; 0.658270;-4.134565;, + -11.024656; 0.889617;-4.134565;, + -10.782356; 0.889617;-2.548727;, + -11.024656; 0.889617;-2.548727;, + -11.024656; 0.658270;-2.548727;, + -10.782356; 0.658270;-2.548727;, + -10.782356; 0.889617;-4.134565;, + -10.782356; 0.889617;-2.548727;, + -10.782356; 0.658270;-2.548727;, + -10.782356; 0.658270;-4.134565;, + -10.782356; 0.658270;-4.134565;, + -10.782356; 0.658270;-2.548727;, + -11.024656; 0.658270;-2.548727;, + -11.024656; 0.658270;-4.134565;, + -11.024656; 0.658270;-4.134565;, + -11.024656; 0.658270;-2.548727;, + -11.024656; 0.889617;-2.548727;, + -11.024656; 0.889617;-4.134565;, + -10.782356; 0.889617;-2.548727;, + -10.782356; 0.889617;-4.134565;, + -11.024656; 0.889617;-4.134565;, + -11.024656; 0.889617;-2.548727;, + -9.828722; 1.200663;-2.663285;, + -9.828722; 0.309838;-2.663285;, + -11.094425; 0.309838;-2.663285;, + -11.094424; 1.200664;-2.663285;, + -9.828722; 1.200663; 1.618752;, + -11.094424; 1.200663; 1.618752;, + -11.094425; 0.309838; 1.618752;, + -9.828723; 0.309838; 1.618752;, + -9.828722; 1.200663;-2.663285;, + -9.828722; 1.200663; 1.618752;, + -9.828723; 0.309838; 1.618752;, + -9.828722; 0.309838;-2.663285;, + -9.828722; 0.309838;-2.663285;, + -9.828723; 0.309838; 1.618752;, + -11.094425; 0.309838; 1.618752;, + -11.094425; 0.309838;-2.663285;, + -11.094425; 0.309838;-2.663285;, + -11.094425; 0.309838; 1.618752;, + -11.094424; 1.200663; 1.618752;, + -11.094424; 1.200664;-2.663285;, + -9.828722; 1.200663; 1.618752;, + -9.828722; 1.200663;-2.663285;, + -11.094424; 1.200664;-2.663285;, + -11.094424; 1.200663; 1.618752;, + -9.850704;-0.280658;-2.654951;, + -9.850704;-1.200378;-2.654951;, + -11.116406;-1.200378;-2.654951;, + -11.116405;-0.280658;-2.654951;, + -9.850703;-0.280658; 1.574314;, + -11.116405;-0.280658; 1.574314;, + -11.116406;-1.200378; 1.574314;, + -9.850704;-1.200378; 1.574314;, + -9.850704;-0.280658;-2.654951;, + -9.850703;-0.280658; 1.574314;, + -9.850704;-1.200378; 1.574314;, + -9.850704;-1.200378;-2.654951;, + -9.850704;-1.200378;-2.654951;, + -9.850704;-1.200378; 1.574314;, + -11.116406;-1.200378; 1.574314;, + -11.116406;-1.200378;-2.654951;, + -11.116406;-1.200378;-2.654951;, + -11.116406;-1.200378; 1.574314;, + -11.116405;-0.280658; 1.574314;, + -11.116405;-0.280658;-2.654951;, + -9.850703;-0.280658; 1.574314;, + -9.850704;-0.280658;-2.654951;, + -11.116405;-0.280658;-2.654951;, + -11.116405;-0.280658; 1.574314;, + -1.067807; 1.767679;-1.336698;, + -1.067807;-1.767679;-1.336698;, + -9.790613;-1.767679;-1.336698;, + -9.790611; 1.767680;-1.336698;, + -1.067805; 1.767678; 3.491477;, + -9.790613; 1.767679; 3.491477;, + -9.790615;-1.767679; 3.491477;, + -1.067810;-1.767680; 3.491477;, + -1.067807; 1.767679;-1.336698;, + -1.067805; 1.767678; 3.491477;, + -1.067810;-1.767680; 3.491477;, + -1.067807;-1.767679;-1.336698;, + -1.067807;-1.767679;-1.336698;, + -1.067810;-1.767680; 3.491477;, + -9.790615;-1.767679; 3.491477;, + -9.790613;-1.767679;-1.336698;, + -9.790613;-1.767679;-1.336698;, + -9.790615;-1.767679; 3.491477;, + -9.790613; 1.767679; 3.491477;, + -9.790611; 1.767680;-1.336698;, + -1.067805; 1.767678; 3.491477;, + -1.067807; 1.767679;-1.336698;, + -9.790611; 1.767680;-1.336698;, + -9.790613; 1.767679; 3.491477;, + 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.999999; 1.000000;, + -1.000000; 1.000000; 1.000000;, + -1.000000;-1.000000; 1.000000;, + 0.999999;-1.000001; 1.000000;, + 1.000000; 1.000000;-1.000000;, + 1.000000; 0.999999; 1.000000;, + 0.999999;-1.000001; 1.000000;, + 1.000000;-1.000000;-1.000000;, + 1.000000;-1.000000;-1.000000;, + 0.999999;-1.000001; 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.999999; 1.000000;, + 1.000000; 1.000000;-1.000000;, + -1.000000; 1.000000;-1.000000;, + -1.000000; 1.000000; 1.000000;, + 11.575288; 2.184071;-1.156314;, + 11.575288;-2.184071;-1.156314;, + 1.099999;-2.184071;-1.156314;, + 1.100001; 2.184072;-1.156314;, + 11.575291; 2.184070; 2.951054;, + 1.100000; 2.184071; 2.951054;, + 1.099998;-2.184071; 2.951054;, + 11.575285;-2.184072; 2.951054;, + 11.575288; 2.184071;-1.156314;, + 11.575291; 2.184070; 2.951054;, + 11.575285;-2.184072; 2.951054;, + 11.575288;-2.184071;-1.156314;, + 11.575288;-2.184071;-1.156314;, + 11.575285;-2.184072; 2.951054;, + 1.099998;-2.184071; 2.951054;, + 1.099999;-2.184071;-1.156314;, + 1.099999;-2.184071;-1.156314;, + 1.099998;-2.184071; 2.951054;, + 1.100000; 2.184071; 2.951054;, + 1.100001; 2.184072;-1.156314;, + 11.575291; 2.184070; 2.951054;, + 11.575288; 2.184071;-1.156314;, + 1.100001; 2.184072;-1.156314;, + 1.100000; 2.184071; 2.951054;; + 186; + 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;, + 4;351,350,349,348;, + 4;355,354,353,352;, + 4;359,358,357,356;, + 4;363,362,361,360;, + 4;367,366,365,364;, + 4;371,370,369,368;, + 4;375,374,373,372;, + 4;379,378,377,376;, + 4;383,382,381,380;, + 4;387,386,385,384;, + 4;391,390,389,388;, + 4;395,394,393,392;, + 4;399,398,397,396;, + 4;403,402,401,400;, + 4;407,406,405,404;, + 4;411,410,409,408;, + 4;415,414,413,412;, + 4;419,418,417,416;, + 4;423,422,421,420;, + 4;427,426,425,424;, + 4;431,430,429,428;, + 4;435,434,433,432;, + 4;439,438,437,436;, + 4;443,442,441,440;, + 4;447,446,445,444;, + 4;451,450,449,448;, + 4;455,454,453,452;, + 4;459,458,457,456;, + 4;463,462,461,460;, + 4;467,466,465,464;, + 4;471,470,469,468;, + 4;475,474,473,472;, + 4;479,478,477,476;, + 4;483,482,481,480;, + 4;487,486,485,484;, + 4;491,490,489,488;, + 4;495,494,493,492;, + 4;499,498,497,496;, + 4;503,502,501,500;, + 4;507,506,505,504;, + 4;511,510,509,508;, + 4;515,514,513,512;, + 4;519,518,517,516;, + 4;523,522,521,520;, + 4;527,526,525,524;, + 4;531,530,529,528;, + 4;535,534,533,532;, + 4;539,538,537,536;, + 4;543,542,541,540;, + 4;547,546,545,544;, + 4;551,550,549,548;, + 4;555,554,553,552;, + 4;559,558,557,556;, + 4;563,562,561,560;, + 4;567,566,565,564;, + 4;571,570,569,568;, + 4;575,574,573,572;, + 4;579,578,577,576;, + 4;583,582,581,580;, + 4;587,586,585,584;, + 4;591,590,589,588;, + 4;595,594,593,592;, + 4;599,598,597,596;, + 4;603,602,601,600;, + 4;607,606,605,604;, + 4;611,610,609,608;, + 4;615,614,613,612;, + 4;619,618,617,616;, + 4;623,622,621,620;, + 4;627,626,625,624;, + 4;631,630,629,628;, + 4;635,634,633,632;, + 4;639,638,637,636;, + 4;643,642,641,640;, + 4;647,646,645,644;, + 4;651,650,649,648;, + 4;655,654,653,652;, + 4;659,658,657,656;, + 4;663,662,661,660;, + 4;667,666,665,664;, + 4;671,670,669,668;, + 4;675,674,673,672;, + 4;679,678,677,676;, + 4;683,682,681,680;, + 4;687,686,685,684;, + 4;691,690,689,688;, + 4;695,694,693,692;, + 4;699,698,697,696;, + 4;703,702,701,700;, + 4;707,706,705,704;, + 4;711,710,709,708;, + 4;715,714,713,712;, + 4;719,718,717,716;, + 4;723,722,721,720;, + 4;727,726,725,724;, + 4;731,730,729,728;, + 4;735,734,733,732;, + 4;739,738,737,736;, + 4;743,742,741,740;; + MeshNormals { // Cube_001 normals + 186; + 0.000000; 0.000000;-1.000000;, + 0.000000;-0.000000; 1.000000;, + 1.000000;-0.000000; 0.000000;, + -0.000001;-1.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + 0.000001; 1.000000; 0.000001;, + 0.000000; 0.000000;-1.000000;, + 0.000000;-0.000000; 1.000000;, + 1.000000;-0.000000; 0.000000;, + -0.000001;-1.000000;-0.000000;, + -1.000000;-0.000000; 0.000000;, + 0.000000; 1.000000; 0.000001;, + 0.000000; 0.000000;-1.000000;, + 0.000000;-0.000000; 1.000000;, + 1.000000;-0.000000;-0.000000;, + -0.000000;-1.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000;-0.000000; 1.000000;, + 1.000000;-0.000000;-0.000000;, + -0.000000;-1.000000;-0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000;-0.000000; 1.000000;, + 1.000000;-0.000000;-0.000000;, + -0.000001;-1.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + 0.000000; 1.000000; 0.000001;, + 0.000000; 0.000000;-1.000000;, + 0.000000;-0.000000; 1.000000;, + 1.000000;-0.000000;-0.000000;, + -0.000001;-1.000000;-0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000001; 1.000000; 0.000001;, + 0.000000; 0.000000;-1.000000;, + 0.000000;-0.000000; 1.000000;, + 1.000000;-0.000000; 0.000000;, + -0.000001;-1.000000;-0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000001; 1.000000; 0.000001;, + 0.000000; 0.000000;-1.000000;, + 0.000000;-0.000000; 1.000000;, + 1.000000;-0.000000; 0.000000;, + -0.000001;-1.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + 0.000000; 1.000000; 0.000001;, + 0.000000; 0.000000;-1.000000;, + 0.000000;-0.000000; 1.000000;, + 1.000000;-0.000000; 0.000000;, + -0.000000;-1.000000;-0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000;-0.000000; 1.000000;, + 1.000000;-0.000000; 0.000000;, + -0.000000;-1.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000;-0.000000; 1.000000;, + 1.000000;-0.000000; 0.000000;, + -0.000001;-1.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + 0.000000; 1.000000; 0.000001;, + 0.000000; 0.000000;-1.000000;, + 0.000000;-0.000000; 1.000000;, + 1.000000;-0.000000; 0.000000;, + -0.000001;-1.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + 0.000001; 1.000000; 0.000001;, + 0.000000; 0.000000;-1.000000;, + 0.000000;-0.000000; 1.000000;, + 1.000000;-0.000000; 0.000000;, + -0.000001;-1.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + 0.000001; 1.000000; 0.000001;, + 0.000000; 0.000000;-1.000000;, + 0.000000;-0.000000; 1.000000;, + 1.000000;-0.000000; 0.000000;, + -0.000001;-1.000000;-0.000001;, + -1.000000; 0.000000;-0.000000;, + 0.000001; 1.000000; 0.000001;, + 0.000000; 0.000000;-1.000000;, + 0.000000;-0.000000; 1.000000;, + 1.000000;-0.000000; 0.000000;, + -0.000000;-1.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000;-0.000000; 1.000000;, + 1.000000;-0.000000; 0.000000;, + -0.000000;-1.000000;-0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000;-0.000000; 1.000000;, + 1.000000;-0.000000; 0.000000;, + -0.000001;-1.000000;-0.000001;, + -1.000000; 0.000000; 0.000000;, + 0.000001; 1.000000; 0.000001;, + 0.000000; 0.000000;-1.000000;, + 0.000000;-0.000000; 1.000000;, + 1.000000;-0.000000; 0.000000;, + -0.000001;-1.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + 0.000001; 1.000000; 0.000001;, + 0.000000; 0.000000;-1.000000;, + 0.000000;-0.000000; 1.000000;, + 1.000000;-0.000000; 0.000000;, + -0.000001;-1.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + 0.000001; 1.000000; 0.000001;, + 0.000000; 0.000000;-1.000000;, + 0.000000;-0.000000; 1.000000;, + 1.000000;-0.000000; 0.000000;, + -0.000001;-1.000000;-0.000001;, + -1.000000; 0.000000; 0.000000;, + 0.000001; 1.000000; 0.000001;, + 0.000000; 0.000000;-1.000000;, + 0.000000;-0.000000; 1.000000;, + 1.000000;-0.000000;-0.000000;, + -0.000000;-1.000000;-0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000;-0.000000; 1.000000;, + 1.000000;-0.000000;-0.000000;, + -0.000000;-1.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000;-0.000000; 1.000000;, + 1.000000;-0.000000; 0.000000;, + -0.000001;-1.000000;-0.000001;, + -1.000000; 0.000000;-0.000000;, + 0.000001; 1.000000; 0.000001;, + 0.000000; 0.000000;-1.000000;, + 0.000000;-0.000000; 1.000000;, + 1.000000;-0.000000; 0.000000;, + -0.000001;-1.000000;-0.000000;, + -1.000000;-0.000000; 0.000000;, + 0.000001; 1.000000; 0.000001;, + 0.000000; 0.000000;-1.000000;, + 0.000000;-0.000000; 1.000000;, + 1.000000;-0.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000;-0.000000; 1.000000;, + 1.000000;-0.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000;-0.000000; 1.000000;, + 1.000000;-0.000001; 0.000000;, + -0.000000;-1.000000;-0.000000;, + -1.000000; 0.000001; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000;-0.000000; 1.000000;, + 1.000000;-0.000001;-0.000000;, + -0.000000;-1.000000;-0.000000;, + -1.000000; 0.000001; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000;-0.000000; 1.000000;, + 1.000000;-0.000001; 0.000000;, + -0.000000;-1.000000;-0.000000;, + -1.000000; 0.000001;-0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000;-0.000000; 1.000000;, + 1.000000;-0.000000; 0.000000;, + -0.000000;-1.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000;-0.000000; 1.000000;, + 1.000000;-0.000001;-0.000000;, + -0.000000;-1.000000;-0.000000;, + -1.000000; 0.000001;-0.000000;, + 0.000000; 1.000000; 0.000000;; + 186; + 4;0,0,0,0;, + 4;1,1,1,1;, + 4;2,2,2,2;, + 4;3,3,3,3;, + 4;4,4,4,4;, + 4;5,5,5,5;, + 4;6,6,6,6;, + 4;7,7,7,7;, + 4;8,8,8,8;, + 4;9,9,9,9;, + 4;10,10,10,10;, + 4;11,11,11,11;, + 4;12,12,12,12;, + 4;13,13,13,13;, + 4;14,14,14,14;, + 4;15,15,15,15;, + 4;16,16,16,16;, + 4;17,17,17,17;, + 4;18,18,18,18;, + 4;19,19,19,19;, + 4;20,20,20,20;, + 4;21,21,21,21;, + 4;22,22,22,22;, + 4;23,23,23,23;, + 4;24,24,24,24;, + 4;25,25,25,25;, + 4;26,26,26,26;, + 4;27,27,27,27;, + 4;28,28,28,28;, + 4;29,29,29,29;, + 4;30,30,30,30;, + 4;31,31,31,31;, + 4;32,32,32,32;, + 4;33,33,33,33;, + 4;34,34,34,34;, + 4;35,35,35,35;, + 4;36,36,36,36;, + 4;37,37,37,37;, + 4;38,38,38,38;, + 4;39,39,39,39;, + 4;40,40,40,40;, + 4;41,41,41,41;, + 4;42,42,42,42;, + 4;43,43,43,43;, + 4;44,44,44,44;, + 4;45,45,45,45;, + 4;46,46,46,46;, + 4;47,47,47,47;, + 4;48,48,48,48;, + 4;49,49,49,49;, + 4;50,50,50,50;, + 4;51,51,51,51;, + 4;52,52,52,52;, + 4;53,53,53,53;, + 4;54,54,54,54;, + 4;55,55,55,55;, + 4;56,56,56,56;, + 4;57,57,57,57;, + 4;58,58,58,58;, + 4;59,59,59,59;, + 4;60,60,60,60;, + 4;61,61,61,61;, + 4;62,62,62,62;, + 4;63,63,63,63;, + 4;64,64,64,64;, + 4;65,65,65,65;, + 4;66,66,66,66;, + 4;67,67,67,67;, + 4;68,68,68,68;, + 4;69,69,69,69;, + 4;70,70,70,70;, + 4;71,71,71,71;, + 4;72,72,72,72;, + 4;73,73,73,73;, + 4;74,74,74,74;, + 4;75,75,75,75;, + 4;76,76,76,76;, + 4;77,77,77,77;, + 4;78,78,78,78;, + 4;79,79,79,79;, + 4;80,80,80,80;, + 4;81,81,81,81;, + 4;82,82,82,82;, + 4;83,83,83,83;, + 4;84,84,84,84;, + 4;85,85,85,85;, + 4;86,86,86,86;, + 4;87,87,87,87;, + 4;88,88,88,88;, + 4;89,89,89,89;, + 4;90,90,90,90;, + 4;91,91,91,91;, + 4;92,92,92,92;, + 4;93,93,93,93;, + 4;94,94,94,94;, + 4;95,95,95,95;, + 4;96,96,96,96;, + 4;97,97,97,97;, + 4;98,98,98,98;, + 4;99,99,99,99;, + 4;100,100,100,100;, + 4;101,101,101,101;, + 4;102,102,102,102;, + 4;103,103,103,103;, + 4;104,104,104,104;, + 4;105,105,105,105;, + 4;106,106,106,106;, + 4;107,107,107,107;, + 4;108,108,108,108;, + 4;109,109,109,109;, + 4;110,110,110,110;, + 4;111,111,111,111;, + 4;112,112,112,112;, + 4;113,113,113,113;, + 4;114,114,114,114;, + 4;115,115,115,115;, + 4;116,116,116,116;, + 4;117,117,117,117;, + 4;118,118,118,118;, + 4;119,119,119,119;, + 4;120,120,120,120;, + 4;121,121,121,121;, + 4;122,122,122,122;, + 4;123,123,123,123;, + 4;124,124,124,124;, + 4;125,125,125,125;, + 4;126,126,126,126;, + 4;127,127,127,127;, + 4;128,128,128,128;, + 4;129,129,129,129;, + 4;130,130,130,130;, + 4;131,131,131,131;, + 4;132,132,132,132;, + 4;133,133,133,133;, + 4;134,134,134,134;, + 4;135,135,135,135;, + 4;136,136,136,136;, + 4;137,137,137,137;, + 4;138,138,138,138;, + 4;139,139,139,139;, + 4;140,140,140,140;, + 4;141,141,141,141;, + 4;142,142,142,142;, + 4;143,143,143,143;, + 4;144,144,144,144;, + 4;145,145,145,145;, + 4;146,146,146,146;, + 4;147,147,147,147;, + 4;148,148,148,148;, + 4;149,149,149,149;, + 4;150,150,150,150;, + 4;151,151,151,151;, + 4;152,152,152,152;, + 4;153,153,153,153;, + 4;154,154,154,154;, + 4;155,155,155,155;, + 4;156,156,156,156;, + 4;157,157,157,157;, + 4;158,158,158,158;, + 4;159,159,159,159;, + 4;160,160,160,160;, + 4;161,161,161,161;, + 4;162,162,162,162;, + 4;163,163,163,163;, + 4;164,164,164,164;, + 4;165,165,165,165;, + 4;166,166,166,166;, + 4;167,167,167,167;, + 4;168,168,168,168;, + 4;169,169,169,169;, + 4;170,170,170,170;, + 4;171,171,171,171;, + 4;172,172,172,172;, + 4;173,173,173,173;, + 4;174,174,174,174;, + 4;175,175,175,175;, + 4;176,176,176,176;, + 4;177,177,177,177;, + 4;178,178,178,178;, + 4;179,179,179,179;, + 4;180,180,180,180;, + 4;181,181,181,181;, + 4;182,182,182,182;, + 4;183,183,183,183;, + 4;184,184,184,184;, + 4;185,185,185,185;; + } // End of Cube_001 normals + MeshTextureCoords { // Cube_001 UV coordinates + 744; + 0.302262; 0.155803;, + 0.302262; 0.269389;, + 0.345250; 0.269389;, + 0.345250; 0.155802;, + 0.087322; 0.155803;, + 0.044334; 0.155803;, + 0.044334; 0.269389;, + 0.087322; 0.269389;, + 0.882562; 0.772828;, + 0.845048; 0.772828;, + 0.845048; 0.886414;, + 0.882562; 0.886414;, + 0.987958; 0.452192;, + 0.950444; 0.452192;, + 0.950444; 0.495024;, + 0.987958; 0.495024;, + 0.848057; 0.322567;, + 0.885571; 0.322567;, + 0.885571; 0.208981;, + 0.848058; 0.208981;, + 0.898216; 0.663600;, + 0.860703; 0.663600;, + 0.860703; 0.706431;, + 0.898216; 0.706431;, + 0.508039; 0.382975;, + 0.508039; 0.269389;, + 0.457235; 0.269389;, + 0.457235; 0.382975;, + 0.000000; 0.382975;, + 0.050804; 0.382975;, + 0.050804; 0.269389;, + 0.000000; 0.269389;, + 0.760735; 0.208981;, + 0.716401; 0.208981;, + 0.716401; 0.322567;, + 0.760735; 0.322567;, + 0.478320; 0.054565;, + 0.433985; 0.054565;, + 0.433985; 0.105184;, + 0.478319; 0.105184;, + 0.000000; 0.269389;, + 0.044334; 0.269389;, + 0.044334; 0.155803;, + 0.000000; 0.155803;, + 0.590377; 0.133027;, + 0.634711; 0.133027;, + 0.634711; 0.082408;, + 0.590377; 0.082408;, + 0.965897; 0.099550;, + 0.965897; 0.044835;, + 0.926817; 0.044835;, + 0.926817; 0.099550;, + 0.539573; 0.104751;, + 0.578653; 0.104751;, + 0.578653; 0.050035;, + 0.539573; 0.050035;, + 0.984548; 0.495024;, + 0.950444; 0.495024;, + 0.950444; 0.549739;, + 0.984548; 0.549739;, + 0.672066; 0.040680;, + 0.706170; 0.040680;, + 0.706170; 0.001742;, + 0.672066; 0.001742;, + 0.668815; 0.023597;, + 0.634711; 0.023597;, + 0.634711; 0.078312;, + 0.668815; 0.078312;, + 0.965897; 0.170043;, + 1.000000; 0.170043;, + 1.000000; 0.131106;, + 0.965897; 0.131106;, + 0.863882; 0.763263;, + 0.863882; 0.708548;, + 0.820894; 0.708548;, + 0.820894; 0.763263;, + 0.748161; 0.663600;, + 0.705173; 0.663600;, + 0.705173; 0.718315;, + 0.748161; 0.718315;, + 0.288185; 0.036807;, + 0.254082; 0.036807;, + 0.254082; 0.091523;, + 0.288185; 0.091523;, + 0.962566; 0.957169;, + 0.996669; 0.957169;, + 0.996669; 0.914337;, + 0.962566; 0.914337;, + 0.322288; 0.036807;, + 0.288185; 0.036807;, + 0.288185; 0.091523;, + 0.322288; 0.091523;, + 0.996669; 0.957169;, + 0.962566; 0.957169;, + 0.962566; 1.000000;, + 0.996669; 1.000000;, + 0.590377; 0.382541;, + 0.590377; 0.268955;, + 0.539573; 0.268955;, + 0.539573; 0.382541;, + 0.722870; 0.549739;, + 0.672066; 0.549739;, + 0.672066; 0.663325;, + 0.722870; 0.663325;, + 0.767205; 0.322567;, + 0.722870; 0.322567;, + 0.722870; 0.436153;, + 0.767205; 0.436153;, + 0.478319; 0.155802;, + 0.522654; 0.155802;, + 0.522654; 0.105184;, + 0.478320; 0.105184;, + 0.811539; 0.436153;, + 0.767205; 0.436153;, + 0.767205; 0.549739;, + 0.811539; 0.549739;, + 0.433985; 0.105184;, + 0.389651; 0.105184;, + 0.389651; 0.155802;, + 0.433985; 0.155802;, + 0.173298; 0.155803;, + 0.173298; 0.269389;, + 0.216286; 0.269389;, + 0.216286; 0.155802;, + 0.539573; 0.268955;, + 0.582561; 0.268955;, + 0.582561; 0.155369;, + 0.539573; 0.155369;, + 0.892041; 0.322567;, + 0.854527; 0.322567;, + 0.854527; 0.436153;, + 0.892041; 0.436153;, + 0.959156; 0.748790;, + 0.996669; 0.748790;, + 0.996669; 0.705958;, + 0.959156; 0.705958;, + 0.859635; 0.095395;, + 0.822121; 0.095395;, + 0.822121; 0.208981;, + 0.859635; 0.208981;, + 0.382830; 0.011734;, + 0.345316; 0.011734;, + 0.345316; 0.054565;, + 0.382830; 0.054565;, + 0.854527; 0.663325;, + 0.854527; 0.549739;, + 0.811539; 0.549739;, + 0.811539; 0.663325;, + 0.388238; 0.269389;, + 0.431226; 0.269389;, + 0.431226; 0.155803;, + 0.388238; 0.155803;, + 0.892041; 0.436153;, + 0.854527; 0.436153;, + 0.854527; 0.549739;, + 0.892041; 0.549739;, + 0.962165; 0.322567;, + 0.999679; 0.322567;, + 0.999679; 0.279736;, + 0.962165; 0.279736;, + 0.709580; 0.208981;, + 0.747094; 0.208981;, + 0.747094; 0.095395;, + 0.709580; 0.095395;, + 0.495371; 0.054565;, + 0.532885; 0.054565;, + 0.532885; 0.011734;, + 0.495371; 0.011734;, + 0.457235; 0.382975;, + 0.457235; 0.269389;, + 0.406431; 0.269389;, + 0.406431; 0.382975;, + 0.101608; 0.269389;, + 0.050804; 0.269389;, + 0.050804; 0.382975;, + 0.101608; 0.382975;, + 0.716401; 0.208981;, + 0.672066; 0.208981;, + 0.672066; 0.322567;, + 0.716401; 0.322567;, + 0.863882; 0.763263;, + 0.908217; 0.763263;, + 0.908217; 0.712645;, + 0.863882; 0.712645;, + 0.845048; 0.772828;, + 0.800714; 0.772828;, + 0.800714; 0.886414;, + 0.845048; 0.886414;, + 0.389651; 0.105184;, + 0.345316; 0.105184;, + 0.345316; 0.155802;, + 0.389651; 0.155802;, + 0.962566; 1.000000;, + 0.962566; 0.945285;, + 0.923486; 0.945285;, + 0.923486; 1.000000;, + 0.750226; 0.040680;, + 0.711146; 0.040680;, + 0.711146; 0.095395;, + 0.750226; 0.095395;, + 0.963658; 0.553894;, + 0.929555; 0.553894;, + 0.929555; 0.608610;, + 0.963658; 0.608610;, + 0.965897; 0.131106;, + 1.000000; 0.131106;, + 1.000000; 0.092168;, + 0.965897; 0.092168;, + 0.185875; 0.036807;, + 0.151771; 0.036807;, + 0.151771; 0.091523;, + 0.185875; 0.091523;, + 0.965897; 0.208981;, + 1.000000; 0.208981;, + 1.000000; 0.170043;, + 0.965897; 0.170043;, + 0.867466; 0.095395;, + 0.867466; 0.040680;, + 0.828386; 0.040680;, + 0.828386; 0.095395;, + 0.962566; 0.890569;, + 0.923486; 0.890569;, + 0.923486; 0.945285;, + 0.962566; 0.945285;, + 0.668815; 0.078312;, + 0.634711; 0.078312;, + 0.634711; 0.133027;, + 0.668815; 0.133027;, + 0.997761; 0.624387;, + 0.963658; 0.624388;, + 0.963658; 0.663325;, + 0.997761; 0.663325;, + 0.150055; 0.036807;, + 0.115952; 0.036807;, + 0.115952; 0.091523;, + 0.150055; 0.091523;, + 0.995023; 0.005898;, + 0.960920; 0.005898;, + 0.960920; 0.044835;, + 0.995023; 0.044835;, + 0.715551; 0.886414;, + 0.715551; 0.772828;, + 0.660839; 0.772828;, + 0.660839; 0.886414;, + 0.715551; 0.886414;, + 0.660839; 0.886414;, + 0.660839; 1.000000;, + 0.715551; 1.000000;, + 0.800714; 0.886414;, + 0.756379; 0.886414;, + 0.756379; 1.000000;, + 0.800714; 1.000000;, + 0.660839; 0.772828;, + 0.705173; 0.772828;, + 0.705173; 0.718315;, + 0.660839; 0.718315;, + 0.767205; 0.549739;, + 0.722870; 0.549739;, + 0.722870; 0.663325;, + 0.767205; 0.663325;, + 0.660839; 0.718315;, + 0.705173; 0.718315;, + 0.705173; 0.663803;, + 0.660839; 0.663803;, + 0.302262; 0.269389;, + 0.302262; 0.155803;, + 0.259274; 0.155803;, + 0.259274; 0.269389;, + 0.811539; 0.549739;, + 0.854527; 0.549739;, + 0.854527; 0.436153;, + 0.811539; 0.436153;, + 0.822121; 0.095395;, + 0.784607; 0.095395;, + 0.784608; 0.208981;, + 0.822121; 0.208981;, + 0.577087; 0.007204;, + 0.539573; 0.007204;, + 0.539573; 0.050035;, + 0.577087; 0.050035;, + 0.920076; 0.772828;, + 0.882562; 0.772828;, + 0.882562; 0.886414;, + 0.920076; 0.886414;, + 0.860703; 0.663600;, + 0.823189; 0.663600;, + 0.823189; 0.706431;, + 0.860703; 0.706431;, + 0.355628; 0.382975;, + 0.355628; 0.269389;, + 0.304824; 0.269389;, + 0.304824; 0.382975;, + 0.101608; 0.382975;, + 0.152412; 0.382975;, + 0.152412; 0.269389;, + 0.101608; 0.269389;, + 0.885972; 0.886414;, + 0.845048; 0.886414;, + 0.845048; 1.000000;, + 0.885972; 1.000000;, + 0.000000; 0.091523;, + 0.040924; 0.091523;, + 0.040924; 0.040904;, + 0.000000; 0.040904;, + 0.631301; 0.133027;, + 0.590377; 0.133027;, + 0.590377; 0.246613;, + 0.631301; 0.246613;, + 0.040924; 0.091523;, + 0.081848; 0.091523;, + 0.081848; 0.040904;, + 0.040924; 0.040904;, + 0.848057; 0.322567;, + 0.848057; 0.208981;, + 0.805070; 0.208981;, + 0.805070; 0.322567;, + 0.216286; 0.269389;, + 0.259274; 0.269389;, + 0.259274; 0.155803;, + 0.216286; 0.155803;, + 0.784607; 0.095395;, + 0.747094; 0.095395;, + 0.747094; 0.208981;, + 0.784607; 0.208981;, + 0.823189; 0.663600;, + 0.785675; 0.663600;, + 0.785675; 0.706431;, + 0.823189; 0.706431;, + 0.923085; 0.208981;, + 0.885571; 0.208981;, + 0.885571; 0.322567;, + 0.923085; 0.322567;, + 0.495371; 0.011734;, + 0.457857; 0.011734;, + 0.457857; 0.054565;, + 0.495371; 0.054565;, + 0.828386; 0.095395;, + 0.828386; 0.040680;, + 0.789306; 0.040680;, + 0.789306; 0.095395;, + 0.959156; 0.694074;, + 0.920076; 0.694074;, + 0.920076; 0.748790;, + 0.959156; 0.748790;, + 0.115952; 0.036807;, + 0.081848; 0.036807;, + 0.081848; 0.091523;, + 0.115952; 0.091523;, + 0.960920; 0.005898;, + 0.926817; 0.005898;, + 0.926817; 0.044835;, + 0.960920; 0.044835;, + 0.963658; 0.608610;, + 0.929555; 0.608610;, + 0.929555; 0.663325;, + 0.963658; 0.663325;, + 0.997761; 0.585450;, + 0.963658; 0.585450;, + 0.963658; 0.624387;, + 0.997761; 0.624387;, + 0.711146; 0.095395;, + 0.711146; 0.040680;, + 0.672066; 0.040680;, + 0.672066; 0.095395;, + 0.789306; 0.040680;, + 0.750226; 0.040680;, + 0.750226; 0.095395;, + 0.789306; 0.095395;, + 0.254082; 0.036807;, + 0.219978; 0.036807;, + 0.219978; 0.091523;, + 0.254082; 0.091523;, + 0.706170; 0.040680;, + 0.740273; 0.040680;, + 0.740273; 0.001742;, + 0.706170; 0.001742;, + 0.219978; 0.036807;, + 0.185875; 0.036807;, + 0.185875; 0.091523;, + 0.219978; 0.091523;, + 0.000000; 0.040904;, + 0.034103; 0.040904;, + 0.034103; 0.001966;, + 0.000000; 0.001966;, + 0.517202; 0.269389;, + 0.517202; 0.155803;, + 0.474214; 0.155803;, + 0.474214; 0.269389;, + 0.345250; 0.269389;, + 0.388238; 0.269389;, + 0.388238; 0.155803;, + 0.345250; 0.155803;, + 0.892041; 0.549739;, + 0.854527; 0.549739;, + 0.854527; 0.663325;, + 0.892041; 0.663325;, + 0.926817; 0.030221;, + 0.889303; 0.030221;, + 0.889303; 0.073053;, + 0.926817; 0.073053;, + 0.923486; 0.886414;, + 0.885972; 0.886414;, + 0.885972; 1.000000;, + 0.923486; 1.000000;, + 0.987958; 0.409361;, + 0.950444; 0.409361;, + 0.950444; 0.452192;, + 0.987958; 0.452192;, + 0.254020; 0.269389;, + 0.254020; 0.382975;, + 0.304824; 0.382975;, + 0.304824; 0.269389;, + 0.722870; 0.436153;, + 0.672066; 0.436153;, + 0.672066; 0.549739;, + 0.722870; 0.549739;, + 0.800714; 0.772828;, + 0.756379; 0.772828;, + 0.756379; 0.886414;, + 0.800714; 0.886414;, + 0.936375; 0.322567;, + 0.892041; 0.322567;, + 0.892041; 0.373186;, + 0.936375; 0.373186;, + 0.845048; 0.886414;, + 0.800714; 0.886414;, + 0.800714; 1.000000;, + 0.845048; 1.000000;, + 0.345316; 0.105184;, + 0.389651; 0.105184;, + 0.389651; 0.054565;, + 0.345316; 0.054565;, + 0.406431; 0.382975;, + 0.406431; 0.269389;, + 0.355628; 0.269389;, + 0.355628; 0.382975;, + 0.203216; 0.382975;, + 0.254020; 0.382975;, + 0.254020; 0.269389;, + 0.203216; 0.269389;, + 0.767205; 0.436153;, + 0.722870; 0.436153;, + 0.722870; 0.549739;, + 0.767205; 0.549739;, + 0.583907; 0.104751;, + 0.539573; 0.104751;, + 0.539573; 0.155369;, + 0.583907; 0.155369;, + 0.811539; 0.322567;, + 0.767205; 0.322567;, + 0.767205; 0.436153;, + 0.811539; 0.436153;, + 0.389651; 0.105184;, + 0.433985; 0.105184;, + 0.433985; 0.054565;, + 0.389651; 0.054565;, + 0.854527; 0.436153;, + 0.854527; 0.322567;, + 0.811539; 0.322567;, + 0.811539; 0.436153;, + 0.474214; 0.155803;, + 0.431226; 0.155803;, + 0.431226; 0.269389;, + 0.474214; 0.269389;, + 0.709580; 0.095395;, + 0.672066; 0.095395;, + 0.672066; 0.208981;, + 0.709580; 0.208981;, + 0.420344; 0.011734;, + 0.382830; 0.011734;, + 0.382830; 0.054565;, + 0.420344; 0.054565;, + 0.929554; 0.549739;, + 0.892041; 0.549739;, + 0.892041; 0.663325;, + 0.929554; 0.663325;, + 0.962165; 0.279736;, + 0.999679; 0.279736;, + 0.999679; 0.236904;, + 0.962165; 0.236904;, + 0.965897; 0.154266;, + 0.965897; 0.099550;, + 0.926817; 0.099550;, + 0.926817; 0.154266;, + 0.962165; 0.213136;, + 0.923085; 0.213136;, + 0.923085; 0.267852;, + 0.962165; 0.267852;, + 0.982915; 0.831699;, + 0.948811; 0.831699;, + 0.948811; 0.886414;, + 0.982915; 0.886414;, + 0.034103; 0.040904;, + 0.068207; 0.040904;, + 0.068207; 0.001966;, + 0.034103; 0.001966;, + 0.970479; 0.322567;, + 0.936375; 0.322567;, + 0.936375; 0.377282;, + 0.970479; 0.377282;, + 0.740273; 0.040680;, + 0.774376; 0.040680;, + 0.774376; 0.001742;, + 0.740273; 0.001742;, + 0.962165; 0.322567;, + 0.962165; 0.267852;, + 0.923085; 0.267852;, + 0.923085; 0.322567;, + 0.965897; 0.154266;, + 0.926817; 0.154266;, + 0.926817; 0.208981;, + 0.965897; 0.208981;, + 0.624480; 0.027693;, + 0.590377; 0.027693;, + 0.590377; 0.082408;, + 0.624480; 0.082408;, + 0.993259; 0.667021;, + 0.959156; 0.667021;, + 0.959156; 0.705958;, + 0.993259; 0.705958;, + 0.982915; 0.776983;, + 0.948811; 0.776983;, + 0.948811; 0.831699;, + 0.982915; 0.831699;, + 0.965897; 0.092168;, + 1.000000; 0.092168;, + 1.000000; 0.053231;, + 0.965897; 0.053231;, + 0.130310; 0.155803;, + 0.130310; 0.269389;, + 0.173298; 0.269389;, + 0.173298; 0.155803;, + 0.130310; 0.155803;, + 0.087322; 0.155802;, + 0.087322; 0.269389;, + 0.130310; 0.269389;, + 0.668815; 0.133027;, + 0.631301; 0.133027;, + 0.631301; 0.246613;, + 0.668815; 0.246613;, + 0.457857; 0.011734;, + 0.420344; 0.011734;, + 0.420344; 0.054565;, + 0.457857; 0.054565;, + 0.897149; 0.095395;, + 0.859635; 0.095395;, + 0.859635; 0.208981;, + 0.897149; 0.208981;, + 0.748161; 0.706431;, + 0.785675; 0.706431;, + 0.785675; 0.663600;, + 0.748161; 0.663600;, + 0.722870; 0.436153;, + 0.722870; 0.322567;, + 0.672066; 0.322567;, + 0.672066; 0.436153;, + 0.152412; 0.382975;, + 0.203216; 0.382975;, + 0.203216; 0.269389;, + 0.152412; 0.269389;, + 0.805070; 0.208981;, + 0.760735; 0.208981;, + 0.760735; 0.322567;, + 0.805070; 0.322567;, + 0.478319; 0.105184;, + 0.522654; 0.105184;, + 0.522654; 0.054565;, + 0.478320; 0.054565;, + 0.811539; 0.549739;, + 0.767205; 0.549739;, + 0.767205; 0.663325;, + 0.811539; 0.663325;, + 0.433985; 0.155802;, + 0.478319; 0.155802;, + 0.478319; 0.105184;, + 0.433985; 0.105184;, + 0.553530; 0.666283;, + 0.546797; 0.666283;, + 0.546797; 0.674071;, + 0.553530; 0.674071;, + 0.560262; 0.674071;, + 0.560262; 0.666283;, + 0.553530; 0.666283;, + 0.553530; 0.674071;, + 0.582561; 0.167018;, + 0.582561; 0.217987;, + 0.589293; 0.217987;, + 0.589293; 0.167018;, + 0.582561; 0.217987;, + 0.582561; 0.268955;, + 0.590377; 0.268955;, + 0.590377; 0.217987;, + 0.536270; 0.199678;, + 0.536270; 0.148709;, + 0.529538; 0.148709;, + 0.529538; 0.199678;, + 0.529891; 0.250647;, + 0.529891; 0.301616;, + 0.537707; 0.301616;, + 0.537707; 0.250647;, + 0.554260; 0.681858;, + 0.546797; 0.681858;, + 0.546797; 0.689646;, + 0.554260; 0.689646;, + 0.554260; 0.681858;, + 0.554260; 0.674071;, + 0.546797; 0.674071;, + 0.546797; 0.681858;, + 0.529891; 0.199678;, + 0.529891; 0.250647;, + 0.537354; 0.250647;, + 0.537354; 0.199678;, + 0.705173; 0.721859;, + 0.705173; 0.772828;, + 0.712989; 0.772828;, + 0.712989; 0.721859;, + 0.522075; 0.199678;, + 0.522075; 0.250647;, + 0.529538; 0.250647;, + 0.529538; 0.199678;, + 0.529891; 0.301616;, + 0.529891; 0.250647;, + 0.522075; 0.250647;, + 0.522075; 0.301616;, + 0.970479; 0.377282;, + 0.999214; 0.377282;, + 0.999214; 0.336603;, + 0.970479; 0.336603;, + 0.774376; 0.000000;, + 0.774376; 0.040680;, + 0.803112; 0.040680;, + 0.803112; 0.000000;, + 0.950444; 0.549739;, + 0.950444; 0.412115;, + 0.921709; 0.412115;, + 0.921709; 0.549739;, + 0.715551; 0.724751;, + 0.715551; 0.862376;, + 0.756379; 0.862376;, + 0.756379; 0.724751;, + 0.920076; 0.748790;, + 0.920076; 0.886414;, + 0.948811; 0.886414;, + 0.948811; 0.748790;, + 0.756379; 1.000000;, + 0.756379; 0.862376;, + 0.715551; 0.862376;, + 0.715551; 1.000000;, + 0.537707; 0.342295;, + 0.508039; 0.342295;, + 0.508039; 0.382975;, + 0.537707; 0.382975;, + 0.537707; 0.342295;, + 0.537707; 0.301616;, + 0.508039; 0.301616;, + 0.508039; 0.342295;, + 0.892041; 0.413811;, + 0.892041; 0.549739;, + 0.921709; 0.549739;, + 0.921709; 0.413811;, + 0.590377; 0.246613;, + 0.590377; 0.382541;, + 0.631205; 0.382541;, + 0.631205; 0.246613;, + 0.926817; 0.208981;, + 0.926817; 0.073053;, + 0.897149; 0.073053;, + 0.897149; 0.208981;, + 0.672033; 0.382541;, + 0.672033; 0.246613;, + 0.631205; 0.246613;, + 0.631205; 0.382541;, + 0.425531; 0.663325;, + 0.539573; 0.663325;, + 0.539573; 0.382975;, + 0.425531; 0.382975;, + 0.311489; 0.382975;, + 0.311489; 0.663325;, + 0.425531; 0.663325;, + 0.425531; 0.382975;, + 0.660839; 1.000000;, + 0.660839; 0.844823;, + 0.546797; 0.844823;, + 0.546797; 1.000000;, + 0.311489; 0.382975;, + 0.155745; 0.382975;, + 0.155745; 0.663325;, + 0.311489; 0.663325;, + 0.546797; 0.689646;, + 0.546797; 0.844823;, + 0.660839; 0.844823;, + 0.660839; 0.689646;, + 0.000000; 0.663325;, + 0.155745; 0.663325;, + 0.155745; 0.382975;, + 0.000000; 0.382975;, + 0.280801; 0.155802;, + 0.345316; 0.155802;, + 0.345316; 0.091523;, + 0.280801; 0.091523;, + 0.280801; 0.155802;, + 0.280801; 0.091523;, + 0.216286; 0.091523;, + 0.216286; 0.155802;, + 0.820894; 0.708548;, + 0.756379; 0.708548;, + 0.756379; 0.772828;, + 0.820894; 0.772828;, + 0.000000; 0.091523;, + 0.000000; 0.155802;, + 0.064515; 0.155803;, + 0.064515; 0.091523;, + 0.216286; 0.091523;, + 0.151771; 0.091523;, + 0.151771; 0.155802;, + 0.216286; 0.155802;, + 0.064515; 0.155803;, + 0.129030; 0.155803;, + 0.129030; 0.091523;, + 0.064515; 0.091523;, + 0.140905; 1.000000;, + 0.281810; 1.000000;, + 0.281810; 0.663325;, + 0.140905; 0.663325;, + 0.000000; 0.663325;, + 0.000000; 1.000000;, + 0.140905; 1.000000;, + 0.140905; 0.663325;, + 0.672066; 0.522933;, + 0.539573; 0.522933;, + 0.539573; 0.663325;, + 0.672066; 0.663325;, + 0.546797; 0.663325;, + 0.414304; 0.663325;, + 0.414304; 1.000000;, + 0.546797; 1.000000;, + 0.672066; 0.382541;, + 0.539573; 0.382541;, + 0.539573; 0.522933;, + 0.672066; 0.522933;, + 0.281810; 1.000000;, + 0.414304; 1.000000;, + 0.414304; 0.663325;, + 0.281811; 0.663325;; + } // End of Cube_001 UV coordinates + MeshMaterialList { // Cube_001 material list + 1; + 186; + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0;; + Material Material { + 0.640000; 0.640000; 0.640000; 1.000000;; + 96.078431; + 0.500000; 0.500000; 0.500000;; + 0.000000; 0.000000; 0.000000;; + TextureFilename {"tarantula.png";} + } + } // End of Cube_001 material list + XSkinMeshHeader { + 4; + 12; + 41; + } + SkinWeights { + "Armature_Bone_010"; + 0; + -0.147994, 0.073149, 0.000000, 0.000000, + -0.154214,-0.312006,-0.000000, 0.000000, + 0.000000,-0.000000, 0.189174, 0.000000, + -0.910463, 0.424756, 0.005543, 1.000000;; + } // End of Armature_Bone_010 skin weights + SkinWeights { + "Armature_Bone_017"; + 24; + 240, + 241, + 242, + 243, + 244, + 245, + 246, + 247, + 248, + 249, + 250, + 251, + 252, + 253, + 254, + 255, + 256, + 257, + 258, + 259, + 260, + 261, + 262, + 263; + 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.165085, 0.000000, 0.000000, 0.000000, + -0.000000, 0.348037,-0.000000, 0.000000, + -0.000000, 0.000000, 0.189174, 0.000000, + 0.356768,-0.592857, 0.005543, 1.000000;; + } // End of Armature_Bone_017 skin weights + SkinWeights { + "Armature_Bone_003"; + 15; + 627, + 628, + 629, + 630, + 631, + 633, + 634, + 637, + 638, + 641, + 642, + 643, + 644, + 646, + 647; + 0.052897, + 0.473024, + 0.484951, + 0.442607, + 0.133675, + 0.473024, + 0.133675, + 0.133675, + 0.442607, + 0.442607, + 0.484951, + 0.052897, + 0.473024, + 0.052897, + 0.484951; + 0.064360,-0.146379, 0.041037, 0.000000, + 0.320496, 0.130304,-0.037852, 0.000000, + 0.000637, 0.051325, 0.182078, 0.000000, + 0.412448,-0.880622, 0.252553, 1.000000;; + } // End of Armature_Bone_003 skin weights + SkinWeights { + "Armature_Bone_014"; + 15; + 674, + 675, + 676, + 677, + 678, + 681, + 686, + 687, + 688, + 689, + 690, + 691, + 692, + 694, + 695; + 0.004078, + 0.931183, + 0.030704, + 0.478693, + 0.161453, + 0.030704, + 0.161453, + 0.004078, + 0.004078, + 0.161453, + 0.478693, + 0.931183, + 0.030704, + 0.931183, + 0.478693; + 0.140423,-0.086800, 0.000000, 0.000000, + 0.182994, 0.296045,-0.000000, 0.000000, + 0.000000, 0.000000, 0.189174, 0.000000, + 0.866275,-0.508851, 0.005543, 1.000000;; + } // End of Armature_Bone_014 skin weights + SkinWeights { + "Armature_Bone_015"; + 0; + 0.164582,-0.012871, 0.000000, 0.000000, + 0.027134, 0.346977,-0.000000, 0.000000, + -0.000000, 0.000000, 0.189174, 0.000000, + 1.003122,-0.055735, 0.005543, 1.000000;; + } // End of Armature_Bone_015 skin weights + SkinWeights { + "Armature_Bone_002"; + 0; + 0.000000,-0.165085, 0.000000, 0.000000, + 0.348037, 0.000000,-0.000000, 0.000000, + 0.000000,-0.000000, 0.189174, 0.000000, + 0.022642,-0.177981, 0.005543, 1.000000;; + } // End of Armature_Bone_002 skin weights + SkinWeights { + "Armature_Bone_004"; + 18; + 648, + 651, + 652, + 653, + 654, + 655, + 656, + 657, + 658, + 661, + 662, + 665, + 666, + 667, + 668, + 669, + 670, + 671; + 0.003960, + 0.057195, + 0.454296, + 0.485190, + 0.490017, + 0.491403, + 0.003960, + 0.454296, + 0.491403, + 0.491403, + 0.490017, + 0.490017, + 0.485190, + 0.057195, + 0.454296, + 0.003960, + 0.057195, + 0.485190; + -0.057688,-0.147519, 0.046511, 0.000000, + 0.326095,-0.116094, 0.036243, 0.000000, + 0.000175, 0.056822, 0.180439, 0.000000, + -0.329768,-0.903427, 0.290631, 1.000000;; + } // End of Armature_Bone_004 skin weights + SkinWeights { + "Armature_Bone_009"; + 18; + 673, + 674, + 676, + 677, + 678, + 679, + 681, + 682, + 683, + 684, + 685, + 686, + 687, + 688, + 689, + 690, + 692, + 695; + 0.979223, + 0.001095, + 0.092727, + 0.095615, + 0.235740, + 0.845827, + 0.092727, + 0.845827, + 0.979223, + 0.979223, + 0.845827, + 0.235740, + 0.001095, + 0.001095, + 0.235740, + 0.095615, + 0.092727, + 0.095615; + -0.111372, 0.121857, 0.000000, 0.000000, + -0.256903,-0.234799,-0.000000, 0.000000, + 0.000000,-0.000000, 0.189174, 0.000000, + -0.694329, 0.726133, 0.005543, 1.000000;; + } // End of Armature_Bone_009 skin weights + SkinWeights { + "Armature_Bone_036"; + 24; + 528, + 529, + 530, + 531, + 532, + 533, + 534, + 535, + 536, + 537, + 538, + 539, + 540, + 541, + 542, + 543, + 544, + 545, + 546, + 547, + 548, + 549, + 550, + 551; + 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.165085,-0.000000, 0.000000, 0.000000, + 0.000000,-0.348037,-0.000000, 0.000000, + 0.000000,-0.000000, 0.189174, 0.000000, + -1.403467,-1.866385, 0.005543, 1.000000;; + } // End of Armature_Bone_036 skin weights + SkinWeights { + "Armature_Bone_026"; + 24; + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71; + 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.165085,-0.000000, 0.000000, 0.000000, + 0.000000, 0.348037,-0.000000, 0.000000, + 0.000000, 0.000000, 0.189174, 0.000000, + 1.362284,-3.079619, 0.005543, 1.000000;; + } // End of Armature_Bone_026 skin weights + SkinWeights { + "Armature_Bone_040"; + 24; + 504, + 505, + 506, + 507, + 508, + 509, + 510, + 511, + 512, + 513, + 514, + 515, + 516, + 517, + 518, + 519, + 520, + 521, + 522, + 523, + 524, + 525, + 526, + 527; + 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.165085,-0.000000, 0.000000, 0.000000, + 0.000000,-0.348037,-0.000000, 0.000000, + 0.000000,-0.000000, 0.189174, 0.000000, + -1.403467,-3.094802, 0.005543, 1.000000;; + } // End of Armature_Bone_040 skin weights + SkinWeights { + "Armature_Bone_037"; + 24; + 336, + 337, + 338, + 339, + 340, + 341, + 342, + 343, + 344, + 345, + 346, + 347, + 348, + 349, + 350, + 351, + 352, + 353, + 354, + 355, + 356, + 357, + 358, + 359; + 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.165085,-0.000000, 0.000000, 0.000000, + 0.000000,-0.348037,-0.000000, 0.000000, + 0.000000,-0.000000, 0.189174, 0.000000, + -0.363215,-3.117004, 0.005543, 1.000000;; + } // End of Armature_Bone_037 skin weights + SkinWeights { + "Armature_Bone_020"; + 24; + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191; + 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.165085, 0.000000, 0.000000, 0.000000, + -0.000000, 0.348037,-0.000000, 0.000000, + -0.000000, 0.000000, 0.189174, 0.000000, + 0.697527,-0.587887, 0.005543, 1.000000;; + } // End of Armature_Bone_020 skin weights + SkinWeights { + "Armature_Bone_023"; + 24; + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143; + 0.476087, + 0.980288, + 1.000000, + 0.130105, + 0.498086, + 0.478004, + 1.000000, + 0.980912, + 0.476087, + 0.498086, + 0.980912, + 0.980288, + 0.980288, + 0.980912, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.478004, + 0.130105, + 0.498086, + 0.476087, + 0.130105, + 0.478004; + 0.165085, 0.000000, 0.000000, 0.000000, + -0.000000, 0.348037,-0.000000, 0.000000, + -0.000000, 0.000000, 0.189174, 0.000000, + 1.050634,-1.862861, 0.005543, 1.000000;; + } // End of Armature_Bone_023 skin weights + SkinWeights { + "Armature_Bone_038"; + 24; + 360, + 361, + 362, + 363, + 364, + 365, + 366, + 367, + 368, + 369, + 370, + 371, + 372, + 373, + 374, + 375, + 376, + 377, + 378, + 379, + 380, + 381, + 382, + 383; + 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.165085, 0.000000, 0.000000, 0.000000, + 0.000000,-0.348037,-0.000000, 0.000000, + 0.000000,-0.000000, 0.189174, 0.000000, + -0.709249,-3.128153, 0.005543, 1.000000;; + } // End of Armature_Bone_038 skin weights + SkinWeights { + "Armature_Bone"; + 24; + 696, + 697, + 698, + 699, + 700, + 701, + 702, + 703, + 704, + 705, + 706, + 707, + 708, + 709, + 710, + 711, + 712, + 713, + 714, + 715, + 716, + 717, + 718, + 719; + 0.888201, + 0.918337, + 0.958788, + 0.943487, + 0.620861, + 0.868517, + 0.905544, + 0.646406, + 0.888201, + 0.620861, + 0.646406, + 0.918337, + 0.918337, + 0.646406, + 0.905544, + 0.958788, + 0.958788, + 0.905544, + 0.868517, + 0.943487, + 0.620861, + 0.888201, + 0.943487, + 0.868517; + 0.003679,-0.165043, 0.000000, 0.000000, + -0.000000, 0.000000, 0.348037, 0.000000, + -0.189127,-0.004216,-0.000000, 0.000000, + -0.001575, 0.166294, 0.022642, 1.000000;; + } // End of Armature_Bone skin weights + SkinWeights { + "Armature_Bone_027"; + 42; + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 120, + 121, + 123, + 124, + 125, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 138, + 139, + 140, + 141, + 142, + 143; + 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.523913, + 0.019712, + 0.869895, + 0.501914, + 0.521996, + 0.019088, + 0.523913, + 0.501914, + 0.019088, + 0.019712, + 0.019712, + 0.019088, + 0.521996, + 0.869895, + 0.501914, + 0.523913, + 0.869895, + 0.521996; + 0.165085, 0.000000, 0.000000, 0.000000, + -0.000000, 0.348037,-0.000000, 0.000000, + -0.000000, 0.000000, 0.189174, 0.000000, + 1.050634,-3.091683, 0.005543, 1.000000;; + } // End of Armature_Bone_027 skin weights + SkinWeights { + "Armature_Bone_016"; + 0; + 0.147499, 0.074142,-0.000000, 0.000000, + -0.156308, 0.310962,-0.000000, 0.000000, + -0.000000, 0.000000, 0.189174, 0.000000, + 0.887251, 0.471325, 0.005543, 1.000000;; + } // End of Armature_Bone_016 skin weights + SkinWeights { + "Armature_Bone_006"; + 24; + 600, + 601, + 602, + 603, + 604, + 605, + 606, + 607, + 608, + 609, + 610, + 611, + 612, + 613, + 614, + 615, + 616, + 617, + 618, + 619, + 620, + 621, + 622, + 623; + 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.164872,-0.008372,-0.000000, 0.000000, + 0.000000, 0.000000,-0.348037, 0.000000, + 0.009593,-0.188931, 0.000000, 0.000000, + -1.755953,-0.541359, 0.276091, 1.000000;; + } // End of Armature_Bone_006 skin weights + SkinWeights { + "Armature_Bone_018"; + 24; + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47; + 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.165085,-0.000000, 0.000000, 0.000000, + 0.000000, 0.348037,-0.000000, 0.000000, + 0.000000, 0.000000, 0.189174, 0.000000, + 1.362284,-0.556315, 0.005543, 1.000000;; + } // End of Armature_Bone_018 skin weights + SkinWeights { + "Armature_Bone_031"; + 24; + 432, + 433, + 434, + 435, + 436, + 437, + 438, + 439, + 440, + 441, + 442, + 443, + 444, + 445, + 446, + 447, + 448, + 449, + 450, + 451, + 452, + 453, + 454, + 455; + 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.165084,-0.000000, 0.000000, 0.000000, + 0.000000,-0.348037,-0.000000, 0.000000, + 0.000000,-0.000000, 0.189174, 0.000000, + -1.087919,-0.603126, 0.005543, 1.000000;; + } // End of Armature_Bone_031 skin weights + SkinWeights { + "Armature_Bone_001"; + 48; + 696, + 697, + 698, + 699, + 700, + 701, + 702, + 703, + 704, + 705, + 706, + 707, + 708, + 709, + 710, + 711, + 712, + 713, + 714, + 715, + 716, + 717, + 718, + 719, + 720, + 721, + 722, + 723, + 724, + 725, + 726, + 727, + 728, + 729, + 730, + 731, + 732, + 733, + 734, + 735, + 736, + 737, + 738, + 739, + 740, + 741, + 742, + 743; + 0.111799, + 0.081663, + 0.041212, + 0.056513, + 0.379139, + 0.131483, + 0.094456, + 0.353594, + 0.111799, + 0.379139, + 0.353594, + 0.081663, + 0.081663, + 0.353594, + 0.094456, + 0.041212, + 0.041212, + 0.094456, + 0.131483, + 0.056513, + 0.379139, + 0.111799, + 0.056513, + 0.131483, + 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.165085, 0.000000, 0.000000, + -0.348037,-0.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 0.189174, 0.000000, + -0.022642,-0.166288,-0.002131, 1.000000;; + } // End of Armature_Bone_001 skin weights + SkinWeights { + "Armature_Bone_007"; + 24; + 648, + 649, + 650, + 651, + 652, + 653, + 654, + 655, + 656, + 657, + 658, + 659, + 660, + 661, + 662, + 663, + 664, + 665, + 666, + 667, + 668, + 669, + 670, + 671; + 0.996040, + 1.000000, + 1.000000, + 0.942805, + 0.545704, + 0.514810, + 0.509983, + 0.508597, + 0.996040, + 0.545704, + 0.508597, + 1.000000, + 1.000000, + 0.508597, + 0.509983, + 1.000000, + 1.000000, + 0.509983, + 0.514810, + 0.942805, + 0.545704, + 0.996040, + 0.942805, + 0.514810; + -0.162855,-0.027040,-0.000016, 0.000000, + -0.001091, 0.006771,-0.347969, 0.000000, + 0.030980,-0.186583,-0.003728, 0.000000, + -1.686205,-0.052699,-0.267670, 1.000000;; + } // End of Armature_Bone_007 skin weights + SkinWeights { + "Armature_Bone_024"; + 24; + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167; + 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.165085, 0.000000, 0.000000, 0.000000, + -0.000000, 0.348037,-0.000000, 0.000000, + -0.000000, 0.000000, 0.189174, 0.000000, + 0.697527,-1.882368, 0.005543, 1.000000;; + } // End of Armature_Bone_024 skin weights + SkinWeights { + "Armature_Bone_012"; + 18; + 673, + 674, + 675, + 677, + 678, + 679, + 682, + 683, + 684, + 685, + 686, + 687, + 688, + 689, + 690, + 691, + 694, + 695; + 0.000132, + 0.994826, + 0.037213, + 0.175329, + 0.499827, + 0.046383, + 0.046383, + 0.000132, + 0.000132, + 0.046383, + 0.499827, + 0.994826, + 0.994826, + 0.499827, + 0.175329, + 0.037213, + 0.037213, + 0.175329; + -0.134750,-0.095370,-0.000000, 0.000000, + 0.201062,-0.284084,-0.000000, 0.000000, + 0.000000,-0.000000, 0.189174, 0.000000, + -0.806769,-0.598736, 0.005543, 1.000000;; + } // End of Armature_Bone_012 skin weights + SkinWeights { + "Armature_Bone_025"; + 24; + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + 232, + 233, + 234, + 235, + 236, + 237, + 238, + 239; + 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.165085, 0.000000, 0.000000, 0.000000, + -0.000000, 0.348037,-0.000000, 0.000000, + -0.000000, 0.000000, 0.189174, 0.000000, + 0.356768,-3.116160, 0.005543, 1.000000;; + } // End of Armature_Bone_025 skin weights + SkinWeights { + "Armature_Bone_021"; + 24; + 264, + 265, + 266, + 267, + 268, + 269, + 270, + 271, + 272, + 273, + 274, + 275, + 276, + 277, + 278, + 279, + 280, + 281, + 282, + 283, + 284, + 285, + 286, + 287; + 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.165085, 0.000000, 0.000000, 0.000000, + -0.000000, 0.348037,-0.000000, 0.000000, + -0.000000, 0.000000, 0.189174, 0.000000, + 0.356768,-1.887338, 0.005543, 1.000000;; + } // End of Armature_Bone_021 skin weights + SkinWeights { + "Armature_Bone_008"; + 24; + 576, + 577, + 578, + 579, + 580, + 581, + 582, + 583, + 584, + 585, + 586, + 587, + 588, + 589, + 590, + 591, + 592, + 593, + 594, + 595, + 596, + 597, + 598, + 599; + 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.164818,-0.009368,-0.000000, 0.000000, + 0.000000, 0.000000,-0.348037, 0.000000, + 0.010735,-0.188870, 0.000000, 0.000000, + -1.754168,-0.545000,-0.258790, 1.000000;; + } // End of Armature_Bone_008 skin weights + SkinWeights { + "Armature_Bone_022"; + 24; + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23; + 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.165085,-0.000000, 0.000000, 0.000000, + 0.000000, 0.348037,-0.000000, 0.000000, + 0.000000, 0.000000, 0.189174, 0.000000, + 1.362284,-1.850797, 0.005543, 1.000000;; + } // End of Armature_Bone_022 skin weights + SkinWeights { + "Armature_Bone_039"; + 24; + 480, + 481, + 482, + 483, + 484, + 485, + 486, + 487, + 488, + 489, + 490, + 491, + 492, + 493, + 494, + 495, + 496, + 497, + 498, + 499, + 500, + 501, + 502, + 503; + 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.165084,-0.000000, 0.000000, 0.000000, + 0.000000,-0.348037,-0.000000, 0.000000, + 0.000000,-0.000000, 0.189174, 0.000000, + -1.087919,-3.111459, 0.005543, 1.000000;; + } // End of Armature_Bone_039 skin weights + SkinWeights { + "Armature_Bone_034"; + 24; + 384, + 385, + 386, + 387, + 388, + 389, + 390, + 391, + 392, + 393, + 394, + 395, + 396, + 397, + 398, + 399, + 400, + 401, + 402, + 403, + 404, + 405, + 406, + 407; + 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.165085, 0.000000, 0.000000, 0.000000, + 0.000000,-0.348037,-0.000000, 0.000000, + 0.000000,-0.000000, 0.189174, 0.000000, + -0.709248,-1.899737, 0.005543, 1.000000;; + } // End of Armature_Bone_034 skin weights + SkinWeights { + "Armature_Bone_035"; + 24; + 456, + 457, + 458, + 459, + 460, + 461, + 462, + 463, + 464, + 465, + 466, + 467, + 468, + 469, + 470, + 471, + 472, + 473, + 474, + 475, + 476, + 477, + 478, + 479; + 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.165084,-0.000000, 0.000000, 0.000000, + 0.000000,-0.348037,-0.000000, 0.000000, + 0.000000,-0.000000, 0.189174, 0.000000, + -1.087919,-1.883042, 0.005543, 1.000000;; + } // End of Armature_Bone_035 skin weights + SkinWeights { + "Armature_Bone_029"; + 24; + 288, + 289, + 290, + 291, + 292, + 293, + 294, + 295, + 296, + 297, + 298, + 299, + 300, + 301, + 302, + 303, + 304, + 305, + 306, + 307, + 308, + 309, + 310, + 311; + 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.165085,-0.000000, 0.000000, 0.000000, + 0.000000,-0.348037,-0.000000, 0.000000, + 0.000000,-0.000000, 0.189174, 0.000000, + -0.363215,-0.608671, 0.005543, 1.000000;; + } // End of Armature_Bone_029 skin weights + SkinWeights { + "Armature_Bone_013"; + 21; + 672, + 673, + 675, + 676, + 677, + 678, + 679, + 680, + 681, + 682, + 683, + 684, + 685, + 686, + 689, + 690, + 691, + 692, + 693, + 694, + 695; + 1.000000, + 0.020645, + 0.031604, + 0.876569, + 0.250363, + 0.102980, + 0.107790, + 1.000000, + 0.876569, + 0.107790, + 0.020645, + 0.020645, + 0.107790, + 0.102980, + 0.102980, + 0.250363, + 0.031604, + 0.876569, + 1.000000, + 0.031604, + 0.250363; + 0.113725, 0.119665,-0.000000, 0.000000, + -0.252281, 0.239758,-0.000000, 0.000000, + 0.000000, 0.000000, 0.189174, 0.000000, + 0.675516, 0.743666, 0.005543, 1.000000;; + } // End of Armature_Bone_013 skin weights + SkinWeights { + "Armature_Bone_032"; + 24; + 552, + 553, + 554, + 555, + 556, + 557, + 558, + 559, + 560, + 561, + 562, + 563, + 564, + 565, + 566, + 567, + 568, + 569, + 570, + 571, + 572, + 573, + 574, + 575; + 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.165085,-0.000000, 0.000000, 0.000000, + 0.000000,-0.348037,-0.000000, 0.000000, + 0.000000,-0.000000, 0.189174, 0.000000, + -1.403467,-0.586469, 0.005543, 1.000000;; + } // End of Armature_Bone_032 skin weights + SkinWeights { + "Armature_Bone_030"; + 24; + 408, + 409, + 410, + 411, + 412, + 413, + 414, + 415, + 416, + 417, + 418, + 419, + 420, + 421, + 422, + 423, + 424, + 425, + 426, + 427, + 428, + 429, + 430, + 431; + 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.165085, 0.000000, 0.000000, 0.000000, + 0.000000,-0.348037,-0.000000, 0.000000, + 0.000000,-0.000000, 0.189174, 0.000000, + -0.709248,-0.619820, 0.005543, 1.000000;; + } // End of Armature_Bone_030 skin weights + SkinWeights { + "Armature_Bone_005"; + 24; + 624, + 625, + 626, + 627, + 628, + 629, + 630, + 631, + 632, + 633, + 634, + 635, + 636, + 637, + 638, + 639, + 640, + 641, + 642, + 643, + 644, + 645, + 646, + 647; + 1.000000, + 1.000000, + 1.000000, + 0.947103, + 0.526976, + 0.515049, + 0.557393, + 0.866325, + 1.000000, + 0.526976, + 0.866325, + 1.000000, + 1.000000, + 0.866325, + 0.557393, + 1.000000, + 1.000000, + 0.557393, + 0.515049, + 0.947103, + 0.526976, + 1.000000, + 0.947103, + 0.515049; + -0.163134,-0.025305,-0.000022, 0.000000, + -0.001059, 0.007126,-0.347962, 0.000000, + 0.028992,-0.186899,-0.003916, 0.000000, + -1.690046,-0.064158, 0.266449, 1.000000;; + } // End of Armature_Bone_005 skin weights + SkinWeights { + "Armature_Bone_019"; + 24; + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119; + 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.165085, 0.000000, 0.000000, 0.000000, + -0.000000, 0.348037,-0.000000, 0.000000, + -0.000000, 0.000000, 0.189174, 0.000000, + 1.050634,-0.568380, 0.005543, 1.000000;; + } // End of Armature_Bone_019 skin weights + SkinWeights { + "Armature_Bone_033"; + 24; + 312, + 313, + 314, + 315, + 316, + 317, + 318, + 319, + 320, + 321, + 322, + 323, + 324, + 325, + 326, + 327, + 328, + 329, + 330, + 331, + 332, + 333, + 334, + 335; + 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.165085,-0.000000, 0.000000, 0.000000, + 0.000000,-0.348037,-0.000000, 0.000000, + 0.000000,-0.000000, 0.189174, 0.000000, + -0.363215,-1.888587, 0.005543, 1.000000;; + } // End of Armature_Bone_033 skin weights + SkinWeights { + "Armature_Bone_011"; + 0; + -0.163402,-0.023506,-0.000000, 0.000000, + 0.049556,-0.344491,-0.000000, 0.000000, + 0.000000,-0.000000, 0.189174, 0.000000, + -0.990957,-0.165427, 0.005543, 1.000000;; + } // End of Armature_Bone_011 skin weights + SkinWeights { + "Armature_Bone_028"; + 24; + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215; + 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.165085, 0.000000, 0.000000, 0.000000, + -0.000000, 0.348037,-0.000000, 0.000000, + -0.000000, 0.000000, 0.189174, 0.000000, + 0.697527,-3.111190, 0.005543, 1.000000;; + } // End of Armature_Bone_028 skin weights + } // End of Cube_001 mesh + } // End of Cube_001 + } // End of Armature +} // End of Root +AnimationSet Global { + Animation { + {Armature} + AnimationKey { // Rotation + 0; + 250; + 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;;, + 189;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 190;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 191;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 192;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 193;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 194;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 195;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 196;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 197;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 198;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 199;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 200;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 201;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 202;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 203;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 204;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 205;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 206;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 207;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 208;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 209;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 210;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 211;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 212;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 213;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 214;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 215;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 216;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 217;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 218;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 219;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 220;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 221;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 222;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 223;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 224;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 225;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 226;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 227;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 228;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 229;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 230;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 231;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 232;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 233;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 234;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 235;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 236;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 237;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 238;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 239;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 240;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 241;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 242;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 243;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 244;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 245;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 246;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 247;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 248;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 249;4;-1.000000, 0.000000, 0.000000, 0.000000;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3;-0.672467,-1.528196,-0.828771;;, + 1;3;-0.672467,-1.528196,-0.828771;;, + 2;3;-0.672467,-1.528196,-0.828771;;, + 3;3;-0.672467,-1.528196,-0.828771;;, + 4;3;-0.672467,-1.528196,-0.828771;;, + 5;3;-0.672467,-1.528196,-0.828771;;, + 6;3;-0.672467,-1.528196,-0.828771;;, + 7;3;-0.672467,-1.528196,-0.828771;;, + 8;3;-0.672467,-1.528196,-0.828771;;, + 9;3;-0.672467,-1.528196,-0.828771;;, + 10;3;-0.672467,-1.528196,-0.828771;;, + 11;3;-0.672467,-1.528196,-0.828771;;, + 12;3;-0.672467,-1.528196,-0.828771;;, + 13;3;-0.672467,-1.528196,-0.828771;;, + 14;3;-0.672467,-1.528196,-0.828771;;, + 15;3;-0.672467,-1.528196,-0.828771;;, + 16;3;-0.672467,-1.528196,-0.828771;;, + 17;3;-0.672467,-1.528196,-0.828771;;, + 18;3;-0.672467,-1.528196,-0.828771;;, + 19;3;-0.672467,-1.528196,-0.828771;;, + 20;3;-0.672467,-1.528196,-0.828771;;, + 21;3;-0.672467,-1.528196,-0.828771;;, + 22;3;-0.672467,-1.528196,-0.828771;;, + 23;3;-0.672467,-1.528196,-0.828771;;, + 24;3;-0.672467,-1.528196,-0.828771;;, + 25;3;-0.672467,-1.528196,-0.828771;;, + 26;3;-0.672467,-1.528196,-0.828771;;, + 27;3;-0.672467,-1.528196,-0.828771;;, + 28;3;-0.672467,-1.528196,-0.828771;;, + 29;3;-0.672467,-1.528196,-0.828771;;, + 30;3;-0.672467,-1.528196,-0.828771;;, + 31;3;-0.672467,-1.528196,-0.828771;;, + 32;3;-0.672467,-1.528196,-0.828771;;, + 33;3;-0.672467,-1.528196,-0.828771;;, + 34;3;-0.672467,-1.528196,-0.828771;;, + 35;3;-0.672467,-1.528196,-0.828771;;, + 36;3;-0.672467,-1.528196,-0.828771;;, + 37;3;-0.672467,-1.528196,-0.828771;;, + 38;3;-0.672467,-1.528196,-0.828771;;, + 39;3;-0.672467,-1.528196,-0.828771;;, + 40;3;-0.672467,-1.528196,-0.828771;;, + 41;3;-0.672467,-1.528196,-0.828771;;, + 42;3;-0.672467,-1.528196,-0.828771;;, + 43;3;-0.672467,-1.528196,-0.828771;;, + 44;3;-0.672467,-1.528196,-0.828771;;, + 45;3;-0.672467,-1.528196,-0.828771;;, + 46;3;-0.672467,-1.528196,-0.828771;;, + 47;3;-0.672467,-1.528196,-0.828771;;, + 48;3;-0.672467,-1.528196,-0.828771;;, + 49;3;-0.672467,-1.528196,-0.828771;;, + 50;3;-0.672467,-1.528196,-0.828771;;, + 51;3;-0.672467,-1.528196,-0.828771;;, + 52;3;-0.672467,-1.528196,-0.828771;;, + 53;3;-0.672467,-1.528196,-0.828771;;, + 54;3;-0.672467,-1.528196,-0.828771;;, + 55;3;-0.672467,-1.528196,-0.828771;;, + 56;3;-0.672467,-1.528196,-0.828771;;, + 57;3;-0.672467,-1.528196,-0.828771;;, + 58;3;-0.672467,-1.528196,-0.828771;;, + 59;3;-0.672467,-1.528196,-0.828771;;, + 60;3;-0.672467,-1.528196,-0.828771;;, + 61;3;-0.672467,-1.528196,-0.828771;;, + 62;3;-0.672467,-1.528196,-0.828771;;, + 63;3;-0.672467,-1.528196,-0.828771;;, + 64;3;-0.672467,-1.528196,-0.828771;;, + 65;3;-0.672467,-1.528196,-0.828771;;, + 66;3;-0.672467,-1.528196,-0.828771;;, + 67;3;-0.672467,-1.528196,-0.828771;;, + 68;3;-0.672467,-1.528196,-0.828771;;, + 69;3;-0.672467,-1.528196,-0.828771;;, + 70;3;-0.672467,-1.528196,-0.828771;;, + 71;3;-0.672467,-1.528196,-0.828771;;, + 72;3;-0.672467,-1.528196,-0.828771;;, + 73;3;-0.672467,-1.528196,-0.828771;;, + 74;3;-0.672467,-1.528196,-0.828771;;, + 75;3;-0.672467,-1.528196,-0.828771;;, + 76;3;-0.672467,-1.528196,-0.828771;;, + 77;3;-0.672467,-1.528196,-0.828771;;, + 78;3;-0.672467,-1.528196,-0.828771;;, + 79;3;-0.672467,-1.528196,-0.828771;;, + 80;3;-0.672467,-1.528196,-0.828771;;, + 81;3;-0.672467,-1.528196,-0.828771;;, + 82;3;-0.672467,-1.528196,-0.828771;;, + 83;3;-0.672467,-1.528196,-0.828771;;, + 84;3;-0.672467,-1.528196,-0.828771;;, + 85;3;-0.672467,-1.528196,-0.828771;;, + 86;3;-0.672467,-1.528196,-0.828771;;, + 87;3;-0.672467,-1.528196,-0.828771;;, + 88;3;-0.672467,-1.528196,-0.828771;;, + 89;3;-0.672467,-1.528196,-0.828771;;, + 90;3;-0.672467,-1.528196,-0.828771;;, + 91;3;-0.672467,-1.528196,-0.828771;;, + 92;3;-0.672467,-1.528196,-0.828771;;, + 93;3;-0.672467,-1.528196,-0.828771;;, + 94;3;-0.672467,-1.528196,-0.828771;;, + 95;3;-0.672467,-1.528196,-0.828771;;, + 96;3;-0.672467,-1.528196,-0.828771;;, + 97;3;-0.672467,-1.528196,-0.828771;;, + 98;3;-0.672467,-1.528196,-0.828771;;, + 99;3;-0.672467,-1.528196,-0.828771;;, + 100;3;-0.672467,-1.528196,-0.828771;;, + 101;3;-0.672467,-1.528196,-0.828771;;, + 102;3;-0.672467,-1.528196,-0.828771;;, + 103;3;-0.672467,-1.528196,-0.828771;;, + 104;3;-0.672467,-1.528196,-0.828771;;, + 105;3;-0.672467,-1.528196,-0.828771;;, + 106;3;-0.672467,-1.528196,-0.828771;;, + 107;3;-0.672467,-1.528196,-0.828771;;, + 108;3;-0.672467,-1.528196,-0.828771;;, + 109;3;-0.672467,-1.528196,-0.828771;;, + 110;3;-0.672467,-1.528196,-0.828771;;, + 111;3;-0.672467,-1.528196,-0.828771;;, + 112;3;-0.672467,-1.528196,-0.828771;;, + 113;3;-0.672467,-1.528196,-0.828771;;, + 114;3;-0.672467,-1.528196,-0.828771;;, + 115;3;-0.672467,-1.528196,-0.828771;;, + 116;3;-0.672467,-1.528196,-0.828771;;, + 117;3;-0.672467,-1.528196,-0.828771;;, + 118;3;-0.672467,-1.528196,-0.828771;;, + 119;3;-0.672467,-1.528196,-0.828771;;, + 120;3;-0.672467,-1.528196,-0.828771;;, + 121;3;-0.672467,-1.528196,-0.828771;;, + 122;3;-0.672467,-1.528196,-0.828771;;, + 123;3;-0.672467,-1.528196,-0.828771;;, + 124;3;-0.672467,-1.528196,-0.828771;;, + 125;3;-0.672467,-1.528196,-0.828771;;, + 126;3;-0.672467,-1.528196,-0.828771;;, + 127;3;-0.672467,-1.528196,-0.828771;;, + 128;3;-0.672467,-1.528196,-0.828771;;, + 129;3;-0.672467,-1.528196,-0.828771;;, + 130;3;-0.672467,-1.528196,-0.828771;;, + 131;3;-0.672467,-1.528196,-0.828771;;, + 132;3;-0.672467,-1.528196,-0.828771;;, + 133;3;-0.672467,-1.528196,-0.828771;;, + 134;3;-0.672467,-1.528196,-0.828771;;, + 135;3;-0.672467,-1.528196,-0.828771;;, + 136;3;-0.672467,-1.528196,-0.828771;;, + 137;3;-0.672467,-1.528196,-0.828771;;, + 138;3;-0.672467,-1.528196,-0.828771;;, + 139;3;-0.672467,-1.528196,-0.828771;;, + 140;3;-0.672467,-1.528196,-0.828771;;, + 141;3;-0.672467,-1.528196,-0.828771;;, + 142;3;-0.672467,-1.528196,-0.828771;;, + 143;3;-0.672467,-1.528196,-0.828771;;, + 144;3;-0.672467,-1.528196,-0.828771;;, + 145;3;-0.672467,-1.528196,-0.828771;;, + 146;3;-0.672467,-1.528196,-0.828771;;, + 147;3;-0.672467,-1.528196,-0.828771;;, + 148;3;-0.672467,-1.528196,-0.828771;;, + 149;3;-0.672467,-1.528196,-0.828771;;, + 150;3;-0.672467,-1.528196,-0.828771;;, + 151;3;-0.672467,-1.528196,-0.828771;;, + 152;3;-0.672467,-1.528196,-0.828771;;, + 153;3;-0.672467,-1.528196,-0.828771;;, + 154;3;-0.672467,-1.528196,-0.828771;;, + 155;3;-0.672467,-1.528196,-0.828771;;, + 156;3;-0.672467,-1.528196,-0.828771;;, + 157;3;-0.672467,-1.528196,-0.828771;;, + 158;3;-0.672467,-1.528196,-0.828771;;, + 159;3;-0.672467,-1.528196,-0.828771;;, + 160;3;-0.672467,-1.528196,-0.828771;;, + 161;3;-0.672467,-1.528196,-0.828771;;, + 162;3;-0.672467,-1.528196,-0.828771;;, + 163;3;-0.672467,-1.528196,-0.828771;;, + 164;3;-0.672467,-1.528196,-0.828771;;, + 165;3;-0.672467,-1.528196,-0.828771;;, + 166;3;-0.672467,-1.528196,-0.828771;;, + 167;3;-0.672467,-1.528196,-0.828771;;, + 168;3;-0.672467,-1.528196,-0.828771;;, + 169;3;-0.672467,-1.528196,-0.828771;;, + 170;3;-0.672467,-1.528196,-0.828771;;, + 171;3;-0.672467,-1.528196,-0.828771;;, + 172;3;-0.672467,-1.528196,-0.828771;;, + 173;3;-0.672467,-1.528196,-0.828771;;, + 174;3;-0.672467,-1.528196,-0.828771;;, + 175;3;-0.672467,-1.528196,-0.828771;;, + 176;3;-0.672467,-1.528196,-0.828771;;, + 177;3;-0.672467,-1.528196,-0.828771;;, + 178;3;-0.672467,-1.528196,-0.828771;;, + 179;3;-0.672467,-1.528196,-0.828771;;, + 180;3;-0.672467,-1.528196,-0.828771;;, + 181;3;-0.672467,-1.528196,-0.828771;;, + 182;3;-0.672467,-1.528196,-0.828771;;, + 183;3;-0.672467,-1.528196,-0.828771;;, + 184;3;-0.672467,-1.528196,-0.828771;;, + 185;3;-0.672467,-1.528196,-0.828771;;, + 186;3;-0.672467,-1.528196,-0.828771;;, + 187;3;-0.672467,-1.528196,-0.828771;;, + 188;3;-0.672467,-1.528196,-0.828771;;, + 189;3;-0.672467,-1.528196,-0.828771;;, + 190;3;-0.672467,-1.528196,-0.828771;;, + 191;3;-0.672467,-1.528196,-0.828771;;, + 192;3;-0.672467,-1.528196,-0.828771;;, + 193;3;-0.672467,-1.528196,-0.828771;;, + 194;3;-0.672467,-1.528196,-0.828771;;, + 195;3;-0.672467,-1.528196,-0.828771;;, + 196;3;-0.672467,-1.528196,-0.828771;;, + 197;3;-0.672467,-1.528196,-0.828771;;, + 198;3;-0.672467,-1.528196,-0.828771;;, + 199;3;-0.672467,-1.528196,-0.828771;;, + 200;3;-0.672467,-1.528196,-0.828771;;, + 201;3;-0.672467,-1.528196,-0.828771;;, + 202;3;-0.672467,-1.528196,-0.828771;;, + 203;3;-0.672467,-1.528196,-0.828771;;, + 204;3;-0.672467,-1.528196,-0.828771;;, + 205;3;-0.672467,-1.528196,-0.828771;;, + 206;3;-0.672467,-1.528196,-0.828771;;, + 207;3;-0.672467,-1.528196,-0.828771;;, + 208;3;-0.672467,-1.528196,-0.828771;;, + 209;3;-0.672467,-1.528196,-0.828771;;, + 210;3;-0.672467,-1.528196,-0.828771;;, + 211;3;-0.672467,-1.528196,-0.828771;;, + 212;3;-0.672467,-1.528196,-0.828771;;, + 213;3;-0.672467,-1.528196,-0.828771;;, + 214;3;-0.672467,-1.528196,-0.828771;;, + 215;3;-0.672467,-1.528196,-0.828771;;, + 216;3;-0.672467,-1.528196,-0.828771;;, + 217;3;-0.672467,-1.528196,-0.828771;;, + 218;3;-0.672467,-1.528196,-0.828771;;, + 219;3;-0.672467,-1.528196,-0.828771;;, + 220;3;-0.672467,-1.528196,-0.828771;;, + 221;3;-0.672467,-1.528196,-0.828771;;, + 222;3;-0.672467,-1.528196,-0.828771;;, + 223;3;-0.672467,-1.528196,-0.828771;;, + 224;3;-0.672467,-1.528196,-0.828771;;, + 225;3;-0.672467,-1.528196,-0.828771;;, + 226;3;-0.672467,-1.528196,-0.828771;;, + 227;3;-0.672467,-1.528196,-0.828771;;, + 228;3;-0.672467,-1.528196,-0.828771;;, + 229;3;-0.672467,-1.528196,-0.828771;;, + 230;3;-0.672467,-1.528196,-0.828771;;, + 231;3;-0.672467,-1.528196,-0.828771;;, + 232;3;-0.672467,-1.528196,-0.828771;;, + 233;3;-0.672467,-1.528196,-0.828771;;, + 234;3;-0.672467,-1.528196,-0.828771;;, + 235;3;-0.672467,-1.528196,-0.828771;;, + 236;3;-0.672467,-1.528196,-0.828771;;, + 237;3;-0.672467,-1.528196,-0.828771;;, + 238;3;-0.672467,-1.528196,-0.828771;;, + 239;3;-0.672467,-1.528196,-0.828771;;, + 240;3;-0.672467,-1.528196,-0.828771;;, + 241;3;-0.672467,-1.528196,-0.828771;;, + 242;3;-0.672467,-1.528196,-0.828771;;, + 243;3;-0.672467,-1.528196,-0.828771;;, + 244;3;-0.672467,-1.528196,-0.828771;;, + 245;3;-0.672467,-1.528196,-0.828771;;, + 246;3;-0.672467,-1.528196,-0.828771;;, + 247;3;-0.672467,-1.528196,-0.828771;;, + 248;3;-0.672467,-1.528196,-0.828771;;, + 249;3;-0.672467,-1.528196,-0.828771;;; + } + } + Animation { + {Armature_Bone} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 1;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 2;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 3;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 4;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 5;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 6;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 7;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 8;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 9;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 10;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 11;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 12;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 13;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 14;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 15;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 16;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 17;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 18;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 19;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 20;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 21;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 22;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 23;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 24;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 25;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 26;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 27;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 28;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 29;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 30;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 31;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 32;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 33;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 34;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 35;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 36;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 37;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 38;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 39;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 40;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 41;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 42;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 43;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 44;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 45;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 46;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 47;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 48;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 49;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 50;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 51;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 52;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 53;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 54;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 55;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 56;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 57;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 58;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 59;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 60;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 61;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 62;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 63;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 64;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 65;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 66;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 67;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 68;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 69;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 70;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 71;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 72;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 73;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 74;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 75;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 76;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 77;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 78;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 79;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 80;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 81;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 82;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 83;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 84;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 85;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 86;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 87;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 88;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 89;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 90;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 91;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 92;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 93;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 94;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 95;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 96;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 97;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 98;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 99;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 100;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 101;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 102;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 103;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 104;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 105;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 106;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 107;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 108;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 109;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 110;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 111;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 112;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 113;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 114;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 115;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 116;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 117;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 118;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 119;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 120;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 121;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 122;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 123;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 124;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 125;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 126;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 127;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 128;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 129;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 130;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 131;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 132;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 133;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 134;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 135;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 136;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 137;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 138;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 139;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 140;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 141;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 142;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 143;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 144;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 145;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 146;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 147;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 148;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 149;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 150;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 151;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 152;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 153;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 154;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 155;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 156;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 157;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 158;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 159;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 160;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 161;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 162;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 163;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 164;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 165;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 166;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 167;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 168;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 169;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 170;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 171;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 172;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 173;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 174;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 175;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 176;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 177;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 178;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 179;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 180;4;-0.498303, 0.498304, 0.499305,-0.499305;;, + 181;4;-0.510060, 0.510060, 0.480538,-0.480538;;, + 182;4;-0.529175, 0.529175, 0.450023,-0.450023;;, + 183;4;-0.554177, 0.554177, 0.410112,-0.410111;;, + 184;4;-0.582500, 0.582501, 0.364898,-0.364898;;, + 185;4;-0.610824, 0.610824, 0.319685,-0.319685;;, + 186;4;-0.635826, 0.635826, 0.279773,-0.279773;;, + 187;4;-0.654941, 0.654941, 0.249259,-0.249258;;, + 188;4;-0.666697, 0.666698, 0.230492,-0.230491;;, + 189;4;-0.670604, 0.670604, 0.224256,-0.224255;;, + 190;4;-0.670604, 0.670604, 0.224256,-0.224255;;, + 191;4;-0.670604, 0.670604, 0.224256,-0.224255;;, + 192;4;-0.670604, 0.670604, 0.224256,-0.224255;;, + 193;4;-0.670604, 0.670604, 0.224256,-0.224255;;, + 194;4;-0.670604, 0.670604, 0.224256,-0.224255;;, + 195;4;-0.654941, 0.654941, 0.249259,-0.249258;;, + 196;4;-0.610824, 0.610824, 0.319685,-0.319685;;, + 197;4;-0.554177, 0.554177, 0.410112,-0.410111;;, + 198;4;-0.510060, 0.510060, 0.480538,-0.480538;;, + 199;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 200;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 201;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 202;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 203;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 204;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 205;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 206;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 207;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 208;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 209;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 210;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 211;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 212;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 213;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 214;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 215;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 216;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 217;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 218;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 219;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 220;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 221;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 222;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 223;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 224;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 225;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 226;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 227;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 228;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 229;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 230;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 231;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 232;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 233;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 234;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 235;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 236;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 237;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 238;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 239;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 240;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 241;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 242;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 243;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 244;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 245;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 246;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 247;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 248;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 249;4;-0.494397, 0.494397, 0.505541,-0.505541;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3; 0.506179, 1.550838, 1.183012;;, + 1;3; 0.506179, 1.550838, 1.183012;;, + 2;3; 0.506179, 1.550838, 1.183012;;, + 3;3; 0.506179, 1.550838, 1.183012;;, + 4;3; 0.506179, 1.550838, 1.183012;;, + 5;3; 0.506179, 1.550838, 1.183012;;, + 6;3; 0.506179, 1.550838, 1.183012;;, + 7;3; 0.506179, 1.550838, 1.183012;;, + 8;3; 0.506179, 1.550838, 1.183012;;, + 9;3; 0.506179, 1.550838, 1.183012;;, + 10;3; 0.506179, 1.550838, 1.183012;;, + 11;3; 0.506179, 1.550838, 1.183012;;, + 12;3; 0.506179, 1.550838, 1.183012;;, + 13;3; 0.506179, 1.550838, 1.183012;;, + 14;3; 0.506179, 1.550838, 1.183012;;, + 15;3; 0.506179, 1.550838, 1.183012;;, + 16;3; 0.506179, 1.550838, 1.183012;;, + 17;3; 0.506179, 1.550838, 1.183012;;, + 18;3; 0.506179, 1.550838, 1.183012;;, + 19;3; 0.506179, 1.550838, 1.183012;;, + 20;3; 0.506179, 1.550838, 1.183012;;, + 21;3; 0.506179, 1.550838, 1.183012;;, + 22;3; 0.506179, 1.550838, 1.183012;;, + 23;3; 0.506179, 1.550838, 1.183012;;, + 24;3; 0.506179, 1.550838, 1.183012;;, + 25;3; 0.506179, 1.550838, 1.183012;;, + 26;3; 0.506179, 1.550838, 1.183012;;, + 27;3; 0.506179, 1.550838, 1.183012;;, + 28;3; 0.506179, 1.550838, 1.183012;;, + 29;3; 0.506179, 1.550838, 1.183012;;, + 30;3; 0.506179, 1.550838, 1.183012;;, + 31;3; 0.506179, 1.550838, 1.183012;;, + 32;3; 0.506179, 1.550838, 1.183012;;, + 33;3; 0.506179, 1.550838, 1.183012;;, + 34;3; 0.506179, 1.550838, 1.183012;;, + 35;3; 0.506179, 1.550838, 1.183012;;, + 36;3; 0.506179, 1.550838, 1.183012;;, + 37;3; 0.506179, 1.550838, 1.183012;;, + 38;3; 0.506179, 1.550838, 1.183012;;, + 39;3; 0.506179, 1.550838, 1.183012;;, + 40;3; 0.506179, 1.550838, 1.183012;;, + 41;3; 0.506179, 1.550838, 1.183012;;, + 42;3; 0.506179, 1.550838, 1.183012;;, + 43;3; 0.506179, 1.550838, 1.183012;;, + 44;3; 0.506179, 1.550838, 1.183012;;, + 45;3; 0.506179, 1.550838, 1.183012;;, + 46;3; 0.506179, 1.550838, 1.183012;;, + 47;3; 0.506179, 1.550838, 1.183012;;, + 48;3; 0.506179, 1.550838, 1.183012;;, + 49;3; 0.506179, 1.550838, 1.183012;;, + 50;3; 0.506179, 1.550838, 1.183012;;, + 51;3; 0.506179, 1.550838, 1.183012;;, + 52;3; 0.506179, 1.550838, 1.183012;;, + 53;3; 0.506179, 1.550838, 1.183012;;, + 54;3; 0.506179, 1.550838, 1.183012;;, + 55;3; 0.506179, 1.550838, 1.183012;;, + 56;3; 0.506179, 1.550838, 1.183012;;, + 57;3; 0.506179, 1.550838, 1.183012;;, + 58;3; 0.506179, 1.550838, 1.183012;;, + 59;3; 0.506179, 1.550838, 1.183012;;, + 60;3; 0.506179, 1.550838, 1.183012;;, + 61;3; 0.506179, 1.550838, 1.183012;;, + 62;3; 0.506179, 1.550838, 1.183012;;, + 63;3; 0.506179, 1.550838, 1.183012;;, + 64;3; 0.506179, 1.550838, 1.183012;;, + 65;3; 0.506179, 1.550838, 1.183012;;, + 66;3; 0.506179, 1.550838, 1.183012;;, + 67;3; 0.506179, 1.550838, 1.183012;;, + 68;3; 0.506179, 1.550838, 1.183012;;, + 69;3; 0.506179, 1.550838, 1.183012;;, + 70;3; 0.506179, 1.550838, 1.183012;;, + 71;3; 0.506179, 1.550838, 1.183012;;, + 72;3; 0.506179, 1.550838, 1.183012;;, + 73;3; 0.506179, 1.550838, 1.183012;;, + 74;3; 0.506179, 1.550838, 1.183012;;, + 75;3; 0.506179, 1.550838, 1.183012;;, + 76;3; 0.506179, 1.550838, 1.183012;;, + 77;3; 0.506179, 1.550838, 1.183012;;, + 78;3; 0.506179, 1.550838, 1.183012;;, + 79;3; 0.506179, 1.550838, 1.183012;;, + 80;3; 0.506179, 1.550838, 1.183012;;, + 81;3; 0.506179, 1.550838, 1.183012;;, + 82;3; 0.506179, 1.550838, 1.183012;;, + 83;3; 0.506179, 1.550838, 1.183012;;, + 84;3; 0.506179, 1.550838, 1.183012;;, + 85;3; 0.506179, 1.550838, 1.183012;;, + 86;3; 0.506179, 1.550838, 1.183012;;, + 87;3; 0.506179, 1.550838, 1.183012;;, + 88;3; 0.506179, 1.550838, 1.183012;;, + 89;3; 0.506179, 1.550838, 1.183012;;, + 90;3; 0.506179, 1.550838, 1.183012;;, + 91;3; 0.506179, 1.550838, 1.183012;;, + 92;3; 0.506179, 1.550838, 1.183012;;, + 93;3; 0.506179, 1.550838, 1.183012;;, + 94;3; 0.506179, 1.550838, 1.183012;;, + 95;3; 0.506179, 1.550838, 1.183012;;, + 96;3; 0.506179, 1.550838, 1.183012;;, + 97;3; 0.506179, 1.550838, 1.183012;;, + 98;3; 0.506179, 1.550838, 1.183012;;, + 99;3; 0.506179, 1.550838, 1.183012;;, + 100;3; 0.506179, 1.550838, 1.183012;;, + 101;3; 0.506179, 1.550838, 1.183012;;, + 102;3; 0.506179, 1.550838, 1.183012;;, + 103;3; 0.506179, 1.550838, 1.183012;;, + 104;3; 0.506179, 1.550838, 1.183012;;, + 105;3; 0.506179, 1.550838, 1.183012;;, + 106;3; 0.506179, 1.550838, 1.183012;;, + 107;3; 0.506179, 1.550838, 1.183012;;, + 108;3; 0.506179, 1.550838, 1.183012;;, + 109;3; 0.506179, 1.550838, 1.183012;;, + 110;3; 0.506179, 1.550838, 1.183012;;, + 111;3; 0.506179, 1.550838, 1.183012;;, + 112;3; 0.506179, 1.550838, 1.183012;;, + 113;3; 0.506179, 1.550838, 1.183012;;, + 114;3; 0.506179, 1.550838, 1.183012;;, + 115;3; 0.506179, 1.550838, 1.183012;;, + 116;3; 0.506179, 1.550838, 1.183012;;, + 117;3; 0.506179, 1.550838, 1.183012;;, + 118;3; 0.506179, 1.550838, 1.183012;;, + 119;3; 0.506179, 1.550838, 1.183012;;, + 120;3; 0.506179, 1.550838, 1.183012;;, + 121;3; 0.506179, 1.550838, 1.183012;;, + 122;3; 0.506179, 1.550838, 1.183012;;, + 123;3; 0.506179, 1.550838, 1.183012;;, + 124;3; 0.506179, 1.550838, 1.183012;;, + 125;3; 0.506179, 1.550838, 1.183012;;, + 126;3; 0.506179, 1.550838, 1.183012;;, + 127;3; 0.506179, 1.550838, 1.183012;;, + 128;3; 0.506179, 1.550838, 1.183012;;, + 129;3; 0.506179, 1.550838, 1.183012;;, + 130;3; 0.506179, 1.550838, 1.183012;;, + 131;3; 0.506179, 1.550838, 1.183012;;, + 132;3; 0.506179, 1.550838, 1.183012;;, + 133;3; 0.506179, 1.550838, 1.183012;;, + 134;3; 0.506179, 1.550838, 1.183012;;, + 135;3; 0.506179, 1.550838, 1.183012;;, + 136;3; 0.506179, 1.550838, 1.183012;;, + 137;3; 0.506179, 1.550838, 1.183012;;, + 138;3; 0.506179, 1.550838, 1.183012;;, + 139;3; 0.506179, 1.550838, 1.183012;;, + 140;3; 0.506179, 1.550838, 1.183012;;, + 141;3; 0.506179, 1.550838, 1.183012;;, + 142;3; 0.506179, 1.550838, 1.183012;;, + 143;3; 0.506179, 1.550838, 1.183012;;, + 144;3; 0.506179, 1.550838, 1.183012;;, + 145;3; 0.506179, 1.550838, 1.183012;;, + 146;3; 0.506179, 1.550838, 1.183012;;, + 147;3; 0.506179, 1.550838, 1.183012;;, + 148;3; 0.506179, 1.550838, 1.183012;;, + 149;3; 0.506179, 1.550838, 1.183012;;, + 150;3; 0.506179, 1.550838, 1.183012;;, + 151;3; 0.506179, 1.550838, 1.183012;;, + 152;3; 0.506179, 1.550838, 1.183012;;, + 153;3; 0.506179, 1.550838, 1.183012;;, + 154;3; 0.506179, 1.550838, 1.183012;;, + 155;3; 0.506179, 1.550838, 1.183012;;, + 156;3; 0.506179, 1.550838, 1.183012;;, + 157;3; 0.506179, 1.550838, 1.183012;;, + 158;3; 0.506179, 1.550838, 1.183012;;, + 159;3; 0.506179, 1.550838, 1.183012;;, + 160;3; 0.506179, 1.550838, 1.183012;;, + 161;3; 0.506179, 1.550838, 1.183012;;, + 162;3; 0.506179, 1.550838, 1.183012;;, + 163;3; 0.506179, 1.550838, 1.183012;;, + 164;3; 0.506179, 1.550838, 1.183012;;, + 165;3; 0.506179, 1.550838, 1.183012;;, + 166;3; 0.506179, 1.550838, 1.183012;;, + 167;3; 0.506179, 1.550838, 1.183012;;, + 168;3; 0.506179, 1.550838, 1.183012;;, + 169;3; 0.506179, 1.550838, 1.183012;;, + 170;3; 0.506179, 1.550838, 1.183012;;, + 171;3; 0.506179, 1.550838, 1.183012;;, + 172;3; 0.506179, 1.550838, 1.183012;;, + 173;3; 0.506179, 1.550838, 1.183012;;, + 174;3; 0.506179, 1.550838, 1.183012;;, + 175;3; 0.506179, 1.550838, 1.183012;;, + 176;3; 0.506179, 1.550838, 1.183012;;, + 177;3; 0.506179, 1.550838, 1.183012;;, + 178;3; 0.506179, 1.550838, 1.183012;;, + 179;3; 0.506179, 1.550838, 1.183012;;, + 180;3; 0.534224, 1.550838, 1.200614;;, + 181;3; 0.618629, 1.550838, 1.253590;;, + 182;3; 0.755866, 1.550838, 1.339727;;, + 183;3; 0.935366, 1.550838, 1.452389;;, + 184;3; 1.138711, 1.550838, 1.580017;;, + 185;3; 1.342055, 1.550838, 1.707644;;, + 186;3; 1.521555, 1.550838, 1.820307;;, + 187;3; 1.658792, 1.550838, 1.906443;;, + 188;3; 1.743197, 1.550838, 1.959419;;, + 189;3; 1.771243, 1.550838, 1.977021;;, + 190;3; 1.771243, 1.550838, 1.977021;;, + 191;3; 1.771243, 1.550838, 1.977021;;, + 192;3; 1.771243, 1.550838, 1.977021;;, + 193;3; 1.771243, 1.550838, 1.977021;;, + 194;3; 1.771243, 1.550838, 1.977021;;, + 195;3; 1.658792, 1.550838, 1.906443;;, + 196;3; 1.342055, 1.550838, 1.707644;;, + 197;3; 0.935367, 1.550838, 1.452389;;, + 198;3; 0.618629, 1.550838, 1.253590;;, + 199;3; 0.506179, 1.550838, 1.183012;;, + 200;3; 0.506179, 1.550838, 1.183012;;, + 201;3; 0.506179, 1.550838, 1.183012;;, + 202;3; 0.506179, 1.550838, 1.183012;;, + 203;3; 0.506179, 1.550838, 1.183012;;, + 204;3; 0.506179, 1.550838, 1.183012;;, + 205;3; 0.506179, 1.550838, 1.183012;;, + 206;3; 0.506179, 1.550838, 1.183012;;, + 207;3; 0.506179, 1.550838, 1.183012;;, + 208;3; 0.506179, 1.550838, 1.183012;;, + 209;3; 0.506179, 1.550838, 1.183012;;, + 210;3; 0.506179, 1.550838, 1.183012;;, + 211;3; 0.506179, 1.550838, 1.183012;;, + 212;3; 0.506179, 1.550838, 1.183012;;, + 213;3; 0.506179, 1.550838, 1.183012;;, + 214;3; 0.506179, 1.550838, 1.183012;;, + 215;3; 0.506179, 1.550838, 1.183012;;, + 216;3; 0.506179, 1.550838, 1.183012;;, + 217;3; 0.506179, 1.550838, 1.183012;;, + 218;3; 0.506179, 1.550838, 1.183012;;, + 219;3; 0.506179, 1.550838, 1.183012;;, + 220;3; 0.506179, 1.550838, 1.183012;;, + 221;3; 0.506179, 1.550838, 1.183012;;, + 222;3; 0.506179, 1.550838, 1.183012;;, + 223;3; 0.506179, 1.550838, 1.183012;;, + 224;3; 0.506179, 1.550838, 1.183012;;, + 225;3; 0.506179, 1.550838, 1.183012;;, + 226;3; 0.506179, 1.550838, 1.183012;;, + 227;3; 0.506179, 1.550838, 1.183012;;, + 228;3; 0.506179, 1.550838, 1.183012;;, + 229;3; 0.506179, 1.550838, 1.183012;;, + 230;3; 0.506179, 1.550838, 1.183012;;, + 231;3; 0.506179, 1.550838, 1.183012;;, + 232;3; 0.506179, 1.550838, 1.183012;;, + 233;3; 0.506179, 1.550838, 1.183012;;, + 234;3; 0.506179, 1.550838, 1.183012;;, + 235;3; 0.506179, 1.550838, 1.183012;;, + 236;3; 0.506179, 1.550838, 1.183012;;, + 237;3; 0.506179, 1.550838, 1.183012;;, + 238;3; 0.506179, 1.550838, 1.183012;;, + 239;3; 0.506179, 1.550838, 1.183012;;, + 240;3; 0.506179, 1.550838, 1.183012;;, + 241;3; 0.506179, 1.550838, 1.183012;;, + 242;3; 0.506179, 1.550838, 1.183012;;, + 243;3; 0.506179, 1.550838, 1.183012;;, + 244;3; 0.506179, 1.550838, 1.183012;;, + 245;3; 0.506179, 1.550838, 1.183012;;, + 246;3; 0.506179, 1.550838, 1.183012;;, + 247;3; 0.506179, 1.550838, 1.183012;;, + 248;3; 0.506179, 1.550838, 1.183012;;, + 249;3; 0.506179, 1.550838, 1.183012;;; + } + } + Animation { + {Armature_Bone_002} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 1;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 2;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 3;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 4;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 5;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 6;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 7;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 8;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 9;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 10;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 11;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 12;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 13;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 14;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 15;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 16;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 17;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 18;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 19;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 20;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 21;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 22;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 23;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 24;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 25;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 26;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 27;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 28;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 29;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 30;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 31;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 32;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 33;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 34;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 35;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 36;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 37;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 38;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 39;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 40;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 41;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 42;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 43;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 44;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 45;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 46;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 47;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 48;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 49;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 50;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 51;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 52;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 53;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 54;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 55;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 56;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 57;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 58;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 59;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 60;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 61;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 62;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 63;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 64;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 65;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 66;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 67;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 68;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 69;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 70;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 71;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 72;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 73;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 74;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 75;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 76;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 77;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 78;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 79;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 80;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 81;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 82;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 83;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 84;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 85;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 86;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 87;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 88;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 89;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 90;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 91;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 92;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 93;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 94;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 95;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 96;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 97;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 98;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 99;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 100;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 101;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 102;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 103;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 104;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 105;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 106;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 107;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 108;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 109;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 110;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 111;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 112;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 113;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 114;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 115;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 116;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 117;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 118;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 119;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 120;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 121;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 122;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 123;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 124;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 125;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 126;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 127;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 128;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 129;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 130;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 131;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 132;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 133;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 134;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 135;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 136;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 137;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 138;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 139;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 140;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 141;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 142;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 143;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 144;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 145;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 146;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 147;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 148;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 149;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 150;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 151;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 152;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 153;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 154;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 155;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 156;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 157;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 158;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 159;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 160;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 161;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 162;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 163;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 164;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 165;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 166;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 167;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 168;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 169;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 170;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 171;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 172;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 173;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 174;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 175;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 176;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 177;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 178;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 179;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 180;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 181;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 182;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 183;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 184;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 185;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 186;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 187;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 188;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 189;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 190;4;-0.702411,-0.016559,-0.702412,-0.016559;;, + 191;4;-0.689311,-0.085395,-0.689311,-0.085395;;, + 192;4;-0.672490,-0.173780,-0.672490,-0.173780;;, + 193;4;-0.659389,-0.242616,-0.659389,-0.242616;;, + 194;4;-0.654738,-0.267054,-0.654738,-0.267055;;, + 195;4;-0.659389,-0.242616,-0.659389,-0.242616;;, + 196;4;-0.672490,-0.173780,-0.672490,-0.173780;;, + 197;4;-0.689311,-0.085395,-0.689311,-0.085395;;, + 198;4;-0.702411,-0.016559,-0.702412,-0.016559;;, + 199;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 200;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 201;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 202;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 203;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 204;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 205;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 206;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 207;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 208;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 209;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 210;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 211;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 212;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 213;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 214;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 215;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 216;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 217;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 218;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 219;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 220;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 221;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 222;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 223;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 224;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 225;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 226;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 227;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 228;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 229;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 230;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 231;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 232;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 233;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 234;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 235;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 236;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 237;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 238;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 239;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 240;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 241;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 242;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 243;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 244;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 245;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 246;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 247;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 248;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 249;4;-0.707063, 0.007880,-0.707063, 0.007880;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3; 0.000000, 0.344354,-0.000000;;, + 1;3; 0.000000, 0.344354,-0.000000;;, + 2;3; 0.000000, 0.344354,-0.000000;;, + 3;3; 0.000000, 0.344354,-0.000000;;, + 4;3; 0.000000, 0.344354,-0.000000;;, + 5;3; 0.000000, 0.344354,-0.000000;;, + 6;3; 0.000000, 0.344354,-0.000000;;, + 7;3; 0.000000, 0.344354,-0.000000;;, + 8;3; 0.000000, 0.344354,-0.000000;;, + 9;3; 0.000000, 0.344354,-0.000000;;, + 10;3; 0.000000, 0.344354,-0.000000;;, + 11;3; 0.000000, 0.344354,-0.000000;;, + 12;3; 0.000000, 0.344354,-0.000000;;, + 13;3; 0.000000, 0.344354,-0.000000;;, + 14;3; 0.000000, 0.344354,-0.000000;;, + 15;3; 0.000000, 0.344354,-0.000000;;, + 16;3; 0.000000, 0.344354,-0.000000;;, + 17;3; 0.000000, 0.344354,-0.000000;;, + 18;3; 0.000000, 0.344354,-0.000000;;, + 19;3; 0.000000, 0.344354,-0.000000;;, + 20;3; 0.000000, 0.344354,-0.000000;;, + 21;3; 0.000000, 0.344354,-0.000000;;, + 22;3; 0.000000, 0.344354,-0.000000;;, + 23;3; 0.000000, 0.344354,-0.000000;;, + 24;3; 0.000000, 0.344354,-0.000000;;, + 25;3; 0.000000, 0.344354,-0.000000;;, + 26;3; 0.000000, 0.344354,-0.000000;;, + 27;3; 0.000000, 0.344354,-0.000000;;, + 28;3; 0.000000, 0.344354,-0.000000;;, + 29;3; 0.000000, 0.344354,-0.000000;;, + 30;3; 0.000000, 0.344354,-0.000000;;, + 31;3; 0.000000, 0.344354,-0.000000;;, + 32;3; 0.000000, 0.344354,-0.000000;;, + 33;3; 0.000000, 0.344354,-0.000000;;, + 34;3; 0.000000, 0.344354,-0.000000;;, + 35;3; 0.000000, 0.344354,-0.000000;;, + 36;3; 0.000000, 0.344354,-0.000000;;, + 37;3; 0.000000, 0.344354,-0.000000;;, + 38;3; 0.000000, 0.344354,-0.000000;;, + 39;3; 0.000000, 0.344354,-0.000000;;, + 40;3; 0.000000, 0.344354,-0.000000;;, + 41;3; 0.000000, 0.344354,-0.000000;;, + 42;3; 0.000000, 0.344354,-0.000000;;, + 43;3; 0.000000, 0.344354,-0.000000;;, + 44;3; 0.000000, 0.344354,-0.000000;;, + 45;3; 0.000000, 0.344354,-0.000000;;, + 46;3; 0.000000, 0.344354,-0.000000;;, + 47;3; 0.000000, 0.344354,-0.000000;;, + 48;3; 0.000000, 0.344354,-0.000000;;, + 49;3; 0.000000, 0.344354,-0.000000;;, + 50;3; 0.000000, 0.344354,-0.000000;;, + 51;3; 0.000000, 0.344354,-0.000000;;, + 52;3; 0.000000, 0.344354,-0.000000;;, + 53;3; 0.000000, 0.344354,-0.000000;;, + 54;3; 0.000000, 0.344354,-0.000000;;, + 55;3; 0.000000, 0.344354,-0.000000;;, + 56;3; 0.000000, 0.344354,-0.000000;;, + 57;3; 0.000000, 0.344354,-0.000000;;, + 58;3; 0.000000, 0.344354,-0.000000;;, + 59;3; 0.000000, 0.344354,-0.000000;;, + 60;3; 0.000000, 0.344354,-0.000000;;, + 61;3; 0.000000, 0.344354,-0.000000;;, + 62;3; 0.000000, 0.344354,-0.000000;;, + 63;3; 0.000000, 0.344354,-0.000000;;, + 64;3; 0.000000, 0.344354,-0.000000;;, + 65;3; 0.000000, 0.344354,-0.000000;;, + 66;3; 0.000000, 0.344354,-0.000000;;, + 67;3; 0.000000, 0.344354,-0.000000;;, + 68;3; 0.000000, 0.344354,-0.000000;;, + 69;3; 0.000000, 0.344354,-0.000000;;, + 70;3; 0.000000, 0.344354,-0.000000;;, + 71;3; 0.000000, 0.344354,-0.000000;;, + 72;3; 0.000000, 0.344354,-0.000000;;, + 73;3; 0.000000, 0.344354,-0.000000;;, + 74;3; 0.000000, 0.344354,-0.000000;;, + 75;3; 0.000000, 0.344354,-0.000000;;, + 76;3; 0.000000, 0.344354,-0.000000;;, + 77;3; 0.000000, 0.344354,-0.000000;;, + 78;3; 0.000000, 0.344354,-0.000000;;, + 79;3; 0.000000, 0.344354,-0.000000;;, + 80;3; 0.000000, 0.344354,-0.000000;;, + 81;3; 0.000000, 0.344354,-0.000000;;, + 82;3; 0.000000, 0.344354,-0.000000;;, + 83;3; 0.000000, 0.344354,-0.000000;;, + 84;3; 0.000000, 0.344354,-0.000000;;, + 85;3; 0.000000, 0.344354,-0.000000;;, + 86;3; 0.000000, 0.344354,-0.000000;;, + 87;3; 0.000000, 0.344354,-0.000000;;, + 88;3; 0.000000, 0.344354,-0.000000;;, + 89;3; 0.000000, 0.344354,-0.000000;;, + 90;3; 0.000000, 0.344354,-0.000000;;, + 91;3; 0.000000, 0.344354,-0.000000;;, + 92;3; 0.000000, 0.344354,-0.000000;;, + 93;3; 0.000000, 0.344354,-0.000000;;, + 94;3; 0.000000, 0.344354,-0.000000;;, + 95;3; 0.000000, 0.344354,-0.000000;;, + 96;3; 0.000000, 0.344354,-0.000000;;, + 97;3; 0.000000, 0.344354,-0.000000;;, + 98;3; 0.000000, 0.344354,-0.000000;;, + 99;3; 0.000000, 0.344354,-0.000000;;, + 100;3; 0.000000, 0.344354,-0.000000;;, + 101;3; 0.000000, 0.344354,-0.000000;;, + 102;3; 0.000000, 0.344354,-0.000000;;, + 103;3; 0.000000, 0.344354,-0.000000;;, + 104;3; 0.000000, 0.344354,-0.000000;;, + 105;3; 0.000000, 0.344354,-0.000000;;, + 106;3; 0.000000, 0.344354,-0.000000;;, + 107;3; 0.000000, 0.344354,-0.000000;;, + 108;3; 0.000000, 0.344354,-0.000000;;, + 109;3; 0.000000, 0.344354,-0.000000;;, + 110;3; 0.000000, 0.344354,-0.000000;;, + 111;3; 0.000000, 0.344354,-0.000000;;, + 112;3; 0.000000, 0.344354,-0.000000;;, + 113;3; 0.000000, 0.344354,-0.000000;;, + 114;3; 0.000000, 0.344354,-0.000000;;, + 115;3; 0.000000, 0.344354,-0.000000;;, + 116;3; 0.000000, 0.344354,-0.000000;;, + 117;3; 0.000000, 0.344354,-0.000000;;, + 118;3; 0.000000, 0.344354,-0.000000;;, + 119;3; 0.000000, 0.344354,-0.000000;;, + 120;3; 0.000000, 0.344354,-0.000000;;, + 121;3; 0.000000, 0.344354,-0.000000;;, + 122;3; 0.000000, 0.344354,-0.000000;;, + 123;3; 0.000000, 0.344354,-0.000000;;, + 124;3; 0.000000, 0.344354,-0.000000;;, + 125;3; 0.000000, 0.344354,-0.000000;;, + 126;3; 0.000000, 0.344354,-0.000000;;, + 127;3; 0.000000, 0.344354,-0.000000;;, + 128;3; 0.000000, 0.344354,-0.000000;;, + 129;3; 0.000000, 0.344354,-0.000000;;, + 130;3; 0.000000, 0.344354,-0.000000;;, + 131;3; 0.000000, 0.344354,-0.000000;;, + 132;3; 0.000000, 0.344354,-0.000000;;, + 133;3; 0.000000, 0.344354,-0.000000;;, + 134;3; 0.000000, 0.344354,-0.000000;;, + 135;3; 0.000000, 0.344354,-0.000000;;, + 136;3; 0.000000, 0.344354,-0.000000;;, + 137;3; 0.000000, 0.344354,-0.000000;;, + 138;3; 0.000000, 0.344354,-0.000000;;, + 139;3; 0.000000, 0.344354,-0.000000;;, + 140;3; 0.000000, 0.344354,-0.000000;;, + 141;3; 0.000000, 0.344354,-0.000000;;, + 142;3; 0.000000, 0.344354,-0.000000;;, + 143;3; 0.000000, 0.344354,-0.000000;;, + 144;3; 0.000000, 0.344354,-0.000000;;, + 145;3; 0.000000, 0.344354,-0.000000;;, + 146;3; 0.000000, 0.344354,-0.000000;;, + 147;3; 0.000000, 0.344354,-0.000000;;, + 148;3; 0.000000, 0.344354,-0.000000;;, + 149;3; 0.000000, 0.344354,-0.000000;;, + 150;3; 0.000000, 0.344354,-0.000000;;, + 151;3; 0.000000, 0.344354,-0.000000;;, + 152;3; 0.000000, 0.344354,-0.000000;;, + 153;3; 0.000000, 0.344354,-0.000000;;, + 154;3; 0.000000, 0.344354,-0.000000;;, + 155;3; 0.000000, 0.344354,-0.000000;;, + 156;3; 0.000000, 0.344354,-0.000000;;, + 157;3; 0.000000, 0.344354,-0.000000;;, + 158;3; 0.000000, 0.344354,-0.000000;;, + 159;3; 0.000000, 0.344354,-0.000000;;, + 160;3; 0.000000, 0.344354,-0.000000;;, + 161;3; 0.000000, 0.344354,-0.000000;;, + 162;3; 0.000000, 0.344354,-0.000000;;, + 163;3; 0.000000, 0.344354,-0.000000;;, + 164;3; 0.000000, 0.344354,-0.000000;;, + 165;3; 0.000000, 0.344354,-0.000000;;, + 166;3; 0.000000, 0.344354,-0.000000;;, + 167;3; 0.000000, 0.344354,-0.000000;;, + 168;3; 0.000000, 0.344354,-0.000000;;, + 169;3; 0.000000, 0.344354,-0.000000;;, + 170;3; 0.000000, 0.344354,-0.000000;;, + 171;3; 0.000000, 0.344354,-0.000000;;, + 172;3; 0.000000, 0.344354,-0.000000;;, + 173;3; 0.000000, 0.344354,-0.000000;;, + 174;3; 0.000000, 0.344354,-0.000000;;, + 175;3; 0.000000, 0.344354,-0.000000;;, + 176;3; 0.000000, 0.344354,-0.000000;;, + 177;3; 0.000000, 0.344354,-0.000000;;, + 178;3; 0.000000, 0.344354,-0.000000;;, + 179;3; 0.000000, 0.344354,-0.000000;;, + 180;3;-0.000000, 0.344354, 0.000000;;, + 181;3;-0.000000, 0.344354, 0.000000;;, + 182;3;-0.000000, 0.344354,-0.000000;;, + 183;3; 0.000000, 0.344354, 0.000000;;, + 184;3;-0.000000, 0.344355,-0.000000;;, + 185;3; 0.000000, 0.344354, 0.000000;;, + 186;3;-0.000000, 0.344355,-0.000000;;, + 187;3; 0.000000, 0.344354,-0.000000;;, + 188;3;-0.000000, 0.344354,-0.000000;;, + 189;3;-0.000000, 0.344355, 0.000000;;, + 190;3;-0.000000, 0.344355, 0.000000;;, + 191;3;-0.000000, 0.344355, 0.000000;;, + 192;3;-0.000000, 0.344355, 0.000000;;, + 193;3;-0.000000, 0.344355, 0.000000;;, + 194;3;-0.000000, 0.344355, 0.000000;;, + 195;3; 0.000000, 0.344354,-0.000000;;, + 196;3; 0.000000, 0.344355, 0.000000;;, + 197;3; 0.000000, 0.344354, 0.000000;;, + 198;3;-0.000000, 0.344354, 0.000000;;, + 199;3; 0.000000, 0.344354,-0.000000;;, + 200;3; 0.000000, 0.344354,-0.000000;;, + 201;3; 0.000000, 0.344354,-0.000000;;, + 202;3; 0.000000, 0.344354,-0.000000;;, + 203;3; 0.000000, 0.344354,-0.000000;;, + 204;3; 0.000000, 0.344354,-0.000000;;, + 205;3; 0.000000, 0.344354,-0.000000;;, + 206;3; 0.000000, 0.344354,-0.000000;;, + 207;3; 0.000000, 0.344354,-0.000000;;, + 208;3; 0.000000, 0.344354,-0.000000;;, + 209;3; 0.000000, 0.344354,-0.000000;;, + 210;3; 0.000000, 0.344354,-0.000000;;, + 211;3; 0.000000, 0.344354,-0.000000;;, + 212;3; 0.000000, 0.344354,-0.000000;;, + 213;3; 0.000000, 0.344354,-0.000000;;, + 214;3; 0.000000, 0.344354,-0.000000;;, + 215;3; 0.000000, 0.344354,-0.000000;;, + 216;3; 0.000000, 0.344354,-0.000000;;, + 217;3; 0.000000, 0.344354,-0.000000;;, + 218;3; 0.000000, 0.344354,-0.000000;;, + 219;3; 0.000000, 0.344354,-0.000000;;, + 220;3; 0.000000, 0.344354,-0.000000;;, + 221;3; 0.000000, 0.344354,-0.000000;;, + 222;3; 0.000000, 0.344354,-0.000000;;, + 223;3; 0.000000, 0.344354,-0.000000;;, + 224;3; 0.000000, 0.344354,-0.000000;;, + 225;3; 0.000000, 0.344354,-0.000000;;, + 226;3; 0.000000, 0.344354,-0.000000;;, + 227;3; 0.000000, 0.344354,-0.000000;;, + 228;3; 0.000000, 0.344354,-0.000000;;, + 229;3; 0.000000, 0.344354,-0.000000;;, + 230;3; 0.000000, 0.344354,-0.000000;;, + 231;3; 0.000000, 0.344354,-0.000000;;, + 232;3; 0.000000, 0.344354,-0.000000;;, + 233;3; 0.000000, 0.344354,-0.000000;;, + 234;3; 0.000000, 0.344354,-0.000000;;, + 235;3; 0.000000, 0.344354,-0.000000;;, + 236;3; 0.000000, 0.344354,-0.000000;;, + 237;3; 0.000000, 0.344354,-0.000000;;, + 238;3; 0.000000, 0.344354,-0.000000;;, + 239;3; 0.000000, 0.344354,-0.000000;;, + 240;3; 0.000000, 0.344354,-0.000000;;, + 241;3; 0.000000, 0.344354,-0.000000;;, + 242;3; 0.000000, 0.344354,-0.000000;;, + 243;3; 0.000000, 0.344354,-0.000000;;, + 244;3; 0.000000, 0.344354,-0.000000;;, + 245;3; 0.000000, 0.344354,-0.000000;;, + 246;3; 0.000000, 0.344354,-0.000000;;, + 247;3; 0.000000, 0.344354,-0.000000;;, + 248;3; 0.000000, 0.344354,-0.000000;;, + 249;3; 0.000000, 0.344354,-0.000000;;; + } + } + Animation { + {Armature_Bone_003} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 1;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 2;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 3;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 4;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 5;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 6;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 7;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 8;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 9;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 10;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 11;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 12;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 13;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 14;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 15;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 16;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 17;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 18;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 19;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 20;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 21;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 22;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 23;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 24;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 25;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 26;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 27;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 28;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 29;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 30;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 31;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 32;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 33;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 34;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 35;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 36;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 37;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 38;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 39;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 40;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 41;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 42;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 43;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 44;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 45;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 46;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 47;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 48;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 49;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 50;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 51;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 52;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 53;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 54;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 55;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 56;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 57;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 58;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 59;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 60;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 61;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 62;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 63;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 64;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 65;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 66;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 67;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 68;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 69;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 70;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 71;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 72;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 73;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 74;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 75;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 76;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 77;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 78;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 79;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 80;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 81;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 82;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 83;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 84;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 85;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 86;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 87;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 88;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 89;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 90;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 91;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 92;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 93;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 94;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 95;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 96;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 97;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 98;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 99;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 100;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 101;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 102;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 103;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 104;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 105;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 106;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 107;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 108;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 109;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 110;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 111;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 112;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 113;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 114;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 115;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 116;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 117;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 118;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 119;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 120;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 121;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 122;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 123;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 124;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 125;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 126;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 127;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 128;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 129;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 130;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 131;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 132;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 133;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 134;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 135;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 136;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 137;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 138;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 139;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 140;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 141;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 142;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 143;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 144;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 145;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 146;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 147;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 148;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 149;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 150;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 151;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 152;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 153;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 154;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 155;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 156;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 157;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 158;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 159;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 160;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 161;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 162;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 163;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 164;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 165;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 166;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 167;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 168;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 169;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 170;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 171;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 172;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 173;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 174;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 175;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 176;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 177;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 178;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 179;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 180;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 181;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 182;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 183;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 184;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 185;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 186;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 187;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 188;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 189;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 190;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 191;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 192;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 193;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 194;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 195;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 196;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 197;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 198;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 199;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 200;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 201;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 202;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 203;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 204;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 205;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 206;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 207;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 208;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 209;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 210;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 211;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 212;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 213;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 214;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 215;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 216;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 217;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 218;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 219;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 220;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 221;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 222;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 223;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 224;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 225;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 226;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 227;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 228;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 229;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 230;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 231;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 232;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 233;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 234;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 235;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 236;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 237;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 238;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 239;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 240;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 241;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 242;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 243;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 244;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 245;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 246;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 247;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 248;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 249;4;-0.970830, 0.133879,-0.028874,-0.196804;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3; 0.000000, 0.826434, 0.000000;;, + 1;3; 0.000000, 0.826434, 0.000000;;, + 2;3; 0.000000, 0.826434, 0.000000;;, + 3;3; 0.000000, 0.826434, 0.000000;;, + 4;3; 0.000000, 0.826434, 0.000000;;, + 5;3; 0.000000, 0.826434, 0.000000;;, + 6;3; 0.000000, 0.826434, 0.000000;;, + 7;3; 0.000000, 0.826434, 0.000000;;, + 8;3; 0.000000, 0.826434, 0.000000;;, + 9;3; 0.000000, 0.826434, 0.000000;;, + 10;3; 0.000000, 0.826434, 0.000000;;, + 11;3; 0.000000, 0.826434, 0.000000;;, + 12;3; 0.000000, 0.826434, 0.000000;;, + 13;3; 0.000000, 0.826434, 0.000000;;, + 14;3; 0.000000, 0.826434, 0.000000;;, + 15;3; 0.000000, 0.826434, 0.000000;;, + 16;3; 0.000000, 0.826434, 0.000000;;, + 17;3; 0.000000, 0.826434, 0.000000;;, + 18;3; 0.000000, 0.826434, 0.000000;;, + 19;3; 0.000000, 0.826434, 0.000000;;, + 20;3; 0.000000, 0.826434, 0.000000;;, + 21;3; 0.000000, 0.826434, 0.000000;;, + 22;3; 0.000000, 0.826434, 0.000000;;, + 23;3; 0.000000, 0.826434, 0.000000;;, + 24;3; 0.000000, 0.826434, 0.000000;;, + 25;3; 0.000000, 0.826434, 0.000000;;, + 26;3; 0.000000, 0.826434, 0.000000;;, + 27;3; 0.000000, 0.826434, 0.000000;;, + 28;3; 0.000000, 0.826434, 0.000000;;, + 29;3; 0.000000, 0.826434, 0.000000;;, + 30;3; 0.000000, 0.826434, 0.000000;;, + 31;3; 0.000000, 0.826434, 0.000000;;, + 32;3; 0.000000, 0.826434, 0.000000;;, + 33;3; 0.000000, 0.826434, 0.000000;;, + 34;3; 0.000000, 0.826434, 0.000000;;, + 35;3; 0.000000, 0.826434, 0.000000;;, + 36;3; 0.000000, 0.826434, 0.000000;;, + 37;3; 0.000000, 0.826434, 0.000000;;, + 38;3; 0.000000, 0.826434, 0.000000;;, + 39;3; 0.000000, 0.826434, 0.000000;;, + 40;3; 0.000000, 0.826434, 0.000000;;, + 41;3; 0.000000, 0.826434, 0.000000;;, + 42;3; 0.000000, 0.826434, 0.000000;;, + 43;3; 0.000000, 0.826434, 0.000000;;, + 44;3; 0.000000, 0.826434, 0.000000;;, + 45;3; 0.000000, 0.826434, 0.000000;;, + 46;3; 0.000000, 0.826434, 0.000000;;, + 47;3; 0.000000, 0.826434, 0.000000;;, + 48;3; 0.000000, 0.826434, 0.000000;;, + 49;3; 0.000000, 0.826434, 0.000000;;, + 50;3; 0.000000, 0.826434, 0.000000;;, + 51;3; 0.000000, 0.826434, 0.000000;;, + 52;3; 0.000000, 0.826434, 0.000000;;, + 53;3; 0.000000, 0.826434, 0.000000;;, + 54;3; 0.000000, 0.826434, 0.000000;;, + 55;3; 0.000000, 0.826434, 0.000000;;, + 56;3; 0.000000, 0.826434, 0.000000;;, + 57;3; 0.000000, 0.826434, 0.000000;;, + 58;3; 0.000000, 0.826434, 0.000000;;, + 59;3; 0.000000, 0.826434, 0.000000;;, + 60;3; 0.000000, 0.826434, 0.000000;;, + 61;3; 0.000000, 0.826434, 0.000000;;, + 62;3; 0.000000, 0.826434, 0.000000;;, + 63;3; 0.000000, 0.826434, 0.000000;;, + 64;3; 0.000000, 0.826434, 0.000000;;, + 65;3; 0.000000, 0.826434, 0.000000;;, + 66;3; 0.000000, 0.826434, 0.000000;;, + 67;3; 0.000000, 0.826434, 0.000000;;, + 68;3; 0.000000, 0.826434, 0.000000;;, + 69;3; 0.000000, 0.826434, 0.000000;;, + 70;3; 0.000000, 0.826434, 0.000000;;, + 71;3; 0.000000, 0.826434, 0.000000;;, + 72;3; 0.000000, 0.826434, 0.000000;;, + 73;3; 0.000000, 0.826434, 0.000000;;, + 74;3; 0.000000, 0.826434, 0.000000;;, + 75;3; 0.000000, 0.826434, 0.000000;;, + 76;3; 0.000000, 0.826434, 0.000000;;, + 77;3; 0.000000, 0.826434, 0.000000;;, + 78;3; 0.000000, 0.826434, 0.000000;;, + 79;3; 0.000000, 0.826434, 0.000000;;, + 80;3; 0.000000, 0.826434, 0.000000;;, + 81;3; 0.000000, 0.826434, 0.000000;;, + 82;3; 0.000000, 0.826434, 0.000000;;, + 83;3; 0.000000, 0.826434, 0.000000;;, + 84;3; 0.000000, 0.826434, 0.000000;;, + 85;3; 0.000000, 0.826434, 0.000000;;, + 86;3; 0.000000, 0.826434, 0.000000;;, + 87;3; 0.000000, 0.826434, 0.000000;;, + 88;3; 0.000000, 0.826434, 0.000000;;, + 89;3; 0.000000, 0.826434, 0.000000;;, + 90;3; 0.000000, 0.826434, 0.000000;;, + 91;3; 0.000000, 0.826434, 0.000000;;, + 92;3; 0.000000, 0.826434, 0.000000;;, + 93;3; 0.000000, 0.826434, 0.000000;;, + 94;3; 0.000000, 0.826434, 0.000000;;, + 95;3; 0.000000, 0.826434, 0.000000;;, + 96;3; 0.000000, 0.826434, 0.000000;;, + 97;3; 0.000000, 0.826434, 0.000000;;, + 98;3; 0.000000, 0.826434, 0.000000;;, + 99;3; 0.000000, 0.826434, 0.000000;;, + 100;3; 0.000000, 0.826434, 0.000000;;, + 101;3; 0.000000, 0.826434, 0.000000;;, + 102;3; 0.000000, 0.826434, 0.000000;;, + 103;3; 0.000000, 0.826434, 0.000000;;, + 104;3; 0.000000, 0.826434, 0.000000;;, + 105;3; 0.000000, 0.826434, 0.000000;;, + 106;3; 0.000000, 0.826434, 0.000000;;, + 107;3; 0.000000, 0.826434, 0.000000;;, + 108;3; 0.000000, 0.826434, 0.000000;;, + 109;3; 0.000000, 0.826434, 0.000000;;, + 110;3; 0.000000, 0.826434, 0.000000;;, + 111;3; 0.000000, 0.826434, 0.000000;;, + 112;3; 0.000000, 0.826434, 0.000000;;, + 113;3; 0.000000, 0.826434, 0.000000;;, + 114;3; 0.000000, 0.826434, 0.000000;;, + 115;3; 0.000000, 0.826434, 0.000000;;, + 116;3; 0.000000, 0.826434, 0.000000;;, + 117;3; 0.000000, 0.826434, 0.000000;;, + 118;3; 0.000000, 0.826434, 0.000000;;, + 119;3; 0.000000, 0.826434, 0.000000;;, + 120;3; 0.000000, 0.826434, 0.000000;;, + 121;3; 0.000000, 0.826434, 0.000000;;, + 122;3; 0.000000, 0.826434, 0.000000;;, + 123;3; 0.000000, 0.826434, 0.000000;;, + 124;3; 0.000000, 0.826434, 0.000000;;, + 125;3; 0.000000, 0.826434, 0.000000;;, + 126;3; 0.000000, 0.826434, 0.000000;;, + 127;3; 0.000000, 0.826434, 0.000000;;, + 128;3; 0.000000, 0.826434, 0.000000;;, + 129;3; 0.000000, 0.826434, 0.000000;;, + 130;3; 0.000000, 0.826434, 0.000000;;, + 131;3; 0.000000, 0.826434, 0.000000;;, + 132;3; 0.000000, 0.826434, 0.000000;;, + 133;3; 0.000000, 0.826434, 0.000000;;, + 134;3; 0.000000, 0.826434, 0.000000;;, + 135;3; 0.000000, 0.826434, 0.000000;;, + 136;3; 0.000000, 0.826434, 0.000000;;, + 137;3; 0.000000, 0.826434, 0.000000;;, + 138;3; 0.000000, 0.826434, 0.000000;;, + 139;3; 0.000000, 0.826434, 0.000000;;, + 140;3; 0.000000, 0.826434, 0.000000;;, + 141;3; 0.000000, 0.826434, 0.000000;;, + 142;3; 0.000000, 0.826434, 0.000000;;, + 143;3; 0.000000, 0.826434, 0.000000;;, + 144;3; 0.000000, 0.826434, 0.000000;;, + 145;3; 0.000000, 0.826434, 0.000000;;, + 146;3; 0.000000, 0.826434, 0.000000;;, + 147;3; 0.000000, 0.826434, 0.000000;;, + 148;3; 0.000000, 0.826434, 0.000000;;, + 149;3; 0.000000, 0.826434, 0.000000;;, + 150;3; 0.000000, 0.826434, 0.000000;;, + 151;3; 0.000000, 0.826434, 0.000000;;, + 152;3; 0.000000, 0.826434, 0.000000;;, + 153;3; 0.000000, 0.826434, 0.000000;;, + 154;3; 0.000000, 0.826434, 0.000000;;, + 155;3; 0.000000, 0.826434, 0.000000;;, + 156;3; 0.000000, 0.826434, 0.000000;;, + 157;3; 0.000000, 0.826434, 0.000000;;, + 158;3; 0.000000, 0.826434, 0.000000;;, + 159;3; 0.000000, 0.826434, 0.000000;;, + 160;3; 0.000000, 0.826434, 0.000000;;, + 161;3; 0.000000, 0.826434, 0.000000;;, + 162;3; 0.000000, 0.826434, 0.000000;;, + 163;3; 0.000000, 0.826434, 0.000000;;, + 164;3; 0.000000, 0.826434, 0.000000;;, + 165;3; 0.000000, 0.826434, 0.000000;;, + 166;3; 0.000000, 0.826434, 0.000000;;, + 167;3; 0.000000, 0.826434, 0.000000;;, + 168;3; 0.000000, 0.826434, 0.000000;;, + 169;3; 0.000000, 0.826434, 0.000000;;, + 170;3; 0.000000, 0.826434, 0.000000;;, + 171;3; 0.000000, 0.826434, 0.000000;;, + 172;3; 0.000000, 0.826434, 0.000000;;, + 173;3; 0.000000, 0.826434, 0.000000;;, + 174;3; 0.000000, 0.826434, 0.000000;;, + 175;3; 0.000000, 0.826434, 0.000000;;, + 176;3; 0.000000, 0.826434, 0.000000;;, + 177;3; 0.000000, 0.826434, 0.000000;;, + 178;3; 0.000000, 0.826434, 0.000000;;, + 179;3; 0.000000, 0.826434, 0.000000;;, + 180;3; 0.000000, 0.826434, 0.000000;;, + 181;3; 0.000000, 0.826434, 0.000000;;, + 182;3; 0.000000, 0.826434, 0.000000;;, + 183;3; 0.000000, 0.826434, 0.000000;;, + 184;3; 0.000000, 0.826434, 0.000000;;, + 185;3; 0.000000, 0.826434, 0.000000;;, + 186;3;-0.000000, 0.826434,-0.000000;;, + 187;3;-0.000000, 0.826434,-0.000000;;, + 188;3;-0.000000, 0.826434, 0.000000;;, + 189;3;-0.000000, 0.826434, 0.000000;;, + 190;3;-0.000000, 0.826434,-0.000000;;, + 191;3; 0.000000, 0.826434, 0.000000;;, + 192;3; 0.000000, 0.826434, 0.000000;;, + 193;3; 0.000000, 0.826434, 0.000000;;, + 194;3; 0.000000, 0.826434,-0.000000;;, + 195;3; 0.000000, 0.826434,-0.000000;;, + 196;3; 0.000000, 0.826434, 0.000000;;, + 197;3; 0.000000, 0.826434,-0.000000;;, + 198;3; 0.000000, 0.826434,-0.000000;;, + 199;3; 0.000000, 0.826434, 0.000000;;, + 200;3; 0.000000, 0.826434, 0.000000;;, + 201;3; 0.000000, 0.826434, 0.000000;;, + 202;3; 0.000000, 0.826434, 0.000000;;, + 203;3; 0.000000, 0.826434, 0.000000;;, + 204;3; 0.000000, 0.826434, 0.000000;;, + 205;3; 0.000000, 0.826434, 0.000000;;, + 206;3; 0.000000, 0.826434, 0.000000;;, + 207;3; 0.000000, 0.826434, 0.000000;;, + 208;3; 0.000000, 0.826434, 0.000000;;, + 209;3; 0.000000, 0.826434, 0.000000;;, + 210;3; 0.000000, 0.826434, 0.000000;;, + 211;3; 0.000000, 0.826434, 0.000000;;, + 212;3; 0.000000, 0.826434, 0.000000;;, + 213;3; 0.000000, 0.826434, 0.000000;;, + 214;3; 0.000000, 0.826434, 0.000000;;, + 215;3; 0.000000, 0.826434, 0.000000;;, + 216;3; 0.000000, 0.826434, 0.000000;;, + 217;3; 0.000000, 0.826434, 0.000000;;, + 218;3; 0.000000, 0.826434, 0.000000;;, + 219;3; 0.000000, 0.826434, 0.000000;;, + 220;3; 0.000000, 0.826434, 0.000000;;, + 221;3; 0.000000, 0.826434, 0.000000;;, + 222;3; 0.000000, 0.826434, 0.000000;;, + 223;3; 0.000000, 0.826434, 0.000000;;, + 224;3; 0.000000, 0.826434, 0.000000;;, + 225;3; 0.000000, 0.826434, 0.000000;;, + 226;3; 0.000000, 0.826434, 0.000000;;, + 227;3; 0.000000, 0.826434, 0.000000;;, + 228;3; 0.000000, 0.826434, 0.000000;;, + 229;3; 0.000000, 0.826434, 0.000000;;, + 230;3; 0.000000, 0.826434, 0.000000;;, + 231;3; 0.000000, 0.826434, 0.000000;;, + 232;3; 0.000000, 0.826434, 0.000000;;, + 233;3; 0.000000, 0.826434, 0.000000;;, + 234;3; 0.000000, 0.826434, 0.000000;;, + 235;3; 0.000000, 0.826434, 0.000000;;, + 236;3; 0.000000, 0.826434, 0.000000;;, + 237;3; 0.000000, 0.826434, 0.000000;;, + 238;3; 0.000000, 0.826434, 0.000000;;, + 239;3; 0.000000, 0.826434, 0.000000;;, + 240;3; 0.000000, 0.826434, 0.000000;;, + 241;3; 0.000000, 0.826434, 0.000000;;, + 242;3; 0.000000, 0.826434, 0.000000;;, + 243;3; 0.000000, 0.826434, 0.000000;;, + 244;3; 0.000000, 0.826434, 0.000000;;, + 245;3; 0.000000, 0.826434, 0.000000;;, + 246;3; 0.000000, 0.826434, 0.000000;;, + 247;3; 0.000000, 0.826434, 0.000000;;, + 248;3; 0.000000, 0.826434, 0.000000;;, + 249;3; 0.000000, 0.826434, 0.000000;;; + } + } + Animation { + {Armature_Bone_005} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 1;4;-0.380162,-0.402155,-0.542078, 0.632313;;, + 2;4;-0.381472,-0.400992,-0.542850, 0.631414;;, + 3;4;-0.383661,-0.399049,-0.544140, 0.629912;;, + 4;4;-0.386712,-0.396342,-0.545936, 0.627819;;, + 5;4;-0.390578,-0.392911,-0.548214, 0.625166;;, + 6;4;-0.395184,-0.388825,-0.550926, 0.622006;;, + 7;4;-0.400416,-0.384182,-0.554008, 0.618416;;, + 8;4;-0.406128,-0.379113,-0.557373, 0.614497;;, + 9;4;-0.412141,-0.373777,-0.560915, 0.610370;;, + 10;4;-0.418257,-0.368350,-0.564517, 0.606174;;, + 11;4;-0.424271,-0.363013,-0.568059, 0.602047;;, + 12;4;-0.429982,-0.357945,-0.571424, 0.598128;;, + 13;4;-0.435214,-0.353302,-0.574506, 0.594538;;, + 14;4;-0.439820,-0.349215,-0.577218, 0.591378;;, + 15;4;-0.443686,-0.345784,-0.579496, 0.588725;;, + 16;4;-0.446737,-0.343077,-0.581293, 0.586632;;, + 17;4;-0.448926,-0.341134,-0.582582, 0.585130;;, + 18;4;-0.450236,-0.339972,-0.583354, 0.584231;;, + 19;4;-0.450669,-0.339587,-0.583609, 0.583933;;, + 20;4;-0.450231,-0.339962,-0.583344, 0.584216;;, + 21;4;-0.448905,-0.341094,-0.582544, 0.585072;;, + 22;4;-0.446688,-0.342987,-0.581207, 0.586504;;, + 23;4;-0.443596,-0.345630,-0.579341, 0.588503;;, + 24;4;-0.439666,-0.348989,-0.576972, 0.591046;;, + 25;4;-0.434967,-0.353009,-0.574139, 0.594089;;, + 26;4;-0.429597,-0.357605,-0.570904, 0.597570;;, + 27;4;-0.423689,-0.362668,-0.567346, 0.601405;;, + 28;4;-0.417402,-0.368059,-0.563562, 0.605493;;, + 29;4;-0.410923,-0.373622,-0.559666, 0.609713;;, + 30;4;-0.404448,-0.379190,-0.555776, 0.613941;;, + 31;4;-0.398175,-0.384594,-0.552011, 0.618050;;, + 32;4;-0.392288,-0.389679,-0.548482, 0.621921;;, + 33;4;-0.386947,-0.394306,-0.545288, 0.625451;;, + 34;4;-0.382284,-0.398364,-0.542507, 0.628553;;, + 35;4;-0.378397,-0.401769,-0.540198, 0.631166;;, + 36;4;-0.375352,-0.404462,-0.538402, 0.633245;;, + 37;4;-0.373188,-0.406411,-0.537140, 0.634765;;, + 38;4;-0.371920,-0.407604,-0.536421, 0.635717;;, + 39;4;-0.371542,-0.408043,-0.536243, 0.636101;;, + 40;4;-0.371645,-0.408074,-0.536356, 0.636178;;, + 41;4;-0.371830,-0.408034,-0.536520, 0.636202;;, + 42;4;-0.372099,-0.407924,-0.536732, 0.636172;;, + 43;4;-0.372448,-0.407743,-0.536993, 0.636088;;, + 44;4;-0.372874,-0.407494,-0.537300, 0.635951;;, + 45;4;-0.373370,-0.407182,-0.537647, 0.635766;;, + 46;4;-0.373926,-0.406814,-0.538029, 0.635536;;, + 47;4;-0.374531,-0.406400,-0.538437, 0.635269;;, + 48;4;-0.375167,-0.405952,-0.538862, 0.634973;;, + 49;4;-0.375817,-0.405484,-0.539293, 0.634659;;, + 50;4;-0.376464,-0.405012,-0.539717, 0.634338;;, + 51;4;-0.377087,-0.404550,-0.540124, 0.634021;;, + 52;4;-0.377670,-0.404114,-0.540502, 0.633718;;, + 53;4;-0.378197,-0.403715,-0.540842, 0.633440;;, + 54;4;-0.378658,-0.403365,-0.541138, 0.633195;;, + 55;4;-0.379041,-0.403071,-0.541384, 0.632988;;, + 56;4;-0.379342,-0.402839,-0.541577, 0.632823;;, + 57;4;-0.379558,-0.402672,-0.541714, 0.632705;;, + 58;4;-0.379686,-0.402572,-0.541796, 0.632634;;, + 59;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 60;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 61;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 62;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 63;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 64;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 65;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 66;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 67;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 68;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 69;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 70;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 71;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 72;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 73;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 74;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 75;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 76;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 77;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 78;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 79;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 80;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 81;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 82;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 83;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 84;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 85;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 86;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 87;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 88;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 89;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 90;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 91;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 92;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 93;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 94;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 95;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 96;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 97;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 98;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 99;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 100;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 101;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 102;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 103;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 104;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 105;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 106;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 107;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 108;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 109;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 110;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 111;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 112;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 113;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 114;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 115;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 116;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 117;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 118;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 119;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 120;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 121;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 122;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 123;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 124;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 125;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 126;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 127;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 128;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 129;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 130;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 131;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 132;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 133;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 134;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 135;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 136;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 137;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 138;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 139;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 140;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 141;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 142;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 143;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 144;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 145;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 146;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 147;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 148;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 149;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 150;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 151;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 152;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 153;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 154;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 155;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 156;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 157;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 158;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 159;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 160;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 161;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 162;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 163;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 164;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 165;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 166;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 167;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 168;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 169;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 170;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 171;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 172;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 173;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 174;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 175;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 176;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 177;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 178;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 179;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 180;4;-0.383627,-0.398602,-0.543913, 0.629358;;, + 181;4;-0.395358,-0.386753,-0.550205, 0.619571;;, + 182;4;-0.414433,-0.367486,-0.560434, 0.603656;;, + 183;4;-0.439382,-0.342286,-0.573813, 0.582841;;, + 184;4;-0.467646,-0.313739,-0.588969, 0.559260;;, + 185;4;-0.495909,-0.285192,-0.604126, 0.535680;;, + 186;4;-0.520858,-0.259993,-0.617505, 0.514865;;, + 187;4;-0.539933,-0.240726,-0.627734, 0.498951;;, + 188;4;-0.551665,-0.228877,-0.634025, 0.489163;;, + 189;4;-0.555563,-0.224940,-0.636116, 0.485911;;, + 190;4;-0.549242,-0.232253,-0.633125, 0.492305;;, + 191;4;-0.530164,-0.254070,-0.623991, 0.511300;;, + 192;4;-0.502253,-0.285357,-0.610356, 0.538326;;, + 193;4;-0.473867,-0.316098,-0.596023, 0.564508;;, + 194;4;-0.451706,-0.338592,-0.584188, 0.583131;;, + 195;4;-0.432380,-0.356668,-0.573202, 0.597511;;, + 196;4;-0.411975,-0.374964,-0.561264, 0.611740;;, + 197;4;-0.394312,-0.390272,-0.550703, 0.623418;;, + 198;4;-0.383216,-0.399645,-0.543964, 0.630459;;, + 199;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 200;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 201;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 202;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 203;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 204;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 205;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 206;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 207;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 208;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 209;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 210;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 211;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 212;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 213;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 214;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 215;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 216;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 217;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 218;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 219;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 220;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 221;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 222;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 223;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 224;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 225;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 226;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 227;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 228;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 229;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 230;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 231;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 232;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 233;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 234;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 235;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 236;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 237;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 238;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 239;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 240;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 241;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 242;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 243;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 244;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 245;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 246;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 247;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 248;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 249;4;-0.379729,-0.402539,-0.541823, 0.632611;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3; 0.000000, 0.761776, 0.000000;;, + 1;3; 0.000000, 0.761776, 0.000000;;, + 2;3; 0.000000, 0.761776, 0.000000;;, + 3;3; 0.000000, 0.761776, 0.000000;;, + 4;3; 0.000000, 0.761776, 0.000000;;, + 5;3; 0.000000, 0.761776, 0.000000;;, + 6;3; 0.000000, 0.761776, 0.000000;;, + 7;3; 0.000000, 0.761776, 0.000000;;, + 8;3; 0.000000, 0.761776, 0.000000;;, + 9;3; 0.000000, 0.761776, 0.000000;;, + 10;3; 0.000000, 0.761776, 0.000000;;, + 11;3; 0.000000, 0.761776, 0.000000;;, + 12;3; 0.000000, 0.761776, 0.000000;;, + 13;3; 0.000000, 0.761776, 0.000000;;, + 14;3; 0.000000, 0.761776, 0.000000;;, + 15;3; 0.000000, 0.761776, 0.000000;;, + 16;3; 0.000000, 0.761776, 0.000000;;, + 17;3; 0.000000, 0.761776, 0.000000;;, + 18;3; 0.000000, 0.761776, 0.000000;;, + 19;3; 0.000000, 0.761776, 0.000000;;, + 20;3; 0.000000, 0.761776, 0.000000;;, + 21;3; 0.000000, 0.761776, 0.000000;;, + 22;3; 0.000000, 0.761776, 0.000000;;, + 23;3; 0.000000, 0.761776, 0.000000;;, + 24;3; 0.000000, 0.761776, 0.000000;;, + 25;3; 0.000000, 0.761776, 0.000000;;, + 26;3; 0.000000, 0.761776, 0.000000;;, + 27;3; 0.000000, 0.761776, 0.000000;;, + 28;3; 0.000000, 0.761776, 0.000000;;, + 29;3; 0.000000, 0.761776, 0.000000;;, + 30;3; 0.000000, 0.761776, 0.000000;;, + 31;3; 0.000000, 0.761776, 0.000000;;, + 32;3; 0.000000, 0.761776, 0.000000;;, + 33;3; 0.000000, 0.761776, 0.000000;;, + 34;3; 0.000000, 0.761776, 0.000000;;, + 35;3; 0.000000, 0.761776, 0.000000;;, + 36;3; 0.000000, 0.761776, 0.000000;;, + 37;3; 0.000000, 0.761776, 0.000000;;, + 38;3; 0.000000, 0.761776, 0.000000;;, + 39;3; 0.000000, 0.761776, 0.000000;;, + 40;3; 0.000000, 0.761776, 0.000000;;, + 41;3; 0.000000, 0.761776, 0.000000;;, + 42;3; 0.000000, 0.761776, 0.000000;;, + 43;3; 0.000000, 0.761776, 0.000000;;, + 44;3; 0.000000, 0.761776, 0.000000;;, + 45;3; 0.000000, 0.761776, 0.000000;;, + 46;3; 0.000000, 0.761776, 0.000000;;, + 47;3; 0.000000, 0.761776, 0.000000;;, + 48;3; 0.000000, 0.761776, 0.000000;;, + 49;3; 0.000000, 0.761776, 0.000000;;, + 50;3; 0.000000, 0.761776, 0.000000;;, + 51;3; 0.000000, 0.761776, 0.000000;;, + 52;3; 0.000000, 0.761776, 0.000000;;, + 53;3; 0.000000, 0.761776, 0.000000;;, + 54;3; 0.000000, 0.761776, 0.000000;;, + 55;3; 0.000000, 0.761776, 0.000000;;, + 56;3; 0.000000, 0.761776, 0.000000;;, + 57;3; 0.000000, 0.761776, 0.000000;;, + 58;3; 0.000000, 0.761776, 0.000000;;, + 59;3; 0.000000, 0.761776, 0.000000;;, + 60;3; 0.000000, 0.761776, 0.000000;;, + 61;3; 0.000000, 0.761776, 0.000000;;, + 62;3; 0.000000, 0.761776, 0.000000;;, + 63;3; 0.000000, 0.761776, 0.000000;;, + 64;3; 0.000000, 0.761776, 0.000000;;, + 65;3; 0.000000, 0.761776, 0.000000;;, + 66;3; 0.000000, 0.761776, 0.000000;;, + 67;3; 0.000000, 0.761776, 0.000000;;, + 68;3; 0.000000, 0.761776, 0.000000;;, + 69;3; 0.000000, 0.761776, 0.000000;;, + 70;3; 0.000000, 0.761776, 0.000000;;, + 71;3; 0.000000, 0.761776, 0.000000;;, + 72;3; 0.000000, 0.761776, 0.000000;;, + 73;3; 0.000000, 0.761776, 0.000000;;, + 74;3; 0.000000, 0.761776, 0.000000;;, + 75;3; 0.000000, 0.761776, 0.000000;;, + 76;3; 0.000000, 0.761776, 0.000000;;, + 77;3; 0.000000, 0.761776, 0.000000;;, + 78;3; 0.000000, 0.761776, 0.000000;;, + 79;3; 0.000000, 0.761776, 0.000000;;, + 80;3; 0.000000, 0.761776, 0.000000;;, + 81;3; 0.000000, 0.761776, 0.000000;;, + 82;3; 0.000000, 0.761776, 0.000000;;, + 83;3; 0.000000, 0.761776, 0.000000;;, + 84;3; 0.000000, 0.761776, 0.000000;;, + 85;3; 0.000000, 0.761776, 0.000000;;, + 86;3; 0.000000, 0.761776, 0.000000;;, + 87;3; 0.000000, 0.761776, 0.000000;;, + 88;3; 0.000000, 0.761776, 0.000000;;, + 89;3; 0.000000, 0.761776, 0.000000;;, + 90;3; 0.000000, 0.761776, 0.000000;;, + 91;3; 0.000000, 0.761776, 0.000000;;, + 92;3; 0.000000, 0.761776, 0.000000;;, + 93;3; 0.000000, 0.761776, 0.000000;;, + 94;3; 0.000000, 0.761776, 0.000000;;, + 95;3; 0.000000, 0.761776, 0.000000;;, + 96;3; 0.000000, 0.761776, 0.000000;;, + 97;3; 0.000000, 0.761776, 0.000000;;, + 98;3; 0.000000, 0.761776, 0.000000;;, + 99;3; 0.000000, 0.761776, 0.000000;;, + 100;3; 0.000000, 0.761776, 0.000000;;, + 101;3; 0.000000, 0.761776, 0.000000;;, + 102;3; 0.000000, 0.761776, 0.000000;;, + 103;3; 0.000000, 0.761776, 0.000000;;, + 104;3; 0.000000, 0.761776, 0.000000;;, + 105;3; 0.000000, 0.761776, 0.000000;;, + 106;3; 0.000000, 0.761776, 0.000000;;, + 107;3; 0.000000, 0.761776, 0.000000;;, + 108;3; 0.000000, 0.761776, 0.000000;;, + 109;3; 0.000000, 0.761776, 0.000000;;, + 110;3; 0.000000, 0.761776, 0.000000;;, + 111;3; 0.000000, 0.761776, 0.000000;;, + 112;3; 0.000000, 0.761776, 0.000000;;, + 113;3; 0.000000, 0.761776, 0.000000;;, + 114;3; 0.000000, 0.761776, 0.000000;;, + 115;3; 0.000000, 0.761776, 0.000000;;, + 116;3; 0.000000, 0.761776, 0.000000;;, + 117;3; 0.000000, 0.761776, 0.000000;;, + 118;3; 0.000000, 0.761776, 0.000000;;, + 119;3; 0.000000, 0.761776, 0.000000;;, + 120;3; 0.000000, 0.761776, 0.000000;;, + 121;3; 0.000000, 0.761776, 0.000000;;, + 122;3; 0.000000, 0.761776, 0.000000;;, + 123;3; 0.000000, 0.761776, 0.000000;;, + 124;3; 0.000000, 0.761776, 0.000000;;, + 125;3; 0.000000, 0.761776, 0.000000;;, + 126;3; 0.000000, 0.761776, 0.000000;;, + 127;3; 0.000000, 0.761776, 0.000000;;, + 128;3; 0.000000, 0.761776, 0.000000;;, + 129;3; 0.000000, 0.761776, 0.000000;;, + 130;3; 0.000000, 0.761776, 0.000000;;, + 131;3; 0.000000, 0.761776, 0.000000;;, + 132;3; 0.000000, 0.761776, 0.000000;;, + 133;3; 0.000000, 0.761776, 0.000000;;, + 134;3; 0.000000, 0.761776, 0.000000;;, + 135;3; 0.000000, 0.761776, 0.000000;;, + 136;3; 0.000000, 0.761776, 0.000000;;, + 137;3; 0.000000, 0.761776, 0.000000;;, + 138;3; 0.000000, 0.761776, 0.000000;;, + 139;3; 0.000000, 0.761776, 0.000000;;, + 140;3; 0.000000, 0.761776, 0.000000;;, + 141;3; 0.000000, 0.761776, 0.000000;;, + 142;3; 0.000000, 0.761776, 0.000000;;, + 143;3; 0.000000, 0.761776, 0.000000;;, + 144;3; 0.000000, 0.761776, 0.000000;;, + 145;3; 0.000000, 0.761776, 0.000000;;, + 146;3; 0.000000, 0.761776, 0.000000;;, + 147;3; 0.000000, 0.761776, 0.000000;;, + 148;3; 0.000000, 0.761776, 0.000000;;, + 149;3; 0.000000, 0.761776, 0.000000;;, + 150;3; 0.000000, 0.761776, 0.000000;;, + 151;3; 0.000000, 0.761776, 0.000000;;, + 152;3; 0.000000, 0.761776, 0.000000;;, + 153;3; 0.000000, 0.761776, 0.000000;;, + 154;3; 0.000000, 0.761776, 0.000000;;, + 155;3; 0.000000, 0.761776, 0.000000;;, + 156;3; 0.000000, 0.761776, 0.000000;;, + 157;3; 0.000000, 0.761776, 0.000000;;, + 158;3; 0.000000, 0.761776, 0.000000;;, + 159;3; 0.000000, 0.761776, 0.000000;;, + 160;3; 0.000000, 0.761776, 0.000000;;, + 161;3; 0.000000, 0.761776, 0.000000;;, + 162;3; 0.000000, 0.761776, 0.000000;;, + 163;3; 0.000000, 0.761776, 0.000000;;, + 164;3; 0.000000, 0.761776, 0.000000;;, + 165;3; 0.000000, 0.761776, 0.000000;;, + 166;3; 0.000000, 0.761776, 0.000000;;, + 167;3; 0.000000, 0.761776, 0.000000;;, + 168;3; 0.000000, 0.761776, 0.000000;;, + 169;3; 0.000000, 0.761776, 0.000000;;, + 170;3; 0.000000, 0.761776, 0.000000;;, + 171;3; 0.000000, 0.761776, 0.000000;;, + 172;3; 0.000000, 0.761776, 0.000000;;, + 173;3; 0.000000, 0.761776, 0.000000;;, + 174;3; 0.000000, 0.761776, 0.000000;;, + 175;3; 0.000000, 0.761776, 0.000000;;, + 176;3; 0.000000, 0.761776, 0.000000;;, + 177;3; 0.000000, 0.761776, 0.000000;;, + 178;3; 0.000000, 0.761776, 0.000000;;, + 179;3; 0.000000, 0.761776, 0.000000;;, + 180;3; 0.000000, 0.761776,-0.000000;;, + 181;3; 0.000000, 0.761775, 0.000000;;, + 182;3;-0.000000, 0.761776,-0.000000;;, + 183;3;-0.000000, 0.761776, 0.000000;;, + 184;3; 0.000000, 0.761776, 0.000000;;, + 185;3; 0.000000, 0.761776,-0.000000;;, + 186;3;-0.000000, 0.761776, 0.000000;;, + 187;3; 0.000000, 0.761775, 0.000000;;, + 188;3;-0.000000, 0.761776, 0.000000;;, + 189;3;-0.000000, 0.761775, 0.000000;;, + 190;3;-0.000000, 0.761775,-0.000000;;, + 191;3; 0.000000, 0.761776, 0.000000;;, + 192;3; 0.000000, 0.761776,-0.000000;;, + 193;3; 0.000000, 0.761775,-0.000000;;, + 194;3;-0.000000, 0.761775, 0.000000;;, + 195;3; 0.000000, 0.761775,-0.000000;;, + 196;3; 0.000000, 0.761776, 0.000000;;, + 197;3; 0.000000, 0.761776, 0.000000;;, + 198;3;-0.000000, 0.761776, 0.000000;;, + 199;3; 0.000000, 0.761776, 0.000000;;, + 200;3; 0.000000, 0.761776, 0.000000;;, + 201;3; 0.000000, 0.761776, 0.000000;;, + 202;3; 0.000000, 0.761776, 0.000000;;, + 203;3; 0.000000, 0.761776, 0.000000;;, + 204;3; 0.000000, 0.761776, 0.000000;;, + 205;3; 0.000000, 0.761776, 0.000000;;, + 206;3; 0.000000, 0.761776, 0.000000;;, + 207;3; 0.000000, 0.761776, 0.000000;;, + 208;3; 0.000000, 0.761776, 0.000000;;, + 209;3; 0.000000, 0.761776, 0.000000;;, + 210;3; 0.000000, 0.761776, 0.000000;;, + 211;3; 0.000000, 0.761776, 0.000000;;, + 212;3; 0.000000, 0.761776, 0.000000;;, + 213;3; 0.000000, 0.761776, 0.000000;;, + 214;3; 0.000000, 0.761776, 0.000000;;, + 215;3; 0.000000, 0.761776, 0.000000;;, + 216;3; 0.000000, 0.761776, 0.000000;;, + 217;3; 0.000000, 0.761776, 0.000000;;, + 218;3; 0.000000, 0.761776, 0.000000;;, + 219;3; 0.000000, 0.761776, 0.000000;;, + 220;3; 0.000000, 0.761776, 0.000000;;, + 221;3; 0.000000, 0.761776, 0.000000;;, + 222;3; 0.000000, 0.761776, 0.000000;;, + 223;3; 0.000000, 0.761776, 0.000000;;, + 224;3; 0.000000, 0.761776, 0.000000;;, + 225;3; 0.000000, 0.761776, 0.000000;;, + 226;3; 0.000000, 0.761776, 0.000000;;, + 227;3; 0.000000, 0.761776, 0.000000;;, + 228;3; 0.000000, 0.761776, 0.000000;;, + 229;3; 0.000000, 0.761776, 0.000000;;, + 230;3; 0.000000, 0.761776, 0.000000;;, + 231;3; 0.000000, 0.761776, 0.000000;;, + 232;3; 0.000000, 0.761776, 0.000000;;, + 233;3; 0.000000, 0.761776, 0.000000;;, + 234;3; 0.000000, 0.761776, 0.000000;;, + 235;3; 0.000000, 0.761776, 0.000000;;, + 236;3; 0.000000, 0.761776, 0.000000;;, + 237;3; 0.000000, 0.761776, 0.000000;;, + 238;3; 0.000000, 0.761776, 0.000000;;, + 239;3; 0.000000, 0.761776, 0.000000;;, + 240;3; 0.000000, 0.761776, 0.000000;;, + 241;3; 0.000000, 0.761776, 0.000000;;, + 242;3; 0.000000, 0.761776, 0.000000;;, + 243;3; 0.000000, 0.761776, 0.000000;;, + 244;3; 0.000000, 0.761776, 0.000000;;, + 245;3; 0.000000, 0.761776, 0.000000;;, + 246;3; 0.000000, 0.761776, 0.000000;;, + 247;3; 0.000000, 0.761776, 0.000000;;, + 248;3; 0.000000, 0.761776, 0.000000;;, + 249;3; 0.000000, 0.761776, 0.000000;;; + } + } + Animation { + {Armature_Bone_006} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 1;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 2;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 3;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 4;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 5;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 6;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 7;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 8;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 9;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 10;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 11;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 12;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 13;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 14;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 15;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 16;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 17;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 18;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 19;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 20;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 21;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 22;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 23;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 24;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 25;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 26;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 27;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 28;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 29;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 30;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 31;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 32;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 33;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 34;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 35;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 36;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 37;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 38;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 39;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 40;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 41;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 42;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 43;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 44;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 45;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 46;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 47;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 48;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 49;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 50;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 51;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 52;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 53;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 54;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 55;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 56;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 57;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 58;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 59;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 60;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 61;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 62;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 63;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 64;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 65;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 66;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 67;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 68;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 69;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 70;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 71;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 72;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 73;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 74;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 75;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 76;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 77;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 78;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 79;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 80;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 81;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 82;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 83;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 84;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 85;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 86;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 87;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 88;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 89;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 90;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 91;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 92;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 93;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 94;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 95;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 96;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 97;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 98;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 99;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 100;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 101;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 102;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 103;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 104;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 105;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 106;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 107;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 108;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 109;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 110;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 111;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 112;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 113;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 114;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 115;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 116;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 117;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 118;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 119;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 120;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 121;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 122;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 123;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 124;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 125;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 126;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 127;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 128;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 129;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 130;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 131;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 132;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 133;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 134;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 135;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 136;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 137;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 138;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 139;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 140;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 141;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 142;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 143;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 144;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 145;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 146;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 147;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 148;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 149;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 150;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 151;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 152;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 153;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 154;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 155;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 156;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 157;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 158;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 159;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 160;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 161;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 162;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 163;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 164;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 165;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 166;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 167;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 168;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 169;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 170;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 171;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 172;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 173;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 174;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 175;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 176;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 177;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 178;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 179;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 180;4;-0.996222, 0.010292, 0.000896, 0.060490;;, + 181;4;-0.989016, 0.010259, 0.000610, 0.087384;;, + 182;4;-0.977300, 0.010205, 0.000144, 0.131113;;, + 183;4;-0.961975, 0.010136,-0.000464, 0.188308;;, + 184;4;-0.944614, 0.010056,-0.001154, 0.253100;;, + 185;4;-0.927254, 0.009977,-0.001844, 0.317893;;, + 186;4;-0.911929, 0.009907,-0.002453, 0.375088;;, + 187;4;-0.900212, 0.009854,-0.002918, 0.418816;;, + 188;4;-0.893006, 0.009821,-0.003205, 0.445711;;, + 189;4;-0.890612, 0.009810,-0.003300, 0.454647;;, + 190;4;-0.890612, 0.009810,-0.003300, 0.454647;;, + 191;4;-0.890612, 0.009810,-0.003300, 0.454647;;, + 192;4;-0.890612, 0.009810,-0.003300, 0.454647;;, + 193;4;-0.890612, 0.009810,-0.003300, 0.454647;;, + 194;4;-0.890612, 0.009810,-0.003300, 0.454647;;, + 195;4;-0.900212, 0.009854,-0.002918, 0.418816;;, + 196;4;-0.927254, 0.009977,-0.001844, 0.317893;;, + 197;4;-0.961975, 0.010136,-0.000464, 0.188308;;, + 198;4;-0.989016, 0.010259, 0.000610, 0.087384;;, + 199;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 200;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 201;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 202;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 203;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 204;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 205;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 206;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 207;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 208;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 209;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 210;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 211;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 212;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 213;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 214;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 215;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 216;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 217;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 218;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 219;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 220;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 221;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 222;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 223;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 224;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 225;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 226;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 227;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 228;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 229;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 230;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 231;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 232;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 233;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 234;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 235;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 236;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 237;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 238;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 239;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 240;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 241;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 242;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 243;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 244;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 245;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 246;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 247;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 248;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 249;4;-0.998617, 0.010303, 0.000991, 0.051554;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3;-0.000000, 0.660698,-0.000000;;, + 1;3;-0.000000, 0.660698,-0.000000;;, + 2;3;-0.000000, 0.660698,-0.000000;;, + 3;3;-0.000000, 0.660698,-0.000000;;, + 4;3; 0.000000, 0.660698,-0.000000;;, + 5;3;-0.000000, 0.660698,-0.000000;;, + 6;3;-0.000000, 0.660698,-0.000000;;, + 7;3; 0.000000, 0.660698,-0.000000;;, + 8;3;-0.000000, 0.660698,-0.000000;;, + 9;3; 0.000000, 0.660698,-0.000000;;, + 10;3;-0.000000, 0.660698,-0.000000;;, + 11;3; 0.000000, 0.660698, 0.000000;;, + 12;3;-0.000000, 0.660698,-0.000000;;, + 13;3;-0.000000, 0.660698,-0.000000;;, + 14;3; 0.000000, 0.660698, 0.000000;;, + 15;3; 0.000000, 0.660698,-0.000000;;, + 16;3;-0.000000, 0.660698,-0.000000;;, + 17;3;-0.000000, 0.660698,-0.000000;;, + 18;3;-0.000000, 0.660698,-0.000000;;, + 19;3;-0.000000, 0.660698,-0.000000;;, + 20;3;-0.000000, 0.660698,-0.000000;;, + 21;3; 0.000000, 0.660698,-0.000000;;, + 22;3;-0.000000, 0.660698, 0.000000;;, + 23;3; 0.000000, 0.660698,-0.000000;;, + 24;3;-0.000000, 0.660698,-0.000000;;, + 25;3; 0.000000, 0.660698,-0.000000;;, + 26;3;-0.000000, 0.660698,-0.000000;;, + 27;3; 0.000000, 0.660698,-0.000000;;, + 28;3; 0.000000, 0.660698,-0.000000;;, + 29;3; 0.000000, 0.660698,-0.000000;;, + 30;3; 0.000000, 0.660698,-0.000000;;, + 31;3;-0.000000, 0.660698, 0.000000;;, + 32;3; 0.000000, 0.660698,-0.000000;;, + 33;3; 0.000000, 0.660698,-0.000000;;, + 34;3; 0.000000, 0.660698,-0.000000;;, + 35;3; 0.000000, 0.660698,-0.000000;;, + 36;3; 0.000000, 0.660698,-0.000000;;, + 37;3; 0.000000, 0.660698,-0.000000;;, + 38;3; 0.000000, 0.660698,-0.000000;;, + 39;3; 0.000000, 0.660698,-0.000000;;, + 40;3;-0.000000, 0.660698,-0.000000;;, + 41;3;-0.000000, 0.660698,-0.000000;;, + 42;3; 0.000000, 0.660698,-0.000000;;, + 43;3;-0.000000, 0.660698,-0.000000;;, + 44;3; 0.000000, 0.660698,-0.000000;;, + 45;3;-0.000000, 0.660698,-0.000000;;, + 46;3; 0.000000, 0.660698,-0.000000;;, + 47;3;-0.000000, 0.660698,-0.000000;;, + 48;3;-0.000000, 0.660698,-0.000000;;, + 49;3;-0.000000, 0.660698,-0.000000;;, + 50;3;-0.000000, 0.660698,-0.000000;;, + 51;3; 0.000000, 0.660698,-0.000000;;, + 52;3; 0.000000, 0.660698,-0.000000;;, + 53;3;-0.000000, 0.660698,-0.000000;;, + 54;3;-0.000000, 0.660698,-0.000000;;, + 55;3; 0.000000, 0.660698,-0.000000;;, + 56;3; 0.000000, 0.660698,-0.000000;;, + 57;3; 0.000000, 0.660698,-0.000000;;, + 58;3;-0.000000, 0.660698,-0.000000;;, + 59;3;-0.000000, 0.660698,-0.000000;;, + 60;3;-0.000000, 0.660698,-0.000000;;, + 61;3;-0.000000, 0.660698,-0.000000;;, + 62;3;-0.000000, 0.660698,-0.000000;;, + 63;3;-0.000000, 0.660698,-0.000000;;, + 64;3;-0.000000, 0.660698,-0.000000;;, + 65;3;-0.000000, 0.660698,-0.000000;;, + 66;3;-0.000000, 0.660698,-0.000000;;, + 67;3;-0.000000, 0.660698,-0.000000;;, + 68;3;-0.000000, 0.660698,-0.000000;;, + 69;3;-0.000000, 0.660698,-0.000000;;, + 70;3;-0.000000, 0.660698,-0.000000;;, + 71;3;-0.000000, 0.660698,-0.000000;;, + 72;3;-0.000000, 0.660698,-0.000000;;, + 73;3;-0.000000, 0.660698,-0.000000;;, + 74;3;-0.000000, 0.660698,-0.000000;;, + 75;3;-0.000000, 0.660698,-0.000000;;, + 76;3;-0.000000, 0.660698,-0.000000;;, + 77;3;-0.000000, 0.660698,-0.000000;;, + 78;3;-0.000000, 0.660698,-0.000000;;, + 79;3;-0.000000, 0.660698,-0.000000;;, + 80;3;-0.000000, 0.660698,-0.000000;;, + 81;3;-0.000000, 0.660698,-0.000000;;, + 82;3;-0.000000, 0.660698,-0.000000;;, + 83;3;-0.000000, 0.660698,-0.000000;;, + 84;3;-0.000000, 0.660698,-0.000000;;, + 85;3;-0.000000, 0.660698,-0.000000;;, + 86;3;-0.000000, 0.660698,-0.000000;;, + 87;3;-0.000000, 0.660698,-0.000000;;, + 88;3;-0.000000, 0.660698,-0.000000;;, + 89;3;-0.000000, 0.660698,-0.000000;;, + 90;3;-0.000000, 0.660698,-0.000000;;, + 91;3;-0.000000, 0.660698,-0.000000;;, + 92;3;-0.000000, 0.660698,-0.000000;;, + 93;3;-0.000000, 0.660698,-0.000000;;, + 94;3;-0.000000, 0.660698,-0.000000;;, + 95;3;-0.000000, 0.660698,-0.000000;;, + 96;3;-0.000000, 0.660698,-0.000000;;, + 97;3;-0.000000, 0.660698,-0.000000;;, + 98;3;-0.000000, 0.660698,-0.000000;;, + 99;3;-0.000000, 0.660698,-0.000000;;, + 100;3;-0.000000, 0.660698,-0.000000;;, + 101;3;-0.000000, 0.660698,-0.000000;;, + 102;3;-0.000000, 0.660698,-0.000000;;, + 103;3;-0.000000, 0.660698,-0.000000;;, + 104;3;-0.000000, 0.660698,-0.000000;;, + 105;3;-0.000000, 0.660698,-0.000000;;, + 106;3;-0.000000, 0.660698,-0.000000;;, + 107;3;-0.000000, 0.660698,-0.000000;;, + 108;3;-0.000000, 0.660698,-0.000000;;, + 109;3;-0.000000, 0.660698,-0.000000;;, + 110;3;-0.000000, 0.660698,-0.000000;;, + 111;3;-0.000000, 0.660698,-0.000000;;, + 112;3;-0.000000, 0.660698,-0.000000;;, + 113;3;-0.000000, 0.660698,-0.000000;;, + 114;3;-0.000000, 0.660698,-0.000000;;, + 115;3;-0.000000, 0.660698,-0.000000;;, + 116;3;-0.000000, 0.660698,-0.000000;;, + 117;3;-0.000000, 0.660698,-0.000000;;, + 118;3;-0.000000, 0.660698,-0.000000;;, + 119;3;-0.000000, 0.660698,-0.000000;;, + 120;3;-0.000000, 0.660698,-0.000000;;, + 121;3;-0.000000, 0.660698,-0.000000;;, + 122;3;-0.000000, 0.660698,-0.000000;;, + 123;3;-0.000000, 0.660698,-0.000000;;, + 124;3;-0.000000, 0.660698,-0.000000;;, + 125;3;-0.000000, 0.660698,-0.000000;;, + 126;3;-0.000000, 0.660698,-0.000000;;, + 127;3;-0.000000, 0.660698,-0.000000;;, + 128;3;-0.000000, 0.660698,-0.000000;;, + 129;3;-0.000000, 0.660698,-0.000000;;, + 130;3;-0.000000, 0.660698,-0.000000;;, + 131;3;-0.000000, 0.660698,-0.000000;;, + 132;3;-0.000000, 0.660698,-0.000000;;, + 133;3;-0.000000, 0.660698,-0.000000;;, + 134;3;-0.000000, 0.660698,-0.000000;;, + 135;3;-0.000000, 0.660698,-0.000000;;, + 136;3;-0.000000, 0.660698,-0.000000;;, + 137;3;-0.000000, 0.660698,-0.000000;;, + 138;3;-0.000000, 0.660698,-0.000000;;, + 139;3;-0.000000, 0.660698,-0.000000;;, + 140;3;-0.000000, 0.660698,-0.000000;;, + 141;3;-0.000000, 0.660698,-0.000000;;, + 142;3;-0.000000, 0.660698,-0.000000;;, + 143;3;-0.000000, 0.660698,-0.000000;;, + 144;3;-0.000000, 0.660698,-0.000000;;, + 145;3;-0.000000, 0.660698,-0.000000;;, + 146;3;-0.000000, 0.660698,-0.000000;;, + 147;3;-0.000000, 0.660698,-0.000000;;, + 148;3;-0.000000, 0.660698,-0.000000;;, + 149;3;-0.000000, 0.660698,-0.000000;;, + 150;3;-0.000000, 0.660698,-0.000000;;, + 151;3;-0.000000, 0.660698,-0.000000;;, + 152;3;-0.000000, 0.660698,-0.000000;;, + 153;3;-0.000000, 0.660698,-0.000000;;, + 154;3;-0.000000, 0.660698,-0.000000;;, + 155;3;-0.000000, 0.660698,-0.000000;;, + 156;3;-0.000000, 0.660698,-0.000000;;, + 157;3;-0.000000, 0.660698,-0.000000;;, + 158;3;-0.000000, 0.660698,-0.000000;;, + 159;3;-0.000000, 0.660698,-0.000000;;, + 160;3;-0.000000, 0.660698,-0.000000;;, + 161;3;-0.000000, 0.660698,-0.000000;;, + 162;3;-0.000000, 0.660698,-0.000000;;, + 163;3;-0.000000, 0.660698,-0.000000;;, + 164;3;-0.000000, 0.660698,-0.000000;;, + 165;3;-0.000000, 0.660698,-0.000000;;, + 166;3;-0.000000, 0.660698,-0.000000;;, + 167;3;-0.000000, 0.660698,-0.000000;;, + 168;3;-0.000000, 0.660698,-0.000000;;, + 169;3;-0.000000, 0.660698,-0.000000;;, + 170;3;-0.000000, 0.660698,-0.000000;;, + 171;3;-0.000000, 0.660698,-0.000000;;, + 172;3;-0.000000, 0.660698,-0.000000;;, + 173;3;-0.000000, 0.660698,-0.000000;;, + 174;3;-0.000000, 0.660698,-0.000000;;, + 175;3;-0.000000, 0.660698,-0.000000;;, + 176;3;-0.000000, 0.660698,-0.000000;;, + 177;3;-0.000000, 0.660698,-0.000000;;, + 178;3;-0.000000, 0.660698,-0.000000;;, + 179;3;-0.000000, 0.660698,-0.000000;;, + 180;3;-0.000000, 0.660698,-0.000000;;, + 181;3; 0.000000, 0.660698,-0.000000;;, + 182;3; 0.000000, 0.660698,-0.000000;;, + 183;3;-0.000000, 0.660698,-0.000000;;, + 184;3; 0.000000, 0.660699,-0.000000;;, + 185;3;-0.000000, 0.660699,-0.000000;;, + 186;3;-0.000000, 0.660698,-0.000000;;, + 187;3;-0.000000, 0.660698,-0.000000;;, + 188;3; 0.000000, 0.660698, 0.000000;;, + 189;3;-0.000000, 0.660698,-0.000000;;, + 190;3;-0.000000, 0.660699,-0.000000;;, + 191;3;-0.000000, 0.660698,-0.000000;;, + 192;3;-0.000000, 0.660698,-0.000000;;, + 193;3; 0.000000, 0.660698,-0.000000;;, + 194;3;-0.000000, 0.660698,-0.000000;;, + 195;3;-0.000001, 0.660698, 0.000000;;, + 196;3; 0.000000, 0.660698, 0.000000;;, + 197;3; 0.000000, 0.660698,-0.000000;;, + 198;3;-0.000000, 0.660698,-0.000000;;, + 199;3;-0.000000, 0.660698,-0.000000;;, + 200;3;-0.000000, 0.660698,-0.000000;;, + 201;3;-0.000000, 0.660698,-0.000000;;, + 202;3;-0.000000, 0.660698,-0.000000;;, + 203;3;-0.000000, 0.660698,-0.000000;;, + 204;3;-0.000000, 0.660698,-0.000000;;, + 205;3;-0.000000, 0.660698,-0.000000;;, + 206;3;-0.000000, 0.660698,-0.000000;;, + 207;3;-0.000000, 0.660698,-0.000000;;, + 208;3;-0.000000, 0.660698,-0.000000;;, + 209;3;-0.000000, 0.660698,-0.000000;;, + 210;3;-0.000000, 0.660698,-0.000000;;, + 211;3;-0.000000, 0.660698,-0.000000;;, + 212;3;-0.000000, 0.660698,-0.000000;;, + 213;3;-0.000000, 0.660698,-0.000000;;, + 214;3;-0.000000, 0.660698,-0.000000;;, + 215;3;-0.000000, 0.660698,-0.000000;;, + 216;3;-0.000000, 0.660698,-0.000000;;, + 217;3;-0.000000, 0.660698,-0.000000;;, + 218;3;-0.000000, 0.660698,-0.000000;;, + 219;3;-0.000000, 0.660698,-0.000000;;, + 220;3;-0.000000, 0.660698,-0.000000;;, + 221;3;-0.000000, 0.660698,-0.000000;;, + 222;3;-0.000000, 0.660698,-0.000000;;, + 223;3;-0.000000, 0.660698,-0.000000;;, + 224;3;-0.000000, 0.660698,-0.000000;;, + 225;3;-0.000000, 0.660698,-0.000000;;, + 226;3;-0.000000, 0.660698,-0.000000;;, + 227;3;-0.000000, 0.660698,-0.000000;;, + 228;3;-0.000000, 0.660698,-0.000000;;, + 229;3;-0.000000, 0.660698,-0.000000;;, + 230;3;-0.000000, 0.660698,-0.000000;;, + 231;3;-0.000000, 0.660698,-0.000000;;, + 232;3;-0.000000, 0.660698,-0.000000;;, + 233;3;-0.000000, 0.660698,-0.000000;;, + 234;3;-0.000000, 0.660698,-0.000000;;, + 235;3;-0.000000, 0.660698,-0.000000;;, + 236;3;-0.000000, 0.660698,-0.000000;;, + 237;3;-0.000000, 0.660698,-0.000000;;, + 238;3;-0.000000, 0.660698,-0.000000;;, + 239;3;-0.000000, 0.660698,-0.000000;;, + 240;3;-0.000000, 0.660698,-0.000000;;, + 241;3;-0.000000, 0.660698,-0.000000;;, + 242;3;-0.000000, 0.660698,-0.000000;;, + 243;3;-0.000000, 0.660698,-0.000000;;, + 244;3;-0.000000, 0.660698,-0.000000;;, + 245;3;-0.000000, 0.660698,-0.000000;;, + 246;3;-0.000000, 0.660698,-0.000000;;, + 247;3;-0.000000, 0.660698,-0.000000;;, + 248;3;-0.000000, 0.660698,-0.000000;;, + 249;3;-0.000000, 0.660698,-0.000000;;; + } + } + Animation { + {Armature_Bone_004} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 1;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 2;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 3;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 4;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 5;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 6;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 7;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 8;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 9;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 10;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 11;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 12;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 13;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 14;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 15;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 16;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 17;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 18;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 19;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 20;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 21;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 22;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 23;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 24;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 25;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 26;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 27;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 28;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 29;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 30;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 31;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 32;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 33;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 34;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 35;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 36;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 37;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 38;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 39;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 40;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 41;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 42;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 43;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 44;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 45;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 46;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 47;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 48;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 49;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 50;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 51;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 52;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 53;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 54;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 55;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 56;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 57;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 58;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 59;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 60;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 61;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 62;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 63;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 64;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 65;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 66;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 67;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 68;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 69;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 70;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 71;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 72;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 73;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 74;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 75;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 76;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 77;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 78;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 79;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 80;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 81;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 82;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 83;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 84;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 85;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 86;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 87;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 88;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 89;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 90;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 91;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 92;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 93;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 94;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 95;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 96;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 97;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 98;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 99;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 100;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 101;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 102;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 103;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 104;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 105;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 106;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 107;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 108;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 109;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 110;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 111;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 112;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 113;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 114;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 115;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 116;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 117;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 118;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 119;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 120;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 121;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 122;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 123;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 124;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 125;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 126;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 127;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 128;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 129;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 130;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 131;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 132;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 133;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 134;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 135;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 136;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 137;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 138;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 139;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 140;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 141;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 142;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 143;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 144;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 145;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 146;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 147;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 148;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 149;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 150;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 151;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 152;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 153;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 154;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 155;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 156;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 157;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 158;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 159;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 160;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 161;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 162;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 163;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 164;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 165;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 166;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 167;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 168;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 169;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 170;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 171;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 172;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 173;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 174;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 175;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 176;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 177;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 178;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 179;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 180;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 181;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 182;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 183;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 184;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 185;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 186;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 187;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 188;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 189;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 190;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 191;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 192;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 193;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 194;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 195;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 196;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 197;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 198;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 199;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 200;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 201;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 202;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 203;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 204;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 205;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 206;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 207;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 208;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 209;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 210;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 211;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 212;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 213;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 214;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 215;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 216;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 217;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 218;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 219;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 220;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 221;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 222;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 223;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 224;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 225;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 226;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 227;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 228;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 229;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 230;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 231;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 232;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 233;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 234;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 235;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 236;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 237;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 238;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 239;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 240;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 241;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 242;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 243;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 244;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 245;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 246;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 247;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 248;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 249;4;-0.972673, 0.149616, 0.026528, 0.175551;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3; 0.000000, 0.826434, 0.000000;;, + 1;3; 0.000000, 0.826434, 0.000000;;, + 2;3; 0.000000, 0.826434, 0.000000;;, + 3;3; 0.000000, 0.826434, 0.000000;;, + 4;3; 0.000000, 0.826434, 0.000000;;, + 5;3; 0.000000, 0.826434, 0.000000;;, + 6;3; 0.000000, 0.826434, 0.000000;;, + 7;3; 0.000000, 0.826434, 0.000000;;, + 8;3; 0.000000, 0.826434, 0.000000;;, + 9;3; 0.000000, 0.826434, 0.000000;;, + 10;3; 0.000000, 0.826434, 0.000000;;, + 11;3; 0.000000, 0.826434, 0.000000;;, + 12;3; 0.000000, 0.826434, 0.000000;;, + 13;3; 0.000000, 0.826434, 0.000000;;, + 14;3; 0.000000, 0.826434, 0.000000;;, + 15;3; 0.000000, 0.826434, 0.000000;;, + 16;3; 0.000000, 0.826434, 0.000000;;, + 17;3; 0.000000, 0.826434, 0.000000;;, + 18;3; 0.000000, 0.826434, 0.000000;;, + 19;3; 0.000000, 0.826434, 0.000000;;, + 20;3; 0.000000, 0.826434, 0.000000;;, + 21;3; 0.000000, 0.826434, 0.000000;;, + 22;3; 0.000000, 0.826434, 0.000000;;, + 23;3; 0.000000, 0.826434, 0.000000;;, + 24;3; 0.000000, 0.826434, 0.000000;;, + 25;3; 0.000000, 0.826434, 0.000000;;, + 26;3; 0.000000, 0.826434, 0.000000;;, + 27;3; 0.000000, 0.826434, 0.000000;;, + 28;3; 0.000000, 0.826434, 0.000000;;, + 29;3; 0.000000, 0.826434, 0.000000;;, + 30;3; 0.000000, 0.826434, 0.000000;;, + 31;3; 0.000000, 0.826434, 0.000000;;, + 32;3; 0.000000, 0.826434, 0.000000;;, + 33;3; 0.000000, 0.826434, 0.000000;;, + 34;3; 0.000000, 0.826434, 0.000000;;, + 35;3; 0.000000, 0.826434, 0.000000;;, + 36;3; 0.000000, 0.826434, 0.000000;;, + 37;3; 0.000000, 0.826434, 0.000000;;, + 38;3; 0.000000, 0.826434, 0.000000;;, + 39;3; 0.000000, 0.826434, 0.000000;;, + 40;3; 0.000000, 0.826434, 0.000000;;, + 41;3; 0.000000, 0.826434, 0.000000;;, + 42;3; 0.000000, 0.826434, 0.000000;;, + 43;3; 0.000000, 0.826434, 0.000000;;, + 44;3; 0.000000, 0.826434, 0.000000;;, + 45;3; 0.000000, 0.826434, 0.000000;;, + 46;3; 0.000000, 0.826434, 0.000000;;, + 47;3; 0.000000, 0.826434, 0.000000;;, + 48;3; 0.000000, 0.826434, 0.000000;;, + 49;3; 0.000000, 0.826434, 0.000000;;, + 50;3; 0.000000, 0.826434, 0.000000;;, + 51;3; 0.000000, 0.826434, 0.000000;;, + 52;3; 0.000000, 0.826434, 0.000000;;, + 53;3; 0.000000, 0.826434, 0.000000;;, + 54;3; 0.000000, 0.826434, 0.000000;;, + 55;3; 0.000000, 0.826434, 0.000000;;, + 56;3; 0.000000, 0.826434, 0.000000;;, + 57;3; 0.000000, 0.826434, 0.000000;;, + 58;3; 0.000000, 0.826434, 0.000000;;, + 59;3; 0.000000, 0.826434, 0.000000;;, + 60;3; 0.000000, 0.826434, 0.000000;;, + 61;3; 0.000000, 0.826434, 0.000000;;, + 62;3; 0.000000, 0.826434, 0.000000;;, + 63;3; 0.000000, 0.826434, 0.000000;;, + 64;3; 0.000000, 0.826434, 0.000000;;, + 65;3; 0.000000, 0.826434, 0.000000;;, + 66;3; 0.000000, 0.826434, 0.000000;;, + 67;3; 0.000000, 0.826434, 0.000000;;, + 68;3; 0.000000, 0.826434, 0.000000;;, + 69;3; 0.000000, 0.826434, 0.000000;;, + 70;3; 0.000000, 0.826434, 0.000000;;, + 71;3; 0.000000, 0.826434, 0.000000;;, + 72;3; 0.000000, 0.826434, 0.000000;;, + 73;3; 0.000000, 0.826434, 0.000000;;, + 74;3; 0.000000, 0.826434, 0.000000;;, + 75;3; 0.000000, 0.826434, 0.000000;;, + 76;3; 0.000000, 0.826434, 0.000000;;, + 77;3; 0.000000, 0.826434, 0.000000;;, + 78;3; 0.000000, 0.826434, 0.000000;;, + 79;3; 0.000000, 0.826434, 0.000000;;, + 80;3; 0.000000, 0.826434, 0.000000;;, + 81;3; 0.000000, 0.826434, 0.000000;;, + 82;3; 0.000000, 0.826434, 0.000000;;, + 83;3; 0.000000, 0.826434, 0.000000;;, + 84;3; 0.000000, 0.826434, 0.000000;;, + 85;3; 0.000000, 0.826434, 0.000000;;, + 86;3; 0.000000, 0.826434, 0.000000;;, + 87;3; 0.000000, 0.826434, 0.000000;;, + 88;3; 0.000000, 0.826434, 0.000000;;, + 89;3; 0.000000, 0.826434, 0.000000;;, + 90;3; 0.000000, 0.826434, 0.000000;;, + 91;3; 0.000000, 0.826434, 0.000000;;, + 92;3; 0.000000, 0.826434, 0.000000;;, + 93;3; 0.000000, 0.826434, 0.000000;;, + 94;3; 0.000000, 0.826434, 0.000000;;, + 95;3; 0.000000, 0.826434, 0.000000;;, + 96;3; 0.000000, 0.826434, 0.000000;;, + 97;3; 0.000000, 0.826434, 0.000000;;, + 98;3; 0.000000, 0.826434, 0.000000;;, + 99;3; 0.000000, 0.826434, 0.000000;;, + 100;3; 0.000000, 0.826434, 0.000000;;, + 101;3; 0.000000, 0.826434, 0.000000;;, + 102;3; 0.000000, 0.826434, 0.000000;;, + 103;3; 0.000000, 0.826434, 0.000000;;, + 104;3; 0.000000, 0.826434, 0.000000;;, + 105;3; 0.000000, 0.826434, 0.000000;;, + 106;3; 0.000000, 0.826434, 0.000000;;, + 107;3; 0.000000, 0.826434, 0.000000;;, + 108;3; 0.000000, 0.826434, 0.000000;;, + 109;3; 0.000000, 0.826434, 0.000000;;, + 110;3; 0.000000, 0.826434, 0.000000;;, + 111;3; 0.000000, 0.826434, 0.000000;;, + 112;3; 0.000000, 0.826434, 0.000000;;, + 113;3; 0.000000, 0.826434, 0.000000;;, + 114;3; 0.000000, 0.826434, 0.000000;;, + 115;3; 0.000000, 0.826434, 0.000000;;, + 116;3; 0.000000, 0.826434, 0.000000;;, + 117;3; 0.000000, 0.826434, 0.000000;;, + 118;3; 0.000000, 0.826434, 0.000000;;, + 119;3; 0.000000, 0.826434, 0.000000;;, + 120;3; 0.000000, 0.826434, 0.000000;;, + 121;3; 0.000000, 0.826434, 0.000000;;, + 122;3; 0.000000, 0.826434, 0.000000;;, + 123;3; 0.000000, 0.826434, 0.000000;;, + 124;3; 0.000000, 0.826434, 0.000000;;, + 125;3; 0.000000, 0.826434, 0.000000;;, + 126;3; 0.000000, 0.826434, 0.000000;;, + 127;3; 0.000000, 0.826434, 0.000000;;, + 128;3; 0.000000, 0.826434, 0.000000;;, + 129;3; 0.000000, 0.826434, 0.000000;;, + 130;3; 0.000000, 0.826434, 0.000000;;, + 131;3; 0.000000, 0.826434, 0.000000;;, + 132;3; 0.000000, 0.826434, 0.000000;;, + 133;3; 0.000000, 0.826434, 0.000000;;, + 134;3; 0.000000, 0.826434, 0.000000;;, + 135;3; 0.000000, 0.826434, 0.000000;;, + 136;3; 0.000000, 0.826434, 0.000000;;, + 137;3; 0.000000, 0.826434, 0.000000;;, + 138;3; 0.000000, 0.826434, 0.000000;;, + 139;3; 0.000000, 0.826434, 0.000000;;, + 140;3; 0.000000, 0.826434, 0.000000;;, + 141;3; 0.000000, 0.826434, 0.000000;;, + 142;3; 0.000000, 0.826434, 0.000000;;, + 143;3; 0.000000, 0.826434, 0.000000;;, + 144;3; 0.000000, 0.826434, 0.000000;;, + 145;3; 0.000000, 0.826434, 0.000000;;, + 146;3; 0.000000, 0.826434, 0.000000;;, + 147;3; 0.000000, 0.826434, 0.000000;;, + 148;3; 0.000000, 0.826434, 0.000000;;, + 149;3; 0.000000, 0.826434, 0.000000;;, + 150;3; 0.000000, 0.826434, 0.000000;;, + 151;3; 0.000000, 0.826434, 0.000000;;, + 152;3; 0.000000, 0.826434, 0.000000;;, + 153;3; 0.000000, 0.826434, 0.000000;;, + 154;3; 0.000000, 0.826434, 0.000000;;, + 155;3; 0.000000, 0.826434, 0.000000;;, + 156;3; 0.000000, 0.826434, 0.000000;;, + 157;3; 0.000000, 0.826434, 0.000000;;, + 158;3; 0.000000, 0.826434, 0.000000;;, + 159;3; 0.000000, 0.826434, 0.000000;;, + 160;3; 0.000000, 0.826434, 0.000000;;, + 161;3; 0.000000, 0.826434, 0.000000;;, + 162;3; 0.000000, 0.826434, 0.000000;;, + 163;3; 0.000000, 0.826434, 0.000000;;, + 164;3; 0.000000, 0.826434, 0.000000;;, + 165;3; 0.000000, 0.826434, 0.000000;;, + 166;3; 0.000000, 0.826434, 0.000000;;, + 167;3; 0.000000, 0.826434, 0.000000;;, + 168;3; 0.000000, 0.826434, 0.000000;;, + 169;3; 0.000000, 0.826434, 0.000000;;, + 170;3; 0.000000, 0.826434, 0.000000;;, + 171;3; 0.000000, 0.826434, 0.000000;;, + 172;3; 0.000000, 0.826434, 0.000000;;, + 173;3; 0.000000, 0.826434, 0.000000;;, + 174;3; 0.000000, 0.826434, 0.000000;;, + 175;3; 0.000000, 0.826434, 0.000000;;, + 176;3; 0.000000, 0.826434, 0.000000;;, + 177;3; 0.000000, 0.826434, 0.000000;;, + 178;3; 0.000000, 0.826434, 0.000000;;, + 179;3; 0.000000, 0.826434, 0.000000;;, + 180;3; 0.000000, 0.826434, 0.000000;;, + 181;3; 0.000000, 0.826434, 0.000000;;, + 182;3; 0.000000, 0.826434, 0.000000;;, + 183;3; 0.000000, 0.826434, 0.000000;;, + 184;3; 0.000000, 0.826434, 0.000000;;, + 185;3; 0.000000, 0.826434, 0.000000;;, + 186;3;-0.000000, 0.826434,-0.000000;;, + 187;3;-0.000000, 0.826434,-0.000000;;, + 188;3;-0.000000, 0.826434, 0.000000;;, + 189;3;-0.000000, 0.826434, 0.000000;;, + 190;3;-0.000000, 0.826434,-0.000000;;, + 191;3; 0.000000, 0.826434, 0.000000;;, + 192;3; 0.000000, 0.826434, 0.000000;;, + 193;3; 0.000000, 0.826434, 0.000000;;, + 194;3; 0.000000, 0.826434,-0.000000;;, + 195;3; 0.000000, 0.826434,-0.000000;;, + 196;3; 0.000000, 0.826434, 0.000000;;, + 197;3; 0.000000, 0.826434,-0.000000;;, + 198;3; 0.000000, 0.826434,-0.000000;;, + 199;3; 0.000000, 0.826434, 0.000000;;, + 200;3; 0.000000, 0.826434, 0.000000;;, + 201;3; 0.000000, 0.826434, 0.000000;;, + 202;3; 0.000000, 0.826434, 0.000000;;, + 203;3; 0.000000, 0.826434, 0.000000;;, + 204;3; 0.000000, 0.826434, 0.000000;;, + 205;3; 0.000000, 0.826434, 0.000000;;, + 206;3; 0.000000, 0.826434, 0.000000;;, + 207;3; 0.000000, 0.826434, 0.000000;;, + 208;3; 0.000000, 0.826434, 0.000000;;, + 209;3; 0.000000, 0.826434, 0.000000;;, + 210;3; 0.000000, 0.826434, 0.000000;;, + 211;3; 0.000000, 0.826434, 0.000000;;, + 212;3; 0.000000, 0.826434, 0.000000;;, + 213;3; 0.000000, 0.826434, 0.000000;;, + 214;3; 0.000000, 0.826434, 0.000000;;, + 215;3; 0.000000, 0.826434, 0.000000;;, + 216;3; 0.000000, 0.826434, 0.000000;;, + 217;3; 0.000000, 0.826434, 0.000000;;, + 218;3; 0.000000, 0.826434, 0.000000;;, + 219;3; 0.000000, 0.826434, 0.000000;;, + 220;3; 0.000000, 0.826434, 0.000000;;, + 221;3; 0.000000, 0.826434, 0.000000;;, + 222;3; 0.000000, 0.826434, 0.000000;;, + 223;3; 0.000000, 0.826434, 0.000000;;, + 224;3; 0.000000, 0.826434, 0.000000;;, + 225;3; 0.000000, 0.826434, 0.000000;;, + 226;3; 0.000000, 0.826434, 0.000000;;, + 227;3; 0.000000, 0.826434, 0.000000;;, + 228;3; 0.000000, 0.826434, 0.000000;;, + 229;3; 0.000000, 0.826434, 0.000000;;, + 230;3; 0.000000, 0.826434, 0.000000;;, + 231;3; 0.000000, 0.826434, 0.000000;;, + 232;3; 0.000000, 0.826434, 0.000000;;, + 233;3; 0.000000, 0.826434, 0.000000;;, + 234;3; 0.000000, 0.826434, 0.000000;;, + 235;3; 0.000000, 0.826434, 0.000000;;, + 236;3; 0.000000, 0.826434, 0.000000;;, + 237;3; 0.000000, 0.826434, 0.000000;;, + 238;3; 0.000000, 0.826434, 0.000000;;, + 239;3; 0.000000, 0.826434, 0.000000;;, + 240;3; 0.000000, 0.826434, 0.000000;;, + 241;3; 0.000000, 0.826434, 0.000000;;, + 242;3; 0.000000, 0.826434, 0.000000;;, + 243;3; 0.000000, 0.826434, 0.000000;;, + 244;3; 0.000000, 0.826434, 0.000000;;, + 245;3; 0.000000, 0.826434, 0.000000;;, + 246;3; 0.000000, 0.826434, 0.000000;;, + 247;3; 0.000000, 0.826434, 0.000000;;, + 248;3; 0.000000, 0.826434, 0.000000;;, + 249;3; 0.000000, 0.826434, 0.000000;;; + } + } + Animation { + {Armature_Bone_007} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 1;4;-0.515659,-0.636389,-0.395534, 0.415448;;, + 2;4;-0.516387,-0.635621,-0.396654, 0.414436;;, + 3;4;-0.517605,-0.634337,-0.398525, 0.412744;;, + 4;4;-0.519301,-0.632548,-0.401133, 0.410387;;, + 5;4;-0.521451,-0.630280,-0.404438, 0.407399;;, + 6;4;-0.524013,-0.627579,-0.408374, 0.403840;;, + 7;4;-0.526923,-0.624511,-0.412847, 0.399796;;, + 8;4;-0.530100,-0.621161,-0.417729, 0.395382;;, + 9;4;-0.533444,-0.617634,-0.422869, 0.390735;;, + 10;4;-0.536846,-0.614047,-0.428097, 0.386009;;, + 11;4;-0.540190,-0.610520,-0.433237, 0.381362;;, + 12;4;-0.543367,-0.607170,-0.438119, 0.376948;;, + 13;4;-0.546277,-0.604101,-0.442591, 0.372904;;, + 14;4;-0.548838,-0.601400,-0.446528, 0.369345;;, + 15;4;-0.550988,-0.599133,-0.449833, 0.366357;;, + 16;4;-0.552685,-0.597344,-0.452440, 0.364000;;, + 17;4;-0.553903,-0.596060,-0.454312, 0.362308;;, + 18;4;-0.554631,-0.595291,-0.455431, 0.361296;;, + 19;4;-0.554872,-0.595037,-0.455802, 0.360961;;, + 20;4;-0.554616,-0.595287,-0.455415, 0.361298;;, + 21;4;-0.553843,-0.596044,-0.454247, 0.362316;;, + 22;4;-0.552551,-0.597310,-0.452293, 0.364019;;, + 23;4;-0.550749,-0.599077,-0.449568, 0.366395;;, + 24;4;-0.548460,-0.601325,-0.446106, 0.369416;;, + 25;4;-0.545722,-0.604014,-0.441965, 0.373031;;, + 26;4;-0.542594,-0.607091,-0.437232, 0.377164;;, + 27;4;-0.539154,-0.610481,-0.432025, 0.381716;;, + 28;4;-0.535495,-0.614092,-0.426485, 0.386563;;, + 29;4;-0.531725,-0.617821,-0.420774, 0.391564;;, + 30;4;-0.527960,-0.621555,-0.415067, 0.396569;;, + 31;4;-0.524314,-0.625182,-0.409537, 0.401427;;, + 32;4;-0.520896,-0.628599,-0.404346, 0.405996;;, + 33;4;-0.517798,-0.631712,-0.399636, 0.410154;;, + 34;4;-0.515097,-0.634448,-0.395524, 0.413798;;, + 35;4;-0.512852,-0.636749,-0.392095, 0.416855;;, + 36;4;-0.511099,-0.638578,-0.389408, 0.419271;;, + 37;4;-0.509861,-0.639911,-0.387496, 0.421018;;, + 38;4;-0.509147,-0.640741,-0.386373, 0.422084;;, + 39;4;-0.508954,-0.641069,-0.386035, 0.422471;;, + 40;4;-0.509050,-0.641118,-0.386131, 0.422482;;, + 41;4;-0.509208,-0.641107,-0.386322, 0.422412;;, + 42;4;-0.509430,-0.641035,-0.386608, 0.422259;;, + 43;4;-0.509713,-0.640903,-0.386987, 0.422025;;, + 44;4;-0.510054,-0.640712,-0.387455, 0.421713;;, + 45;4;-0.510449,-0.640466,-0.388004, 0.421328;;, + 46;4;-0.510889,-0.640172,-0.388624, 0.420879;;, + 47;4;-0.511365,-0.639837,-0.389299, 0.420378;;, + 48;4;-0.511864,-0.639472,-0.390012, 0.419839;;, + 49;4;-0.512374,-0.639088,-0.390743, 0.419279;;, + 50;4;-0.512879,-0.638699,-0.391471, 0.418715;;, + 51;4;-0.513365,-0.638318,-0.392174, 0.418165;;, + 52;4;-0.513819,-0.637956,-0.392832, 0.417646;;, + 53;4;-0.514229,-0.637625,-0.393429, 0.417174;;, + 54;4;-0.514587,-0.637333,-0.393950, 0.416759;;, + 55;4;-0.514884,-0.637088,-0.394384, 0.416411;;, + 56;4;-0.515118,-0.636894,-0.394726, 0.416137;;, + 57;4;-0.515285,-0.636755,-0.394970, 0.415940;;, + 58;4;-0.515385,-0.636671,-0.395116, 0.415822;;, + 59;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 60;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 61;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 62;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 63;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 64;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 65;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 66;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 67;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 68;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 69;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 70;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 71;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 72;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 73;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 74;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 75;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 76;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 77;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 78;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 79;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 80;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 81;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 82;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 83;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 84;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 85;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 86;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 87;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 88;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 89;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 90;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 91;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 92;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 93;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 94;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 95;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 96;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 97;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 98;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 99;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 100;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 101;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 102;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 103;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 104;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 105;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 106;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 107;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 108;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 109;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 110;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 111;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 112;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 113;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 114;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 115;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 116;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 117;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 118;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 119;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 120;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 121;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 122;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 123;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 124;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 125;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 126;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 127;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 128;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 129;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 130;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 131;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 132;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 133;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 134;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 135;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 136;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 137;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 138;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 139;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 140;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 141;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 142;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 143;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 144;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 145;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 146;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 147;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 148;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 149;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 150;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 151;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 152;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 153;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 154;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 155;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 156;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 157;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 158;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 159;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 160;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 161;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 162;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 163;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 164;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 165;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 166;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 167;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 168;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 169;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 170;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 171;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 172;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 173;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 174;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 175;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 176;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 177;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 178;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 179;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 180;4;-0.517803,-0.633175,-0.399151, 0.411554;;, + 181;4;-0.524982,-0.622736,-0.411150, 0.398827;;, + 182;4;-0.536656,-0.605762,-0.430659, 0.378134;;, + 183;4;-0.551924,-0.583561,-0.456177, 0.351068;;, + 184;4;-0.569221,-0.558412,-0.485084, 0.320407;;, + 185;4;-0.586517,-0.533262,-0.513991, 0.289746;;, + 186;4;-0.601785,-0.511061,-0.539509, 0.262681;;, + 187;4;-0.613459,-0.494087,-0.559018, 0.241988;;, + 188;4;-0.620638,-0.483648,-0.571017, 0.229261;;, + 189;4;-0.623024,-0.480179,-0.575004, 0.225032;;, + 190;4;-0.617019,-0.490586,-0.564405, 0.237283;;, + 191;4;-0.599355,-0.520635,-0.533415, 0.272782;;, + 192;4;-0.574661,-0.561199,-0.490578, 0.321024;;, + 193;4;-0.551509,-0.596645,-0.451285, 0.363775;;, + 194;4;-0.536168,-0.616235,-0.426559, 0.388364;;, + 195;4;-0.526702,-0.625545,-0.412238, 0.400872;;, + 196;4;-0.520101,-0.632037,-0.402251, 0.409594;;, + 197;4;-0.516659,-0.635422,-0.397042, 0.414142;;, + 198;4;-0.515546,-0.636517,-0.395359, 0.415613;;, + 199;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 200;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 201;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 202;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 203;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 204;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 205;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 206;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 207;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 208;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 209;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 210;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 211;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 212;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 213;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 214;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 215;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 216;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 217;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 218;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 219;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 220;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 221;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 222;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 223;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 224;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 225;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 226;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 227;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 228;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 229;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 230;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 231;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 232;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 233;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 234;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 235;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 236;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 237;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 238;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 239;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 240;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 241;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 242;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 243;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 244;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 245;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 246;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 247;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 248;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 249;4;-0.515417,-0.636643,-0.395164, 0.415783;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3;-0.000000, 0.747179, 0.000000;;, + 1;3;-0.000000, 0.747179, 0.000000;;, + 2;3;-0.000000, 0.747179, 0.000000;;, + 3;3;-0.000000, 0.747179, 0.000000;;, + 4;3;-0.000000, 0.747179, 0.000000;;, + 5;3;-0.000000, 0.747179, 0.000000;;, + 6;3;-0.000000, 0.747179, 0.000000;;, + 7;3;-0.000000, 0.747179, 0.000000;;, + 8;3;-0.000000, 0.747179, 0.000000;;, + 9;3;-0.000000, 0.747179, 0.000000;;, + 10;3;-0.000000, 0.747179, 0.000000;;, + 11;3;-0.000000, 0.747179, 0.000000;;, + 12;3;-0.000000, 0.747179, 0.000000;;, + 13;3;-0.000000, 0.747179, 0.000000;;, + 14;3;-0.000000, 0.747179, 0.000000;;, + 15;3;-0.000000, 0.747179, 0.000000;;, + 16;3;-0.000000, 0.747179, 0.000000;;, + 17;3;-0.000000, 0.747179, 0.000000;;, + 18;3;-0.000000, 0.747179, 0.000000;;, + 19;3;-0.000000, 0.747179, 0.000000;;, + 20;3;-0.000000, 0.747179, 0.000000;;, + 21;3;-0.000000, 0.747179, 0.000000;;, + 22;3;-0.000000, 0.747179, 0.000000;;, + 23;3;-0.000000, 0.747179, 0.000000;;, + 24;3;-0.000000, 0.747179, 0.000000;;, + 25;3;-0.000000, 0.747179, 0.000000;;, + 26;3;-0.000000, 0.747179, 0.000000;;, + 27;3;-0.000000, 0.747179, 0.000000;;, + 28;3;-0.000000, 0.747179, 0.000000;;, + 29;3;-0.000000, 0.747179, 0.000000;;, + 30;3;-0.000000, 0.747179, 0.000000;;, + 31;3;-0.000000, 0.747179, 0.000000;;, + 32;3;-0.000000, 0.747179, 0.000000;;, + 33;3;-0.000000, 0.747179, 0.000000;;, + 34;3;-0.000000, 0.747179, 0.000000;;, + 35;3;-0.000000, 0.747179, 0.000000;;, + 36;3;-0.000000, 0.747179, 0.000000;;, + 37;3;-0.000000, 0.747179, 0.000000;;, + 38;3;-0.000000, 0.747179, 0.000000;;, + 39;3;-0.000000, 0.747179, 0.000000;;, + 40;3;-0.000000, 0.747179, 0.000000;;, + 41;3;-0.000000, 0.747179, 0.000000;;, + 42;3;-0.000000, 0.747179, 0.000000;;, + 43;3;-0.000000, 0.747179, 0.000000;;, + 44;3;-0.000000, 0.747179, 0.000000;;, + 45;3;-0.000000, 0.747179, 0.000000;;, + 46;3;-0.000000, 0.747179, 0.000000;;, + 47;3;-0.000000, 0.747179, 0.000000;;, + 48;3;-0.000000, 0.747179, 0.000000;;, + 49;3;-0.000000, 0.747179, 0.000000;;, + 50;3;-0.000000, 0.747179, 0.000000;;, + 51;3;-0.000000, 0.747179, 0.000000;;, + 52;3;-0.000000, 0.747179, 0.000000;;, + 53;3;-0.000000, 0.747179, 0.000000;;, + 54;3;-0.000000, 0.747179, 0.000000;;, + 55;3;-0.000000, 0.747179, 0.000000;;, + 56;3;-0.000000, 0.747179, 0.000000;;, + 57;3;-0.000000, 0.747179, 0.000000;;, + 58;3;-0.000000, 0.747179, 0.000000;;, + 59;3;-0.000000, 0.747179, 0.000000;;, + 60;3;-0.000000, 0.747179, 0.000000;;, + 61;3;-0.000000, 0.747179, 0.000000;;, + 62;3;-0.000000, 0.747179, 0.000000;;, + 63;3;-0.000000, 0.747179, 0.000000;;, + 64;3;-0.000000, 0.747179, 0.000000;;, + 65;3;-0.000000, 0.747179, 0.000000;;, + 66;3;-0.000000, 0.747179, 0.000000;;, + 67;3;-0.000000, 0.747179, 0.000000;;, + 68;3;-0.000000, 0.747179, 0.000000;;, + 69;3;-0.000000, 0.747179, 0.000000;;, + 70;3;-0.000000, 0.747179, 0.000000;;, + 71;3;-0.000000, 0.747179, 0.000000;;, + 72;3;-0.000000, 0.747179, 0.000000;;, + 73;3;-0.000000, 0.747179, 0.000000;;, + 74;3;-0.000000, 0.747179, 0.000000;;, + 75;3;-0.000000, 0.747179, 0.000000;;, + 76;3;-0.000000, 0.747179, 0.000000;;, + 77;3;-0.000000, 0.747179, 0.000000;;, + 78;3;-0.000000, 0.747179, 0.000000;;, + 79;3;-0.000000, 0.747179, 0.000000;;, + 80;3;-0.000000, 0.747179, 0.000000;;, + 81;3;-0.000000, 0.747179, 0.000000;;, + 82;3;-0.000000, 0.747179, 0.000000;;, + 83;3;-0.000000, 0.747179, 0.000000;;, + 84;3;-0.000000, 0.747179, 0.000000;;, + 85;3;-0.000000, 0.747179, 0.000000;;, + 86;3;-0.000000, 0.747179, 0.000000;;, + 87;3;-0.000000, 0.747179, 0.000000;;, + 88;3;-0.000000, 0.747179, 0.000000;;, + 89;3;-0.000000, 0.747179, 0.000000;;, + 90;3;-0.000000, 0.747179, 0.000000;;, + 91;3;-0.000000, 0.747179, 0.000000;;, + 92;3;-0.000000, 0.747179, 0.000000;;, + 93;3;-0.000000, 0.747179, 0.000000;;, + 94;3;-0.000000, 0.747179, 0.000000;;, + 95;3;-0.000000, 0.747179, 0.000000;;, + 96;3;-0.000000, 0.747179, 0.000000;;, + 97;3;-0.000000, 0.747179, 0.000000;;, + 98;3;-0.000000, 0.747179, 0.000000;;, + 99;3;-0.000000, 0.747179, 0.000000;;, + 100;3;-0.000000, 0.747179, 0.000000;;, + 101;3;-0.000000, 0.747179, 0.000000;;, + 102;3;-0.000000, 0.747179, 0.000000;;, + 103;3;-0.000000, 0.747179, 0.000000;;, + 104;3;-0.000000, 0.747179, 0.000000;;, + 105;3;-0.000000, 0.747179, 0.000000;;, + 106;3;-0.000000, 0.747179, 0.000000;;, + 107;3;-0.000000, 0.747179, 0.000000;;, + 108;3;-0.000000, 0.747179, 0.000000;;, + 109;3;-0.000000, 0.747179, 0.000000;;, + 110;3;-0.000000, 0.747179, 0.000000;;, + 111;3;-0.000000, 0.747179, 0.000000;;, + 112;3;-0.000000, 0.747179, 0.000000;;, + 113;3;-0.000000, 0.747179, 0.000000;;, + 114;3;-0.000000, 0.747179, 0.000000;;, + 115;3;-0.000000, 0.747179, 0.000000;;, + 116;3;-0.000000, 0.747179, 0.000000;;, + 117;3;-0.000000, 0.747179, 0.000000;;, + 118;3;-0.000000, 0.747179, 0.000000;;, + 119;3;-0.000000, 0.747179, 0.000000;;, + 120;3;-0.000000, 0.747179, 0.000000;;, + 121;3;-0.000000, 0.747179, 0.000000;;, + 122;3;-0.000000, 0.747179, 0.000000;;, + 123;3;-0.000000, 0.747179, 0.000000;;, + 124;3;-0.000000, 0.747179, 0.000000;;, + 125;3;-0.000000, 0.747179, 0.000000;;, + 126;3;-0.000000, 0.747179, 0.000000;;, + 127;3;-0.000000, 0.747179, 0.000000;;, + 128;3;-0.000000, 0.747179, 0.000000;;, + 129;3;-0.000000, 0.747179, 0.000000;;, + 130;3;-0.000000, 0.747179, 0.000000;;, + 131;3;-0.000000, 0.747179, 0.000000;;, + 132;3;-0.000000, 0.747179, 0.000000;;, + 133;3;-0.000000, 0.747179, 0.000000;;, + 134;3;-0.000000, 0.747179, 0.000000;;, + 135;3;-0.000000, 0.747179, 0.000000;;, + 136;3;-0.000000, 0.747179, 0.000000;;, + 137;3;-0.000000, 0.747179, 0.000000;;, + 138;3;-0.000000, 0.747179, 0.000000;;, + 139;3;-0.000000, 0.747179, 0.000000;;, + 140;3;-0.000000, 0.747179, 0.000000;;, + 141;3;-0.000000, 0.747179, 0.000000;;, + 142;3;-0.000000, 0.747179, 0.000000;;, + 143;3;-0.000000, 0.747179, 0.000000;;, + 144;3;-0.000000, 0.747179, 0.000000;;, + 145;3;-0.000000, 0.747179, 0.000000;;, + 146;3;-0.000000, 0.747179, 0.000000;;, + 147;3;-0.000000, 0.747179, 0.000000;;, + 148;3;-0.000000, 0.747179, 0.000000;;, + 149;3;-0.000000, 0.747179, 0.000000;;, + 150;3;-0.000000, 0.747179, 0.000000;;, + 151;3;-0.000000, 0.747179, 0.000000;;, + 152;3;-0.000000, 0.747179, 0.000000;;, + 153;3;-0.000000, 0.747179, 0.000000;;, + 154;3;-0.000000, 0.747179, 0.000000;;, + 155;3;-0.000000, 0.747179, 0.000000;;, + 156;3;-0.000000, 0.747179, 0.000000;;, + 157;3;-0.000000, 0.747179, 0.000000;;, + 158;3;-0.000000, 0.747179, 0.000000;;, + 159;3;-0.000000, 0.747179, 0.000000;;, + 160;3;-0.000000, 0.747179, 0.000000;;, + 161;3;-0.000000, 0.747179, 0.000000;;, + 162;3;-0.000000, 0.747179, 0.000000;;, + 163;3;-0.000000, 0.747179, 0.000000;;, + 164;3;-0.000000, 0.747179, 0.000000;;, + 165;3;-0.000000, 0.747179, 0.000000;;, + 166;3;-0.000000, 0.747179, 0.000000;;, + 167;3;-0.000000, 0.747179, 0.000000;;, + 168;3;-0.000000, 0.747179, 0.000000;;, + 169;3;-0.000000, 0.747179, 0.000000;;, + 170;3;-0.000000, 0.747179, 0.000000;;, + 171;3;-0.000000, 0.747179, 0.000000;;, + 172;3;-0.000000, 0.747179, 0.000000;;, + 173;3;-0.000000, 0.747179, 0.000000;;, + 174;3;-0.000000, 0.747179, 0.000000;;, + 175;3;-0.000000, 0.747179, 0.000000;;, + 176;3;-0.000000, 0.747179, 0.000000;;, + 177;3;-0.000000, 0.747179, 0.000000;;, + 178;3;-0.000000, 0.747179, 0.000000;;, + 179;3;-0.000000, 0.747179, 0.000000;;, + 180;3; 0.000000, 0.747180, 0.000000;;, + 181;3; 0.000000, 0.747180, 0.000000;;, + 182;3; 0.000000, 0.747180,-0.000000;;, + 183;3; 0.000000, 0.747180,-0.000000;;, + 184;3; 0.000000, 0.747179,-0.000000;;, + 185;3; 0.000000, 0.747180, 0.000000;;, + 186;3; 0.000000, 0.747180, 0.000000;;, + 187;3; 0.000000, 0.747180, 0.000000;;, + 188;3; 0.000000, 0.747179, 0.000000;;, + 189;3; 0.000000, 0.747180, 0.000000;;, + 190;3; 0.000000, 0.747180,-0.000000;;, + 191;3; 0.000000, 0.747179, 0.000000;;, + 192;3; 0.000000, 0.747180, 0.000000;;, + 193;3; 0.000000, 0.747179,-0.000000;;, + 194;3; 0.000000, 0.747179, 0.000000;;, + 195;3; 0.000000, 0.747179,-0.000000;;, + 196;3; 0.000000, 0.747180, 0.000000;;, + 197;3; 0.000000, 0.747179, 0.000000;;, + 198;3;-0.000000, 0.747179, 0.000000;;, + 199;3;-0.000000, 0.747179, 0.000000;;, + 200;3;-0.000000, 0.747179, 0.000000;;, + 201;3;-0.000000, 0.747179, 0.000000;;, + 202;3;-0.000000, 0.747179, 0.000000;;, + 203;3;-0.000000, 0.747179, 0.000000;;, + 204;3;-0.000000, 0.747179, 0.000000;;, + 205;3;-0.000000, 0.747179, 0.000000;;, + 206;3;-0.000000, 0.747179, 0.000000;;, + 207;3;-0.000000, 0.747179, 0.000000;;, + 208;3;-0.000000, 0.747179, 0.000000;;, + 209;3;-0.000000, 0.747179, 0.000000;;, + 210;3;-0.000000, 0.747179, 0.000000;;, + 211;3;-0.000000, 0.747179, 0.000000;;, + 212;3;-0.000000, 0.747179, 0.000000;;, + 213;3;-0.000000, 0.747179, 0.000000;;, + 214;3;-0.000000, 0.747179, 0.000000;;, + 215;3;-0.000000, 0.747179, 0.000000;;, + 216;3;-0.000000, 0.747179, 0.000000;;, + 217;3;-0.000000, 0.747179, 0.000000;;, + 218;3;-0.000000, 0.747179, 0.000000;;, + 219;3;-0.000000, 0.747179, 0.000000;;, + 220;3;-0.000000, 0.747179, 0.000000;;, + 221;3;-0.000000, 0.747179, 0.000000;;, + 222;3;-0.000000, 0.747179, 0.000000;;, + 223;3;-0.000000, 0.747179, 0.000000;;, + 224;3;-0.000000, 0.747179, 0.000000;;, + 225;3;-0.000000, 0.747179, 0.000000;;, + 226;3;-0.000000, 0.747179, 0.000000;;, + 227;3;-0.000000, 0.747179, 0.000000;;, + 228;3;-0.000000, 0.747179, 0.000000;;, + 229;3;-0.000000, 0.747179, 0.000000;;, + 230;3;-0.000000, 0.747179, 0.000000;;, + 231;3;-0.000000, 0.747179, 0.000000;;, + 232;3;-0.000000, 0.747179, 0.000000;;, + 233;3;-0.000000, 0.747179, 0.000000;;, + 234;3;-0.000000, 0.747179, 0.000000;;, + 235;3;-0.000000, 0.747179, 0.000000;;, + 236;3;-0.000000, 0.747179, 0.000000;;, + 237;3;-0.000000, 0.747179, 0.000000;;, + 238;3;-0.000000, 0.747179, 0.000000;;, + 239;3;-0.000000, 0.747179, 0.000000;;, + 240;3;-0.000000, 0.747179, 0.000000;;, + 241;3;-0.000000, 0.747179, 0.000000;;, + 242;3;-0.000000, 0.747179, 0.000000;;, + 243;3;-0.000000, 0.747179, 0.000000;;, + 244;3;-0.000000, 0.747179, 0.000000;;, + 245;3;-0.000000, 0.747179, 0.000000;;, + 246;3;-0.000000, 0.747179, 0.000000;;, + 247;3;-0.000000, 0.747179, 0.000000;;, + 248;3;-0.000000, 0.747179, 0.000000;;, + 249;3;-0.000000, 0.747179, 0.000000;;; + } + } + Animation { + {Armature_Bone_008} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 1;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 2;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 3;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 4;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 5;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 6;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 7;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 8;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 9;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 10;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 11;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 12;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 13;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 14;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 15;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 16;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 17;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 18;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 19;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 20;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 21;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 22;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 23;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 24;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 25;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 26;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 27;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 28;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 29;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 30;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 31;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 32;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 33;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 34;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 35;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 36;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 37;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 38;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 39;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 40;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 41;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 42;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 43;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 44;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 45;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 46;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 47;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 48;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 49;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 50;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 51;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 52;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 53;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 54;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 55;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 56;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 57;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 58;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 59;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 60;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 61;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 62;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 63;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 64;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 65;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 66;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 67;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 68;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 69;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 70;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 71;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 72;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 73;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 74;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 75;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 76;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 77;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 78;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 79;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 80;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 81;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 82;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 83;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 84;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 85;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 86;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 87;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 88;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 89;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 90;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 91;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 92;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 93;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 94;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 95;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 96;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 97;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 98;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 99;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 100;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 101;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 102;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 103;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 104;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 105;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 106;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 107;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 108;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 109;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 110;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 111;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 112;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 113;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 114;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 115;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 116;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 117;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 118;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 119;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 120;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 121;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 122;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 123;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 124;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 125;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 126;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 127;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 128;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 129;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 130;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 131;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 132;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 133;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 134;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 135;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 136;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 137;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 138;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 139;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 140;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 141;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 142;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 143;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 144;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 145;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 146;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 147;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 148;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 149;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 150;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 151;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 152;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 153;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 154;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 155;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 156;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 157;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 158;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 159;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 160;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 161;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 162;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 163;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 164;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 165;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 166;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 167;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 168;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 169;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 170;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 171;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 172;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 173;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 174;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 175;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 176;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 177;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 178;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 179;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 180;4;-0.995868, 0.009787, 0.000946, 0.063192;;, + 181;4;-0.987946, 0.009754, 0.000660, 0.091312;;, + 182;4;-0.975066, 0.009701, 0.000195, 0.137033;;, + 183;4;-0.958218, 0.009631,-0.000413, 0.196833;;, + 184;4;-0.939133, 0.009551,-0.001102, 0.264577;;, + 185;4;-0.920048, 0.009472,-0.001791, 0.332321;;, + 186;4;-0.903201, 0.009401,-0.002399, 0.392121;;, + 187;4;-0.890320, 0.009348,-0.002864, 0.437842;;, + 188;4;-0.882398, 0.009315,-0.003150, 0.465962;;, + 189;4;-0.879766, 0.009304,-0.003245, 0.475305;;, + 190;4;-0.879766, 0.009304,-0.003245, 0.475305;;, + 191;4;-0.879766, 0.009304,-0.003245, 0.475305;;, + 192;4;-0.879766, 0.009304,-0.003245, 0.475305;;, + 193;4;-0.879766, 0.009304,-0.003245, 0.475305;;, + 194;4;-0.879766, 0.009304,-0.003245, 0.475305;;, + 195;4;-0.890320, 0.009348,-0.002864, 0.437842;;, + 196;4;-0.920048, 0.009472,-0.001791, 0.332321;;, + 197;4;-0.958218, 0.009631,-0.000413, 0.196833;;, + 198;4;-0.987946, 0.009754, 0.000660, 0.091312;;, + 199;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 200;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 201;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 202;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 203;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 204;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 205;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 206;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 207;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 208;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 209;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 210;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 211;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 212;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 213;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 214;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 215;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 216;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 217;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 218;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 219;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 220;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 221;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 222;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 223;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 224;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 225;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 226;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 227;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 228;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 229;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 230;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 231;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 232;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 233;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 234;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 235;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 236;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 237;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 238;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 239;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 240;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 241;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 242;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 243;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 244;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 245;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 246;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 247;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 248;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 249;4;-0.998500, 0.009798, 0.001041, 0.053849;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3; 0.000000, 0.672674,-0.000000;;, + 1;3;-0.000000, 0.672674, 0.000000;;, + 2;3; 0.000000, 0.672674, 0.000000;;, + 3;3; 0.000000, 0.672674,-0.000000;;, + 4;3;-0.000000, 0.672674, 0.000000;;, + 5;3;-0.000000, 0.672674, 0.000000;;, + 6;3;-0.000000, 0.672674,-0.000000;;, + 7;3;-0.000000, 0.672674,-0.000000;;, + 8;3;-0.000000, 0.672674,-0.000000;;, + 9;3;-0.000000, 0.672674, 0.000000;;, + 10;3; 0.000000, 0.672674,-0.000000;;, + 11;3; 0.000000, 0.672674,-0.000000;;, + 12;3; 0.000000, 0.672674,-0.000000;;, + 13;3;-0.000000, 0.672674,-0.000000;;, + 14;3;-0.000000, 0.672674,-0.000000;;, + 15;3;-0.000000, 0.672674,-0.000000;;, + 16;3;-0.000000, 0.672674, 0.000000;;, + 17;3; 0.000000, 0.672674,-0.000000;;, + 18;3;-0.000000, 0.672674, 0.000000;;, + 19;3;-0.000000, 0.672674,-0.000000;;, + 20;3; 0.000000, 0.672674,-0.000000;;, + 21;3; 0.000000, 0.672674, 0.000000;;, + 22;3; 0.000000, 0.672674,-0.000000;;, + 23;3; 0.000000, 0.672674,-0.000000;;, + 24;3; 0.000000, 0.672674,-0.000000;;, + 25;3;-0.000000, 0.672674,-0.000000;;, + 26;3;-0.000000, 0.672674,-0.000000;;, + 27;3;-0.000000, 0.672674,-0.000000;;, + 28;3;-0.000000, 0.672674, 0.000000;;, + 29;3;-0.000000, 0.672674,-0.000000;;, + 30;3;-0.000001, 0.672674, 0.000000;;, + 31;3;-0.000000, 0.672674,-0.000000;;, + 32;3;-0.000000, 0.672674,-0.000000;;, + 33;3;-0.000000, 0.672674,-0.000000;;, + 34;3;-0.000000, 0.672674,-0.000000;;, + 35;3; 0.000000, 0.672674,-0.000000;;, + 36;3;-0.000000, 0.672674,-0.000000;;, + 37;3;-0.000001, 0.672674,-0.000000;;, + 38;3;-0.000000, 0.672674,-0.000000;;, + 39;3;-0.000000, 0.672674,-0.000000;;, + 40;3;-0.000000, 0.672674, 0.000000;;, + 41;3; 0.000000, 0.672674,-0.000000;;, + 42;3; 0.000000, 0.672674,-0.000000;;, + 43;3;-0.000000, 0.672674,-0.000000;;, + 44;3; 0.000000, 0.672674, 0.000000;;, + 45;3; 0.000000, 0.672674, 0.000000;;, + 46;3;-0.000000, 0.672674,-0.000000;;, + 47;3;-0.000000, 0.672674, 0.000000;;, + 48;3;-0.000000, 0.672674,-0.000000;;, + 49;3; 0.000000, 0.672674,-0.000000;;, + 50;3; 0.000000, 0.672674,-0.000000;;, + 51;3;-0.000000, 0.672674,-0.000000;;, + 52;3;-0.000000, 0.672674, 0.000000;;, + 53;3;-0.000000, 0.672674,-0.000000;;, + 54;3; 0.000000, 0.672674,-0.000000;;, + 55;3; 0.000000, 0.672675, 0.000000;;, + 56;3;-0.000000, 0.672674,-0.000000;;, + 57;3; 0.000000, 0.672674,-0.000000;;, + 58;3; 0.000000, 0.672674,-0.000000;;, + 59;3; 0.000000, 0.672674,-0.000000;;, + 60;3; 0.000000, 0.672674,-0.000000;;, + 61;3; 0.000000, 0.672674,-0.000000;;, + 62;3; 0.000000, 0.672674,-0.000000;;, + 63;3; 0.000000, 0.672674,-0.000000;;, + 64;3; 0.000000, 0.672674,-0.000000;;, + 65;3; 0.000000, 0.672674,-0.000000;;, + 66;3; 0.000000, 0.672674,-0.000000;;, + 67;3; 0.000000, 0.672674,-0.000000;;, + 68;3; 0.000000, 0.672674,-0.000000;;, + 69;3; 0.000000, 0.672674,-0.000000;;, + 70;3; 0.000000, 0.672674,-0.000000;;, + 71;3; 0.000000, 0.672674,-0.000000;;, + 72;3; 0.000000, 0.672674,-0.000000;;, + 73;3; 0.000000, 0.672674,-0.000000;;, + 74;3; 0.000000, 0.672674,-0.000000;;, + 75;3; 0.000000, 0.672674,-0.000000;;, + 76;3; 0.000000, 0.672674,-0.000000;;, + 77;3; 0.000000, 0.672674,-0.000000;;, + 78;3; 0.000000, 0.672674,-0.000000;;, + 79;3; 0.000000, 0.672674,-0.000000;;, + 80;3; 0.000000, 0.672674,-0.000000;;, + 81;3; 0.000000, 0.672674,-0.000000;;, + 82;3; 0.000000, 0.672674,-0.000000;;, + 83;3; 0.000000, 0.672674,-0.000000;;, + 84;3; 0.000000, 0.672674,-0.000000;;, + 85;3; 0.000000, 0.672674,-0.000000;;, + 86;3; 0.000000, 0.672674,-0.000000;;, + 87;3; 0.000000, 0.672674,-0.000000;;, + 88;3; 0.000000, 0.672674,-0.000000;;, + 89;3; 0.000000, 0.672674,-0.000000;;, + 90;3; 0.000000, 0.672674,-0.000000;;, + 91;3; 0.000000, 0.672674,-0.000000;;, + 92;3; 0.000000, 0.672674,-0.000000;;, + 93;3; 0.000000, 0.672674,-0.000000;;, + 94;3; 0.000000, 0.672674,-0.000000;;, + 95;3; 0.000000, 0.672674,-0.000000;;, + 96;3; 0.000000, 0.672674,-0.000000;;, + 97;3; 0.000000, 0.672674,-0.000000;;, + 98;3; 0.000000, 0.672674,-0.000000;;, + 99;3; 0.000000, 0.672674,-0.000000;;, + 100;3; 0.000000, 0.672674,-0.000000;;, + 101;3; 0.000000, 0.672674,-0.000000;;, + 102;3; 0.000000, 0.672674,-0.000000;;, + 103;3; 0.000000, 0.672674,-0.000000;;, + 104;3; 0.000000, 0.672674,-0.000000;;, + 105;3; 0.000000, 0.672674,-0.000000;;, + 106;3; 0.000000, 0.672674,-0.000000;;, + 107;3; 0.000000, 0.672674,-0.000000;;, + 108;3; 0.000000, 0.672674,-0.000000;;, + 109;3; 0.000000, 0.672674,-0.000000;;, + 110;3; 0.000000, 0.672674,-0.000000;;, + 111;3; 0.000000, 0.672674,-0.000000;;, + 112;3; 0.000000, 0.672674,-0.000000;;, + 113;3; 0.000000, 0.672674,-0.000000;;, + 114;3; 0.000000, 0.672674,-0.000000;;, + 115;3; 0.000000, 0.672674,-0.000000;;, + 116;3; 0.000000, 0.672674,-0.000000;;, + 117;3; 0.000000, 0.672674,-0.000000;;, + 118;3; 0.000000, 0.672674,-0.000000;;, + 119;3; 0.000000, 0.672674,-0.000000;;, + 120;3; 0.000000, 0.672674,-0.000000;;, + 121;3; 0.000000, 0.672674,-0.000000;;, + 122;3; 0.000000, 0.672674,-0.000000;;, + 123;3; 0.000000, 0.672674,-0.000000;;, + 124;3; 0.000000, 0.672674,-0.000000;;, + 125;3; 0.000000, 0.672674,-0.000000;;, + 126;3; 0.000000, 0.672674,-0.000000;;, + 127;3; 0.000000, 0.672674,-0.000000;;, + 128;3; 0.000000, 0.672674,-0.000000;;, + 129;3; 0.000000, 0.672674,-0.000000;;, + 130;3; 0.000000, 0.672674,-0.000000;;, + 131;3; 0.000000, 0.672674,-0.000000;;, + 132;3; 0.000000, 0.672674,-0.000000;;, + 133;3; 0.000000, 0.672674,-0.000000;;, + 134;3; 0.000000, 0.672674,-0.000000;;, + 135;3; 0.000000, 0.672674,-0.000000;;, + 136;3; 0.000000, 0.672674,-0.000000;;, + 137;3; 0.000000, 0.672674,-0.000000;;, + 138;3; 0.000000, 0.672674,-0.000000;;, + 139;3; 0.000000, 0.672674,-0.000000;;, + 140;3; 0.000000, 0.672674,-0.000000;;, + 141;3; 0.000000, 0.672674,-0.000000;;, + 142;3; 0.000000, 0.672674,-0.000000;;, + 143;3; 0.000000, 0.672674,-0.000000;;, + 144;3; 0.000000, 0.672674,-0.000000;;, + 145;3; 0.000000, 0.672674,-0.000000;;, + 146;3; 0.000000, 0.672674,-0.000000;;, + 147;3; 0.000000, 0.672674,-0.000000;;, + 148;3; 0.000000, 0.672674,-0.000000;;, + 149;3; 0.000000, 0.672674,-0.000000;;, + 150;3; 0.000000, 0.672674,-0.000000;;, + 151;3; 0.000000, 0.672674,-0.000000;;, + 152;3; 0.000000, 0.672674,-0.000000;;, + 153;3; 0.000000, 0.672674,-0.000000;;, + 154;3; 0.000000, 0.672674,-0.000000;;, + 155;3; 0.000000, 0.672674,-0.000000;;, + 156;3; 0.000000, 0.672674,-0.000000;;, + 157;3; 0.000000, 0.672674,-0.000000;;, + 158;3; 0.000000, 0.672674,-0.000000;;, + 159;3; 0.000000, 0.672674,-0.000000;;, + 160;3; 0.000000, 0.672674,-0.000000;;, + 161;3; 0.000000, 0.672674,-0.000000;;, + 162;3; 0.000000, 0.672674,-0.000000;;, + 163;3; 0.000000, 0.672674,-0.000000;;, + 164;3; 0.000000, 0.672674,-0.000000;;, + 165;3; 0.000000, 0.672674,-0.000000;;, + 166;3; 0.000000, 0.672674,-0.000000;;, + 167;3; 0.000000, 0.672674,-0.000000;;, + 168;3; 0.000000, 0.672674,-0.000000;;, + 169;3; 0.000000, 0.672674,-0.000000;;, + 170;3; 0.000000, 0.672674,-0.000000;;, + 171;3; 0.000000, 0.672674,-0.000000;;, + 172;3; 0.000000, 0.672674,-0.000000;;, + 173;3; 0.000000, 0.672674,-0.000000;;, + 174;3; 0.000000, 0.672674,-0.000000;;, + 175;3; 0.000000, 0.672674,-0.000000;;, + 176;3; 0.000000, 0.672674,-0.000000;;, + 177;3; 0.000000, 0.672674,-0.000000;;, + 178;3; 0.000000, 0.672674,-0.000000;;, + 179;3; 0.000000, 0.672674,-0.000000;;, + 180;3;-0.000000, 0.672674, 0.000000;;, + 181;3;-0.000000, 0.672674, 0.000000;;, + 182;3;-0.000000, 0.672674,-0.000000;;, + 183;3;-0.000000, 0.672674, 0.000000;;, + 184;3;-0.000000, 0.672674, 0.000000;;, + 185;3; 0.000000, 0.672674,-0.000000;;, + 186;3; 0.000000, 0.672674, 0.000000;;, + 187;3; 0.000000, 0.672675, 0.000000;;, + 188;3; 0.000000, 0.672674,-0.000000;;, + 189;3;-0.000000, 0.672674,-0.000000;;, + 190;3; 0.000000, 0.672674, 0.000000;;, + 191;3; 0.000000, 0.672674, 0.000000;;, + 192;3; 0.000001, 0.672674, 0.000000;;, + 193;3;-0.000000, 0.672674,-0.000000;;, + 194;3; 0.000000, 0.672674, 0.000000;;, + 195;3;-0.000000, 0.672674, 0.000000;;, + 196;3;-0.000000, 0.672674,-0.000000;;, + 197;3; 0.000000, 0.672674, 0.000000;;, + 198;3; 0.000000, 0.672674,-0.000000;;, + 199;3; 0.000000, 0.672674,-0.000000;;, + 200;3; 0.000000, 0.672674,-0.000000;;, + 201;3; 0.000000, 0.672674,-0.000000;;, + 202;3; 0.000000, 0.672674,-0.000000;;, + 203;3; 0.000000, 0.672674,-0.000000;;, + 204;3; 0.000000, 0.672674,-0.000000;;, + 205;3; 0.000000, 0.672674,-0.000000;;, + 206;3; 0.000000, 0.672674,-0.000000;;, + 207;3; 0.000000, 0.672674,-0.000000;;, + 208;3; 0.000000, 0.672674,-0.000000;;, + 209;3; 0.000000, 0.672674,-0.000000;;, + 210;3; 0.000000, 0.672674,-0.000000;;, + 211;3; 0.000000, 0.672674,-0.000000;;, + 212;3; 0.000000, 0.672674,-0.000000;;, + 213;3; 0.000000, 0.672674,-0.000000;;, + 214;3; 0.000000, 0.672674,-0.000000;;, + 215;3; 0.000000, 0.672674,-0.000000;;, + 216;3; 0.000000, 0.672674,-0.000000;;, + 217;3; 0.000000, 0.672674,-0.000000;;, + 218;3; 0.000000, 0.672674,-0.000000;;, + 219;3; 0.000000, 0.672674,-0.000000;;, + 220;3; 0.000000, 0.672674,-0.000000;;, + 221;3; 0.000000, 0.672674,-0.000000;;, + 222;3; 0.000000, 0.672674,-0.000000;;, + 223;3; 0.000000, 0.672674,-0.000000;;, + 224;3; 0.000000, 0.672674,-0.000000;;, + 225;3; 0.000000, 0.672674,-0.000000;;, + 226;3; 0.000000, 0.672674,-0.000000;;, + 227;3; 0.000000, 0.672674,-0.000000;;, + 228;3; 0.000000, 0.672674,-0.000000;;, + 229;3; 0.000000, 0.672674,-0.000000;;, + 230;3; 0.000000, 0.672674,-0.000000;;, + 231;3; 0.000000, 0.672674,-0.000000;;, + 232;3; 0.000000, 0.672674,-0.000000;;, + 233;3; 0.000000, 0.672674,-0.000000;;, + 234;3; 0.000000, 0.672674,-0.000000;;, + 235;3; 0.000000, 0.672674,-0.000000;;, + 236;3; 0.000000, 0.672674,-0.000000;;, + 237;3; 0.000000, 0.672674,-0.000000;;, + 238;3; 0.000000, 0.672674,-0.000000;;, + 239;3; 0.000000, 0.672674,-0.000000;;, + 240;3; 0.000000, 0.672674,-0.000000;;, + 241;3; 0.000000, 0.672674,-0.000000;;, + 242;3; 0.000000, 0.672674,-0.000000;;, + 243;3; 0.000000, 0.672674,-0.000000;;, + 244;3; 0.000000, 0.672674,-0.000000;;, + 245;3; 0.000000, 0.672674,-0.000000;;, + 246;3; 0.000000, 0.672674,-0.000000;;, + 247;3; 0.000000, 0.672674,-0.000000;;, + 248;3; 0.000000, 0.672674,-0.000000;;, + 249;3; 0.000000, 0.672674,-0.000000;;; + } + } + Animation { + {Armature_Bone_009} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 1;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 2;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 3;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 4;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 5;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 6;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 7;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 8;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 9;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 10;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 11;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 12;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 13;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 14;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 15;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 16;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 17;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 18;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 19;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 20;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 21;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 22;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 23;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 24;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 25;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 26;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 27;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 28;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 29;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 30;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 31;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 32;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 33;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 34;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 35;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 36;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 37;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 38;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 39;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 40;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 41;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 42;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 43;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 44;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 45;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 46;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 47;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 48;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 49;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 50;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 51;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 52;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 53;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 54;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 55;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 56;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 57;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 58;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 59;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 60;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 61;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 62;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 63;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 64;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 65;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 66;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 67;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 68;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 69;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 70;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 71;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 72;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 73;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 74;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 75;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 76;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 77;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 78;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 79;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 80;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 81;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 82;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 83;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 84;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 85;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 86;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 87;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 88;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 89;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 90;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 91;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 92;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 93;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 94;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 95;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 96;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 97;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 98;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 99;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 100;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 101;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 102;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 103;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 104;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 105;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 106;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 107;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 108;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 109;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 110;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 111;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 112;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 113;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 114;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 115;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 116;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 117;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 118;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 119;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 120;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 121;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 122;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 123;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 124;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 125;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 126;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 127;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 128;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 129;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 130;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 131;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 132;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 133;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 134;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 135;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 136;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 137;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 138;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 139;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 140;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 141;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 142;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 143;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 144;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 145;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 146;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 147;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 148;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 149;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 150;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 151;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 152;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 153;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 154;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 155;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 156;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 157;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 158;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 159;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 160;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 161;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 162;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 163;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 164;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 165;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 166;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 167;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 168;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 169;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 170;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 171;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 172;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 173;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 174;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 175;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 176;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 177;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 178;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 179;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 180;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 181;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 182;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 183;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 184;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 185;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 186;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 187;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 188;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 189;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 190;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 191;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 192;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 193;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 194;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 195;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 196;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 197;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 198;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 199;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 200;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 201;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 202;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 203;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 204;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 205;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 206;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 207;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 208;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 209;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 210;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 211;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 212;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 213;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 214;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 215;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 216;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 217;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 218;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 219;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 220;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 221;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 222;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 223;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 224;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 225;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 226;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 227;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 228;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 229;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 230;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 231;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 232;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 233;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 234;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 235;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 236;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 237;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 238;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 239;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 240;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 241;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 242;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 243;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 244;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 245;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 246;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 247;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 248;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 249;4;-0.361836, 0.000000,-0.000000, 0.932242;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3; 0.000000, 0.826434, 0.000000;;, + 1;3; 0.000000, 0.826434, 0.000000;;, + 2;3; 0.000000, 0.826434, 0.000000;;, + 3;3; 0.000000, 0.826434, 0.000000;;, + 4;3; 0.000000, 0.826434, 0.000000;;, + 5;3; 0.000000, 0.826434, 0.000000;;, + 6;3; 0.000000, 0.826434, 0.000000;;, + 7;3; 0.000000, 0.826434, 0.000000;;, + 8;3; 0.000000, 0.826434, 0.000000;;, + 9;3; 0.000000, 0.826434, 0.000000;;, + 10;3; 0.000000, 0.826434, 0.000000;;, + 11;3; 0.000000, 0.826434, 0.000000;;, + 12;3; 0.000000, 0.826434, 0.000000;;, + 13;3; 0.000000, 0.826434, 0.000000;;, + 14;3; 0.000000, 0.826434, 0.000000;;, + 15;3; 0.000000, 0.826434, 0.000000;;, + 16;3; 0.000000, 0.826434, 0.000000;;, + 17;3; 0.000000, 0.826434, 0.000000;;, + 18;3; 0.000000, 0.826434, 0.000000;;, + 19;3; 0.000000, 0.826434, 0.000000;;, + 20;3; 0.000000, 0.826434, 0.000000;;, + 21;3; 0.000000, 0.826434, 0.000000;;, + 22;3; 0.000000, 0.826434, 0.000000;;, + 23;3; 0.000000, 0.826434, 0.000000;;, + 24;3; 0.000000, 0.826434, 0.000000;;, + 25;3; 0.000000, 0.826434, 0.000000;;, + 26;3; 0.000000, 0.826434, 0.000000;;, + 27;3; 0.000000, 0.826434, 0.000000;;, + 28;3; 0.000000, 0.826434, 0.000000;;, + 29;3; 0.000000, 0.826434, 0.000000;;, + 30;3; 0.000000, 0.826434, 0.000000;;, + 31;3; 0.000000, 0.826434, 0.000000;;, + 32;3; 0.000000, 0.826434, 0.000000;;, + 33;3; 0.000000, 0.826434, 0.000000;;, + 34;3; 0.000000, 0.826434, 0.000000;;, + 35;3; 0.000000, 0.826434, 0.000000;;, + 36;3; 0.000000, 0.826434, 0.000000;;, + 37;3; 0.000000, 0.826434, 0.000000;;, + 38;3; 0.000000, 0.826434, 0.000000;;, + 39;3; 0.000000, 0.826434, 0.000000;;, + 40;3; 0.000000, 0.826434, 0.000000;;, + 41;3; 0.000000, 0.826434, 0.000000;;, + 42;3; 0.000000, 0.826434, 0.000000;;, + 43;3; 0.000000, 0.826434, 0.000000;;, + 44;3; 0.000000, 0.826434, 0.000000;;, + 45;3; 0.000000, 0.826434, 0.000000;;, + 46;3; 0.000000, 0.826434, 0.000000;;, + 47;3; 0.000000, 0.826434, 0.000000;;, + 48;3; 0.000000, 0.826434, 0.000000;;, + 49;3; 0.000000, 0.826434, 0.000000;;, + 50;3; 0.000000, 0.826434, 0.000000;;, + 51;3; 0.000000, 0.826434, 0.000000;;, + 52;3; 0.000000, 0.826434, 0.000000;;, + 53;3; 0.000000, 0.826434, 0.000000;;, + 54;3; 0.000000, 0.826434, 0.000000;;, + 55;3; 0.000000, 0.826434, 0.000000;;, + 56;3; 0.000000, 0.826434, 0.000000;;, + 57;3; 0.000000, 0.826434, 0.000000;;, + 58;3; 0.000000, 0.826434, 0.000000;;, + 59;3; 0.000000, 0.826434, 0.000000;;, + 60;3; 0.000000, 0.826434, 0.000000;;, + 61;3; 0.000000, 0.826434, 0.000000;;, + 62;3; 0.000000, 0.826434, 0.000000;;, + 63;3; 0.000000, 0.826434, 0.000000;;, + 64;3; 0.000000, 0.826434, 0.000000;;, + 65;3; 0.000000, 0.826434, 0.000000;;, + 66;3; 0.000000, 0.826434, 0.000000;;, + 67;3; 0.000000, 0.826434, 0.000000;;, + 68;3; 0.000000, 0.826434, 0.000000;;, + 69;3; 0.000000, 0.826434, 0.000000;;, + 70;3; 0.000000, 0.826434, 0.000000;;, + 71;3; 0.000000, 0.826434, 0.000000;;, + 72;3; 0.000000, 0.826434, 0.000000;;, + 73;3; 0.000000, 0.826434, 0.000000;;, + 74;3; 0.000000, 0.826434, 0.000000;;, + 75;3; 0.000000, 0.826434, 0.000000;;, + 76;3; 0.000000, 0.826434, 0.000000;;, + 77;3; 0.000000, 0.826434, 0.000000;;, + 78;3; 0.000000, 0.826434, 0.000000;;, + 79;3; 0.000000, 0.826434, 0.000000;;, + 80;3; 0.000000, 0.826434, 0.000000;;, + 81;3; 0.000000, 0.826434, 0.000000;;, + 82;3; 0.000000, 0.826434, 0.000000;;, + 83;3; 0.000000, 0.826434, 0.000000;;, + 84;3; 0.000000, 0.826434, 0.000000;;, + 85;3; 0.000000, 0.826434, 0.000000;;, + 86;3; 0.000000, 0.826434, 0.000000;;, + 87;3; 0.000000, 0.826434, 0.000000;;, + 88;3; 0.000000, 0.826434, 0.000000;;, + 89;3; 0.000000, 0.826434, 0.000000;;, + 90;3; 0.000000, 0.826434, 0.000000;;, + 91;3; 0.000000, 0.826434, 0.000000;;, + 92;3; 0.000000, 0.826434, 0.000000;;, + 93;3; 0.000000, 0.826434, 0.000000;;, + 94;3; 0.000000, 0.826434, 0.000000;;, + 95;3; 0.000000, 0.826434, 0.000000;;, + 96;3; 0.000000, 0.826434, 0.000000;;, + 97;3; 0.000000, 0.826434, 0.000000;;, + 98;3; 0.000000, 0.826434, 0.000000;;, + 99;3; 0.000000, 0.826434, 0.000000;;, + 100;3; 0.000000, 0.826434, 0.000000;;, + 101;3; 0.000000, 0.826434, 0.000000;;, + 102;3; 0.000000, 0.826434, 0.000000;;, + 103;3; 0.000000, 0.826434, 0.000000;;, + 104;3; 0.000000, 0.826434, 0.000000;;, + 105;3; 0.000000, 0.826434, 0.000000;;, + 106;3; 0.000000, 0.826434, 0.000000;;, + 107;3; 0.000000, 0.826434, 0.000000;;, + 108;3; 0.000000, 0.826434, 0.000000;;, + 109;3; 0.000000, 0.826434, 0.000000;;, + 110;3; 0.000000, 0.826434, 0.000000;;, + 111;3; 0.000000, 0.826434, 0.000000;;, + 112;3; 0.000000, 0.826434, 0.000000;;, + 113;3; 0.000000, 0.826434, 0.000000;;, + 114;3; 0.000000, 0.826434, 0.000000;;, + 115;3; 0.000000, 0.826434, 0.000000;;, + 116;3; 0.000000, 0.826434, 0.000000;;, + 117;3; 0.000000, 0.826434, 0.000000;;, + 118;3; 0.000000, 0.826434, 0.000000;;, + 119;3; 0.000000, 0.826434, 0.000000;;, + 120;3; 0.000000, 0.826434, 0.000000;;, + 121;3; 0.000000, 0.826434, 0.000000;;, + 122;3; 0.000000, 0.826434, 0.000000;;, + 123;3; 0.000000, 0.826434, 0.000000;;, + 124;3; 0.000000, 0.826434, 0.000000;;, + 125;3; 0.000000, 0.826434, 0.000000;;, + 126;3; 0.000000, 0.826434, 0.000000;;, + 127;3; 0.000000, 0.826434, 0.000000;;, + 128;3; 0.000000, 0.826434, 0.000000;;, + 129;3; 0.000000, 0.826434, 0.000000;;, + 130;3; 0.000000, 0.826434, 0.000000;;, + 131;3; 0.000000, 0.826434, 0.000000;;, + 132;3; 0.000000, 0.826434, 0.000000;;, + 133;3; 0.000000, 0.826434, 0.000000;;, + 134;3; 0.000000, 0.826434, 0.000000;;, + 135;3; 0.000000, 0.826434, 0.000000;;, + 136;3; 0.000000, 0.826434, 0.000000;;, + 137;3; 0.000000, 0.826434, 0.000000;;, + 138;3; 0.000000, 0.826434, 0.000000;;, + 139;3; 0.000000, 0.826434, 0.000000;;, + 140;3; 0.000000, 0.826434, 0.000000;;, + 141;3; 0.000000, 0.826434, 0.000000;;, + 142;3; 0.000000, 0.826434, 0.000000;;, + 143;3; 0.000000, 0.826434, 0.000000;;, + 144;3; 0.000000, 0.826434, 0.000000;;, + 145;3; 0.000000, 0.826434, 0.000000;;, + 146;3; 0.000000, 0.826434, 0.000000;;, + 147;3; 0.000000, 0.826434, 0.000000;;, + 148;3; 0.000000, 0.826434, 0.000000;;, + 149;3; 0.000000, 0.826434, 0.000000;;, + 150;3; 0.000000, 0.826434, 0.000000;;, + 151;3; 0.000000, 0.826434, 0.000000;;, + 152;3; 0.000000, 0.826434, 0.000000;;, + 153;3; 0.000000, 0.826434, 0.000000;;, + 154;3; 0.000000, 0.826434, 0.000000;;, + 155;3; 0.000000, 0.826434, 0.000000;;, + 156;3; 0.000000, 0.826434, 0.000000;;, + 157;3; 0.000000, 0.826434, 0.000000;;, + 158;3; 0.000000, 0.826434, 0.000000;;, + 159;3; 0.000000, 0.826434, 0.000000;;, + 160;3; 0.000000, 0.826434, 0.000000;;, + 161;3; 0.000000, 0.826434, 0.000000;;, + 162;3; 0.000000, 0.826434, 0.000000;;, + 163;3; 0.000000, 0.826434, 0.000000;;, + 164;3; 0.000000, 0.826434, 0.000000;;, + 165;3; 0.000000, 0.826434, 0.000000;;, + 166;3; 0.000000, 0.826434, 0.000000;;, + 167;3; 0.000000, 0.826434, 0.000000;;, + 168;3; 0.000000, 0.826434, 0.000000;;, + 169;3; 0.000000, 0.826434, 0.000000;;, + 170;3; 0.000000, 0.826434, 0.000000;;, + 171;3; 0.000000, 0.826434, 0.000000;;, + 172;3; 0.000000, 0.826434, 0.000000;;, + 173;3; 0.000000, 0.826434, 0.000000;;, + 174;3; 0.000000, 0.826434, 0.000000;;, + 175;3; 0.000000, 0.826434, 0.000000;;, + 176;3; 0.000000, 0.826434, 0.000000;;, + 177;3; 0.000000, 0.826434, 0.000000;;, + 178;3; 0.000000, 0.826434, 0.000000;;, + 179;3; 0.000000, 0.826434, 0.000000;;, + 180;3; 0.000000, 0.826434, 0.000000;;, + 181;3; 0.000000, 0.826434, 0.000000;;, + 182;3; 0.000000, 0.826434, 0.000000;;, + 183;3; 0.000000, 0.826434, 0.000000;;, + 184;3; 0.000000, 0.826434, 0.000000;;, + 185;3; 0.000000, 0.826434, 0.000000;;, + 186;3;-0.000000, 0.826434,-0.000000;;, + 187;3;-0.000000, 0.826434,-0.000000;;, + 188;3;-0.000000, 0.826434, 0.000000;;, + 189;3;-0.000000, 0.826434, 0.000000;;, + 190;3;-0.000000, 0.826434,-0.000000;;, + 191;3; 0.000000, 0.826434, 0.000000;;, + 192;3; 0.000000, 0.826434, 0.000000;;, + 193;3; 0.000000, 0.826434, 0.000000;;, + 194;3; 0.000000, 0.826434,-0.000000;;, + 195;3; 0.000000, 0.826434,-0.000000;;, + 196;3; 0.000000, 0.826434, 0.000000;;, + 197;3; 0.000000, 0.826434,-0.000000;;, + 198;3; 0.000000, 0.826434,-0.000000;;, + 199;3; 0.000000, 0.826434, 0.000000;;, + 200;3; 0.000000, 0.826434, 0.000000;;, + 201;3; 0.000000, 0.826434, 0.000000;;, + 202;3; 0.000000, 0.826434, 0.000000;;, + 203;3; 0.000000, 0.826434, 0.000000;;, + 204;3; 0.000000, 0.826434, 0.000000;;, + 205;3; 0.000000, 0.826434, 0.000000;;, + 206;3; 0.000000, 0.826434, 0.000000;;, + 207;3; 0.000000, 0.826434, 0.000000;;, + 208;3; 0.000000, 0.826434, 0.000000;;, + 209;3; 0.000000, 0.826434, 0.000000;;, + 210;3; 0.000000, 0.826434, 0.000000;;, + 211;3; 0.000000, 0.826434, 0.000000;;, + 212;3; 0.000000, 0.826434, 0.000000;;, + 213;3; 0.000000, 0.826434, 0.000000;;, + 214;3; 0.000000, 0.826434, 0.000000;;, + 215;3; 0.000000, 0.826434, 0.000000;;, + 216;3; 0.000000, 0.826434, 0.000000;;, + 217;3; 0.000000, 0.826434, 0.000000;;, + 218;3; 0.000000, 0.826434, 0.000000;;, + 219;3; 0.000000, 0.826434, 0.000000;;, + 220;3; 0.000000, 0.826434, 0.000000;;, + 221;3; 0.000000, 0.826434, 0.000000;;, + 222;3; 0.000000, 0.826434, 0.000000;;, + 223;3; 0.000000, 0.826434, 0.000000;;, + 224;3; 0.000000, 0.826434, 0.000000;;, + 225;3; 0.000000, 0.826434, 0.000000;;, + 226;3; 0.000000, 0.826434, 0.000000;;, + 227;3; 0.000000, 0.826434, 0.000000;;, + 228;3; 0.000000, 0.826434, 0.000000;;, + 229;3; 0.000000, 0.826434, 0.000000;;, + 230;3; 0.000000, 0.826434, 0.000000;;, + 231;3; 0.000000, 0.826434, 0.000000;;, + 232;3; 0.000000, 0.826434, 0.000000;;, + 233;3; 0.000000, 0.826434, 0.000000;;, + 234;3; 0.000000, 0.826434, 0.000000;;, + 235;3; 0.000000, 0.826434, 0.000000;;, + 236;3; 0.000000, 0.826434, 0.000000;;, + 237;3; 0.000000, 0.826434, 0.000000;;, + 238;3; 0.000000, 0.826434, 0.000000;;, + 239;3; 0.000000, 0.826434, 0.000000;;, + 240;3; 0.000000, 0.826434, 0.000000;;, + 241;3; 0.000000, 0.826434, 0.000000;;, + 242;3; 0.000000, 0.826434, 0.000000;;, + 243;3; 0.000000, 0.826434, 0.000000;;, + 244;3; 0.000000, 0.826434, 0.000000;;, + 245;3; 0.000000, 0.826434, 0.000000;;, + 246;3; 0.000000, 0.826434, 0.000000;;, + 247;3; 0.000000, 0.826434, 0.000000;;, + 248;3; 0.000000, 0.826434, 0.000000;;, + 249;3; 0.000000, 0.826434, 0.000000;;; + } + } + Animation { + {Armature_Bone_029} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 1;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 2;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 3;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 4;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 5;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 6;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 7;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 8;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 9;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 10;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 11;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 12;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 13;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 14;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 15;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 16;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 17;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 18;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 19;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 20;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 21;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 22;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 23;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 24;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 25;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 26;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 27;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 28;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 29;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 30;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 31;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 32;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 33;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 34;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 35;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 36;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 37;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 38;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 39;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 40;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 41;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 42;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 43;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 44;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 45;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 46;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 47;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 48;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 49;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 50;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 51;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 52;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 53;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 54;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 55;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 56;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 57;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 58;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 59;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 60;4;-0.988993, 0.075798,-0.009673,-0.126694;;, + 61;4;-0.989001, 0.075642,-0.009541,-0.126701;;, + 62;4;-0.989014, 0.075380,-0.009320,-0.126713;;, + 63;4;-0.989033, 0.075013,-0.009009,-0.126730;;, + 64;4;-0.989057, 0.074540,-0.008609,-0.126752;;, + 65;4;-0.989086, 0.073962,-0.008120,-0.126778;;, + 66;4;-0.989121, 0.073279,-0.007543,-0.126810;;, + 67;4;-0.989161, 0.072494,-0.006880,-0.126847;;, + 68;4;-0.989205, 0.071610,-0.006132,-0.126888;;, + 69;4;-0.989255, 0.070630,-0.005303,-0.126935;;, + 70;4;-0.989309, 0.069558,-0.004397,-0.126986;;, + 71;4;-0.989366, 0.068400,-0.003417,-0.127041;;, + 72;4;-0.989428, 0.067161,-0.002370,-0.127101;;, + 73;4;-0.989493, 0.065850,-0.001262,-0.127165;;, + 74;4;-0.989561, 0.064475,-0.000099,-0.127233;;, + 75;4;-0.989632, 0.063044, 0.001111,-0.127304;;, + 76;4;-0.989704, 0.061568, 0.002359,-0.127378;;, + 77;4;-0.989778, 0.060057, 0.003637,-0.127455;;, + 78;4;-0.989852, 0.058522, 0.004934,-0.127535;;, + 79;4;-0.989926, 0.056976, 0.006241,-0.127616;;, + 80;4;-0.990000, 0.055430, 0.007548,-0.127698;;, + 81;4;-0.990072, 0.053896, 0.008846,-0.127781;;, + 82;4;-0.990143, 0.052385, 0.010123,-0.127865;;, + 83;4;-0.990211, 0.050909, 0.011371,-0.127948;;, + 84;4;-0.990276, 0.049478, 0.012581,-0.128031;;, + 85;4;-0.990338, 0.048103, 0.013744,-0.128113;;, + 86;4;-0.990396, 0.046792, 0.014853,-0.128194;;, + 87;4;-0.990449, 0.045553, 0.015900,-0.128272;;, + 88;4;-0.990498, 0.044395, 0.016879,-0.128349;;, + 89;4;-0.990542, 0.043323, 0.017785,-0.128423;;, + 90;4;-0.990580, 0.042342, 0.018614,-0.128494;;, + 91;4;-0.990613, 0.041458, 0.019362,-0.128562;;, + 92;4;-0.990640, 0.040674, 0.020025,-0.128627;;, + 93;4;-0.990661, 0.039991, 0.020602,-0.128689;;, + 94;4;-0.990677, 0.039413, 0.021091,-0.128747;;, + 95;4;-0.990686, 0.038940, 0.021491,-0.128802;;, + 96;4;-0.990690, 0.038573, 0.021802,-0.128853;;, + 97;4;-0.990688, 0.038311, 0.022023,-0.128900;;, + 98;4;-0.990680, 0.038155, 0.022155,-0.128944;;, + 99;4;-0.990666, 0.038103, 0.022199,-0.128984;;, + 100;4;-0.990381, 0.039510, 0.020997,-0.128905;;, + 101;4;-0.989533, 0.043882, 0.017266,-0.128581;;, + 102;4;-0.988103, 0.051309, 0.010927,-0.128004;;, + 103;4;-0.986127, 0.061601, 0.002142,-0.127189;;, + 104;4;-0.983714, 0.074201,-0.008614,-0.126181;;, + 105;4;-0.981031, 0.088219,-0.020579,-0.125055;;, + 106;4;-0.978276, 0.102621,-0.032873,-0.123895;;, + 107;4;-0.975625, 0.116479,-0.044701,-0.122778;;, + 108;4;-0.973205, 0.129127,-0.055498,-0.121760;;, + 109;4;-0.971087, 0.140192,-0.064942,-0.120871;;, + 110;4;-0.969159, 0.150606,-0.074100,-0.120059;;, + 111;4;-0.967282, 0.161397,-0.084078,-0.119258;;, + 112;4;-0.965442, 0.172477,-0.094682,-0.118465;;, + 113;4;-0.963621, 0.183688,-0.105568,-0.117675;;, + 114;4;-0.961789, 0.194806,-0.116256,-0.116879;;, + 115;4;-0.959913, 0.205586,-0.126209,-0.116071;;, + 116;4;-0.957965, 0.215815,-0.134966,-0.115243;;, + 117;4;-0.955928, 0.225360,-0.142239,-0.114392;;, + 118;4;-0.953796, 0.234175,-0.147929,-0.113515;;, + 119;4;-0.951571, 0.242281,-0.152083,-0.112615;;, + 120;4;-0.948958, 0.251248,-0.152162,-0.111800;;, + 121;4;-0.945681, 0.262514,-0.145470,-0.111192;;, + 122;4;-0.941843, 0.275725,-0.132340,-0.110802;;, + 123;4;-0.937651, 0.290171,-0.113916,-0.110625;;, + 124;4;-0.933412, 0.304787,-0.092274,-0.110628;;, + 125;4;-0.929488, 0.318325,-0.070157,-0.110759;;, + 126;4;-0.926209, 0.329642,-0.050354,-0.110948;;, + 127;4;-0.923801, 0.337959,-0.035066,-0.111132;;, + 128;4;-0.922363, 0.342924,-0.025597,-0.111263;;, + 129;4;-0.921895, 0.344540,-0.022436,-0.111310;;, + 130;4;-0.923420, 0.338017,-0.020833,-0.111702;;, + 131;4;-0.928008, 0.318342,-0.016107,-0.112881;;, + 132;4;-0.935468, 0.286251,-0.008651,-0.114798;;, + 133;4;-0.945226, 0.244095, 0.000687,-0.117306;;, + 134;4;-0.956280, 0.196042, 0.010591,-0.120147;;, + 135;4;-0.967335, 0.147541, 0.019479,-0.122988;;, + 136;4;-0.977093, 0.104087, 0.025872,-0.125495;;, + 137;4;-0.984553, 0.069965, 0.028720,-0.127413;;, + 138;4;-0.989141, 0.047676, 0.027516,-0.128592;;, + 139;4;-0.990666, 0.038103, 0.022199,-0.128984;;, + 140;4;-0.989556, 0.041570, 0.012021,-0.128527;;, + 141;4;-0.986156, 0.058863,-0.004070,-0.127124;;, + 142;4;-0.981049, 0.086461,-0.024569,-0.125014;;, + 143;4;-0.975630, 0.115958,-0.045882,-0.122766;;, + 144;4;-0.971087, 0.140192,-0.064942,-0.120871;;, + 145;4;-0.967282, 0.161397,-0.084078,-0.119258;;, + 146;4;-0.963621, 0.183688,-0.105568,-0.117675;;, + 147;4;-0.959913, 0.205586,-0.126209,-0.116071;;, + 148;4;-0.955928, 0.225360,-0.142239,-0.114392;;, + 149;4;-0.951571, 0.242281,-0.152083,-0.112615;;, + 150;4;-0.945681, 0.262514,-0.145470,-0.111192;;, + 151;4;-0.937651, 0.290171,-0.113916,-0.110625;;, + 152;4;-0.929488, 0.318325,-0.070157,-0.110759;;, + 153;4;-0.923801, 0.337959,-0.035066,-0.111132;;, + 154;4;-0.921895, 0.344540,-0.022436,-0.111310;;, + 155;4;-0.927996, 0.317417,-0.018204,-0.112908;;, + 156;4;-0.945186, 0.240971,-0.006399,-0.117397;;, + 157;4;-0.967272, 0.142678, 0.008447,-0.123129;;, + 158;4;-0.984500, 0.065860, 0.019406,-0.127532;;, + 159;4;-0.990666, 0.038103, 0.022199,-0.128984;;, + 160;4;-0.990734, 0.037638, 0.020496,-0.128828;;, + 161;4;-0.990791, 0.037695, 0.018666,-0.128695;;, + 162;4;-0.990836, 0.038279, 0.016718,-0.128583;;, + 163;4;-0.990866, 0.039387, 0.014664,-0.128492;;, + 164;4;-0.990880, 0.041002, 0.012519,-0.128419;;, + 165;4;-0.990878, 0.043089, 0.010308,-0.128362;;, + 166;4;-0.990856, 0.045597, 0.008059,-0.128318;;, + 167;4;-0.990815, 0.048456, 0.005807,-0.128281;;, + 168;4;-0.990753, 0.051579, 0.003588,-0.128247;;, + 169;4;-0.990671, 0.054862, 0.001444,-0.128210;;, + 170;4;-0.990569, 0.058196,-0.000585,-0.128163;;, + 171;4;-0.990448, 0.061468,-0.002463,-0.128103;;, + 172;4;-0.990309, 0.064573,-0.004158,-0.128023;;, + 173;4;-0.990153, 0.067417,-0.005646,-0.127919;;, + 174;4;-0.989984, 0.069922,-0.006909,-0.127789;;, + 175;4;-0.989802, 0.072028,-0.007937,-0.127630;;, + 176;4;-0.989610, 0.073693,-0.008728,-0.127441;;, + 177;4;-0.989410, 0.074892,-0.009284,-0.127221;;, + 178;4;-0.989203, 0.075611,-0.009610,-0.126971;;, + 179;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 180;4;-0.986083, 0.079754, 0.000101,-0.124537;;, + 181;4;-0.977768, 0.091301, 0.029737,-0.118645;;, + 182;4;-0.964390, 0.109598, 0.078133,-0.109258;;, + 183;4;-0.946970, 0.132664, 0.141816,-0.097088;;, + 184;4;-0.927284, 0.157384, 0.214578,-0.083366;;, + 185;4;-0.907628, 0.179982, 0.288277,-0.069686;;, + 186;4;-0.890294, 0.196893, 0.354672,-0.057633;;, + 187;4;-0.877051, 0.205560, 0.407313,-0.048431;;, + 188;4;-0.868910, 0.204713, 0.442412,-0.042777;;, + 189;4;-0.866206, 0.194155, 0.458604,-0.040900;;, + 190;4;-0.874856, 0.162582, 0.444607,-0.047644;;, + 191;4;-0.899688, 0.101149, 0.389390,-0.066848;;, + 192;4;-0.932828, 0.025866, 0.307044,-0.092059;;, + 193;4;-0.961083,-0.037592, 0.225849,-0.112772;;, + 194;4;-0.975559,-0.072609, 0.167655,-0.122084;;, + 195;4;-0.981508,-0.073185, 0.120643,-0.124590;;, + 196;4;-0.985748,-0.038554, 0.070473,-0.126130;;, + 197;4;-0.988051, 0.015005, 0.026688,-0.126723;;, + 198;4;-0.988867, 0.059553,-0.000984,-0.126754;;, + 199;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 200;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 201;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 202;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 203;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 204;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 205;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 206;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 207;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 208;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 209;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 210;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 211;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 212;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 213;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 214;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 215;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 216;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 217;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 218;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 219;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 220;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 221;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 222;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 223;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 224;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 225;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 226;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 227;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 228;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 229;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 230;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 231;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 232;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 233;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 234;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 235;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 236;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 237;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 238;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 239;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 240;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 241;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 242;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 243;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 244;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 245;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 246;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 247;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 248;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 249;4;-0.988990, 0.075850,-0.009717,-0.126692;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3; 0.000000, 0.868658, 0.000000;;, + 1;3; 0.000000, 0.868658, 0.000000;;, + 2;3; 0.000000, 0.868658, 0.000000;;, + 3;3; 0.000000, 0.868658, 0.000000;;, + 4;3; 0.000000, 0.868658, 0.000000;;, + 5;3; 0.000000, 0.868658, 0.000000;;, + 6;3; 0.000000, 0.868658, 0.000000;;, + 7;3; 0.000000, 0.868658, 0.000000;;, + 8;3; 0.000000, 0.868658, 0.000000;;, + 9;3; 0.000000, 0.868658, 0.000000;;, + 10;3; 0.000000, 0.868658, 0.000000;;, + 11;3; 0.000000, 0.868658, 0.000000;;, + 12;3; 0.000000, 0.868658, 0.000000;;, + 13;3; 0.000000, 0.868658, 0.000000;;, + 14;3; 0.000000, 0.868658, 0.000000;;, + 15;3; 0.000000, 0.868658, 0.000000;;, + 16;3; 0.000000, 0.868658, 0.000000;;, + 17;3; 0.000000, 0.868658, 0.000000;;, + 18;3; 0.000000, 0.868658, 0.000000;;, + 19;3; 0.000000, 0.868658, 0.000000;;, + 20;3; 0.000000, 0.868658, 0.000000;;, + 21;3; 0.000000, 0.868658, 0.000000;;, + 22;3; 0.000000, 0.868658, 0.000000;;, + 23;3; 0.000000, 0.868658, 0.000000;;, + 24;3; 0.000000, 0.868658, 0.000000;;, + 25;3; 0.000000, 0.868658, 0.000000;;, + 26;3; 0.000000, 0.868658, 0.000000;;, + 27;3; 0.000000, 0.868658, 0.000000;;, + 28;3; 0.000000, 0.868658, 0.000000;;, + 29;3; 0.000000, 0.868658, 0.000000;;, + 30;3; 0.000000, 0.868658, 0.000000;;, + 31;3; 0.000000, 0.868658, 0.000000;;, + 32;3; 0.000000, 0.868658, 0.000000;;, + 33;3; 0.000000, 0.868658, 0.000000;;, + 34;3; 0.000000, 0.868658, 0.000000;;, + 35;3; 0.000000, 0.868658, 0.000000;;, + 36;3; 0.000000, 0.868658, 0.000000;;, + 37;3; 0.000000, 0.868658, 0.000000;;, + 38;3; 0.000000, 0.868658, 0.000000;;, + 39;3; 0.000000, 0.868658, 0.000000;;, + 40;3; 0.000000, 0.868658, 0.000000;;, + 41;3; 0.000000, 0.868658, 0.000000;;, + 42;3; 0.000000, 0.868658, 0.000000;;, + 43;3; 0.000000, 0.868658, 0.000000;;, + 44;3; 0.000000, 0.868658, 0.000000;;, + 45;3; 0.000000, 0.868658, 0.000000;;, + 46;3; 0.000000, 0.868658, 0.000000;;, + 47;3; 0.000000, 0.868658, 0.000000;;, + 48;3; 0.000000, 0.868658, 0.000000;;, + 49;3; 0.000000, 0.868658, 0.000000;;, + 50;3; 0.000000, 0.868658, 0.000000;;, + 51;3; 0.000000, 0.868658, 0.000000;;, + 52;3; 0.000000, 0.868658, 0.000000;;, + 53;3; 0.000000, 0.868658, 0.000000;;, + 54;3; 0.000000, 0.868658, 0.000000;;, + 55;3; 0.000000, 0.868658, 0.000000;;, + 56;3; 0.000000, 0.868658, 0.000000;;, + 57;3; 0.000000, 0.868658, 0.000000;;, + 58;3; 0.000000, 0.868658, 0.000000;;, + 59;3; 0.000000, 0.868658, 0.000000;;, + 60;3; 0.000000, 0.868658, 0.000000;;, + 61;3; 0.000000, 0.868658, 0.000000;;, + 62;3; 0.000000, 0.868658, 0.000000;;, + 63;3; 0.000000, 0.868658, 0.000000;;, + 64;3; 0.000000, 0.868658, 0.000000;;, + 65;3; 0.000000, 0.868658, 0.000000;;, + 66;3; 0.000000, 0.868658, 0.000000;;, + 67;3; 0.000000, 0.868658, 0.000000;;, + 68;3; 0.000000, 0.868658, 0.000000;;, + 69;3; 0.000000, 0.868658, 0.000000;;, + 70;3; 0.000000, 0.868658, 0.000000;;, + 71;3; 0.000000, 0.868658, 0.000000;;, + 72;3; 0.000000, 0.868658, 0.000000;;, + 73;3; 0.000000, 0.868658, 0.000000;;, + 74;3; 0.000000, 0.868658, 0.000000;;, + 75;3; 0.000000, 0.868658, 0.000000;;, + 76;3; 0.000000, 0.868658, 0.000000;;, + 77;3; 0.000000, 0.868658, 0.000000;;, + 78;3; 0.000000, 0.868658, 0.000000;;, + 79;3; 0.000000, 0.868658, 0.000000;;, + 80;3; 0.000000, 0.868658, 0.000000;;, + 81;3; 0.000000, 0.868658, 0.000000;;, + 82;3; 0.000000, 0.868658, 0.000000;;, + 83;3; 0.000000, 0.868658, 0.000000;;, + 84;3; 0.000000, 0.868658, 0.000000;;, + 85;3; 0.000000, 0.868658, 0.000000;;, + 86;3; 0.000000, 0.868658, 0.000000;;, + 87;3; 0.000000, 0.868658, 0.000000;;, + 88;3; 0.000000, 0.868658, 0.000000;;, + 89;3; 0.000000, 0.868658, 0.000000;;, + 90;3; 0.000000, 0.868658, 0.000000;;, + 91;3; 0.000000, 0.868658, 0.000000;;, + 92;3; 0.000000, 0.868658, 0.000000;;, + 93;3; 0.000000, 0.868658, 0.000000;;, + 94;3; 0.000000, 0.868658, 0.000000;;, + 95;3; 0.000000, 0.868658, 0.000000;;, + 96;3; 0.000000, 0.868658, 0.000000;;, + 97;3; 0.000000, 0.868658, 0.000000;;, + 98;3; 0.000000, 0.868658, 0.000000;;, + 99;3; 0.000000, 0.868658, 0.000000;;, + 100;3; 0.000000, 0.868658, 0.000000;;, + 101;3; 0.000000, 0.868658, 0.000000;;, + 102;3; 0.000000, 0.868658, 0.000000;;, + 103;3; 0.000000, 0.868658, 0.000000;;, + 104;3; 0.000000, 0.868658, 0.000000;;, + 105;3; 0.000000, 0.868658, 0.000000;;, + 106;3; 0.000000, 0.868658, 0.000000;;, + 107;3; 0.000000, 0.868658, 0.000000;;, + 108;3; 0.000000, 0.868658, 0.000000;;, + 109;3; 0.000000, 0.868658, 0.000000;;, + 110;3; 0.000000, 0.868658, 0.000000;;, + 111;3; 0.000000, 0.868658, 0.000000;;, + 112;3; 0.000000, 0.868658, 0.000000;;, + 113;3; 0.000000, 0.868658, 0.000000;;, + 114;3; 0.000000, 0.868658, 0.000000;;, + 115;3; 0.000000, 0.868658, 0.000000;;, + 116;3; 0.000000, 0.868658, 0.000000;;, + 117;3; 0.000000, 0.868658, 0.000000;;, + 118;3; 0.000000, 0.868658, 0.000000;;, + 119;3; 0.000000, 0.868658, 0.000000;;, + 120;3; 0.000000, 0.868658, 0.000000;;, + 121;3; 0.000000, 0.868658, 0.000000;;, + 122;3; 0.000000, 0.868658, 0.000000;;, + 123;3; 0.000000, 0.868658, 0.000000;;, + 124;3; 0.000000, 0.868658, 0.000000;;, + 125;3; 0.000000, 0.868658, 0.000000;;, + 126;3; 0.000000, 0.868658, 0.000000;;, + 127;3; 0.000000, 0.868658, 0.000000;;, + 128;3; 0.000000, 0.868658, 0.000000;;, + 129;3; 0.000000, 0.868658, 0.000000;;, + 130;3; 0.000000, 0.868658, 0.000000;;, + 131;3; 0.000000, 0.868658, 0.000000;;, + 132;3; 0.000000, 0.868658, 0.000000;;, + 133;3; 0.000000, 0.868658, 0.000000;;, + 134;3; 0.000000, 0.868658, 0.000000;;, + 135;3; 0.000000, 0.868658, 0.000000;;, + 136;3; 0.000000, 0.868658, 0.000000;;, + 137;3; 0.000000, 0.868658, 0.000000;;, + 138;3; 0.000000, 0.868658, 0.000000;;, + 139;3; 0.000000, 0.868658, 0.000000;;, + 140;3; 0.000000, 0.868658, 0.000000;;, + 141;3; 0.000000, 0.868658, 0.000000;;, + 142;3; 0.000000, 0.868658, 0.000000;;, + 143;3; 0.000000, 0.868658, 0.000000;;, + 144;3; 0.000000, 0.868658, 0.000000;;, + 145;3; 0.000000, 0.868658, 0.000000;;, + 146;3; 0.000000, 0.868658, 0.000000;;, + 147;3; 0.000000, 0.868658, 0.000000;;, + 148;3; 0.000000, 0.868658, 0.000000;;, + 149;3; 0.000000, 0.868658, 0.000000;;, + 150;3; 0.000000, 0.868658, 0.000000;;, + 151;3; 0.000000, 0.868658, 0.000000;;, + 152;3; 0.000000, 0.868658, 0.000000;;, + 153;3; 0.000000, 0.868658, 0.000000;;, + 154;3; 0.000000, 0.868658, 0.000000;;, + 155;3; 0.000000, 0.868658, 0.000000;;, + 156;3; 0.000000, 0.868658, 0.000000;;, + 157;3; 0.000000, 0.868658, 0.000000;;, + 158;3; 0.000000, 0.868658, 0.000000;;, + 159;3; 0.000000, 0.868658, 0.000000;;, + 160;3; 0.000000, 0.868658, 0.000000;;, + 161;3; 0.000000, 0.868658, 0.000000;;, + 162;3; 0.000000, 0.868658, 0.000000;;, + 163;3; 0.000000, 0.868658, 0.000000;;, + 164;3; 0.000000, 0.868658, 0.000000;;, + 165;3; 0.000000, 0.868658, 0.000000;;, + 166;3; 0.000000, 0.868658, 0.000000;;, + 167;3; 0.000000, 0.868658, 0.000000;;, + 168;3; 0.000000, 0.868658, 0.000000;;, + 169;3; 0.000000, 0.868658, 0.000000;;, + 170;3; 0.000000, 0.868658, 0.000000;;, + 171;3; 0.000000, 0.868658, 0.000000;;, + 172;3; 0.000000, 0.868658, 0.000000;;, + 173;3; 0.000000, 0.868658, 0.000000;;, + 174;3; 0.000000, 0.868658, 0.000000;;, + 175;3; 0.000000, 0.868658, 0.000000;;, + 176;3; 0.000000, 0.868658, 0.000000;;, + 177;3; 0.000000, 0.868658, 0.000000;;, + 178;3; 0.000000, 0.868658, 0.000000;;, + 179;3; 0.000000, 0.868658, 0.000000;;, + 180;3; 0.000000, 0.868658, 0.000000;;, + 181;3; 0.000000, 0.868658, 0.000000;;, + 182;3; 0.000000, 0.868658,-0.000000;;, + 183;3; 0.000000, 0.868658, 0.000000;;, + 184;3;-0.000000, 0.868658,-0.000000;;, + 185;3; 0.000000, 0.868658,-0.000000;;, + 186;3; 0.000000, 0.868658,-0.000000;;, + 187;3; 0.000000, 0.868658,-0.000000;;, + 188;3;-0.000000, 0.868658, 0.000000;;, + 189;3; 0.000000, 0.868658, 0.000000;;, + 190;3; 0.000000, 0.868658, 0.000000;;, + 191;3;-0.000000, 0.868658, 0.000000;;, + 192;3; 0.000000, 0.868658,-0.000000;;, + 193;3; 0.000000, 0.868658,-0.000000;;, + 194;3;-0.000000, 0.868658,-0.000000;;, + 195;3;-0.000000, 0.868658,-0.000000;;, + 196;3; 0.000000, 0.868658, 0.000000;;, + 197;3;-0.000000, 0.868658, 0.000000;;, + 198;3; 0.000000, 0.868658, 0.000000;;, + 199;3; 0.000000, 0.868658, 0.000000;;, + 200;3; 0.000000, 0.868658, 0.000000;;, + 201;3; 0.000000, 0.868658, 0.000000;;, + 202;3; 0.000000, 0.868658, 0.000000;;, + 203;3; 0.000000, 0.868658, 0.000000;;, + 204;3; 0.000000, 0.868658, 0.000000;;, + 205;3; 0.000000, 0.868658, 0.000000;;, + 206;3; 0.000000, 0.868658, 0.000000;;, + 207;3; 0.000000, 0.868658, 0.000000;;, + 208;3; 0.000000, 0.868658, 0.000000;;, + 209;3; 0.000000, 0.868658, 0.000000;;, + 210;3; 0.000000, 0.868658, 0.000000;;, + 211;3; 0.000000, 0.868658, 0.000000;;, + 212;3; 0.000000, 0.868658, 0.000000;;, + 213;3; 0.000000, 0.868658, 0.000000;;, + 214;3; 0.000000, 0.868658, 0.000000;;, + 215;3; 0.000000, 0.868658, 0.000000;;, + 216;3; 0.000000, 0.868658, 0.000000;;, + 217;3; 0.000000, 0.868658, 0.000000;;, + 218;3; 0.000000, 0.868658, 0.000000;;, + 219;3; 0.000000, 0.868658, 0.000000;;, + 220;3; 0.000000, 0.868658, 0.000000;;, + 221;3; 0.000000, 0.868658, 0.000000;;, + 222;3; 0.000000, 0.868658, 0.000000;;, + 223;3; 0.000000, 0.868658, 0.000000;;, + 224;3; 0.000000, 0.868658, 0.000000;;, + 225;3; 0.000000, 0.868658, 0.000000;;, + 226;3; 0.000000, 0.868658, 0.000000;;, + 227;3; 0.000000, 0.868658, 0.000000;;, + 228;3; 0.000000, 0.868658, 0.000000;;, + 229;3; 0.000000, 0.868658, 0.000000;;, + 230;3; 0.000000, 0.868658, 0.000000;;, + 231;3; 0.000000, 0.868658, 0.000000;;, + 232;3; 0.000000, 0.868658, 0.000000;;, + 233;3; 0.000000, 0.868658, 0.000000;;, + 234;3; 0.000000, 0.868658, 0.000000;;, + 235;3; 0.000000, 0.868658, 0.000000;;, + 236;3; 0.000000, 0.868658, 0.000000;;, + 237;3; 0.000000, 0.868658, 0.000000;;, + 238;3; 0.000000, 0.868658, 0.000000;;, + 239;3; 0.000000, 0.868658, 0.000000;;, + 240;3; 0.000000, 0.868658, 0.000000;;, + 241;3; 0.000000, 0.868658, 0.000000;;, + 242;3; 0.000000, 0.868658, 0.000000;;, + 243;3; 0.000000, 0.868658, 0.000000;;, + 244;3; 0.000000, 0.868658, 0.000000;;, + 245;3; 0.000000, 0.868658, 0.000000;;, + 246;3; 0.000000, 0.868658, 0.000000;;, + 247;3; 0.000000, 0.868658, 0.000000;;, + 248;3; 0.000000, 0.868658, 0.000000;;, + 249;3; 0.000000, 0.868658, 0.000000;;; + } + } + Animation { + {Armature_Bone_033} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 1;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 2;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 3;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 4;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 5;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 6;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 7;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 8;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 9;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 10;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 11;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 12;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 13;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 14;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 15;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 16;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 17;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 18;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 19;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 20;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 21;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 22;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 23;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 24;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 25;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 26;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 27;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 28;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 29;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 30;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 31;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 32;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 33;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 34;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 35;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 36;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 37;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 38;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 39;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 40;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 41;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 42;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 43;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 44;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 45;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 46;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 47;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 48;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 49;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 50;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 51;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 52;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 53;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 54;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 55;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 56;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 57;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 58;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 59;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 60;4;-0.984118,-0.177486,-0.000064,-0.000002;;, + 61;4;-0.984156,-0.177191,-0.000256,-0.000007;;, + 62;4;-0.984219,-0.176698,-0.000578,-0.000015;;, + 63;4;-0.984308,-0.176006,-0.001030,-0.000026;;, + 64;4;-0.984423,-0.175114,-0.001613,-0.000041;;, + 65;4;-0.984563,-0.174023,-0.002325,-0.000059;;, + 66;4;-0.984728,-0.172737,-0.003165,-0.000081;;, + 67;4;-0.984917,-0.171257,-0.004131,-0.000105;;, + 68;4;-0.985131,-0.169590,-0.005220,-0.000133;;, + 69;4;-0.985368,-0.167742,-0.006427,-0.000164;;, + 70;4;-0.985627,-0.165720,-0.007747,-0.000197;;, + 71;4;-0.985908,-0.163536,-0.009173,-0.000233;;, + 72;4;-0.986207,-0.161201,-0.010698,-0.000272;;, + 73;4;-0.986524,-0.158729,-0.012312,-0.000313;;, + 74;4;-0.986857,-0.156135,-0.014006,-0.000356;;, + 75;4;-0.987203,-0.153437,-0.015768,-0.000401;;, + 76;4;-0.987560,-0.150654,-0.017586,-0.000448;;, + 77;4;-0.987925,-0.147805,-0.019446,-0.000495;;, + 78;4;-0.988296,-0.144912,-0.021335,-0.000543;;, + 79;4;-0.988670,-0.141997,-0.023239,-0.000591;;, + 80;4;-0.989044,-0.139082,-0.025142,-0.000640;;, + 81;4;-0.989415,-0.136189,-0.027031,-0.000688;;, + 82;4;-0.989781,-0.133340,-0.028892,-0.000735;;, + 83;4;-0.990138,-0.130557,-0.030709,-0.000781;;, + 84;4;-0.990484,-0.127859,-0.032471,-0.000826;;, + 85;4;-0.990816,-0.125265,-0.034165,-0.000869;;, + 86;4;-0.991134,-0.122793,-0.035779,-0.000910;;, + 87;4;-0.991433,-0.120458,-0.037304,-0.000949;;, + 88;4;-0.991713,-0.118274,-0.038730,-0.000986;;, + 89;4;-0.991973,-0.116253,-0.040050,-0.001019;;, + 90;4;-0.992210,-0.114405,-0.041257,-0.001050;;, + 91;4;-0.992423,-0.112737,-0.042346,-0.001078;;, + 92;4;-0.992613,-0.111258,-0.043312,-0.001102;;, + 93;4;-0.992778,-0.109971,-0.044152,-0.001124;;, + 94;4;-0.992918,-0.108881,-0.044864,-0.001142;;, + 95;4;-0.993033,-0.107989,-0.045447,-0.001157;;, + 96;4;-0.993121,-0.107296,-0.045899,-0.001168;;, + 97;4;-0.993185,-0.106803,-0.046221,-0.001176;;, + 98;4;-0.993222,-0.106509,-0.046413,-0.001181;;, + 99;4;-0.993235,-0.106411,-0.046477,-0.001183;;, + 100;4;-0.992457,-0.108704,-0.044924,-0.001143;;, + 101;4;-0.990042,-0.115829,-0.040099,-0.001020;;, + 102;4;-0.985938,-0.127931,-0.031902,-0.000812;;, + 103;4;-0.980251,-0.144703,-0.020542,-0.000523;;, + 104;4;-0.973289,-0.165237,-0.006635,-0.000169;;, + 105;4;-0.965544,-0.188081, 0.008838, 0.000225;;, + 106;4;-0.957586,-0.211550, 0.024734, 0.000629;;, + 107;4;-0.949929,-0.234133, 0.040028, 0.001019;;, + 108;4;-0.942940,-0.254745, 0.053989, 0.001374;;, + 109;4;-0.936827,-0.272776, 0.066201, 0.001685;;, + 110;4;-0.930713,-0.290807, 0.078414, 0.001995;;, + 111;4;-0.923724,-0.311419, 0.092374, 0.002351;;, + 112;4;-0.916067,-0.334001, 0.107669, 0.002740;;, + 113;4;-0.908110,-0.357471, 0.123565, 0.003144;;, + 114;4;-0.900364,-0.380315, 0.139037, 0.003538;;, + 115;4;-0.893402,-0.400849, 0.152945, 0.003892;;, + 116;4;-0.887715,-0.417621, 0.164305, 0.004181;;, + 117;4;-0.883612,-0.429723, 0.172501, 0.004390;;, + 118;4;-0.881196,-0.436847, 0.177327, 0.004513;;, + 119;4;-0.880418,-0.439141, 0.178880, 0.004552;;, + 120;4;-0.881196,-0.436848, 0.177327, 0.004513;;, + 121;4;-0.883612,-0.429723, 0.172501, 0.004390;;, + 122;4;-0.887715,-0.417621, 0.164305, 0.004181;;, + 123;4;-0.893402,-0.400849, 0.152945, 0.003892;;, + 124;4;-0.900364,-0.380315, 0.139037, 0.003538;;, + 125;4;-0.908110,-0.357471, 0.123565, 0.003144;;, + 126;4;-0.916067,-0.334001, 0.107669, 0.002740;;, + 127;4;-0.923724,-0.311419, 0.092374, 0.002351;;, + 128;4;-0.930713,-0.290807, 0.078414, 0.001995;;, + 129;4;-0.936827,-0.272776, 0.066201, 0.001685;;, + 130;4;-0.942940,-0.254745, 0.053989, 0.001374;;, + 131;4;-0.949929,-0.234133, 0.040028, 0.001019;;, + 132;4;-0.957586,-0.211550, 0.024734, 0.000629;;, + 133;4;-0.965544,-0.188081, 0.008838, 0.000225;;, + 134;4;-0.973289,-0.165237,-0.006635,-0.000169;;, + 135;4;-0.980251,-0.144703,-0.020542,-0.000523;;, + 136;4;-0.985938,-0.127931,-0.031902,-0.000812;;, + 137;4;-0.990042,-0.115829,-0.040099,-0.001020;;, + 138;4;-0.992457,-0.108704,-0.044924,-0.001143;;, + 139;4;-0.993235,-0.106411,-0.046477,-0.001183;;, + 140;4;-0.990042,-0.115829,-0.040099,-0.001020;;, + 141;4;-0.980251,-0.144703,-0.020542,-0.000523;;, + 142;4;-0.965544,-0.188081, 0.008838, 0.000225;;, + 143;4;-0.949929,-0.234133, 0.040028, 0.001019;;, + 144;4;-0.936827,-0.272776, 0.066201, 0.001685;;, + 145;4;-0.923724,-0.311419, 0.092374, 0.002351;;, + 146;4;-0.908110,-0.357471, 0.123565, 0.003144;;, + 147;4;-0.893402,-0.400849, 0.152945, 0.003892;;, + 148;4;-0.883612,-0.429723, 0.172501, 0.004390;;, + 149;4;-0.880418,-0.439141, 0.178880, 0.004552;;, + 150;4;-0.883612,-0.429723, 0.172501, 0.004390;;, + 151;4;-0.893402,-0.400849, 0.152945, 0.003892;;, + 152;4;-0.908110,-0.357471, 0.123565, 0.003144;;, + 153;4;-0.923724,-0.311419, 0.092374, 0.002351;;, + 154;4;-0.936827,-0.272776, 0.066201, 0.001685;;, + 155;4;-0.949929,-0.234133, 0.040028, 0.001019;;, + 156;4;-0.965544,-0.188081, 0.008838, 0.000225;;, + 157;4;-0.980251,-0.144703,-0.020542,-0.000523;;, + 158;4;-0.990042,-0.115829,-0.040099,-0.001020;;, + 159;4;-0.993235,-0.106411,-0.046477,-0.001183;;, + 160;4;-0.993185,-0.106803,-0.046221,-0.001176;;, + 161;4;-0.993032,-0.107989,-0.045447,-0.001157;;, + 162;4;-0.992778,-0.109971,-0.044152,-0.001124;;, + 163;4;-0.992423,-0.112737,-0.042346,-0.001078;;, + 164;4;-0.991972,-0.116253,-0.040050,-0.001019;;, + 165;4;-0.991433,-0.120458,-0.037304,-0.000949;;, + 166;4;-0.990816,-0.125266,-0.034165,-0.000869;;, + 167;4;-0.990138,-0.130557,-0.030709,-0.000781;;, + 168;4;-0.989415,-0.136189,-0.027031,-0.000688;;, + 169;4;-0.988670,-0.141997,-0.023239,-0.000591;;, + 170;4;-0.987925,-0.147805,-0.019446,-0.000495;;, + 171;4;-0.987203,-0.153437,-0.015768,-0.000401;;, + 172;4;-0.986524,-0.158729,-0.012312,-0.000313;;, + 173;4;-0.985908,-0.163536,-0.009173,-0.000233;;, + 174;4;-0.985368,-0.167742,-0.006427,-0.000164;;, + 175;4;-0.984917,-0.171257,-0.004131,-0.000105;;, + 176;4;-0.984562,-0.174023,-0.002325,-0.000059;;, + 177;4;-0.984308,-0.176006,-0.001030,-0.000026;;, + 178;4;-0.984156,-0.177191,-0.000256,-0.000007;;, + 179;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 180;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 181;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 182;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 183;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 184;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 185;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 186;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 187;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 188;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 189;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 190;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 191;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 192;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 193;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 194;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 195;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 196;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 197;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 198;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 199;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 200;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 201;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 202;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 203;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 204;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 205;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 206;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 207;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 208;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 209;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 210;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 211;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 212;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 213;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 214;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 215;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 216;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 217;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 218;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 219;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 220;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 221;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 222;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 223;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 224;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 225;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 226;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 227;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 228;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 229;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 230;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 231;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 232;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 233;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 234;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 235;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 236;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 237;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 238;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 239;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 240;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 241;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 242;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 243;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 244;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 245;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 246;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 247;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 248;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 249;4;-0.984106,-0.177584,-0.000000, 0.000000;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3;-0.000000, 1.279916,-0.000000;;, + 1;3;-0.000000, 1.279916,-0.000000;;, + 2;3;-0.000000, 1.279916,-0.000000;;, + 3;3;-0.000000, 1.279916,-0.000000;;, + 4;3;-0.000000, 1.279916,-0.000000;;, + 5;3;-0.000000, 1.279916,-0.000000;;, + 6;3;-0.000000, 1.279916,-0.000000;;, + 7;3;-0.000000, 1.279916,-0.000000;;, + 8;3;-0.000000, 1.279916,-0.000000;;, + 9;3;-0.000000, 1.279916,-0.000000;;, + 10;3;-0.000000, 1.279916,-0.000000;;, + 11;3;-0.000000, 1.279916,-0.000000;;, + 12;3;-0.000000, 1.279916,-0.000000;;, + 13;3;-0.000000, 1.279916,-0.000000;;, + 14;3;-0.000000, 1.279916,-0.000000;;, + 15;3;-0.000000, 1.279916,-0.000000;;, + 16;3;-0.000000, 1.279916,-0.000000;;, + 17;3;-0.000000, 1.279916,-0.000000;;, + 18;3;-0.000000, 1.279916,-0.000000;;, + 19;3;-0.000000, 1.279916,-0.000000;;, + 20;3;-0.000000, 1.279916,-0.000000;;, + 21;3;-0.000000, 1.279916,-0.000000;;, + 22;3;-0.000000, 1.279916,-0.000000;;, + 23;3;-0.000000, 1.279916,-0.000000;;, + 24;3;-0.000000, 1.279916,-0.000000;;, + 25;3;-0.000000, 1.279916,-0.000000;;, + 26;3;-0.000000, 1.279916,-0.000000;;, + 27;3;-0.000000, 1.279916,-0.000000;;, + 28;3;-0.000000, 1.279916,-0.000000;;, + 29;3;-0.000000, 1.279916,-0.000000;;, + 30;3;-0.000000, 1.279916,-0.000000;;, + 31;3;-0.000000, 1.279916,-0.000000;;, + 32;3;-0.000000, 1.279916,-0.000000;;, + 33;3;-0.000000, 1.279916,-0.000000;;, + 34;3;-0.000000, 1.279916,-0.000000;;, + 35;3;-0.000000, 1.279916,-0.000000;;, + 36;3;-0.000000, 1.279916,-0.000000;;, + 37;3;-0.000000, 1.279916,-0.000000;;, + 38;3;-0.000000, 1.279916,-0.000000;;, + 39;3;-0.000000, 1.279916,-0.000000;;, + 40;3;-0.000000, 1.279916,-0.000000;;, + 41;3;-0.000000, 1.279916,-0.000000;;, + 42;3;-0.000000, 1.279916,-0.000000;;, + 43;3;-0.000000, 1.279916,-0.000000;;, + 44;3;-0.000000, 1.279916,-0.000000;;, + 45;3;-0.000000, 1.279916,-0.000000;;, + 46;3;-0.000000, 1.279916,-0.000000;;, + 47;3;-0.000000, 1.279916,-0.000000;;, + 48;3;-0.000000, 1.279916,-0.000000;;, + 49;3;-0.000000, 1.279916,-0.000000;;, + 50;3;-0.000000, 1.279916,-0.000000;;, + 51;3;-0.000000, 1.279916,-0.000000;;, + 52;3;-0.000000, 1.279916,-0.000000;;, + 53;3;-0.000000, 1.279916,-0.000000;;, + 54;3;-0.000000, 1.279916,-0.000000;;, + 55;3;-0.000000, 1.279916,-0.000000;;, + 56;3;-0.000000, 1.279916,-0.000000;;, + 57;3;-0.000000, 1.279916,-0.000000;;, + 58;3;-0.000000, 1.279916,-0.000000;;, + 59;3;-0.000000, 1.279916,-0.000000;;, + 60;3; 0.000000, 1.279916, 0.000000;;, + 61;3;-0.000000, 1.279916,-0.000000;;, + 62;3;-0.000000, 1.279916,-0.000000;;, + 63;3;-0.000000, 1.279916, 0.000000;;, + 64;3;-0.000000, 1.279916, 0.000000;;, + 65;3; 0.000000, 1.279916,-0.000000;;, + 66;3;-0.000000, 1.279916, 0.000000;;, + 67;3; 0.000000, 1.279916,-0.000000;;, + 68;3; 0.000000, 1.279916,-0.000000;;, + 69;3; 0.000000, 1.279916, 0.000000;;, + 70;3;-0.000000, 1.279916,-0.000000;;, + 71;3;-0.000000, 1.279916,-0.000000;;, + 72;3;-0.000000, 1.279916, 0.000000;;, + 73;3;-0.000000, 1.279916,-0.000000;;, + 74;3;-0.000000, 1.279916, 0.000000;;, + 75;3;-0.000000, 1.279916,-0.000000;;, + 76;3;-0.000000, 1.279916, 0.000000;;, + 77;3;-0.000000, 1.279916, 0.000000;;, + 78;3;-0.000000, 1.279916,-0.000000;;, + 79;3;-0.000000, 1.279916, 0.000000;;, + 80;3;-0.000000, 1.279916,-0.000000;;, + 81;3;-0.000000, 1.279916, 0.000000;;, + 82;3;-0.000000, 1.279916, 0.000000;;, + 83;3;-0.000000, 1.279916, 0.000000;;, + 84;3;-0.000000, 1.279916, 0.000000;;, + 85;3; 0.000000, 1.279916, 0.000000;;, + 86;3;-0.000000, 1.279916,-0.000000;;, + 87;3;-0.000000, 1.279916,-0.000000;;, + 88;3;-0.000000, 1.279916, 0.000000;;, + 89;3;-0.000000, 1.279916,-0.000000;;, + 90;3; 0.000000, 1.279916, 0.000000;;, + 91;3; 0.000000, 1.279916,-0.000000;;, + 92;3;-0.000000, 1.279916,-0.000000;;, + 93;3; 0.000000, 1.279916,-0.000000;;, + 94;3; 0.000000, 1.279916,-0.000000;;, + 95;3; 0.000000, 1.279916,-0.000000;;, + 96;3; 0.000000, 1.279916, 0.000000;;, + 97;3;-0.000000, 1.279916, 0.000000;;, + 98;3; 0.000000, 1.279916, 0.000000;;, + 99;3;-0.000000, 1.279916,-0.000000;;, + 100;3;-0.000000, 1.279916,-0.000000;;, + 101;3;-0.000000, 1.279916, 0.000000;;, + 102;3;-0.000000, 1.279916, 0.000000;;, + 103;3; 0.000000, 1.279916,-0.000000;;, + 104;3;-0.000000, 1.279916, 0.000000;;, + 105;3;-0.000000, 1.279916, 0.000000;;, + 106;3;-0.000000, 1.279916,-0.000000;;, + 107;3; 0.000000, 1.279916,-0.000000;;, + 108;3; 0.000000, 1.279916, 0.000000;;, + 109;3; 0.000000, 1.279916, 0.000000;;, + 110;3; 0.000000, 1.279916, 0.000000;;, + 111;3;-0.000000, 1.279916,-0.000000;;, + 112;3;-0.000000, 1.279916,-0.000000;;, + 113;3;-0.000000, 1.279916, 0.000000;;, + 114;3;-0.000000, 1.279916,-0.000000;;, + 115;3;-0.000000, 1.279916,-0.000000;;, + 116;3;-0.000000, 1.279916,-0.000000;;, + 117;3;-0.000000, 1.279916, 0.000000;;, + 118;3; 0.000000, 1.279916, 0.000000;;, + 119;3;-0.000000, 1.279916, 0.000000;;, + 120;3;-0.000000, 1.279916, 0.000000;;, + 121;3; 0.000000, 1.279916, 0.000000;;, + 122;3;-0.000000, 1.279916, 0.000000;;, + 123;3;-0.000000, 1.279916, 0.000000;;, + 124;3;-0.000000, 1.279916, 0.000000;;, + 125;3;-0.000000, 1.279916, 0.000000;;, + 126;3; 0.000000, 1.279916,-0.000000;;, + 127;3;-0.000000, 1.279916,-0.000000;;, + 128;3;-0.000000, 1.279916,-0.000000;;, + 129;3;-0.000000, 1.279916, 0.000000;;, + 130;3; 0.000000, 1.279916, 0.000000;;, + 131;3; 0.000000, 1.279916,-0.000000;;, + 132;3; 0.000000, 1.279916, 0.000000;;, + 133;3;-0.000000, 1.279916,-0.000000;;, + 134;3;-0.000000, 1.279916, 0.000000;;, + 135;3; 0.000000, 1.279916, 0.000000;;, + 136;3; 0.000000, 1.279916, 0.000000;;, + 137;3;-0.000000, 1.279916,-0.000000;;, + 138;3;-0.000000, 1.279916,-0.000000;;, + 139;3;-0.000000, 1.279916,-0.000000;;, + 140;3; 0.000000, 1.279916,-0.000000;;, + 141;3; 0.000000, 1.279916,-0.000000;;, + 142;3;-0.000000, 1.279916, 0.000000;;, + 143;3; 0.000000, 1.279916,-0.000000;;, + 144;3; 0.000000, 1.279916, 0.000000;;, + 145;3;-0.000000, 1.279916,-0.000000;;, + 146;3;-0.000000, 1.279916, 0.000000;;, + 147;3;-0.000000, 1.279916,-0.000000;;, + 148;3;-0.000000, 1.279916, 0.000000;;, + 149;3;-0.000000, 1.279916, 0.000000;;, + 150;3; 0.000000, 1.279916, 0.000000;;, + 151;3;-0.000000, 1.279916, 0.000000;;, + 152;3;-0.000000, 1.279916, 0.000000;;, + 153;3;-0.000000, 1.279916,-0.000000;;, + 154;3;-0.000000, 1.279916, 0.000000;;, + 155;3;-0.000000, 1.279916, 0.000000;;, + 156;3; 0.000000, 1.279916,-0.000000;;, + 157;3; 0.000000, 1.279917,-0.000000;;, + 158;3;-0.000000, 1.279916, 0.000000;;, + 159;3;-0.000000, 1.279916,-0.000000;;, + 160;3; 0.000000, 1.279916, 0.000000;;, + 161;3; 0.000000, 1.279916,-0.000000;;, + 162;3;-0.000000, 1.279916,-0.000000;;, + 163;3; 0.000000, 1.279916,-0.000000;;, + 164;3; 0.000000, 1.279916,-0.000000;;, + 165;3; 0.000000, 1.279916, 0.000000;;, + 166;3; 0.000000, 1.279916,-0.000000;;, + 167;3; 0.000000, 1.279916, 0.000000;;, + 168;3; 0.000000, 1.279916, 0.000000;;, + 169;3; 0.000000, 1.279916,-0.000000;;, + 170;3;-0.000000, 1.279916, 0.000000;;, + 171;3;-0.000000, 1.279916, 0.000000;;, + 172;3;-0.000000, 1.279916, 0.000000;;, + 173;3;-0.000000, 1.279916, 0.000000;;, + 174;3;-0.000000, 1.279916,-0.000000;;, + 175;3;-0.000000, 1.279916, 0.000000;;, + 176;3;-0.000000, 1.279916, 0.000000;;, + 177;3;-0.000000, 1.279916,-0.000000;;, + 178;3;-0.000000, 1.279916,-0.000000;;, + 179;3;-0.000000, 1.279916,-0.000000;;, + 180;3; 0.000000, 1.279916,-0.000000;;, + 181;3;-0.000000, 1.279916,-0.000000;;, + 182;3; 0.000000, 1.279916,-0.000000;;, + 183;3; 0.000000, 1.279916,-0.000000;;, + 184;3;-0.000000, 1.279916, 0.000000;;, + 185;3; 0.000000, 1.279916, 0.000000;;, + 186;3; 0.000000, 1.279916,-0.000000;;, + 187;3;-0.000000, 1.279916, 0.000000;;, + 188;3;-0.000000, 1.279916, 0.000000;;, + 189;3; 0.000000, 1.279916, 0.000000;;, + 190;3; 0.000000, 1.279916,-0.000000;;, + 191;3; 0.000000, 1.279916,-0.000000;;, + 192;3; 0.000000, 1.279916, 0.000000;;, + 193;3; 0.000000, 1.279916,-0.000000;;, + 194;3;-0.000000, 1.279916, 0.000000;;, + 195;3; 0.000000, 1.279916, 0.000000;;, + 196;3;-0.000000, 1.279916,-0.000000;;, + 197;3;-0.000000, 1.279916, 0.000000;;, + 198;3; 0.000000, 1.279916,-0.000000;;, + 199;3;-0.000000, 1.279916,-0.000000;;, + 200;3;-0.000000, 1.279916,-0.000000;;, + 201;3;-0.000000, 1.279916,-0.000000;;, + 202;3;-0.000000, 1.279916,-0.000000;;, + 203;3;-0.000000, 1.279916,-0.000000;;, + 204;3;-0.000000, 1.279916,-0.000000;;, + 205;3;-0.000000, 1.279916,-0.000000;;, + 206;3;-0.000000, 1.279916,-0.000000;;, + 207;3;-0.000000, 1.279916,-0.000000;;, + 208;3;-0.000000, 1.279916,-0.000000;;, + 209;3;-0.000000, 1.279916,-0.000000;;, + 210;3;-0.000000, 1.279916,-0.000000;;, + 211;3;-0.000000, 1.279916,-0.000000;;, + 212;3;-0.000000, 1.279916,-0.000000;;, + 213;3;-0.000000, 1.279916,-0.000000;;, + 214;3;-0.000000, 1.279916,-0.000000;;, + 215;3;-0.000000, 1.279916,-0.000000;;, + 216;3;-0.000000, 1.279916,-0.000000;;, + 217;3;-0.000000, 1.279916,-0.000000;;, + 218;3;-0.000000, 1.279916,-0.000000;;, + 219;3;-0.000000, 1.279916,-0.000000;;, + 220;3;-0.000000, 1.279916,-0.000000;;, + 221;3;-0.000000, 1.279916,-0.000000;;, + 222;3;-0.000000, 1.279916,-0.000000;;, + 223;3;-0.000000, 1.279916,-0.000000;;, + 224;3;-0.000000, 1.279916,-0.000000;;, + 225;3;-0.000000, 1.279916,-0.000000;;, + 226;3;-0.000000, 1.279916,-0.000000;;, + 227;3;-0.000000, 1.279916,-0.000000;;, + 228;3;-0.000000, 1.279916,-0.000000;;, + 229;3;-0.000000, 1.279916,-0.000000;;, + 230;3;-0.000000, 1.279916,-0.000000;;, + 231;3;-0.000000, 1.279916,-0.000000;;, + 232;3;-0.000000, 1.279916,-0.000000;;, + 233;3;-0.000000, 1.279916,-0.000000;;, + 234;3;-0.000000, 1.279916,-0.000000;;, + 235;3;-0.000000, 1.279916,-0.000000;;, + 236;3;-0.000000, 1.279916,-0.000000;;, + 237;3;-0.000000, 1.279916,-0.000000;;, + 238;3;-0.000000, 1.279916,-0.000000;;, + 239;3;-0.000000, 1.279916,-0.000000;;, + 240;3;-0.000000, 1.279916,-0.000000;;, + 241;3;-0.000000, 1.279916,-0.000000;;, + 242;3;-0.000000, 1.279916,-0.000000;;, + 243;3;-0.000000, 1.279916,-0.000000;;, + 244;3;-0.000000, 1.279916,-0.000000;;, + 245;3;-0.000000, 1.279916,-0.000000;;, + 246;3;-0.000000, 1.279916,-0.000000;;, + 247;3;-0.000000, 1.279916,-0.000000;;, + 248;3;-0.000000, 1.279916,-0.000000;;, + 249;3;-0.000000, 1.279916,-0.000000;;; + } + } + Animation { + {Armature_Bone_037} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 1;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 2;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 3;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 4;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 5;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 6;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 7;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 8;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 9;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 10;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 11;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 12;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 13;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 14;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 15;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 16;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 17;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 18;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 19;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 20;4;-0.969856,-0.243669,-0.000080,-0.000039;;, + 21;4;-0.969950,-0.243264,-0.000323,-0.000156;;, + 22;4;-0.970108,-0.242587,-0.000730,-0.000353;;, + 23;4;-0.970328,-0.241641,-0.001296,-0.000627;;, + 24;4;-0.970607,-0.240440,-0.002017,-0.000975;;, + 25;4;-0.970941,-0.239003,-0.002878,-0.001391;;, + 26;4;-0.971323,-0.237360,-0.003863,-0.001867;;, + 27;4;-0.971744,-0.235552,-0.004948,-0.002392;;, + 28;4;-0.972192,-0.233627,-0.006102,-0.002949;;, + 29;4;-0.972653,-0.231643,-0.007292,-0.003525;;, + 30;4;-0.973115,-0.229658,-0.008482,-0.004100;;, + 31;4;-0.973563,-0.227733,-0.009636,-0.004658;;, + 32;4;-0.973983,-0.225925,-0.010720,-0.005182;;, + 33;4;-0.974366,-0.224282,-0.011705,-0.005658;;, + 34;4;-0.974700,-0.222845,-0.012567,-0.006074;;, + 35;4;-0.974979,-0.221644,-0.013287,-0.006423;;, + 36;4;-0.975199,-0.220698,-0.013854,-0.006697;;, + 37;4;-0.975357,-0.220021,-0.014260,-0.006893;;, + 38;4;-0.975451,-0.219616,-0.014503,-0.007010;;, + 39;4;-0.975482,-0.219482,-0.014583,-0.007049;;, + 40;4;-0.975451,-0.219616,-0.014503,-0.007010;;, + 41;4;-0.975357,-0.220021,-0.014260,-0.006893;;, + 42;4;-0.975199,-0.220698,-0.013854,-0.006697;;, + 43;4;-0.974979,-0.221644,-0.013287,-0.006423;;, + 44;4;-0.974700,-0.222845,-0.012567,-0.006074;;, + 45;4;-0.974366,-0.224282,-0.011705,-0.005658;;, + 46;4;-0.973983,-0.225925,-0.010720,-0.005182;;, + 47;4;-0.973563,-0.227733,-0.009636,-0.004658;;, + 48;4;-0.973115,-0.229658,-0.008482,-0.004100;;, + 49;4;-0.972653,-0.231643,-0.007292,-0.003525;;, + 50;4;-0.972192,-0.233627,-0.006102,-0.002949;;, + 51;4;-0.971744,-0.235552,-0.004948,-0.002392;;, + 52;4;-0.971323,-0.237360,-0.003863,-0.001867;;, + 53;4;-0.970941,-0.239003,-0.002878,-0.001391;;, + 54;4;-0.970607,-0.240440,-0.002017,-0.000975;;, + 55;4;-0.970328,-0.241641,-0.001296,-0.000627;;, + 56;4;-0.970108,-0.242587,-0.000730,-0.000353;;, + 57;4;-0.969950,-0.243264,-0.000323,-0.000156;;, + 58;4;-0.969856,-0.243669,-0.000080,-0.000039;;, + 59;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 60;4;-0.969850,-0.243657,-0.000087,-0.000042;;, + 61;4;-0.969925,-0.243215,-0.000348,-0.000168;;, + 62;4;-0.970052,-0.242475,-0.000785,-0.000379;;, + 63;4;-0.970230,-0.241435,-0.001399,-0.000676;;, + 64;4;-0.970459,-0.240097,-0.002190,-0.001059;;, + 65;4;-0.970738,-0.238460,-0.003157,-0.001526;;, + 66;4;-0.971069,-0.236529,-0.004298,-0.002078;;, + 67;4;-0.971448,-0.234309,-0.005610,-0.002712;;, + 68;4;-0.971876,-0.231806,-0.007088,-0.003426;;, + 69;4;-0.972350,-0.229032,-0.008727,-0.004218;;, + 70;4;-0.972869,-0.225999,-0.010520,-0.005085;;, + 71;4;-0.973430,-0.222721,-0.012456,-0.006021;;, + 72;4;-0.974029,-0.219217,-0.014527,-0.007022;;, + 73;4;-0.974663,-0.215506,-0.016719,-0.008081;;, + 74;4;-0.975329,-0.211614,-0.019019,-0.009193;;, + 75;4;-0.976021,-0.207565,-0.021411,-0.010349;;, + 76;4;-0.976736,-0.203387,-0.023879,-0.011542;;, + 77;4;-0.977467,-0.199112,-0.026405,-0.012763;;, + 78;4;-0.978209,-0.194770,-0.028970,-0.014003;;, + 79;4;-0.978957,-0.190395,-0.031555,-0.015253;;, + 80;4;-0.979705,-0.186020,-0.034140,-0.016502;;, + 81;4;-0.980448,-0.181678,-0.036705,-0.017742;;, + 82;4;-0.981179,-0.177403,-0.039231,-0.018963;;, + 83;4;-0.981893,-0.173226,-0.041700,-0.020156;;, + 84;4;-0.982585,-0.169177,-0.044092,-0.021313;;, + 85;4;-0.983251,-0.165284,-0.046392,-0.022424;;, + 86;4;-0.983885,-0.161574,-0.048584,-0.023484;;, + 87;4;-0.984485,-0.158070,-0.050654,-0.024485;;, + 88;4;-0.985045,-0.154792,-0.052591,-0.025421;;, + 89;4;-0.985564,-0.151758,-0.054383,-0.026287;;, + 90;4;-0.986038,-0.148984,-0.056022,-0.027080;;, + 91;4;-0.986466,-0.146482,-0.057501,-0.027794;;, + 92;4;-0.986846,-0.144261,-0.058812,-0.028428;;, + 93;4;-0.987176,-0.142330,-0.059953,-0.028980;;, + 94;4;-0.987456,-0.140694,-0.060920,-0.029447;;, + 95;4;-0.987685,-0.139355,-0.061711,-0.029830;;, + 96;4;-0.987862,-0.138316,-0.062325,-0.030126;;, + 97;4;-0.987989,-0.137576,-0.062763,-0.030338;;, + 98;4;-0.988065,-0.137134,-0.063024,-0.030464;;, + 99;4;-0.988090,-0.136987,-0.063110,-0.030506;;, + 100;4;-0.987822,-0.138188,-0.062392,-0.030159;;, + 101;4;-0.986990,-0.141919,-0.060160,-0.029080;;, + 102;4;-0.985577,-0.148256,-0.056369,-0.027247;;, + 103;4;-0.983618,-0.157039,-0.051114,-0.024707;;, + 104;4;-0.981220,-0.167792,-0.044682,-0.021598;;, + 105;4;-0.978553,-0.179755,-0.037525,-0.018139;;, + 106;4;-0.975812,-0.192046,-0.030173,-0.014585;;, + 107;4;-0.973176,-0.203871,-0.023098,-0.011165;;, + 108;4;-0.970769,-0.214665,-0.016641,-0.008044;;, + 109;4;-0.968663,-0.224108,-0.010992,-0.005313;;, + 110;4;-0.966558,-0.233550,-0.005343,-0.002583;;, + 111;4;-0.964151,-0.244344, 0.001114, 0.000539;;, + 112;4;-0.961514,-0.256170, 0.008189, 0.003958;;, + 113;4;-0.958773,-0.268460, 0.015541, 0.007512;;, + 114;4;-0.956106,-0.280423, 0.022698, 0.010972;;, + 115;4;-0.953708,-0.291176, 0.029130, 0.014081;;, + 116;4;-0.951750,-0.299959, 0.034385, 0.016621;;, + 117;4;-0.950337,-0.306296, 0.038176, 0.018453;;, + 118;4;-0.949505,-0.310027, 0.040408, 0.019532;;, + 119;4;-0.949237,-0.311228, 0.041127, 0.019880;;, + 120;4;-0.949505,-0.310027, 0.040408, 0.019532;;, + 121;4;-0.950337,-0.306296, 0.038176, 0.018453;;, + 122;4;-0.951750,-0.299959, 0.034385, 0.016621;;, + 123;4;-0.953708,-0.291176, 0.029130, 0.014081;;, + 124;4;-0.956106,-0.280423, 0.022698, 0.010972;;, + 125;4;-0.958773,-0.268460, 0.015541, 0.007512;;, + 126;4;-0.961514,-0.256170, 0.008189, 0.003958;;, + 127;4;-0.964151,-0.244344, 0.001114, 0.000539;;, + 128;4;-0.966558,-0.233550,-0.005343,-0.002583;;, + 129;4;-0.968663,-0.224108,-0.010992,-0.005313;;, + 130;4;-0.970769,-0.214665,-0.016641,-0.008044;;, + 131;4;-0.973176,-0.203871,-0.023098,-0.011165;;, + 132;4;-0.975812,-0.192046,-0.030173,-0.014585;;, + 133;4;-0.978553,-0.179755,-0.037525,-0.018139;;, + 134;4;-0.981220,-0.167792,-0.044682,-0.021598;;, + 135;4;-0.983618,-0.157039,-0.051114,-0.024707;;, + 136;4;-0.985577,-0.148256,-0.056369,-0.027247;;, + 137;4;-0.986990,-0.141919,-0.060160,-0.029080;;, + 138;4;-0.987822,-0.138188,-0.062392,-0.030159;;, + 139;4;-0.988090,-0.136987,-0.063110,-0.030506;;, + 140;4;-0.986990,-0.141919,-0.060160,-0.029080;;, + 141;4;-0.983618,-0.157039,-0.051114,-0.024707;;, + 142;4;-0.978553,-0.179755,-0.037525,-0.018139;;, + 143;4;-0.973176,-0.203871,-0.023098,-0.011165;;, + 144;4;-0.968663,-0.224108,-0.010992,-0.005313;;, + 145;4;-0.964151,-0.244344, 0.001114, 0.000539;;, + 146;4;-0.958773,-0.268460, 0.015541, 0.007512;;, + 147;4;-0.953708,-0.291176, 0.029130, 0.014081;;, + 148;4;-0.950337,-0.306296, 0.038176, 0.018453;;, + 149;4;-0.949237,-0.311228, 0.041127, 0.019880;;, + 150;4;-0.950337,-0.306296, 0.038176, 0.018453;;, + 151;4;-0.953708,-0.291176, 0.029130, 0.014081;;, + 152;4;-0.958773,-0.268460, 0.015541, 0.007512;;, + 153;4;-0.964151,-0.244344, 0.001114, 0.000539;;, + 154;4;-0.968663,-0.224108,-0.010992,-0.005313;;, + 155;4;-0.973176,-0.203871,-0.023098,-0.011165;;, + 156;4;-0.978553,-0.179755,-0.037525,-0.018139;;, + 157;4;-0.983618,-0.157039,-0.051114,-0.024707;;, + 158;4;-0.986990,-0.141919,-0.060160,-0.029080;;, + 159;4;-0.988090,-0.136987,-0.063110,-0.030506;;, + 160;4;-0.987989,-0.137576,-0.062763,-0.030338;;, + 161;4;-0.987685,-0.139355,-0.061711,-0.029830;;, + 162;4;-0.987176,-0.142330,-0.059953,-0.028980;;, + 163;4;-0.986466,-0.146482,-0.057501,-0.027794;;, + 164;4;-0.985564,-0.151758,-0.054383,-0.026287;;, + 165;4;-0.984485,-0.158070,-0.050654,-0.024485;;, + 166;4;-0.983251,-0.165284,-0.046392,-0.022424;;, + 167;4;-0.981893,-0.173226,-0.041700,-0.020156;;, + 168;4;-0.980448,-0.181678,-0.036705,-0.017742;;, + 169;4;-0.978957,-0.190395,-0.031555,-0.015253;;, + 170;4;-0.977467,-0.199112,-0.026405,-0.012763;;, + 171;4;-0.976021,-0.207565,-0.021411,-0.010349;;, + 172;4;-0.974663,-0.215506,-0.016719,-0.008081;;, + 173;4;-0.973430,-0.222721,-0.012456,-0.006021;;, + 174;4;-0.972350,-0.229032,-0.008727,-0.004218;;, + 175;4;-0.971448,-0.234309,-0.005610,-0.002712;;, + 176;4;-0.970738,-0.238460,-0.003157,-0.001526;;, + 177;4;-0.970230,-0.241435,-0.001399,-0.000676;;, + 178;4;-0.969925,-0.243215,-0.000348,-0.000168;;, + 179;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 180;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 181;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 182;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 183;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 184;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 185;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 186;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 187;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 188;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 189;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 190;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 191;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 192;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 193;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 194;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 195;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 196;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 197;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 198;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 199;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 200;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 201;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 202;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 203;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 204;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 205;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 206;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 207;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 208;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 209;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 210;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 211;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 212;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 213;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 214;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 215;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 216;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 217;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 218;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 219;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 220;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 221;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 222;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 223;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 224;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 225;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 226;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 227;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 228;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 229;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 230;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 231;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 232;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 233;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 234;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 235;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 236;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 237;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 238;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 239;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 240;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 241;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 242;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 243;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 244;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 245;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 246;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 247;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 248;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 249;4;-0.969825,-0.243803,-0.000000, 0.000000;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3;-0.000000, 1.228416,-0.000000;;, + 1;3;-0.000000, 1.228416,-0.000000;;, + 2;3;-0.000000, 1.228416,-0.000000;;, + 3;3;-0.000000, 1.228416,-0.000000;;, + 4;3;-0.000000, 1.228416,-0.000000;;, + 5;3;-0.000000, 1.228416,-0.000000;;, + 6;3;-0.000000, 1.228416,-0.000000;;, + 7;3;-0.000000, 1.228416,-0.000000;;, + 8;3;-0.000000, 1.228416,-0.000000;;, + 9;3;-0.000000, 1.228416,-0.000000;;, + 10;3;-0.000000, 1.228416,-0.000000;;, + 11;3;-0.000000, 1.228416,-0.000000;;, + 12;3;-0.000000, 1.228416,-0.000000;;, + 13;3;-0.000000, 1.228416,-0.000000;;, + 14;3;-0.000000, 1.228416,-0.000000;;, + 15;3;-0.000000, 1.228416,-0.000000;;, + 16;3;-0.000000, 1.228416,-0.000000;;, + 17;3;-0.000000, 1.228416,-0.000000;;, + 18;3;-0.000000, 1.228416,-0.000000;;, + 19;3;-0.000000, 1.228416,-0.000000;;, + 20;3;-0.000000, 1.228416,-0.000000;;, + 21;3;-0.000000, 1.228416,-0.000000;;, + 22;3;-0.000000, 1.228416,-0.000000;;, + 23;3;-0.000000, 1.228416,-0.000000;;, + 24;3;-0.000000, 1.228416,-0.000000;;, + 25;3;-0.000000, 1.228416,-0.000000;;, + 26;3;-0.000000, 1.228416,-0.000000;;, + 27;3;-0.000000, 1.228416,-0.000000;;, + 28;3;-0.000000, 1.228416,-0.000000;;, + 29;3;-0.000000, 1.228416,-0.000000;;, + 30;3;-0.000000, 1.228416,-0.000000;;, + 31;3;-0.000000, 1.228416,-0.000000;;, + 32;3;-0.000000, 1.228416,-0.000000;;, + 33;3;-0.000000, 1.228416,-0.000000;;, + 34;3;-0.000000, 1.228416,-0.000000;;, + 35;3;-0.000000, 1.228416,-0.000000;;, + 36;3;-0.000000, 1.228416,-0.000000;;, + 37;3;-0.000000, 1.228416,-0.000000;;, + 38;3;-0.000000, 1.228416,-0.000000;;, + 39;3;-0.000000, 1.228416,-0.000000;;, + 40;3;-0.000000, 1.228416,-0.000000;;, + 41;3;-0.000000, 1.228416,-0.000000;;, + 42;3;-0.000000, 1.228416,-0.000000;;, + 43;3;-0.000000, 1.228416,-0.000000;;, + 44;3;-0.000000, 1.228416,-0.000000;;, + 45;3;-0.000000, 1.228416,-0.000000;;, + 46;3;-0.000000, 1.228416,-0.000000;;, + 47;3;-0.000000, 1.228416,-0.000000;;, + 48;3;-0.000000, 1.228416,-0.000000;;, + 49;3;-0.000000, 1.228416,-0.000000;;, + 50;3;-0.000000, 1.228416,-0.000000;;, + 51;3;-0.000000, 1.228416,-0.000000;;, + 52;3;-0.000000, 1.228416,-0.000000;;, + 53;3;-0.000000, 1.228416,-0.000000;;, + 54;3;-0.000000, 1.228416,-0.000000;;, + 55;3;-0.000000, 1.228416,-0.000000;;, + 56;3;-0.000000, 1.228416,-0.000000;;, + 57;3;-0.000000, 1.228416,-0.000000;;, + 58;3;-0.000000, 1.228416,-0.000000;;, + 59;3;-0.000000, 1.228416,-0.000000;;, + 60;3;-0.000000, 1.228417,-0.000000;;, + 61;3;-0.000000, 1.228416, 0.000000;;, + 62;3;-0.000000, 1.228416, 0.000000;;, + 63;3;-0.000000, 1.228416, 0.000000;;, + 64;3; 0.000000, 1.228416, 0.000000;;, + 65;3;-0.000000, 1.228416,-0.000000;;, + 66;3;-0.000000, 1.228417, 0.000000;;, + 67;3; 0.000000, 1.228417, 0.000000;;, + 68;3; 0.000000, 1.228417,-0.000000;;, + 69;3; 0.000000, 1.228416,-0.000000;;, + 70;3;-0.000000, 1.228417,-0.000000;;, + 71;3;-0.000000, 1.228416, 0.000000;;, + 72;3;-0.000000, 1.228417, 0.000000;;, + 73;3; 0.000000, 1.228416, 0.000000;;, + 74;3;-0.000000, 1.228417, 0.000000;;, + 75;3;-0.000000, 1.228417, 0.000000;;, + 76;3;-0.000000, 1.228416, 0.000000;;, + 77;3; 0.000000, 1.228417, 0.000000;;, + 78;3;-0.000000, 1.228417,-0.000000;;, + 79;3;-0.000000, 1.228417,-0.000000;;, + 80;3;-0.000000, 1.228417, 0.000000;;, + 81;3;-0.000001, 1.228416, 0.000000;;, + 82;3;-0.000000, 1.228416,-0.000000;;, + 83;3; 0.000000, 1.228416, 0.000000;;, + 84;3;-0.000000, 1.228416, 0.000000;;, + 85;3;-0.000000, 1.228417,-0.000000;;, + 86;3;-0.000000, 1.228416, 0.000000;;, + 87;3;-0.000000, 1.228416,-0.000000;;, + 88;3;-0.000000, 1.228416, 0.000000;;, + 89;3; 0.000000, 1.228416,-0.000000;;, + 90;3;-0.000000, 1.228417, 0.000000;;, + 91;3;-0.000000, 1.228417,-0.000000;;, + 92;3;-0.000000, 1.228416,-0.000000;;, + 93;3; 0.000000, 1.228417,-0.000000;;, + 94;3; 0.000000, 1.228416, 0.000000;;, + 95;3;-0.000000, 1.228417,-0.000000;;, + 96;3; 0.000000, 1.228417,-0.000000;;, + 97;3;-0.000000, 1.228416,-0.000000;;, + 98;3; 0.000000, 1.228417, 0.000000;;, + 99;3;-0.000000, 1.228416,-0.000000;;, + 100;3;-0.000000, 1.228416, 0.000000;;, + 101;3;-0.000000, 1.228417, 0.000000;;, + 102;3;-0.000000, 1.228416,-0.000000;;, + 103;3;-0.000000, 1.228416,-0.000000;;, + 104;3;-0.000000, 1.228416,-0.000000;;, + 105;3;-0.000000, 1.228416,-0.000000;;, + 106;3; 0.000000, 1.228416, 0.000000;;, + 107;3;-0.000000, 1.228416, 0.000000;;, + 108;3; 0.000000, 1.228416,-0.000000;;, + 109;3; 0.000000, 1.228416,-0.000000;;, + 110;3; 0.000000, 1.228416, 0.000000;;, + 111;3; 0.000000, 1.228417, 0.000000;;, + 112;3; 0.000000, 1.228416,-0.000000;;, + 113;3; 0.000000, 1.228416,-0.000000;;, + 114;3;-0.000000, 1.228416,-0.000000;;, + 115;3; 0.000000, 1.228417,-0.000000;;, + 116;3; 0.000000, 1.228416, 0.000000;;, + 117;3;-0.000000, 1.228416, 0.000000;;, + 118;3;-0.000000, 1.228416,-0.000000;;, + 119;3;-0.000000, 1.228416,-0.000000;;, + 120;3;-0.000000, 1.228416, 0.000000;;, + 121;3;-0.000000, 1.228416,-0.000000;;, + 122;3; 0.000000, 1.228416,-0.000000;;, + 123;3; 0.000000, 1.228417,-0.000000;;, + 124;3; 0.000000, 1.228417,-0.000000;;, + 125;3; 0.000000, 1.228416, 0.000000;;, + 126;3; 0.000000, 1.228417, 0.000000;;, + 127;3;-0.000000, 1.228416, 0.000000;;, + 128;3; 0.000000, 1.228416,-0.000000;;, + 129;3;-0.000000, 1.228417, 0.000000;;, + 130;3;-0.000000, 1.228416,-0.000000;;, + 131;3; 0.000000, 1.228416, 0.000000;;, + 132;3;-0.000000, 1.228416, 0.000000;;, + 133;3;-0.000000, 1.228417,-0.000000;;, + 134;3; 0.000000, 1.228417,-0.000000;;, + 135;3; 0.000000, 1.228416, 0.000000;;, + 136;3;-0.000000, 1.228417,-0.000000;;, + 137;3; 0.000000, 1.228416, 0.000000;;, + 138;3; 0.000000, 1.228417, 0.000000;;, + 139;3;-0.000000, 1.228416,-0.000000;;, + 140;3; 0.000000, 1.228416, 0.000000;;, + 141;3; 0.000000, 1.228417,-0.000000;;, + 142;3;-0.000000, 1.228416, 0.000000;;, + 143;3;-0.000000, 1.228416,-0.000000;;, + 144;3; 0.000000, 1.228416,-0.000000;;, + 145;3; 0.000000, 1.228417, 0.000000;;, + 146;3; 0.000000, 1.228416,-0.000000;;, + 147;3; 0.000000, 1.228417,-0.000000;;, + 148;3;-0.000000, 1.228416, 0.000000;;, + 149;3;-0.000000, 1.228416,-0.000000;;, + 150;3;-0.000000, 1.228416,-0.000000;;, + 151;3; 0.000000, 1.228417,-0.000000;;, + 152;3; 0.000000, 1.228416, 0.000000;;, + 153;3;-0.000000, 1.228416, 0.000000;;, + 154;3;-0.000000, 1.228417, 0.000000;;, + 155;3;-0.000000, 1.228416, 0.000000;;, + 156;3;-0.000000, 1.228417, 0.000000;;, + 157;3;-0.000000, 1.228417, 0.000000;;, + 158;3;-0.000000, 1.228416,-0.000000;;, + 159;3;-0.000000, 1.228416,-0.000000;;, + 160;3;-0.000000, 1.228417,-0.000000;;, + 161;3;-0.000000, 1.228417,-0.000000;;, + 162;3;-0.000000, 1.228417, 0.000000;;, + 163;3;-0.000000, 1.228416, 0.000000;;, + 164;3;-0.000000, 1.228416,-0.000000;;, + 165;3;-0.000000, 1.228416,-0.000000;;, + 166;3; 0.000000, 1.228417,-0.000000;;, + 167;3;-0.000000, 1.228416,-0.000000;;, + 168;3; 0.000000, 1.228416,-0.000000;;, + 169;3;-0.000000, 1.228416, 0.000000;;, + 170;3;-0.000000, 1.228416, 0.000000;;, + 171;3;-0.000000, 1.228416,-0.000000;;, + 172;3;-0.000000, 1.228416,-0.000000;;, + 173;3;-0.000000, 1.228416, 0.000000;;, + 174;3;-0.000000, 1.228417,-0.000000;;, + 175;3;-0.000000, 1.228416, 0.000000;;, + 176;3;-0.000000, 1.228416,-0.000000;;, + 177;3;-0.000000, 1.228417, 0.000000;;, + 178;3; 0.000000, 1.228417, 0.000000;;, + 179;3;-0.000000, 1.228416,-0.000000;;, + 180;3; 0.000000, 1.228417, 0.000000;;, + 181;3;-0.000000, 1.228416, 0.000000;;, + 182;3; 0.000000, 1.228417,-0.000000;;, + 183;3;-0.000000, 1.228416, 0.000000;;, + 184;3; 0.000000, 1.228416,-0.000000;;, + 185;3;-0.000000, 1.228416,-0.000000;;, + 186;3; 0.000000, 1.228416,-0.000000;;, + 187;3; 0.000000, 1.228416,-0.000000;;, + 188;3;-0.000000, 1.228417, 0.000000;;, + 189;3;-0.000000, 1.228416, 0.000000;;, + 190;3;-0.000000, 1.228416, 0.000000;;, + 191;3; 0.000000, 1.228416, 0.000000;;, + 192;3; 0.000000, 1.228416, 0.000000;;, + 193;3; 0.000000, 1.228416, 0.000000;;, + 194;3; 0.000000, 1.228416, 0.000000;;, + 195;3;-0.000000, 1.228417, 0.000000;;, + 196;3; 0.000000, 1.228417, 0.000000;;, + 197;3; 0.000000, 1.228417,-0.000000;;, + 198;3;-0.000000, 1.228417, 0.000000;;, + 199;3;-0.000000, 1.228416,-0.000000;;, + 200;3;-0.000000, 1.228416,-0.000000;;, + 201;3;-0.000000, 1.228416,-0.000000;;, + 202;3;-0.000000, 1.228416,-0.000000;;, + 203;3;-0.000000, 1.228416,-0.000000;;, + 204;3;-0.000000, 1.228416,-0.000000;;, + 205;3;-0.000000, 1.228416,-0.000000;;, + 206;3;-0.000000, 1.228416,-0.000000;;, + 207;3;-0.000000, 1.228416,-0.000000;;, + 208;3;-0.000000, 1.228416,-0.000000;;, + 209;3;-0.000000, 1.228416,-0.000000;;, + 210;3;-0.000000, 1.228416,-0.000000;;, + 211;3;-0.000000, 1.228416,-0.000000;;, + 212;3;-0.000000, 1.228416,-0.000000;;, + 213;3;-0.000000, 1.228416,-0.000000;;, + 214;3;-0.000000, 1.228416,-0.000000;;, + 215;3;-0.000000, 1.228416,-0.000000;;, + 216;3;-0.000000, 1.228416,-0.000000;;, + 217;3;-0.000000, 1.228416,-0.000000;;, + 218;3;-0.000000, 1.228416,-0.000000;;, + 219;3;-0.000000, 1.228416,-0.000000;;, + 220;3;-0.000000, 1.228416,-0.000000;;, + 221;3;-0.000000, 1.228416,-0.000000;;, + 222;3;-0.000000, 1.228416,-0.000000;;, + 223;3;-0.000000, 1.228416,-0.000000;;, + 224;3;-0.000000, 1.228416,-0.000000;;, + 225;3;-0.000000, 1.228416,-0.000000;;, + 226;3;-0.000000, 1.228416,-0.000000;;, + 227;3;-0.000000, 1.228416,-0.000000;;, + 228;3;-0.000000, 1.228416,-0.000000;;, + 229;3;-0.000000, 1.228416,-0.000000;;, + 230;3;-0.000000, 1.228416,-0.000000;;, + 231;3;-0.000000, 1.228416,-0.000000;;, + 232;3;-0.000000, 1.228416,-0.000000;;, + 233;3;-0.000000, 1.228416,-0.000000;;, + 234;3;-0.000000, 1.228416,-0.000000;;, + 235;3;-0.000000, 1.228416,-0.000000;;, + 236;3;-0.000000, 1.228416,-0.000000;;, + 237;3;-0.000000, 1.228416,-0.000000;;, + 238;3;-0.000000, 1.228416,-0.000000;;, + 239;3;-0.000000, 1.228416,-0.000000;;, + 240;3;-0.000000, 1.228416,-0.000000;;, + 241;3;-0.000000, 1.228416,-0.000000;;, + 242;3;-0.000000, 1.228416,-0.000000;;, + 243;3;-0.000000, 1.228416,-0.000000;;, + 244;3;-0.000000, 1.228416,-0.000000;;, + 245;3;-0.000000, 1.228416,-0.000000;;, + 246;3;-0.000000, 1.228416,-0.000000;;, + 247;3;-0.000000, 1.228416,-0.000000;;, + 248;3;-0.000000, 1.228416,-0.000000;;, + 249;3;-0.000000, 1.228416,-0.000000;;; + } + } + Animation { + {Armature_Bone_010} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 1;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 2;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 3;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 4;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 5;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 6;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 7;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 8;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 9;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 10;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 11;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 12;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 13;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 14;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 15;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 16;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 17;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 18;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 19;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 20;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 21;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 22;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 23;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 24;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 25;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 26;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 27;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 28;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 29;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 30;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 31;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 32;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 33;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 34;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 35;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 36;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 37;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 38;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 39;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 40;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 41;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 42;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 43;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 44;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 45;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 46;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 47;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 48;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 49;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 50;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 51;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 52;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 53;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 54;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 55;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 56;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 57;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 58;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 59;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 60;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 61;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 62;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 63;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 64;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 65;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 66;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 67;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 68;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 69;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 70;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 71;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 72;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 73;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 74;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 75;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 76;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 77;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 78;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 79;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 80;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 81;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 82;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 83;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 84;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 85;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 86;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 87;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 88;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 89;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 90;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 91;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 92;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 93;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 94;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 95;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 96;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 97;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 98;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 99;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 100;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 101;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 102;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 103;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 104;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 105;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 106;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 107;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 108;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 109;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 110;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 111;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 112;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 113;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 114;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 115;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 116;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 117;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 118;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 119;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 120;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 121;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 122;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 123;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 124;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 125;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 126;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 127;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 128;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 129;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 130;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 131;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 132;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 133;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 134;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 135;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 136;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 137;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 138;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 139;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 140;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 141;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 142;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 143;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 144;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 145;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 146;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 147;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 148;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 149;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 150;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 151;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 152;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 153;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 154;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 155;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 156;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 157;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 158;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 159;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 160;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 161;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 162;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 163;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 164;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 165;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 166;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 167;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 168;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 169;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 170;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 171;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 172;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 173;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 174;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 175;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 176;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 177;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 178;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 179;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 180;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 181;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 182;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 183;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 184;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 185;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 186;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 187;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 188;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 189;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 190;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 191;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 192;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 193;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 194;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 195;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 196;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 197;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 198;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 199;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 200;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 201;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 202;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 203;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 204;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 205;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 206;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 207;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 208;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 209;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 210;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 211;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 212;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 213;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 214;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 215;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 216;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 217;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 218;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 219;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 220;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 221;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 222;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 223;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 224;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 225;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 226;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 227;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 228;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 229;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 230;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 231;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 232;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 233;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 234;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 235;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 236;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 237;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 238;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 239;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 240;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 241;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 242;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 243;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 244;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 245;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 246;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 247;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 248;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 249;4;-0.527685, 0.000000,-0.000000, 0.849440;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3; 0.000000, 0.826434, 0.000000;;, + 1;3; 0.000000, 0.826434, 0.000000;;, + 2;3; 0.000000, 0.826434, 0.000000;;, + 3;3; 0.000000, 0.826434, 0.000000;;, + 4;3; 0.000000, 0.826434, 0.000000;;, + 5;3; 0.000000, 0.826434, 0.000000;;, + 6;3; 0.000000, 0.826434, 0.000000;;, + 7;3; 0.000000, 0.826434, 0.000000;;, + 8;3; 0.000000, 0.826434, 0.000000;;, + 9;3; 0.000000, 0.826434, 0.000000;;, + 10;3; 0.000000, 0.826434, 0.000000;;, + 11;3; 0.000000, 0.826434, 0.000000;;, + 12;3; 0.000000, 0.826434, 0.000000;;, + 13;3; 0.000000, 0.826434, 0.000000;;, + 14;3; 0.000000, 0.826434, 0.000000;;, + 15;3; 0.000000, 0.826434, 0.000000;;, + 16;3; 0.000000, 0.826434, 0.000000;;, + 17;3; 0.000000, 0.826434, 0.000000;;, + 18;3; 0.000000, 0.826434, 0.000000;;, + 19;3; 0.000000, 0.826434, 0.000000;;, + 20;3; 0.000000, 0.826434, 0.000000;;, + 21;3; 0.000000, 0.826434, 0.000000;;, + 22;3; 0.000000, 0.826434, 0.000000;;, + 23;3; 0.000000, 0.826434, 0.000000;;, + 24;3; 0.000000, 0.826434, 0.000000;;, + 25;3; 0.000000, 0.826434, 0.000000;;, + 26;3; 0.000000, 0.826434, 0.000000;;, + 27;3; 0.000000, 0.826434, 0.000000;;, + 28;3; 0.000000, 0.826434, 0.000000;;, + 29;3; 0.000000, 0.826434, 0.000000;;, + 30;3; 0.000000, 0.826434, 0.000000;;, + 31;3; 0.000000, 0.826434, 0.000000;;, + 32;3; 0.000000, 0.826434, 0.000000;;, + 33;3; 0.000000, 0.826434, 0.000000;;, + 34;3; 0.000000, 0.826434, 0.000000;;, + 35;3; 0.000000, 0.826434, 0.000000;;, + 36;3; 0.000000, 0.826434, 0.000000;;, + 37;3; 0.000000, 0.826434, 0.000000;;, + 38;3; 0.000000, 0.826434, 0.000000;;, + 39;3; 0.000000, 0.826434, 0.000000;;, + 40;3; 0.000000, 0.826434, 0.000000;;, + 41;3; 0.000000, 0.826434, 0.000000;;, + 42;3; 0.000000, 0.826434, 0.000000;;, + 43;3; 0.000000, 0.826434, 0.000000;;, + 44;3; 0.000000, 0.826434, 0.000000;;, + 45;3; 0.000000, 0.826434, 0.000000;;, + 46;3; 0.000000, 0.826434, 0.000000;;, + 47;3; 0.000000, 0.826434, 0.000000;;, + 48;3; 0.000000, 0.826434, 0.000000;;, + 49;3; 0.000000, 0.826434, 0.000000;;, + 50;3; 0.000000, 0.826434, 0.000000;;, + 51;3; 0.000000, 0.826434, 0.000000;;, + 52;3; 0.000000, 0.826434, 0.000000;;, + 53;3; 0.000000, 0.826434, 0.000000;;, + 54;3; 0.000000, 0.826434, 0.000000;;, + 55;3; 0.000000, 0.826434, 0.000000;;, + 56;3; 0.000000, 0.826434, 0.000000;;, + 57;3; 0.000000, 0.826434, 0.000000;;, + 58;3; 0.000000, 0.826434, 0.000000;;, + 59;3; 0.000000, 0.826434, 0.000000;;, + 60;3; 0.000000, 0.826434, 0.000000;;, + 61;3; 0.000000, 0.826434, 0.000000;;, + 62;3; 0.000000, 0.826434, 0.000000;;, + 63;3; 0.000000, 0.826434, 0.000000;;, + 64;3; 0.000000, 0.826434, 0.000000;;, + 65;3; 0.000000, 0.826434, 0.000000;;, + 66;3; 0.000000, 0.826434, 0.000000;;, + 67;3; 0.000000, 0.826434, 0.000000;;, + 68;3; 0.000000, 0.826434, 0.000000;;, + 69;3; 0.000000, 0.826434, 0.000000;;, + 70;3; 0.000000, 0.826434, 0.000000;;, + 71;3; 0.000000, 0.826434, 0.000000;;, + 72;3; 0.000000, 0.826434, 0.000000;;, + 73;3; 0.000000, 0.826434, 0.000000;;, + 74;3; 0.000000, 0.826434, 0.000000;;, + 75;3; 0.000000, 0.826434, 0.000000;;, + 76;3; 0.000000, 0.826434, 0.000000;;, + 77;3; 0.000000, 0.826434, 0.000000;;, + 78;3; 0.000000, 0.826434, 0.000000;;, + 79;3; 0.000000, 0.826434, 0.000000;;, + 80;3; 0.000000, 0.826434, 0.000000;;, + 81;3; 0.000000, 0.826434, 0.000000;;, + 82;3; 0.000000, 0.826434, 0.000000;;, + 83;3; 0.000000, 0.826434, 0.000000;;, + 84;3; 0.000000, 0.826434, 0.000000;;, + 85;3; 0.000000, 0.826434, 0.000000;;, + 86;3; 0.000000, 0.826434, 0.000000;;, + 87;3; 0.000000, 0.826434, 0.000000;;, + 88;3; 0.000000, 0.826434, 0.000000;;, + 89;3; 0.000000, 0.826434, 0.000000;;, + 90;3; 0.000000, 0.826434, 0.000000;;, + 91;3; 0.000000, 0.826434, 0.000000;;, + 92;3; 0.000000, 0.826434, 0.000000;;, + 93;3; 0.000000, 0.826434, 0.000000;;, + 94;3; 0.000000, 0.826434, 0.000000;;, + 95;3; 0.000000, 0.826434, 0.000000;;, + 96;3; 0.000000, 0.826434, 0.000000;;, + 97;3; 0.000000, 0.826434, 0.000000;;, + 98;3; 0.000000, 0.826434, 0.000000;;, + 99;3; 0.000000, 0.826434, 0.000000;;, + 100;3; 0.000000, 0.826434, 0.000000;;, + 101;3; 0.000000, 0.826434, 0.000000;;, + 102;3; 0.000000, 0.826434, 0.000000;;, + 103;3; 0.000000, 0.826434, 0.000000;;, + 104;3; 0.000000, 0.826434, 0.000000;;, + 105;3; 0.000000, 0.826434, 0.000000;;, + 106;3; 0.000000, 0.826434, 0.000000;;, + 107;3; 0.000000, 0.826434, 0.000000;;, + 108;3; 0.000000, 0.826434, 0.000000;;, + 109;3; 0.000000, 0.826434, 0.000000;;, + 110;3; 0.000000, 0.826434, 0.000000;;, + 111;3; 0.000000, 0.826434, 0.000000;;, + 112;3; 0.000000, 0.826434, 0.000000;;, + 113;3; 0.000000, 0.826434, 0.000000;;, + 114;3; 0.000000, 0.826434, 0.000000;;, + 115;3; 0.000000, 0.826434, 0.000000;;, + 116;3; 0.000000, 0.826434, 0.000000;;, + 117;3; 0.000000, 0.826434, 0.000000;;, + 118;3; 0.000000, 0.826434, 0.000000;;, + 119;3; 0.000000, 0.826434, 0.000000;;, + 120;3; 0.000000, 0.826434, 0.000000;;, + 121;3; 0.000000, 0.826434, 0.000000;;, + 122;3; 0.000000, 0.826434, 0.000000;;, + 123;3; 0.000000, 0.826434, 0.000000;;, + 124;3; 0.000000, 0.826434, 0.000000;;, + 125;3; 0.000000, 0.826434, 0.000000;;, + 126;3; 0.000000, 0.826434, 0.000000;;, + 127;3; 0.000000, 0.826434, 0.000000;;, + 128;3; 0.000000, 0.826434, 0.000000;;, + 129;3; 0.000000, 0.826434, 0.000000;;, + 130;3; 0.000000, 0.826434, 0.000000;;, + 131;3; 0.000000, 0.826434, 0.000000;;, + 132;3; 0.000000, 0.826434, 0.000000;;, + 133;3; 0.000000, 0.826434, 0.000000;;, + 134;3; 0.000000, 0.826434, 0.000000;;, + 135;3; 0.000000, 0.826434, 0.000000;;, + 136;3; 0.000000, 0.826434, 0.000000;;, + 137;3; 0.000000, 0.826434, 0.000000;;, + 138;3; 0.000000, 0.826434, 0.000000;;, + 139;3; 0.000000, 0.826434, 0.000000;;, + 140;3; 0.000000, 0.826434, 0.000000;;, + 141;3; 0.000000, 0.826434, 0.000000;;, + 142;3; 0.000000, 0.826434, 0.000000;;, + 143;3; 0.000000, 0.826434, 0.000000;;, + 144;3; 0.000000, 0.826434, 0.000000;;, + 145;3; 0.000000, 0.826434, 0.000000;;, + 146;3; 0.000000, 0.826434, 0.000000;;, + 147;3; 0.000000, 0.826434, 0.000000;;, + 148;3; 0.000000, 0.826434, 0.000000;;, + 149;3; 0.000000, 0.826434, 0.000000;;, + 150;3; 0.000000, 0.826434, 0.000000;;, + 151;3; 0.000000, 0.826434, 0.000000;;, + 152;3; 0.000000, 0.826434, 0.000000;;, + 153;3; 0.000000, 0.826434, 0.000000;;, + 154;3; 0.000000, 0.826434, 0.000000;;, + 155;3; 0.000000, 0.826434, 0.000000;;, + 156;3; 0.000000, 0.826434, 0.000000;;, + 157;3; 0.000000, 0.826434, 0.000000;;, + 158;3; 0.000000, 0.826434, 0.000000;;, + 159;3; 0.000000, 0.826434, 0.000000;;, + 160;3; 0.000000, 0.826434, 0.000000;;, + 161;3; 0.000000, 0.826434, 0.000000;;, + 162;3; 0.000000, 0.826434, 0.000000;;, + 163;3; 0.000000, 0.826434, 0.000000;;, + 164;3; 0.000000, 0.826434, 0.000000;;, + 165;3; 0.000000, 0.826434, 0.000000;;, + 166;3; 0.000000, 0.826434, 0.000000;;, + 167;3; 0.000000, 0.826434, 0.000000;;, + 168;3; 0.000000, 0.826434, 0.000000;;, + 169;3; 0.000000, 0.826434, 0.000000;;, + 170;3; 0.000000, 0.826434, 0.000000;;, + 171;3; 0.000000, 0.826434, 0.000000;;, + 172;3; 0.000000, 0.826434, 0.000000;;, + 173;3; 0.000000, 0.826434, 0.000000;;, + 174;3; 0.000000, 0.826434, 0.000000;;, + 175;3; 0.000000, 0.826434, 0.000000;;, + 176;3; 0.000000, 0.826434, 0.000000;;, + 177;3; 0.000000, 0.826434, 0.000000;;, + 178;3; 0.000000, 0.826434, 0.000000;;, + 179;3; 0.000000, 0.826434, 0.000000;;, + 180;3; 0.000000, 0.826434, 0.000000;;, + 181;3; 0.000000, 0.826434, 0.000000;;, + 182;3; 0.000000, 0.826434, 0.000000;;, + 183;3; 0.000000, 0.826434, 0.000000;;, + 184;3; 0.000000, 0.826434, 0.000000;;, + 185;3; 0.000000, 0.826434, 0.000000;;, + 186;3;-0.000000, 0.826434,-0.000000;;, + 187;3;-0.000000, 0.826434,-0.000000;;, + 188;3;-0.000000, 0.826434, 0.000000;;, + 189;3;-0.000000, 0.826434, 0.000000;;, + 190;3;-0.000000, 0.826434,-0.000000;;, + 191;3; 0.000000, 0.826434, 0.000000;;, + 192;3; 0.000000, 0.826434, 0.000000;;, + 193;3; 0.000000, 0.826434, 0.000000;;, + 194;3; 0.000000, 0.826434,-0.000000;;, + 195;3; 0.000000, 0.826434,-0.000000;;, + 196;3; 0.000000, 0.826434, 0.000000;;, + 197;3; 0.000000, 0.826434,-0.000000;;, + 198;3; 0.000000, 0.826434,-0.000000;;, + 199;3; 0.000000, 0.826434, 0.000000;;, + 200;3; 0.000000, 0.826434, 0.000000;;, + 201;3; 0.000000, 0.826434, 0.000000;;, + 202;3; 0.000000, 0.826434, 0.000000;;, + 203;3; 0.000000, 0.826434, 0.000000;;, + 204;3; 0.000000, 0.826434, 0.000000;;, + 205;3; 0.000000, 0.826434, 0.000000;;, + 206;3; 0.000000, 0.826434, 0.000000;;, + 207;3; 0.000000, 0.826434, 0.000000;;, + 208;3; 0.000000, 0.826434, 0.000000;;, + 209;3; 0.000000, 0.826434, 0.000000;;, + 210;3; 0.000000, 0.826434, 0.000000;;, + 211;3; 0.000000, 0.826434, 0.000000;;, + 212;3; 0.000000, 0.826434, 0.000000;;, + 213;3; 0.000000, 0.826434, 0.000000;;, + 214;3; 0.000000, 0.826434, 0.000000;;, + 215;3; 0.000000, 0.826434, 0.000000;;, + 216;3; 0.000000, 0.826434, 0.000000;;, + 217;3; 0.000000, 0.826434, 0.000000;;, + 218;3; 0.000000, 0.826434, 0.000000;;, + 219;3; 0.000000, 0.826434, 0.000000;;, + 220;3; 0.000000, 0.826434, 0.000000;;, + 221;3; 0.000000, 0.826434, 0.000000;;, + 222;3; 0.000000, 0.826434, 0.000000;;, + 223;3; 0.000000, 0.826434, 0.000000;;, + 224;3; 0.000000, 0.826434, 0.000000;;, + 225;3; 0.000000, 0.826434, 0.000000;;, + 226;3; 0.000000, 0.826434, 0.000000;;, + 227;3; 0.000000, 0.826434, 0.000000;;, + 228;3; 0.000000, 0.826434, 0.000000;;, + 229;3; 0.000000, 0.826434, 0.000000;;, + 230;3; 0.000000, 0.826434, 0.000000;;, + 231;3; 0.000000, 0.826434, 0.000000;;, + 232;3; 0.000000, 0.826434, 0.000000;;, + 233;3; 0.000000, 0.826434, 0.000000;;, + 234;3; 0.000000, 0.826434, 0.000000;;, + 235;3; 0.000000, 0.826434, 0.000000;;, + 236;3; 0.000000, 0.826434, 0.000000;;, + 237;3; 0.000000, 0.826434, 0.000000;;, + 238;3; 0.000000, 0.826434, 0.000000;;, + 239;3; 0.000000, 0.826434, 0.000000;;, + 240;3; 0.000000, 0.826434, 0.000000;;, + 241;3; 0.000000, 0.826434, 0.000000;;, + 242;3; 0.000000, 0.826434, 0.000000;;, + 243;3; 0.000000, 0.826434, 0.000000;;, + 244;3; 0.000000, 0.826434, 0.000000;;, + 245;3; 0.000000, 0.826434, 0.000000;;, + 246;3; 0.000000, 0.826434, 0.000000;;, + 247;3; 0.000000, 0.826434, 0.000000;;, + 248;3; 0.000000, 0.826434, 0.000000;;, + 249;3; 0.000000, 0.826434, 0.000000;;; + } + } + Animation { + {Armature_Bone_030} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 1;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 2;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 3;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 4;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 5;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 6;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 7;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 8;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 9;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 10;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 11;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 12;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 13;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 14;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 15;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 16;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 17;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 18;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 19;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 20;4;-0.989934, 0.106238,-0.009968,-0.092884;;, + 21;4;-0.989819, 0.106226,-0.010069,-0.093822;;, + 22;4;-0.989627, 0.106205,-0.010237,-0.095391;;, + 23;4;-0.989359, 0.106176,-0.010472,-0.097580;;, + 24;4;-0.989019, 0.106140,-0.010771,-0.100361;;, + 25;4;-0.988612, 0.106096,-0.011128,-0.103689;;, + 26;4;-0.988146, 0.106046,-0.011536,-0.107492;;, + 27;4;-0.987634, 0.105991,-0.011985,-0.111679;;, + 28;4;-0.987088, 0.105933,-0.012463,-0.116135;;, + 29;4;-0.986526, 0.105872,-0.012957,-0.120731;;, + 30;4;-0.985964, 0.105812,-0.013450,-0.125327;;, + 31;4;-0.985418, 0.105753,-0.013928,-0.129783;;, + 32;4;-0.984906, 0.105698,-0.014377,-0.133970;;, + 33;4;-0.984440, 0.105648,-0.014786,-0.137773;;, + 34;4;-0.984033, 0.105605,-0.015143,-0.141101;;, + 35;4;-0.983693, 0.105568,-0.015441,-0.143882;;, + 36;4;-0.983425, 0.105539,-0.015676,-0.146071;;, + 37;4;-0.983233, 0.105519,-0.015844,-0.147640;;, + 38;4;-0.983118, 0.105506,-0.015945,-0.148578;;, + 39;4;-0.983080, 0.105502,-0.015978,-0.148888;;, + 40;4;-0.983138, 0.105506,-0.015945,-0.148584;;, + 41;4;-0.983310, 0.105519,-0.015844,-0.147665;;, + 42;4;-0.983596, 0.105539,-0.015676,-0.146127;;, + 43;4;-0.983990, 0.105568,-0.015441,-0.143980;;, + 44;4;-0.984485, 0.105605,-0.015143,-0.141249;;, + 45;4;-0.985067, 0.105648,-0.014786,-0.137979;;, + 46;4;-0.985720, 0.105698,-0.014377,-0.134237;;, + 47;4;-0.986423, 0.105753,-0.013928,-0.130112;;, + 48;4;-0.987151, 0.105812,-0.013450,-0.125716;;, + 49;4;-0.987875, 0.105872,-0.012957,-0.121173;;, + 50;4;-0.988567, 0.105933,-0.012463,-0.116620;;, + 51;4;-0.989199, 0.105991,-0.011985,-0.112192;;, + 52;4;-0.989745, 0.106046,-0.011536,-0.108016;;, + 53;4;-0.990184, 0.106096,-0.011128,-0.104204;;, + 54;4;-0.990500, 0.106140,-0.010771,-0.100847;;, + 55;4;-0.990680, 0.106176,-0.010472,-0.098013;;, + 56;4;-0.990719, 0.106205,-0.010237,-0.095749;;, + 57;4;-0.990613, 0.106226,-0.010069,-0.094083;;, + 58;4;-0.990363, 0.106238,-0.009968,-0.093025;;, + 59;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 60;4;-0.989514, 0.106358,-0.009979,-0.092424;;, + 61;4;-0.989061, 0.106711,-0.010114,-0.092277;;, + 62;4;-0.988614, 0.107305,-0.010342,-0.092131;;, + 63;4;-0.988170, 0.108146,-0.010664,-0.091988;;, + 64;4;-0.987730, 0.109238,-0.011083,-0.091847;;, + 65;4;-0.987292, 0.110585,-0.011599,-0.091708;;, + 66;4;-0.986856, 0.112190,-0.012214,-0.091571;;, + 67;4;-0.986420, 0.114053,-0.012929,-0.091435;;, + 68;4;-0.985983, 0.116175,-0.013742,-0.091301;;, + 69;4;-0.985544, 0.118554,-0.014655,-0.091167;;, + 70;4;-0.985101, 0.121188,-0.015665,-0.091034;;, + 71;4;-0.984653, 0.124071,-0.016771,-0.090902;;, + 72;4;-0.984198, 0.127196,-0.017971,-0.090769;;, + 73;4;-0.983735, 0.130555,-0.019260,-0.090636;;, + 74;4;-0.983261, 0.134136,-0.020635,-0.090503;;, + 75;4;-0.982774, 0.137926,-0.022091,-0.090368;;, + 76;4;-0.982274, 0.141910,-0.023621,-0.090232;;, + 77;4;-0.981758, 0.146070,-0.025220,-0.090093;;, + 78;4;-0.981224, 0.150388,-0.026880,-0.089952;;, + 79;4;-0.980671, 0.154844,-0.028593,-0.089808;;, + 80;4;-0.980097, 0.159416,-0.030351,-0.089661;;, + 81;4;-0.979501, 0.164082,-0.032147,-0.089510;;, + 82;4;-0.978880, 0.168819,-0.033970,-0.089355;;, + 83;4;-0.978236, 0.173604,-0.035813,-0.089195;;, + 84;4;-0.977566, 0.178416,-0.037666,-0.089031;;, + 85;4;-0.976869, 0.183233,-0.039523,-0.088862;;, + 86;4;-0.976146, 0.188033,-0.041374,-0.088687;;, + 87;4;-0.975396, 0.192799,-0.043213,-0.088507;;, + 88;4;-0.974618, 0.197511,-0.045031,-0.088321;;, + 89;4;-0.973814, 0.202154,-0.046825,-0.088130;;, + 90;4;-0.972983, 0.206712,-0.048586,-0.087934;;, + 91;4;-0.972125, 0.211172,-0.050311,-0.087731;;, + 92;4;-0.971241, 0.215524,-0.051995,-0.087523;;, + 93;4;-0.970331, 0.219757,-0.053634,-0.087310;;, + 94;4;-0.969397, 0.223862,-0.055225,-0.087091;;, + 95;4;-0.968438, 0.227833,-0.056765,-0.086866;;, + 96;4;-0.967456, 0.231665,-0.058253,-0.086637;;, + 97;4;-0.966452, 0.235353,-0.059686,-0.086402;;, + 98;4;-0.965425, 0.238893,-0.061063,-0.086162;;, + 99;4;-0.964378, 0.242285,-0.062384,-0.085917;;, + 100;4;-0.963136, 0.245860,-0.063780,-0.085643;;, + 101;4;-0.961538, 0.249912,-0.065368,-0.085319;;, + 102;4;-0.959635, 0.254320,-0.067101,-0.084957;;, + 103;4;-0.957530, 0.258878,-0.068897,-0.084578;;, + 104;4;-0.955382, 0.263294,-0.070640,-0.084213;;, + 105;4;-0.953378, 0.267250,-0.072204,-0.083893;;, + 106;4;-0.951691, 0.270473,-0.073480,-0.083648;;, + 107;4;-0.950442, 0.272793,-0.074399,-0.083494;;, + 108;4;-0.949686, 0.274156,-0.074939,-0.083438;;, + 109;4;-0.949426, 0.274594,-0.075113,-0.083477;;, + 110;4;-0.950399, 0.269670,-0.073213,-0.083796;;, + 111;4;-0.953367, 0.254850,-0.067493,-0.084588;;, + 112;4;-0.958205, 0.230754,-0.058194,-0.085820;;, + 113;4;-0.964540, 0.199237,-0.046031,-0.087401;;, + 114;4;-0.971721, 0.163534,-0.032252,-0.089173;;, + 115;4;-0.978905, 0.127831,-0.018473,-0.090933;;, + 116;4;-0.985248, 0.096314,-0.006309,-0.092480;;, + 117;4;-0.990098, 0.072218, 0.002990,-0.093659;;, + 118;4;-0.993081, 0.057398, 0.008709,-0.094383;;, + 119;4;-0.994073, 0.052474, 0.010610,-0.094623;;, + 120;4;-0.993868, 0.053782, 0.010107,-0.094563;;, + 121;4;-0.993232, 0.057846, 0.008544,-0.094376;;, + 122;4;-0.992152, 0.064750, 0.005889,-0.094060;;, + 123;4;-0.990655, 0.074318, 0.002209,-0.093621;;, + 124;4;-0.988823, 0.086032,-0.002295,-0.093083;;, + 125;4;-0.986784, 0.099063,-0.007307,-0.092486;;, + 126;4;-0.984690, 0.112452,-0.012455,-0.091872;;, + 127;4;-0.982674, 0.125334,-0.017410,-0.091281;;, + 128;4;-0.980835, 0.137093,-0.021931,-0.090742;;, + 129;4;-0.979225, 0.147379,-0.025887,-0.090270;;, + 130;4;-0.977803, 0.156997,-0.029583,-0.089842;;, + 131;4;-0.976495, 0.166849,-0.033365,-0.089427;;, + 132;4;-0.975274, 0.176881,-0.037212,-0.089021;;, + 133;4;-0.974093, 0.186993,-0.041088,-0.088621;;, + 134;4;-0.972884, 0.197049,-0.044944,-0.088217;;, + 135;4;-0.971572, 0.206894,-0.048723,-0.087801;;, + 136;4;-0.970094, 0.216397,-0.052377,-0.087367;;, + 137;4;-0.968407, 0.225475,-0.055876,-0.086909;;, + 138;4;-0.966500, 0.234100,-0.059210,-0.086425;;, + 139;4;-0.964378, 0.242285,-0.062384,-0.085917;;, + 140;4;-0.961461, 0.250875,-0.065736,-0.085301;;, + 141;4;-0.957438, 0.260019,-0.069333,-0.084557;;, + 142;4;-0.953319, 0.267984,-0.072484,-0.083879;;, + 143;4;-0.950424, 0.273010,-0.074482,-0.083490;;, + 144;4;-0.949426, 0.274594,-0.075113,-0.083477;;, + 145;4;-0.953367, 0.254850,-0.067493,-0.084588;;, + 146;4;-0.964540, 0.199237,-0.046031,-0.087401;;, + 147;4;-0.978905, 0.127831,-0.018473,-0.090933;;, + 148;4;-0.990098, 0.072218, 0.002990,-0.093659;;, + 149;4;-0.994073, 0.052474, 0.010610,-0.094623;;, + 150;4;-0.993232, 0.057846, 0.008544,-0.094376;;, + 151;4;-0.990655, 0.074318, 0.002209,-0.093621;;, + 152;4;-0.986784, 0.099063,-0.007307,-0.092486;;, + 153;4;-0.982674, 0.125334,-0.017410,-0.091281;;, + 154;4;-0.979225, 0.147379,-0.025887,-0.090270;;, + 155;4;-0.975777, 0.169424,-0.034365,-0.089259;;, + 156;4;-0.971667, 0.195695,-0.044467,-0.088054;;, + 157;4;-0.967795, 0.220440,-0.053984,-0.086919;;, + 158;4;-0.965218, 0.236912,-0.060318,-0.086163;;, + 159;4;-0.964378, 0.242285,-0.062384,-0.085917;;, + 160;4;-0.964519, 0.242113,-0.062342,-0.085954;;, + 161;4;-0.964945, 0.241557,-0.062200,-0.086065;;, + 162;4;-0.965658, 0.240545,-0.061926,-0.086250;;, + 163;4;-0.966653, 0.239002,-0.061489,-0.086509;;, + 164;4;-0.967917, 0.236848,-0.060850,-0.086838;;, + 165;4;-0.969429, 0.233998,-0.059970,-0.087231;;, + 166;4;-0.971158, 0.230375,-0.058806,-0.087681;;, + 167;4;-0.973061, 0.225905,-0.057321,-0.088175;;, + 168;4;-0.975086, 0.220534,-0.055476,-0.088702;;, + 169;4;-0.977175, 0.214222,-0.053244,-0.089245;;, + 170;4;-0.979263, 0.206956,-0.050604,-0.089789;;, + 171;4;-0.981289, 0.198748,-0.047548,-0.090315;;, + 172;4;-0.983192, 0.189634,-0.044076,-0.090810;;, + 173;4;-0.984920, 0.179668,-0.040201,-0.091260;;, + 174;4;-0.986433, 0.168921,-0.035944,-0.091653;;, + 175;4;-0.987697, 0.157471,-0.031330,-0.091982;;, + 176;4;-0.988692, 0.145400,-0.026391,-0.092241;;, + 177;4;-0.989404, 0.132788,-0.021159,-0.092426;;, + 178;4;-0.989831, 0.119713,-0.015663,-0.092537;;, + 179;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 180;4;-0.987443, 0.092015, 0.006008,-0.090256;;, + 181;4;-0.979832, 0.076804, 0.042188,-0.083279;;, + 182;4;-0.967458, 0.061039, 0.097179,-0.071936;;, + 183;4;-0.951272, 0.045395, 0.166977,-0.057099;;, + 184;4;-0.932937, 0.030744, 0.244733,-0.040291;;, + 185;4;-0.914601, 0.017988, 0.321680,-0.023484;;, + 186;4;-0.898416, 0.007838, 0.389129,-0.008647;;, + 187;4;-0.886042, 0.000670, 0.440444, 0.002697;;, + 188;4;-0.878431,-0.003478, 0.471893, 0.009673;;, + 189;4;-0.875902,-0.004795, 0.482317, 0.011991;;, + 190;4;-0.885999,-0.014233, 0.441198, 0.000728;;, + 191;4;-0.914439,-0.039878, 0.325161,-0.030996;;, + 192;4;-0.950957,-0.070291, 0.175583,-0.071729;;, + 193;4;-0.979397,-0.089081, 0.057945,-0.103453;;, + 194;4;-0.989494,-0.086855, 0.014101,-0.114716;;, + 195;4;-0.989536,-0.060170, 0.009741,-0.112748;;, + 196;4;-0.989656,-0.010069, 0.003312,-0.107204;;, + 197;4;-0.989810, 0.047975,-0.003473,-0.100086;;, + 198;4;-0.989929, 0.091221,-0.008299,-0.094542;;, + 199;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 200;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 201;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 202;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 203;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 204;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 205;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 206;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 207;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 208;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 209;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 210;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 211;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 212;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 213;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 214;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 215;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 216;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 217;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 218;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 219;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 220;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 221;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 222;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 223;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 224;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 225;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 226;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 227;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 228;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 229;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 230;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 231;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 232;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 233;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 234;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 235;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 236;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 237;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 238;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 239;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 240;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 241;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 242;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 243;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 244;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 245;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 246;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 247;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 248;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 249;4;-0.989972, 0.106242,-0.009935,-0.092574;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3; 0.000000, 0.666142, 0.000000;;, + 1;3; 0.000000, 0.666142, 0.000000;;, + 2;3; 0.000000, 0.666142, 0.000000;;, + 3;3; 0.000000, 0.666142, 0.000000;;, + 4;3; 0.000000, 0.666142, 0.000000;;, + 5;3; 0.000000, 0.666142, 0.000000;;, + 6;3; 0.000000, 0.666142, 0.000000;;, + 7;3; 0.000000, 0.666142, 0.000000;;, + 8;3; 0.000000, 0.666142, 0.000000;;, + 9;3; 0.000000, 0.666142, 0.000000;;, + 10;3; 0.000000, 0.666142, 0.000000;;, + 11;3; 0.000000, 0.666142, 0.000000;;, + 12;3; 0.000000, 0.666142, 0.000000;;, + 13;3; 0.000000, 0.666142, 0.000000;;, + 14;3; 0.000000, 0.666142, 0.000000;;, + 15;3; 0.000000, 0.666142, 0.000000;;, + 16;3; 0.000000, 0.666142, 0.000000;;, + 17;3; 0.000000, 0.666142, 0.000000;;, + 18;3; 0.000000, 0.666142, 0.000000;;, + 19;3; 0.000000, 0.666142, 0.000000;;, + 20;3; 0.000000, 0.666142, 0.000000;;, + 21;3; 0.000000, 0.666142, 0.000000;;, + 22;3; 0.000000, 0.666142, 0.000000;;, + 23;3; 0.000000, 0.666142, 0.000000;;, + 24;3; 0.000000, 0.666142, 0.000000;;, + 25;3; 0.000000, 0.666142, 0.000000;;, + 26;3; 0.000000, 0.666142, 0.000000;;, + 27;3; 0.000000, 0.666142, 0.000000;;, + 28;3; 0.000000, 0.666142, 0.000000;;, + 29;3; 0.000000, 0.666142, 0.000000;;, + 30;3; 0.000000, 0.666142, 0.000000;;, + 31;3; 0.000000, 0.666142, 0.000000;;, + 32;3; 0.000000, 0.666142, 0.000000;;, + 33;3; 0.000000, 0.666142, 0.000000;;, + 34;3; 0.000000, 0.666142, 0.000000;;, + 35;3; 0.000000, 0.666142, 0.000000;;, + 36;3; 0.000000, 0.666142, 0.000000;;, + 37;3; 0.000000, 0.666142, 0.000000;;, + 38;3; 0.000000, 0.666142, 0.000000;;, + 39;3; 0.000000, 0.666142, 0.000000;;, + 40;3; 0.000000, 0.666142, 0.000000;;, + 41;3; 0.000000, 0.666142, 0.000000;;, + 42;3; 0.000000, 0.666142, 0.000000;;, + 43;3; 0.000000, 0.666142, 0.000000;;, + 44;3; 0.000000, 0.666142, 0.000000;;, + 45;3; 0.000000, 0.666142, 0.000000;;, + 46;3; 0.000000, 0.666142, 0.000000;;, + 47;3; 0.000000, 0.666142, 0.000000;;, + 48;3; 0.000000, 0.666142, 0.000000;;, + 49;3; 0.000000, 0.666142, 0.000000;;, + 50;3; 0.000000, 0.666142, 0.000000;;, + 51;3; 0.000000, 0.666142, 0.000000;;, + 52;3; 0.000000, 0.666142, 0.000000;;, + 53;3; 0.000000, 0.666142, 0.000000;;, + 54;3; 0.000000, 0.666142, 0.000000;;, + 55;3; 0.000000, 0.666142, 0.000000;;, + 56;3; 0.000000, 0.666142, 0.000000;;, + 57;3; 0.000000, 0.666142, 0.000000;;, + 58;3; 0.000000, 0.666142, 0.000000;;, + 59;3; 0.000000, 0.666142, 0.000000;;, + 60;3; 0.000000, 0.666142, 0.000000;;, + 61;3; 0.000000, 0.666142, 0.000000;;, + 62;3; 0.000000, 0.666142, 0.000000;;, + 63;3; 0.000000, 0.666142, 0.000000;;, + 64;3; 0.000000, 0.666142, 0.000000;;, + 65;3; 0.000000, 0.666142, 0.000000;;, + 66;3; 0.000000, 0.666142, 0.000000;;, + 67;3; 0.000000, 0.666142, 0.000000;;, + 68;3; 0.000000, 0.666142, 0.000000;;, + 69;3; 0.000000, 0.666142, 0.000000;;, + 70;3; 0.000000, 0.666142, 0.000000;;, + 71;3; 0.000000, 0.666142, 0.000000;;, + 72;3; 0.000000, 0.666142, 0.000000;;, + 73;3; 0.000000, 0.666142, 0.000000;;, + 74;3; 0.000000, 0.666142, 0.000000;;, + 75;3; 0.000000, 0.666142, 0.000000;;, + 76;3; 0.000000, 0.666142, 0.000000;;, + 77;3; 0.000000, 0.666142, 0.000000;;, + 78;3; 0.000000, 0.666142, 0.000000;;, + 79;3; 0.000000, 0.666142, 0.000000;;, + 80;3; 0.000000, 0.666142, 0.000000;;, + 81;3; 0.000000, 0.666142, 0.000000;;, + 82;3; 0.000000, 0.666142, 0.000000;;, + 83;3; 0.000000, 0.666142, 0.000000;;, + 84;3; 0.000000, 0.666142, 0.000000;;, + 85;3; 0.000000, 0.666142, 0.000000;;, + 86;3; 0.000000, 0.666142, 0.000000;;, + 87;3; 0.000000, 0.666142, 0.000000;;, + 88;3; 0.000000, 0.666142, 0.000000;;, + 89;3; 0.000000, 0.666142, 0.000000;;, + 90;3; 0.000000, 0.666142, 0.000000;;, + 91;3; 0.000000, 0.666142, 0.000000;;, + 92;3; 0.000000, 0.666142, 0.000000;;, + 93;3; 0.000000, 0.666142, 0.000000;;, + 94;3; 0.000000, 0.666142, 0.000000;;, + 95;3; 0.000000, 0.666142, 0.000000;;, + 96;3; 0.000000, 0.666142, 0.000000;;, + 97;3; 0.000000, 0.666142, 0.000000;;, + 98;3; 0.000000, 0.666142, 0.000000;;, + 99;3; 0.000000, 0.666142, 0.000000;;, + 100;3; 0.000000, 0.666142, 0.000000;;, + 101;3; 0.000000, 0.666142, 0.000000;;, + 102;3; 0.000000, 0.666142, 0.000000;;, + 103;3; 0.000000, 0.666142, 0.000000;;, + 104;3; 0.000000, 0.666142, 0.000000;;, + 105;3; 0.000000, 0.666142, 0.000000;;, + 106;3; 0.000000, 0.666142, 0.000000;;, + 107;3; 0.000000, 0.666142, 0.000000;;, + 108;3; 0.000000, 0.666142, 0.000000;;, + 109;3; 0.000000, 0.666142, 0.000000;;, + 110;3; 0.000000, 0.666142, 0.000000;;, + 111;3; 0.000000, 0.666142, 0.000000;;, + 112;3; 0.000000, 0.666142, 0.000000;;, + 113;3; 0.000000, 0.666142, 0.000000;;, + 114;3; 0.000000, 0.666142, 0.000000;;, + 115;3; 0.000000, 0.666142, 0.000000;;, + 116;3; 0.000000, 0.666142, 0.000000;;, + 117;3; 0.000000, 0.666142, 0.000000;;, + 118;3; 0.000000, 0.666142, 0.000000;;, + 119;3; 0.000000, 0.666142, 0.000000;;, + 120;3; 0.000000, 0.666142, 0.000000;;, + 121;3; 0.000000, 0.666142, 0.000000;;, + 122;3; 0.000000, 0.666142, 0.000000;;, + 123;3; 0.000000, 0.666142, 0.000000;;, + 124;3; 0.000000, 0.666142, 0.000000;;, + 125;3; 0.000000, 0.666142, 0.000000;;, + 126;3; 0.000000, 0.666142, 0.000000;;, + 127;3; 0.000000, 0.666142, 0.000000;;, + 128;3; 0.000000, 0.666142, 0.000000;;, + 129;3; 0.000000, 0.666142, 0.000000;;, + 130;3; 0.000000, 0.666142, 0.000000;;, + 131;3; 0.000000, 0.666142, 0.000000;;, + 132;3; 0.000000, 0.666142, 0.000000;;, + 133;3; 0.000000, 0.666142, 0.000000;;, + 134;3; 0.000000, 0.666142, 0.000000;;, + 135;3; 0.000000, 0.666142, 0.000000;;, + 136;3; 0.000000, 0.666142, 0.000000;;, + 137;3; 0.000000, 0.666142, 0.000000;;, + 138;3; 0.000000, 0.666142, 0.000000;;, + 139;3; 0.000000, 0.666142, 0.000000;;, + 140;3; 0.000000, 0.666142, 0.000000;;, + 141;3; 0.000000, 0.666142, 0.000000;;, + 142;3; 0.000000, 0.666142, 0.000000;;, + 143;3; 0.000000, 0.666142, 0.000000;;, + 144;3; 0.000000, 0.666142, 0.000000;;, + 145;3; 0.000000, 0.666142, 0.000000;;, + 146;3; 0.000000, 0.666142, 0.000000;;, + 147;3; 0.000000, 0.666142, 0.000000;;, + 148;3; 0.000000, 0.666142, 0.000000;;, + 149;3; 0.000000, 0.666142, 0.000000;;, + 150;3; 0.000000, 0.666142, 0.000000;;, + 151;3; 0.000000, 0.666142, 0.000000;;, + 152;3; 0.000000, 0.666142, 0.000000;;, + 153;3; 0.000000, 0.666142, 0.000000;;, + 154;3; 0.000000, 0.666142, 0.000000;;, + 155;3; 0.000000, 0.666142, 0.000000;;, + 156;3; 0.000000, 0.666142, 0.000000;;, + 157;3; 0.000000, 0.666142, 0.000000;;, + 158;3; 0.000000, 0.666142, 0.000000;;, + 159;3; 0.000000, 0.666142, 0.000000;;, + 160;3; 0.000000, 0.666142, 0.000000;;, + 161;3; 0.000000, 0.666142, 0.000000;;, + 162;3; 0.000000, 0.666142, 0.000000;;, + 163;3; 0.000000, 0.666142, 0.000000;;, + 164;3; 0.000000, 0.666142, 0.000000;;, + 165;3; 0.000000, 0.666142, 0.000000;;, + 166;3; 0.000000, 0.666142, 0.000000;;, + 167;3; 0.000000, 0.666142, 0.000000;;, + 168;3; 0.000000, 0.666142, 0.000000;;, + 169;3; 0.000000, 0.666142, 0.000000;;, + 170;3; 0.000000, 0.666142, 0.000000;;, + 171;3; 0.000000, 0.666142, 0.000000;;, + 172;3; 0.000000, 0.666142, 0.000000;;, + 173;3; 0.000000, 0.666142, 0.000000;;, + 174;3; 0.000000, 0.666142, 0.000000;;, + 175;3; 0.000000, 0.666142, 0.000000;;, + 176;3; 0.000000, 0.666142, 0.000000;;, + 177;3; 0.000000, 0.666142, 0.000000;;, + 178;3; 0.000000, 0.666142, 0.000000;;, + 179;3; 0.000000, 0.666142, 0.000000;;, + 180;3;-0.000000, 0.666142, 0.000000;;, + 181;3; 0.000000, 0.666142,-0.000000;;, + 182;3; 0.000000, 0.666142,-0.000000;;, + 183;3; 0.000000, 0.666142,-0.000000;;, + 184;3;-0.000000, 0.666142, 0.000000;;, + 185;3;-0.000000, 0.666142, 0.000000;;, + 186;3; 0.000000, 0.666142,-0.000000;;, + 187;3; 0.000000, 0.666142,-0.000000;;, + 188;3; 0.000000, 0.666142, 0.000000;;, + 189;3;-0.000000, 0.666142, 0.000000;;, + 190;3; 0.000001, 0.666142, 0.000000;;, + 191;3;-0.000000, 0.666142,-0.000001;;, + 192;3;-0.000000, 0.666142,-0.000000;;, + 193;3;-0.000000, 0.666142, 0.000000;;, + 194;3;-0.000000, 0.666142,-0.000000;;, + 195;3; 0.000000, 0.666142, 0.000000;;, + 196;3; 0.000000, 0.666142,-0.000000;;, + 197;3;-0.000000, 0.666142,-0.000000;;, + 198;3;-0.000000, 0.666142,-0.000000;;, + 199;3; 0.000000, 0.666142, 0.000000;;, + 200;3; 0.000000, 0.666142, 0.000000;;, + 201;3; 0.000000, 0.666142, 0.000000;;, + 202;3; 0.000000, 0.666142, 0.000000;;, + 203;3; 0.000000, 0.666142, 0.000000;;, + 204;3; 0.000000, 0.666142, 0.000000;;, + 205;3; 0.000000, 0.666142, 0.000000;;, + 206;3; 0.000000, 0.666142, 0.000000;;, + 207;3; 0.000000, 0.666142, 0.000000;;, + 208;3; 0.000000, 0.666142, 0.000000;;, + 209;3; 0.000000, 0.666142, 0.000000;;, + 210;3; 0.000000, 0.666142, 0.000000;;, + 211;3; 0.000000, 0.666142, 0.000000;;, + 212;3; 0.000000, 0.666142, 0.000000;;, + 213;3; 0.000000, 0.666142, 0.000000;;, + 214;3; 0.000000, 0.666142, 0.000000;;, + 215;3; 0.000000, 0.666142, 0.000000;;, + 216;3; 0.000000, 0.666142, 0.000000;;, + 217;3; 0.000000, 0.666142, 0.000000;;, + 218;3; 0.000000, 0.666142, 0.000000;;, + 219;3; 0.000000, 0.666142, 0.000000;;, + 220;3; 0.000000, 0.666142, 0.000000;;, + 221;3; 0.000000, 0.666142, 0.000000;;, + 222;3; 0.000000, 0.666142, 0.000000;;, + 223;3; 0.000000, 0.666142, 0.000000;;, + 224;3; 0.000000, 0.666142, 0.000000;;, + 225;3; 0.000000, 0.666142, 0.000000;;, + 226;3; 0.000000, 0.666142, 0.000000;;, + 227;3; 0.000000, 0.666142, 0.000000;;, + 228;3; 0.000000, 0.666142, 0.000000;;, + 229;3; 0.000000, 0.666142, 0.000000;;, + 230;3; 0.000000, 0.666142, 0.000000;;, + 231;3; 0.000000, 0.666142, 0.000000;;, + 232;3; 0.000000, 0.666142, 0.000000;;, + 233;3; 0.000000, 0.666142, 0.000000;;, + 234;3; 0.000000, 0.666142, 0.000000;;, + 235;3; 0.000000, 0.666142, 0.000000;;, + 236;3; 0.000000, 0.666142, 0.000000;;, + 237;3; 0.000000, 0.666142, 0.000000;;, + 238;3; 0.000000, 0.666142, 0.000000;;, + 239;3; 0.000000, 0.666142, 0.000000;;, + 240;3; 0.000000, 0.666142, 0.000000;;, + 241;3; 0.000000, 0.666142, 0.000000;;, + 242;3; 0.000000, 0.666142, 0.000000;;, + 243;3; 0.000000, 0.666142, 0.000000;;, + 244;3; 0.000000, 0.666142, 0.000000;;, + 245;3; 0.000000, 0.666142, 0.000000;;, + 246;3; 0.000000, 0.666142, 0.000000;;, + 247;3; 0.000000, 0.666142, 0.000000;;, + 248;3; 0.000000, 0.666142, 0.000000;;, + 249;3; 0.000000, 0.666142, 0.000000;;; + } + } + Animation { + {Armature_Bone_034} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 1;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 2;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 3;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 4;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 5;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 6;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 7;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 8;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 9;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 10;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 11;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 12;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 13;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 14;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 15;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 16;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 17;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 18;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 19;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 20;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 21;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 22;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 23;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 24;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 25;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 26;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 27;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 28;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 29;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 30;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 31;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 32;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 33;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 34;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 35;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 36;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 37;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 38;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 39;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 40;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 41;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 42;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 43;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 44;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 45;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 46;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 47;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 48;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 49;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 50;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 51;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 52;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 53;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 54;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 55;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 56;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 57;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 58;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 59;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 60;4;-0.977258,-0.211870, 0.000087,-0.000000;;, + 61;4;-0.976944,-0.212767, 0.000351,-0.000000;;, + 62;4;-0.976417,-0.214269, 0.000793,-0.000001;;, + 63;4;-0.975677,-0.216379, 0.001413,-0.000001;;, + 64;4;-0.974725,-0.219096, 0.002212,-0.000001;;, + 65;4;-0.973560,-0.222418, 0.003188,-0.000002;;, + 66;4;-0.972186,-0.226337, 0.004340,-0.000003;;, + 67;4;-0.970605,-0.230844, 0.005665,-0.000004;;, + 68;4;-0.968825,-0.235923, 0.007158,-0.000005;;, + 69;4;-0.966851,-0.241554, 0.008813,-0.000006;;, + 70;4;-0.964692,-0.247711, 0.010623,-0.000007;;, + 71;4;-0.962359,-0.254365, 0.012578,-0.000008;;, + 72;4;-0.959865,-0.261478, 0.014669,-0.000009;;, + 73;4;-0.957225,-0.269008, 0.016883,-0.000011;;, + 74;4;-0.954455,-0.276909, 0.019205,-0.000012;;, + 75;4;-0.951573,-0.285128, 0.021621,-0.000014;;, + 76;4;-0.948600,-0.293607, 0.024113,-0.000015;;, + 77;4;-0.945558,-0.302285, 0.026664,-0.000017;;, + 78;4;-0.942468,-0.311098, 0.029254,-0.000019;;, + 79;4;-0.939355,-0.319978, 0.031864,-0.000020;;, + 80;4;-0.936241,-0.328858, 0.034475,-0.000022;;, + 81;4;-0.933151,-0.337671, 0.037065,-0.000024;;, + 82;4;-0.930109,-0.346349, 0.039616,-0.000025;;, + 83;4;-0.927136,-0.354828, 0.042108,-0.000027;;, + 84;4;-0.924254,-0.363047, 0.044524,-0.000028;;, + 85;4;-0.921484,-0.370948, 0.046846,-0.000030;;, + 86;4;-0.918844,-0.378479, 0.049060,-0.000031;;, + 87;4;-0.916350,-0.385592, 0.051150,-0.000032;;, + 88;4;-0.914017,-0.392245, 0.053106,-0.000034;;, + 89;4;-0.911859,-0.398402, 0.054916,-0.000035;;, + 90;4;-0.909884,-0.404033, 0.056571,-0.000036;;, + 91;4;-0.908104,-0.409112, 0.058064,-0.000037;;, + 92;4;-0.906524,-0.413619, 0.059388,-0.000038;;, + 93;4;-0.905149,-0.417538, 0.060541,-0.000038;;, + 94;4;-0.903985,-0.420860, 0.061517,-0.000039;;, + 95;4;-0.903032,-0.423578, 0.062316,-0.000040;;, + 96;4;-0.902292,-0.425687, 0.062936,-0.000040;;, + 97;4;-0.901766,-0.427189, 0.063377,-0.000040;;, + 98;4;-0.901451,-0.428086, 0.063641,-0.000040;;, + 99;4;-0.901347,-0.428384, 0.063728,-0.000040;;, + 100;4;-0.901991,-0.426101, 0.063067,-0.000040;;, + 101;4;-0.903990,-0.419011, 0.061011,-0.000039;;, + 102;4;-0.907387,-0.406965, 0.057520,-0.000037;;, + 103;4;-0.912095,-0.390272, 0.052681,-0.000033;;, + 104;4;-0.917859,-0.369834, 0.046756,-0.000030;;, + 105;4;-0.924271,-0.347098, 0.040165,-0.000026;;, + 106;4;-0.930858,-0.323738, 0.033394,-0.000021;;, + 107;4;-0.937197,-0.301262, 0.026879,-0.000017;;, + 108;4;-0.942982,-0.280747, 0.020932,-0.000013;;, + 109;4;-0.948044,-0.262800, 0.015729,-0.000010;;, + 110;4;-0.953105,-0.244853, 0.010527,-0.000007;;, + 111;4;-0.958890,-0.224338, 0.004580,-0.000003;;, + 112;4;-0.965229,-0.201862,-0.001935, 0.000001;;, + 113;4;-0.971817,-0.178502,-0.008707, 0.000005;;, + 114;4;-0.978229,-0.155766,-0.015297, 0.000010;;, + 115;4;-0.983992,-0.135328,-0.021222, 0.000013;;, + 116;4;-0.988700,-0.118635,-0.026061, 0.000017;;, + 117;4;-0.992097,-0.106589,-0.029553, 0.000019;;, + 118;4;-0.994097,-0.099499,-0.031608, 0.000020;;, + 119;4;-0.994740,-0.097216,-0.032270, 0.000020;;, + 120;4;-0.994097,-0.099499,-0.031608, 0.000020;;, + 121;4;-0.992097,-0.106589,-0.029553, 0.000019;;, + 122;4;-0.988700,-0.118635,-0.026061, 0.000017;;, + 123;4;-0.983992,-0.135328,-0.021222, 0.000013;;, + 124;4;-0.978229,-0.155766,-0.015297, 0.000010;;, + 125;4;-0.971817,-0.178502,-0.008707, 0.000005;;, + 126;4;-0.965229,-0.201862,-0.001935, 0.000001;;, + 127;4;-0.958890,-0.224338, 0.004580,-0.000003;;, + 128;4;-0.953105,-0.244853, 0.010527,-0.000007;;, + 129;4;-0.948044,-0.262800, 0.015729,-0.000010;;, + 130;4;-0.942982,-0.280747, 0.020932,-0.000013;;, + 131;4;-0.937197,-0.301262, 0.026879,-0.000017;;, + 132;4;-0.930858,-0.323738, 0.033394,-0.000021;;, + 133;4;-0.924271,-0.347098, 0.040165,-0.000026;;, + 134;4;-0.917859,-0.369834, 0.046756,-0.000030;;, + 135;4;-0.912095,-0.390272, 0.052681,-0.000033;;, + 136;4;-0.907387,-0.406965, 0.057520,-0.000037;;, + 137;4;-0.903990,-0.419011, 0.061011,-0.000039;;, + 138;4;-0.901991,-0.426101, 0.063067,-0.000040;;, + 139;4;-0.901347,-0.428384, 0.063728,-0.000040;;, + 140;4;-0.903990,-0.419011, 0.061011,-0.000039;;, + 141;4;-0.912095,-0.390272, 0.052681,-0.000033;;, + 142;4;-0.924271,-0.347098, 0.040165,-0.000026;;, + 143;4;-0.937197,-0.301262, 0.026879,-0.000017;;, + 144;4;-0.948044,-0.262800, 0.015729,-0.000010;;, + 145;4;-0.958890,-0.224338, 0.004580,-0.000003;;, + 146;4;-0.971817,-0.178502,-0.008707, 0.000005;;, + 147;4;-0.983992,-0.135328,-0.021222, 0.000013;;, + 148;4;-0.992097,-0.106589,-0.029553, 0.000019;;, + 149;4;-0.994740,-0.097216,-0.032270, 0.000020;;, + 150;4;-0.992097,-0.106589,-0.029553, 0.000019;;, + 151;4;-0.983992,-0.135328,-0.021222, 0.000013;;, + 152;4;-0.971817,-0.178502,-0.008707, 0.000005;;, + 153;4;-0.958890,-0.224338, 0.004580,-0.000003;;, + 154;4;-0.948044,-0.262800, 0.015729,-0.000010;;, + 155;4;-0.937197,-0.301262, 0.026879,-0.000017;;, + 156;4;-0.924271,-0.347098, 0.040165,-0.000026;;, + 157;4;-0.912095,-0.390272, 0.052681,-0.000033;;, + 158;4;-0.903990,-0.419011, 0.061011,-0.000039;;, + 159;4;-0.901347,-0.428384, 0.063728,-0.000040;;, + 160;4;-0.901766,-0.427189, 0.063377,-0.000040;;, + 161;4;-0.903032,-0.423578, 0.062316,-0.000040;;, + 162;4;-0.905149,-0.417538, 0.060541,-0.000038;;, + 163;4;-0.908104,-0.409112, 0.058064,-0.000037;;, + 164;4;-0.911859,-0.398402, 0.054916,-0.000035;;, + 165;4;-0.916350,-0.385592, 0.051150,-0.000032;;, + 166;4;-0.921484,-0.370948, 0.046846,-0.000030;;, + 167;4;-0.927136,-0.354828, 0.042108,-0.000027;;, + 168;4;-0.933151,-0.337671, 0.037065,-0.000024;;, + 169;4;-0.939355,-0.319978, 0.031864,-0.000020;;, + 170;4;-0.945558,-0.302285, 0.026664,-0.000017;;, + 171;4;-0.951573,-0.285128, 0.021621,-0.000014;;, + 172;4;-0.957225,-0.269008, 0.016883,-0.000011;;, + 173;4;-0.962359,-0.254365, 0.012578,-0.000008;;, + 174;4;-0.966851,-0.241554, 0.008813,-0.000006;;, + 175;4;-0.970605,-0.230844, 0.005665,-0.000004;;, + 176;4;-0.973560,-0.222418, 0.003188,-0.000002;;, + 177;4;-0.975677,-0.216379, 0.001413,-0.000001;;, + 178;4;-0.976943,-0.212767, 0.000351,-0.000000;;, + 179;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 180;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 181;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 182;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 183;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 184;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 185;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 186;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 187;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 188;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 189;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 190;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 191;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 192;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 193;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 194;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 195;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 196;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 197;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 198;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 199;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 200;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 201;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 202;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 203;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 204;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 205;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 206;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 207;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 208;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 209;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 210;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 211;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 212;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 213;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 214;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 215;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 216;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 217;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 218;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 219;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 220;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 221;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 222;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 223;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 224;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 225;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 226;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 227;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 228;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 229;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 230;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 231;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 232;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 233;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 234;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 235;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 236;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 237;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 238;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 239;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 240;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 241;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 242;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 243;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 244;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 245;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 246;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 247;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 248;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 249;4;-0.977362,-0.211572, 0.000000,-0.000000;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3;-0.000000, 1.279916, 0.000000;;, + 1;3;-0.000000, 1.279916, 0.000000;;, + 2;3;-0.000000, 1.279916, 0.000000;;, + 3;3;-0.000000, 1.279916, 0.000000;;, + 4;3;-0.000000, 1.279916, 0.000000;;, + 5;3;-0.000000, 1.279916, 0.000000;;, + 6;3;-0.000000, 1.279916, 0.000000;;, + 7;3;-0.000000, 1.279916, 0.000000;;, + 8;3;-0.000000, 1.279916, 0.000000;;, + 9;3;-0.000000, 1.279916, 0.000000;;, + 10;3;-0.000000, 1.279916, 0.000000;;, + 11;3;-0.000000, 1.279916, 0.000000;;, + 12;3;-0.000000, 1.279916, 0.000000;;, + 13;3;-0.000000, 1.279916, 0.000000;;, + 14;3;-0.000000, 1.279916, 0.000000;;, + 15;3;-0.000000, 1.279916, 0.000000;;, + 16;3;-0.000000, 1.279916, 0.000000;;, + 17;3;-0.000000, 1.279916, 0.000000;;, + 18;3;-0.000000, 1.279916, 0.000000;;, + 19;3;-0.000000, 1.279916, 0.000000;;, + 20;3; 0.000000, 1.279916,-0.000000;;, + 21;3;-0.000000, 1.279916, 0.000000;;, + 22;3;-0.000000, 1.279916, 0.000000;;, + 23;3;-0.000000, 1.279916,-0.000000;;, + 24;3; 0.000000, 1.279916,-0.000000;;, + 25;3; 0.000000, 1.279916,-0.000000;;, + 26;3; 0.000000, 1.279916,-0.000000;;, + 27;3;-0.000000, 1.279916, 0.000000;;, + 28;3; 0.000000, 1.279916,-0.000000;;, + 29;3; 0.000000, 1.279916,-0.000000;;, + 30;3;-0.000000, 1.279916,-0.000000;;, + 31;3;-0.000000, 1.279916,-0.000000;;, + 32;3;-0.000000, 1.279915, 0.000000;;, + 33;3; 0.000000, 1.279916, 0.000000;;, + 34;3; 0.000000, 1.279916,-0.000000;;, + 35;3; 0.000000, 1.279916,-0.000000;;, + 36;3;-0.000000, 1.279916, 0.000000;;, + 37;3;-0.000000, 1.279916, 0.000000;;, + 38;3;-0.000000, 1.279916, 0.000000;;, + 39;3; 0.000000, 1.279916, 0.000000;;, + 40;3;-0.000000, 1.279915,-0.000000;;, + 41;3;-0.000000, 1.279916,-0.000000;;, + 42;3; 0.000000, 1.279916,-0.000000;;, + 43;3; 0.000000, 1.279916,-0.000000;;, + 44;3;-0.000000, 1.279916,-0.000000;;, + 45;3;-0.000000, 1.279916, 0.000000;;, + 46;3;-0.000000, 1.279916, 0.000000;;, + 47;3;-0.000000, 1.279916, 0.000000;;, + 48;3;-0.000000, 1.279916, 0.000000;;, + 49;3;-0.000000, 1.279916, 0.000000;;, + 50;3;-0.000000, 1.279916, 0.000000;;, + 51;3;-0.000000, 1.279916,-0.000000;;, + 52;3; 0.000000, 1.279916, 0.000000;;, + 53;3; 0.000000, 1.279916, 0.000000;;, + 54;3; 0.000000, 1.279916,-0.000000;;, + 55;3; 0.000000, 1.279916, 0.000000;;, + 56;3;-0.000000, 1.279916,-0.000000;;, + 57;3; 0.000000, 1.279916, 0.000000;;, + 58;3;-0.000000, 1.279916,-0.000000;;, + 59;3;-0.000000, 1.279916, 0.000000;;, + 60;3; 0.000000, 1.279915,-0.000000;;, + 61;3; 0.000000, 1.279916,-0.000000;;, + 62;3; 0.000000, 1.279916, 0.000000;;, + 63;3; 0.000000, 1.279916,-0.000000;;, + 64;3;-0.000000, 1.279916,-0.000000;;, + 65;3; 0.000000, 1.279915, 0.000000;;, + 66;3;-0.000000, 1.279916,-0.000000;;, + 67;3; 0.000000, 1.279916,-0.000000;;, + 68;3; 0.000000, 1.279916, 0.000000;;, + 69;3; 0.000000, 1.279916, 0.000000;;, + 70;3; 0.000000, 1.279916, 0.000000;;, + 71;3;-0.000000, 1.279916, 0.000000;;, + 72;3;-0.000000, 1.279916, 0.000000;;, + 73;3;-0.000000, 1.279916,-0.000000;;, + 74;3; 0.000000, 1.279916, 0.000000;;, + 75;3; 0.000000, 1.279916,-0.000000;;, + 76;3; 0.000000, 1.279916,-0.000000;;, + 77;3; 0.000000, 1.279916, 0.000000;;, + 78;3; 0.000000, 1.279916,-0.000000;;, + 79;3;-0.000000, 1.279915, 0.000000;;, + 80;3; 0.000000, 1.279916,-0.000000;;, + 81;3;-0.000000, 1.279916,-0.000000;;, + 82;3; 0.000000, 1.279916, 0.000000;;, + 83;3;-0.000000, 1.279916,-0.000000;;, + 84;3; 0.000000, 1.279916,-0.000000;;, + 85;3; 0.000000, 1.279916,-0.000000;;, + 86;3; 0.000000, 1.279916,-0.000000;;, + 87;3;-0.000000, 1.279916,-0.000000;;, + 88;3;-0.000000, 1.279916, 0.000000;;, + 89;3; 0.000000, 1.279915,-0.000000;;, + 90;3;-0.000000, 1.279916, 0.000000;;, + 91;3; 0.000000, 1.279916,-0.000000;;, + 92;3; 0.000000, 1.279916, 0.000000;;, + 93;3; 0.000000, 1.279916,-0.000000;;, + 94;3; 0.000000, 1.279916, 0.000000;;, + 95;3; 0.000000, 1.279916,-0.000000;;, + 96;3; 0.000000, 1.279915,-0.000000;;, + 97;3; 0.000000, 1.279915,-0.000000;;, + 98;3; 0.000000, 1.279916, 0.000000;;, + 99;3; 0.000000, 1.279916, 0.000000;;, + 100;3;-0.000000, 1.279915, 0.000000;;, + 101;3;-0.000000, 1.279916, 0.000000;;, + 102;3; 0.000000, 1.279916,-0.000000;;, + 103;3; 0.000000, 1.279916, 0.000000;;, + 104;3;-0.000000, 1.279916,-0.000000;;, + 105;3; 0.000000, 1.279916, 0.000000;;, + 106;3;-0.000000, 1.279916, 0.000000;;, + 107;3;-0.000000, 1.279916, 0.000000;;, + 108;3;-0.000000, 1.279916,-0.000000;;, + 109;3; 0.000000, 1.279916, 0.000000;;, + 110;3; 0.000000, 1.279916, 0.000000;;, + 111;3; 0.000000, 1.279916, 0.000000;;, + 112;3; 0.000000, 1.279916,-0.000000;;, + 113;3;-0.000000, 1.279916, 0.000000;;, + 114;3;-0.000000, 1.279916,-0.000000;;, + 115;3;-0.000000, 1.279915,-0.000000;;, + 116;3; 0.000000, 1.279916, 0.000000;;, + 117;3;-0.000000, 1.279916,-0.000000;;, + 118;3; 0.000000, 1.279916, 0.000000;;, + 119;3; 0.000000, 1.279916,-0.000000;;, + 120;3;-0.000000, 1.279916, 0.000000;;, + 121;3;-0.000000, 1.279916, 0.000000;;, + 122;3;-0.000000, 1.279916,-0.000000;;, + 123;3;-0.000000, 1.279916,-0.000000;;, + 124;3;-0.000000, 1.279916, 0.000000;;, + 125;3;-0.000000, 1.279916,-0.000000;;, + 126;3;-0.000000, 1.279916, 0.000000;;, + 127;3;-0.000000, 1.279916,-0.000000;;, + 128;3; 0.000000, 1.279916, 0.000000;;, + 129;3; 0.000000, 1.279916,-0.000000;;, + 130;3;-0.000000, 1.279916,-0.000000;;, + 131;3; 0.000000, 1.279916, 0.000000;;, + 132;3; 0.000000, 1.279916, 0.000000;;, + 133;3; 0.000000, 1.279916, 0.000000;;, + 134;3;-0.000000, 1.279916, 0.000000;;, + 135;3;-0.000000, 1.279916,-0.000000;;, + 136;3;-0.000000, 1.279916, 0.000000;;, + 137;3;-0.000000, 1.279915, 0.000000;;, + 138;3;-0.000000, 1.279916, 0.000000;;, + 139;3; 0.000000, 1.279916, 0.000000;;, + 140;3; 0.000000, 1.279916,-0.000000;;, + 141;3; 0.000000, 1.279916,-0.000000;;, + 142;3; 0.000000, 1.279916, 0.000000;;, + 143;3;-0.000000, 1.279916,-0.000000;;, + 144;3; 0.000000, 1.279916, 0.000000;;, + 145;3; 0.000000, 1.279916, 0.000000;;, + 146;3;-0.000000, 1.279916, 0.000000;;, + 147;3;-0.000000, 1.279915,-0.000000;;, + 148;3;-0.000000, 1.279916,-0.000000;;, + 149;3; 0.000000, 1.279916,-0.000000;;, + 150;3;-0.000000, 1.279916, 0.000000;;, + 151;3;-0.000000, 1.279916,-0.000000;;, + 152;3;-0.000000, 1.279916,-0.000000;;, + 153;3;-0.000000, 1.279916,-0.000000;;, + 154;3; 0.000000, 1.279916,-0.000000;;, + 155;3; 0.000000, 1.279915,-0.000000;;, + 156;3;-0.000000, 1.279916,-0.000000;;, + 157;3; 0.000000, 1.279916, 0.000000;;, + 158;3; 0.000000, 1.279916, 0.000000;;, + 159;3; 0.000000, 1.279916, 0.000000;;, + 160;3;-0.000000, 1.279916,-0.000000;;, + 161;3;-0.000000, 1.279916, 0.000000;;, + 162;3;-0.000000, 1.279916, 0.000000;;, + 163;3; 0.000000, 1.279916,-0.000000;;, + 164;3; 0.000000, 1.279916, 0.000000;;, + 165;3; 0.000000, 1.279916,-0.000000;;, + 166;3;-0.000000, 1.279916,-0.000000;;, + 167;3;-0.000000, 1.279916, 0.000000;;, + 168;3;-0.000000, 1.279916, 0.000000;;, + 169;3; 0.000000, 1.279916,-0.000000;;, + 170;3;-0.000000, 1.279916,-0.000000;;, + 171;3; 0.000000, 1.279916,-0.000000;;, + 172;3;-0.000000, 1.279916, 0.000000;;, + 173;3;-0.000000, 1.279916,-0.000000;;, + 174;3;-0.000000, 1.279916,-0.000000;;, + 175;3; 0.000000, 1.279916,-0.000000;;, + 176;3; 0.000000, 1.279916,-0.000000;;, + 177;3;-0.000000, 1.279915, 0.000000;;, + 178;3; 0.000000, 1.279916, 0.000000;;, + 179;3;-0.000000, 1.279916, 0.000000;;, + 180;3; 0.000000, 1.279915, 0.000000;;, + 181;3; 0.000000, 1.279916,-0.000000;;, + 182;3;-0.000000, 1.279916,-0.000000;;, + 183;3;-0.000000, 1.279916, 0.000000;;, + 184;3;-0.000000, 1.279916,-0.000000;;, + 185;3;-0.000000, 1.279916,-0.000000;;, + 186;3;-0.000000, 1.279916,-0.000000;;, + 187;3; 0.000000, 1.279916,-0.000000;;, + 188;3; 0.000000, 1.279916, 0.000000;;, + 189;3;-0.000000, 1.279916,-0.000000;;, + 190;3; 0.000000, 1.279916,-0.000000;;, + 191;3;-0.000000, 1.279916, 0.000000;;, + 192;3;-0.000000, 1.279915,-0.000000;;, + 193;3;-0.000000, 1.279915,-0.000000;;, + 194;3; 0.000000, 1.279916,-0.000000;;, + 195;3; 0.000000, 1.279916,-0.000000;;, + 196;3; 0.000000, 1.279916,-0.000000;;, + 197;3;-0.000000, 1.279916, 0.000000;;, + 198;3;-0.000000, 1.279916, 0.000000;;, + 199;3;-0.000000, 1.279916, 0.000000;;, + 200;3;-0.000000, 1.279916, 0.000000;;, + 201;3;-0.000000, 1.279916, 0.000000;;, + 202;3;-0.000000, 1.279916, 0.000000;;, + 203;3;-0.000000, 1.279916, 0.000000;;, + 204;3;-0.000000, 1.279916, 0.000000;;, + 205;3;-0.000000, 1.279916, 0.000000;;, + 206;3;-0.000000, 1.279916, 0.000000;;, + 207;3;-0.000000, 1.279916, 0.000000;;, + 208;3;-0.000000, 1.279916, 0.000000;;, + 209;3;-0.000000, 1.279916, 0.000000;;, + 210;3;-0.000000, 1.279916, 0.000000;;, + 211;3;-0.000000, 1.279916, 0.000000;;, + 212;3;-0.000000, 1.279916, 0.000000;;, + 213;3;-0.000000, 1.279916, 0.000000;;, + 214;3;-0.000000, 1.279916, 0.000000;;, + 215;3;-0.000000, 1.279916, 0.000000;;, + 216;3;-0.000000, 1.279916, 0.000000;;, + 217;3;-0.000000, 1.279916, 0.000000;;, + 218;3;-0.000000, 1.279916, 0.000000;;, + 219;3;-0.000000, 1.279916, 0.000000;;, + 220;3;-0.000000, 1.279916, 0.000000;;, + 221;3;-0.000000, 1.279916, 0.000000;;, + 222;3;-0.000000, 1.279916, 0.000000;;, + 223;3;-0.000000, 1.279916, 0.000000;;, + 224;3;-0.000000, 1.279916, 0.000000;;, + 225;3;-0.000000, 1.279916, 0.000000;;, + 226;3;-0.000000, 1.279916, 0.000000;;, + 227;3;-0.000000, 1.279916, 0.000000;;, + 228;3;-0.000000, 1.279916, 0.000000;;, + 229;3;-0.000000, 1.279916, 0.000000;;, + 230;3;-0.000000, 1.279916, 0.000000;;, + 231;3;-0.000000, 1.279916, 0.000000;;, + 232;3;-0.000000, 1.279916, 0.000000;;, + 233;3;-0.000000, 1.279916, 0.000000;;, + 234;3;-0.000000, 1.279916, 0.000000;;, + 235;3;-0.000000, 1.279916, 0.000000;;, + 236;3;-0.000000, 1.279916, 0.000000;;, + 237;3;-0.000000, 1.279916, 0.000000;;, + 238;3;-0.000000, 1.279916, 0.000000;;, + 239;3;-0.000000, 1.279916, 0.000000;;, + 240;3;-0.000000, 1.279916, 0.000000;;, + 241;3;-0.000000, 1.279916, 0.000000;;, + 242;3;-0.000000, 1.279916, 0.000000;;, + 243;3;-0.000000, 1.279916, 0.000000;;, + 244;3;-0.000000, 1.279916, 0.000000;;, + 245;3;-0.000000, 1.279916, 0.000000;;, + 246;3;-0.000000, 1.279916, 0.000000;;, + 247;3;-0.000000, 1.279916, 0.000000;;, + 248;3;-0.000000, 1.279916, 0.000000;;, + 249;3;-0.000000, 1.279916, 0.000000;;; + } + } + Animation { + {Armature_Bone_038} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 1;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 2;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 3;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 4;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 5;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 6;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 7;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 8;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 9;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 10;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 11;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 12;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 13;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 14;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 15;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 16;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 17;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 18;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 19;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 20;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 21;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 22;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 23;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 24;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 25;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 26;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 27;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 28;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 29;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 30;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 31;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 32;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 33;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 34;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 35;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 36;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 37;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 38;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 39;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 40;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 41;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 42;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 43;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 44;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 45;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 46;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 47;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 48;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 49;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 50;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 51;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 52;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 53;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 54;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 55;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 56;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 57;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 58;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 59;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 60;4;-0.958244,-0.285931, 0.000030, 0.000016;;, + 61;4;-0.958123,-0.286275, 0.000119, 0.000065;;, + 62;4;-0.957921,-0.286851, 0.000268, 0.000147;;, + 63;4;-0.957638,-0.287661, 0.000478, 0.000263;;, + 64;4;-0.957272,-0.288703, 0.000748, 0.000411;;, + 65;4;-0.956825,-0.289977, 0.001079, 0.000593;;, + 66;4;-0.956298,-0.291480, 0.001468, 0.000807;;, + 67;4;-0.955692,-0.293208, 0.001917, 0.001053;;, + 68;4;-0.955008,-0.295156, 0.002422, 0.001331;;, + 69;4;-0.954251,-0.297315, 0.002982, 0.001638;;, + 70;4;-0.953423,-0.299677, 0.003594, 0.001975;;, + 71;4;-0.952528,-0.302228, 0.004256, 0.002338;;, + 72;4;-0.951571,-0.304956, 0.004963, 0.002727;;, + 73;4;-0.950558,-0.307844, 0.005712, 0.003138;;, + 74;4;-0.949495,-0.310874, 0.006498, 0.003570;;, + 75;4;-0.948389,-0.314026, 0.007315, 0.004019;;, + 76;4;-0.947249,-0.317278, 0.008159, 0.004483;;, + 77;4;-0.946081,-0.320606, 0.009022, 0.004957;;, + 78;4;-0.944896,-0.323985, 0.009898, 0.005438;;, + 79;4;-0.943701,-0.327391, 0.010781, 0.005924;;, + 80;4;-0.942506,-0.330796, 0.011664, 0.006409;;, + 81;4;-0.941321,-0.334176, 0.012541, 0.006890;;, + 82;4;-0.940153,-0.337504, 0.013404, 0.007364;;, + 83;4;-0.939013,-0.340756, 0.014247, 0.007828;;, + 84;4;-0.937907,-0.343908, 0.015064, 0.008277;;, + 85;4;-0.936844,-0.346938, 0.015850, 0.008709;;, + 86;4;-0.935831,-0.349826, 0.016599, 0.009120;;, + 87;4;-0.934875,-0.352553, 0.017307, 0.009509;;, + 88;4;-0.933979,-0.355105, 0.017968, 0.009872;;, + 89;4;-0.933151,-0.357466, 0.018581, 0.010209;;, + 90;4;-0.932394,-0.359626, 0.019141, 0.010516;;, + 91;4;-0.931710,-0.361574, 0.019646, 0.010794;;, + 92;4;-0.931104,-0.363302, 0.020094, 0.011040;;, + 93;4;-0.930577,-0.364805, 0.020484, 0.011254;;, + 94;4;-0.930130,-0.366079, 0.020814, 0.011436;;, + 95;4;-0.929765,-0.367121, 0.021084, 0.011584;;, + 96;4;-0.929481,-0.367930, 0.021294, 0.011700;;, + 97;4;-0.929279,-0.368506, 0.021443, 0.011782;;, + 98;4;-0.929158,-0.368850, 0.021533, 0.011831;;, + 99;4;-0.929118,-0.368964, 0.021562, 0.011847;;, + 100;4;-0.929521,-0.367474, 0.021184, 0.011639;;, + 101;4;-0.930772,-0.362843, 0.020009, 0.010994;;, + 102;4;-0.932897,-0.354977, 0.018014, 0.009897;;, + 103;4;-0.935842,-0.344075, 0.015248, 0.008378;;, + 104;4;-0.939447,-0.330728, 0.011862, 0.006518;;, + 105;4;-0.943459,-0.315879, 0.008096, 0.004448;;, + 106;4;-0.947580,-0.300624, 0.004226, 0.002322;;, + 107;4;-0.951545,-0.285946, 0.000502, 0.000276;;, + 108;4;-0.955165,-0.272548,-0.002897,-0.001592;;, + 109;4;-0.958331,-0.260827,-0.005870,-0.003225;;, + 110;4;-0.961497,-0.249107,-0.008843,-0.004859;;, + 111;4;-0.965116,-0.235709,-0.012242,-0.006726;;, + 112;4;-0.969082,-0.221031,-0.015966,-0.008772;;, + 113;4;-0.973203,-0.205776,-0.019836,-0.010898;;, + 114;4;-0.977214,-0.190927,-0.023602,-0.012968;;, + 115;4;-0.980820,-0.177580,-0.026988,-0.014828;;, + 116;4;-0.983765,-0.166678,-0.029754,-0.016348;;, + 117;4;-0.985890,-0.158812,-0.031749,-0.017444;;, + 118;4;-0.987141,-0.154181,-0.032924,-0.018090;;, + 119;4;-0.987543,-0.152690,-0.033302,-0.018297;;, + 120;4;-0.987141,-0.154181,-0.032924,-0.018090;;, + 121;4;-0.985890,-0.158812,-0.031749,-0.017444;;, + 122;4;-0.983765,-0.166678,-0.029754,-0.016348;;, + 123;4;-0.980820,-0.177580,-0.026988,-0.014828;;, + 124;4;-0.977214,-0.190927,-0.023602,-0.012968;;, + 125;4;-0.973203,-0.205776,-0.019836,-0.010898;;, + 126;4;-0.969082,-0.221031,-0.015966,-0.008772;;, + 127;4;-0.965116,-0.235709,-0.012242,-0.006726;;, + 128;4;-0.961497,-0.249107,-0.008843,-0.004859;;, + 129;4;-0.958331,-0.260827,-0.005870,-0.003225;;, + 130;4;-0.955165,-0.272548,-0.002897,-0.001592;;, + 131;4;-0.951545,-0.285945, 0.000502, 0.000276;;, + 132;4;-0.947580,-0.300624, 0.004226, 0.002322;;, + 133;4;-0.943459,-0.315879, 0.008096, 0.004448;;, + 134;4;-0.939447,-0.330728, 0.011862, 0.006518;;, + 135;4;-0.935842,-0.344075, 0.015248, 0.008378;;, + 136;4;-0.932897,-0.354977, 0.018014, 0.009897;;, + 137;4;-0.930772,-0.362843, 0.020009, 0.010994;;, + 138;4;-0.929521,-0.367474, 0.021184, 0.011639;;, + 139;4;-0.929118,-0.368964, 0.021562, 0.011847;;, + 140;4;-0.930772,-0.362843, 0.020009, 0.010994;;, + 141;4;-0.935842,-0.344075, 0.015248, 0.008378;;, + 142;4;-0.943459,-0.315879, 0.008096, 0.004448;;, + 143;4;-0.951545,-0.285946, 0.000502, 0.000276;;, + 144;4;-0.958331,-0.260827,-0.005870,-0.003225;;, + 145;4;-0.965116,-0.235709,-0.012242,-0.006726;;, + 146;4;-0.973203,-0.205776,-0.019836,-0.010898;;, + 147;4;-0.980820,-0.177580,-0.026988,-0.014828;;, + 148;4;-0.985890,-0.158812,-0.031749,-0.017444;;, + 149;4;-0.987543,-0.152690,-0.033302,-0.018297;;, + 150;4;-0.985890,-0.158812,-0.031749,-0.017444;;, + 151;4;-0.980820,-0.177580,-0.026988,-0.014828;;, + 152;4;-0.973203,-0.205776,-0.019836,-0.010898;;, + 153;4;-0.965116,-0.235709,-0.012242,-0.006726;;, + 154;4;-0.958331,-0.260827,-0.005870,-0.003225;;, + 155;4;-0.951545,-0.285945, 0.000502, 0.000276;;, + 156;4;-0.943459,-0.315879, 0.008096, 0.004448;;, + 157;4;-0.935842,-0.344075, 0.015248, 0.008378;;, + 158;4;-0.930772,-0.362843, 0.020009, 0.010994;;, + 159;4;-0.929118,-0.368964, 0.021562, 0.011847;;, + 160;4;-0.929279,-0.368506, 0.021443, 0.011782;;, + 161;4;-0.929765,-0.367121, 0.021084, 0.011584;;, + 162;4;-0.930577,-0.364805, 0.020484, 0.011254;;, + 163;4;-0.931710,-0.361573, 0.019646, 0.010794;;, + 164;4;-0.933151,-0.357466, 0.018581, 0.010209;;, + 165;4;-0.934874,-0.352553, 0.017307, 0.009509;;, + 166;4;-0.936844,-0.346938, 0.015850, 0.008709;;, + 167;4;-0.939013,-0.340756, 0.014247, 0.007828;;, + 168;4;-0.941321,-0.334176, 0.012541, 0.006890;;, + 169;4;-0.943701,-0.327391, 0.010781, 0.005924;;, + 170;4;-0.946081,-0.320606, 0.009022, 0.004957;;, + 171;4;-0.948389,-0.314026, 0.007315, 0.004019;;, + 172;4;-0.950558,-0.307844, 0.005712, 0.003138;;, + 173;4;-0.952528,-0.302228, 0.004256, 0.002338;;, + 174;4;-0.954251,-0.297315, 0.002982, 0.001638;;, + 175;4;-0.955692,-0.293208, 0.001917, 0.001053;;, + 176;4;-0.956825,-0.289977, 0.001079, 0.000593;;, + 177;4;-0.957638,-0.287661, 0.000478, 0.000263;;, + 178;4;-0.958123,-0.286275, 0.000119, 0.000065;;, + 179;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 180;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 181;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 182;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 183;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 184;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 185;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 186;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 187;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 188;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 189;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 190;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 191;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 192;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 193;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 194;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 195;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 196;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 197;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 198;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 199;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 200;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 201;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 202;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 203;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 204;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 205;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 206;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 207;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 208;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 209;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 210;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 211;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 212;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 213;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 214;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 215;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 216;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 217;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 218;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 219;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 220;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 221;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 222;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 223;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 224;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 225;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 226;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 227;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 228;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 229;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 230;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 231;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 232;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 233;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 234;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 235;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 236;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 237;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 238;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 239;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 240;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 241;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 242;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 243;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 244;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 245;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 246;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 247;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 248;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 249;4;-0.958284,-0.285817, 0.000000,-0.000000;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3; 0.000000, 1.228417,-0.000000;;, + 1;3; 0.000000, 1.228417,-0.000000;;, + 2;3; 0.000000, 1.228417,-0.000000;;, + 3;3; 0.000000, 1.228417,-0.000000;;, + 4;3; 0.000000, 1.228417,-0.000000;;, + 5;3; 0.000000, 1.228417,-0.000000;;, + 6;3; 0.000000, 1.228417,-0.000000;;, + 7;3; 0.000000, 1.228417,-0.000000;;, + 8;3; 0.000000, 1.228417,-0.000000;;, + 9;3; 0.000000, 1.228417,-0.000000;;, + 10;3; 0.000000, 1.228417,-0.000000;;, + 11;3; 0.000000, 1.228417,-0.000000;;, + 12;3; 0.000000, 1.228417,-0.000000;;, + 13;3; 0.000000, 1.228417,-0.000000;;, + 14;3; 0.000000, 1.228417,-0.000000;;, + 15;3; 0.000000, 1.228417,-0.000000;;, + 16;3; 0.000000, 1.228417,-0.000000;;, + 17;3; 0.000000, 1.228417,-0.000000;;, + 18;3; 0.000000, 1.228417,-0.000000;;, + 19;3; 0.000000, 1.228417,-0.000000;;, + 20;3;-0.000000, 1.228416,-0.000000;;, + 21;3; 0.000000, 1.228416, 0.000000;;, + 22;3; 0.000000, 1.228417, 0.000000;;, + 23;3;-0.000000, 1.228416, 0.000000;;, + 24;3; 0.000000, 1.228416,-0.000000;;, + 25;3;-0.000000, 1.228417, 0.000000;;, + 26;3;-0.000000, 1.228416,-0.000000;;, + 27;3; 0.000000, 1.228416,-0.000000;;, + 28;3; 0.000000, 1.228416,-0.000000;;, + 29;3; 0.000000, 1.228417,-0.000000;;, + 30;3; 0.000000, 1.228417, 0.000000;;, + 31;3;-0.000000, 1.228417,-0.000000;;, + 32;3;-0.000000, 1.228416, 0.000000;;, + 33;3;-0.000000, 1.228416,-0.000000;;, + 34;3;-0.000000, 1.228416, 0.000000;;, + 35;3; 0.000000, 1.228417,-0.000000;;, + 36;3;-0.000000, 1.228417,-0.000000;;, + 37;3;-0.000000, 1.228416, 0.000000;;, + 38;3;-0.000000, 1.228416,-0.000000;;, + 39;3;-0.000000, 1.228416,-0.000000;;, + 40;3; 0.000000, 1.228416, 0.000000;;, + 41;3;-0.000000, 1.228416, 0.000000;;, + 42;3; 0.000000, 1.228417, 0.000000;;, + 43;3;-0.000000, 1.228416,-0.000000;;, + 44;3;-0.000000, 1.228416,-0.000000;;, + 45;3; 0.000000, 1.228416,-0.000000;;, + 46;3;-0.000000, 1.228416,-0.000000;;, + 47;3;-0.000000, 1.228416,-0.000000;;, + 48;3; 0.000000, 1.228416,-0.000000;;, + 49;3; 0.000000, 1.228416, 0.000000;;, + 50;3;-0.000000, 1.228416,-0.000000;;, + 51;3; 0.000000, 1.228417, 0.000000;;, + 52;3; 0.000000, 1.228417, 0.000000;;, + 53;3;-0.000000, 1.228416, 0.000000;;, + 54;3;-0.000000, 1.228416, 0.000000;;, + 55;3;-0.000000, 1.228417, 0.000000;;, + 56;3; 0.000000, 1.228416,-0.000000;;, + 57;3; 0.000000, 1.228416,-0.000000;;, + 58;3;-0.000000, 1.228416,-0.000000;;, + 59;3; 0.000000, 1.228417,-0.000000;;, + 60;3;-0.000000, 1.228416,-0.000000;;, + 61;3;-0.000000, 1.228417,-0.000000;;, + 62;3;-0.000000, 1.228416,-0.000000;;, + 63;3;-0.000000, 1.228417, 0.000000;;, + 64;3; 0.000000, 1.228417, 0.000000;;, + 65;3;-0.000000, 1.228417,-0.000000;;, + 66;3;-0.000000, 1.228416, 0.000000;;, + 67;3;-0.000000, 1.228416, 0.000000;;, + 68;3; 0.000000, 1.228417, 0.000000;;, + 69;3;-0.000000, 1.228417,-0.000000;;, + 70;3; 0.000000, 1.228417, 0.000000;;, + 71;3;-0.000000, 1.228417,-0.000000;;, + 72;3; 0.000000, 1.228417, 0.000000;;, + 73;3;-0.000000, 1.228416,-0.000000;;, + 74;3; 0.000000, 1.228417,-0.000000;;, + 75;3; 0.000000, 1.228416, 0.000000;;, + 76;3;-0.000000, 1.228417,-0.000000;;, + 77;3; 0.000000, 1.228417, 0.000000;;, + 78;3; 0.000000, 1.228416, 0.000000;;, + 79;3;-0.000000, 1.228416,-0.000000;;, + 80;3;-0.000000, 1.228417, 0.000000;;, + 81;3; 0.000000, 1.228417, 0.000000;;, + 82;3; 0.000000, 1.228417,-0.000000;;, + 83;3; 0.000000, 1.228416,-0.000000;;, + 84;3; 0.000000, 1.228416,-0.000000;;, + 85;3;-0.000000, 1.228416,-0.000000;;, + 86;3; 0.000000, 1.228417,-0.000000;;, + 87;3; 0.000000, 1.228416,-0.000000;;, + 88;3;-0.000000, 1.228416,-0.000000;;, + 89;3;-0.000000, 1.228416,-0.000000;;, + 90;3; 0.000000, 1.228417, 0.000000;;, + 91;3;-0.000000, 1.228416,-0.000000;;, + 92;3; 0.000000, 1.228417, 0.000000;;, + 93;3; 0.000000, 1.228417, 0.000000;;, + 94;3; 0.000000, 1.228417,-0.000000;;, + 95;3;-0.000000, 1.228416, 0.000000;;, + 96;3; 0.000000, 1.228417,-0.000000;;, + 97;3; 0.000000, 1.228416, 0.000000;;, + 98;3;-0.000000, 1.228416, 0.000000;;, + 99;3; 0.000000, 1.228416, 0.000000;;, + 100;3; 0.000000, 1.228417,-0.000000;;, + 101;3;-0.000000, 1.228416,-0.000000;;, + 102;3; 0.000000, 1.228417, 0.000000;;, + 103;3; 0.000000, 1.228416,-0.000000;;, + 104;3; 0.000000, 1.228416, 0.000000;;, + 105;3;-0.000000, 1.228416,-0.000000;;, + 106;3;-0.000000, 1.228416, 0.000000;;, + 107;3;-0.000000, 1.228416,-0.000000;;, + 108;3;-0.000000, 1.228416, 0.000000;;, + 109;3; 0.000000, 1.228416, 0.000000;;, + 110;3;-0.000000, 1.228416,-0.000000;;, + 111;3; 0.000000, 1.228417, 0.000000;;, + 112;3; 0.000000, 1.228417, 0.000000;;, + 113;3;-0.000000, 1.228416, 0.000000;;, + 114;3; 0.000000, 1.228416, 0.000000;;, + 115;3;-0.000000, 1.228416, 0.000000;;, + 116;3;-0.000000, 1.228418, 0.000000;;, + 117;3; 0.000000, 1.228416,-0.000000;;, + 118;3; 0.000000, 1.228417,-0.000000;;, + 119;3; 0.000000, 1.228417,-0.000000;;, + 120;3;-0.000000, 1.228416,-0.000000;;, + 121;3;-0.000000, 1.228417,-0.000000;;, + 122;3; 0.000000, 1.228417, 0.000000;;, + 123;3; 0.000000, 1.228417,-0.000000;;, + 124;3; 0.000000, 1.228416,-0.000000;;, + 125;3; 0.000000, 1.228417,-0.000000;;, + 126;3;-0.000000, 1.228416,-0.000000;;, + 127;3;-0.000000, 1.228416,-0.000000;;, + 128;3; 0.000000, 1.228416,-0.000000;;, + 129;3; 0.000000, 1.228417,-0.000000;;, + 130;3; 0.000000, 1.228416,-0.000000;;, + 131;3;-0.000000, 1.228416,-0.000000;;, + 132;3; 0.000000, 1.228417, 0.000000;;, + 133;3;-0.000000, 1.228416,-0.000000;;, + 134;3;-0.000000, 1.228417,-0.000000;;, + 135;3; 0.000000, 1.228417, 0.000000;;, + 136;3; 0.000000, 1.228416,-0.000000;;, + 137;3; 0.000000, 1.228417, 0.000000;;, + 138;3; 0.000000, 1.228417,-0.000000;;, + 139;3; 0.000000, 1.228416, 0.000000;;, + 140;3;-0.000000, 1.228417,-0.000000;;, + 141;3;-0.000000, 1.228417,-0.000000;;, + 142;3;-0.000000, 1.228416, 0.000000;;, + 143;3; 0.000000, 1.228417, 0.000000;;, + 144;3; 0.000000, 1.228416, 0.000000;;, + 145;3; 0.000000, 1.228417, 0.000000;;, + 146;3;-0.000000, 1.228416, 0.000000;;, + 147;3;-0.000000, 1.228416, 0.000000;;, + 148;3; 0.000000, 1.228416,-0.000000;;, + 149;3; 0.000000, 1.228417,-0.000000;;, + 150;3;-0.000000, 1.228417,-0.000000;;, + 151;3; 0.000000, 1.228417,-0.000000;;, + 152;3; 0.000000, 1.228417,-0.000000;;, + 153;3;-0.000000, 1.228416,-0.000000;;, + 154;3; 0.000000, 1.228417,-0.000000;;, + 155;3; 0.000000, 1.228417,-0.000000;;, + 156;3; 0.000000, 1.228416,-0.000000;;, + 157;3; 0.000000, 1.228416,-0.000000;;, + 158;3;-0.000000, 1.228416,-0.000000;;, + 159;3; 0.000000, 1.228416, 0.000000;;, + 160;3;-0.000000, 1.228416, 0.000000;;, + 161;3; 0.000000, 1.228416, 0.000000;;, + 162;3;-0.000000, 1.228416, 0.000000;;, + 163;3; 0.000000, 1.228417,-0.000000;;, + 164;3; 0.000000, 1.228417, 0.000000;;, + 165;3;-0.000000, 1.228416,-0.000000;;, + 166;3; 0.000000, 1.228416, 0.000000;;, + 167;3;-0.000000, 1.228416, 0.000000;;, + 168;3;-0.000000, 1.228417,-0.000000;;, + 169;3; 0.000000, 1.228416, 0.000000;;, + 170;3;-0.000000, 1.228416,-0.000000;;, + 171;3; 0.000000, 1.228417, 0.000000;;, + 172;3; 0.000000, 1.228417, 0.000000;;, + 173;3;-0.000000, 1.228416,-0.000000;;, + 174;3;-0.000000, 1.228417, 0.000000;;, + 175;3;-0.000000, 1.228417, 0.000000;;, + 176;3;-0.000000, 1.228416, 0.000000;;, + 177;3; 0.000000, 1.228416,-0.000000;;, + 178;3; 0.000000, 1.228417, 0.000000;;, + 179;3; 0.000000, 1.228417,-0.000000;;, + 180;3; 0.000000, 1.228416,-0.000000;;, + 181;3; 0.000000, 1.228417, 0.000000;;, + 182;3; 0.000000, 1.228416, 0.000000;;, + 183;3;-0.000000, 1.228416, 0.000000;;, + 184;3;-0.000000, 1.228416, 0.000000;;, + 185;3; 0.000000, 1.228417, 0.000000;;, + 186;3;-0.000000, 1.228416,-0.000000;;, + 187;3; 0.000000, 1.228416, 0.000000;;, + 188;3; 0.000000, 1.228416, 0.000000;;, + 189;3;-0.000000, 1.228416, 0.000001;;, + 190;3;-0.000000, 1.228417, 0.000000;;, + 191;3;-0.000000, 1.228416,-0.000000;;, + 192;3; 0.000000, 1.228417,-0.000000;;, + 193;3; 0.000000, 1.228416, 0.000001;;, + 194;3; 0.000000, 1.228416,-0.000000;;, + 195;3;-0.000000, 1.228416, 0.000000;;, + 196;3;-0.000000, 1.228417, 0.000000;;, + 197;3; 0.000000, 1.228416, 0.000000;;, + 198;3; 0.000000, 1.228417, 0.000000;;, + 199;3; 0.000000, 1.228417,-0.000000;;, + 200;3; 0.000000, 1.228417,-0.000000;;, + 201;3; 0.000000, 1.228417,-0.000000;;, + 202;3; 0.000000, 1.228417,-0.000000;;, + 203;3; 0.000000, 1.228417,-0.000000;;, + 204;3; 0.000000, 1.228417,-0.000000;;, + 205;3; 0.000000, 1.228417,-0.000000;;, + 206;3; 0.000000, 1.228417,-0.000000;;, + 207;3; 0.000000, 1.228417,-0.000000;;, + 208;3; 0.000000, 1.228417,-0.000000;;, + 209;3; 0.000000, 1.228417,-0.000000;;, + 210;3; 0.000000, 1.228417,-0.000000;;, + 211;3; 0.000000, 1.228417,-0.000000;;, + 212;3; 0.000000, 1.228417,-0.000000;;, + 213;3; 0.000000, 1.228417,-0.000000;;, + 214;3; 0.000000, 1.228417,-0.000000;;, + 215;3; 0.000000, 1.228417,-0.000000;;, + 216;3; 0.000000, 1.228417,-0.000000;;, + 217;3; 0.000000, 1.228417,-0.000000;;, + 218;3; 0.000000, 1.228417,-0.000000;;, + 219;3; 0.000000, 1.228417,-0.000000;;, + 220;3; 0.000000, 1.228417,-0.000000;;, + 221;3; 0.000000, 1.228417,-0.000000;;, + 222;3; 0.000000, 1.228417,-0.000000;;, + 223;3; 0.000000, 1.228417,-0.000000;;, + 224;3; 0.000000, 1.228417,-0.000000;;, + 225;3; 0.000000, 1.228417,-0.000000;;, + 226;3; 0.000000, 1.228417,-0.000000;;, + 227;3; 0.000000, 1.228417,-0.000000;;, + 228;3; 0.000000, 1.228417,-0.000000;;, + 229;3; 0.000000, 1.228417,-0.000000;;, + 230;3; 0.000000, 1.228417,-0.000000;;, + 231;3; 0.000000, 1.228417,-0.000000;;, + 232;3; 0.000000, 1.228417,-0.000000;;, + 233;3; 0.000000, 1.228417,-0.000000;;, + 234;3; 0.000000, 1.228417,-0.000000;;, + 235;3; 0.000000, 1.228417,-0.000000;;, + 236;3; 0.000000, 1.228417,-0.000000;;, + 237;3; 0.000000, 1.228417,-0.000000;;, + 238;3; 0.000000, 1.228417,-0.000000;;, + 239;3; 0.000000, 1.228417,-0.000000;;, + 240;3; 0.000000, 1.228417,-0.000000;;, + 241;3; 0.000000, 1.228417,-0.000000;;, + 242;3; 0.000000, 1.228417,-0.000000;;, + 243;3; 0.000000, 1.228417,-0.000000;;, + 244;3; 0.000000, 1.228417,-0.000000;;, + 245;3; 0.000000, 1.228417,-0.000000;;, + 246;3; 0.000000, 1.228417,-0.000000;;, + 247;3; 0.000000, 1.228417,-0.000000;;, + 248;3; 0.000000, 1.228417,-0.000000;;, + 249;3; 0.000000, 1.228417,-0.000000;;; + } + } + Animation { + {Armature_Bone_011} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 1;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 2;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 3;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 4;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 5;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 6;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 7;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 8;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 9;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 10;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 11;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 12;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 13;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 14;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 15;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 16;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 17;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 18;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 19;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 20;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 21;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 22;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 23;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 24;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 25;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 26;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 27;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 28;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 29;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 30;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 31;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 32;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 33;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 34;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 35;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 36;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 37;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 38;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 39;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 40;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 41;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 42;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 43;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 44;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 45;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 46;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 47;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 48;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 49;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 50;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 51;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 52;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 53;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 54;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 55;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 56;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 57;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 58;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 59;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 60;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 61;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 62;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 63;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 64;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 65;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 66;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 67;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 68;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 69;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 70;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 71;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 72;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 73;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 74;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 75;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 76;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 77;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 78;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 79;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 80;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 81;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 82;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 83;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 84;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 85;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 86;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 87;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 88;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 89;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 90;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 91;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 92;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 93;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 94;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 95;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 96;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 97;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 98;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 99;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 100;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 101;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 102;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 103;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 104;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 105;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 106;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 107;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 108;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 109;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 110;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 111;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 112;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 113;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 114;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 115;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 116;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 117;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 118;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 119;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 120;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 121;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 122;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 123;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 124;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 125;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 126;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 127;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 128;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 129;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 130;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 131;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 132;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 133;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 134;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 135;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 136;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 137;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 138;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 139;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 140;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 141;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 142;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 143;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 144;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 145;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 146;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 147;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 148;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 149;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 150;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 151;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 152;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 153;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 154;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 155;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 156;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 157;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 158;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 159;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 160;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 161;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 162;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 163;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 164;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 165;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 166;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 167;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 168;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 169;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 170;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 171;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 172;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 173;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 174;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 175;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 176;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 177;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 178;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 179;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 180;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 181;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 182;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 183;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 184;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 185;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 186;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 187;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 188;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 189;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 190;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 191;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 192;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 193;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 194;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 195;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 196;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 197;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 198;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 199;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 200;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 201;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 202;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 203;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 204;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 205;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 206;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 207;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 208;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 209;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 210;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 211;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 212;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 213;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 214;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 215;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 216;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 217;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 218;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 219;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 220;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 221;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 222;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 223;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 224;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 225;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 226;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 227;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 228;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 229;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 230;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 231;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 232;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 233;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 234;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 235;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 236;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 237;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 238;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 239;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 240;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 241;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 242;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 243;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 244;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 245;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 246;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 247;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 248;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 249;4;-0.755773,-0.000000, 0.000000, 0.654833;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3; 0.000000, 0.826434, 0.000000;;, + 1;3; 0.000000, 0.826434, 0.000000;;, + 2;3; 0.000000, 0.826434, 0.000000;;, + 3;3; 0.000000, 0.826434, 0.000000;;, + 4;3; 0.000000, 0.826434, 0.000000;;, + 5;3; 0.000000, 0.826434, 0.000000;;, + 6;3; 0.000000, 0.826434, 0.000000;;, + 7;3; 0.000000, 0.826434, 0.000000;;, + 8;3; 0.000000, 0.826434, 0.000000;;, + 9;3; 0.000000, 0.826434, 0.000000;;, + 10;3; 0.000000, 0.826434, 0.000000;;, + 11;3; 0.000000, 0.826434, 0.000000;;, + 12;3; 0.000000, 0.826434, 0.000000;;, + 13;3; 0.000000, 0.826434, 0.000000;;, + 14;3; 0.000000, 0.826434, 0.000000;;, + 15;3; 0.000000, 0.826434, 0.000000;;, + 16;3; 0.000000, 0.826434, 0.000000;;, + 17;3; 0.000000, 0.826434, 0.000000;;, + 18;3; 0.000000, 0.826434, 0.000000;;, + 19;3; 0.000000, 0.826434, 0.000000;;, + 20;3; 0.000000, 0.826434, 0.000000;;, + 21;3; 0.000000, 0.826434, 0.000000;;, + 22;3; 0.000000, 0.826434, 0.000000;;, + 23;3; 0.000000, 0.826434, 0.000000;;, + 24;3; 0.000000, 0.826434, 0.000000;;, + 25;3; 0.000000, 0.826434, 0.000000;;, + 26;3; 0.000000, 0.826434, 0.000000;;, + 27;3; 0.000000, 0.826434, 0.000000;;, + 28;3; 0.000000, 0.826434, 0.000000;;, + 29;3; 0.000000, 0.826434, 0.000000;;, + 30;3; 0.000000, 0.826434, 0.000000;;, + 31;3; 0.000000, 0.826434, 0.000000;;, + 32;3; 0.000000, 0.826434, 0.000000;;, + 33;3; 0.000000, 0.826434, 0.000000;;, + 34;3; 0.000000, 0.826434, 0.000000;;, + 35;3; 0.000000, 0.826434, 0.000000;;, + 36;3; 0.000000, 0.826434, 0.000000;;, + 37;3; 0.000000, 0.826434, 0.000000;;, + 38;3; 0.000000, 0.826434, 0.000000;;, + 39;3; 0.000000, 0.826434, 0.000000;;, + 40;3; 0.000000, 0.826434, 0.000000;;, + 41;3; 0.000000, 0.826434, 0.000000;;, + 42;3; 0.000000, 0.826434, 0.000000;;, + 43;3; 0.000000, 0.826434, 0.000000;;, + 44;3; 0.000000, 0.826434, 0.000000;;, + 45;3; 0.000000, 0.826434, 0.000000;;, + 46;3; 0.000000, 0.826434, 0.000000;;, + 47;3; 0.000000, 0.826434, 0.000000;;, + 48;3; 0.000000, 0.826434, 0.000000;;, + 49;3; 0.000000, 0.826434, 0.000000;;, + 50;3; 0.000000, 0.826434, 0.000000;;, + 51;3; 0.000000, 0.826434, 0.000000;;, + 52;3; 0.000000, 0.826434, 0.000000;;, + 53;3; 0.000000, 0.826434, 0.000000;;, + 54;3; 0.000000, 0.826434, 0.000000;;, + 55;3; 0.000000, 0.826434, 0.000000;;, + 56;3; 0.000000, 0.826434, 0.000000;;, + 57;3; 0.000000, 0.826434, 0.000000;;, + 58;3; 0.000000, 0.826434, 0.000000;;, + 59;3; 0.000000, 0.826434, 0.000000;;, + 60;3; 0.000000, 0.826434, 0.000000;;, + 61;3; 0.000000, 0.826434, 0.000000;;, + 62;3; 0.000000, 0.826434, 0.000000;;, + 63;3; 0.000000, 0.826434, 0.000000;;, + 64;3; 0.000000, 0.826434, 0.000000;;, + 65;3; 0.000000, 0.826434, 0.000000;;, + 66;3; 0.000000, 0.826434, 0.000000;;, + 67;3; 0.000000, 0.826434, 0.000000;;, + 68;3; 0.000000, 0.826434, 0.000000;;, + 69;3; 0.000000, 0.826434, 0.000000;;, + 70;3; 0.000000, 0.826434, 0.000000;;, + 71;3; 0.000000, 0.826434, 0.000000;;, + 72;3; 0.000000, 0.826434, 0.000000;;, + 73;3; 0.000000, 0.826434, 0.000000;;, + 74;3; 0.000000, 0.826434, 0.000000;;, + 75;3; 0.000000, 0.826434, 0.000000;;, + 76;3; 0.000000, 0.826434, 0.000000;;, + 77;3; 0.000000, 0.826434, 0.000000;;, + 78;3; 0.000000, 0.826434, 0.000000;;, + 79;3; 0.000000, 0.826434, 0.000000;;, + 80;3; 0.000000, 0.826434, 0.000000;;, + 81;3; 0.000000, 0.826434, 0.000000;;, + 82;3; 0.000000, 0.826434, 0.000000;;, + 83;3; 0.000000, 0.826434, 0.000000;;, + 84;3; 0.000000, 0.826434, 0.000000;;, + 85;3; 0.000000, 0.826434, 0.000000;;, + 86;3; 0.000000, 0.826434, 0.000000;;, + 87;3; 0.000000, 0.826434, 0.000000;;, + 88;3; 0.000000, 0.826434, 0.000000;;, + 89;3; 0.000000, 0.826434, 0.000000;;, + 90;3; 0.000000, 0.826434, 0.000000;;, + 91;3; 0.000000, 0.826434, 0.000000;;, + 92;3; 0.000000, 0.826434, 0.000000;;, + 93;3; 0.000000, 0.826434, 0.000000;;, + 94;3; 0.000000, 0.826434, 0.000000;;, + 95;3; 0.000000, 0.826434, 0.000000;;, + 96;3; 0.000000, 0.826434, 0.000000;;, + 97;3; 0.000000, 0.826434, 0.000000;;, + 98;3; 0.000000, 0.826434, 0.000000;;, + 99;3; 0.000000, 0.826434, 0.000000;;, + 100;3; 0.000000, 0.826434, 0.000000;;, + 101;3; 0.000000, 0.826434, 0.000000;;, + 102;3; 0.000000, 0.826434, 0.000000;;, + 103;3; 0.000000, 0.826434, 0.000000;;, + 104;3; 0.000000, 0.826434, 0.000000;;, + 105;3; 0.000000, 0.826434, 0.000000;;, + 106;3; 0.000000, 0.826434, 0.000000;;, + 107;3; 0.000000, 0.826434, 0.000000;;, + 108;3; 0.000000, 0.826434, 0.000000;;, + 109;3; 0.000000, 0.826434, 0.000000;;, + 110;3; 0.000000, 0.826434, 0.000000;;, + 111;3; 0.000000, 0.826434, 0.000000;;, + 112;3; 0.000000, 0.826434, 0.000000;;, + 113;3; 0.000000, 0.826434, 0.000000;;, + 114;3; 0.000000, 0.826434, 0.000000;;, + 115;3; 0.000000, 0.826434, 0.000000;;, + 116;3; 0.000000, 0.826434, 0.000000;;, + 117;3; 0.000000, 0.826434, 0.000000;;, + 118;3; 0.000000, 0.826434, 0.000000;;, + 119;3; 0.000000, 0.826434, 0.000000;;, + 120;3; 0.000000, 0.826434, 0.000000;;, + 121;3; 0.000000, 0.826434, 0.000000;;, + 122;3; 0.000000, 0.826434, 0.000000;;, + 123;3; 0.000000, 0.826434, 0.000000;;, + 124;3; 0.000000, 0.826434, 0.000000;;, + 125;3; 0.000000, 0.826434, 0.000000;;, + 126;3; 0.000000, 0.826434, 0.000000;;, + 127;3; 0.000000, 0.826434, 0.000000;;, + 128;3; 0.000000, 0.826434, 0.000000;;, + 129;3; 0.000000, 0.826434, 0.000000;;, + 130;3; 0.000000, 0.826434, 0.000000;;, + 131;3; 0.000000, 0.826434, 0.000000;;, + 132;3; 0.000000, 0.826434, 0.000000;;, + 133;3; 0.000000, 0.826434, 0.000000;;, + 134;3; 0.000000, 0.826434, 0.000000;;, + 135;3; 0.000000, 0.826434, 0.000000;;, + 136;3; 0.000000, 0.826434, 0.000000;;, + 137;3; 0.000000, 0.826434, 0.000000;;, + 138;3; 0.000000, 0.826434, 0.000000;;, + 139;3; 0.000000, 0.826434, 0.000000;;, + 140;3; 0.000000, 0.826434, 0.000000;;, + 141;3; 0.000000, 0.826434, 0.000000;;, + 142;3; 0.000000, 0.826434, 0.000000;;, + 143;3; 0.000000, 0.826434, 0.000000;;, + 144;3; 0.000000, 0.826434, 0.000000;;, + 145;3; 0.000000, 0.826434, 0.000000;;, + 146;3; 0.000000, 0.826434, 0.000000;;, + 147;3; 0.000000, 0.826434, 0.000000;;, + 148;3; 0.000000, 0.826434, 0.000000;;, + 149;3; 0.000000, 0.826434, 0.000000;;, + 150;3; 0.000000, 0.826434, 0.000000;;, + 151;3; 0.000000, 0.826434, 0.000000;;, + 152;3; 0.000000, 0.826434, 0.000000;;, + 153;3; 0.000000, 0.826434, 0.000000;;, + 154;3; 0.000000, 0.826434, 0.000000;;, + 155;3; 0.000000, 0.826434, 0.000000;;, + 156;3; 0.000000, 0.826434, 0.000000;;, + 157;3; 0.000000, 0.826434, 0.000000;;, + 158;3; 0.000000, 0.826434, 0.000000;;, + 159;3; 0.000000, 0.826434, 0.000000;;, + 160;3; 0.000000, 0.826434, 0.000000;;, + 161;3; 0.000000, 0.826434, 0.000000;;, + 162;3; 0.000000, 0.826434, 0.000000;;, + 163;3; 0.000000, 0.826434, 0.000000;;, + 164;3; 0.000000, 0.826434, 0.000000;;, + 165;3; 0.000000, 0.826434, 0.000000;;, + 166;3; 0.000000, 0.826434, 0.000000;;, + 167;3; 0.000000, 0.826434, 0.000000;;, + 168;3; 0.000000, 0.826434, 0.000000;;, + 169;3; 0.000000, 0.826434, 0.000000;;, + 170;3; 0.000000, 0.826434, 0.000000;;, + 171;3; 0.000000, 0.826434, 0.000000;;, + 172;3; 0.000000, 0.826434, 0.000000;;, + 173;3; 0.000000, 0.826434, 0.000000;;, + 174;3; 0.000000, 0.826434, 0.000000;;, + 175;3; 0.000000, 0.826434, 0.000000;;, + 176;3; 0.000000, 0.826434, 0.000000;;, + 177;3; 0.000000, 0.826434, 0.000000;;, + 178;3; 0.000000, 0.826434, 0.000000;;, + 179;3; 0.000000, 0.826434, 0.000000;;, + 180;3; 0.000000, 0.826434, 0.000000;;, + 181;3; 0.000000, 0.826434, 0.000000;;, + 182;3; 0.000000, 0.826434, 0.000000;;, + 183;3; 0.000000, 0.826434, 0.000000;;, + 184;3; 0.000000, 0.826434, 0.000000;;, + 185;3; 0.000000, 0.826434, 0.000000;;, + 186;3;-0.000000, 0.826434,-0.000000;;, + 187;3;-0.000000, 0.826434,-0.000000;;, + 188;3;-0.000000, 0.826434, 0.000000;;, + 189;3;-0.000000, 0.826434, 0.000000;;, + 190;3;-0.000000, 0.826434,-0.000000;;, + 191;3; 0.000000, 0.826434, 0.000000;;, + 192;3; 0.000000, 0.826434, 0.000000;;, + 193;3; 0.000000, 0.826434, 0.000000;;, + 194;3; 0.000000, 0.826434,-0.000000;;, + 195;3; 0.000000, 0.826434,-0.000000;;, + 196;3; 0.000000, 0.826434, 0.000000;;, + 197;3; 0.000000, 0.826434,-0.000000;;, + 198;3; 0.000000, 0.826434,-0.000000;;, + 199;3; 0.000000, 0.826434, 0.000000;;, + 200;3; 0.000000, 0.826434, 0.000000;;, + 201;3; 0.000000, 0.826434, 0.000000;;, + 202;3; 0.000000, 0.826434, 0.000000;;, + 203;3; 0.000000, 0.826434, 0.000000;;, + 204;3; 0.000000, 0.826434, 0.000000;;, + 205;3; 0.000000, 0.826434, 0.000000;;, + 206;3; 0.000000, 0.826434, 0.000000;;, + 207;3; 0.000000, 0.826434, 0.000000;;, + 208;3; 0.000000, 0.826434, 0.000000;;, + 209;3; 0.000000, 0.826434, 0.000000;;, + 210;3; 0.000000, 0.826434, 0.000000;;, + 211;3; 0.000000, 0.826434, 0.000000;;, + 212;3; 0.000000, 0.826434, 0.000000;;, + 213;3; 0.000000, 0.826434, 0.000000;;, + 214;3; 0.000000, 0.826434, 0.000000;;, + 215;3; 0.000000, 0.826434, 0.000000;;, + 216;3; 0.000000, 0.826434, 0.000000;;, + 217;3; 0.000000, 0.826434, 0.000000;;, + 218;3; 0.000000, 0.826434, 0.000000;;, + 219;3; 0.000000, 0.826434, 0.000000;;, + 220;3; 0.000000, 0.826434, 0.000000;;, + 221;3; 0.000000, 0.826434, 0.000000;;, + 222;3; 0.000000, 0.826434, 0.000000;;, + 223;3; 0.000000, 0.826434, 0.000000;;, + 224;3; 0.000000, 0.826434, 0.000000;;, + 225;3; 0.000000, 0.826434, 0.000000;;, + 226;3; 0.000000, 0.826434, 0.000000;;, + 227;3; 0.000000, 0.826434, 0.000000;;, + 228;3; 0.000000, 0.826434, 0.000000;;, + 229;3; 0.000000, 0.826434, 0.000000;;, + 230;3; 0.000000, 0.826434, 0.000000;;, + 231;3; 0.000000, 0.826434, 0.000000;;, + 232;3; 0.000000, 0.826434, 0.000000;;, + 233;3; 0.000000, 0.826434, 0.000000;;, + 234;3; 0.000000, 0.826434, 0.000000;;, + 235;3; 0.000000, 0.826434, 0.000000;;, + 236;3; 0.000000, 0.826434, 0.000000;;, + 237;3; 0.000000, 0.826434, 0.000000;;, + 238;3; 0.000000, 0.826434, 0.000000;;, + 239;3; 0.000000, 0.826434, 0.000000;;, + 240;3; 0.000000, 0.826434, 0.000000;;, + 241;3; 0.000000, 0.826434, 0.000000;;, + 242;3; 0.000000, 0.826434, 0.000000;;, + 243;3; 0.000000, 0.826434, 0.000000;;, + 244;3; 0.000000, 0.826434, 0.000000;;, + 245;3; 0.000000, 0.826434, 0.000000;;, + 246;3; 0.000000, 0.826434, 0.000000;;, + 247;3; 0.000000, 0.826434, 0.000000;;, + 248;3; 0.000000, 0.826434, 0.000000;;, + 249;3; 0.000000, 0.826434, 0.000000;;; + } + } + Animation { + {Armature_Bone_031} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 1;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 2;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 3;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 4;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 5;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 6;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 7;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 8;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 9;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 10;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 11;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 12;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 13;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 14;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 15;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 16;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 17;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 18;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 19;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 20;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 21;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 22;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 23;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 24;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 25;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 26;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 27;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 28;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 29;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 30;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 31;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 32;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 33;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 34;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 35;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 36;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 37;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 38;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 39;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 40;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 41;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 42;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 43;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 44;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 45;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 46;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 47;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 48;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 49;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 50;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 51;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 52;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 53;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 54;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 55;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 56;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 57;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 58;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 59;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 60;4;-0.968689, 0.113446,-0.025742,-0.219325;;, + 61;4;-0.968710, 0.113171,-0.025846,-0.219310;;, + 62;4;-0.968747, 0.112711,-0.026021,-0.219286;;, + 63;4;-0.968798, 0.112066,-0.026266,-0.219251;;, + 64;4;-0.968865, 0.111234,-0.026582,-0.219207;;, + 65;4;-0.968946, 0.110217,-0.026969,-0.219153;;, + 66;4;-0.969041, 0.109018,-0.027425,-0.219090;;, + 67;4;-0.969151, 0.107638,-0.027949,-0.219017;;, + 68;4;-0.969275, 0.106084,-0.028540,-0.218934;;, + 69;4;-0.969412, 0.104361,-0.029195,-0.218843;;, + 70;4;-0.969562, 0.102476,-0.029911,-0.218743;;, + 71;4;-0.969724, 0.100440,-0.030685,-0.218635;;, + 72;4;-0.969897, 0.098263,-0.031512,-0.218519;;, + 73;4;-0.970081, 0.095959,-0.032388,-0.218397;;, + 74;4;-0.970273, 0.093541,-0.033307,-0.218268;;, + 75;4;-0.970474, 0.091025,-0.034263,-0.218135;;, + 76;4;-0.970680, 0.088430,-0.035250,-0.217997;;, + 77;4;-0.970892, 0.085774,-0.036259,-0.217856;;, + 78;4;-0.971107, 0.083077,-0.037284,-0.217713;;, + 79;4;-0.971323, 0.080360,-0.038317,-0.217569;;, + 80;4;-0.971539, 0.077642,-0.039350,-0.217425;;, + 81;4;-0.971754, 0.074945,-0.040376,-0.217282;;, + 82;4;-0.971966, 0.072289,-0.041385,-0.217141;;, + 83;4;-0.972172, 0.069694,-0.042371,-0.217003;;, + 84;4;-0.972373, 0.067179,-0.043327,-0.216870;;, + 85;4;-0.972565, 0.064761,-0.044246,-0.216741;;, + 86;4;-0.972748, 0.062456,-0.045122,-0.216619;;, + 87;4;-0.972922, 0.060279,-0.045950,-0.216504;;, + 88;4;-0.973084, 0.058243,-0.046724,-0.216396;;, + 89;4;-0.973234, 0.056358,-0.047440,-0.216296;;, + 90;4;-0.973371, 0.054635,-0.048095,-0.216204;;, + 91;4;-0.973495, 0.053081,-0.048686,-0.216122;;, + 92;4;-0.973605, 0.051701,-0.049210,-0.216049;;, + 93;4;-0.973700, 0.050502,-0.049666,-0.215985;;, + 94;4;-0.973781, 0.049485,-0.050053,-0.215931;;, + 95;4;-0.973848, 0.048654,-0.050369,-0.215887;;, + 96;4;-0.973899, 0.048008,-0.050614,-0.215853;;, + 97;4;-0.973936, 0.047548,-0.050789,-0.215828;;, + 98;4;-0.973957, 0.047274,-0.050893,-0.215814;;, + 99;4;-0.973965, 0.047183,-0.050928,-0.215809;;, + 100;4;-0.973713, 0.048686,-0.050347,-0.215860;;, + 101;4;-0.972929, 0.053356,-0.048543,-0.216018;;, + 102;4;-0.971599, 0.061289,-0.045479,-0.216286;;, + 103;4;-0.969755, 0.072283,-0.041231,-0.216658;;, + 104;4;-0.967498, 0.085743,-0.036032,-0.217114;;, + 105;4;-0.964987, 0.100717,-0.030247,-0.217621;;, + 106;4;-0.962407, 0.116102,-0.024304,-0.218141;;, + 107;4;-0.959925, 0.130904,-0.018586,-0.218642;;, + 108;4;-0.957659, 0.144416,-0.013367,-0.219100;;, + 109;4;-0.955677, 0.156235,-0.008801,-0.219500;;, + 110;4;-0.953850, 0.167357,-0.004285,-0.219889;;, + 111;4;-0.952025, 0.178878, 0.000792,-0.220314;;, + 112;4;-0.950203, 0.190704, 0.006297,-0.220768;;, + 113;4;-0.948381, 0.202668, 0.011995,-0.221234;;, + 114;4;-0.946559, 0.214535, 0.017557,-0.221692;;, + 115;4;-0.944735, 0.226044, 0.022617,-0.222117;;, + 116;4;-0.942906, 0.236970, 0.026859,-0.222488;;, + 117;4;-0.941072, 0.247173, 0.030086,-0.222792;;, + 118;4;-0.939233, 0.256605, 0.032231,-0.223026;;, + 119;4;-0.937389, 0.265288, 0.033326,-0.223190;;, + 120;4;-0.935346, 0.273755, 0.033008,-0.222765;;, + 121;4;-0.932935, 0.282392, 0.030802,-0.221215;;, + 122;4;-0.930228, 0.290970, 0.026717,-0.218609;;, + 123;4;-0.927360, 0.299167, 0.020963,-0.215153;;, + 124;4;-0.924527, 0.306602, 0.013995,-0.211207;;, + 125;4;-0.921951, 0.312914, 0.006471,-0.207243;;, + 126;4;-0.919827, 0.317856,-0.000898,-0.203733;;, + 127;4;-0.918283, 0.321342,-0.007510,-0.201044;;, + 128;4;-0.917369, 0.323425,-0.012968,-0.199388;;, + 129;4;-0.917073, 0.324245,-0.017079,-0.198837;;, + 130;4;-0.918327, 0.318313,-0.020774,-0.199111;;, + 131;4;-0.922102, 0.299967,-0.024984,-0.199953;;, + 132;4;-0.928243, 0.269978,-0.029587,-0.201361;;, + 133;4;-0.936279, 0.230663,-0.034362,-0.203270;;, + 134;4;-0.945392, 0.186071,-0.039003,-0.205545;;, + 135;4;-0.954516, 0.141446,-0.043170,-0.207989;;, + 136;4;-0.962588, 0.102033,-0.046570,-0.210387;;, + 137;4;-0.968783, 0.071889,-0.049021,-0.212559;;, + 138;4;-0.972629, 0.053345,-0.050464,-0.214386;;, + 139;4;-0.973965, 0.047183,-0.050928,-0.215809;;, + 140;4;-0.972992, 0.053356,-0.048543,-0.216888;;, + 141;4;-0.969829, 0.072283,-0.041231,-0.217689;;, + 142;4;-0.965034, 0.100717,-0.030247,-0.218283;;, + 143;4;-0.959939, 0.130904,-0.018586,-0.218838;;, + 144;4;-0.955677, 0.156235,-0.008801,-0.219500;;, + 145;4;-0.952025, 0.178878, 0.000792,-0.220314;;, + 146;4;-0.948381, 0.202668, 0.011995,-0.221234;;, + 147;4;-0.944735, 0.226044, 0.022617,-0.222117;;, + 148;4;-0.941072, 0.247173, 0.030086,-0.222792;;, + 149;4;-0.937389, 0.265288, 0.033326,-0.223190;;, + 150;4;-0.932935, 0.282392, 0.030802,-0.221215;;, + 151;4;-0.927360, 0.299167, 0.020963,-0.215153;;, + 152;4;-0.921951, 0.312914, 0.006471,-0.207243;;, + 153;4;-0.918283, 0.321342,-0.007510,-0.201044;;, + 154;4;-0.917073, 0.324245,-0.017079,-0.198837;;, + 155;4;-0.922126, 0.299967,-0.024984,-0.200281;;, + 156;4;-0.936359, 0.230663,-0.034362,-0.204376;;, + 157;4;-0.954639, 0.141446,-0.043170,-0.209711;;, + 158;4;-0.968887, 0.071889,-0.049021,-0.214013;;, + 159;4;-0.973965, 0.047183,-0.050928,-0.215809;;, + 160;4;-0.973992, 0.047556,-0.050899,-0.216199;;, + 161;4;-0.974015, 0.048685,-0.050806,-0.216569;;, + 162;4;-0.974030, 0.050571,-0.050634,-0.216915;;, + 163;4;-0.974033, 0.053201,-0.050370,-0.217238;;, + 164;4;-0.974017, 0.056541,-0.049997,-0.217533;;, + 165;4;-0.973979, 0.060533,-0.049499,-0.217802;;, + 166;4;-0.973912, 0.065091,-0.048859,-0.218042;;, + 167;4;-0.973808, 0.070101,-0.048063,-0.218253;;, + 168;4;-0.973664, 0.075426,-0.047098,-0.218437;;, + 169;4;-0.973472, 0.080906,-0.045955,-0.218594;;, + 170;4;-0.973229, 0.086373,-0.044631,-0.218726;;, + 171;4;-0.972932, 0.091659,-0.043124,-0.218837;;, + 172;4;-0.972579, 0.096606,-0.041440,-0.218930;;, + 173;4;-0.972170, 0.101077,-0.039588,-0.219007;;, + 174;4;-0.971707, 0.104961,-0.037580,-0.219073;;, + 175;4;-0.971192, 0.108174,-0.035430,-0.219130;;, + 176;4;-0.970628, 0.110660,-0.033153,-0.219182;;, + 177;4;-0.970019, 0.112387,-0.030764,-0.219232;;, + 178;4;-0.969369, 0.113345,-0.028278,-0.219280;;, + 179;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 180;4;-0.964552, 0.104241,-0.012007,-0.211874;;, + 181;4;-0.953551, 0.076644, 0.023948,-0.189333;;, + 182;4;-0.936127, 0.031895, 0.080694,-0.152650;;, + 183;4;-0.913594,-0.026567, 0.153964,-0.104652;;, + 184;4;-0.888228,-0.092752, 0.236381,-0.050266;;, + 185;4;-0.862959,-0.158912, 0.318435, 0.004126;;, + 186;4;-0.840710,-0.217298, 0.390655, 0.052145;;, + 187;4;-0.823731,-0.261930, 0.445758, 0.088860;;, + 188;4;-0.813301,-0.289376, 0.479598, 0.111441;;, + 189;4;-0.809839,-0.298495, 0.490830, 0.118945;;, + 190;4;-0.824998,-0.291801, 0.463471, 0.113940;;, + 191;4;-0.867871,-0.270041, 0.382764, 0.097389;;, + 192;4;-0.923392,-0.234296, 0.269351, 0.069548;;, + 193;4;-0.967550,-0.191264, 0.161977, 0.035039;;, + 194;4;-0.984895,-0.148379, 0.089247,-0.000521;;, + 195;4;-0.985239,-0.095557, 0.041995,-0.044910;;, + 196;4;-0.981508,-0.024533, 0.006385,-0.104293;;, + 197;4;-0.975540, 0.047153,-0.014883,-0.164070;;, + 198;4;-0.970524, 0.096906,-0.023826,-0.205494;;, + 199;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 200;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 201;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 202;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 203;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 204;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 205;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 206;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 207;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 208;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 209;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 210;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 211;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 212;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 213;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 214;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 215;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 216;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 217;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 218;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 219;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 220;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 221;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 222;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 223;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 224;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 225;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 226;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 227;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 228;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 229;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 230;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 231;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 232;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 233;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 234;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 235;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 236;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 237;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 238;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 239;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 240;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 241;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 242;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 243;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 244;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 245;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 246;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 247;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 248;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 249;4;-0.968681, 0.113537,-0.025707,-0.219330;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3; 0.000000, 0.586459, 0.000000;;, + 1;3; 0.000000, 0.586459, 0.000000;;, + 2;3; 0.000000, 0.586459, 0.000000;;, + 3;3; 0.000000, 0.586459, 0.000000;;, + 4;3; 0.000000, 0.586459, 0.000000;;, + 5;3; 0.000000, 0.586459, 0.000000;;, + 6;3; 0.000000, 0.586459, 0.000000;;, + 7;3; 0.000000, 0.586459, 0.000000;;, + 8;3; 0.000000, 0.586459, 0.000000;;, + 9;3; 0.000000, 0.586459, 0.000000;;, + 10;3; 0.000000, 0.586459, 0.000000;;, + 11;3; 0.000000, 0.586459, 0.000000;;, + 12;3; 0.000000, 0.586459, 0.000000;;, + 13;3; 0.000000, 0.586459, 0.000000;;, + 14;3; 0.000000, 0.586459, 0.000000;;, + 15;3; 0.000000, 0.586459, 0.000000;;, + 16;3; 0.000000, 0.586459, 0.000000;;, + 17;3; 0.000000, 0.586459, 0.000000;;, + 18;3; 0.000000, 0.586459, 0.000000;;, + 19;3; 0.000000, 0.586459, 0.000000;;, + 20;3; 0.000000, 0.586459, 0.000000;;, + 21;3; 0.000000, 0.586459, 0.000000;;, + 22;3; 0.000000, 0.586459, 0.000000;;, + 23;3; 0.000000, 0.586459, 0.000000;;, + 24;3; 0.000000, 0.586459, 0.000000;;, + 25;3; 0.000000, 0.586459, 0.000000;;, + 26;3; 0.000000, 0.586459, 0.000000;;, + 27;3; 0.000000, 0.586459, 0.000000;;, + 28;3; 0.000000, 0.586459, 0.000000;;, + 29;3; 0.000000, 0.586459, 0.000000;;, + 30;3; 0.000000, 0.586459, 0.000000;;, + 31;3; 0.000000, 0.586459, 0.000000;;, + 32;3; 0.000000, 0.586459, 0.000000;;, + 33;3; 0.000000, 0.586459, 0.000000;;, + 34;3; 0.000000, 0.586459, 0.000000;;, + 35;3; 0.000000, 0.586459, 0.000000;;, + 36;3; 0.000000, 0.586459, 0.000000;;, + 37;3; 0.000000, 0.586459, 0.000000;;, + 38;3; 0.000000, 0.586459, 0.000000;;, + 39;3; 0.000000, 0.586459, 0.000000;;, + 40;3; 0.000000, 0.586459, 0.000000;;, + 41;3; 0.000000, 0.586459, 0.000000;;, + 42;3; 0.000000, 0.586459, 0.000000;;, + 43;3; 0.000000, 0.586459, 0.000000;;, + 44;3; 0.000000, 0.586459, 0.000000;;, + 45;3; 0.000000, 0.586459, 0.000000;;, + 46;3; 0.000000, 0.586459, 0.000000;;, + 47;3; 0.000000, 0.586459, 0.000000;;, + 48;3; 0.000000, 0.586459, 0.000000;;, + 49;3; 0.000000, 0.586459, 0.000000;;, + 50;3; 0.000000, 0.586459, 0.000000;;, + 51;3; 0.000000, 0.586459, 0.000000;;, + 52;3; 0.000000, 0.586459, 0.000000;;, + 53;3; 0.000000, 0.586459, 0.000000;;, + 54;3; 0.000000, 0.586459, 0.000000;;, + 55;3; 0.000000, 0.586459, 0.000000;;, + 56;3; 0.000000, 0.586459, 0.000000;;, + 57;3; 0.000000, 0.586459, 0.000000;;, + 58;3; 0.000000, 0.586459, 0.000000;;, + 59;3; 0.000000, 0.586459, 0.000000;;, + 60;3; 0.000000, 0.586459, 0.000000;;, + 61;3; 0.000000, 0.586459, 0.000000;;, + 62;3; 0.000000, 0.586459, 0.000000;;, + 63;3; 0.000000, 0.586459, 0.000000;;, + 64;3; 0.000000, 0.586459, 0.000000;;, + 65;3; 0.000000, 0.586459, 0.000000;;, + 66;3; 0.000000, 0.586459, 0.000000;;, + 67;3; 0.000000, 0.586459, 0.000000;;, + 68;3; 0.000000, 0.586459, 0.000000;;, + 69;3; 0.000000, 0.586459, 0.000000;;, + 70;3; 0.000000, 0.586459, 0.000000;;, + 71;3; 0.000000, 0.586459, 0.000000;;, + 72;3; 0.000000, 0.586459, 0.000000;;, + 73;3; 0.000000, 0.586459, 0.000000;;, + 74;3; 0.000000, 0.586459, 0.000000;;, + 75;3; 0.000000, 0.586459, 0.000000;;, + 76;3; 0.000000, 0.586459, 0.000000;;, + 77;3; 0.000000, 0.586459, 0.000000;;, + 78;3; 0.000000, 0.586459, 0.000000;;, + 79;3; 0.000000, 0.586459, 0.000000;;, + 80;3; 0.000000, 0.586459, 0.000000;;, + 81;3; 0.000000, 0.586459, 0.000000;;, + 82;3; 0.000000, 0.586459, 0.000000;;, + 83;3; 0.000000, 0.586459, 0.000000;;, + 84;3; 0.000000, 0.586459, 0.000000;;, + 85;3; 0.000000, 0.586459, 0.000000;;, + 86;3; 0.000000, 0.586459, 0.000000;;, + 87;3; 0.000000, 0.586459, 0.000000;;, + 88;3; 0.000000, 0.586459, 0.000000;;, + 89;3; 0.000000, 0.586459, 0.000000;;, + 90;3; 0.000000, 0.586459, 0.000000;;, + 91;3; 0.000000, 0.586459, 0.000000;;, + 92;3; 0.000000, 0.586459, 0.000000;;, + 93;3; 0.000000, 0.586459, 0.000000;;, + 94;3; 0.000000, 0.586459, 0.000000;;, + 95;3; 0.000000, 0.586459, 0.000000;;, + 96;3; 0.000000, 0.586459, 0.000000;;, + 97;3; 0.000000, 0.586459, 0.000000;;, + 98;3; 0.000000, 0.586459, 0.000000;;, + 99;3; 0.000000, 0.586459, 0.000000;;, + 100;3; 0.000000, 0.586459, 0.000000;;, + 101;3; 0.000000, 0.586459, 0.000000;;, + 102;3; 0.000000, 0.586459, 0.000000;;, + 103;3; 0.000000, 0.586459, 0.000000;;, + 104;3; 0.000000, 0.586459, 0.000000;;, + 105;3; 0.000000, 0.586459, 0.000000;;, + 106;3; 0.000000, 0.586459, 0.000000;;, + 107;3; 0.000000, 0.586459, 0.000000;;, + 108;3; 0.000000, 0.586459, 0.000000;;, + 109;3; 0.000000, 0.586459, 0.000000;;, + 110;3; 0.000000, 0.586459, 0.000000;;, + 111;3; 0.000000, 0.586459, 0.000000;;, + 112;3; 0.000000, 0.586459, 0.000000;;, + 113;3; 0.000000, 0.586459, 0.000000;;, + 114;3; 0.000000, 0.586459, 0.000000;;, + 115;3; 0.000000, 0.586459, 0.000000;;, + 116;3; 0.000000, 0.586459, 0.000000;;, + 117;3; 0.000000, 0.586459, 0.000000;;, + 118;3; 0.000000, 0.586459, 0.000000;;, + 119;3; 0.000000, 0.586459, 0.000000;;, + 120;3; 0.000000, 0.586459, 0.000000;;, + 121;3; 0.000000, 0.586459, 0.000000;;, + 122;3; 0.000000, 0.586459, 0.000000;;, + 123;3; 0.000000, 0.586459, 0.000000;;, + 124;3; 0.000000, 0.586459, 0.000000;;, + 125;3; 0.000000, 0.586459, 0.000000;;, + 126;3; 0.000000, 0.586459, 0.000000;;, + 127;3; 0.000000, 0.586459, 0.000000;;, + 128;3; 0.000000, 0.586459, 0.000000;;, + 129;3; 0.000000, 0.586459, 0.000000;;, + 130;3; 0.000000, 0.586459, 0.000000;;, + 131;3; 0.000000, 0.586459, 0.000000;;, + 132;3; 0.000000, 0.586459, 0.000000;;, + 133;3; 0.000000, 0.586459, 0.000000;;, + 134;3; 0.000000, 0.586459, 0.000000;;, + 135;3; 0.000000, 0.586459, 0.000000;;, + 136;3; 0.000000, 0.586459, 0.000000;;, + 137;3; 0.000000, 0.586459, 0.000000;;, + 138;3; 0.000000, 0.586459, 0.000000;;, + 139;3; 0.000000, 0.586459, 0.000000;;, + 140;3; 0.000000, 0.586459, 0.000000;;, + 141;3; 0.000000, 0.586459, 0.000000;;, + 142;3; 0.000000, 0.586459, 0.000000;;, + 143;3; 0.000000, 0.586459, 0.000000;;, + 144;3; 0.000000, 0.586459, 0.000000;;, + 145;3; 0.000000, 0.586459, 0.000000;;, + 146;3; 0.000000, 0.586459, 0.000000;;, + 147;3; 0.000000, 0.586459, 0.000000;;, + 148;3; 0.000000, 0.586459, 0.000000;;, + 149;3; 0.000000, 0.586459, 0.000000;;, + 150;3; 0.000000, 0.586459, 0.000000;;, + 151;3; 0.000000, 0.586459, 0.000000;;, + 152;3; 0.000000, 0.586459, 0.000000;;, + 153;3; 0.000000, 0.586459, 0.000000;;, + 154;3; 0.000000, 0.586459, 0.000000;;, + 155;3; 0.000000, 0.586459, 0.000000;;, + 156;3; 0.000000, 0.586459, 0.000000;;, + 157;3; 0.000000, 0.586459, 0.000000;;, + 158;3; 0.000000, 0.586459, 0.000000;;, + 159;3; 0.000000, 0.586459, 0.000000;;, + 160;3; 0.000000, 0.586459, 0.000000;;, + 161;3; 0.000000, 0.586459, 0.000000;;, + 162;3; 0.000000, 0.586459, 0.000000;;, + 163;3; 0.000000, 0.586459, 0.000000;;, + 164;3; 0.000000, 0.586459, 0.000000;;, + 165;3; 0.000000, 0.586459, 0.000000;;, + 166;3; 0.000000, 0.586459, 0.000000;;, + 167;3; 0.000000, 0.586459, 0.000000;;, + 168;3; 0.000000, 0.586459, 0.000000;;, + 169;3; 0.000000, 0.586459, 0.000000;;, + 170;3; 0.000000, 0.586459, 0.000000;;, + 171;3; 0.000000, 0.586459, 0.000000;;, + 172;3; 0.000000, 0.586459, 0.000000;;, + 173;3; 0.000000, 0.586459, 0.000000;;, + 174;3; 0.000000, 0.586459, 0.000000;;, + 175;3; 0.000000, 0.586459, 0.000000;;, + 176;3; 0.000000, 0.586459, 0.000000;;, + 177;3; 0.000000, 0.586459, 0.000000;;, + 178;3; 0.000000, 0.586459, 0.000000;;, + 179;3; 0.000000, 0.586459, 0.000000;;, + 180;3;-0.000000, 0.586460, 0.000000;;, + 181;3; 0.000000, 0.586459, 0.000000;;, + 182;3; 0.000000, 0.586460, 0.000000;;, + 183;3;-0.000000, 0.586459,-0.000000;;, + 184;3;-0.000000, 0.586459, 0.000000;;, + 185;3; 0.000000, 0.586460,-0.000000;;, + 186;3;-0.000000, 0.586460,-0.000000;;, + 187;3;-0.000000, 0.586460, 0.000000;;, + 188;3; 0.000000, 0.586460, 0.000000;;, + 189;3;-0.000000, 0.586459, 0.000000;;, + 190;3; 0.000000, 0.586460, 0.000000;;, + 191;3; 0.000000, 0.586460,-0.000000;;, + 192;3;-0.000000, 0.586460,-0.000000;;, + 193;3; 0.000000, 0.586460,-0.000000;;, + 194;3; 0.000000, 0.586460,-0.000000;;, + 195;3;-0.000000, 0.586459,-0.000000;;, + 196;3;-0.000000, 0.586459,-0.000000;;, + 197;3; 0.000000, 0.586460, 0.000000;;, + 198;3;-0.000000, 0.586459, 0.000000;;, + 199;3; 0.000000, 0.586459, 0.000000;;, + 200;3; 0.000000, 0.586459, 0.000000;;, + 201;3; 0.000000, 0.586459, 0.000000;;, + 202;3; 0.000000, 0.586459, 0.000000;;, + 203;3; 0.000000, 0.586459, 0.000000;;, + 204;3; 0.000000, 0.586459, 0.000000;;, + 205;3; 0.000000, 0.586459, 0.000000;;, + 206;3; 0.000000, 0.586459, 0.000000;;, + 207;3; 0.000000, 0.586459, 0.000000;;, + 208;3; 0.000000, 0.586459, 0.000000;;, + 209;3; 0.000000, 0.586459, 0.000000;;, + 210;3; 0.000000, 0.586459, 0.000000;;, + 211;3; 0.000000, 0.586459, 0.000000;;, + 212;3; 0.000000, 0.586459, 0.000000;;, + 213;3; 0.000000, 0.586459, 0.000000;;, + 214;3; 0.000000, 0.586459, 0.000000;;, + 215;3; 0.000000, 0.586459, 0.000000;;, + 216;3; 0.000000, 0.586459, 0.000000;;, + 217;3; 0.000000, 0.586459, 0.000000;;, + 218;3; 0.000000, 0.586459, 0.000000;;, + 219;3; 0.000000, 0.586459, 0.000000;;, + 220;3; 0.000000, 0.586459, 0.000000;;, + 221;3; 0.000000, 0.586459, 0.000000;;, + 222;3; 0.000000, 0.586459, 0.000000;;, + 223;3; 0.000000, 0.586459, 0.000000;;, + 224;3; 0.000000, 0.586459, 0.000000;;, + 225;3; 0.000000, 0.586459, 0.000000;;, + 226;3; 0.000000, 0.586459, 0.000000;;, + 227;3; 0.000000, 0.586459, 0.000000;;, + 228;3; 0.000000, 0.586459, 0.000000;;, + 229;3; 0.000000, 0.586459, 0.000000;;, + 230;3; 0.000000, 0.586459, 0.000000;;, + 231;3; 0.000000, 0.586459, 0.000000;;, + 232;3; 0.000000, 0.586459, 0.000000;;, + 233;3; 0.000000, 0.586459, 0.000000;;, + 234;3; 0.000000, 0.586459, 0.000000;;, + 235;3; 0.000000, 0.586459, 0.000000;;, + 236;3; 0.000000, 0.586459, 0.000000;;, + 237;3; 0.000000, 0.586459, 0.000000;;, + 238;3; 0.000000, 0.586459, 0.000000;;, + 239;3; 0.000000, 0.586459, 0.000000;;, + 240;3; 0.000000, 0.586459, 0.000000;;, + 241;3; 0.000000, 0.586459, 0.000000;;, + 242;3; 0.000000, 0.586459, 0.000000;;, + 243;3; 0.000000, 0.586459, 0.000000;;, + 244;3; 0.000000, 0.586459, 0.000000;;, + 245;3; 0.000000, 0.586459, 0.000000;;, + 246;3; 0.000000, 0.586459, 0.000000;;, + 247;3; 0.000000, 0.586459, 0.000000;;, + 248;3; 0.000000, 0.586459, 0.000000;;, + 249;3; 0.000000, 0.586459, 0.000000;;; + } + } + Animation { + {Armature_Bone_035} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 1;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 2;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 3;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 4;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 5;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 6;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 7;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 8;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 9;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 10;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 11;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 12;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 13;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 14;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 15;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 16;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 17;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 18;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 19;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 20;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 21;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 22;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 23;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 24;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 25;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 26;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 27;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 28;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 29;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 30;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 31;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 32;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 33;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 34;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 35;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 36;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 37;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 38;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 39;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 40;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 41;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 42;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 43;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 44;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 45;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 46;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 47;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 48;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 49;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 50;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 51;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 52;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 53;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 54;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 55;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 56;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 57;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 58;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 59;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 60;4;-0.976348,-0.216142, 0.000107,-0.000002;;, + 61;4;-0.976413,-0.215661, 0.000429,-0.000007;;, + 62;4;-0.976521,-0.214857, 0.000968,-0.000015;;, + 63;4;-0.976672,-0.213728, 0.001725,-0.000026;;, + 64;4;-0.976868,-0.212273, 0.002701,-0.000041;;, + 65;4;-0.977107,-0.210494, 0.003893,-0.000060;;, + 66;4;-0.977388,-0.208396, 0.005300,-0.000081;;, + 67;4;-0.977712,-0.205983, 0.006918,-0.000106;;, + 68;4;-0.978078,-0.203264, 0.008741,-0.000134;;, + 69;4;-0.978482,-0.200249, 0.010763,-0.000165;;, + 70;4;-0.978925,-0.196952, 0.012973,-0.000199;;, + 71;4;-0.979404,-0.193390, 0.015361,-0.000235;;, + 72;4;-0.979915,-0.189581, 0.017915,-0.000275;;, + 73;4;-0.980457,-0.185549, 0.020618,-0.000316;;, + 74;4;-0.981025,-0.181319, 0.023454,-0.000359;;, + 75;4;-0.981616,-0.176919, 0.026404,-0.000405;;, + 76;4;-0.982225,-0.172379, 0.029448,-0.000451;;, + 77;4;-0.982849,-0.167733, 0.032563,-0.000499;;, + 78;4;-0.983483,-0.163015, 0.035727,-0.000548;;, + 79;4;-0.984121,-0.158260, 0.038915,-0.000596;;, + 80;4;-0.984760,-0.153505, 0.042102,-0.000645;;, + 81;4;-0.985394,-0.148787, 0.045266,-0.000694;;, + 82;4;-0.986017,-0.144141, 0.048381,-0.000742;;, + 83;4;-0.986627,-0.139601, 0.051425,-0.000788;;, + 84;4;-0.987218,-0.135201, 0.054375,-0.000833;;, + 85;4;-0.987786,-0.130971, 0.057211,-0.000877;;, + 86;4;-0.988328,-0.126939, 0.059915,-0.000918;;, + 87;4;-0.988839,-0.123130, 0.062468,-0.000957;;, + 88;4;-0.989318,-0.119568, 0.064856,-0.000994;;, + 89;4;-0.989760,-0.116271, 0.067067,-0.001028;;, + 90;4;-0.990165,-0.113257, 0.069088,-0.001059;;, + 91;4;-0.990530,-0.110537, 0.070911,-0.001087;;, + 92;4;-0.990854,-0.108124, 0.072529,-0.001112;;, + 93;4;-0.991136,-0.106026, 0.073936,-0.001133;;, + 94;4;-0.991375,-0.104247, 0.075128,-0.001151;;, + 95;4;-0.991570,-0.102792, 0.076104,-0.001166;;, + 96;4;-0.991722,-0.101663, 0.076861,-0.001178;;, + 97;4;-0.991830,-0.100859, 0.077400,-0.001186;;, + 98;4;-0.991895,-0.100378, 0.077722,-0.001191;;, + 99;4;-0.991916,-0.100219, 0.077829,-0.001193;;, + 100;4;-0.991227,-0.102470, 0.076264,-0.001169;;, + 101;4;-0.989087,-0.109462, 0.071403,-0.001094;;, + 102;4;-0.985451,-0.121340, 0.063145,-0.000968;;, + 103;4;-0.980412,-0.137801, 0.051700,-0.000792;;, + 104;4;-0.974244,-0.157954, 0.037689,-0.000578;;, + 105;4;-0.967381,-0.180374, 0.022101,-0.000339;;, + 106;4;-0.960330,-0.203409, 0.006087,-0.000093;;, + 107;4;-0.953546,-0.225572,-0.009322, 0.000143;;, + 108;4;-0.947354,-0.245802,-0.023387, 0.000358;;, + 109;4;-0.941937,-0.263499,-0.035691, 0.000547;;, + 110;4;-0.936521,-0.281196,-0.047994, 0.000736;;, + 111;4;-0.930328,-0.301426,-0.062059, 0.000951;;, + 112;4;-0.923544,-0.323589,-0.077468, 0.001187;;, + 113;4;-0.916494,-0.346624,-0.093483, 0.001433;;, + 114;4;-0.909631,-0.369044,-0.109071, 0.001672;;, + 115;4;-0.903462,-0.389197,-0.123082, 0.001886;;, + 116;4;-0.898424,-0.405658,-0.134527, 0.002062;;, + 117;4;-0.894788,-0.417536,-0.142785, 0.002188;;, + 118;4;-0.892648,-0.424528,-0.147646, 0.002263;;, + 119;4;-0.891959,-0.426779,-0.149211, 0.002287;;, + 120;4;-0.892648,-0.424528,-0.147646, 0.002263;;, + 121;4;-0.894788,-0.417536,-0.142785, 0.002188;;, + 122;4;-0.898424,-0.405658,-0.134527, 0.002062;;, + 123;4;-0.903462,-0.389197,-0.123082, 0.001886;;, + 124;4;-0.909631,-0.369044,-0.109071, 0.001672;;, + 125;4;-0.916494,-0.346624,-0.093483, 0.001433;;, + 126;4;-0.923544,-0.323589,-0.077468, 0.001187;;, + 127;4;-0.930328,-0.301426,-0.062059, 0.000951;;, + 128;4;-0.936521,-0.281196,-0.047994, 0.000736;;, + 129;4;-0.941937,-0.263499,-0.035691, 0.000547;;, + 130;4;-0.947354,-0.245802,-0.023387, 0.000358;;, + 131;4;-0.953547,-0.225572,-0.009322, 0.000143;;, + 132;4;-0.960330,-0.203409, 0.006087,-0.000093;;, + 133;4;-0.967381,-0.180374, 0.022101,-0.000339;;, + 134;4;-0.974244,-0.157954, 0.037689,-0.000578;;, + 135;4;-0.980412,-0.137801, 0.051700,-0.000792;;, + 136;4;-0.985451,-0.121340, 0.063145,-0.000968;;, + 137;4;-0.989087,-0.109462, 0.071403,-0.001094;;, + 138;4;-0.991227,-0.102470, 0.076264,-0.001169;;, + 139;4;-0.991916,-0.100219, 0.077829,-0.001193;;, + 140;4;-0.989087,-0.109462, 0.071403,-0.001094;;, + 141;4;-0.980412,-0.137801, 0.051700,-0.000792;;, + 142;4;-0.967381,-0.180374, 0.022101,-0.000339;;, + 143;4;-0.953546,-0.225572,-0.009322, 0.000143;;, + 144;4;-0.941937,-0.263499,-0.035691, 0.000547;;, + 145;4;-0.930328,-0.301426,-0.062059, 0.000951;;, + 146;4;-0.916494,-0.346624,-0.093483, 0.001433;;, + 147;4;-0.903462,-0.389197,-0.123082, 0.001886;;, + 148;4;-0.894788,-0.417536,-0.142785, 0.002188;;, + 149;4;-0.891959,-0.426779,-0.149211, 0.002287;;, + 150;4;-0.894788,-0.417536,-0.142785, 0.002188;;, + 151;4;-0.903462,-0.389197,-0.123082, 0.001886;;, + 152;4;-0.916494,-0.346624,-0.093483, 0.001433;;, + 153;4;-0.930328,-0.301426,-0.062059, 0.000951;;, + 154;4;-0.941937,-0.263499,-0.035691, 0.000547;;, + 155;4;-0.953547,-0.225572,-0.009322, 0.000143;;, + 156;4;-0.967381,-0.180374, 0.022101,-0.000339;;, + 157;4;-0.980412,-0.137801, 0.051700,-0.000792;;, + 158;4;-0.989087,-0.109462, 0.071403,-0.001094;;, + 159;4;-0.991916,-0.100219, 0.077829,-0.001193;;, + 160;4;-0.991830,-0.100859, 0.077400,-0.001186;;, + 161;4;-0.991570,-0.102792, 0.076104,-0.001166;;, + 162;4;-0.991136,-0.106026, 0.073936,-0.001133;;, + 163;4;-0.990530,-0.110537, 0.070911,-0.001087;;, + 164;4;-0.989760,-0.116271, 0.067067,-0.001028;;, + 165;4;-0.988839,-0.123130, 0.062468,-0.000957;;, + 166;4;-0.987786,-0.130971, 0.057211,-0.000877;;, + 167;4;-0.986627,-0.139601, 0.051425,-0.000788;;, + 168;4;-0.985394,-0.148787, 0.045266,-0.000694;;, + 169;4;-0.984121,-0.158260, 0.038915,-0.000596;;, + 170;4;-0.982849,-0.167733, 0.032563,-0.000499;;, + 171;4;-0.981616,-0.176919, 0.026404,-0.000405;;, + 172;4;-0.980456,-0.185549, 0.020618,-0.000316;;, + 173;4;-0.979404,-0.193390, 0.015361,-0.000235;;, + 174;4;-0.978482,-0.200249, 0.010763,-0.000165;;, + 175;4;-0.977712,-0.205983, 0.006918,-0.000106;;, + 176;4;-0.977107,-0.210494, 0.003893,-0.000060;;, + 177;4;-0.976672,-0.213728, 0.001725,-0.000026;;, + 178;4;-0.976413,-0.215661, 0.000429,-0.000007;;, + 179;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 180;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 181;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 182;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 183;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 184;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 185;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 186;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 187;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 188;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 189;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 190;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 191;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 192;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 193;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 194;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 195;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 196;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 197;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 198;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 199;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 200;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 201;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 202;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 203;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 204;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 205;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 206;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 207;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 208;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 209;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 210;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 211;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 212;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 213;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 214;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 215;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 216;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 217;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 218;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 219;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 220;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 221;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 222;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 223;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 224;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 225;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 226;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 227;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 228;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 229;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 230;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 231;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 232;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 233;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 234;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 235;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 236;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 237;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 238;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 239;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 240;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 241;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 242;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 243;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 244;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 245;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 246;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 247;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 248;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 249;4;-0.976327,-0.216301,-0.000000,-0.000000;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3; 0.000000, 1.279916, 0.000000;;, + 1;3; 0.000000, 1.279916, 0.000000;;, + 2;3; 0.000000, 1.279916, 0.000000;;, + 3;3; 0.000000, 1.279916, 0.000000;;, + 4;3; 0.000000, 1.279916, 0.000000;;, + 5;3; 0.000000, 1.279916, 0.000000;;, + 6;3; 0.000000, 1.279916, 0.000000;;, + 7;3; 0.000000, 1.279916, 0.000000;;, + 8;3; 0.000000, 1.279916, 0.000000;;, + 9;3; 0.000000, 1.279916, 0.000000;;, + 10;3; 0.000000, 1.279916, 0.000000;;, + 11;3; 0.000000, 1.279916, 0.000000;;, + 12;3; 0.000000, 1.279916, 0.000000;;, + 13;3; 0.000000, 1.279916, 0.000000;;, + 14;3; 0.000000, 1.279916, 0.000000;;, + 15;3; 0.000000, 1.279916, 0.000000;;, + 16;3; 0.000000, 1.279916, 0.000000;;, + 17;3; 0.000000, 1.279916, 0.000000;;, + 18;3; 0.000000, 1.279916, 0.000000;;, + 19;3; 0.000000, 1.279916, 0.000000;;, + 20;3; 0.000000, 1.279916, 0.000000;;, + 21;3; 0.000000, 1.279916, 0.000000;;, + 22;3; 0.000000, 1.279916, 0.000000;;, + 23;3; 0.000000, 1.279916, 0.000000;;, + 24;3; 0.000000, 1.279916, 0.000000;;, + 25;3; 0.000000, 1.279916, 0.000000;;, + 26;3; 0.000000, 1.279916, 0.000000;;, + 27;3; 0.000000, 1.279916, 0.000000;;, + 28;3; 0.000000, 1.279916, 0.000000;;, + 29;3; 0.000000, 1.279916, 0.000000;;, + 30;3; 0.000000, 1.279916, 0.000000;;, + 31;3; 0.000000, 1.279916, 0.000000;;, + 32;3; 0.000000, 1.279916, 0.000000;;, + 33;3; 0.000000, 1.279916, 0.000000;;, + 34;3; 0.000000, 1.279916, 0.000000;;, + 35;3; 0.000000, 1.279916, 0.000000;;, + 36;3; 0.000000, 1.279916, 0.000000;;, + 37;3; 0.000000, 1.279916, 0.000000;;, + 38;3; 0.000000, 1.279916, 0.000000;;, + 39;3; 0.000000, 1.279916, 0.000000;;, + 40;3; 0.000000, 1.279916, 0.000000;;, + 41;3; 0.000000, 1.279916, 0.000000;;, + 42;3; 0.000000, 1.279916, 0.000000;;, + 43;3; 0.000000, 1.279916, 0.000000;;, + 44;3; 0.000000, 1.279916, 0.000000;;, + 45;3; 0.000000, 1.279916, 0.000000;;, + 46;3; 0.000000, 1.279916, 0.000000;;, + 47;3; 0.000000, 1.279916, 0.000000;;, + 48;3; 0.000000, 1.279916, 0.000000;;, + 49;3; 0.000000, 1.279916, 0.000000;;, + 50;3; 0.000000, 1.279916, 0.000000;;, + 51;3; 0.000000, 1.279916, 0.000000;;, + 52;3; 0.000000, 1.279916, 0.000000;;, + 53;3; 0.000000, 1.279916, 0.000000;;, + 54;3; 0.000000, 1.279916, 0.000000;;, + 55;3; 0.000000, 1.279916, 0.000000;;, + 56;3; 0.000000, 1.279916, 0.000000;;, + 57;3; 0.000000, 1.279916, 0.000000;;, + 58;3; 0.000000, 1.279916, 0.000000;;, + 59;3; 0.000000, 1.279916, 0.000000;;, + 60;3;-0.000000, 1.279916, 0.000000;;, + 61;3; 0.000000, 1.279916, 0.000000;;, + 62;3; 0.000000, 1.279915,-0.000000;;, + 63;3; 0.000000, 1.279916,-0.000000;;, + 64;3; 0.000000, 1.279916, 0.000000;;, + 65;3;-0.000000, 1.279916,-0.000000;;, + 66;3;-0.000000, 1.279916,-0.000000;;, + 67;3; 0.000000, 1.279916,-0.000000;;, + 68;3;-0.000000, 1.279916,-0.000000;;, + 69;3; 0.000000, 1.279916, 0.000000;;, + 70;3; 0.000000, 1.279916,-0.000000;;, + 71;3; 0.000000, 1.279916, 0.000000;;, + 72;3;-0.000000, 1.279916,-0.000000;;, + 73;3;-0.000000, 1.279916, 0.000000;;, + 74;3;-0.000000, 1.279915,-0.000000;;, + 75;3;-0.000000, 1.279915,-0.000000;;, + 76;3;-0.000000, 1.279916,-0.000000;;, + 77;3;-0.000000, 1.279915,-0.000000;;, + 78;3;-0.000000, 1.279915,-0.000000;;, + 79;3;-0.000000, 1.279915,-0.000000;;, + 80;3;-0.000000, 1.279916, 0.000000;;, + 81;3;-0.000000, 1.279916,-0.000000;;, + 82;3;-0.000000, 1.279916, 0.000000;;, + 83;3; 0.000000, 1.279916, 0.000000;;, + 84;3;-0.000000, 1.279916,-0.000000;;, + 85;3; 0.000000, 1.279915,-0.000000;;, + 86;3;-0.000000, 1.279915, 0.000000;;, + 87;3;-0.000000, 1.279916, 0.000000;;, + 88;3; 0.000000, 1.279916,-0.000000;;, + 89;3;-0.000000, 1.279916,-0.000000;;, + 90;3; 0.000000, 1.279915,-0.000000;;, + 91;3;-0.000000, 1.279916, 0.000000;;, + 92;3;-0.000000, 1.279915, 0.000000;;, + 93;3;-0.000000, 1.279916,-0.000000;;, + 94;3;-0.000000, 1.279915,-0.000000;;, + 95;3; 0.000000, 1.279915, 0.000000;;, + 96;3;-0.000000, 1.279916, 0.000000;;, + 97;3; 0.000000, 1.279916,-0.000000;;, + 98;3; 0.000000, 1.279916, 0.000000;;, + 99;3;-0.000000, 1.279916,-0.000000;;, + 100;3;-0.000000, 1.279915, 0.000000;;, + 101;3;-0.000000, 1.279916,-0.000000;;, + 102;3;-0.000000, 1.279916, 0.000000;;, + 103;3;-0.000000, 1.279916, 0.000000;;, + 104;3;-0.000000, 1.279916, 0.000000;;, + 105;3;-0.000000, 1.279916, 0.000000;;, + 106;3;-0.000000, 1.279916, 0.000000;;, + 107;3;-0.000000, 1.279916,-0.000000;;, + 108;3;-0.000000, 1.279916,-0.000000;;, + 109;3; 0.000000, 1.279916,-0.000000;;, + 110;3; 0.000000, 1.279916,-0.000000;;, + 111;3;-0.000000, 1.279915, 0.000000;;, + 112;3; 0.000000, 1.279916, 0.000000;;, + 113;3;-0.000000, 1.279916, 0.000000;;, + 114;3;-0.000000, 1.279916, 0.000000;;, + 115;3; 0.000000, 1.279916,-0.000000;;, + 116;3; 0.000000, 1.279916,-0.000000;;, + 117;3;-0.000000, 1.279916, 0.000000;;, + 118;3; 0.000000, 1.279916, 0.000000;;, + 119;3;-0.000000, 1.279916, 0.000000;;, + 120;3; 0.000000, 1.279916, 0.000000;;, + 121;3; 0.000000, 1.279915, 0.000000;;, + 122;3;-0.000000, 1.279916,-0.000000;;, + 123;3;-0.000000, 1.279916,-0.000000;;, + 124;3;-0.000000, 1.279915,-0.000000;;, + 125;3; 0.000000, 1.279915,-0.000000;;, + 126;3;-0.000000, 1.279916,-0.000000;;, + 127;3;-0.000000, 1.279916, 0.000000;;, + 128;3;-0.000000, 1.279916,-0.000000;;, + 129;3;-0.000000, 1.279916, 0.000000;;, + 130;3;-0.000000, 1.279916,-0.000000;;, + 131;3;-0.000000, 1.279916,-0.000000;;, + 132;3; 0.000000, 1.279916,-0.000000;;, + 133;3; 0.000000, 1.279916,-0.000000;;, + 134;3;-0.000000, 1.279916,-0.000000;;, + 135;3; 0.000000, 1.279916,-0.000000;;, + 136;3;-0.000000, 1.279915,-0.000000;;, + 137;3;-0.000000, 1.279915, 0.000000;;, + 138;3; 0.000000, 1.279916, 0.000000;;, + 139;3;-0.000000, 1.279916,-0.000000;;, + 140;3; 0.000000, 1.279916, 0.000000;;, + 141;3;-0.000000, 1.279916, 0.000000;;, + 142;3;-0.000000, 1.279916,-0.000000;;, + 143;3; 0.000000, 1.279916,-0.000000;;, + 144;3; 0.000000, 1.279916,-0.000000;;, + 145;3;-0.000000, 1.279915, 0.000000;;, + 146;3;-0.000000, 1.279916, 0.000000;;, + 147;3; 0.000000, 1.279916,-0.000000;;, + 148;3;-0.000000, 1.279916, 0.000000;;, + 149;3;-0.000000, 1.279916, 0.000000;;, + 150;3; 0.000000, 1.279915, 0.000000;;, + 151;3;-0.000000, 1.279916,-0.000000;;, + 152;3; 0.000000, 1.279915,-0.000000;;, + 153;3;-0.000000, 1.279916, 0.000000;;, + 154;3;-0.000000, 1.279916, 0.000000;;, + 155;3;-0.000000, 1.279915,-0.000000;;, + 156;3;-0.000000, 1.279916, 0.000000;;, + 157;3;-0.000000, 1.279915,-0.000000;;, + 158;3; 0.000000, 1.279915,-0.000000;;, + 159;3;-0.000000, 1.279916,-0.000000;;, + 160;3;-0.000000, 1.279916, 0.000000;;, + 161;3;-0.000000, 1.279916,-0.000000;;, + 162;3;-0.000000, 1.279916,-0.000000;;, + 163;3; 0.000000, 1.279916,-0.000000;;, + 164;3;-0.000000, 1.279916,-0.000000;;, + 165;3;-0.000000, 1.279916,-0.000000;;, + 166;3;-0.000000, 1.279916, 0.000000;;, + 167;3;-0.000000, 1.279915,-0.000000;;, + 168;3; 0.000000, 1.279916, 0.000000;;, + 169;3;-0.000000, 1.279916, 0.000000;;, + 170;3;-0.000000, 1.279915,-0.000000;;, + 171;3; 0.000000, 1.279916, 0.000000;;, + 172;3;-0.000000, 1.279915,-0.000000;;, + 173;3;-0.000000, 1.279916, 0.000000;;, + 174;3;-0.000000, 1.279916,-0.000000;;, + 175;3;-0.000000, 1.279916,-0.000000;;, + 176;3; 0.000000, 1.279916, 0.000000;;, + 177;3; 0.000000, 1.279916,-0.000000;;, + 178;3;-0.000000, 1.279916,-0.000000;;, + 179;3; 0.000000, 1.279916, 0.000000;;, + 180;3;-0.000000, 1.279916, 0.000000;;, + 181;3;-0.000000, 1.279916, 0.000000;;, + 182;3; 0.000000, 1.279916, 0.000000;;, + 183;3;-0.000000, 1.279915, 0.000000;;, + 184;3; 0.000000, 1.279916,-0.000000;;, + 185;3; 0.000000, 1.279916,-0.000000;;, + 186;3;-0.000000, 1.279916, 0.000000;;, + 187;3;-0.000000, 1.279916, 0.000000;;, + 188;3;-0.000000, 1.279915,-0.000000;;, + 189;3; 0.000000, 1.279916,-0.000000;;, + 190;3; 0.000000, 1.279916, 0.000000;;, + 191;3; 0.000000, 1.279916, 0.000000;;, + 192;3;-0.000000, 1.279916,-0.000000;;, + 193;3;-0.000000, 1.279916, 0.000000;;, + 194;3;-0.000000, 1.279916, 0.000000;;, + 195;3; 0.000000, 1.279916,-0.000000;;, + 196;3;-0.000000, 1.279915,-0.000000;;, + 197;3; 0.000000, 1.279916,-0.000000;;, + 198;3; 0.000000, 1.279916,-0.000000;;, + 199;3; 0.000000, 1.279916, 0.000000;;, + 200;3; 0.000000, 1.279916, 0.000000;;, + 201;3; 0.000000, 1.279916, 0.000000;;, + 202;3; 0.000000, 1.279916, 0.000000;;, + 203;3; 0.000000, 1.279916, 0.000000;;, + 204;3; 0.000000, 1.279916, 0.000000;;, + 205;3; 0.000000, 1.279916, 0.000000;;, + 206;3; 0.000000, 1.279916, 0.000000;;, + 207;3; 0.000000, 1.279916, 0.000000;;, + 208;3; 0.000000, 1.279916, 0.000000;;, + 209;3; 0.000000, 1.279916, 0.000000;;, + 210;3; 0.000000, 1.279916, 0.000000;;, + 211;3; 0.000000, 1.279916, 0.000000;;, + 212;3; 0.000000, 1.279916, 0.000000;;, + 213;3; 0.000000, 1.279916, 0.000000;;, + 214;3; 0.000000, 1.279916, 0.000000;;, + 215;3; 0.000000, 1.279916, 0.000000;;, + 216;3; 0.000000, 1.279916, 0.000000;;, + 217;3; 0.000000, 1.279916, 0.000000;;, + 218;3; 0.000000, 1.279916, 0.000000;;, + 219;3; 0.000000, 1.279916, 0.000000;;, + 220;3; 0.000000, 1.279916, 0.000000;;, + 221;3; 0.000000, 1.279916, 0.000000;;, + 222;3; 0.000000, 1.279916, 0.000000;;, + 223;3; 0.000000, 1.279916, 0.000000;;, + 224;3; 0.000000, 1.279916, 0.000000;;, + 225;3; 0.000000, 1.279916, 0.000000;;, + 226;3; 0.000000, 1.279916, 0.000000;;, + 227;3; 0.000000, 1.279916, 0.000000;;, + 228;3; 0.000000, 1.279916, 0.000000;;, + 229;3; 0.000000, 1.279916, 0.000000;;, + 230;3; 0.000000, 1.279916, 0.000000;;, + 231;3; 0.000000, 1.279916, 0.000000;;, + 232;3; 0.000000, 1.279916, 0.000000;;, + 233;3; 0.000000, 1.279916, 0.000000;;, + 234;3; 0.000000, 1.279916, 0.000000;;, + 235;3; 0.000000, 1.279916, 0.000000;;, + 236;3; 0.000000, 1.279916, 0.000000;;, + 237;3; 0.000000, 1.279916, 0.000000;;, + 238;3; 0.000000, 1.279916, 0.000000;;, + 239;3; 0.000000, 1.279916, 0.000000;;, + 240;3; 0.000000, 1.279916, 0.000000;;, + 241;3; 0.000000, 1.279916, 0.000000;;, + 242;3; 0.000000, 1.279916, 0.000000;;, + 243;3; 0.000000, 1.279916, 0.000000;;, + 244;3; 0.000000, 1.279916, 0.000000;;, + 245;3; 0.000000, 1.279916, 0.000000;;, + 246;3; 0.000000, 1.279916, 0.000000;;, + 247;3; 0.000000, 1.279916, 0.000000;;, + 248;3; 0.000000, 1.279916, 0.000000;;, + 249;3; 0.000000, 1.279916, 0.000000;;; + } + } + Animation { + {Armature_Bone_039} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 1;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 2;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 3;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 4;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 5;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 6;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 7;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 8;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 9;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 10;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 11;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 12;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 13;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 14;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 15;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 16;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 17;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 18;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 19;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 20;4;-0.957694,-0.287562, 0.000415, 0.000224;;, + 21;4;-0.958119,-0.285459, 0.001668, 0.000901;;, + 22;4;-0.958830,-0.281944, 0.003764, 0.002032;;, + 23;4;-0.959821,-0.277039, 0.006688, 0.003611;;, + 24;4;-0.961082,-0.270805, 0.010404, 0.005618;;, + 25;4;-0.962590,-0.263348, 0.014850, 0.008018;;, + 26;4;-0.964313,-0.254824, 0.019932, 0.010762;;, + 27;4;-0.966210,-0.245441, 0.025526, 0.013783;;, + 28;4;-0.968230,-0.235453, 0.031480, 0.016998;;, + 29;4;-0.970312,-0.225154, 0.037620, 0.020313;;, + 30;4;-0.972394,-0.214855, 0.043759, 0.023628;;, + 31;4;-0.974414,-0.204868, 0.049713, 0.026843;;, + 32;4;-0.976311,-0.195485, 0.055307, 0.029864;;, + 33;4;-0.978034,-0.186961, 0.060389, 0.032608;;, + 34;4;-0.979542,-0.179504, 0.064835, 0.035008;;, + 35;4;-0.980802,-0.173270, 0.068551, 0.037015;;, + 36;4;-0.981794,-0.168365, 0.071475, 0.038594;;, + 37;4;-0.982505,-0.164850, 0.073571, 0.039726;;, + 38;4;-0.982930,-0.162747, 0.074824, 0.040402;;, + 39;4;-0.983071,-0.162052, 0.075239, 0.040626;;, + 40;4;-0.982930,-0.162747, 0.074824, 0.040402;;, + 41;4;-0.982505,-0.164850, 0.073571, 0.039726;;, + 42;4;-0.981794,-0.168365, 0.071475, 0.038594;;, + 43;4;-0.980803,-0.173270, 0.068551, 0.037015;;, + 44;4;-0.979542,-0.179504, 0.064835, 0.035008;;, + 45;4;-0.978034,-0.186961, 0.060389, 0.032608;;, + 46;4;-0.976311,-0.195485, 0.055307, 0.029864;;, + 47;4;-0.974414,-0.204868, 0.049713, 0.026843;;, + 48;4;-0.972394,-0.214856, 0.043759, 0.023628;;, + 49;4;-0.970312,-0.225154, 0.037620, 0.020313;;, + 50;4;-0.968230,-0.235453, 0.031480, 0.016998;;, + 51;4;-0.966210,-0.245441, 0.025526, 0.013783;;, + 52;4;-0.964313,-0.254824, 0.019932, 0.010762;;, + 53;4;-0.962590,-0.263348, 0.014850, 0.008018;;, + 54;4;-0.961082,-0.270805, 0.010404, 0.005618;;, + 55;4;-0.959821,-0.277039, 0.006688, 0.003611;;, + 56;4;-0.958830,-0.281944, 0.003764, 0.002032;;, + 57;4;-0.958119,-0.285459, 0.001668, 0.000901;;, + 58;4;-0.957694,-0.287562, 0.000415, 0.000224;;, + 59;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 60;4;-0.957573,-0.288177, 0.000048, 0.000026;;, + 61;4;-0.957635,-0.287937, 0.000194, 0.000105;;, + 62;4;-0.957737,-0.287534, 0.000437, 0.000236;;, + 63;4;-0.957881,-0.286969, 0.000779, 0.000421;;, + 64;4;-0.958066,-0.286241, 0.001220, 0.000659;;, + 65;4;-0.958292,-0.285351, 0.001758, 0.000949;;, + 66;4;-0.958560,-0.284301, 0.002394, 0.001293;;, + 67;4;-0.958867,-0.283093, 0.003124, 0.001687;;, + 68;4;-0.959213,-0.281732, 0.003948, 0.002132;;, + 69;4;-0.959597,-0.280223, 0.004861, 0.002625;;, + 70;4;-0.960017,-0.278573, 0.005859, 0.003164;;, + 71;4;-0.960470,-0.276790, 0.006938, 0.003746;;, + 72;4;-0.960955,-0.274884, 0.008091, 0.004369;;, + 73;4;-0.961468,-0.272866, 0.009312, 0.005028;;, + 74;4;-0.962007,-0.270749, 0.010592, 0.005720;;, + 75;4;-0.962567,-0.268546, 0.011925, 0.006439;;, + 76;4;-0.963145,-0.266274, 0.013300, 0.007181;;, + 77;4;-0.963737,-0.263949, 0.014706, 0.007941;;, + 78;4;-0.964338,-0.261587, 0.016135, 0.008712;;, + 79;4;-0.964943,-0.259208, 0.017575, 0.009490;;, + 80;4;-0.965548,-0.256828, 0.019014, 0.010267;;, + 81;4;-0.966149,-0.254467, 0.020443, 0.011039;;, + 82;4;-0.966741,-0.252141, 0.021850, 0.011798;;, + 83;4;-0.967319,-0.249869, 0.023225, 0.012540;;, + 84;4;-0.967879,-0.247667, 0.024557, 0.013260;;, + 85;4;-0.968418,-0.245549, 0.025838, 0.013952;;, + 86;4;-0.968931,-0.243531, 0.027059, 0.014611;;, + 87;4;-0.969416,-0.241625, 0.028212, 0.015233;;, + 88;4;-0.969869,-0.239842, 0.029291, 0.015816;;, + 89;4;-0.970289,-0.238192, 0.030289, 0.016355;;, + 90;4;-0.970673,-0.236683, 0.031202, 0.016848;;, + 91;4;-0.971019,-0.235323, 0.032025, 0.017292;;, + 92;4;-0.971327,-0.234115, 0.032756, 0.017687;;, + 93;4;-0.971594,-0.233064, 0.033391, 0.018030;;, + 94;4;-0.971820,-0.232174, 0.033930, 0.018321;;, + 95;4;-0.972005,-0.231446, 0.034370, 0.018559;;, + 96;4;-0.972149,-0.230881, 0.034712, 0.018743;;, + 97;4;-0.972252,-0.230478, 0.034956, 0.018875;;, + 98;4;-0.972313,-0.230238, 0.035101, 0.018953;;, + 99;4;-0.972333,-0.230158, 0.035150, 0.018979;;, + 100;4;-0.972043,-0.231075, 0.034585, 0.018675;;, + 101;4;-0.971141,-0.233922, 0.032833, 0.017729;;, + 102;4;-0.969610,-0.238758, 0.029856, 0.016121;;, + 103;4;-0.967487,-0.245461, 0.025730, 0.013893;;, + 104;4;-0.964889,-0.253668, 0.020679, 0.011166;;, + 105;4;-0.961998,-0.262797, 0.015059, 0.008132;;, + 106;4;-0.959027,-0.272176, 0.009286, 0.005014;;, + 107;4;-0.956170,-0.281201, 0.003731, 0.002015;;, + 108;4;-0.953561,-0.289439,-0.001339,-0.000723;;, + 109;4;-0.951279,-0.296645,-0.005775,-0.003118;;, + 110;4;-0.948997,-0.303851,-0.010210,-0.005513;;, + 111;4;-0.946389,-0.312088,-0.015281,-0.008251;;, + 112;4;-0.943531,-0.321113,-0.020836,-0.011251;;, + 113;4;-0.940561,-0.330493,-0.026609,-0.014368;;, + 114;4;-0.937670,-0.339622,-0.032229,-0.017402;;, + 115;4;-0.935071,-0.347828,-0.037280,-0.020130;;, + 116;4;-0.932949,-0.354531,-0.041406,-0.022357;;, + 117;4;-0.931417,-0.359368,-0.044383,-0.023965;;, + 118;4;-0.930516,-0.362215,-0.046135,-0.024911;;, + 119;4;-0.930225,-0.363131,-0.046699,-0.025216;;, + 120;4;-0.930516,-0.362215,-0.046135,-0.024911;;, + 121;4;-0.931417,-0.359368,-0.044383,-0.023965;;, + 122;4;-0.932949,-0.354531,-0.041406,-0.022357;;, + 123;4;-0.935071,-0.347828,-0.037280,-0.020130;;, + 124;4;-0.937670,-0.339622,-0.032229,-0.017402;;, + 125;4;-0.940561,-0.330493,-0.026609,-0.014368;;, + 126;4;-0.943531,-0.321113,-0.020836,-0.011251;;, + 127;4;-0.946389,-0.312088,-0.015281,-0.008251;;, + 128;4;-0.948997,-0.303851,-0.010210,-0.005513;;, + 129;4;-0.951279,-0.296645,-0.005775,-0.003118;;, + 130;4;-0.953561,-0.289439,-0.001339,-0.000723;;, + 131;4;-0.956170,-0.281201, 0.003731, 0.002015;;, + 132;4;-0.959027,-0.272176, 0.009286, 0.005014;;, + 133;4;-0.961998,-0.262797, 0.015059, 0.008132;;, + 134;4;-0.964889,-0.253668, 0.020679, 0.011166;;, + 135;4;-0.967487,-0.245461, 0.025730, 0.013893;;, + 136;4;-0.969610,-0.238758, 0.029856, 0.016121;;, + 137;4;-0.971141,-0.233922, 0.032833, 0.017729;;, + 138;4;-0.972043,-0.231075, 0.034585, 0.018675;;, + 139;4;-0.972333,-0.230158, 0.035150, 0.018979;;, + 140;4;-0.971141,-0.233922, 0.032833, 0.017729;;, + 141;4;-0.967487,-0.245461, 0.025730, 0.013893;;, + 142;4;-0.961998,-0.262797, 0.015059, 0.008132;;, + 143;4;-0.956170,-0.281201, 0.003731, 0.002015;;, + 144;4;-0.951279,-0.296645,-0.005775,-0.003118;;, + 145;4;-0.946389,-0.312088,-0.015281,-0.008251;;, + 146;4;-0.940561,-0.330493,-0.026609,-0.014368;;, + 147;4;-0.935071,-0.347828,-0.037280,-0.020130;;, + 148;4;-0.931417,-0.359368,-0.044383,-0.023965;;, + 149;4;-0.930225,-0.363131,-0.046699,-0.025216;;, + 150;4;-0.931417,-0.359368,-0.044383,-0.023965;;, + 151;4;-0.935071,-0.347828,-0.037280,-0.020130;;, + 152;4;-0.940561,-0.330493,-0.026609,-0.014368;;, + 153;4;-0.946389,-0.312088,-0.015281,-0.008251;;, + 154;4;-0.951279,-0.296645,-0.005775,-0.003118;;, + 155;4;-0.956170,-0.281201, 0.003731, 0.002015;;, + 156;4;-0.961998,-0.262797, 0.015059, 0.008132;;, + 157;4;-0.967487,-0.245461, 0.025730, 0.013893;;, + 158;4;-0.971141,-0.233922, 0.032833, 0.017729;;, + 159;4;-0.972333,-0.230158, 0.035150, 0.018979;;, + 160;4;-0.972252,-0.230478, 0.034956, 0.018875;;, + 161;4;-0.972005,-0.231446, 0.034370, 0.018559;;, + 162;4;-0.971594,-0.233064, 0.033391, 0.018030;;, + 163;4;-0.971019,-0.235323, 0.032025, 0.017292;;, + 164;4;-0.970289,-0.238192, 0.030289, 0.016355;;, + 165;4;-0.969416,-0.241625, 0.028212, 0.015233;;, + 166;4;-0.968418,-0.245549, 0.025838, 0.013952;;, + 167;4;-0.967319,-0.249869, 0.023225, 0.012540;;, + 168;4;-0.966149,-0.254466, 0.020443, 0.011039;;, + 169;4;-0.964943,-0.259208, 0.017575, 0.009490;;, + 170;4;-0.963737,-0.263949, 0.014706, 0.007941;;, + 171;4;-0.962567,-0.268546, 0.011925, 0.006439;;, + 172;4;-0.961469,-0.272866, 0.009312, 0.005028;;, + 173;4;-0.960470,-0.276790, 0.006938, 0.003746;;, + 174;4;-0.959597,-0.280223, 0.004861, 0.002625;;, + 175;4;-0.958867,-0.283093, 0.003124, 0.001687;;, + 176;4;-0.958292,-0.285351, 0.001758, 0.000949;;, + 177;4;-0.957881,-0.286969, 0.000779, 0.000421;;, + 178;4;-0.957635,-0.287937, 0.000194, 0.000105;;, + 179;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 180;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 181;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 182;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 183;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 184;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 185;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 186;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 187;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 188;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 189;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 190;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 191;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 192;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 193;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 194;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 195;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 196;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 197;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 198;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 199;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 200;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 201;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 202;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 203;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 204;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 205;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 206;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 207;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 208;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 209;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 210;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 211;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 212;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 213;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 214;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 215;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 216;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 217;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 218;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 219;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 220;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 221;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 222;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 223;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 224;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 225;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 226;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 227;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 228;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 229;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 230;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 231;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 232;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 233;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 234;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 235;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 236;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 237;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 238;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 239;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 240;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 241;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 242;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 243;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 244;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 245;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 246;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 247;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 248;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 249;4;-0.957553,-0.288257,-0.000000,-0.000000;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3;-0.000000, 1.228416,-0.000000;;, + 1;3;-0.000000, 1.228416,-0.000000;;, + 2;3;-0.000000, 1.228416,-0.000000;;, + 3;3;-0.000000, 1.228416,-0.000000;;, + 4;3;-0.000000, 1.228416,-0.000000;;, + 5;3;-0.000000, 1.228416,-0.000000;;, + 6;3;-0.000000, 1.228416,-0.000000;;, + 7;3;-0.000000, 1.228416,-0.000000;;, + 8;3;-0.000000, 1.228416,-0.000000;;, + 9;3;-0.000000, 1.228416,-0.000000;;, + 10;3;-0.000000, 1.228416,-0.000000;;, + 11;3;-0.000000, 1.228416,-0.000000;;, + 12;3;-0.000000, 1.228416,-0.000000;;, + 13;3;-0.000000, 1.228416,-0.000000;;, + 14;3;-0.000000, 1.228416,-0.000000;;, + 15;3;-0.000000, 1.228416,-0.000000;;, + 16;3;-0.000000, 1.228416,-0.000000;;, + 17;3;-0.000000, 1.228416,-0.000000;;, + 18;3;-0.000000, 1.228416,-0.000000;;, + 19;3;-0.000000, 1.228416,-0.000000;;, + 20;3;-0.000000, 1.228416,-0.000000;;, + 21;3;-0.000000, 1.228416,-0.000000;;, + 22;3;-0.000000, 1.228416,-0.000000;;, + 23;3;-0.000000, 1.228416,-0.000000;;, + 24;3;-0.000000, 1.228416,-0.000000;;, + 25;3;-0.000000, 1.228416,-0.000000;;, + 26;3;-0.000000, 1.228416,-0.000000;;, + 27;3;-0.000000, 1.228416,-0.000000;;, + 28;3;-0.000000, 1.228416,-0.000000;;, + 29;3;-0.000000, 1.228416,-0.000000;;, + 30;3;-0.000000, 1.228416,-0.000000;;, + 31;3;-0.000000, 1.228416,-0.000000;;, + 32;3;-0.000000, 1.228416,-0.000000;;, + 33;3;-0.000000, 1.228416,-0.000000;;, + 34;3;-0.000000, 1.228416,-0.000000;;, + 35;3;-0.000000, 1.228416,-0.000000;;, + 36;3;-0.000000, 1.228416,-0.000000;;, + 37;3;-0.000000, 1.228416,-0.000000;;, + 38;3;-0.000000, 1.228416,-0.000000;;, + 39;3;-0.000000, 1.228416,-0.000000;;, + 40;3;-0.000000, 1.228416,-0.000000;;, + 41;3;-0.000000, 1.228416,-0.000000;;, + 42;3;-0.000000, 1.228416,-0.000000;;, + 43;3;-0.000000, 1.228416,-0.000000;;, + 44;3;-0.000000, 1.228416,-0.000000;;, + 45;3;-0.000000, 1.228416,-0.000000;;, + 46;3;-0.000000, 1.228416,-0.000000;;, + 47;3;-0.000000, 1.228416,-0.000000;;, + 48;3;-0.000000, 1.228416,-0.000000;;, + 49;3;-0.000000, 1.228416,-0.000000;;, + 50;3;-0.000000, 1.228416,-0.000000;;, + 51;3;-0.000000, 1.228416,-0.000000;;, + 52;3;-0.000000, 1.228416,-0.000000;;, + 53;3;-0.000000, 1.228416,-0.000000;;, + 54;3;-0.000000, 1.228416,-0.000000;;, + 55;3;-0.000000, 1.228416,-0.000000;;, + 56;3;-0.000000, 1.228416,-0.000000;;, + 57;3;-0.000000, 1.228416,-0.000000;;, + 58;3;-0.000000, 1.228416,-0.000000;;, + 59;3;-0.000000, 1.228416,-0.000000;;, + 60;3; 0.000000, 1.228416,-0.000000;;, + 61;3; 0.000000, 1.228417,-0.000000;;, + 62;3; 0.000000, 1.228416, 0.000000;;, + 63;3;-0.000000, 1.228416, 0.000000;;, + 64;3; 0.000000, 1.228417,-0.000000;;, + 65;3; 0.000000, 1.228416, 0.000000;;, + 66;3; 0.000000, 1.228417,-0.000000;;, + 67;3;-0.000000, 1.228417, 0.000000;;, + 68;3;-0.000000, 1.228416,-0.000000;;, + 69;3; 0.000000, 1.228417, 0.000000;;, + 70;3;-0.000000, 1.228416,-0.000000;;, + 71;3;-0.000000, 1.228417,-0.000000;;, + 72;3;-0.000000, 1.228417, 0.000000;;, + 73;3;-0.000000, 1.228416,-0.000000;;, + 74;3;-0.000000, 1.228417,-0.000000;;, + 75;3; 0.000000, 1.228416,-0.000000;;, + 76;3; 0.000000, 1.228416,-0.000000;;, + 77;3; 0.000000, 1.228416, 0.000000;;, + 78;3; 0.000000, 1.228416,-0.000000;;, + 79;3; 0.000000, 1.228417,-0.000000;;, + 80;3;-0.000000, 1.228416, 0.000000;;, + 81;3;-0.000000, 1.228416, 0.000000;;, + 82;3; 0.000000, 1.228416, 0.000000;;, + 83;3; 0.000000, 1.228416,-0.000000;;, + 84;3;-0.000000, 1.228417,-0.000000;;, + 85;3;-0.000000, 1.228416, 0.000000;;, + 86;3; 0.000000, 1.228417, 0.000000;;, + 87;3; 0.000000, 1.228416, 0.000000;;, + 88;3;-0.000000, 1.228417,-0.000000;;, + 89;3; 0.000000, 1.228417,-0.000000;;, + 90;3; 0.000000, 1.228416,-0.000000;;, + 91;3; 0.000000, 1.228416, 0.000000;;, + 92;3;-0.000000, 1.228416,-0.000000;;, + 93;3;-0.000000, 1.228417, 0.000000;;, + 94;3; 0.000000, 1.228416,-0.000000;;, + 95;3; 0.000000, 1.228416,-0.000000;;, + 96;3;-0.000000, 1.228417, 0.000000;;, + 97;3;-0.000000, 1.228417, 0.000000;;, + 98;3;-0.000000, 1.228416,-0.000000;;, + 99;3; 0.000000, 1.228417,-0.000000;;, + 100;3;-0.000000, 1.228416, 0.000000;;, + 101;3;-0.000000, 1.228416,-0.000000;;, + 102;3; 0.000001, 1.228416,-0.000000;;, + 103;3;-0.000000, 1.228416,-0.000000;;, + 104;3; 0.000000, 1.228417,-0.000000;;, + 105;3;-0.000000, 1.228416, 0.000000;;, + 106;3;-0.000000, 1.228416, 0.000000;;, + 107;3;-0.000000, 1.228416, 0.000000;;, + 108;3; 0.000000, 1.228417, 0.000000;;, + 109;3;-0.000000, 1.228417,-0.000000;;, + 110;3;-0.000000, 1.228417, 0.000000;;, + 111;3;-0.000000, 1.228416,-0.000000;;, + 112;3;-0.000000, 1.228417,-0.000000;;, + 113;3; 0.000000, 1.228417,-0.000000;;, + 114;3;-0.000000, 1.228416, 0.000000;;, + 115;3; 0.000000, 1.228416,-0.000000;;, + 116;3;-0.000000, 1.228416, 0.000000;;, + 117;3; 0.000000, 1.228417, 0.000000;;, + 118;3;-0.000000, 1.228417,-0.000000;;, + 119;3; 0.000000, 1.228416, 0.000000;;, + 120;3;-0.000000, 1.228416, 0.000000;;, + 121;3; 0.000000, 1.228416,-0.000000;;, + 122;3; 0.000000, 1.228416, 0.000000;;, + 123;3;-0.000000, 1.228416,-0.000000;;, + 124;3; 0.000000, 1.228417,-0.000000;;, + 125;3;-0.000000, 1.228416, 0.000000;;, + 126;3; 0.000000, 1.228416,-0.000000;;, + 127;3; 0.000000, 1.228417,-0.000000;;, + 128;3; 0.000000, 1.228417, 0.000000;;, + 129;3;-0.000000, 1.228416, 0.000000;;, + 130;3; 0.000000, 1.228417,-0.000000;;, + 131;3;-0.000000, 1.228417,-0.000000;;, + 132;3;-0.000000, 1.228416,-0.000000;;, + 133;3; 0.000000, 1.228417,-0.000000;;, + 134;3; 0.000000, 1.228417,-0.000000;;, + 135;3; 0.000000, 1.228416,-0.000000;;, + 136;3;-0.000000, 1.228416, 0.000000;;, + 137;3; 0.000000, 1.228416, 0.000000;;, + 138;3; 0.000000, 1.228416, 0.000000;;, + 139;3; 0.000000, 1.228417,-0.000000;;, + 140;3;-0.000000, 1.228417,-0.000000;;, + 141;3;-0.000001, 1.228416,-0.000000;;, + 142;3;-0.000000, 1.228416, 0.000000;;, + 143;3; 0.000000, 1.228417, 0.000000;;, + 144;3;-0.000000, 1.228417,-0.000000;;, + 145;3;-0.000000, 1.228416,-0.000000;;, + 146;3; 0.000000, 1.228417,-0.000000;;, + 147;3; 0.000000, 1.228416,-0.000000;;, + 148;3; 0.000000, 1.228417, 0.000000;;, + 149;3; 0.000000, 1.228416, 0.000000;;, + 150;3; 0.000000, 1.228416,-0.000000;;, + 151;3;-0.000000, 1.228416,-0.000000;;, + 152;3;-0.000000, 1.228416, 0.000000;;, + 153;3; 0.000000, 1.228417,-0.000000;;, + 154;3;-0.000000, 1.228416, 0.000000;;, + 155;3;-0.000000, 1.228416,-0.000000;;, + 156;3; 0.000000, 1.228416,-0.000000;;, + 157;3; 0.000000, 1.228416, 0.000000;;, + 158;3;-0.000000, 1.228416, 0.000000;;, + 159;3; 0.000000, 1.228417,-0.000000;;, + 160;3; 0.000000, 1.228416,-0.000000;;, + 161;3; 0.000000, 1.228416, 0.000000;;, + 162;3;-0.000000, 1.228416,-0.000000;;, + 163;3;-0.000000, 1.228417, 0.000000;;, + 164;3; 0.000000, 1.228417, 0.000000;;, + 165;3; 0.000000, 1.228416, 0.000000;;, + 166;3;-0.000000, 1.228416, 0.000000;;, + 167;3; 0.000000, 1.228417,-0.000000;;, + 168;3;-0.000000, 1.228416,-0.000000;;, + 169;3;-0.000000, 1.228417,-0.000000;;, + 170;3;-0.000000, 1.228416,-0.000000;;, + 171;3;-0.000000, 1.228417,-0.000000;;, + 172;3;-0.000001, 1.228417, 0.000000;;, + 173;3;-0.000000, 1.228417,-0.000000;;, + 174;3;-0.000000, 1.228416, 0.000000;;, + 175;3;-0.000000, 1.228417,-0.000000;;, + 176;3; 0.000000, 1.228417,-0.000000;;, + 177;3;-0.000000, 1.228417,-0.000000;;, + 178;3;-0.000000, 1.228416, 0.000000;;, + 179;3;-0.000000, 1.228416,-0.000000;;, + 180;3; 0.000000, 1.228417,-0.000000;;, + 181;3;-0.000000, 1.228417, 0.000000;;, + 182;3;-0.000000, 1.228417, 0.000000;;, + 183;3; 0.000000, 1.228416, 0.000000;;, + 184;3; 0.000000, 1.228416,-0.000000;;, + 185;3; 0.000000, 1.228416, 0.000000;;, + 186;3;-0.000000, 1.228416,-0.000000;;, + 187;3; 0.000000, 1.228416, 0.000000;;, + 188;3;-0.000000, 1.228417, 0.000000;;, + 189;3; 0.000000, 1.228416, 0.000000;;, + 190;3; 0.000000, 1.228417,-0.000000;;, + 191;3;-0.000000, 1.228416, 0.000000;;, + 192;3;-0.000000, 1.228417, 0.000000;;, + 193;3;-0.000000, 1.228416,-0.000000;;, + 194;3;-0.000000, 1.228416,-0.000000;;, + 195;3; 0.000000, 1.228416,-0.000001;;, + 196;3; 0.000000, 1.228416, 0.000000;;, + 197;3; 0.000000, 1.228416,-0.000000;;, + 198;3; 0.000000, 1.228416, 0.000000;;, + 199;3;-0.000000, 1.228416,-0.000000;;, + 200;3;-0.000000, 1.228416,-0.000000;;, + 201;3;-0.000000, 1.228416,-0.000000;;, + 202;3;-0.000000, 1.228416,-0.000000;;, + 203;3;-0.000000, 1.228416,-0.000000;;, + 204;3;-0.000000, 1.228416,-0.000000;;, + 205;3;-0.000000, 1.228416,-0.000000;;, + 206;3;-0.000000, 1.228416,-0.000000;;, + 207;3;-0.000000, 1.228416,-0.000000;;, + 208;3;-0.000000, 1.228416,-0.000000;;, + 209;3;-0.000000, 1.228416,-0.000000;;, + 210;3;-0.000000, 1.228416,-0.000000;;, + 211;3;-0.000000, 1.228416,-0.000000;;, + 212;3;-0.000000, 1.228416,-0.000000;;, + 213;3;-0.000000, 1.228416,-0.000000;;, + 214;3;-0.000000, 1.228416,-0.000000;;, + 215;3;-0.000000, 1.228416,-0.000000;;, + 216;3;-0.000000, 1.228416,-0.000000;;, + 217;3;-0.000000, 1.228416,-0.000000;;, + 218;3;-0.000000, 1.228416,-0.000000;;, + 219;3;-0.000000, 1.228416,-0.000000;;, + 220;3;-0.000000, 1.228416,-0.000000;;, + 221;3;-0.000000, 1.228416,-0.000000;;, + 222;3;-0.000000, 1.228416,-0.000000;;, + 223;3;-0.000000, 1.228416,-0.000000;;, + 224;3;-0.000000, 1.228416,-0.000000;;, + 225;3;-0.000000, 1.228416,-0.000000;;, + 226;3;-0.000000, 1.228416,-0.000000;;, + 227;3;-0.000000, 1.228416,-0.000000;;, + 228;3;-0.000000, 1.228416,-0.000000;;, + 229;3;-0.000000, 1.228416,-0.000000;;, + 230;3;-0.000000, 1.228416,-0.000000;;, + 231;3;-0.000000, 1.228416,-0.000000;;, + 232;3;-0.000000, 1.228416,-0.000000;;, + 233;3;-0.000000, 1.228416,-0.000000;;, + 234;3;-0.000000, 1.228416,-0.000000;;, + 235;3;-0.000000, 1.228416,-0.000000;;, + 236;3;-0.000000, 1.228416,-0.000000;;, + 237;3;-0.000000, 1.228416,-0.000000;;, + 238;3;-0.000000, 1.228416,-0.000000;;, + 239;3;-0.000000, 1.228416,-0.000000;;, + 240;3;-0.000000, 1.228416,-0.000000;;, + 241;3;-0.000000, 1.228416,-0.000000;;, + 242;3;-0.000000, 1.228416,-0.000000;;, + 243;3;-0.000000, 1.228416,-0.000000;;, + 244;3;-0.000000, 1.228416,-0.000000;;, + 245;3;-0.000000, 1.228416,-0.000000;;, + 246;3;-0.000000, 1.228416,-0.000000;;, + 247;3;-0.000000, 1.228416,-0.000000;;, + 248;3;-0.000000, 1.228416,-0.000000;;, + 249;3;-0.000000, 1.228416,-0.000000;;; + } + } + Animation { + {Armature_Bone_012} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 1;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 2;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 3;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 4;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 5;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 6;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 7;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 8;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 9;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 10;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 11;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 12;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 13;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 14;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 15;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 16;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 17;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 18;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 19;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 20;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 21;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 22;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 23;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 24;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 25;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 26;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 27;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 28;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 29;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 30;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 31;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 32;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 33;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 34;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 35;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 36;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 37;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 38;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 39;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 40;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 41;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 42;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 43;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 44;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 45;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 46;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 47;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 48;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 49;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 50;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 51;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 52;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 53;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 54;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 55;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 56;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 57;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 58;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 59;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 60;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 61;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 62;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 63;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 64;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 65;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 66;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 67;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 68;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 69;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 70;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 71;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 72;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 73;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 74;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 75;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 76;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 77;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 78;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 79;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 80;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 81;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 82;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 83;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 84;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 85;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 86;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 87;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 88;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 89;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 90;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 91;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 92;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 93;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 94;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 95;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 96;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 97;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 98;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 99;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 100;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 101;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 102;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 103;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 104;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 105;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 106;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 107;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 108;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 109;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 110;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 111;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 112;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 113;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 114;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 115;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 116;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 117;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 118;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 119;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 120;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 121;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 122;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 123;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 124;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 125;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 126;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 127;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 128;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 129;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 130;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 131;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 132;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 133;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 134;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 135;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 136;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 137;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 138;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 139;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 140;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 141;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 142;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 143;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 144;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 145;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 146;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 147;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 148;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 149;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 150;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 151;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 152;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 153;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 154;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 155;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 156;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 157;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 158;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 159;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 160;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 161;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 162;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 163;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 164;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 165;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 166;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 167;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 168;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 169;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 170;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 171;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 172;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 173;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 174;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 175;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 176;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 177;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 178;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 179;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 180;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 181;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 182;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 183;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 184;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 185;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 186;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 187;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 188;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 189;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 190;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 191;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 192;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 193;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 194;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 195;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 196;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 197;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 198;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 199;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 200;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 201;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 202;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 203;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 204;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 205;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 206;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 207;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 208;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 209;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 210;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 211;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 212;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 213;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 214;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 215;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 216;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 217;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 218;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 219;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 220;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 221;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 222;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 223;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 224;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 225;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 226;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 227;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 228;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 229;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 230;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 231;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 232;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 233;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 234;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 235;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 236;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 237;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 238;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 239;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 240;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 241;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 242;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 243;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 244;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 245;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 246;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 247;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 248;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 249;4;-0.888173,-0.000000, 0.000000, 0.459508;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3; 0.000000, 0.826434, 0.000000;;, + 1;3; 0.000000, 0.826434, 0.000000;;, + 2;3; 0.000000, 0.826434, 0.000000;;, + 3;3; 0.000000, 0.826434, 0.000000;;, + 4;3; 0.000000, 0.826434, 0.000000;;, + 5;3; 0.000000, 0.826434, 0.000000;;, + 6;3; 0.000000, 0.826434, 0.000000;;, + 7;3; 0.000000, 0.826434, 0.000000;;, + 8;3; 0.000000, 0.826434, 0.000000;;, + 9;3; 0.000000, 0.826434, 0.000000;;, + 10;3; 0.000000, 0.826434, 0.000000;;, + 11;3; 0.000000, 0.826434, 0.000000;;, + 12;3; 0.000000, 0.826434, 0.000000;;, + 13;3; 0.000000, 0.826434, 0.000000;;, + 14;3; 0.000000, 0.826434, 0.000000;;, + 15;3; 0.000000, 0.826434, 0.000000;;, + 16;3; 0.000000, 0.826434, 0.000000;;, + 17;3; 0.000000, 0.826434, 0.000000;;, + 18;3; 0.000000, 0.826434, 0.000000;;, + 19;3; 0.000000, 0.826434, 0.000000;;, + 20;3; 0.000000, 0.826434, 0.000000;;, + 21;3; 0.000000, 0.826434, 0.000000;;, + 22;3; 0.000000, 0.826434, 0.000000;;, + 23;3; 0.000000, 0.826434, 0.000000;;, + 24;3; 0.000000, 0.826434, 0.000000;;, + 25;3; 0.000000, 0.826434, 0.000000;;, + 26;3; 0.000000, 0.826434, 0.000000;;, + 27;3; 0.000000, 0.826434, 0.000000;;, + 28;3; 0.000000, 0.826434, 0.000000;;, + 29;3; 0.000000, 0.826434, 0.000000;;, + 30;3; 0.000000, 0.826434, 0.000000;;, + 31;3; 0.000000, 0.826434, 0.000000;;, + 32;3; 0.000000, 0.826434, 0.000000;;, + 33;3; 0.000000, 0.826434, 0.000000;;, + 34;3; 0.000000, 0.826434, 0.000000;;, + 35;3; 0.000000, 0.826434, 0.000000;;, + 36;3; 0.000000, 0.826434, 0.000000;;, + 37;3; 0.000000, 0.826434, 0.000000;;, + 38;3; 0.000000, 0.826434, 0.000000;;, + 39;3; 0.000000, 0.826434, 0.000000;;, + 40;3; 0.000000, 0.826434, 0.000000;;, + 41;3; 0.000000, 0.826434, 0.000000;;, + 42;3; 0.000000, 0.826434, 0.000000;;, + 43;3; 0.000000, 0.826434, 0.000000;;, + 44;3; 0.000000, 0.826434, 0.000000;;, + 45;3; 0.000000, 0.826434, 0.000000;;, + 46;3; 0.000000, 0.826434, 0.000000;;, + 47;3; 0.000000, 0.826434, 0.000000;;, + 48;3; 0.000000, 0.826434, 0.000000;;, + 49;3; 0.000000, 0.826434, 0.000000;;, + 50;3; 0.000000, 0.826434, 0.000000;;, + 51;3; 0.000000, 0.826434, 0.000000;;, + 52;3; 0.000000, 0.826434, 0.000000;;, + 53;3; 0.000000, 0.826434, 0.000000;;, + 54;3; 0.000000, 0.826434, 0.000000;;, + 55;3; 0.000000, 0.826434, 0.000000;;, + 56;3; 0.000000, 0.826434, 0.000000;;, + 57;3; 0.000000, 0.826434, 0.000000;;, + 58;3; 0.000000, 0.826434, 0.000000;;, + 59;3; 0.000000, 0.826434, 0.000000;;, + 60;3; 0.000000, 0.826434, 0.000000;;, + 61;3; 0.000000, 0.826434, 0.000000;;, + 62;3; 0.000000, 0.826434, 0.000000;;, + 63;3; 0.000000, 0.826434, 0.000000;;, + 64;3; 0.000000, 0.826434, 0.000000;;, + 65;3; 0.000000, 0.826434, 0.000000;;, + 66;3; 0.000000, 0.826434, 0.000000;;, + 67;3; 0.000000, 0.826434, 0.000000;;, + 68;3; 0.000000, 0.826434, 0.000000;;, + 69;3; 0.000000, 0.826434, 0.000000;;, + 70;3; 0.000000, 0.826434, 0.000000;;, + 71;3; 0.000000, 0.826434, 0.000000;;, + 72;3; 0.000000, 0.826434, 0.000000;;, + 73;3; 0.000000, 0.826434, 0.000000;;, + 74;3; 0.000000, 0.826434, 0.000000;;, + 75;3; 0.000000, 0.826434, 0.000000;;, + 76;3; 0.000000, 0.826434, 0.000000;;, + 77;3; 0.000000, 0.826434, 0.000000;;, + 78;3; 0.000000, 0.826434, 0.000000;;, + 79;3; 0.000000, 0.826434, 0.000000;;, + 80;3; 0.000000, 0.826434, 0.000000;;, + 81;3; 0.000000, 0.826434, 0.000000;;, + 82;3; 0.000000, 0.826434, 0.000000;;, + 83;3; 0.000000, 0.826434, 0.000000;;, + 84;3; 0.000000, 0.826434, 0.000000;;, + 85;3; 0.000000, 0.826434, 0.000000;;, + 86;3; 0.000000, 0.826434, 0.000000;;, + 87;3; 0.000000, 0.826434, 0.000000;;, + 88;3; 0.000000, 0.826434, 0.000000;;, + 89;3; 0.000000, 0.826434, 0.000000;;, + 90;3; 0.000000, 0.826434, 0.000000;;, + 91;3; 0.000000, 0.826434, 0.000000;;, + 92;3; 0.000000, 0.826434, 0.000000;;, + 93;3; 0.000000, 0.826434, 0.000000;;, + 94;3; 0.000000, 0.826434, 0.000000;;, + 95;3; 0.000000, 0.826434, 0.000000;;, + 96;3; 0.000000, 0.826434, 0.000000;;, + 97;3; 0.000000, 0.826434, 0.000000;;, + 98;3; 0.000000, 0.826434, 0.000000;;, + 99;3; 0.000000, 0.826434, 0.000000;;, + 100;3; 0.000000, 0.826434, 0.000000;;, + 101;3; 0.000000, 0.826434, 0.000000;;, + 102;3; 0.000000, 0.826434, 0.000000;;, + 103;3; 0.000000, 0.826434, 0.000000;;, + 104;3; 0.000000, 0.826434, 0.000000;;, + 105;3; 0.000000, 0.826434, 0.000000;;, + 106;3; 0.000000, 0.826434, 0.000000;;, + 107;3; 0.000000, 0.826434, 0.000000;;, + 108;3; 0.000000, 0.826434, 0.000000;;, + 109;3; 0.000000, 0.826434, 0.000000;;, + 110;3; 0.000000, 0.826434, 0.000000;;, + 111;3; 0.000000, 0.826434, 0.000000;;, + 112;3; 0.000000, 0.826434, 0.000000;;, + 113;3; 0.000000, 0.826434, 0.000000;;, + 114;3; 0.000000, 0.826434, 0.000000;;, + 115;3; 0.000000, 0.826434, 0.000000;;, + 116;3; 0.000000, 0.826434, 0.000000;;, + 117;3; 0.000000, 0.826434, 0.000000;;, + 118;3; 0.000000, 0.826434, 0.000000;;, + 119;3; 0.000000, 0.826434, 0.000000;;, + 120;3; 0.000000, 0.826434, 0.000000;;, + 121;3; 0.000000, 0.826434, 0.000000;;, + 122;3; 0.000000, 0.826434, 0.000000;;, + 123;3; 0.000000, 0.826434, 0.000000;;, + 124;3; 0.000000, 0.826434, 0.000000;;, + 125;3; 0.000000, 0.826434, 0.000000;;, + 126;3; 0.000000, 0.826434, 0.000000;;, + 127;3; 0.000000, 0.826434, 0.000000;;, + 128;3; 0.000000, 0.826434, 0.000000;;, + 129;3; 0.000000, 0.826434, 0.000000;;, + 130;3; 0.000000, 0.826434, 0.000000;;, + 131;3; 0.000000, 0.826434, 0.000000;;, + 132;3; 0.000000, 0.826434, 0.000000;;, + 133;3; 0.000000, 0.826434, 0.000000;;, + 134;3; 0.000000, 0.826434, 0.000000;;, + 135;3; 0.000000, 0.826434, 0.000000;;, + 136;3; 0.000000, 0.826434, 0.000000;;, + 137;3; 0.000000, 0.826434, 0.000000;;, + 138;3; 0.000000, 0.826434, 0.000000;;, + 139;3; 0.000000, 0.826434, 0.000000;;, + 140;3; 0.000000, 0.826434, 0.000000;;, + 141;3; 0.000000, 0.826434, 0.000000;;, + 142;3; 0.000000, 0.826434, 0.000000;;, + 143;3; 0.000000, 0.826434, 0.000000;;, + 144;3; 0.000000, 0.826434, 0.000000;;, + 145;3; 0.000000, 0.826434, 0.000000;;, + 146;3; 0.000000, 0.826434, 0.000000;;, + 147;3; 0.000000, 0.826434, 0.000000;;, + 148;3; 0.000000, 0.826434, 0.000000;;, + 149;3; 0.000000, 0.826434, 0.000000;;, + 150;3; 0.000000, 0.826434, 0.000000;;, + 151;3; 0.000000, 0.826434, 0.000000;;, + 152;3; 0.000000, 0.826434, 0.000000;;, + 153;3; 0.000000, 0.826434, 0.000000;;, + 154;3; 0.000000, 0.826434, 0.000000;;, + 155;3; 0.000000, 0.826434, 0.000000;;, + 156;3; 0.000000, 0.826434, 0.000000;;, + 157;3; 0.000000, 0.826434, 0.000000;;, + 158;3; 0.000000, 0.826434, 0.000000;;, + 159;3; 0.000000, 0.826434, 0.000000;;, + 160;3; 0.000000, 0.826434, 0.000000;;, + 161;3; 0.000000, 0.826434, 0.000000;;, + 162;3; 0.000000, 0.826434, 0.000000;;, + 163;3; 0.000000, 0.826434, 0.000000;;, + 164;3; 0.000000, 0.826434, 0.000000;;, + 165;3; 0.000000, 0.826434, 0.000000;;, + 166;3; 0.000000, 0.826434, 0.000000;;, + 167;3; 0.000000, 0.826434, 0.000000;;, + 168;3; 0.000000, 0.826434, 0.000000;;, + 169;3; 0.000000, 0.826434, 0.000000;;, + 170;3; 0.000000, 0.826434, 0.000000;;, + 171;3; 0.000000, 0.826434, 0.000000;;, + 172;3; 0.000000, 0.826434, 0.000000;;, + 173;3; 0.000000, 0.826434, 0.000000;;, + 174;3; 0.000000, 0.826434, 0.000000;;, + 175;3; 0.000000, 0.826434, 0.000000;;, + 176;3; 0.000000, 0.826434, 0.000000;;, + 177;3; 0.000000, 0.826434, 0.000000;;, + 178;3; 0.000000, 0.826434, 0.000000;;, + 179;3; 0.000000, 0.826434, 0.000000;;, + 180;3; 0.000000, 0.826434, 0.000000;;, + 181;3; 0.000000, 0.826434, 0.000000;;, + 182;3; 0.000000, 0.826434, 0.000000;;, + 183;3; 0.000000, 0.826434, 0.000000;;, + 184;3; 0.000000, 0.826434, 0.000000;;, + 185;3; 0.000000, 0.826434, 0.000000;;, + 186;3;-0.000000, 0.826434,-0.000000;;, + 187;3;-0.000000, 0.826434,-0.000000;;, + 188;3;-0.000000, 0.826434, 0.000000;;, + 189;3;-0.000000, 0.826434, 0.000000;;, + 190;3;-0.000000, 0.826434,-0.000000;;, + 191;3; 0.000000, 0.826434, 0.000000;;, + 192;3; 0.000000, 0.826434, 0.000000;;, + 193;3; 0.000000, 0.826434, 0.000000;;, + 194;3; 0.000000, 0.826434,-0.000000;;, + 195;3; 0.000000, 0.826434,-0.000000;;, + 196;3; 0.000000, 0.826434, 0.000000;;, + 197;3; 0.000000, 0.826434,-0.000000;;, + 198;3; 0.000000, 0.826434,-0.000000;;, + 199;3; 0.000000, 0.826434, 0.000000;;, + 200;3; 0.000000, 0.826434, 0.000000;;, + 201;3; 0.000000, 0.826434, 0.000000;;, + 202;3; 0.000000, 0.826434, 0.000000;;, + 203;3; 0.000000, 0.826434, 0.000000;;, + 204;3; 0.000000, 0.826434, 0.000000;;, + 205;3; 0.000000, 0.826434, 0.000000;;, + 206;3; 0.000000, 0.826434, 0.000000;;, + 207;3; 0.000000, 0.826434, 0.000000;;, + 208;3; 0.000000, 0.826434, 0.000000;;, + 209;3; 0.000000, 0.826434, 0.000000;;, + 210;3; 0.000000, 0.826434, 0.000000;;, + 211;3; 0.000000, 0.826434, 0.000000;;, + 212;3; 0.000000, 0.826434, 0.000000;;, + 213;3; 0.000000, 0.826434, 0.000000;;, + 214;3; 0.000000, 0.826434, 0.000000;;, + 215;3; 0.000000, 0.826434, 0.000000;;, + 216;3; 0.000000, 0.826434, 0.000000;;, + 217;3; 0.000000, 0.826434, 0.000000;;, + 218;3; 0.000000, 0.826434, 0.000000;;, + 219;3; 0.000000, 0.826434, 0.000000;;, + 220;3; 0.000000, 0.826434, 0.000000;;, + 221;3; 0.000000, 0.826434, 0.000000;;, + 222;3; 0.000000, 0.826434, 0.000000;;, + 223;3; 0.000000, 0.826434, 0.000000;;, + 224;3; 0.000000, 0.826434, 0.000000;;, + 225;3; 0.000000, 0.826434, 0.000000;;, + 226;3; 0.000000, 0.826434, 0.000000;;, + 227;3; 0.000000, 0.826434, 0.000000;;, + 228;3; 0.000000, 0.826434, 0.000000;;, + 229;3; 0.000000, 0.826434, 0.000000;;, + 230;3; 0.000000, 0.826434, 0.000000;;, + 231;3; 0.000000, 0.826434, 0.000000;;, + 232;3; 0.000000, 0.826434, 0.000000;;, + 233;3; 0.000000, 0.826434, 0.000000;;, + 234;3; 0.000000, 0.826434, 0.000000;;, + 235;3; 0.000000, 0.826434, 0.000000;;, + 236;3; 0.000000, 0.826434, 0.000000;;, + 237;3; 0.000000, 0.826434, 0.000000;;, + 238;3; 0.000000, 0.826434, 0.000000;;, + 239;3; 0.000000, 0.826434, 0.000000;;, + 240;3; 0.000000, 0.826434, 0.000000;;, + 241;3; 0.000000, 0.826434, 0.000000;;, + 242;3; 0.000000, 0.826434, 0.000000;;, + 243;3; 0.000000, 0.826434, 0.000000;;, + 244;3; 0.000000, 0.826434, 0.000000;;, + 245;3; 0.000000, 0.826434, 0.000000;;, + 246;3; 0.000000, 0.826434, 0.000000;;, + 247;3; 0.000000, 0.826434, 0.000000;;, + 248;3; 0.000000, 0.826434, 0.000000;;, + 249;3; 0.000000, 0.826434, 0.000000;;; + } + } + Animation { + {Armature_Bone_032} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 1;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 2;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 3;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 4;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 5;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 6;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 7;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 8;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 9;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 10;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 11;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 12;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 13;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 14;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 15;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 16;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 17;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 18;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 19;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 20;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 21;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 22;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 23;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 24;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 25;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 26;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 27;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 28;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 29;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 30;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 31;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 32;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 33;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 34;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 35;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 36;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 37;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 38;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 39;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 40;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 41;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 42;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 43;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 44;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 45;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 46;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 47;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 48;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 49;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 50;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 51;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 52;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 53;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 54;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 55;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 56;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 57;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 58;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 59;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 60;4;-0.949096, 0.142195,-0.041751,-0.277852;;, + 61;4;-0.948920, 0.142900,-0.042317,-0.277727;;, + 62;4;-0.948624, 0.144079,-0.043263,-0.277519;;, + 63;4;-0.948207, 0.145735,-0.044593,-0.277227;;, + 64;4;-0.947669, 0.147867,-0.046306,-0.276852;;, + 65;4;-0.947010, 0.150475,-0.048399,-0.276393;;, + 66;4;-0.946229, 0.153552,-0.050870,-0.275853;;, + 67;4;-0.945329, 0.157089,-0.053711,-0.275232;;, + 68;4;-0.944312, 0.161076,-0.056912,-0.274534;;, + 69;4;-0.943180, 0.165496,-0.060461,-0.273761;;, + 70;4;-0.941937, 0.170329,-0.064342,-0.272917;;, + 71;4;-0.940589, 0.175552,-0.068535,-0.272007;;, + 72;4;-0.939141, 0.181135,-0.073018,-0.271036;;, + 73;4;-0.937601, 0.187046,-0.077765,-0.270011;;, + 74;4;-0.935977, 0.193248,-0.082745,-0.268937;;, + 75;4;-0.934278, 0.199699,-0.087925,-0.267824;;, + 76;4;-0.932514, 0.206355,-0.093269,-0.266679;;, + 77;4;-0.930696, 0.213167,-0.098739,-0.265511;;, + 78;4;-0.928837, 0.220084,-0.104293,-0.264329;;, + 79;4;-0.926947, 0.227055,-0.109891,-0.263143;;, + 80;4;-0.925041, 0.234026,-0.115488,-0.261963;;, + 81;4;-0.923130, 0.240943,-0.121042,-0.260797;;, + 82;4;-0.921227, 0.247755,-0.126512,-0.259656;;, + 83;4;-0.919344, 0.254411,-0.131856,-0.258549;;, + 84;4;-0.917494, 0.260862,-0.137036,-0.257484;;, + 85;4;-0.915687, 0.267064,-0.142016,-0.256469;;, + 86;4;-0.913934, 0.272975,-0.146763,-0.255511;;, + 87;4;-0.912243, 0.278558,-0.151246,-0.254618;;, + 88;4;-0.910624, 0.283781,-0.155440,-0.253794;;, + 89;4;-0.909085, 0.288614,-0.159321,-0.253044;;, + 90;4;-0.907630, 0.293034,-0.162870,-0.252374;;, + 91;4;-0.906267, 0.297021,-0.166071,-0.251786;;, + 92;4;-0.904999, 0.300558,-0.168911,-0.251282;;, + 93;4;-0.903830, 0.303635,-0.171382,-0.250865;;, + 94;4;-0.902762, 0.306243,-0.173476,-0.250536;;, + 95;4;-0.901798, 0.308376,-0.175188,-0.250296;;, + 96;4;-0.900939, 0.310031,-0.176518,-0.250145;;, + 97;4;-0.900186, 0.311210,-0.177465,-0.250082;;, + 98;4;-0.899538, 0.311915,-0.178030,-0.250108;;, + 99;4;-0.898995, 0.312148,-0.178218,-0.250221;;, + 100;4;-0.898529, 0.312129,-0.178203,-0.250369;;, + 101;4;-0.898123, 0.311974,-0.178083,-0.250505;;, + 102;4;-0.897787, 0.311500,-0.177714,-0.250629;;, + 103;4;-0.897530, 0.310471,-0.176914,-0.250749;;, + 104;4;-0.897357, 0.308645,-0.175495,-0.250872;;, + 105;4;-0.897262, 0.305821,-0.173300,-0.251008;;, + 106;4;-0.897234, 0.301902,-0.170254,-0.251163;;, + 107;4;-0.897256, 0.296905,-0.166370,-0.251343;;, + 108;4;-0.897310, 0.290929,-0.161726,-0.251548;;, + 109;4;-0.897382, 0.284118,-0.156432,-0.251780;;, + 110;4;-0.898747, 0.273071,-0.147731,-0.252739;;, + 111;4;-0.902699, 0.254348,-0.132832,-0.255133;;, + 112;4;-0.909075, 0.228623,-0.112274,-0.258866;;, + 113;4;-0.917385, 0.197595,-0.087420,-0.263660;;, + 114;4;-0.926782, 0.164061,-0.060520,-0.269037;;, + 115;4;-0.936168, 0.131524,-0.034396,-0.274379;;, + 116;4;-0.944448, 0.103387,-0.011788,-0.279075;;, + 117;4;-0.950774, 0.082185, 0.005254,-0.282655;;, + 118;4;-0.954664, 0.069283, 0.015629,-0.284852;;, + 119;4;-0.955956, 0.065028, 0.019051,-0.285581;;, + 120;4;-0.955563, 0.066732, 0.017692,-0.285338;;, + 121;4;-0.954344, 0.072023, 0.013468,-0.284581;;, + 122;4;-0.952272, 0.081011, 0.006293,-0.283294;;, + 123;4;-0.949401, 0.093468,-0.003651,-0.281512;;, + 124;4;-0.945885, 0.108719,-0.015825,-0.279330;;, + 125;4;-0.941975, 0.125685,-0.029369,-0.276902;;, + 126;4;-0.937957, 0.143116,-0.043284,-0.274408;;, + 127;4;-0.934091, 0.159888,-0.056672,-0.272008;;, + 128;4;-0.930562, 0.175196,-0.068893,-0.269817;;, + 129;4;-0.927475, 0.188588,-0.079583,-0.267901;;, + 130;4;-0.924471, 0.201980,-0.090274,-0.265959;;, + 131;4;-0.921176, 0.217289,-0.102494,-0.263694;;, + 132;4;-0.917661, 0.234061,-0.115883,-0.261182;;, + 133;4;-0.914046, 0.251492,-0.129797,-0.258560;;, + 134;4;-0.910502, 0.268458,-0.143341,-0.256016;;, + 135;4;-0.907216, 0.283709,-0.155515,-0.253760;;, + 136;4;-0.904353, 0.296166,-0.165459,-0.251975;;, + 137;4;-0.902014, 0.305154,-0.172634,-0.250774;;, + 138;4;-0.900233, 0.310445,-0.176858,-0.250195;;, + 139;4;-0.898995, 0.312148,-0.178218,-0.250221;;, + 140;4;-0.898123, 0.311974,-0.178083,-0.250505;;, + 141;4;-0.897530, 0.310471,-0.176914,-0.250749;;, + 142;4;-0.897262, 0.305821,-0.173300,-0.251008;;, + 143;4;-0.897256, 0.296905,-0.166370,-0.251343;;, + 144;4;-0.897382, 0.284118,-0.156432,-0.251780;;, + 145;4;-0.902699, 0.254348,-0.132832,-0.255133;;, + 146;4;-0.917385, 0.197595,-0.087420,-0.263660;;, + 147;4;-0.936168, 0.131524,-0.034396,-0.274379;;, + 148;4;-0.950774, 0.082185, 0.005254,-0.282655;;, + 149;4;-0.955956, 0.065028, 0.019051,-0.285581;;, + 150;4;-0.954344, 0.072023, 0.013468,-0.284581;;, + 151;4;-0.949401, 0.093468,-0.003651,-0.281512;;, + 152;4;-0.941975, 0.125685,-0.029369,-0.276902;;, + 153;4;-0.934091, 0.159888,-0.056672,-0.272008;;, + 154;4;-0.927475, 0.188588,-0.079583,-0.267901;;, + 155;4;-0.920860, 0.217289,-0.102494,-0.263794;;, + 156;4;-0.912976, 0.251492,-0.129797,-0.258900;;, + 157;4;-0.905550, 0.283709,-0.155515,-0.254290;;, + 158;4;-0.900607, 0.305154,-0.172634,-0.251222;;, + 159;4;-0.898995, 0.312148,-0.178218,-0.250221;;, + 160;4;-0.899067, 0.311331,-0.177426,-0.250438;;, + 161;4;-0.899300, 0.308853,-0.175036,-0.251091;;, + 162;4;-0.899718, 0.304693,-0.171046,-0.252173;;, + 163;4;-0.900348, 0.298860,-0.165486,-0.253668;;, + 164;4;-0.901216, 0.291407,-0.158432,-0.255547;;, + 165;4;-0.902351, 0.282435,-0.150013,-0.257764;;, + 166;4;-0.903778, 0.272102,-0.140414,-0.260257;;, + 167;4;-0.905517, 0.260628,-0.129879,-0.262947;;, + 168;4;-0.907585, 0.248287,-0.118706,-0.265742;;, + 169;4;-0.909990, 0.235399,-0.107237,-0.268537;;, + 170;4;-0.912732, 0.222312,-0.095830,-0.271225;;, + 171;4;-0.915799, 0.209379,-0.084846,-0.273702;;, + 172;4;-0.919176, 0.196934,-0.074620,-0.275871;;, + 173;4;-0.922838, 0.185277,-0.065442,-0.277653;;, + 174;4;-0.926757, 0.174656,-0.057547,-0.278984;;, + 175;4;-0.930901, 0.165262,-0.051111,-0.279821;;, + 176;4;-0.935242, 0.157231,-0.046250,-0.280136;;, + 177;4;-0.939749, 0.150648,-0.043030,-0.279918;;, + 178;4;-0.944395, 0.145556,-0.041472,-0.279167;;, + 179;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 180;4;-0.954518, 0.139515,-0.042405,-0.270968;;, + 181;4;-0.960866, 0.137907,-0.043202,-0.252919;;, + 182;4;-0.967873, 0.137142,-0.044137,-0.223867;;, + 183;4;-0.975010, 0.137137,-0.045453,-0.185135;;, + 184;4;-0.981564, 0.137702,-0.047429,-0.139501;;, + 185;4;-0.986775, 0.138557,-0.050318,-0.090916;;, + 186;4;-0.990019, 0.139394,-0.054279,-0.043627;;, + 187;4;-0.990935, 0.139945,-0.059354,-0.001187;;, + 188;4;-0.989443, 0.140032,-0.065480, 0.034094;;, + 189;4;-0.985659, 0.139563,-0.072538, 0.061125;;, + 190;4;-0.980508, 0.119290,-0.089264, 0.084006;;, + 191;4;-0.975169, 0.063621,-0.122264, 0.105452;;, + 192;4;-0.970614,-0.007498,-0.161096, 0.122203;;, + 193;4;-0.967784,-0.062775,-0.190236, 0.131887;;, + 194;4;-0.966901,-0.082381,-0.200394, 0.134754;;, + 195;4;-0.965323,-0.062440,-0.186275, 0.098075;;, + 196;4;-0.960880,-0.006270,-0.146509,-0.005241;;, + 197;4;-0.955175, 0.065851,-0.095448,-0.137898;;, + 198;4;-0.950732, 0.122020,-0.055682,-0.241213;;, + 199;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 200;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 201;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 202;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 203;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 204;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 205;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 206;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 207;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 208;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 209;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 210;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 211;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 212;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 213;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 214;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 215;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 216;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 217;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 218;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 219;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 220;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 221;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 222;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 223;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 224;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 225;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 226;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 227;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 228;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 229;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 230;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 231;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 232;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 233;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 234;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 235;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 236;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 237;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 238;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 239;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 240;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 241;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 242;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 243;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 244;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 245;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 246;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 247;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 248;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 249;4;-0.949155, 0.141962,-0.041563,-0.277893;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3;-0.000000, 0.690756,-0.000000;;, + 1;3;-0.000000, 0.690756,-0.000000;;, + 2;3;-0.000000, 0.690756,-0.000000;;, + 3;3;-0.000000, 0.690756,-0.000000;;, + 4;3;-0.000000, 0.690756,-0.000000;;, + 5;3;-0.000000, 0.690756,-0.000000;;, + 6;3;-0.000000, 0.690756,-0.000000;;, + 7;3;-0.000000, 0.690756,-0.000000;;, + 8;3;-0.000000, 0.690756,-0.000000;;, + 9;3;-0.000000, 0.690756,-0.000000;;, + 10;3;-0.000000, 0.690756,-0.000000;;, + 11;3;-0.000000, 0.690756,-0.000000;;, + 12;3;-0.000000, 0.690756,-0.000000;;, + 13;3;-0.000000, 0.690756,-0.000000;;, + 14;3;-0.000000, 0.690756,-0.000000;;, + 15;3;-0.000000, 0.690756,-0.000000;;, + 16;3;-0.000000, 0.690756,-0.000000;;, + 17;3;-0.000000, 0.690756,-0.000000;;, + 18;3;-0.000000, 0.690756,-0.000000;;, + 19;3;-0.000000, 0.690756,-0.000000;;, + 20;3;-0.000000, 0.690756,-0.000000;;, + 21;3;-0.000000, 0.690756,-0.000000;;, + 22;3;-0.000000, 0.690756,-0.000000;;, + 23;3;-0.000000, 0.690756,-0.000000;;, + 24;3;-0.000000, 0.690756,-0.000000;;, + 25;3;-0.000000, 0.690756,-0.000000;;, + 26;3;-0.000000, 0.690756,-0.000000;;, + 27;3;-0.000000, 0.690756,-0.000000;;, + 28;3;-0.000000, 0.690756,-0.000000;;, + 29;3;-0.000000, 0.690756,-0.000000;;, + 30;3;-0.000000, 0.690756,-0.000000;;, + 31;3;-0.000000, 0.690756,-0.000000;;, + 32;3;-0.000000, 0.690756,-0.000000;;, + 33;3;-0.000000, 0.690756,-0.000000;;, + 34;3;-0.000000, 0.690756,-0.000000;;, + 35;3;-0.000000, 0.690756,-0.000000;;, + 36;3;-0.000000, 0.690756,-0.000000;;, + 37;3;-0.000000, 0.690756,-0.000000;;, + 38;3;-0.000000, 0.690756,-0.000000;;, + 39;3;-0.000000, 0.690756,-0.000000;;, + 40;3;-0.000000, 0.690756,-0.000000;;, + 41;3;-0.000000, 0.690756,-0.000000;;, + 42;3;-0.000000, 0.690756,-0.000000;;, + 43;3;-0.000000, 0.690756,-0.000000;;, + 44;3;-0.000000, 0.690756,-0.000000;;, + 45;3;-0.000000, 0.690756,-0.000000;;, + 46;3;-0.000000, 0.690756,-0.000000;;, + 47;3;-0.000000, 0.690756,-0.000000;;, + 48;3;-0.000000, 0.690756,-0.000000;;, + 49;3;-0.000000, 0.690756,-0.000000;;, + 50;3;-0.000000, 0.690756,-0.000000;;, + 51;3;-0.000000, 0.690756,-0.000000;;, + 52;3;-0.000000, 0.690756,-0.000000;;, + 53;3;-0.000000, 0.690756,-0.000000;;, + 54;3;-0.000000, 0.690756,-0.000000;;, + 55;3;-0.000000, 0.690756,-0.000000;;, + 56;3;-0.000000, 0.690756,-0.000000;;, + 57;3;-0.000000, 0.690756,-0.000000;;, + 58;3;-0.000000, 0.690756,-0.000000;;, + 59;3;-0.000000, 0.690756,-0.000000;;, + 60;3;-0.000000, 0.690756,-0.000000;;, + 61;3;-0.000000, 0.690756,-0.000000;;, + 62;3;-0.000000, 0.690756,-0.000000;;, + 63;3;-0.000000, 0.690756,-0.000000;;, + 64;3;-0.000000, 0.690756,-0.000000;;, + 65;3;-0.000000, 0.690756,-0.000000;;, + 66;3;-0.000000, 0.690756,-0.000000;;, + 67;3;-0.000000, 0.690756,-0.000000;;, + 68;3;-0.000000, 0.690756,-0.000000;;, + 69;3;-0.000000, 0.690756,-0.000000;;, + 70;3;-0.000000, 0.690756,-0.000000;;, + 71;3;-0.000000, 0.690756,-0.000000;;, + 72;3;-0.000000, 0.690756,-0.000000;;, + 73;3;-0.000000, 0.690756,-0.000000;;, + 74;3;-0.000000, 0.690756,-0.000000;;, + 75;3;-0.000000, 0.690756,-0.000000;;, + 76;3;-0.000000, 0.690756,-0.000000;;, + 77;3;-0.000000, 0.690756,-0.000000;;, + 78;3;-0.000000, 0.690756,-0.000000;;, + 79;3;-0.000000, 0.690756,-0.000000;;, + 80;3;-0.000000, 0.690756,-0.000000;;, + 81;3;-0.000000, 0.690756,-0.000000;;, + 82;3;-0.000000, 0.690756,-0.000000;;, + 83;3;-0.000000, 0.690756,-0.000000;;, + 84;3;-0.000000, 0.690756,-0.000000;;, + 85;3;-0.000000, 0.690756,-0.000000;;, + 86;3;-0.000000, 0.690756,-0.000000;;, + 87;3;-0.000000, 0.690756,-0.000000;;, + 88;3;-0.000000, 0.690756,-0.000000;;, + 89;3;-0.000000, 0.690756,-0.000000;;, + 90;3;-0.000000, 0.690756,-0.000000;;, + 91;3;-0.000000, 0.690756,-0.000000;;, + 92;3;-0.000000, 0.690756,-0.000000;;, + 93;3;-0.000000, 0.690756,-0.000000;;, + 94;3;-0.000000, 0.690756,-0.000000;;, + 95;3;-0.000000, 0.690756,-0.000000;;, + 96;3;-0.000000, 0.690756,-0.000000;;, + 97;3;-0.000000, 0.690756,-0.000000;;, + 98;3;-0.000000, 0.690756,-0.000000;;, + 99;3;-0.000000, 0.690756,-0.000000;;, + 100;3;-0.000000, 0.690756,-0.000000;;, + 101;3;-0.000000, 0.690756,-0.000000;;, + 102;3;-0.000000, 0.690756,-0.000000;;, + 103;3;-0.000000, 0.690756,-0.000000;;, + 104;3;-0.000000, 0.690756,-0.000000;;, + 105;3;-0.000000, 0.690756,-0.000000;;, + 106;3;-0.000000, 0.690756,-0.000000;;, + 107;3;-0.000000, 0.690756,-0.000000;;, + 108;3;-0.000000, 0.690756,-0.000000;;, + 109;3;-0.000000, 0.690756,-0.000000;;, + 110;3;-0.000000, 0.690756,-0.000000;;, + 111;3;-0.000000, 0.690756,-0.000000;;, + 112;3;-0.000000, 0.690756,-0.000000;;, + 113;3;-0.000000, 0.690756,-0.000000;;, + 114;3;-0.000000, 0.690756,-0.000000;;, + 115;3;-0.000000, 0.690756,-0.000000;;, + 116;3;-0.000000, 0.690756,-0.000000;;, + 117;3;-0.000000, 0.690756,-0.000000;;, + 118;3;-0.000000, 0.690756,-0.000000;;, + 119;3;-0.000000, 0.690756,-0.000000;;, + 120;3;-0.000000, 0.690756,-0.000000;;, + 121;3;-0.000000, 0.690756,-0.000000;;, + 122;3;-0.000000, 0.690756,-0.000000;;, + 123;3;-0.000000, 0.690756,-0.000000;;, + 124;3;-0.000000, 0.690756,-0.000000;;, + 125;3;-0.000000, 0.690756,-0.000000;;, + 126;3;-0.000000, 0.690756,-0.000000;;, + 127;3;-0.000000, 0.690756,-0.000000;;, + 128;3;-0.000000, 0.690756,-0.000000;;, + 129;3;-0.000000, 0.690756,-0.000000;;, + 130;3;-0.000000, 0.690756,-0.000000;;, + 131;3;-0.000000, 0.690756,-0.000000;;, + 132;3;-0.000000, 0.690756,-0.000000;;, + 133;3;-0.000000, 0.690756,-0.000000;;, + 134;3;-0.000000, 0.690756,-0.000000;;, + 135;3;-0.000000, 0.690756,-0.000000;;, + 136;3;-0.000000, 0.690756,-0.000000;;, + 137;3;-0.000000, 0.690756,-0.000000;;, + 138;3;-0.000000, 0.690756,-0.000000;;, + 139;3;-0.000000, 0.690756,-0.000000;;, + 140;3;-0.000000, 0.690756,-0.000000;;, + 141;3;-0.000000, 0.690756,-0.000000;;, + 142;3;-0.000000, 0.690756,-0.000000;;, + 143;3;-0.000000, 0.690756,-0.000000;;, + 144;3;-0.000000, 0.690756,-0.000000;;, + 145;3;-0.000000, 0.690756,-0.000000;;, + 146;3;-0.000000, 0.690756,-0.000000;;, + 147;3;-0.000000, 0.690756,-0.000000;;, + 148;3;-0.000000, 0.690756,-0.000000;;, + 149;3;-0.000000, 0.690756,-0.000000;;, + 150;3;-0.000000, 0.690756,-0.000000;;, + 151;3;-0.000000, 0.690756,-0.000000;;, + 152;3;-0.000000, 0.690756,-0.000000;;, + 153;3;-0.000000, 0.690756,-0.000000;;, + 154;3;-0.000000, 0.690756,-0.000000;;, + 155;3;-0.000000, 0.690756,-0.000000;;, + 156;3;-0.000000, 0.690756,-0.000000;;, + 157;3;-0.000000, 0.690756,-0.000000;;, + 158;3;-0.000000, 0.690756,-0.000000;;, + 159;3;-0.000000, 0.690756,-0.000000;;, + 160;3;-0.000000, 0.690756,-0.000000;;, + 161;3;-0.000000, 0.690756,-0.000000;;, + 162;3;-0.000000, 0.690756,-0.000000;;, + 163;3;-0.000000, 0.690756,-0.000000;;, + 164;3;-0.000000, 0.690756,-0.000000;;, + 165;3;-0.000000, 0.690756,-0.000000;;, + 166;3;-0.000000, 0.690756,-0.000000;;, + 167;3;-0.000000, 0.690756,-0.000000;;, + 168;3;-0.000000, 0.690756,-0.000000;;, + 169;3;-0.000000, 0.690756,-0.000000;;, + 170;3;-0.000000, 0.690756,-0.000000;;, + 171;3;-0.000000, 0.690756,-0.000000;;, + 172;3;-0.000000, 0.690756,-0.000000;;, + 173;3;-0.000000, 0.690756,-0.000000;;, + 174;3;-0.000000, 0.690756,-0.000000;;, + 175;3;-0.000000, 0.690756,-0.000000;;, + 176;3;-0.000000, 0.690756,-0.000000;;, + 177;3;-0.000000, 0.690756,-0.000000;;, + 178;3;-0.000000, 0.690756,-0.000000;;, + 179;3;-0.000000, 0.690756,-0.000000;;, + 180;3; 0.000000, 0.690756, 0.000000;;, + 181;3; 0.000000, 0.690756, 0.000000;;, + 182;3; 0.000000, 0.690756,-0.000000;;, + 183;3; 0.000000, 0.690756, 0.000000;;, + 184;3; 0.000000, 0.690756, 0.000000;;, + 185;3; 0.000000, 0.690756, 0.000000;;, + 186;3; 0.000000, 0.690756, 0.000000;;, + 187;3; 0.000000, 0.690756, 0.000000;;, + 188;3; 0.000000, 0.690756, 0.000000;;, + 189;3; 0.000000, 0.690756, 0.000000;;, + 190;3; 0.000000, 0.690756,-0.000001;;, + 191;3;-0.000000, 0.690756,-0.000000;;, + 192;3;-0.000000, 0.690756, 0.000000;;, + 193;3; 0.000000, 0.690756,-0.000000;;, + 194;3; 0.000000, 0.690756, 0.000000;;, + 195;3; 0.000000, 0.690756,-0.000000;;, + 196;3; 0.000000, 0.690756,-0.000000;;, + 197;3;-0.000000, 0.690756, 0.000000;;, + 198;3;-0.000000, 0.690756,-0.000000;;, + 199;3;-0.000000, 0.690756,-0.000000;;, + 200;3;-0.000000, 0.690756,-0.000000;;, + 201;3;-0.000000, 0.690756,-0.000000;;, + 202;3;-0.000000, 0.690756,-0.000000;;, + 203;3;-0.000000, 0.690756,-0.000000;;, + 204;3;-0.000000, 0.690756,-0.000000;;, + 205;3;-0.000000, 0.690756,-0.000000;;, + 206;3;-0.000000, 0.690756,-0.000000;;, + 207;3;-0.000000, 0.690756,-0.000000;;, + 208;3;-0.000000, 0.690756,-0.000000;;, + 209;3;-0.000000, 0.690756,-0.000000;;, + 210;3;-0.000000, 0.690756,-0.000000;;, + 211;3;-0.000000, 0.690756,-0.000000;;, + 212;3;-0.000000, 0.690756,-0.000000;;, + 213;3;-0.000000, 0.690756,-0.000000;;, + 214;3;-0.000000, 0.690756,-0.000000;;, + 215;3;-0.000000, 0.690756,-0.000000;;, + 216;3;-0.000000, 0.690756,-0.000000;;, + 217;3;-0.000000, 0.690756,-0.000000;;, + 218;3;-0.000000, 0.690756,-0.000000;;, + 219;3;-0.000000, 0.690756,-0.000000;;, + 220;3;-0.000000, 0.690756,-0.000000;;, + 221;3;-0.000000, 0.690756,-0.000000;;, + 222;3;-0.000000, 0.690756,-0.000000;;, + 223;3;-0.000000, 0.690756,-0.000000;;, + 224;3;-0.000000, 0.690756,-0.000000;;, + 225;3;-0.000000, 0.690756,-0.000000;;, + 226;3;-0.000000, 0.690756,-0.000000;;, + 227;3;-0.000000, 0.690756,-0.000000;;, + 228;3;-0.000000, 0.690756,-0.000000;;, + 229;3;-0.000000, 0.690756,-0.000000;;, + 230;3;-0.000000, 0.690756,-0.000000;;, + 231;3;-0.000000, 0.690756,-0.000000;;, + 232;3;-0.000000, 0.690756,-0.000000;;, + 233;3;-0.000000, 0.690756,-0.000000;;, + 234;3;-0.000000, 0.690756,-0.000000;;, + 235;3;-0.000000, 0.690756,-0.000000;;, + 236;3;-0.000000, 0.690756,-0.000000;;, + 237;3;-0.000000, 0.690756,-0.000000;;, + 238;3;-0.000000, 0.690756,-0.000000;;, + 239;3;-0.000000, 0.690756,-0.000000;;, + 240;3;-0.000000, 0.690756,-0.000000;;, + 241;3;-0.000000, 0.690756,-0.000000;;, + 242;3;-0.000000, 0.690756,-0.000000;;, + 243;3;-0.000000, 0.690756,-0.000000;;, + 244;3;-0.000000, 0.690756,-0.000000;;, + 245;3;-0.000000, 0.690756,-0.000000;;, + 246;3;-0.000000, 0.690756,-0.000000;;, + 247;3;-0.000000, 0.690756,-0.000000;;, + 248;3;-0.000000, 0.690756,-0.000000;;, + 249;3;-0.000000, 0.690756,-0.000000;;; + } + } + Animation { + {Armature_Bone_036} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 1;4;-0.946895,-0.321507, 0.000140, 0.000004;;, + 2;4;-0.946528,-0.322483, 0.000562, 0.000017;;, + 3;4;-0.945914,-0.324114, 0.001268, 0.000038;;, + 4;4;-0.945059,-0.326387, 0.002252, 0.000068;;, + 5;4;-0.943975,-0.329269, 0.003499, 0.000105;;, + 6;4;-0.942684,-0.332700, 0.004985, 0.000150;;, + 7;4;-0.941217,-0.336599, 0.006672, 0.000201;;, + 8;4;-0.939615,-0.340856, 0.008515, 0.000256;;, + 9;4;-0.937930,-0.345337, 0.010454, 0.000314;;, + 10;4;-0.936215,-0.349894, 0.012427, 0.000373;;, + 11;4;-0.934529,-0.354375, 0.014366, 0.000432;;, + 12;4;-0.932927,-0.358632, 0.016209, 0.000487;;, + 13;4;-0.931460,-0.362531, 0.017896, 0.000538;;, + 14;4;-0.930169,-0.365962, 0.019382, 0.000583;;, + 15;4;-0.929085,-0.368844, 0.020629, 0.000620;;, + 16;4;-0.928230,-0.371117, 0.021612, 0.000650;;, + 17;4;-0.927616,-0.372748, 0.022319, 0.000671;;, + 18;4;-0.927249,-0.373724, 0.022741, 0.000684;;, + 19;4;-0.927127,-0.374047, 0.022881, 0.000688;;, + 20;4;-0.927161,-0.373958, 0.022842, 0.000687;;, + 21;4;-0.927264,-0.373683, 0.022723, 0.000683;;, + 22;4;-0.927440,-0.373216, 0.022521, 0.000677;;, + 23;4;-0.927690,-0.372551, 0.022233, 0.000668;;, + 24;4;-0.928015,-0.371687, 0.021859, 0.000657;;, + 25;4;-0.928414,-0.370628, 0.021401, 0.000643;;, + 26;4;-0.928883,-0.369382, 0.020862, 0.000627;;, + 27;4;-0.929416,-0.367963, 0.020248, 0.000609;;, + 28;4;-0.930007,-0.366394, 0.019568, 0.000588;;, + 29;4;-0.930644,-0.364701, 0.018836, 0.000566;;, + 30;4;-0.931315,-0.362916, 0.018063, 0.000543;;, + 31;4;-0.932009,-0.361072, 0.017265, 0.000519;;, + 32;4;-0.932712,-0.359203, 0.016456, 0.000495;;, + 33;4;-0.933412,-0.357343, 0.015651, 0.000470;;, + 34;4;-0.934099,-0.355519, 0.014861, 0.000447;;, + 35;4;-0.934762,-0.353755, 0.014098, 0.000424;;, + 36;4;-0.935396,-0.352071, 0.013369, 0.000402;;, + 37;4;-0.935994,-0.350480, 0.012680, 0.000381;;, + 38;4;-0.936554,-0.348993, 0.012037, 0.000362;;, + 39;4;-0.937072,-0.347615, 0.011440, 0.000344;;, + 40;4;-0.937590,-0.346238, 0.010844, 0.000326;;, + 41;4;-0.938150,-0.344751, 0.010200, 0.000307;;, + 42;4;-0.938748,-0.343160, 0.009512, 0.000286;;, + 43;4;-0.939382,-0.341476, 0.008783, 0.000264;;, + 44;4;-0.940046,-0.339712, 0.008020, 0.000241;;, + 45;4;-0.940732,-0.337888, 0.007230, 0.000217;;, + 46;4;-0.941432,-0.336028, 0.006425, 0.000193;;, + 47;4;-0.942135,-0.334159, 0.005616, 0.000169;;, + 48;4;-0.942829,-0.332315, 0.004818, 0.000145;;, + 49;4;-0.943501,-0.330530, 0.004045, 0.000122;;, + 50;4;-0.944138,-0.328837, 0.003312, 0.000100;;, + 51;4;-0.944728,-0.327267, 0.002633, 0.000079;;, + 52;4;-0.945262,-0.325849, 0.002019, 0.000061;;, + 53;4;-0.945731,-0.324603, 0.001480, 0.000044;;, + 54;4;-0.946129,-0.323543, 0.001021, 0.000031;;, + 55;4;-0.946454,-0.322680, 0.000648, 0.000019;;, + 56;4;-0.946704,-0.322015, 0.000360, 0.000011;;, + 57;4;-0.946880,-0.321548, 0.000158, 0.000005;;, + 58;4;-0.946983,-0.321273, 0.000039, 0.000001;;, + 59;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 60;4;-0.946872,-0.321473, 0.000130, 0.000004;;, + 61;4;-0.946436,-0.322344, 0.000521, 0.000016;;, + 62;4;-0.945706,-0.323803, 0.001176, 0.000035;;, + 63;4;-0.944680,-0.325852, 0.002096, 0.000063;;, + 64;4;-0.943358,-0.328492, 0.003281, 0.000099;;, + 65;4;-0.941743,-0.331718, 0.004730, 0.000142;;, + 66;4;-0.939837,-0.335526, 0.006440, 0.000194;;, + 67;4;-0.937645,-0.339903, 0.008405, 0.000253;;, + 68;4;-0.935175,-0.344836, 0.010621, 0.000319;;, + 69;4;-0.932437,-0.350305, 0.013076, 0.000393;;, + 70;4;-0.929443,-0.356286, 0.015762, 0.000474;;, + 71;4;-0.926208,-0.362749, 0.018664, 0.000561;;, + 72;4;-0.922749,-0.369658, 0.021766, 0.000654;;, + 73;4;-0.919087,-0.376973, 0.025051, 0.000753;;, + 74;4;-0.915244,-0.384647, 0.028496, 0.000857;;, + 75;4;-0.911248,-0.392630, 0.032081, 0.000964;;, + 76;4;-0.907124,-0.400866, 0.035779, 0.001075;;, + 77;4;-0.902904,-0.409295, 0.039564, 0.001189;;, + 78;4;-0.898619,-0.417855, 0.043408, 0.001305;;, + 79;4;-0.894301,-0.426480, 0.047281, 0.001421;;, + 80;4;-0.889982,-0.435106, 0.051154, 0.001538;;, + 81;4;-0.885697,-0.443666, 0.054997, 0.001653;;, + 82;4;-0.881477,-0.452095, 0.058782, 0.001767;;, + 83;4;-0.877353,-0.460331, 0.062480, 0.001878;;, + 84;4;-0.873357,-0.468314, 0.066065, 0.001986;;, + 85;4;-0.869515,-0.475988, 0.069511, 0.002089;;, + 86;4;-0.865853,-0.483303, 0.072795, 0.002188;;, + 87;4;-0.862394,-0.490212, 0.075898, 0.002281;;, + 88;4;-0.859158,-0.496674, 0.078799, 0.002368;;, + 89;4;-0.856164,-0.502655, 0.081485, 0.002449;;, + 90;4;-0.853426,-0.508124, 0.083941, 0.002523;;, + 91;4;-0.850956,-0.513057, 0.086156, 0.002590;;, + 92;4;-0.848764,-0.517435, 0.088122, 0.002649;;, + 93;4;-0.846858,-0.521242, 0.089831, 0.002700;;, + 94;4;-0.845243,-0.524469, 0.091280, 0.002744;;, + 95;4;-0.843921,-0.527108, 0.092465, 0.002779;;, + 96;4;-0.842896,-0.529157, 0.093385, 0.002807;;, + 97;4;-0.842165,-0.530616, 0.094040, 0.002827;;, + 98;4;-0.841729,-0.531488, 0.094432, 0.002838;;, + 99;4;-0.841584,-0.531777, 0.094561, 0.002842;;, + 100;4;-0.842588,-0.529085, 0.093397, 0.002807;;, + 101;4;-0.845705,-0.520721, 0.089781, 0.002699;;, + 102;4;-0.851001,-0.506515, 0.083639, 0.002514;;, + 103;4;-0.858341,-0.486826, 0.075126, 0.002258;;, + 104;4;-0.867326,-0.462721, 0.064703, 0.001945;;, + 105;4;-0.877323,-0.435904, 0.053108, 0.001596;;, + 106;4;-0.887593,-0.408353, 0.041196, 0.001238;;, + 107;4;-0.897475,-0.381844, 0.029734, 0.000894;;, + 108;4;-0.906495,-0.357647, 0.019272, 0.000579;;, + 109;4;-0.914386,-0.336481, 0.010120, 0.000304;;, + 110;4;-0.922276,-0.315314, 0.000968, 0.000029;;, + 111;4;-0.931296,-0.291117,-0.009494,-0.000285;;, + 112;4;-0.941178,-0.264608,-0.020956,-0.000630;;, + 113;4;-0.951448,-0.237057,-0.032869,-0.000988;;, + 114;4;-0.961445,-0.210240,-0.044464,-0.001336;;, + 115;4;-0.970431,-0.186135,-0.054886,-0.001650;;, + 116;4;-0.977770,-0.166446,-0.063399,-0.001906;;, + 117;4;-0.983066,-0.152240,-0.069542,-0.002090;;, + 118;4;-0.986184,-0.143877,-0.073158,-0.002199;;, + 119;4;-0.987187,-0.141184,-0.074322,-0.002234;;, + 120;4;-0.986184,-0.143877,-0.073158,-0.002199;;, + 121;4;-0.983066,-0.152240,-0.069542,-0.002090;;, + 122;4;-0.977770,-0.166446,-0.063399,-0.001906;;, + 123;4;-0.970431,-0.186135,-0.054886,-0.001650;;, + 124;4;-0.961445,-0.210240,-0.044464,-0.001336;;, + 125;4;-0.951448,-0.237057,-0.032869,-0.000988;;, + 126;4;-0.941178,-0.264608,-0.020956,-0.000630;;, + 127;4;-0.931296,-0.291117,-0.009494,-0.000285;;, + 128;4;-0.922276,-0.315314, 0.000968, 0.000029;;, + 129;4;-0.914386,-0.336481, 0.010120, 0.000304;;, + 130;4;-0.906495,-0.357647, 0.019272, 0.000579;;, + 131;4;-0.897475,-0.381844, 0.029734, 0.000894;;, + 132;4;-0.887593,-0.408353, 0.041196, 0.001238;;, + 133;4;-0.877323,-0.435904, 0.053108, 0.001596;;, + 134;4;-0.867326,-0.462721, 0.064703, 0.001945;;, + 135;4;-0.858341,-0.486826, 0.075126, 0.002258;;, + 136;4;-0.851001,-0.506515, 0.083639, 0.002514;;, + 137;4;-0.845705,-0.520721, 0.089781, 0.002699;;, + 138;4;-0.842588,-0.529085, 0.093397, 0.002807;;, + 139;4;-0.841584,-0.531777, 0.094561, 0.002842;;, + 140;4;-0.845705,-0.520721, 0.089781, 0.002699;;, + 141;4;-0.858341,-0.486826, 0.075126, 0.002258;;, + 142;4;-0.877323,-0.435904, 0.053108, 0.001596;;, + 143;4;-0.897475,-0.381844, 0.029734, 0.000894;;, + 144;4;-0.914386,-0.336481, 0.010120, 0.000304;;, + 145;4;-0.931296,-0.291117,-0.009494,-0.000285;;, + 146;4;-0.951448,-0.237057,-0.032869,-0.000988;;, + 147;4;-0.970431,-0.186135,-0.054886,-0.001650;;, + 148;4;-0.983066,-0.152240,-0.069542,-0.002090;;, + 149;4;-0.987187,-0.141184,-0.074322,-0.002234;;, + 150;4;-0.983066,-0.152240,-0.069542,-0.002090;;, + 151;4;-0.970431,-0.186135,-0.054886,-0.001650;;, + 152;4;-0.951448,-0.237057,-0.032869,-0.000988;;, + 153;4;-0.931296,-0.291117,-0.009494,-0.000285;;, + 154;4;-0.914386,-0.336481, 0.010120, 0.000304;;, + 155;4;-0.897475,-0.381844, 0.029734, 0.000894;;, + 156;4;-0.877323,-0.435904, 0.053108, 0.001596;;, + 157;4;-0.858341,-0.486826, 0.075126, 0.002258;;, + 158;4;-0.845705,-0.520721, 0.089781, 0.002699;;, + 159;4;-0.841584,-0.531777, 0.094561, 0.002842;;, + 160;4;-0.842165,-0.530616, 0.094040, 0.002827;;, + 161;4;-0.843921,-0.527108, 0.092465, 0.002779;;, + 162;4;-0.846858,-0.521242, 0.089831, 0.002700;;, + 163;4;-0.850956,-0.513057, 0.086156, 0.002590;;, + 164;4;-0.856164,-0.502655, 0.081485, 0.002449;;, + 165;4;-0.862394,-0.490212, 0.075898, 0.002281;;, + 166;4;-0.869515,-0.475988, 0.069511, 0.002089;;, + 167;4;-0.877353,-0.460331, 0.062480, 0.001878;;, + 168;4;-0.885697,-0.443666, 0.054997, 0.001653;;, + 169;4;-0.894301,-0.426480, 0.047281, 0.001421;;, + 170;4;-0.902904,-0.409295, 0.039564, 0.001189;;, + 171;4;-0.911248,-0.392630, 0.032081, 0.000964;;, + 172;4;-0.919087,-0.376973, 0.025051, 0.000753;;, + 173;4;-0.926208,-0.362749, 0.018664, 0.000561;;, + 174;4;-0.932437,-0.350305, 0.013076, 0.000393;;, + 175;4;-0.937645,-0.339903, 0.008405, 0.000253;;, + 176;4;-0.941743,-0.331718, 0.004730, 0.000142;;, + 177;4;-0.944680,-0.325852, 0.002096, 0.000063;;, + 178;4;-0.946436,-0.322344, 0.000521, 0.000016;;, + 179;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 180;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 181;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 182;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 183;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 184;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 185;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 186;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 187;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 188;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 189;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 190;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 191;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 192;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 193;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 194;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 195;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 196;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 197;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 198;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 199;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 200;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 201;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 202;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 203;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 204;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 205;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 206;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 207;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 208;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 209;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 210;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 211;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 212;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 213;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 214;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 215;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 216;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 217;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 218;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 219;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 220;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 221;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 222;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 223;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 224;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 225;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 226;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 227;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 228;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 229;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 230;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 231;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 232;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 233;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 234;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 235;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 236;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 237;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 238;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 239;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 240;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 241;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 242;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 243;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 244;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 245;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 246;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 247;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 248;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 249;4;-0.947017,-0.321184,-0.000000,-0.000000;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3;-0.000000, 1.279915,-0.000000;;, + 1;3;-0.000000, 1.279915,-0.000000;;, + 2;3;-0.000000, 1.279915,-0.000000;;, + 3;3;-0.000000, 1.279915,-0.000000;;, + 4;3;-0.000000, 1.279915,-0.000000;;, + 5;3;-0.000000, 1.279915,-0.000000;;, + 6;3;-0.000000, 1.279915,-0.000000;;, + 7;3;-0.000000, 1.279915,-0.000000;;, + 8;3;-0.000000, 1.279915,-0.000000;;, + 9;3;-0.000000, 1.279915,-0.000000;;, + 10;3;-0.000000, 1.279915,-0.000000;;, + 11;3;-0.000000, 1.279915,-0.000000;;, + 12;3;-0.000000, 1.279915,-0.000000;;, + 13;3;-0.000000, 1.279915,-0.000000;;, + 14;3;-0.000000, 1.279915,-0.000000;;, + 15;3;-0.000000, 1.279915,-0.000000;;, + 16;3;-0.000000, 1.279915,-0.000000;;, + 17;3;-0.000000, 1.279915,-0.000000;;, + 18;3;-0.000000, 1.279915,-0.000000;;, + 19;3;-0.000000, 1.279915,-0.000000;;, + 20;3;-0.000000, 1.279915,-0.000000;;, + 21;3;-0.000000, 1.279915,-0.000000;;, + 22;3;-0.000000, 1.279915,-0.000000;;, + 23;3;-0.000000, 1.279915,-0.000000;;, + 24;3;-0.000000, 1.279915,-0.000000;;, + 25;3;-0.000000, 1.279915,-0.000000;;, + 26;3;-0.000000, 1.279915,-0.000000;;, + 27;3;-0.000000, 1.279915,-0.000000;;, + 28;3;-0.000000, 1.279915,-0.000000;;, + 29;3;-0.000000, 1.279915,-0.000000;;, + 30;3;-0.000000, 1.279915,-0.000000;;, + 31;3;-0.000000, 1.279915,-0.000000;;, + 32;3;-0.000000, 1.279915,-0.000000;;, + 33;3;-0.000000, 1.279915,-0.000000;;, + 34;3;-0.000000, 1.279915,-0.000000;;, + 35;3;-0.000000, 1.279915,-0.000000;;, + 36;3;-0.000000, 1.279915,-0.000000;;, + 37;3;-0.000000, 1.279915,-0.000000;;, + 38;3;-0.000000, 1.279915,-0.000000;;, + 39;3;-0.000000, 1.279915,-0.000000;;, + 40;3;-0.000000, 1.279915,-0.000000;;, + 41;3;-0.000000, 1.279915,-0.000000;;, + 42;3;-0.000000, 1.279915,-0.000000;;, + 43;3;-0.000000, 1.279915,-0.000000;;, + 44;3;-0.000000, 1.279915,-0.000000;;, + 45;3;-0.000000, 1.279915,-0.000000;;, + 46;3;-0.000000, 1.279915,-0.000000;;, + 47;3;-0.000000, 1.279915,-0.000000;;, + 48;3;-0.000000, 1.279915,-0.000000;;, + 49;3;-0.000000, 1.279915,-0.000000;;, + 50;3;-0.000000, 1.279915,-0.000000;;, + 51;3;-0.000000, 1.279915,-0.000000;;, + 52;3;-0.000000, 1.279915,-0.000000;;, + 53;3;-0.000000, 1.279915,-0.000000;;, + 54;3;-0.000000, 1.279915,-0.000000;;, + 55;3;-0.000000, 1.279915,-0.000000;;, + 56;3;-0.000000, 1.279915,-0.000000;;, + 57;3;-0.000000, 1.279915,-0.000000;;, + 58;3;-0.000000, 1.279915,-0.000000;;, + 59;3;-0.000000, 1.279915,-0.000000;;, + 60;3;-0.000000, 1.279916,-0.000000;;, + 61;3;-0.000000, 1.279916,-0.000000;;, + 62;3; 0.000000, 1.279916, 0.000000;;, + 63;3;-0.000000, 1.279915, 0.000000;;, + 64;3;-0.000000, 1.279916, 0.000000;;, + 65;3;-0.000000, 1.279916,-0.000000;;, + 66;3; 0.000000, 1.279916,-0.000000;;, + 67;3;-0.000000, 1.279916,-0.000000;;, + 68;3; 0.000000, 1.279916,-0.000000;;, + 69;3; 0.000000, 1.279916, 0.000000;;, + 70;3; 0.000000, 1.279915,-0.000000;;, + 71;3; 0.000000, 1.279916,-0.000000;;, + 72;3;-0.000000, 1.279916,-0.000000;;, + 73;3;-0.000000, 1.279916,-0.000000;;, + 74;3;-0.000000, 1.279915, 0.000000;;, + 75;3;-0.000000, 1.279916, 0.000000;;, + 76;3;-0.000000, 1.279916,-0.000000;;, + 77;3;-0.000000, 1.279916, 0.000000;;, + 78;3;-0.000000, 1.279916,-0.000000;;, + 79;3; 0.000000, 1.279916, 0.000000;;, + 80;3;-0.000000, 1.279916, 0.000000;;, + 81;3;-0.000000, 1.279915, 0.000000;;, + 82;3;-0.000000, 1.279916,-0.000000;;, + 83;3; 0.000000, 1.279915,-0.000000;;, + 84;3; 0.000000, 1.279916,-0.000000;;, + 85;3;-0.000000, 1.279915, 0.000000;;, + 86;3; 0.000000, 1.279916, 0.000000;;, + 87;3; 0.000000, 1.279916, 0.000000;;, + 88;3; 0.000000, 1.279916,-0.000000;;, + 89;3; 0.000000, 1.279916, 0.000000;;, + 90;3;-0.000000, 1.279916, 0.000000;;, + 91;3; 0.000000, 1.279915,-0.000000;;, + 92;3;-0.000000, 1.279916,-0.000000;;, + 93;3;-0.000000, 1.279916, 0.000000;;, + 94;3; 0.000000, 1.279916,-0.000000;;, + 95;3; 0.000000, 1.279916, 0.000000;;, + 96;3;-0.000000, 1.279916,-0.000000;;, + 97;3; 0.000000, 1.279916, 0.000000;;, + 98;3; 0.000000, 1.279915, 0.000000;;, + 99;3; 0.000000, 1.279916, 0.000000;;, + 100;3; 0.000000, 1.279916,-0.000000;;, + 101;3; 0.000000, 1.279916, 0.000000;;, + 102;3; 0.000000, 1.279916,-0.000000;;, + 103;3; 0.000000, 1.279916, 0.000000;;, + 104;3;-0.000000, 1.279916,-0.000000;;, + 105;3;-0.000000, 1.279916,-0.000000;;, + 106;3; 0.000000, 1.279916,-0.000000;;, + 107;3; 0.000000, 1.279916, 0.000000;;, + 108;3;-0.000000, 1.279916, 0.000000;;, + 109;3; 0.000000, 1.279916,-0.000000;;, + 110;3; 0.000000, 1.279916, 0.000000;;, + 111;3;-0.000000, 1.279916, 0.000000;;, + 112;3; 0.000000, 1.279916,-0.000000;;, + 113;3;-0.000000, 1.279915,-0.000000;;, + 114;3;-0.000000, 1.279916, 0.000000;;, + 115;3;-0.000000, 1.279915,-0.000000;;, + 116;3;-0.000000, 1.279916, 0.000000;;, + 117;3;-0.000000, 1.279916, 0.000000;;, + 118;3; 0.000000, 1.279916,-0.000000;;, + 119;3; 0.000000, 1.279916, 0.000000;;, + 120;3; 0.000000, 1.279916, 0.000000;;, + 121;3; 0.000000, 1.279915, 0.000000;;, + 122;3; 0.000000, 1.279916,-0.000000;;, + 123;3; 0.000000, 1.279916, 0.000000;;, + 124;3;-0.000000, 1.279916, 0.000000;;, + 125;3; 0.000000, 1.279915,-0.000000;;, + 126;3;-0.000000, 1.279916, 0.000000;;, + 127;3;-0.000000, 1.279915, 0.000000;;, + 128;3; 0.000000, 1.279916,-0.000000;;, + 129;3; 0.000000, 1.279916, 0.000000;;, + 130;3;-0.000000, 1.279916,-0.000000;;, + 131;3; 0.000000, 1.279916, 0.000000;;, + 132;3; 0.000000, 1.279916, 0.000000;;, + 133;3; 0.000000, 1.279916,-0.000000;;, + 134;3; 0.000000, 1.279916,-0.000000;;, + 135;3; 0.000000, 1.279916,-0.000000;;, + 136;3;-0.000000, 1.279915,-0.000000;;, + 137;3; 0.000000, 1.279916, 0.000000;;, + 138;3;-0.000000, 1.279916, 0.000000;;, + 139;3; 0.000000, 1.279916, 0.000000;;, + 140;3; 0.000000, 1.279916, 0.000000;;, + 141;3; 0.000000, 1.279916, 0.000000;;, + 142;3;-0.000000, 1.279916,-0.000000;;, + 143;3; 0.000000, 1.279916, 0.000000;;, + 144;3; 0.000000, 1.279916,-0.000000;;, + 145;3;-0.000000, 1.279916, 0.000000;;, + 146;3;-0.000000, 1.279915,-0.000000;;, + 147;3;-0.000000, 1.279915,-0.000000;;, + 148;3;-0.000000, 1.279916, 0.000000;;, + 149;3; 0.000000, 1.279916, 0.000000;;, + 150;3; 0.000000, 1.279915, 0.000000;;, + 151;3; 0.000000, 1.279916, 0.000000;;, + 152;3; 0.000000, 1.279915,-0.000000;;, + 153;3;-0.000000, 1.279915, 0.000000;;, + 154;3; 0.000000, 1.279916, 0.000000;;, + 155;3; 0.000000, 1.279916,-0.000000;;, + 156;3; 0.000000, 1.279916,-0.000000;;, + 157;3; 0.000000, 1.279916, 0.000000;;, + 158;3; 0.000000, 1.279916, 0.000000;;, + 159;3; 0.000000, 1.279916, 0.000000;;, + 160;3; 0.000000, 1.279916,-0.000000;;, + 161;3; 0.000000, 1.279915, 0.000000;;, + 162;3; 0.000000, 1.279916,-0.000000;;, + 163;3; 0.000000, 1.279915,-0.000000;;, + 164;3; 0.000000, 1.279915, 0.000000;;, + 165;3; 0.000000, 1.279916, 0.000000;;, + 166;3;-0.000000, 1.279916,-0.000000;;, + 167;3; 0.000000, 1.279915, 0.000000;;, + 168;3; 0.000000, 1.279916,-0.000000;;, + 169;3;-0.000000, 1.279915, 0.000000;;, + 170;3; 0.000000, 1.279916, 0.000000;;, + 171;3; 0.000000, 1.279916, 0.000000;;, + 172;3; 0.000000, 1.279915, 0.000000;;, + 173;3; 0.000000, 1.279915,-0.000000;;, + 174;3; 0.000000, 1.279916,-0.000000;;, + 175;3; 0.000000, 1.279916,-0.000000;;, + 176;3; 0.000000, 1.279915, 0.000000;;, + 177;3;-0.000000, 1.279916,-0.000000;;, + 178;3; 0.000000, 1.279915, 0.000000;;, + 179;3;-0.000000, 1.279915,-0.000000;;, + 180;3; 0.000000, 1.279916,-0.000000;;, + 181;3; 0.000000, 1.279916, 0.000000;;, + 182;3; 0.000000, 1.279915, 0.000000;;, + 183;3; 0.000000, 1.279916,-0.000000;;, + 184;3;-0.000000, 1.279916, 0.000000;;, + 185;3; 0.000000, 1.279915, 0.000000;;, + 186;3;-0.000000, 1.279916, 0.000001;;, + 187;3; 0.000000, 1.279915, 0.000000;;, + 188;3;-0.000000, 1.279916, 0.000000;;, + 189;3;-0.000000, 1.279916, 0.000000;;, + 190;3;-0.000000, 1.279916,-0.000000;;, + 191;3; 0.000000, 1.279916, 0.000000;;, + 192;3; 0.000000, 1.279915, 0.000000;;, + 193;3;-0.000000, 1.279916, 0.000000;;, + 194;3;-0.000000, 1.279915, 0.000000;;, + 195;3; 0.000000, 1.279916, 0.000000;;, + 196;3; 0.000000, 1.279916,-0.000000;;, + 197;3; 0.000000, 1.279916,-0.000000;;, + 198;3; 0.000000, 1.279916, 0.000000;;, + 199;3;-0.000000, 1.279915,-0.000000;;, + 200;3;-0.000000, 1.279915,-0.000000;;, + 201;3;-0.000000, 1.279915,-0.000000;;, + 202;3;-0.000000, 1.279915,-0.000000;;, + 203;3;-0.000000, 1.279915,-0.000000;;, + 204;3;-0.000000, 1.279915,-0.000000;;, + 205;3;-0.000000, 1.279915,-0.000000;;, + 206;3;-0.000000, 1.279915,-0.000000;;, + 207;3;-0.000000, 1.279915,-0.000000;;, + 208;3;-0.000000, 1.279915,-0.000000;;, + 209;3;-0.000000, 1.279915,-0.000000;;, + 210;3;-0.000000, 1.279915,-0.000000;;, + 211;3;-0.000000, 1.279915,-0.000000;;, + 212;3;-0.000000, 1.279915,-0.000000;;, + 213;3;-0.000000, 1.279915,-0.000000;;, + 214;3;-0.000000, 1.279915,-0.000000;;, + 215;3;-0.000000, 1.279915,-0.000000;;, + 216;3;-0.000000, 1.279915,-0.000000;;, + 217;3;-0.000000, 1.279915,-0.000000;;, + 218;3;-0.000000, 1.279915,-0.000000;;, + 219;3;-0.000000, 1.279915,-0.000000;;, + 220;3;-0.000000, 1.279915,-0.000000;;, + 221;3;-0.000000, 1.279915,-0.000000;;, + 222;3;-0.000000, 1.279915,-0.000000;;, + 223;3;-0.000000, 1.279915,-0.000000;;, + 224;3;-0.000000, 1.279915,-0.000000;;, + 225;3;-0.000000, 1.279915,-0.000000;;, + 226;3;-0.000000, 1.279915,-0.000000;;, + 227;3;-0.000000, 1.279915,-0.000000;;, + 228;3;-0.000000, 1.279915,-0.000000;;, + 229;3;-0.000000, 1.279915,-0.000000;;, + 230;3;-0.000000, 1.279915,-0.000000;;, + 231;3;-0.000000, 1.279915,-0.000000;;, + 232;3;-0.000000, 1.279915,-0.000000;;, + 233;3;-0.000000, 1.279915,-0.000000;;, + 234;3;-0.000000, 1.279915,-0.000000;;, + 235;3;-0.000000, 1.279915,-0.000000;;, + 236;3;-0.000000, 1.279915,-0.000000;;, + 237;3;-0.000000, 1.279915,-0.000000;;, + 238;3;-0.000000, 1.279915,-0.000000;;, + 239;3;-0.000000, 1.279915,-0.000000;;, + 240;3;-0.000000, 1.279915,-0.000000;;, + 241;3;-0.000000, 1.279915,-0.000000;;, + 242;3;-0.000000, 1.279915,-0.000000;;, + 243;3;-0.000000, 1.279915,-0.000000;;, + 244;3;-0.000000, 1.279915,-0.000000;;, + 245;3;-0.000000, 1.279915,-0.000000;;, + 246;3;-0.000000, 1.279915,-0.000000;;, + 247;3;-0.000000, 1.279915,-0.000000;;, + 248;3;-0.000000, 1.279915,-0.000000;;, + 249;3;-0.000000, 1.279915,-0.000000;;; + } + } + Animation { + {Armature_Bone_040} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 1;4;-0.968777,-0.247868, 0.000138, 0.000096;;, + 2;4;-0.968419,-0.249070, 0.000555, 0.000386;;, + 3;4;-0.967820,-0.251078, 0.001253, 0.000870;;, + 4;4;-0.966987,-0.253876, 0.002224, 0.001545;;, + 5;4;-0.965930,-0.257423, 0.003456, 0.002400;;, + 6;4;-0.964671,-0.261647, 0.004923, 0.003419;;, + 7;4;-0.963241,-0.266447, 0.006589, 0.004577;;, + 8;4;-0.961680,-0.271686, 0.008409, 0.005841;;, + 9;4;-0.960036,-0.277202, 0.010324, 0.007171;;, + 10;4;-0.958364,-0.282813, 0.012272, 0.008524;;, + 11;4;-0.956721,-0.288329, 0.014188, 0.009855;;, + 12;4;-0.955159,-0.293568, 0.016007, 0.011119;;, + 13;4;-0.953729,-0.298367, 0.017674, 0.012276;;, + 14;4;-0.952470,-0.302592, 0.019141, 0.013295;;, + 15;4;-0.951414,-0.306139, 0.020372, 0.014151;;, + 16;4;-0.950580,-0.308937, 0.021344, 0.014826;;, + 17;4;-0.949981,-0.310945, 0.022041, 0.015310;;, + 18;4;-0.949623,-0.312147, 0.022458, 0.015600;;, + 19;4;-0.949505,-0.312544, 0.022597, 0.015696;;, + 20;4;-0.949538,-0.312434, 0.022558, 0.015669;;, + 21;4;-0.949638,-0.312096, 0.022441, 0.015587;;, + 22;4;-0.949810,-0.311520, 0.022241, 0.015449;;, + 23;4;-0.950054,-0.310702, 0.021957, 0.015251;;, + 24;4;-0.950370,-0.309639, 0.021588, 0.014995;;, + 25;4;-0.950759,-0.308335, 0.021135, 0.014681;;, + 26;4;-0.951216,-0.306801, 0.020602, 0.014310;;, + 27;4;-0.951736,-0.305055, 0.019996, 0.013889;;, + 28;4;-0.952312,-0.303123, 0.019325, 0.013423;;, + 29;4;-0.952933,-0.301039, 0.018601, 0.012921;;, + 30;4;-0.953588,-0.298841, 0.017838, 0.012391;;, + 31;4;-0.954264,-0.296572, 0.017050, 0.011843;;, + 32;4;-0.954950,-0.294272, 0.016251, 0.011288;;, + 33;4;-0.955632,-0.291982, 0.015456, 0.010736;;, + 34;4;-0.956301,-0.289736, 0.014676, 0.010194;;, + 35;4;-0.956948,-0.287565, 0.013923, 0.009671;;, + 36;4;-0.957566,-0.285492, 0.013203, 0.009171;;, + 37;4;-0.958149,-0.283534, 0.012523, 0.008698;;, + 38;4;-0.958695,-0.281703, 0.011887, 0.008257;;, + 39;4;-0.959200,-0.280007, 0.011298, 0.007848;;, + 40;4;-0.959705,-0.278312, 0.010709, 0.007439;;, + 41;4;-0.960251,-0.276481, 0.010074, 0.006997;;, + 42;4;-0.960834,-0.274523, 0.009394, 0.006525;;, + 43;4;-0.961452,-0.272450, 0.008674, 0.006025;;, + 44;4;-0.962099,-0.270279, 0.007920, 0.005501;;, + 45;4;-0.962768,-0.268033, 0.007140, 0.004960;;, + 46;4;-0.963451,-0.265743, 0.006345, 0.004407;;, + 47;4;-0.964136,-0.263443, 0.005546, 0.003853;;, + 48;4;-0.964812,-0.261173, 0.004758, 0.003305;;, + 49;4;-0.965467,-0.258975, 0.003995, 0.002775;;, + 50;4;-0.966088,-0.256891, 0.003271, 0.002272;;, + 51;4;-0.966664,-0.254960, 0.002600, 0.001806;;, + 52;4;-0.967184,-0.253213, 0.001994, 0.001385;;, + 53;4;-0.967641,-0.251679, 0.001461, 0.001015;;, + 54;4;-0.968030,-0.250375, 0.001009, 0.000701;;, + 55;4;-0.968347,-0.249312, 0.000640, 0.000444;;, + 56;4;-0.968590,-0.248494, 0.000355, 0.000247;;, + 57;4;-0.968762,-0.247919, 0.000156, 0.000108;;, + 58;4;-0.968863,-0.247581, 0.000038, 0.000027;;, + 59;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 60;4;-0.968822,-0.247676, 0.000072, 0.000050;;, + 61;4;-0.968602,-0.248293, 0.000290, 0.000201;;, + 62;4;-0.968233,-0.249328, 0.000654, 0.000454;;, + 63;4;-0.967716,-0.250781, 0.001165, 0.000809;;, + 64;4;-0.967049,-0.252652, 0.001824, 0.001267;;, + 65;4;-0.966233,-0.254940, 0.002630, 0.001827;;, + 66;4;-0.965271,-0.257639, 0.003580, 0.002487;;, + 67;4;-0.964165,-0.260743, 0.004673, 0.003246;;, + 68;4;-0.962918,-0.264241, 0.005904, 0.004101;;, + 69;4;-0.961536,-0.268119, 0.007269, 0.005049;;, + 70;4;-0.960025,-0.272359, 0.008762, 0.006086;;, + 71;4;-0.958392,-0.276941, 0.010375, 0.007207;;, + 72;4;-0.956646,-0.281840, 0.012100, 0.008405;;, + 73;4;-0.954797,-0.287026, 0.013926, 0.009673;;, + 74;4;-0.952858,-0.292467, 0.015842, 0.011004;;, + 75;4;-0.950841,-0.298128, 0.017834, 0.012388;;, + 76;4;-0.948759,-0.303967, 0.019890, 0.013816;;, + 77;4;-0.946629,-0.309943, 0.021994, 0.015277;;, + 78;4;-0.944466,-0.316012, 0.024131, 0.016761;;, + 79;4;-0.942286,-0.322128, 0.026284, 0.018257;;, + 80;4;-0.940107,-0.328244, 0.028437, 0.019753;;, + 81;4;-0.937943,-0.334313, 0.030574, 0.021237;;, + 82;4;-0.935813,-0.340290, 0.032678, 0.022698;;, + 83;4;-0.933732,-0.346129, 0.034734, 0.024126;;, + 84;4;-0.931715,-0.351789, 0.036727, 0.025510;;, + 85;4;-0.929775,-0.357230, 0.038642, 0.026841;;, + 86;4;-0.927927,-0.362417, 0.040468, 0.028109;;, + 87;4;-0.926181,-0.367315, 0.042193, 0.029307;;, + 88;4;-0.924548,-0.371897, 0.043806, 0.030428;;, + 89;4;-0.923036,-0.376138, 0.045299, 0.031465;;, + 90;4;-0.921654,-0.380016, 0.046664, 0.032413;;, + 91;4;-0.920408,-0.383513, 0.047895, 0.033268;;, + 92;4;-0.919301,-0.386617, 0.048988, 0.034027;;, + 93;4;-0.918339,-0.389317, 0.049939, 0.034688;;, + 94;4;-0.917524,-0.391604, 0.050744, 0.035247;;, + 95;4;-0.916857,-0.393476, 0.051403, 0.035705;;, + 96;4;-0.916339,-0.394928, 0.051914, 0.036060;;, + 97;4;-0.915970,-0.395963, 0.052278, 0.036313;;, + 98;4;-0.915750,-0.396581, 0.052496, 0.036464;;, + 99;4;-0.915677,-0.396786, 0.052568, 0.036514;;, + 100;4;-0.916214,-0.394701, 0.051851, 0.036016;;, + 101;4;-0.917882,-0.388223, 0.049624, 0.034469;;, + 102;4;-0.920715,-0.377220, 0.045839, 0.031840;;, + 103;4;-0.924642,-0.361971, 0.040595, 0.028198;;, + 104;4;-0.929449,-0.343302, 0.034175, 0.023738;;, + 105;4;-0.934797,-0.322533, 0.027032, 0.018777;;, + 106;4;-0.940291,-0.301195, 0.019694, 0.013679;;, + 107;4;-0.945578,-0.280664, 0.012633, 0.008775;;, + 108;4;-0.950403,-0.261923, 0.006188, 0.004298;;, + 109;4;-0.954625,-0.245530, 0.000550, 0.000382;;, + 110;4;-0.958846,-0.229136,-0.005088,-0.003534;;, + 111;4;-0.963671,-0.210396,-0.011533,-0.008011;;, + 112;4;-0.968958,-0.189865,-0.018594,-0.012915;;, + 113;4;-0.974452,-0.168526,-0.025932,-0.018013;;, + 114;4;-0.979800,-0.147757,-0.033075,-0.022974;;, + 115;4;-0.984608,-0.129088,-0.039495,-0.027434;;, + 116;4;-0.988534,-0.113839,-0.044740,-0.031076;;, + 117;4;-0.991367,-0.102836,-0.048524,-0.033705;;, + 118;4;-0.993035,-0.096359,-0.050751,-0.035252;;, + 119;4;-0.993572,-0.094274,-0.051468,-0.035750;;, + 120;4;-0.993035,-0.096359,-0.050751,-0.035252;;, + 121;4;-0.991367,-0.102836,-0.048524,-0.033705;;, + 122;4;-0.988534,-0.113839,-0.044740,-0.031076;;, + 123;4;-0.984608,-0.129088,-0.039495,-0.027434;;, + 124;4;-0.979800,-0.147757,-0.033075,-0.022974;;, + 125;4;-0.974452,-0.168526,-0.025932,-0.018013;;, + 126;4;-0.968958,-0.189865,-0.018594,-0.012915;;, + 127;4;-0.963671,-0.210396,-0.011533,-0.008011;;, + 128;4;-0.958846,-0.229136,-0.005088,-0.003534;;, + 129;4;-0.954625,-0.245530, 0.000550, 0.000382;;, + 130;4;-0.950403,-0.261923, 0.006188, 0.004298;;, + 131;4;-0.945578,-0.280664, 0.012633, 0.008775;;, + 132;4;-0.940291,-0.301195, 0.019694, 0.013679;;, + 133;4;-0.934797,-0.322533, 0.027032, 0.018777;;, + 134;4;-0.929449,-0.343302, 0.034175, 0.023738;;, + 135;4;-0.924642,-0.361971, 0.040595, 0.028198;;, + 136;4;-0.920715,-0.377220, 0.045839, 0.031840;;, + 137;4;-0.917882,-0.388223, 0.049624, 0.034469;;, + 138;4;-0.916214,-0.394701, 0.051851, 0.036016;;, + 139;4;-0.915677,-0.396786, 0.052568, 0.036514;;, + 140;4;-0.917882,-0.388223, 0.049624, 0.034469;;, + 141;4;-0.924642,-0.361971, 0.040595, 0.028198;;, + 142;4;-0.934797,-0.322533, 0.027032, 0.018777;;, + 143;4;-0.945578,-0.280664, 0.012633, 0.008775;;, + 144;4;-0.954625,-0.245530, 0.000550, 0.000382;;, + 145;4;-0.963671,-0.210396,-0.011533,-0.008011;;, + 146;4;-0.974452,-0.168526,-0.025932,-0.018013;;, + 147;4;-0.984608,-0.129088,-0.039495,-0.027434;;, + 148;4;-0.991367,-0.102836,-0.048524,-0.033705;;, + 149;4;-0.993572,-0.094274,-0.051468,-0.035750;;, + 150;4;-0.991367,-0.102836,-0.048524,-0.033705;;, + 151;4;-0.984608,-0.129088,-0.039495,-0.027434;;, + 152;4;-0.974452,-0.168526,-0.025932,-0.018013;;, + 153;4;-0.963671,-0.210396,-0.011533,-0.008011;;, + 154;4;-0.954625,-0.245530, 0.000550, 0.000382;;, + 155;4;-0.945578,-0.280664, 0.012633, 0.008775;;, + 156;4;-0.934797,-0.322533, 0.027032, 0.018777;;, + 157;4;-0.924642,-0.361971, 0.040595, 0.028198;;, + 158;4;-0.917882,-0.388223, 0.049624, 0.034469;;, + 159;4;-0.915677,-0.396786, 0.052568, 0.036514;;, + 160;4;-0.915970,-0.395963, 0.052278, 0.036313;;, + 161;4;-0.916857,-0.393476, 0.051403, 0.035705;;, + 162;4;-0.918339,-0.389317, 0.049939, 0.034688;;, + 163;4;-0.920408,-0.383513, 0.047895, 0.033268;;, + 164;4;-0.923036,-0.376138, 0.045299, 0.031465;;, + 165;4;-0.926181,-0.367315, 0.042193, 0.029307;;, + 166;4;-0.929775,-0.357230, 0.038642, 0.026841;;, + 167;4;-0.933732,-0.346129, 0.034734, 0.024126;;, + 168;4;-0.937943,-0.334313, 0.030574, 0.021237;;, + 169;4;-0.942286,-0.322128, 0.026284, 0.018257;;, + 170;4;-0.946629,-0.309943, 0.021994, 0.015277;;, + 171;4;-0.950840,-0.298128, 0.017834, 0.012388;;, + 172;4;-0.954797,-0.287026, 0.013926, 0.009673;;, + 173;4;-0.958392,-0.276941, 0.010375, 0.007207;;, + 174;4;-0.961536,-0.268119, 0.007269, 0.005049;;, + 175;4;-0.964165,-0.260743, 0.004673, 0.003246;;, + 176;4;-0.966233,-0.254940, 0.002630, 0.001827;;, + 177;4;-0.967716,-0.250781, 0.001165, 0.000809;;, + 178;4;-0.968602,-0.248293, 0.000290, 0.000201;;, + 179;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 180;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 181;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 182;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 183;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 184;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 185;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 186;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 187;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 188;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 189;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 190;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 191;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 192;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 193;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 194;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 195;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 196;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 197;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 198;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 199;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 200;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 201;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 202;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 203;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 204;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 205;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 206;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 207;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 208;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 209;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 210;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 211;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 212;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 213;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 214;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 215;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 216;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 217;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 218;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 219;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 220;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 221;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 222;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 223;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 224;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 225;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 226;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 227;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 228;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 229;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 230;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 231;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 232;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 233;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 234;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 235;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 236;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 237;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 238;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 239;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 240;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 241;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 242;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 243;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 244;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 245;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 246;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 247;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 248;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 249;4;-0.968895,-0.247471,-0.000000,-0.000000;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3; 0.000000, 1.228416, 0.000000;;, + 1;3; 0.000000, 1.228416,-0.000000;;, + 2;3;-0.000000, 1.228417, 0.000000;;, + 3;3;-0.000000, 1.228416, 0.000000;;, + 4;3; 0.000000, 1.228417,-0.000000;;, + 5;3;-0.000000, 1.228416,-0.000000;;, + 6;3;-0.000000, 1.228416, 0.000000;;, + 7;3; 0.000000, 1.228417, 0.000000;;, + 8;3;-0.000000, 1.228416,-0.000000;;, + 9;3;-0.000000, 1.228416, 0.000000;;, + 10;3;-0.000000, 1.228417,-0.000000;;, + 11;3;-0.000000, 1.228416,-0.000000;;, + 12;3; 0.000000, 1.228417, 0.000000;;, + 13;3; 0.000000, 1.228416,-0.000000;;, + 14;3; 0.000000, 1.228416,-0.000000;;, + 15;3;-0.000000, 1.228416,-0.000000;;, + 16;3; 0.000000, 1.228416, 0.000000;;, + 17;3; 0.000000, 1.228416, 0.000000;;, + 18;3; 0.000000, 1.228416, 0.000000;;, + 19;3;-0.000000, 1.228416, 0.000000;;, + 20;3;-0.000000, 1.228417, 0.000000;;, + 21;3; 0.000000, 1.228416, 0.000000;;, + 22;3; 0.000000, 1.228417, 0.000000;;, + 23;3;-0.000000, 1.228416,-0.000000;;, + 24;3;-0.000000, 1.228416,-0.000000;;, + 25;3;-0.000000, 1.228417, 0.000000;;, + 26;3; 0.000000, 1.228417, 0.000000;;, + 27;3; 0.000000, 1.228416,-0.000000;;, + 28;3;-0.000000, 1.228416,-0.000000;;, + 29;3;-0.000000, 1.228416,-0.000000;;, + 30;3;-0.000000, 1.228416, 0.000000;;, + 31;3; 0.000000, 1.228417, 0.000000;;, + 32;3;-0.000000, 1.228416,-0.000001;;, + 33;3;-0.000001, 1.228416,-0.000000;;, + 34;3;-0.000000, 1.228416,-0.000000;;, + 35;3; 0.000000, 1.228416, 0.000000;;, + 36;3;-0.000000, 1.228416, 0.000000;;, + 37;3;-0.000000, 1.228416, 0.000000;;, + 38;3;-0.000000, 1.228416,-0.000000;;, + 39;3; 0.000000, 1.228416, 0.000000;;, + 40;3;-0.000000, 1.228417, 0.000001;;, + 41;3;-0.000000, 1.228416,-0.000000;;, + 42;3; 0.000000, 1.228416, 0.000000;;, + 43;3; 0.000000, 1.228416,-0.000000;;, + 44;3;-0.000000, 1.228416, 0.000000;;, + 45;3;-0.000000, 1.228417,-0.000000;;, + 46;3; 0.000000, 1.228416, 0.000000;;, + 47;3; 0.000000, 1.228416, 0.000000;;, + 48;3; 0.000000, 1.228416, 0.000000;;, + 49;3;-0.000000, 1.228416, 0.000000;;, + 50;3;-0.000000, 1.228416, 0.000000;;, + 51;3;-0.000000, 1.228416, 0.000000;;, + 52;3; 0.000000, 1.228416,-0.000000;;, + 53;3;-0.000000, 1.228416,-0.000000;;, + 54;3; 0.000000, 1.228417, 0.000000;;, + 55;3;-0.000000, 1.228417,-0.000000;;, + 56;3; 0.000000, 1.228416,-0.000000;;, + 57;3;-0.000000, 1.228416, 0.000000;;, + 58;3; 0.000000, 1.228416, 0.000000;;, + 59;3; 0.000000, 1.228416, 0.000000;;, + 60;3; 0.000000, 1.228416,-0.000000;;, + 61;3; 0.000000, 1.228417, 0.000000;;, + 62;3; 0.000000, 1.228417,-0.000000;;, + 63;3; 0.000000, 1.228416, 0.000000;;, + 64;3;-0.000000, 1.228417,-0.000000;;, + 65;3; 0.000000, 1.228417,-0.000000;;, + 66;3; 0.000000, 1.228416, 0.000000;;, + 67;3;-0.000000, 1.228416, 0.000000;;, + 68;3;-0.000000, 1.228416, 0.000000;;, + 69;3; 0.000000, 1.228417, 0.000000;;, + 70;3; 0.000000, 1.228416,-0.000000;;, + 71;3;-0.000000, 1.228417, 0.000000;;, + 72;3;-0.000000, 1.228416, 0.000000;;, + 73;3; 0.000000, 1.228416,-0.000000;;, + 74;3; 0.000000, 1.228416,-0.000000;;, + 75;3;-0.000000, 1.228416,-0.000000;;, + 76;3;-0.000000, 1.228416,-0.000000;;, + 77;3;-0.000000, 1.228416, 0.000000;;, + 78;3;-0.000000, 1.228416,-0.000000;;, + 79;3; 0.000000, 1.228416,-0.000000;;, + 80;3;-0.000000, 1.228416, 0.000000;;, + 81;3;-0.000000, 1.228416, 0.000000;;, + 82;3;-0.000000, 1.228417, 0.000000;;, + 83;3; 0.000000, 1.228416, 0.000000;;, + 84;3;-0.000000, 1.228416, 0.000000;;, + 85;3;-0.000000, 1.228417, 0.000000;;, + 86;3; 0.000000, 1.228416, 0.000000;;, + 87;3;-0.000000, 1.228416,-0.000000;;, + 88;3;-0.000000, 1.228416, 0.000000;;, + 89;3;-0.000000, 1.228417, 0.000000;;, + 90;3; 0.000000, 1.228416, 0.000000;;, + 91;3;-0.000000, 1.228416, 0.000000;;, + 92;3;-0.000000, 1.228416, 0.000000;;, + 93;3; 0.000000, 1.228417, 0.000000;;, + 94;3; 0.000000, 1.228416,-0.000000;;, + 95;3; 0.000000, 1.228416,-0.000000;;, + 96;3; 0.000000, 1.228417,-0.000000;;, + 97;3; 0.000000, 1.228416,-0.000000;;, + 98;3; 0.000000, 1.228417,-0.000000;;, + 99;3; 0.000000, 1.228416,-0.000000;;, + 100;3; 0.000000, 1.228416,-0.000000;;, + 101;3;-0.000000, 1.228416,-0.000000;;, + 102;3;-0.000000, 1.228416,-0.000000;;, + 103;3;-0.000000, 1.228416,-0.000000;;, + 104;3;-0.000000, 1.228416,-0.000000;;, + 105;3; 0.000000, 1.228417,-0.000001;;, + 106;3; 0.000000, 1.228417, 0.000000;;, + 107;3;-0.000000, 1.228416,-0.000000;;, + 108;3; 0.000000, 1.228416,-0.000000;;, + 109;3;-0.000000, 1.228417,-0.000000;;, + 110;3; 0.000000, 1.228417,-0.000000;;, + 111;3;-0.000000, 1.228416,-0.000000;;, + 112;3;-0.000000, 1.228417,-0.000000;;, + 113;3; 0.000000, 1.228416,-0.000000;;, + 114;3; 0.000000, 1.228416,-0.000000;;, + 115;3; 0.000000, 1.228417, 0.000000;;, + 116;3; 0.000000, 1.228417,-0.000000;;, + 117;3;-0.000000, 1.228416,-0.000000;;, + 118;3;-0.000000, 1.228417,-0.000000;;, + 119;3; 0.000000, 1.228416,-0.000000;;, + 120;3; 0.000000, 1.228417, 0.000000;;, + 121;3; 0.000000, 1.228416, 0.000000;;, + 122;3; 0.000000, 1.228416,-0.000000;;, + 123;3; 0.000000, 1.228416, 0.000000;;, + 124;3;-0.000000, 1.228416,-0.000000;;, + 125;3; 0.000000, 1.228416, 0.000000;;, + 126;3; 0.000001, 1.228416,-0.000000;;, + 127;3; 0.000000, 1.228416,-0.000000;;, + 128;3;-0.000000, 1.228416, 0.000000;;, + 129;3; 0.000000, 1.228416, 0.000000;;, + 130;3; 0.000000, 1.228417, 0.000000;;, + 131;3; 0.000000, 1.228417,-0.000000;;, + 132;3;-0.000000, 1.228417,-0.000000;;, + 133;3;-0.000000, 1.228417,-0.000000;;, + 134;3; 0.000000, 1.228417,-0.000000;;, + 135;3;-0.000000, 1.228416, 0.000000;;, + 136;3;-0.000000, 1.228417,-0.000000;;, + 137;3; 0.000000, 1.228416,-0.000000;;, + 138;3;-0.000000, 1.228416, 0.000000;;, + 139;3; 0.000000, 1.228416,-0.000000;;, + 140;3;-0.000000, 1.228416,-0.000000;;, + 141;3;-0.000000, 1.228416,-0.000000;;, + 142;3; 0.000000, 1.228417,-0.000001;;, + 143;3;-0.000000, 1.228416,-0.000000;;, + 144;3;-0.000000, 1.228417,-0.000000;;, + 145;3;-0.000000, 1.228416,-0.000000;;, + 146;3; 0.000000, 1.228416,-0.000000;;, + 147;3; 0.000000, 1.228417, 0.000000;;, + 148;3;-0.000000, 1.228416,-0.000000;;, + 149;3; 0.000000, 1.228416,-0.000000;;, + 150;3; 0.000000, 1.228416, 0.000000;;, + 151;3; 0.000000, 1.228416, 0.000000;;, + 152;3; 0.000000, 1.228416, 0.000000;;, + 153;3; 0.000000, 1.228416,-0.000000;;, + 154;3; 0.000000, 1.228416, 0.000000;;, + 155;3;-0.000000, 1.228416,-0.000000;;, + 156;3;-0.000000, 1.228416,-0.000000;;, + 157;3; 0.000000, 1.228416,-0.000000;;, + 158;3; 0.000000, 1.228416,-0.000000;;, + 159;3; 0.000000, 1.228416,-0.000000;;, + 160;3;-0.000000, 1.228416, 0.000000;;, + 161;3; 0.000000, 1.228416, 0.000000;;, + 162;3; 0.000000, 1.228417, 0.000000;;, + 163;3;-0.000000, 1.228416,-0.000000;;, + 164;3;-0.000000, 1.228417,-0.000000;;, + 165;3; 0.000000, 1.228416,-0.000000;;, + 166;3; 0.000000, 1.228417, 0.000000;;, + 167;3;-0.000000, 1.228417,-0.000000;;, + 168;3; 0.000000, 1.228416, 0.000000;;, + 169;3;-0.000000, 1.228416, 0.000000;;, + 170;3;-0.000000, 1.228417, 0.000000;;, + 171;3; 0.000000, 1.228416, 0.000000;;, + 172;3; 0.000000, 1.228416,-0.000000;;, + 173;3; 0.000000, 1.228416,-0.000000;;, + 174;3;-0.000000, 1.228416, 0.000000;;, + 175;3; 0.000000, 1.228417,-0.000000;;, + 176;3;-0.000000, 1.228416, 0.000000;;, + 177;3; 0.000000, 1.228416, 0.000000;;, + 178;3;-0.000000, 1.228416, 0.000000;;, + 179;3; 0.000000, 1.228416, 0.000000;;, + 180;3;-0.000000, 1.228416,-0.000001;;, + 181;3;-0.000000, 1.228417, 0.000000;;, + 182;3;-0.000000, 1.228416,-0.000000;;, + 183;3; 0.000000, 1.228417,-0.000000;;, + 184;3; 0.000000, 1.228417,-0.000000;;, + 185;3; 0.000000, 1.228416, 0.000000;;, + 186;3; 0.000000, 1.228417,-0.000000;;, + 187;3; 0.000000, 1.228417, 0.000000;;, + 188;3;-0.000000, 1.228416,-0.000000;;, + 189;3; 0.000000, 1.228416, 0.000000;;, + 190;3; 0.000000, 1.228416, 0.000000;;, + 191;3; 0.000000, 1.228416,-0.000000;;, + 192;3; 0.000000, 1.228416,-0.000001;;, + 193;3; 0.000000, 1.228416, 0.000000;;, + 194;3;-0.000000, 1.228417, 0.000000;;, + 195;3; 0.000001, 1.228417, 0.000000;;, + 196;3; 0.000000, 1.228416, 0.000000;;, + 197;3; 0.000000, 1.228417,-0.000000;;, + 198;3;-0.000000, 1.228417, 0.000000;;, + 199;3; 0.000000, 1.228416, 0.000000;;, + 200;3; 0.000000, 1.228416, 0.000000;;, + 201;3; 0.000000, 1.228416, 0.000000;;, + 202;3; 0.000000, 1.228416, 0.000000;;, + 203;3; 0.000000, 1.228416, 0.000000;;, + 204;3; 0.000000, 1.228416, 0.000000;;, + 205;3; 0.000000, 1.228416, 0.000000;;, + 206;3; 0.000000, 1.228416, 0.000000;;, + 207;3; 0.000000, 1.228416, 0.000000;;, + 208;3; 0.000000, 1.228416, 0.000000;;, + 209;3; 0.000000, 1.228416, 0.000000;;, + 210;3; 0.000000, 1.228416, 0.000000;;, + 211;3; 0.000000, 1.228416, 0.000000;;, + 212;3; 0.000000, 1.228416, 0.000000;;, + 213;3; 0.000000, 1.228416, 0.000000;;, + 214;3; 0.000000, 1.228416, 0.000000;;, + 215;3; 0.000000, 1.228416, 0.000000;;, + 216;3; 0.000000, 1.228416, 0.000000;;, + 217;3; 0.000000, 1.228416, 0.000000;;, + 218;3; 0.000000, 1.228416, 0.000000;;, + 219;3; 0.000000, 1.228416, 0.000000;;, + 220;3; 0.000000, 1.228416, 0.000000;;, + 221;3; 0.000000, 1.228416, 0.000000;;, + 222;3; 0.000000, 1.228416, 0.000000;;, + 223;3; 0.000000, 1.228416, 0.000000;;, + 224;3; 0.000000, 1.228416, 0.000000;;, + 225;3; 0.000000, 1.228416, 0.000000;;, + 226;3; 0.000000, 1.228416, 0.000000;;, + 227;3; 0.000000, 1.228416, 0.000000;;, + 228;3; 0.000000, 1.228416, 0.000000;;, + 229;3; 0.000000, 1.228416, 0.000000;;, + 230;3; 0.000000, 1.228416, 0.000000;;, + 231;3; 0.000000, 1.228416, 0.000000;;, + 232;3; 0.000000, 1.228416, 0.000000;;, + 233;3; 0.000000, 1.228416, 0.000000;;, + 234;3; 0.000000, 1.228416, 0.000000;;, + 235;3; 0.000000, 1.228416, 0.000000;;, + 236;3; 0.000000, 1.228416, 0.000000;;, + 237;3; 0.000000, 1.228416, 0.000000;;, + 238;3; 0.000000, 1.228416, 0.000000;;, + 239;3; 0.000000, 1.228416, 0.000000;;, + 240;3; 0.000000, 1.228416, 0.000000;;, + 241;3; 0.000000, 1.228416, 0.000000;;, + 242;3; 0.000000, 1.228416, 0.000000;;, + 243;3; 0.000000, 1.228416, 0.000000;;, + 244;3; 0.000000, 1.228416, 0.000000;;, + 245;3; 0.000000, 1.228416, 0.000000;;, + 246;3; 0.000000, 1.228416, 0.000000;;, + 247;3; 0.000000, 1.228416, 0.000000;;, + 248;3; 0.000000, 1.228416, 0.000000;;, + 249;3; 0.000000, 1.228416, 0.000000;;; + } + } + Animation { + {Armature_Bone_013} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 1;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 2;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 3;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 4;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 5;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 6;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 7;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 8;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 9;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 10;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 11;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 12;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 13;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 14;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 15;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 16;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 17;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 18;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 19;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 20;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 21;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 22;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 23;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 24;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 25;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 26;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 27;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 28;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 29;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 30;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 31;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 32;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 33;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 34;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 35;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 36;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 37;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 38;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 39;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 40;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 41;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 42;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 43;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 44;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 45;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 46;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 47;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 48;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 49;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 50;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 51;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 52;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 53;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 54;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 55;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 56;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 57;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 58;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 59;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 60;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 61;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 62;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 63;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 64;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 65;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 66;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 67;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 68;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 69;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 70;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 71;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 72;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 73;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 74;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 75;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 76;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 77;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 78;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 79;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 80;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 81;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 82;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 83;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 84;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 85;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 86;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 87;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 88;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 89;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 90;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 91;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 92;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 93;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 94;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 95;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 96;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 97;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 98;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 99;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 100;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 101;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 102;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 103;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 104;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 105;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 106;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 107;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 108;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 109;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 110;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 111;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 112;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 113;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 114;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 115;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 116;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 117;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 118;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 119;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 120;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 121;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 122;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 123;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 124;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 125;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 126;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 127;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 128;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 129;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 130;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 131;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 132;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 133;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 134;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 135;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 136;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 137;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 138;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 139;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 140;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 141;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 142;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 143;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 144;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 145;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 146;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 147;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 148;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 149;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 150;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 151;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 152;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 153;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 154;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 155;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 156;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 157;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 158;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 159;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 160;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 161;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 162;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 163;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 164;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 165;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 166;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 167;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 168;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 169;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 170;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 171;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 172;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 173;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 174;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 175;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 176;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 177;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 178;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 179;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 180;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 181;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 182;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 183;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 184;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 185;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 186;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 187;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 188;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 189;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 190;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 191;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 192;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 193;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 194;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 195;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 196;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 197;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 198;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 199;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 200;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 201;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 202;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 203;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 204;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 205;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 206;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 207;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 208;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 209;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 210;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 211;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 212;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 213;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 214;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 215;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 216;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 217;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 218;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 219;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 220;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 221;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 222;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 223;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 224;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 225;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 226;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 227;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 228;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 229;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 230;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 231;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 232;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 233;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 234;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 235;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 236;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 237;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 238;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 239;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 240;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 241;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 242;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 243;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 244;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 245;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 246;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 247;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 248;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 249;4;-0.370899,-0.000000,-0.000000,-0.928673;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3; 0.000000, 0.826434, 0.000000;;, + 1;3; 0.000000, 0.826434, 0.000000;;, + 2;3; 0.000000, 0.826434, 0.000000;;, + 3;3; 0.000000, 0.826434, 0.000000;;, + 4;3; 0.000000, 0.826434, 0.000000;;, + 5;3; 0.000000, 0.826434, 0.000000;;, + 6;3; 0.000000, 0.826434, 0.000000;;, + 7;3; 0.000000, 0.826434, 0.000000;;, + 8;3; 0.000000, 0.826434, 0.000000;;, + 9;3; 0.000000, 0.826434, 0.000000;;, + 10;3; 0.000000, 0.826434, 0.000000;;, + 11;3; 0.000000, 0.826434, 0.000000;;, + 12;3; 0.000000, 0.826434, 0.000000;;, + 13;3; 0.000000, 0.826434, 0.000000;;, + 14;3; 0.000000, 0.826434, 0.000000;;, + 15;3; 0.000000, 0.826434, 0.000000;;, + 16;3; 0.000000, 0.826434, 0.000000;;, + 17;3; 0.000000, 0.826434, 0.000000;;, + 18;3; 0.000000, 0.826434, 0.000000;;, + 19;3; 0.000000, 0.826434, 0.000000;;, + 20;3; 0.000000, 0.826434, 0.000000;;, + 21;3; 0.000000, 0.826434, 0.000000;;, + 22;3; 0.000000, 0.826434, 0.000000;;, + 23;3; 0.000000, 0.826434, 0.000000;;, + 24;3; 0.000000, 0.826434, 0.000000;;, + 25;3; 0.000000, 0.826434, 0.000000;;, + 26;3; 0.000000, 0.826434, 0.000000;;, + 27;3; 0.000000, 0.826434, 0.000000;;, + 28;3; 0.000000, 0.826434, 0.000000;;, + 29;3; 0.000000, 0.826434, 0.000000;;, + 30;3; 0.000000, 0.826434, 0.000000;;, + 31;3; 0.000000, 0.826434, 0.000000;;, + 32;3; 0.000000, 0.826434, 0.000000;;, + 33;3; 0.000000, 0.826434, 0.000000;;, + 34;3; 0.000000, 0.826434, 0.000000;;, + 35;3; 0.000000, 0.826434, 0.000000;;, + 36;3; 0.000000, 0.826434, 0.000000;;, + 37;3; 0.000000, 0.826434, 0.000000;;, + 38;3; 0.000000, 0.826434, 0.000000;;, + 39;3; 0.000000, 0.826434, 0.000000;;, + 40;3; 0.000000, 0.826434, 0.000000;;, + 41;3; 0.000000, 0.826434, 0.000000;;, + 42;3; 0.000000, 0.826434, 0.000000;;, + 43;3; 0.000000, 0.826434, 0.000000;;, + 44;3; 0.000000, 0.826434, 0.000000;;, + 45;3; 0.000000, 0.826434, 0.000000;;, + 46;3; 0.000000, 0.826434, 0.000000;;, + 47;3; 0.000000, 0.826434, 0.000000;;, + 48;3; 0.000000, 0.826434, 0.000000;;, + 49;3; 0.000000, 0.826434, 0.000000;;, + 50;3; 0.000000, 0.826434, 0.000000;;, + 51;3; 0.000000, 0.826434, 0.000000;;, + 52;3; 0.000000, 0.826434, 0.000000;;, + 53;3; 0.000000, 0.826434, 0.000000;;, + 54;3; 0.000000, 0.826434, 0.000000;;, + 55;3; 0.000000, 0.826434, 0.000000;;, + 56;3; 0.000000, 0.826434, 0.000000;;, + 57;3; 0.000000, 0.826434, 0.000000;;, + 58;3; 0.000000, 0.826434, 0.000000;;, + 59;3; 0.000000, 0.826434, 0.000000;;, + 60;3; 0.000000, 0.826434, 0.000000;;, + 61;3; 0.000000, 0.826434, 0.000000;;, + 62;3; 0.000000, 0.826434, 0.000000;;, + 63;3; 0.000000, 0.826434, 0.000000;;, + 64;3; 0.000000, 0.826434, 0.000000;;, + 65;3; 0.000000, 0.826434, 0.000000;;, + 66;3; 0.000000, 0.826434, 0.000000;;, + 67;3; 0.000000, 0.826434, 0.000000;;, + 68;3; 0.000000, 0.826434, 0.000000;;, + 69;3; 0.000000, 0.826434, 0.000000;;, + 70;3; 0.000000, 0.826434, 0.000000;;, + 71;3; 0.000000, 0.826434, 0.000000;;, + 72;3; 0.000000, 0.826434, 0.000000;;, + 73;3; 0.000000, 0.826434, 0.000000;;, + 74;3; 0.000000, 0.826434, 0.000000;;, + 75;3; 0.000000, 0.826434, 0.000000;;, + 76;3; 0.000000, 0.826434, 0.000000;;, + 77;3; 0.000000, 0.826434, 0.000000;;, + 78;3; 0.000000, 0.826434, 0.000000;;, + 79;3; 0.000000, 0.826434, 0.000000;;, + 80;3; 0.000000, 0.826434, 0.000000;;, + 81;3; 0.000000, 0.826434, 0.000000;;, + 82;3; 0.000000, 0.826434, 0.000000;;, + 83;3; 0.000000, 0.826434, 0.000000;;, + 84;3; 0.000000, 0.826434, 0.000000;;, + 85;3; 0.000000, 0.826434, 0.000000;;, + 86;3; 0.000000, 0.826434, 0.000000;;, + 87;3; 0.000000, 0.826434, 0.000000;;, + 88;3; 0.000000, 0.826434, 0.000000;;, + 89;3; 0.000000, 0.826434, 0.000000;;, + 90;3; 0.000000, 0.826434, 0.000000;;, + 91;3; 0.000000, 0.826434, 0.000000;;, + 92;3; 0.000000, 0.826434, 0.000000;;, + 93;3; 0.000000, 0.826434, 0.000000;;, + 94;3; 0.000000, 0.826434, 0.000000;;, + 95;3; 0.000000, 0.826434, 0.000000;;, + 96;3; 0.000000, 0.826434, 0.000000;;, + 97;3; 0.000000, 0.826434, 0.000000;;, + 98;3; 0.000000, 0.826434, 0.000000;;, + 99;3; 0.000000, 0.826434, 0.000000;;, + 100;3; 0.000000, 0.826434, 0.000000;;, + 101;3; 0.000000, 0.826434, 0.000000;;, + 102;3; 0.000000, 0.826434, 0.000000;;, + 103;3; 0.000000, 0.826434, 0.000000;;, + 104;3; 0.000000, 0.826434, 0.000000;;, + 105;3; 0.000000, 0.826434, 0.000000;;, + 106;3; 0.000000, 0.826434, 0.000000;;, + 107;3; 0.000000, 0.826434, 0.000000;;, + 108;3; 0.000000, 0.826434, 0.000000;;, + 109;3; 0.000000, 0.826434, 0.000000;;, + 110;3; 0.000000, 0.826434, 0.000000;;, + 111;3; 0.000000, 0.826434, 0.000000;;, + 112;3; 0.000000, 0.826434, 0.000000;;, + 113;3; 0.000000, 0.826434, 0.000000;;, + 114;3; 0.000000, 0.826434, 0.000000;;, + 115;3; 0.000000, 0.826434, 0.000000;;, + 116;3; 0.000000, 0.826434, 0.000000;;, + 117;3; 0.000000, 0.826434, 0.000000;;, + 118;3; 0.000000, 0.826434, 0.000000;;, + 119;3; 0.000000, 0.826434, 0.000000;;, + 120;3; 0.000000, 0.826434, 0.000000;;, + 121;3; 0.000000, 0.826434, 0.000000;;, + 122;3; 0.000000, 0.826434, 0.000000;;, + 123;3; 0.000000, 0.826434, 0.000000;;, + 124;3; 0.000000, 0.826434, 0.000000;;, + 125;3; 0.000000, 0.826434, 0.000000;;, + 126;3; 0.000000, 0.826434, 0.000000;;, + 127;3; 0.000000, 0.826434, 0.000000;;, + 128;3; 0.000000, 0.826434, 0.000000;;, + 129;3; 0.000000, 0.826434, 0.000000;;, + 130;3; 0.000000, 0.826434, 0.000000;;, + 131;3; 0.000000, 0.826434, 0.000000;;, + 132;3; 0.000000, 0.826434, 0.000000;;, + 133;3; 0.000000, 0.826434, 0.000000;;, + 134;3; 0.000000, 0.826434, 0.000000;;, + 135;3; 0.000000, 0.826434, 0.000000;;, + 136;3; 0.000000, 0.826434, 0.000000;;, + 137;3; 0.000000, 0.826434, 0.000000;;, + 138;3; 0.000000, 0.826434, 0.000000;;, + 139;3; 0.000000, 0.826434, 0.000000;;, + 140;3; 0.000000, 0.826434, 0.000000;;, + 141;3; 0.000000, 0.826434, 0.000000;;, + 142;3; 0.000000, 0.826434, 0.000000;;, + 143;3; 0.000000, 0.826434, 0.000000;;, + 144;3; 0.000000, 0.826434, 0.000000;;, + 145;3; 0.000000, 0.826434, 0.000000;;, + 146;3; 0.000000, 0.826434, 0.000000;;, + 147;3; 0.000000, 0.826434, 0.000000;;, + 148;3; 0.000000, 0.826434, 0.000000;;, + 149;3; 0.000000, 0.826434, 0.000000;;, + 150;3; 0.000000, 0.826434, 0.000000;;, + 151;3; 0.000000, 0.826434, 0.000000;;, + 152;3; 0.000000, 0.826434, 0.000000;;, + 153;3; 0.000000, 0.826434, 0.000000;;, + 154;3; 0.000000, 0.826434, 0.000000;;, + 155;3; 0.000000, 0.826434, 0.000000;;, + 156;3; 0.000000, 0.826434, 0.000000;;, + 157;3; 0.000000, 0.826434, 0.000000;;, + 158;3; 0.000000, 0.826434, 0.000000;;, + 159;3; 0.000000, 0.826434, 0.000000;;, + 160;3; 0.000000, 0.826434, 0.000000;;, + 161;3; 0.000000, 0.826434, 0.000000;;, + 162;3; 0.000000, 0.826434, 0.000000;;, + 163;3; 0.000000, 0.826434, 0.000000;;, + 164;3; 0.000000, 0.826434, 0.000000;;, + 165;3; 0.000000, 0.826434, 0.000000;;, + 166;3; 0.000000, 0.826434, 0.000000;;, + 167;3; 0.000000, 0.826434, 0.000000;;, + 168;3; 0.000000, 0.826434, 0.000000;;, + 169;3; 0.000000, 0.826434, 0.000000;;, + 170;3; 0.000000, 0.826434, 0.000000;;, + 171;3; 0.000000, 0.826434, 0.000000;;, + 172;3; 0.000000, 0.826434, 0.000000;;, + 173;3; 0.000000, 0.826434, 0.000000;;, + 174;3; 0.000000, 0.826434, 0.000000;;, + 175;3; 0.000000, 0.826434, 0.000000;;, + 176;3; 0.000000, 0.826434, 0.000000;;, + 177;3; 0.000000, 0.826434, 0.000000;;, + 178;3; 0.000000, 0.826434, 0.000000;;, + 179;3; 0.000000, 0.826434, 0.000000;;, + 180;3; 0.000000, 0.826434, 0.000000;;, + 181;3; 0.000000, 0.826434, 0.000000;;, + 182;3; 0.000000, 0.826434, 0.000000;;, + 183;3; 0.000000, 0.826434, 0.000000;;, + 184;3; 0.000000, 0.826434, 0.000000;;, + 185;3; 0.000000, 0.826434, 0.000000;;, + 186;3;-0.000000, 0.826434,-0.000000;;, + 187;3;-0.000000, 0.826434,-0.000000;;, + 188;3;-0.000000, 0.826434, 0.000000;;, + 189;3;-0.000000, 0.826434, 0.000000;;, + 190;3;-0.000000, 0.826434,-0.000000;;, + 191;3; 0.000000, 0.826434, 0.000000;;, + 192;3; 0.000000, 0.826434, 0.000000;;, + 193;3; 0.000000, 0.826434, 0.000000;;, + 194;3; 0.000000, 0.826434,-0.000000;;, + 195;3; 0.000000, 0.826434,-0.000000;;, + 196;3; 0.000000, 0.826434, 0.000000;;, + 197;3; 0.000000, 0.826434,-0.000000;;, + 198;3; 0.000000, 0.826434,-0.000000;;, + 199;3; 0.000000, 0.826434, 0.000000;;, + 200;3; 0.000000, 0.826434, 0.000000;;, + 201;3; 0.000000, 0.826434, 0.000000;;, + 202;3; 0.000000, 0.826434, 0.000000;;, + 203;3; 0.000000, 0.826434, 0.000000;;, + 204;3; 0.000000, 0.826434, 0.000000;;, + 205;3; 0.000000, 0.826434, 0.000000;;, + 206;3; 0.000000, 0.826434, 0.000000;;, + 207;3; 0.000000, 0.826434, 0.000000;;, + 208;3; 0.000000, 0.826434, 0.000000;;, + 209;3; 0.000000, 0.826434, 0.000000;;, + 210;3; 0.000000, 0.826434, 0.000000;;, + 211;3; 0.000000, 0.826434, 0.000000;;, + 212;3; 0.000000, 0.826434, 0.000000;;, + 213;3; 0.000000, 0.826434, 0.000000;;, + 214;3; 0.000000, 0.826434, 0.000000;;, + 215;3; 0.000000, 0.826434, 0.000000;;, + 216;3; 0.000000, 0.826434, 0.000000;;, + 217;3; 0.000000, 0.826434, 0.000000;;, + 218;3; 0.000000, 0.826434, 0.000000;;, + 219;3; 0.000000, 0.826434, 0.000000;;, + 220;3; 0.000000, 0.826434, 0.000000;;, + 221;3; 0.000000, 0.826434, 0.000000;;, + 222;3; 0.000000, 0.826434, 0.000000;;, + 223;3; 0.000000, 0.826434, 0.000000;;, + 224;3; 0.000000, 0.826434, 0.000000;;, + 225;3; 0.000000, 0.826434, 0.000000;;, + 226;3; 0.000000, 0.826434, 0.000000;;, + 227;3; 0.000000, 0.826434, 0.000000;;, + 228;3; 0.000000, 0.826434, 0.000000;;, + 229;3; 0.000000, 0.826434, 0.000000;;, + 230;3; 0.000000, 0.826434, 0.000000;;, + 231;3; 0.000000, 0.826434, 0.000000;;, + 232;3; 0.000000, 0.826434, 0.000000;;, + 233;3; 0.000000, 0.826434, 0.000000;;, + 234;3; 0.000000, 0.826434, 0.000000;;, + 235;3; 0.000000, 0.826434, 0.000000;;, + 236;3; 0.000000, 0.826434, 0.000000;;, + 237;3; 0.000000, 0.826434, 0.000000;;, + 238;3; 0.000000, 0.826434, 0.000000;;, + 239;3; 0.000000, 0.826434, 0.000000;;, + 240;3; 0.000000, 0.826434, 0.000000;;, + 241;3; 0.000000, 0.826434, 0.000000;;, + 242;3; 0.000000, 0.826434, 0.000000;;, + 243;3; 0.000000, 0.826434, 0.000000;;, + 244;3; 0.000000, 0.826434, 0.000000;;, + 245;3; 0.000000, 0.826434, 0.000000;;, + 246;3; 0.000000, 0.826434, 0.000000;;, + 247;3; 0.000000, 0.826434, 0.000000;;, + 248;3; 0.000000, 0.826434, 0.000000;;, + 249;3; 0.000000, 0.826434, 0.000000;;; + } + } + Animation { + {Armature_Bone_017} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 1;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 2;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 3;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 4;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 5;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 6;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 7;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 8;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 9;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 10;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 11;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 12;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 13;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 14;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 15;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 16;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 17;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 18;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 19;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 20;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 21;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 22;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 23;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 24;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 25;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 26;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 27;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 28;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 29;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 30;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 31;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 32;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 33;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 34;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 35;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 36;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 37;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 38;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 39;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 40;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 41;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 42;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 43;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 44;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 45;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 46;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 47;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 48;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 49;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 50;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 51;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 52;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 53;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 54;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 55;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 56;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 57;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 58;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 59;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 60;4;-0.979875, 0.161874, 0.019150, 0.115206;;, + 61;4;-0.979789, 0.162353, 0.019554, 0.115152;;, + 62;4;-0.979645, 0.163155, 0.020231, 0.115062;;, + 63;4;-0.979441, 0.164282, 0.021181, 0.114934;;, + 64;4;-0.979176, 0.165732, 0.022406, 0.114769;;, + 65;4;-0.978851, 0.167506, 0.023902, 0.114566;;, + 66;4;-0.978463, 0.169599, 0.025669, 0.114325;;, + 67;4;-0.978013, 0.172006, 0.027699, 0.114046;;, + 68;4;-0.977502, 0.174718, 0.029988, 0.113730;;, + 69;4;-0.976930, 0.177724, 0.032525, 0.113377;;, + 70;4;-0.976297, 0.181012, 0.035299, 0.112989;;, + 71;4;-0.975606, 0.184565, 0.038297, 0.112566;;, + 72;4;-0.974858, 0.188363, 0.041502, 0.112110;;, + 73;4;-0.974056, 0.192385, 0.044895, 0.111622;;, + 74;4;-0.973202, 0.196604, 0.048455, 0.111105;;, + 75;4;-0.972300, 0.200992, 0.052158, 0.110562;;, + 76;4;-0.971355, 0.205520, 0.055979, 0.109995;;, + 77;4;-0.970370, 0.210154, 0.059889, 0.109408;;, + 78;4;-0.969350, 0.214859, 0.063860, 0.108802;;, + 79;4;-0.968301, 0.219601, 0.067861, 0.108183;;, + 80;4;-0.967227, 0.224343, 0.071862, 0.107554;;, + 81;4;-0.966135, 0.229049, 0.075833, 0.106917;;, + 82;4;-0.965029, 0.233683, 0.079743, 0.106278;;, + 83;4;-0.963917, 0.238210, 0.083564, 0.105639;;, + 84;4;-0.962802, 0.242599, 0.087267, 0.105005;;, + 85;4;-0.961691, 0.246818, 0.090827, 0.104377;;, + 86;4;-0.960588, 0.250839, 0.094220, 0.103761;;, + 87;4;-0.959498, 0.254637, 0.097425, 0.103158;;, + 88;4;-0.958425, 0.258190, 0.100423, 0.102571;;, + 89;4;-0.957374, 0.261478, 0.103198, 0.102003;;, + 90;4;-0.956347, 0.264484, 0.105735, 0.101455;;, + 91;4;-0.955348, 0.267196, 0.108023, 0.100930;;, + 92;4;-0.954380, 0.269603, 0.110054, 0.100429;;, + 93;4;-0.953444, 0.271696, 0.111820, 0.099952;;, + 94;4;-0.952543, 0.273470, 0.113317, 0.099503;;, + 95;4;-0.951678, 0.274921, 0.114541, 0.099080;;, + 96;4;-0.950851, 0.276047, 0.115492, 0.098685;;, + 97;4;-0.950061, 0.276849, 0.116168, 0.098317;;, + 98;4;-0.949311, 0.277328, 0.116573, 0.097978;;, + 99;4;-0.948600, 0.277487, 0.116707, 0.097667;;, + 100;4;-0.947606, 0.278352, 0.114680, 0.097994;;, + 101;4;-0.946013, 0.280934, 0.108572, 0.099579;;, + 102;4;-0.943877, 0.285084, 0.098621, 0.102351;;, + 103;4;-0.941335, 0.290425, 0.085567, 0.106085;;, + 104;4;-0.938612, 0.296333, 0.070718, 0.110381;;, + 105;4;-0.935984, 0.302027, 0.055777, 0.114719;;, + 106;4;-0.933721, 0.306746, 0.042457, 0.118572;;, + 107;4;-0.932020, 0.309924, 0.032088, 0.121530;;, + 108;4;-0.930988, 0.311254, 0.025443, 0.123356;;, + 109;4;-0.930648, 0.310658, 0.022790, 0.123964;;, + 110;4;-0.931874, 0.303766, 0.019976, 0.124160;;, + 111;4;-0.935570, 0.286129, 0.012883, 0.124734;;, + 112;4;-0.941596, 0.258433, 0.001869, 0.125633;;, + 113;4;-0.949505, 0.222706,-0.012143, 0.126744;;, + 114;4;-0.958509, 0.182474,-0.027621, 0.127898;;, + 115;4;-0.967582, 0.142297,-0.042635, 0.128893;;, + 116;4;-0.975687, 0.106729,-0.055304, 0.129545;;, + 117;4;-0.982021, 0.079283,-0.064216, 0.129726;;, + 118;4;-0.986114, 0.061968,-0.068604, 0.129376;;, + 119;4;-0.987803, 0.055451,-0.068262, 0.128494;;, + 120;4;-0.987955, 0.055992,-0.064683, 0.127299;;, + 121;4;-0.987395, 0.060090,-0.059194, 0.125987;;, + 122;4;-0.986102, 0.067853,-0.051737, 0.124555;;, + 123;4;-0.984122, 0.079055,-0.042435, 0.123010;;, + 124;4;-0.981588, 0.093026,-0.031646, 0.121375;;, + 125;4;-0.978714, 0.108699,-0.019945, 0.119684;;, + 126;4;-0.975748, 0.124832,-0.007995, 0.117978;;, + 127;4;-0.972912, 0.140311, 0.003603, 0.116293;;, + 128;4;-0.970367, 0.154340, 0.014422, 0.114656;;, + 129;4;-0.968201, 0.166469, 0.024222, 0.113081;;, + 130;4;-0.966217, 0.178502, 0.034246, 0.111470;;, + 131;4;-0.964188, 0.192256, 0.045705, 0.109732;;, + 132;4;-0.962124, 0.207326, 0.058258, 0.107896;;, + 133;4;-0.960044, 0.222988, 0.071305, 0.106016;;, + 134;4;-0.957976, 0.238232, 0.084005, 0.104167;;, + 135;4;-0.955948, 0.251934, 0.095420, 0.102432;;, + 136;4;-0.953985, 0.263127, 0.104744, 0.100884;;, + 137;4;-0.952104, 0.271203, 0.111471, 0.099567;;, + 138;4;-0.950310, 0.275957, 0.115432, 0.098498;;, + 139;4;-0.948600, 0.277487, 0.116707, 0.097667;;, + 140;4;-0.945807, 0.280934, 0.108572, 0.099491;;, + 141;4;-0.941092, 0.290425, 0.085567, 0.105980;;, + 142;4;-0.935828, 0.302027, 0.055777, 0.114651;;, + 143;4;-0.931974, 0.309924, 0.032088, 0.121510;;, + 144;4;-0.930648, 0.310658, 0.022790, 0.123964;;, + 145;4;-0.935570, 0.286129, 0.012883, 0.124734;;, + 146;4;-0.949505, 0.222706,-0.012143, 0.126744;;, + 147;4;-0.967582, 0.142297,-0.042635, 0.128893;;, + 148;4;-0.982021, 0.079283,-0.064216, 0.129726;;, + 149;4;-0.987803, 0.055451,-0.068262, 0.128494;;, + 150;4;-0.987395, 0.060090,-0.059194, 0.125987;;, + 151;4;-0.984122, 0.079055,-0.042435, 0.123010;;, + 152;4;-0.978714, 0.108699,-0.019945, 0.119684;;, + 153;4;-0.972912, 0.140311, 0.003603, 0.116293;;, + 154;4;-0.968201, 0.166469, 0.024222, 0.113081;;, + 155;4;-0.963648, 0.192256, 0.045705, 0.109500;;, + 156;4;-0.958223, 0.222988, 0.071305, 0.105234;;, + 157;4;-0.953112, 0.251934, 0.095420, 0.101215;;, + 158;4;-0.949710, 0.271203, 0.111471, 0.098540;;, + 159;4;-0.948600, 0.277487, 0.116707, 0.097667;;, + 160;4;-0.948772, 0.277181, 0.116571, 0.097764;;, + 161;4;-0.949294, 0.276233, 0.116135, 0.098056;;, + 162;4;-0.950166, 0.274601, 0.115349, 0.098545;;, + 163;4;-0.951382, 0.272249, 0.114161, 0.099228;;, + 164;4;-0.952929, 0.269148, 0.112515, 0.100095;;, + 165;4;-0.954778, 0.265283, 0.110357, 0.101132;;, + 166;4;-0.956893, 0.260654, 0.107636, 0.102318;;, + 167;4;-0.959220, 0.255284, 0.104305, 0.103623;;, + 168;4;-0.961697, 0.249216, 0.100332, 0.105013;;, + 169;4;-0.964252, 0.242515, 0.095696, 0.106445;;, + 170;4;-0.966806, 0.235267, 0.090397, 0.107878;;, + 171;4;-0.969283, 0.227572, 0.084448, 0.109267;;, + 172;4;-0.971611, 0.219538, 0.077881, 0.110573;;, + 173;4;-0.973725, 0.211273, 0.070741, 0.111758;;, + 174;4;-0.975574, 0.202879, 0.063082, 0.112796;;, + 175;4;-0.977121, 0.194448, 0.054962, 0.113663;;, + 176;4;-0.978337, 0.186059, 0.046439, 0.114345;;, + 177;4;-0.979209, 0.177775, 0.037573, 0.114834;;, + 178;4;-0.979731, 0.169648, 0.028415, 0.115127;;, + 179;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 180;4;-0.977330, 0.157257, 0.000801, 0.113483;;, + 181;4;-0.969586, 0.159468,-0.034876, 0.108245;;, + 182;4;-0.956995, 0.167728,-0.086843, 0.099729;;, + 183;4;-0.940526, 0.180516,-0.151718, 0.088589;;, + 184;4;-0.921869, 0.195354,-0.223678, 0.075970;;, + 185;4;-0.903212, 0.209153,-0.295231, 0.063351;;, + 186;4;-0.886743, 0.218930,-0.358924, 0.052212;;, + 187;4;-0.874152, 0.222478,-0.409040, 0.043696;;, + 188;4;-0.866408, 0.218624,-0.442335, 0.038458;;, + 189;4;-0.863835, 0.207091,-0.457772, 0.036717;;, + 190;4;-0.874577, 0.175955,-0.436552, 0.043943;;, + 191;4;-0.904835, 0.116414,-0.362687, 0.064296;;, + 192;4;-0.943686, 0.045256,-0.260185, 0.090428;;, + 193;4;-0.973943,-0.011707,-0.170527, 0.110781;;, + 194;4;-0.984686,-0.038456,-0.122434, 0.118006;;, + 195;4;-0.984260,-0.028056,-0.092636, 0.117759;;, + 196;4;-0.983063, 0.020698,-0.054045, 0.117062;;, + 197;4;-0.981526, 0.088180,-0.015868, 0.116168;;, + 198;4;-0.980328, 0.142258, 0.010320, 0.115471;;, + 199;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 200;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 201;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 202;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 203;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 204;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 205;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 206;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 207;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 208;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 209;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 210;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 211;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 212;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 213;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 214;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 215;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 216;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 217;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 218;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 219;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 220;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 221;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 222;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 223;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 224;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 225;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 226;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 227;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 228;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 229;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 230;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 231;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 232;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 233;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 234;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 235;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 236;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 237;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 238;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 239;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 240;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 241;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 242;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 243;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 244;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 245;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 246;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 247;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 248;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 249;4;-0.979903, 0.161715, 0.019016, 0.115224;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3;-0.000000, 0.893468, 0.000000;;, + 1;3;-0.000000, 0.893468, 0.000000;;, + 2;3;-0.000000, 0.893468, 0.000000;;, + 3;3;-0.000000, 0.893468, 0.000000;;, + 4;3;-0.000000, 0.893468, 0.000000;;, + 5;3;-0.000000, 0.893468, 0.000000;;, + 6;3;-0.000000, 0.893468, 0.000000;;, + 7;3;-0.000000, 0.893468, 0.000000;;, + 8;3;-0.000000, 0.893468, 0.000000;;, + 9;3;-0.000000, 0.893468, 0.000000;;, + 10;3;-0.000000, 0.893468, 0.000000;;, + 11;3;-0.000000, 0.893468, 0.000000;;, + 12;3;-0.000000, 0.893468, 0.000000;;, + 13;3;-0.000000, 0.893468, 0.000000;;, + 14;3;-0.000000, 0.893468, 0.000000;;, + 15;3;-0.000000, 0.893468, 0.000000;;, + 16;3;-0.000000, 0.893468, 0.000000;;, + 17;3;-0.000000, 0.893468, 0.000000;;, + 18;3;-0.000000, 0.893468, 0.000000;;, + 19;3;-0.000000, 0.893468, 0.000000;;, + 20;3;-0.000000, 0.893468, 0.000000;;, + 21;3;-0.000000, 0.893468, 0.000000;;, + 22;3;-0.000000, 0.893468, 0.000000;;, + 23;3;-0.000000, 0.893468, 0.000000;;, + 24;3;-0.000000, 0.893468, 0.000000;;, + 25;3;-0.000000, 0.893468, 0.000000;;, + 26;3;-0.000000, 0.893468, 0.000000;;, + 27;3;-0.000000, 0.893468, 0.000000;;, + 28;3;-0.000000, 0.893468, 0.000000;;, + 29;3;-0.000000, 0.893468, 0.000000;;, + 30;3;-0.000000, 0.893468, 0.000000;;, + 31;3;-0.000000, 0.893468, 0.000000;;, + 32;3;-0.000000, 0.893468, 0.000000;;, + 33;3;-0.000000, 0.893468, 0.000000;;, + 34;3;-0.000000, 0.893468, 0.000000;;, + 35;3;-0.000000, 0.893468, 0.000000;;, + 36;3;-0.000000, 0.893468, 0.000000;;, + 37;3;-0.000000, 0.893468, 0.000000;;, + 38;3;-0.000000, 0.893468, 0.000000;;, + 39;3;-0.000000, 0.893468, 0.000000;;, + 40;3;-0.000000, 0.893468, 0.000000;;, + 41;3;-0.000000, 0.893468, 0.000000;;, + 42;3;-0.000000, 0.893468, 0.000000;;, + 43;3;-0.000000, 0.893468, 0.000000;;, + 44;3;-0.000000, 0.893468, 0.000000;;, + 45;3;-0.000000, 0.893468, 0.000000;;, + 46;3;-0.000000, 0.893468, 0.000000;;, + 47;3;-0.000000, 0.893468, 0.000000;;, + 48;3;-0.000000, 0.893468, 0.000000;;, + 49;3;-0.000000, 0.893468, 0.000000;;, + 50;3;-0.000000, 0.893468, 0.000000;;, + 51;3;-0.000000, 0.893468, 0.000000;;, + 52;3;-0.000000, 0.893468, 0.000000;;, + 53;3;-0.000000, 0.893468, 0.000000;;, + 54;3;-0.000000, 0.893468, 0.000000;;, + 55;3;-0.000000, 0.893468, 0.000000;;, + 56;3;-0.000000, 0.893468, 0.000000;;, + 57;3;-0.000000, 0.893468, 0.000000;;, + 58;3;-0.000000, 0.893468, 0.000000;;, + 59;3;-0.000000, 0.893468, 0.000000;;, + 60;3;-0.000000, 0.893468, 0.000000;;, + 61;3;-0.000000, 0.893468, 0.000000;;, + 62;3;-0.000000, 0.893468, 0.000000;;, + 63;3;-0.000000, 0.893468, 0.000000;;, + 64;3;-0.000000, 0.893468, 0.000000;;, + 65;3;-0.000000, 0.893468, 0.000000;;, + 66;3;-0.000000, 0.893468, 0.000000;;, + 67;3;-0.000000, 0.893468, 0.000000;;, + 68;3;-0.000000, 0.893468, 0.000000;;, + 69;3;-0.000000, 0.893468, 0.000000;;, + 70;3;-0.000000, 0.893468, 0.000000;;, + 71;3;-0.000000, 0.893468, 0.000000;;, + 72;3;-0.000000, 0.893468, 0.000000;;, + 73;3;-0.000000, 0.893468, 0.000000;;, + 74;3;-0.000000, 0.893468, 0.000000;;, + 75;3;-0.000000, 0.893468, 0.000000;;, + 76;3;-0.000000, 0.893468, 0.000000;;, + 77;3;-0.000000, 0.893468, 0.000000;;, + 78;3;-0.000000, 0.893468, 0.000000;;, + 79;3;-0.000000, 0.893468, 0.000000;;, + 80;3;-0.000000, 0.893468, 0.000000;;, + 81;3;-0.000000, 0.893468, 0.000000;;, + 82;3;-0.000000, 0.893468, 0.000000;;, + 83;3;-0.000000, 0.893468, 0.000000;;, + 84;3;-0.000000, 0.893468, 0.000000;;, + 85;3;-0.000000, 0.893468, 0.000000;;, + 86;3;-0.000000, 0.893468, 0.000000;;, + 87;3;-0.000000, 0.893468, 0.000000;;, + 88;3;-0.000000, 0.893468, 0.000000;;, + 89;3;-0.000000, 0.893468, 0.000000;;, + 90;3;-0.000000, 0.893468, 0.000000;;, + 91;3;-0.000000, 0.893468, 0.000000;;, + 92;3;-0.000000, 0.893468, 0.000000;;, + 93;3;-0.000000, 0.893468, 0.000000;;, + 94;3;-0.000000, 0.893468, 0.000000;;, + 95;3;-0.000000, 0.893468, 0.000000;;, + 96;3;-0.000000, 0.893468, 0.000000;;, + 97;3;-0.000000, 0.893468, 0.000000;;, + 98;3;-0.000000, 0.893468, 0.000000;;, + 99;3;-0.000000, 0.893468, 0.000000;;, + 100;3;-0.000000, 0.893468, 0.000000;;, + 101;3;-0.000000, 0.893468, 0.000000;;, + 102;3;-0.000000, 0.893468, 0.000000;;, + 103;3;-0.000000, 0.893468, 0.000000;;, + 104;3;-0.000000, 0.893468, 0.000000;;, + 105;3;-0.000000, 0.893468, 0.000000;;, + 106;3;-0.000000, 0.893468, 0.000000;;, + 107;3;-0.000000, 0.893468, 0.000000;;, + 108;3;-0.000000, 0.893468, 0.000000;;, + 109;3;-0.000000, 0.893468, 0.000000;;, + 110;3;-0.000000, 0.893468, 0.000000;;, + 111;3;-0.000000, 0.893468, 0.000000;;, + 112;3;-0.000000, 0.893468, 0.000000;;, + 113;3;-0.000000, 0.893468, 0.000000;;, + 114;3;-0.000000, 0.893468, 0.000000;;, + 115;3;-0.000000, 0.893468, 0.000000;;, + 116;3;-0.000000, 0.893468, 0.000000;;, + 117;3;-0.000000, 0.893468, 0.000000;;, + 118;3;-0.000000, 0.893468, 0.000000;;, + 119;3;-0.000000, 0.893468, 0.000000;;, + 120;3;-0.000000, 0.893468, 0.000000;;, + 121;3;-0.000000, 0.893468, 0.000000;;, + 122;3;-0.000000, 0.893468, 0.000000;;, + 123;3;-0.000000, 0.893468, 0.000000;;, + 124;3;-0.000000, 0.893468, 0.000000;;, + 125;3;-0.000000, 0.893468, 0.000000;;, + 126;3;-0.000000, 0.893468, 0.000000;;, + 127;3;-0.000000, 0.893468, 0.000000;;, + 128;3;-0.000000, 0.893468, 0.000000;;, + 129;3;-0.000000, 0.893468, 0.000000;;, + 130;3;-0.000000, 0.893468, 0.000000;;, + 131;3;-0.000000, 0.893468, 0.000000;;, + 132;3;-0.000000, 0.893468, 0.000000;;, + 133;3;-0.000000, 0.893468, 0.000000;;, + 134;3;-0.000000, 0.893468, 0.000000;;, + 135;3;-0.000000, 0.893468, 0.000000;;, + 136;3;-0.000000, 0.893468, 0.000000;;, + 137;3;-0.000000, 0.893468, 0.000000;;, + 138;3;-0.000000, 0.893468, 0.000000;;, + 139;3;-0.000000, 0.893468, 0.000000;;, + 140;3;-0.000000, 0.893468, 0.000000;;, + 141;3;-0.000000, 0.893468, 0.000000;;, + 142;3;-0.000000, 0.893468, 0.000000;;, + 143;3;-0.000000, 0.893468, 0.000000;;, + 144;3;-0.000000, 0.893468, 0.000000;;, + 145;3;-0.000000, 0.893468, 0.000000;;, + 146;3;-0.000000, 0.893468, 0.000000;;, + 147;3;-0.000000, 0.893468, 0.000000;;, + 148;3;-0.000000, 0.893468, 0.000000;;, + 149;3;-0.000000, 0.893468, 0.000000;;, + 150;3;-0.000000, 0.893468, 0.000000;;, + 151;3;-0.000000, 0.893468, 0.000000;;, + 152;3;-0.000000, 0.893468, 0.000000;;, + 153;3;-0.000000, 0.893468, 0.000000;;, + 154;3;-0.000000, 0.893468, 0.000000;;, + 155;3;-0.000000, 0.893468, 0.000000;;, + 156;3;-0.000000, 0.893468, 0.000000;;, + 157;3;-0.000000, 0.893468, 0.000000;;, + 158;3;-0.000000, 0.893468, 0.000000;;, + 159;3;-0.000000, 0.893468, 0.000000;;, + 160;3;-0.000000, 0.893468, 0.000000;;, + 161;3;-0.000000, 0.893468, 0.000000;;, + 162;3;-0.000000, 0.893468, 0.000000;;, + 163;3;-0.000000, 0.893468, 0.000000;;, + 164;3;-0.000000, 0.893468, 0.000000;;, + 165;3;-0.000000, 0.893468, 0.000000;;, + 166;3;-0.000000, 0.893468, 0.000000;;, + 167;3;-0.000000, 0.893468, 0.000000;;, + 168;3;-0.000000, 0.893468, 0.000000;;, + 169;3;-0.000000, 0.893468, 0.000000;;, + 170;3;-0.000000, 0.893468, 0.000000;;, + 171;3;-0.000000, 0.893468, 0.000000;;, + 172;3;-0.000000, 0.893468, 0.000000;;, + 173;3;-0.000000, 0.893468, 0.000000;;, + 174;3;-0.000000, 0.893468, 0.000000;;, + 175;3;-0.000000, 0.893468, 0.000000;;, + 176;3;-0.000000, 0.893468, 0.000000;;, + 177;3;-0.000000, 0.893468, 0.000000;;, + 178;3;-0.000000, 0.893468, 0.000000;;, + 179;3;-0.000000, 0.893468, 0.000000;;, + 180;3;-0.000000, 0.893468, 0.000000;;, + 181;3; 0.000000, 0.893468, 0.000000;;, + 182;3; 0.000000, 0.893468,-0.000000;;, + 183;3; 0.000000, 0.893468,-0.000000;;, + 184;3; 0.000000, 0.893468,-0.000000;;, + 185;3;-0.000000, 0.893468, 0.000000;;, + 186;3;-0.000000, 0.893467, 0.000000;;, + 187;3;-0.000000, 0.893468, 0.000000;;, + 188;3;-0.000000, 0.893468, 0.000000;;, + 189;3;-0.000000, 0.893468, 0.000000;;, + 190;3;-0.000000, 0.893467, 0.000000;;, + 191;3;-0.000000, 0.893468, 0.000000;;, + 192;3; 0.000000, 0.893468,-0.000000;;, + 193;3; 0.000000, 0.893468, 0.000000;;, + 194;3;-0.000000, 0.893468, 0.000000;;, + 195;3; 0.000000, 0.893468, 0.000000;;, + 196;3;-0.000000, 0.893468,-0.000000;;, + 197;3;-0.000000, 0.893468,-0.000000;;, + 198;3; 0.000000, 0.893468, 0.000000;;, + 199;3;-0.000000, 0.893468, 0.000000;;, + 200;3;-0.000000, 0.893468, 0.000000;;, + 201;3;-0.000000, 0.893468, 0.000000;;, + 202;3;-0.000000, 0.893468, 0.000000;;, + 203;3;-0.000000, 0.893468, 0.000000;;, + 204;3;-0.000000, 0.893468, 0.000000;;, + 205;3;-0.000000, 0.893468, 0.000000;;, + 206;3;-0.000000, 0.893468, 0.000000;;, + 207;3;-0.000000, 0.893468, 0.000000;;, + 208;3;-0.000000, 0.893468, 0.000000;;, + 209;3;-0.000000, 0.893468, 0.000000;;, + 210;3;-0.000000, 0.893468, 0.000000;;, + 211;3;-0.000000, 0.893468, 0.000000;;, + 212;3;-0.000000, 0.893468, 0.000000;;, + 213;3;-0.000000, 0.893468, 0.000000;;, + 214;3;-0.000000, 0.893468, 0.000000;;, + 215;3;-0.000000, 0.893468, 0.000000;;, + 216;3;-0.000000, 0.893468, 0.000000;;, + 217;3;-0.000000, 0.893468, 0.000000;;, + 218;3;-0.000000, 0.893468, 0.000000;;, + 219;3;-0.000000, 0.893468, 0.000000;;, + 220;3;-0.000000, 0.893468, 0.000000;;, + 221;3;-0.000000, 0.893468, 0.000000;;, + 222;3;-0.000000, 0.893468, 0.000000;;, + 223;3;-0.000000, 0.893468, 0.000000;;, + 224;3;-0.000000, 0.893468, 0.000000;;, + 225;3;-0.000000, 0.893468, 0.000000;;, + 226;3;-0.000000, 0.893468, 0.000000;;, + 227;3;-0.000000, 0.893468, 0.000000;;, + 228;3;-0.000000, 0.893468, 0.000000;;, + 229;3;-0.000000, 0.893468, 0.000000;;, + 230;3;-0.000000, 0.893468, 0.000000;;, + 231;3;-0.000000, 0.893468, 0.000000;;, + 232;3;-0.000000, 0.893468, 0.000000;;, + 233;3;-0.000000, 0.893468, 0.000000;;, + 234;3;-0.000000, 0.893468, 0.000000;;, + 235;3;-0.000000, 0.893468, 0.000000;;, + 236;3;-0.000000, 0.893468, 0.000000;;, + 237;3;-0.000000, 0.893468, 0.000000;;, + 238;3;-0.000000, 0.893468, 0.000000;;, + 239;3;-0.000000, 0.893468, 0.000000;;, + 240;3;-0.000000, 0.893468, 0.000000;;, + 241;3;-0.000000, 0.893468, 0.000000;;, + 242;3;-0.000000, 0.893468, 0.000000;;, + 243;3;-0.000000, 0.893468, 0.000000;;, + 244;3;-0.000000, 0.893468, 0.000000;;, + 245;3;-0.000000, 0.893468, 0.000000;;, + 246;3;-0.000000, 0.893468, 0.000000;;, + 247;3;-0.000000, 0.893468, 0.000000;;, + 248;3;-0.000000, 0.893468, 0.000000;;, + 249;3;-0.000000, 0.893468, 0.000000;;; + } + } + Animation { + {Armature_Bone_021} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 1;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 2;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 3;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 4;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 5;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 6;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 7;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 8;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 9;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 10;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 11;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 12;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 13;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 14;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 15;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 16;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 17;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 18;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 19;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 20;4;-0.973485,-0.228703,-0.000191, 0.000019;;, + 21;4;-0.973248,-0.229564,-0.000769, 0.000075;;, + 22;4;-0.972851,-0.231004,-0.001735, 0.000168;;, + 23;4;-0.972299,-0.233013,-0.003083, 0.000299;;, + 24;4;-0.971596,-0.235566,-0.004797, 0.000465;;, + 25;4;-0.970755,-0.238620,-0.006846, 0.000664;;, + 26;4;-0.969794,-0.242111,-0.009189, 0.000891;;, + 27;4;-0.968736,-0.245954,-0.011768, 0.001141;;, + 28;4;-0.967611,-0.250044,-0.014513, 0.001407;;, + 29;4;-0.966450,-0.254263,-0.017344, 0.001682;;, + 30;4;-0.965289,-0.258481,-0.020174, 0.001956;;, + 31;4;-0.964163,-0.262571,-0.022919, 0.002222;;, + 32;4;-0.963105,-0.266414,-0.025498, 0.002472;;, + 33;4;-0.962144,-0.269905,-0.027841, 0.002700;;, + 34;4;-0.961303,-0.272959,-0.029891, 0.002898;;, + 35;4;-0.960601,-0.275512,-0.031604, 0.003064;;, + 36;4;-0.960048,-0.277521,-0.032952, 0.003195;;, + 37;4;-0.959651,-0.278961,-0.033918, 0.003289;;, + 38;4;-0.959414,-0.279822,-0.034496, 0.003345;;, + 39;4;-0.959336,-0.280107,-0.034687, 0.003363;;, + 40;4;-0.959414,-0.279822,-0.034496, 0.003345;;, + 41;4;-0.959651,-0.278961,-0.033918, 0.003289;;, + 42;4;-0.960048,-0.277521,-0.032952, 0.003195;;, + 43;4;-0.960601,-0.275512,-0.031604, 0.003064;;, + 44;4;-0.961303,-0.272959,-0.029891, 0.002898;;, + 45;4;-0.962144,-0.269905,-0.027841, 0.002700;;, + 46;4;-0.963105,-0.266414,-0.025498, 0.002472;;, + 47;4;-0.964163,-0.262571,-0.022919, 0.002222;;, + 48;4;-0.965289,-0.258481,-0.020174, 0.001956;;, + 49;4;-0.966450,-0.254263,-0.017344, 0.001682;;, + 50;4;-0.967611,-0.250045,-0.014513, 0.001407;;, + 51;4;-0.968736,-0.245954,-0.011768, 0.001141;;, + 52;4;-0.969794,-0.242111,-0.009189, 0.000891;;, + 53;4;-0.970755,-0.238620,-0.006846, 0.000664;;, + 54;4;-0.971596,-0.235566,-0.004797, 0.000465;;, + 55;4;-0.972299,-0.233013,-0.003083, 0.000299;;, + 56;4;-0.972851,-0.231004,-0.001735, 0.000168;;, + 57;4;-0.973248,-0.229564,-0.000769, 0.000075;;, + 58;4;-0.973485,-0.228703,-0.000191, 0.000019;;, + 59;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 60;4;-0.973404,-0.228767,-0.000244, 0.000024;;, + 61;4;-0.972923,-0.229820,-0.000978, 0.000095;;, + 62;4;-0.972118,-0.231582,-0.002208, 0.000214;;, + 63;4;-0.970988,-0.234057,-0.003935, 0.000382;;, + 64;4;-0.969532,-0.237244,-0.006160, 0.000597;;, + 65;4;-0.967753,-0.241141,-0.008879, 0.000861;;, + 66;4;-0.965653,-0.245739,-0.012088, 0.001172;;, + 67;4;-0.963238,-0.251026,-0.015778, 0.001530;;, + 68;4;-0.960517,-0.256983,-0.019936, 0.001933;;, + 69;4;-0.957501,-0.263589,-0.024546, 0.002380;;, + 70;4;-0.954202,-0.270812,-0.029587, 0.002869;;, + 71;4;-0.950637,-0.278617,-0.035034, 0.003397;;, + 72;4;-0.946826,-0.286961,-0.040858, 0.003962;;, + 73;4;-0.942792,-0.295795,-0.047023, 0.004560;;, + 74;4;-0.938559,-0.305063,-0.053492, 0.005187;;, + 75;4;-0.934156,-0.314704,-0.060220, 0.005839;;, + 76;4;-0.929613,-0.324650,-0.067162, 0.006512;;, + 77;4;-0.924964,-0.334830,-0.074267, 0.007201;;, + 78;4;-0.920243,-0.345168,-0.081482, 0.007901;;, + 79;4;-0.915485,-0.355585,-0.088752, 0.008606;;, + 80;4;-0.910727,-0.366003,-0.096022, 0.009311;;, + 81;4;-0.906006,-0.376340,-0.103237, 0.010010;;, + 82;4;-0.901357,-0.386520,-0.110342, 0.010699;;, + 83;4;-0.896814,-0.396466,-0.117284, 0.011372;;, + 84;4;-0.892411,-0.406108,-0.124012, 0.012025;;, + 85;4;-0.888178,-0.415376,-0.130481, 0.012652;;, + 86;4;-0.884144,-0.424210,-0.136646, 0.013250;;, + 87;4;-0.880333,-0.432554,-0.142470, 0.013815;;, + 88;4;-0.876768,-0.440359,-0.147917, 0.014343;;, + 89;4;-0.873469,-0.447582,-0.152958, 0.014832;;, + 90;4;-0.870453,-0.454187,-0.157568, 0.015278;;, + 91;4;-0.867732,-0.460145,-0.161726, 0.015682;;, + 92;4;-0.865317,-0.465432,-0.165416, 0.016039;;, + 93;4;-0.863217,-0.470030,-0.168625, 0.016351;;, + 94;4;-0.861438,-0.473926,-0.171344, 0.016614;;, + 95;4;-0.859982,-0.477114,-0.173569, 0.016830;;, + 96;4;-0.858852,-0.479589,-0.175296, 0.016998;;, + 97;4;-0.858047,-0.481351,-0.176526, 0.017117;;, + 98;4;-0.857566,-0.482403,-0.177260, 0.017188;;, + 99;4;-0.857407,-0.482752,-0.177504, 0.017212;;, + 100;4;-0.858309,-0.480401,-0.175889, 0.017055;;, + 101;4;-0.861111,-0.473098,-0.170870, 0.016568;;, + 102;4;-0.865870,-0.460691,-0.162346, 0.015742;;, + 103;4;-0.872467,-0.443497,-0.150531, 0.014596;;, + 104;4;-0.880543,-0.422446,-0.136067, 0.013194;;, + 105;4;-0.889527,-0.399027,-0.119976, 0.011633;;, + 106;4;-0.898757,-0.374967,-0.103443, 0.010030;;, + 107;4;-0.907639,-0.351816,-0.087537, 0.008488;;, + 108;4;-0.915745,-0.330685,-0.073017, 0.007080;;, + 109;4;-0.922837,-0.312200,-0.060316, 0.005849;;, + 110;4;-0.929928,-0.293715,-0.047615, 0.004617;;, + 111;4;-0.938035,-0.272584,-0.033096, 0.003209;;, + 112;4;-0.946916,-0.249434,-0.017189, 0.001667;;, + 113;4;-0.956147,-0.225373,-0.000656, 0.000064;;, + 114;4;-0.965131,-0.201955, 0.015435,-0.001497;;, + 115;4;-0.973207,-0.180904, 0.029899,-0.002899;;, + 116;4;-0.979803,-0.163709, 0.041713,-0.004045;;, + 117;4;-0.984563,-0.151303, 0.050238,-0.004871;;, + 118;4;-0.987365,-0.143999, 0.055256,-0.005358;;, + 119;4;-0.988267,-0.141648, 0.056872,-0.005515;;, + 120;4;-0.987365,-0.143999, 0.055256,-0.005358;;, + 121;4;-0.984563,-0.151303, 0.050238,-0.004871;;, + 122;4;-0.979803,-0.163709, 0.041713,-0.004045;;, + 123;4;-0.973207,-0.180904, 0.029899,-0.002899;;, + 124;4;-0.965131,-0.201955, 0.015435,-0.001497;;, + 125;4;-0.956147,-0.225373,-0.000656, 0.000064;;, + 126;4;-0.946916,-0.249434,-0.017189, 0.001667;;, + 127;4;-0.938035,-0.272584,-0.033096, 0.003209;;, + 128;4;-0.929928,-0.293715,-0.047615, 0.004617;;, + 129;4;-0.922837,-0.312200,-0.060316, 0.005849;;, + 130;4;-0.915745,-0.330685,-0.073017, 0.007080;;, + 131;4;-0.907639,-0.351816,-0.087537, 0.008488;;, + 132;4;-0.898757,-0.374967,-0.103443, 0.010030;;, + 133;4;-0.889527,-0.399027,-0.119976, 0.011633;;, + 134;4;-0.880543,-0.422446,-0.136067, 0.013194;;, + 135;4;-0.872467,-0.443497,-0.150531, 0.014596;;, + 136;4;-0.865870,-0.460691,-0.162346, 0.015742;;, + 137;4;-0.861111,-0.473098,-0.170870, 0.016568;;, + 138;4;-0.858309,-0.480401,-0.175889, 0.017055;;, + 139;4;-0.857407,-0.482752,-0.177504, 0.017212;;, + 140;4;-0.861111,-0.473098,-0.170870, 0.016568;;, + 141;4;-0.872467,-0.443497,-0.150531, 0.014596;;, + 142;4;-0.889527,-0.399027,-0.119976, 0.011633;;, + 143;4;-0.907639,-0.351816,-0.087537, 0.008488;;, + 144;4;-0.922837,-0.312200,-0.060316, 0.005849;;, + 145;4;-0.938035,-0.272584,-0.033096, 0.003209;;, + 146;4;-0.956147,-0.225373,-0.000656, 0.000064;;, + 147;4;-0.973207,-0.180904, 0.029899,-0.002899;;, + 148;4;-0.984563,-0.151303, 0.050238,-0.004871;;, + 149;4;-0.988267,-0.141648, 0.056872,-0.005515;;, + 150;4;-0.984563,-0.151303, 0.050238,-0.004871;;, + 151;4;-0.973207,-0.180904, 0.029899,-0.002899;;, + 152;4;-0.956147,-0.225373,-0.000656, 0.000064;;, + 153;4;-0.938035,-0.272584,-0.033096, 0.003209;;, + 154;4;-0.922837,-0.312200,-0.060316, 0.005849;;, + 155;4;-0.907639,-0.351816,-0.087537, 0.008488;;, + 156;4;-0.889527,-0.399027,-0.119976, 0.011633;;, + 157;4;-0.872467,-0.443497,-0.150531, 0.014596;;, + 158;4;-0.861111,-0.473098,-0.170870, 0.016568;;, + 159;4;-0.857407,-0.482752,-0.177504, 0.017212;;, + 160;4;-0.858047,-0.481351,-0.176526, 0.017117;;, + 161;4;-0.859982,-0.477114,-0.173569, 0.016830;;, + 162;4;-0.863217,-0.470030,-0.168625, 0.016351;;, + 163;4;-0.867732,-0.460145,-0.161726, 0.015682;;, + 164;4;-0.873470,-0.447582,-0.152958, 0.014832;;, + 165;4;-0.880333,-0.432554,-0.142470, 0.013815;;, + 166;4;-0.888178,-0.415376,-0.130481, 0.012652;;, + 167;4;-0.896814,-0.396466,-0.117284, 0.011372;;, + 168;4;-0.906006,-0.376340,-0.103237, 0.010010;;, + 169;4;-0.915485,-0.355585,-0.088752, 0.008606;;, + 170;4;-0.924964,-0.334830,-0.074267, 0.007201;;, + 171;4;-0.934156,-0.314704,-0.060220, 0.005839;;, + 172;4;-0.942792,-0.295795,-0.047023, 0.004560;;, + 173;4;-0.950637,-0.278617,-0.035034, 0.003397;;, + 174;4;-0.957501,-0.263589,-0.024546, 0.002380;;, + 175;4;-0.963238,-0.251026,-0.015778, 0.001530;;, + 176;4;-0.967753,-0.241141,-0.008879, 0.000861;;, + 177;4;-0.970988,-0.234057,-0.003935, 0.000382;;, + 178;4;-0.972923,-0.229820,-0.000978, 0.000095;;, + 179;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 180;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 181;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 182;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 183;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 184;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 185;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 186;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 187;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 188;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 189;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 190;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 191;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 192;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 193;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 194;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 195;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 196;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 197;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 198;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 199;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 200;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 201;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 202;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 203;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 204;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 205;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 206;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 207;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 208;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 209;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 210;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 211;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 212;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 213;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 214;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 215;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 216;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 217;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 218;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 219;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 220;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 221;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 222;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 223;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 224;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 225;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 226;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 227;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 228;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 229;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 230;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 231;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 232;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 233;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 234;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 235;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 236;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 237;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 238;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 239;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 240;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 241;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 242;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 243;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 244;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 245;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 246;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 247;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 248;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 249;4;-0.973563,-0.228418,-0.000000, 0.000000;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3;-0.000000, 1.294482,-0.000000;;, + 1;3;-0.000000, 1.294482,-0.000000;;, + 2;3;-0.000000, 1.294482,-0.000000;;, + 3;3;-0.000000, 1.294482,-0.000000;;, + 4;3;-0.000000, 1.294482,-0.000000;;, + 5;3;-0.000000, 1.294482,-0.000000;;, + 6;3;-0.000000, 1.294482,-0.000000;;, + 7;3;-0.000000, 1.294482,-0.000000;;, + 8;3;-0.000000, 1.294482,-0.000000;;, + 9;3;-0.000000, 1.294482,-0.000000;;, + 10;3;-0.000000, 1.294482,-0.000000;;, + 11;3;-0.000000, 1.294482,-0.000000;;, + 12;3;-0.000000, 1.294482,-0.000000;;, + 13;3;-0.000000, 1.294482,-0.000000;;, + 14;3;-0.000000, 1.294482,-0.000000;;, + 15;3;-0.000000, 1.294482,-0.000000;;, + 16;3;-0.000000, 1.294482,-0.000000;;, + 17;3;-0.000000, 1.294482,-0.000000;;, + 18;3;-0.000000, 1.294482,-0.000000;;, + 19;3;-0.000000, 1.294482,-0.000000;;, + 20;3;-0.000000, 1.294482,-0.000000;;, + 21;3;-0.000000, 1.294482,-0.000000;;, + 22;3;-0.000000, 1.294482,-0.000000;;, + 23;3;-0.000000, 1.294482,-0.000000;;, + 24;3;-0.000000, 1.294482,-0.000000;;, + 25;3;-0.000000, 1.294482,-0.000000;;, + 26;3;-0.000000, 1.294482,-0.000000;;, + 27;3;-0.000000, 1.294482,-0.000000;;, + 28;3;-0.000000, 1.294482,-0.000000;;, + 29;3;-0.000000, 1.294482,-0.000000;;, + 30;3;-0.000000, 1.294482,-0.000000;;, + 31;3;-0.000000, 1.294482,-0.000000;;, + 32;3;-0.000000, 1.294482,-0.000000;;, + 33;3;-0.000000, 1.294482,-0.000000;;, + 34;3;-0.000000, 1.294482,-0.000000;;, + 35;3;-0.000000, 1.294482,-0.000000;;, + 36;3;-0.000000, 1.294482,-0.000000;;, + 37;3;-0.000000, 1.294482,-0.000000;;, + 38;3;-0.000000, 1.294482,-0.000000;;, + 39;3;-0.000000, 1.294482,-0.000000;;, + 40;3;-0.000000, 1.294482,-0.000000;;, + 41;3;-0.000000, 1.294482,-0.000000;;, + 42;3;-0.000000, 1.294482,-0.000000;;, + 43;3;-0.000000, 1.294482,-0.000000;;, + 44;3;-0.000000, 1.294482,-0.000000;;, + 45;3;-0.000000, 1.294482,-0.000000;;, + 46;3;-0.000000, 1.294482,-0.000000;;, + 47;3;-0.000000, 1.294482,-0.000000;;, + 48;3;-0.000000, 1.294482,-0.000000;;, + 49;3;-0.000000, 1.294482,-0.000000;;, + 50;3;-0.000000, 1.294482,-0.000000;;, + 51;3;-0.000000, 1.294482,-0.000000;;, + 52;3;-0.000000, 1.294482,-0.000000;;, + 53;3;-0.000000, 1.294482,-0.000000;;, + 54;3;-0.000000, 1.294482,-0.000000;;, + 55;3;-0.000000, 1.294482,-0.000000;;, + 56;3;-0.000000, 1.294482,-0.000000;;, + 57;3;-0.000000, 1.294482,-0.000000;;, + 58;3;-0.000000, 1.294482,-0.000000;;, + 59;3;-0.000000, 1.294482,-0.000000;;, + 60;3;-0.000000, 1.294482, 0.000000;;, + 61;3; 0.000000, 1.294482,-0.000000;;, + 62;3; 0.000000, 1.294481,-0.000000;;, + 63;3;-0.000000, 1.294482, 0.000000;;, + 64;3; 0.000000, 1.294482, 0.000000;;, + 65;3; 0.000000, 1.294482, 0.000000;;, + 66;3;-0.000000, 1.294482, 0.000000;;, + 67;3;-0.000000, 1.294482,-0.000000;;, + 68;3;-0.000000, 1.294482,-0.000000;;, + 69;3;-0.000000, 1.294482,-0.000000;;, + 70;3; 0.000000, 1.294481, 0.000000;;, + 71;3;-0.000000, 1.294481, 0.000000;;, + 72;3;-0.000000, 1.294482,-0.000000;;, + 73;3; 0.000000, 1.294481, 0.000000;;, + 74;3; 0.000000, 1.294482, 0.000000;;, + 75;3; 0.000000, 1.294481, 0.000000;;, + 76;3;-0.000000, 1.294482,-0.000000;;, + 77;3;-0.000000, 1.294482, 0.000000;;, + 78;3; 0.000000, 1.294482,-0.000000;;, + 79;3; 0.000000, 1.294482, 0.000000;;, + 80;3;-0.000000, 1.294482,-0.000000;;, + 81;3; 0.000000, 1.294482, 0.000000;;, + 82;3; 0.000000, 1.294481, 0.000000;;, + 83;3;-0.000000, 1.294482, 0.000000;;, + 84;3;-0.000000, 1.294482, 0.000000;;, + 85;3;-0.000000, 1.294482, 0.000000;;, + 86;3;-0.000000, 1.294482, 0.000000;;, + 87;3;-0.000000, 1.294481, 0.000000;;, + 88;3; 0.000000, 1.294482,-0.000000;;, + 89;3; 0.000000, 1.294482, 0.000000;;, + 90;3; 0.000000, 1.294482, 0.000000;;, + 91;3;-0.000000, 1.294482, 0.000000;;, + 92;3;-0.000000, 1.294482,-0.000000;;, + 93;3;-0.000000, 1.294481, 0.000000;;, + 94;3;-0.000000, 1.294482, 0.000000;;, + 95;3; 0.000000, 1.294482, 0.000000;;, + 96;3; 0.000000, 1.294482,-0.000000;;, + 97;3; 0.000000, 1.294482, 0.000000;;, + 98;3;-0.000000, 1.294482, 0.000000;;, + 99;3; 0.000000, 1.294482,-0.000000;;, + 100;3; 0.000000, 1.294481, 0.000000;;, + 101;3; 0.000000, 1.294481,-0.000000;;, + 102;3; 0.000000, 1.294482,-0.000000;;, + 103;3; 0.000000, 1.294482,-0.000000;;, + 104;3; 0.000000, 1.294482,-0.000000;;, + 105;3; 0.000000, 1.294481, 0.000000;;, + 106;3; 0.000000, 1.294481,-0.000000;;, + 107;3;-0.000000, 1.294482, 0.000000;;, + 108;3; 0.000000, 1.294482,-0.000000;;, + 109;3; 0.000000, 1.294481,-0.000000;;, + 110;3; 0.000000, 1.294482, 0.000000;;, + 111;3;-0.000000, 1.294482,-0.000000;;, + 112;3; 0.000000, 1.294482,-0.000000;;, + 113;3; 0.000000, 1.294482,-0.000000;;, + 114;3;-0.000000, 1.294482,-0.000000;;, + 115;3;-0.000000, 1.294482, 0.000000;;, + 116;3; 0.000000, 1.294482,-0.000000;;, + 117;3; 0.000000, 1.294482,-0.000000;;, + 118;3; 0.000000, 1.294482,-0.000000;;, + 119;3;-0.000000, 1.294482, 0.000000;;, + 120;3; 0.000000, 1.294481,-0.000000;;, + 121;3;-0.000000, 1.294482,-0.000000;;, + 122;3;-0.000000, 1.294482,-0.000000;;, + 123;3;-0.000000, 1.294482, 0.000000;;, + 124;3; 0.000000, 1.294482,-0.000000;;, + 125;3; 0.000000, 1.294481, 0.000000;;, + 126;3; 0.000000, 1.294481,-0.000000;;, + 127;3; 0.000000, 1.294482, 0.000000;;, + 128;3; 0.000000, 1.294481, 0.000000;;, + 129;3;-0.000000, 1.294482, 0.000000;;, + 130;3; 0.000000, 1.294482, 0.000000;;, + 131;3; 0.000000, 1.294482,-0.000000;;, + 132;3;-0.000000, 1.294482, 0.000000;;, + 133;3;-0.000000, 1.294482,-0.000000;;, + 134;3;-0.000000, 1.294482, 0.000000;;, + 135;3; 0.000000, 1.294482, 0.000000;;, + 136;3; 0.000000, 1.294481,-0.000000;;, + 137;3;-0.000000, 1.294482,-0.000000;;, + 138;3;-0.000000, 1.294482, 0.000000;;, + 139;3; 0.000000, 1.294482,-0.000000;;, + 140;3;-0.000000, 1.294482,-0.000000;;, + 141;3; 0.000000, 1.294482, 0.000000;;, + 142;3; 0.000000, 1.294482, 0.000000;;, + 143;3;-0.000000, 1.294482, 0.000000;;, + 144;3; 0.000000, 1.294481,-0.000000;;, + 145;3;-0.000000, 1.294482,-0.000000;;, + 146;3; 0.000000, 1.294482,-0.000000;;, + 147;3;-0.000000, 1.294482, 0.000000;;, + 148;3; 0.000000, 1.294482,-0.000000;;, + 149;3;-0.000000, 1.294482, 0.000000;;, + 150;3;-0.000000, 1.294482,-0.000000;;, + 151;3;-0.000000, 1.294482, 0.000000;;, + 152;3; 0.000000, 1.294481, 0.000000;;, + 153;3; 0.000000, 1.294482, 0.000000;;, + 154;3;-0.000000, 1.294482, 0.000000;;, + 155;3;-0.000000, 1.294482,-0.000000;;, + 156;3; 0.000000, 1.294482,-0.000000;;, + 157;3; 0.000000, 1.294482,-0.000000;;, + 158;3; 0.000000, 1.294482,-0.000000;;, + 159;3; 0.000000, 1.294482,-0.000000;;, + 160;3; 0.000000, 1.294482,-0.000000;;, + 161;3;-0.000000, 1.294482, 0.000000;;, + 162;3;-0.000000, 1.294481, 0.000000;;, + 163;3; 0.000000, 1.294482, 0.000000;;, + 164;3;-0.000000, 1.294482,-0.000000;;, + 165;3; 0.000000, 1.294482, 0.000000;;, + 166;3;-0.000000, 1.294482, 0.000000;;, + 167;3; 0.000000, 1.294482, 0.000000;;, + 168;3; 0.000000, 1.294482, 0.000000;;, + 169;3; 0.000000, 1.294482,-0.000000;;, + 170;3; 0.000000, 1.294482, 0.000000;;, + 171;3;-0.000000, 1.294482, 0.000000;;, + 172;3;-0.000000, 1.294481,-0.000000;;, + 173;3;-0.000000, 1.294482, 0.000000;;, + 174;3;-0.000000, 1.294482,-0.000000;;, + 175;3; 0.000000, 1.294482, 0.000000;;, + 176;3;-0.000000, 1.294482, 0.000000;;, + 177;3; 0.000000, 1.294481, 0.000000;;, + 178;3;-0.000000, 1.294481,-0.000000;;, + 179;3;-0.000000, 1.294482,-0.000000;;, + 180;3; 0.000000, 1.294481, 0.000000;;, + 181;3; 0.000000, 1.294482,-0.000000;;, + 182;3; 0.000000, 1.294482, 0.000000;;, + 183;3; 0.000000, 1.294482, 0.000000;;, + 184;3;-0.000000, 1.294482,-0.000000;;, + 185;3; 0.000000, 1.294482,-0.000000;;, + 186;3;-0.000000, 1.294482,-0.000000;;, + 187;3; 0.000000, 1.294482,-0.000000;;, + 188;3;-0.000000, 1.294482, 0.000000;;, + 189;3;-0.000000, 1.294482,-0.000000;;, + 190;3; 0.000000, 1.294482,-0.000000;;, + 191;3; 0.000000, 1.294482,-0.000000;;, + 192;3; 0.000000, 1.294482,-0.000000;;, + 193;3; 0.000000, 1.294481,-0.000000;;, + 194;3; 0.000000, 1.294482,-0.000000;;, + 195;3; 0.000000, 1.294482,-0.000000;;, + 196;3; 0.000000, 1.294481,-0.000000;;, + 197;3;-0.000000, 1.294481, 0.000000;;, + 198;3; 0.000000, 1.294482,-0.000000;;, + 199;3;-0.000000, 1.294482,-0.000000;;, + 200;3;-0.000000, 1.294482,-0.000000;;, + 201;3;-0.000000, 1.294482,-0.000000;;, + 202;3;-0.000000, 1.294482,-0.000000;;, + 203;3;-0.000000, 1.294482,-0.000000;;, + 204;3;-0.000000, 1.294482,-0.000000;;, + 205;3;-0.000000, 1.294482,-0.000000;;, + 206;3;-0.000000, 1.294482,-0.000000;;, + 207;3;-0.000000, 1.294482,-0.000000;;, + 208;3;-0.000000, 1.294482,-0.000000;;, + 209;3;-0.000000, 1.294482,-0.000000;;, + 210;3;-0.000000, 1.294482,-0.000000;;, + 211;3;-0.000000, 1.294482,-0.000000;;, + 212;3;-0.000000, 1.294482,-0.000000;;, + 213;3;-0.000000, 1.294482,-0.000000;;, + 214;3;-0.000000, 1.294482,-0.000000;;, + 215;3;-0.000000, 1.294482,-0.000000;;, + 216;3;-0.000000, 1.294482,-0.000000;;, + 217;3;-0.000000, 1.294482,-0.000000;;, + 218;3;-0.000000, 1.294482,-0.000000;;, + 219;3;-0.000000, 1.294482,-0.000000;;, + 220;3;-0.000000, 1.294482,-0.000000;;, + 221;3;-0.000000, 1.294482,-0.000000;;, + 222;3;-0.000000, 1.294482,-0.000000;;, + 223;3;-0.000000, 1.294482,-0.000000;;, + 224;3;-0.000000, 1.294482,-0.000000;;, + 225;3;-0.000000, 1.294482,-0.000000;;, + 226;3;-0.000000, 1.294482,-0.000000;;, + 227;3;-0.000000, 1.294482,-0.000000;;, + 228;3;-0.000000, 1.294482,-0.000000;;, + 229;3;-0.000000, 1.294482,-0.000000;;, + 230;3;-0.000000, 1.294482,-0.000000;;, + 231;3;-0.000000, 1.294482,-0.000000;;, + 232;3;-0.000000, 1.294482,-0.000000;;, + 233;3;-0.000000, 1.294482,-0.000000;;, + 234;3;-0.000000, 1.294482,-0.000000;;, + 235;3;-0.000000, 1.294482,-0.000000;;, + 236;3;-0.000000, 1.294482,-0.000000;;, + 237;3;-0.000000, 1.294482,-0.000000;;, + 238;3;-0.000000, 1.294482,-0.000000;;, + 239;3;-0.000000, 1.294482,-0.000000;;, + 240;3;-0.000000, 1.294482,-0.000000;;, + 241;3;-0.000000, 1.294482,-0.000000;;, + 242;3;-0.000000, 1.294482,-0.000000;;, + 243;3;-0.000000, 1.294482,-0.000000;;, + 244;3;-0.000000, 1.294482,-0.000000;;, + 245;3;-0.000000, 1.294482,-0.000000;;, + 246;3;-0.000000, 1.294482,-0.000000;;, + 247;3;-0.000000, 1.294482,-0.000000;;, + 248;3;-0.000000, 1.294482,-0.000000;;, + 249;3;-0.000000, 1.294482,-0.000000;;; + } + } + Animation { + {Armature_Bone_025} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 1;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 2;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 3;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 4;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 5;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 6;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 7;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 8;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 9;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 10;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 11;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 12;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 13;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 14;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 15;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 16;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 17;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 18;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 19;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 20;4;-0.945928,-0.324372, 0.000064, 0.000032;;, + 21;4;-0.946031,-0.324057, 0.000256, 0.000128;;, + 22;4;-0.946203,-0.323531, 0.000578, 0.000290;;, + 23;4;-0.946444,-0.322797, 0.001027, 0.000514;;, + 24;4;-0.946749,-0.321864, 0.001598, 0.000800;;, + 25;4;-0.947114,-0.320748, 0.002281, 0.001142;;, + 26;4;-0.947532,-0.319472, 0.003062, 0.001533;;, + 27;4;-0.947991,-0.318068, 0.003921, 0.001964;;, + 28;4;-0.948480,-0.316574, 0.004836, 0.002422;;, + 29;4;-0.948985,-0.315033, 0.005779, 0.002894;;, + 30;4;-0.949489,-0.313491, 0.006722, 0.003366;;, + 31;4;-0.949979,-0.311997, 0.007637, 0.003824;;, + 32;4;-0.950438,-0.310593, 0.008496, 0.004254;;, + 33;4;-0.950856,-0.309317, 0.009277, 0.004645;;, + 34;4;-0.951221,-0.308201, 0.009960, 0.004987;;, + 35;4;-0.951526,-0.307268, 0.010531, 0.005273;;, + 36;4;-0.951766,-0.306534, 0.010980, 0.005498;;, + 37;4;-0.951939,-0.306008, 0.011302, 0.005659;;, + 38;4;-0.952042,-0.305694, 0.011494, 0.005756;;, + 39;4;-0.952076,-0.305589, 0.011558, 0.005788;;, + 40;4;-0.952075,-0.305611, 0.011546, 0.005782;;, + 41;4;-0.952071,-0.305681, 0.011508, 0.005763;;, + 42;4;-0.952060,-0.305809, 0.011436, 0.005727;;, + 43;4;-0.952037,-0.306007, 0.011325, 0.005671;;, + 44;4;-0.951997,-0.306286, 0.011165, 0.005591;;, + 45;4;-0.951933,-0.306659, 0.010950, 0.005483;;, + 46;4;-0.951838,-0.307138, 0.010671, 0.005344;;, + 47;4;-0.951706,-0.307734, 0.010321, 0.005168;;, + 48;4;-0.951530,-0.308456, 0.009892, 0.004953;;, + 49;4;-0.951303,-0.309311, 0.009381, 0.004697;;, + 50;4;-0.951021,-0.310303, 0.008783, 0.004398;;, + 51;4;-0.950680,-0.311432, 0.008099, 0.004056;;, + 52;4;-0.950279,-0.312693, 0.007330, 0.003671;;, + 53;4;-0.949816,-0.314079, 0.006479, 0.003245;;, + 54;4;-0.949294,-0.315583, 0.005552, 0.002780;;, + 55;4;-0.948714,-0.317193, 0.004555, 0.002281;;, + 56;4;-0.948080,-0.318899, 0.003494, 0.001750;;, + 57;4;-0.947396,-0.320688, 0.002377, 0.001190;;, + 58;4;-0.946666,-0.322550, 0.001210, 0.000606;;, + 59;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 60;4;-0.945056,-0.326527,-0.001292,-0.000647;;, + 61;4;-0.944124,-0.328772,-0.002708,-0.001356;;, + 62;4;-0.943099,-0.331211,-0.004248,-0.002127;;, + 63;4;-0.941981,-0.333842,-0.005911,-0.002960;;, + 64;4;-0.940772,-0.336663,-0.007695,-0.003853;;, + 65;4;-0.939472,-0.339670,-0.009599,-0.004806;;, + 66;4;-0.938084,-0.342858,-0.011617,-0.005817;;, + 67;4;-0.936612,-0.346220,-0.013748,-0.006884;;, + 68;4;-0.935058,-0.349747,-0.015984,-0.008004;;, + 69;4;-0.933428,-0.353429,-0.018319,-0.009173;;, + 70;4;-0.931727,-0.357255,-0.020746,-0.010389;;, + 71;4;-0.929962,-0.361209,-0.023256,-0.011646;;, + 72;4;-0.928139,-0.365276,-0.025838,-0.012939;;, + 73;4;-0.926269,-0.369438,-0.028481,-0.014262;;, + 74;4;-0.924358,-0.373675,-0.031173,-0.015610;;, + 75;4;-0.922419,-0.377965,-0.033899,-0.016975;;, + 76;4;-0.920460,-0.382286,-0.036645,-0.018350;;, + 77;4;-0.918494,-0.386613,-0.039396,-0.019727;;, + 78;4;-0.916532,-0.390923,-0.042135,-0.021099;;, + 79;4;-0.914586,-0.395188,-0.044848,-0.022458;;, + 80;4;-0.912668,-0.399386,-0.047518,-0.023794;;, + 81;4;-0.910789,-0.403490,-0.050128,-0.025102;;, + 82;4;-0.908961,-0.407478,-0.052665,-0.026372;;, + 83;4;-0.907194,-0.411326,-0.055114,-0.027598;;, + 84;4;-0.905498,-0.415014,-0.057461,-0.028774;;, + 85;4;-0.903883,-0.418523,-0.059694,-0.029892;;, + 86;4;-0.902356,-0.421835,-0.061802,-0.030947;;, + 87;4;-0.900925,-0.424936,-0.063776,-0.031936;;, + 88;4;-0.899597,-0.427812,-0.065607,-0.032853;;, + 89;4;-0.898376,-0.430454,-0.067289,-0.033695;;, + 90;4;-0.897266,-0.432853,-0.068816,-0.034460;;, + 91;4;-0.896270,-0.435002,-0.070185,-0.035145;;, + 92;4;-0.895392,-0.436898,-0.071392,-0.035750;;, + 93;4;-0.894632,-0.438537,-0.072436,-0.036272;;, + 94;4;-0.893990,-0.439919,-0.073316,-0.036713;;, + 95;4;-0.893468,-0.441043,-0.074032,-0.037072;;, + 96;4;-0.893064,-0.441913,-0.074586,-0.037349;;, + 97;4;-0.892778,-0.442529,-0.074978,-0.037545;;, + 98;4;-0.892607,-0.442895,-0.075212,-0.037662;;, + 99;4;-0.892551,-0.443016,-0.075289,-0.037701;;, + 100;4;-0.893183,-0.440632,-0.073858,-0.036985;;, + 101;4;-0.895145,-0.433228,-0.069414,-0.034759;;, + 102;4;-0.898479,-0.420648,-0.061863,-0.030978;;, + 103;4;-0.903099,-0.403215,-0.051400,-0.025738;;, + 104;4;-0.908756,-0.381872,-0.038589,-0.019323;;, + 105;4;-0.915049,-0.358128,-0.024337,-0.012187;;, + 106;4;-0.921514,-0.333734,-0.009695,-0.004855;;, + 107;4;-0.927735,-0.310262, 0.004393, 0.002200;;, + 108;4;-0.933413,-0.288837, 0.017253, 0.008639;;, + 109;4;-0.938380,-0.270095, 0.028502, 0.014272;;, + 110;4;-0.943347,-0.251354, 0.039751, 0.019905;;, + 111;4;-0.949025,-0.229929, 0.052610, 0.026345;;, + 112;4;-0.955246,-0.206457, 0.066699, 0.033399;;, + 113;4;-0.961711,-0.182063, 0.081341, 0.040732;;, + 114;4;-0.968004,-0.158319, 0.095593, 0.047868;;, + 115;4;-0.973661,-0.136976, 0.108403, 0.054283;;, + 116;4;-0.978281,-0.119542, 0.118867, 0.059523;;, + 117;4;-0.981615,-0.106963, 0.126417, 0.063304;;, + 118;4;-0.983577,-0.099559, 0.130862, 0.065529;;, + 119;4;-0.984209,-0.097175, 0.132293, 0.066246;;, + 120;4;-0.983577,-0.099559, 0.130862, 0.065529;;, + 121;4;-0.981615,-0.106963, 0.126417, 0.063304;;, + 122;4;-0.978281,-0.119542, 0.118867, 0.059523;;, + 123;4;-0.973661,-0.136976, 0.108403, 0.054283;;, + 124;4;-0.968004,-0.158319, 0.095593, 0.047868;;, + 125;4;-0.961711,-0.182063, 0.081341, 0.040732;;, + 126;4;-0.955246,-0.206457, 0.066699, 0.033399;;, + 127;4;-0.949025,-0.229929, 0.052610, 0.026345;;, + 128;4;-0.943347,-0.251354, 0.039751, 0.019905;;, + 129;4;-0.938380,-0.270095, 0.028502, 0.014272;;, + 130;4;-0.933413,-0.288837, 0.017253, 0.008639;;, + 131;4;-0.927735,-0.310262, 0.004393, 0.002200;;, + 132;4;-0.921514,-0.333734,-0.009695,-0.004855;;, + 133;4;-0.915049,-0.358128,-0.024337,-0.012187;;, + 134;4;-0.908756,-0.381872,-0.038589,-0.019323;;, + 135;4;-0.903099,-0.403215,-0.051400,-0.025738;;, + 136;4;-0.898479,-0.420648,-0.061863,-0.030978;;, + 137;4;-0.895145,-0.433228,-0.069414,-0.034759;;, + 138;4;-0.893183,-0.440632,-0.073858,-0.036985;;, + 139;4;-0.892551,-0.443016,-0.075289,-0.037701;;, + 140;4;-0.895145,-0.433228,-0.069414,-0.034759;;, + 141;4;-0.903099,-0.403215,-0.051400,-0.025738;;, + 142;4;-0.915049,-0.358128,-0.024337,-0.012187;;, + 143;4;-0.927735,-0.310262, 0.004393, 0.002200;;, + 144;4;-0.938380,-0.270095, 0.028502, 0.014272;;, + 145;4;-0.949025,-0.229929, 0.052610, 0.026345;;, + 146;4;-0.961711,-0.182063, 0.081341, 0.040732;;, + 147;4;-0.973661,-0.136976, 0.108403, 0.054283;;, + 148;4;-0.981615,-0.106963, 0.126417, 0.063304;;, + 149;4;-0.984209,-0.097175, 0.132293, 0.066246;;, + 150;4;-0.981615,-0.106963, 0.126417, 0.063304;;, + 151;4;-0.973661,-0.136976, 0.108403, 0.054283;;, + 152;4;-0.961711,-0.182063, 0.081341, 0.040732;;, + 153;4;-0.949025,-0.229929, 0.052610, 0.026345;;, + 154;4;-0.938380,-0.270095, 0.028502, 0.014272;;, + 155;4;-0.927735,-0.310262, 0.004393, 0.002200;;, + 156;4;-0.915049,-0.358128,-0.024337,-0.012187;;, + 157;4;-0.903099,-0.403215,-0.051400,-0.025738;;, + 158;4;-0.895145,-0.433228,-0.069414,-0.034759;;, + 159;4;-0.892551,-0.443016,-0.075289,-0.037701;;, + 160;4;-0.892845,-0.442363,-0.074874,-0.037493;;, + 161;4;-0.893733,-0.440388,-0.073620,-0.036865;;, + 162;4;-0.895219,-0.437086,-0.071523,-0.035815;;, + 163;4;-0.897292,-0.432479,-0.068597,-0.034350;;, + 164;4;-0.899927,-0.426624,-0.064878,-0.032488;;, + 165;4;-0.903079,-0.419620,-0.060429,-0.030260;;, + 166;4;-0.906682,-0.411613,-0.055344,-0.027714;;, + 167;4;-0.910648,-0.402800,-0.049746,-0.024911;;, + 168;4;-0.914869,-0.393419,-0.043789,-0.021927;;, + 169;4;-0.919222,-0.383746,-0.037645,-0.018850;;, + 170;4;-0.923576,-0.374072,-0.031501,-0.015774;;, + 171;4;-0.927797,-0.364692,-0.025543,-0.012791;;, + 172;4;-0.931763,-0.355879,-0.019945,-0.009987;;, + 173;4;-0.935366,-0.347872,-0.014860,-0.007441;;, + 174;4;-0.938518,-0.340868,-0.010411,-0.005213;;, + 175;4;-0.941152,-0.335013,-0.006692,-0.003351;;, + 176;4;-0.943226,-0.330405,-0.003766,-0.001886;;, + 177;4;-0.944712,-0.327104,-0.001669,-0.000836;;, + 178;4;-0.945600,-0.325129,-0.000415,-0.000208;;, + 179;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 180;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 181;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 182;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 183;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 184;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 185;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 186;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 187;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 188;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 189;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 190;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 191;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 192;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 193;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 194;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 195;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 196;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 197;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 198;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 199;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 200;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 201;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 202;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 203;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 204;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 205;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 206;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 207;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 208;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 209;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 210;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 211;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 212;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 213;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 214;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 215;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 216;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 217;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 218;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 219;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 220;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 221;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 222;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 223;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 224;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 225;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 226;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 227;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 228;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 229;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 230;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 231;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 232;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 233;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 234;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 235;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 236;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 237;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 238;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 239;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 240;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 241;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 242;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 243;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 244;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 245;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 246;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 247;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 248;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 249;4;-0.945894,-0.324476,-0.000000, 0.000000;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3;-0.000000, 1.228822,-0.000000;;, + 1;3;-0.000000, 1.228822,-0.000000;;, + 2;3;-0.000000, 1.228822,-0.000000;;, + 3;3;-0.000000, 1.228822,-0.000000;;, + 4;3;-0.000000, 1.228822,-0.000000;;, + 5;3;-0.000000, 1.228822,-0.000000;;, + 6;3;-0.000000, 1.228822,-0.000000;;, + 7;3;-0.000000, 1.228822,-0.000000;;, + 8;3;-0.000000, 1.228822,-0.000000;;, + 9;3;-0.000000, 1.228822,-0.000000;;, + 10;3;-0.000000, 1.228822,-0.000000;;, + 11;3;-0.000000, 1.228822,-0.000000;;, + 12;3;-0.000000, 1.228822,-0.000000;;, + 13;3;-0.000000, 1.228822,-0.000000;;, + 14;3;-0.000000, 1.228822,-0.000000;;, + 15;3;-0.000000, 1.228822,-0.000000;;, + 16;3;-0.000000, 1.228822,-0.000000;;, + 17;3;-0.000000, 1.228822,-0.000000;;, + 18;3;-0.000000, 1.228822,-0.000000;;, + 19;3;-0.000000, 1.228822,-0.000000;;, + 20;3;-0.000000, 1.228822,-0.000000;;, + 21;3; 0.000000, 1.228822, 0.000000;;, + 22;3; 0.000000, 1.228822,-0.000000;;, + 23;3;-0.000000, 1.228822,-0.000000;;, + 24;3; 0.000000, 1.228822, 0.000000;;, + 25;3;-0.000000, 1.228822,-0.000000;;, + 26;3; 0.000000, 1.228822, 0.000000;;, + 27;3; 0.000000, 1.228822, 0.000000;;, + 28;3;-0.000000, 1.228822,-0.000000;;, + 29;3; 0.000000, 1.228822, 0.000000;;, + 30;3; 0.000000, 1.228822,-0.000000;;, + 31;3; 0.000000, 1.228822, 0.000000;;, + 32;3; 0.000000, 1.228822, 0.000000;;, + 33;3;-0.000000, 1.228822,-0.000000;;, + 34;3;-0.000000, 1.228822, 0.000000;;, + 35;3; 0.000000, 1.228822,-0.000000;;, + 36;3; 0.000000, 1.228822, 0.000000;;, + 37;3; 0.000000, 1.228822,-0.000000;;, + 38;3;-0.000000, 1.228822, 0.000000;;, + 39;3; 0.000000, 1.228822,-0.000000;;, + 40;3; 0.000000, 1.228822, 0.000000;;, + 41;3; 0.000000, 1.228822,-0.000000;;, + 42;3; 0.000000, 1.228822, 0.000000;;, + 43;3; 0.000000, 1.228822,-0.000000;;, + 44;3; 0.000000, 1.228822,-0.000000;;, + 45;3; 0.000000, 1.228822,-0.000000;;, + 46;3; 0.000000, 1.228822, 0.000000;;, + 47;3; 0.000000, 1.228822, 0.000000;;, + 48;3; 0.000000, 1.228822,-0.000000;;, + 49;3; 0.000000, 1.228822,-0.000000;;, + 50;3; 0.000000, 1.228822,-0.000000;;, + 51;3; 0.000000, 1.228822, 0.000000;;, + 52;3; 0.000000, 1.228822, 0.000000;;, + 53;3; 0.000000, 1.228822, 0.000000;;, + 54;3; 0.000000, 1.228822, 0.000000;;, + 55;3;-0.000000, 1.228822,-0.000000;;, + 56;3; 0.000000, 1.228822,-0.000000;;, + 57;3; 0.000000, 1.228822, 0.000000;;, + 58;3;-0.000000, 1.228822, 0.000000;;, + 59;3;-0.000000, 1.228822,-0.000000;;, + 60;3; 0.000000, 1.228822,-0.000000;;, + 61;3;-0.000000, 1.228822, 0.000000;;, + 62;3;-0.000000, 1.228822, 0.000000;;, + 63;3;-0.000000, 1.228822,-0.000000;;, + 64;3; 0.000000, 1.228822,-0.000000;;, + 65;3;-0.000000, 1.228822, 0.000000;;, + 66;3;-0.000000, 1.228822, 0.000000;;, + 67;3;-0.000000, 1.228822,-0.000000;;, + 68;3; 0.000000, 1.228822,-0.000000;;, + 69;3;-0.000000, 1.228822,-0.000000;;, + 70;3;-0.000000, 1.228822,-0.000000;;, + 71;3;-0.000000, 1.228822,-0.000000;;, + 72;3; 0.000000, 1.228822, 0.000000;;, + 73;3;-0.000000, 1.228822,-0.000000;;, + 74;3; 0.000000, 1.228822,-0.000000;;, + 75;3; 0.000000, 1.228822,-0.000000;;, + 76;3; 0.000000, 1.228822, 0.000000;;, + 77;3; 0.000000, 1.228822, 0.000000;;, + 78;3;-0.000000, 1.228822, 0.000000;;, + 79;3;-0.000000, 1.228822,-0.000000;;, + 80;3; 0.000000, 1.228822, 0.000000;;, + 81;3; 0.000000, 1.228822,-0.000000;;, + 82;3;-0.000000, 1.228822, 0.000000;;, + 83;3;-0.000000, 1.228822, 0.000000;;, + 84;3; 0.000000, 1.228822,-0.000000;;, + 85;3;-0.000000, 1.228822, 0.000000;;, + 86;3;-0.000000, 1.228822,-0.000000;;, + 87;3;-0.000000, 1.228822,-0.000000;;, + 88;3;-0.000000, 1.228822,-0.000000;;, + 89;3;-0.000000, 1.228822, 0.000000;;, + 90;3; 0.000000, 1.228822, 0.000000;;, + 91;3;-0.000000, 1.228822,-0.000000;;, + 92;3;-0.000000, 1.228822, 0.000000;;, + 93;3;-0.000000, 1.228822,-0.000000;;, + 94;3;-0.000000, 1.228822, 0.000000;;, + 95;3; 0.000000, 1.228822,-0.000000;;, + 96;3;-0.000000, 1.228822,-0.000000;;, + 97;3;-0.000000, 1.228822,-0.000000;;, + 98;3;-0.000000, 1.228822, 0.000000;;, + 99;3; 0.000000, 1.228822, 0.000000;;, + 100;3; 0.000000, 1.228822,-0.000000;;, + 101;3;-0.000000, 1.228822,-0.000000;;, + 102;3;-0.000000, 1.228822,-0.000000;;, + 103;3;-0.000000, 1.228822,-0.000000;;, + 104;3; 0.000000, 1.228822, 0.000000;;, + 105;3;-0.000000, 1.228822,-0.000000;;, + 106;3;-0.000000, 1.228822,-0.000000;;, + 107;3; 0.000000, 1.228822,-0.000000;;, + 108;3; 0.000000, 1.228822,-0.000000;;, + 109;3; 0.000000, 1.228822,-0.000000;;, + 110;3;-0.000000, 1.228822,-0.000000;;, + 111;3; 0.000000, 1.228822, 0.000000;;, + 112;3;-0.000000, 1.228822,-0.000000;;, + 113;3;-0.000000, 1.228822,-0.000000;;, + 114;3; 0.000000, 1.228822, 0.000000;;, + 115;3; 0.000000, 1.228822,-0.000000;;, + 116;3;-0.000000, 1.228822, 0.000000;;, + 117;3;-0.000000, 1.228822,-0.000000;;, + 118;3;-0.000000, 1.228822,-0.000000;;, + 119;3; 0.000000, 1.228822,-0.000000;;, + 120;3; 0.000000, 1.228822, 0.000000;;, + 121;3;-0.000000, 1.228822,-0.000000;;, + 122;3;-0.000000, 1.228822, 0.000000;;, + 123;3; 0.000000, 1.228822,-0.000000;;, + 124;3; 0.000000, 1.228822,-0.000000;;, + 125;3; 0.000000, 1.228822,-0.000000;;, + 126;3;-0.000000, 1.228822,-0.000000;;, + 127;3;-0.000000, 1.228822,-0.000000;;, + 128;3;-0.000000, 1.228822,-0.000000;;, + 129;3;-0.000000, 1.228822,-0.000000;;, + 130;3; 0.000000, 1.228822, 0.000000;;, + 131;3; 0.000000, 1.228822,-0.000000;;, + 132;3; 0.000000, 1.228822, 0.000000;;, + 133;3; 0.000000, 1.228822,-0.000000;;, + 134;3;-0.000000, 1.228822, 0.000000;;, + 135;3; 0.000000, 1.228822,-0.000000;;, + 136;3;-0.000000, 1.228822, 0.000000;;, + 137;3; 0.000000, 1.228822, 0.000000;;, + 138;3; 0.000000, 1.228822,-0.000000;;, + 139;3; 0.000000, 1.228822, 0.000000;;, + 140;3; 0.000000, 1.228822,-0.000000;;, + 141;3;-0.000000, 1.228822,-0.000000;;, + 142;3; 0.000000, 1.228822,-0.000000;;, + 143;3;-0.000000, 1.228822, 0.000000;;, + 144;3; 0.000000, 1.228822,-0.000000;;, + 145;3; 0.000000, 1.228822, 0.000000;;, + 146;3;-0.000000, 1.228822,-0.000000;;, + 147;3; 0.000000, 1.228822,-0.000000;;, + 148;3;-0.000000, 1.228822,-0.000000;;, + 149;3; 0.000000, 1.228822,-0.000000;;, + 150;3;-0.000000, 1.228822,-0.000000;;, + 151;3; 0.000000, 1.228822,-0.000000;;, + 152;3; 0.000000, 1.228822,-0.000000;;, + 153;3;-0.000000, 1.228822,-0.000000;;, + 154;3;-0.000000, 1.228822,-0.000000;;, + 155;3; 0.000000, 1.228822, 0.000000;;, + 156;3;-0.000000, 1.228822, 0.000000;;, + 157;3;-0.000000, 1.228822,-0.000000;;, + 158;3;-0.000000, 1.228822,-0.000000;;, + 159;3; 0.000000, 1.228822, 0.000000;;, + 160;3; 0.000000, 1.228822, 0.000000;;, + 161;3;-0.000000, 1.228822,-0.000000;;, + 162;3;-0.000000, 1.228822,-0.000000;;, + 163;3;-0.000000, 1.228822, 0.000000;;, + 164;3;-0.000000, 1.228822,-0.000000;;, + 165;3; 0.000000, 1.228822,-0.000000;;, + 166;3;-0.000000, 1.228822,-0.000000;;, + 167;3; 0.000000, 1.228822,-0.000000;;, + 168;3;-0.000000, 1.228822,-0.000000;;, + 169;3; 0.000000, 1.228822,-0.000000;;, + 170;3; 0.000000, 1.228822, 0.000000;;, + 171;3; 0.000000, 1.228822, 0.000000;;, + 172;3;-0.000000, 1.228822,-0.000000;;, + 173;3;-0.000000, 1.228822,-0.000000;;, + 174;3; 0.000000, 1.228822, 0.000000;;, + 175;3; 0.000000, 1.228822, 0.000000;;, + 176;3;-0.000000, 1.228822,-0.000000;;, + 177;3; 0.000000, 1.228822,-0.000000;;, + 178;3; 0.000000, 1.228822,-0.000000;;, + 179;3;-0.000000, 1.228822,-0.000000;;, + 180;3; 0.000000, 1.228822,-0.000000;;, + 181;3; 0.000000, 1.228822,-0.000000;;, + 182;3;-0.000000, 1.228822, 0.000000;;, + 183;3;-0.000000, 1.228822,-0.000000;;, + 184;3;-0.000000, 1.228822, 0.000000;;, + 185;3;-0.000000, 1.228822,-0.000000;;, + 186;3; 0.000000, 1.228822, 0.000000;;, + 187;3;-0.000000, 1.228822,-0.000000;;, + 188;3; 0.000000, 1.228822,-0.000000;;, + 189;3; 0.000000, 1.228822, 0.000000;;, + 190;3; 0.000000, 1.228822, 0.000000;;, + 191;3;-0.000000, 1.228822,-0.000000;;, + 192;3;-0.000000, 1.228822,-0.000000;;, + 193;3; 0.000000, 1.228822,-0.000000;;, + 194;3;-0.000000, 1.228822, 0.000000;;, + 195;3;-0.000000, 1.228822, 0.000000;;, + 196;3;-0.000000, 1.228822,-0.000000;;, + 197;3;-0.000000, 1.228822,-0.000000;;, + 198;3;-0.000000, 1.228822, 0.000000;;, + 199;3;-0.000000, 1.228822,-0.000000;;, + 200;3;-0.000000, 1.228822,-0.000000;;, + 201;3;-0.000000, 1.228822,-0.000000;;, + 202;3;-0.000000, 1.228822,-0.000000;;, + 203;3;-0.000000, 1.228822,-0.000000;;, + 204;3;-0.000000, 1.228822,-0.000000;;, + 205;3;-0.000000, 1.228822,-0.000000;;, + 206;3;-0.000000, 1.228822,-0.000000;;, + 207;3;-0.000000, 1.228822,-0.000000;;, + 208;3;-0.000000, 1.228822,-0.000000;;, + 209;3;-0.000000, 1.228822,-0.000000;;, + 210;3;-0.000000, 1.228822,-0.000000;;, + 211;3;-0.000000, 1.228822,-0.000000;;, + 212;3;-0.000000, 1.228822,-0.000000;;, + 213;3;-0.000000, 1.228822,-0.000000;;, + 214;3;-0.000000, 1.228822,-0.000000;;, + 215;3;-0.000000, 1.228822,-0.000000;;, + 216;3;-0.000000, 1.228822,-0.000000;;, + 217;3;-0.000000, 1.228822,-0.000000;;, + 218;3;-0.000000, 1.228822,-0.000000;;, + 219;3;-0.000000, 1.228822,-0.000000;;, + 220;3;-0.000000, 1.228822,-0.000000;;, + 221;3;-0.000000, 1.228822,-0.000000;;, + 222;3;-0.000000, 1.228822,-0.000000;;, + 223;3;-0.000000, 1.228822,-0.000000;;, + 224;3;-0.000000, 1.228822,-0.000000;;, + 225;3;-0.000000, 1.228822,-0.000000;;, + 226;3;-0.000000, 1.228822,-0.000000;;, + 227;3;-0.000000, 1.228822,-0.000000;;, + 228;3;-0.000000, 1.228822,-0.000000;;, + 229;3;-0.000000, 1.228822,-0.000000;;, + 230;3;-0.000000, 1.228822,-0.000000;;, + 231;3;-0.000000, 1.228822,-0.000000;;, + 232;3;-0.000000, 1.228822,-0.000000;;, + 233;3;-0.000000, 1.228822,-0.000000;;, + 234;3;-0.000000, 1.228822,-0.000000;;, + 235;3;-0.000000, 1.228822,-0.000000;;, + 236;3;-0.000000, 1.228822,-0.000000;;, + 237;3;-0.000000, 1.228822,-0.000000;;, + 238;3;-0.000000, 1.228822,-0.000000;;, + 239;3;-0.000000, 1.228822,-0.000000;;, + 240;3;-0.000000, 1.228822,-0.000000;;, + 241;3;-0.000000, 1.228822,-0.000000;;, + 242;3;-0.000000, 1.228822,-0.000000;;, + 243;3;-0.000000, 1.228822,-0.000000;;, + 244;3;-0.000000, 1.228822,-0.000000;;, + 245;3;-0.000000, 1.228822,-0.000000;;, + 246;3;-0.000000, 1.228822,-0.000000;;, + 247;3;-0.000000, 1.228822,-0.000000;;, + 248;3;-0.000000, 1.228822,-0.000000;;, + 249;3;-0.000000, 1.228822,-0.000000;;; + } + } + Animation { + {Armature_Bone_014} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 1;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 2;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 3;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 4;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 5;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 6;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 7;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 8;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 9;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 10;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 11;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 12;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 13;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 14;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 15;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 16;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 17;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 18;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 19;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 20;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 21;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 22;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 23;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 24;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 25;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 26;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 27;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 28;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 29;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 30;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 31;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 32;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 33;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 34;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 35;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 36;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 37;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 38;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 39;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 40;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 41;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 42;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 43;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 44;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 45;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 46;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 47;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 48;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 49;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 50;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 51;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 52;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 53;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 54;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 55;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 56;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 57;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 58;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 59;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 60;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 61;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 62;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 63;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 64;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 65;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 66;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 67;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 68;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 69;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 70;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 71;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 72;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 73;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 74;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 75;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 76;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 77;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 78;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 79;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 80;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 81;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 82;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 83;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 84;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 85;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 86;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 87;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 88;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 89;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 90;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 91;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 92;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 93;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 94;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 95;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 96;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 97;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 98;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 99;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 100;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 101;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 102;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 103;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 104;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 105;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 106;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 107;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 108;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 109;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 110;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 111;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 112;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 113;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 114;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 115;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 116;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 117;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 118;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 119;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 120;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 121;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 122;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 123;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 124;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 125;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 126;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 127;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 128;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 129;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 130;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 131;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 132;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 133;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 134;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 135;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 136;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 137;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 138;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 139;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 140;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 141;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 142;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 143;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 144;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 145;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 146;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 147;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 148;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 149;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 150;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 151;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 152;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 153;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 154;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 155;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 156;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 157;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 158;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 159;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 160;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 161;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 162;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 163;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 164;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 165;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 166;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 167;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 168;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 169;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 170;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 171;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 172;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 173;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 174;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 175;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 176;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 177;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 178;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 179;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 180;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 181;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 182;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 183;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 184;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 185;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 186;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 187;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 188;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 189;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 190;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 191;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 192;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 193;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 194;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 195;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 196;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 197;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 198;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 199;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 200;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 201;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 202;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 203;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 204;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 205;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 206;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 207;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 208;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 209;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 210;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 211;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 212;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 213;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 214;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 215;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 216;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 217;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 218;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 219;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 220;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 221;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 222;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 223;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 224;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 225;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 226;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 227;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 228;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 229;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 230;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 231;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 232;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 233;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 234;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 235;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 236;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 237;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 238;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 239;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 240;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 241;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 242;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 243;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 244;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 245;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 246;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 247;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 248;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 249;4;-0.873438, 0.000000, 0.000000,-0.486935;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3; 0.000000, 0.826434, 0.000000;;, + 1;3; 0.000000, 0.826434, 0.000000;;, + 2;3; 0.000000, 0.826434, 0.000000;;, + 3;3; 0.000000, 0.826434, 0.000000;;, + 4;3; 0.000000, 0.826434, 0.000000;;, + 5;3; 0.000000, 0.826434, 0.000000;;, + 6;3; 0.000000, 0.826434, 0.000000;;, + 7;3; 0.000000, 0.826434, 0.000000;;, + 8;3; 0.000000, 0.826434, 0.000000;;, + 9;3; 0.000000, 0.826434, 0.000000;;, + 10;3; 0.000000, 0.826434, 0.000000;;, + 11;3; 0.000000, 0.826434, 0.000000;;, + 12;3; 0.000000, 0.826434, 0.000000;;, + 13;3; 0.000000, 0.826434, 0.000000;;, + 14;3; 0.000000, 0.826434, 0.000000;;, + 15;3; 0.000000, 0.826434, 0.000000;;, + 16;3; 0.000000, 0.826434, 0.000000;;, + 17;3; 0.000000, 0.826434, 0.000000;;, + 18;3; 0.000000, 0.826434, 0.000000;;, + 19;3; 0.000000, 0.826434, 0.000000;;, + 20;3; 0.000000, 0.826434, 0.000000;;, + 21;3; 0.000000, 0.826434, 0.000000;;, + 22;3; 0.000000, 0.826434, 0.000000;;, + 23;3; 0.000000, 0.826434, 0.000000;;, + 24;3; 0.000000, 0.826434, 0.000000;;, + 25;3; 0.000000, 0.826434, 0.000000;;, + 26;3; 0.000000, 0.826434, 0.000000;;, + 27;3; 0.000000, 0.826434, 0.000000;;, + 28;3; 0.000000, 0.826434, 0.000000;;, + 29;3; 0.000000, 0.826434, 0.000000;;, + 30;3; 0.000000, 0.826434, 0.000000;;, + 31;3; 0.000000, 0.826434, 0.000000;;, + 32;3; 0.000000, 0.826434, 0.000000;;, + 33;3; 0.000000, 0.826434, 0.000000;;, + 34;3; 0.000000, 0.826434, 0.000000;;, + 35;3; 0.000000, 0.826434, 0.000000;;, + 36;3; 0.000000, 0.826434, 0.000000;;, + 37;3; 0.000000, 0.826434, 0.000000;;, + 38;3; 0.000000, 0.826434, 0.000000;;, + 39;3; 0.000000, 0.826434, 0.000000;;, + 40;3; 0.000000, 0.826434, 0.000000;;, + 41;3; 0.000000, 0.826434, 0.000000;;, + 42;3; 0.000000, 0.826434, 0.000000;;, + 43;3; 0.000000, 0.826434, 0.000000;;, + 44;3; 0.000000, 0.826434, 0.000000;;, + 45;3; 0.000000, 0.826434, 0.000000;;, + 46;3; 0.000000, 0.826434, 0.000000;;, + 47;3; 0.000000, 0.826434, 0.000000;;, + 48;3; 0.000000, 0.826434, 0.000000;;, + 49;3; 0.000000, 0.826434, 0.000000;;, + 50;3; 0.000000, 0.826434, 0.000000;;, + 51;3; 0.000000, 0.826434, 0.000000;;, + 52;3; 0.000000, 0.826434, 0.000000;;, + 53;3; 0.000000, 0.826434, 0.000000;;, + 54;3; 0.000000, 0.826434, 0.000000;;, + 55;3; 0.000000, 0.826434, 0.000000;;, + 56;3; 0.000000, 0.826434, 0.000000;;, + 57;3; 0.000000, 0.826434, 0.000000;;, + 58;3; 0.000000, 0.826434, 0.000000;;, + 59;3; 0.000000, 0.826434, 0.000000;;, + 60;3; 0.000000, 0.826434, 0.000000;;, + 61;3; 0.000000, 0.826434, 0.000000;;, + 62;3; 0.000000, 0.826434, 0.000000;;, + 63;3; 0.000000, 0.826434, 0.000000;;, + 64;3; 0.000000, 0.826434, 0.000000;;, + 65;3; 0.000000, 0.826434, 0.000000;;, + 66;3; 0.000000, 0.826434, 0.000000;;, + 67;3; 0.000000, 0.826434, 0.000000;;, + 68;3; 0.000000, 0.826434, 0.000000;;, + 69;3; 0.000000, 0.826434, 0.000000;;, + 70;3; 0.000000, 0.826434, 0.000000;;, + 71;3; 0.000000, 0.826434, 0.000000;;, + 72;3; 0.000000, 0.826434, 0.000000;;, + 73;3; 0.000000, 0.826434, 0.000000;;, + 74;3; 0.000000, 0.826434, 0.000000;;, + 75;3; 0.000000, 0.826434, 0.000000;;, + 76;3; 0.000000, 0.826434, 0.000000;;, + 77;3; 0.000000, 0.826434, 0.000000;;, + 78;3; 0.000000, 0.826434, 0.000000;;, + 79;3; 0.000000, 0.826434, 0.000000;;, + 80;3; 0.000000, 0.826434, 0.000000;;, + 81;3; 0.000000, 0.826434, 0.000000;;, + 82;3; 0.000000, 0.826434, 0.000000;;, + 83;3; 0.000000, 0.826434, 0.000000;;, + 84;3; 0.000000, 0.826434, 0.000000;;, + 85;3; 0.000000, 0.826434, 0.000000;;, + 86;3; 0.000000, 0.826434, 0.000000;;, + 87;3; 0.000000, 0.826434, 0.000000;;, + 88;3; 0.000000, 0.826434, 0.000000;;, + 89;3; 0.000000, 0.826434, 0.000000;;, + 90;3; 0.000000, 0.826434, 0.000000;;, + 91;3; 0.000000, 0.826434, 0.000000;;, + 92;3; 0.000000, 0.826434, 0.000000;;, + 93;3; 0.000000, 0.826434, 0.000000;;, + 94;3; 0.000000, 0.826434, 0.000000;;, + 95;3; 0.000000, 0.826434, 0.000000;;, + 96;3; 0.000000, 0.826434, 0.000000;;, + 97;3; 0.000000, 0.826434, 0.000000;;, + 98;3; 0.000000, 0.826434, 0.000000;;, + 99;3; 0.000000, 0.826434, 0.000000;;, + 100;3; 0.000000, 0.826434, 0.000000;;, + 101;3; 0.000000, 0.826434, 0.000000;;, + 102;3; 0.000000, 0.826434, 0.000000;;, + 103;3; 0.000000, 0.826434, 0.000000;;, + 104;3; 0.000000, 0.826434, 0.000000;;, + 105;3; 0.000000, 0.826434, 0.000000;;, + 106;3; 0.000000, 0.826434, 0.000000;;, + 107;3; 0.000000, 0.826434, 0.000000;;, + 108;3; 0.000000, 0.826434, 0.000000;;, + 109;3; 0.000000, 0.826434, 0.000000;;, + 110;3; 0.000000, 0.826434, 0.000000;;, + 111;3; 0.000000, 0.826434, 0.000000;;, + 112;3; 0.000000, 0.826434, 0.000000;;, + 113;3; 0.000000, 0.826434, 0.000000;;, + 114;3; 0.000000, 0.826434, 0.000000;;, + 115;3; 0.000000, 0.826434, 0.000000;;, + 116;3; 0.000000, 0.826434, 0.000000;;, + 117;3; 0.000000, 0.826434, 0.000000;;, + 118;3; 0.000000, 0.826434, 0.000000;;, + 119;3; 0.000000, 0.826434, 0.000000;;, + 120;3; 0.000000, 0.826434, 0.000000;;, + 121;3; 0.000000, 0.826434, 0.000000;;, + 122;3; 0.000000, 0.826434, 0.000000;;, + 123;3; 0.000000, 0.826434, 0.000000;;, + 124;3; 0.000000, 0.826434, 0.000000;;, + 125;3; 0.000000, 0.826434, 0.000000;;, + 126;3; 0.000000, 0.826434, 0.000000;;, + 127;3; 0.000000, 0.826434, 0.000000;;, + 128;3; 0.000000, 0.826434, 0.000000;;, + 129;3; 0.000000, 0.826434, 0.000000;;, + 130;3; 0.000000, 0.826434, 0.000000;;, + 131;3; 0.000000, 0.826434, 0.000000;;, + 132;3; 0.000000, 0.826434, 0.000000;;, + 133;3; 0.000000, 0.826434, 0.000000;;, + 134;3; 0.000000, 0.826434, 0.000000;;, + 135;3; 0.000000, 0.826434, 0.000000;;, + 136;3; 0.000000, 0.826434, 0.000000;;, + 137;3; 0.000000, 0.826434, 0.000000;;, + 138;3; 0.000000, 0.826434, 0.000000;;, + 139;3; 0.000000, 0.826434, 0.000000;;, + 140;3; 0.000000, 0.826434, 0.000000;;, + 141;3; 0.000000, 0.826434, 0.000000;;, + 142;3; 0.000000, 0.826434, 0.000000;;, + 143;3; 0.000000, 0.826434, 0.000000;;, + 144;3; 0.000000, 0.826434, 0.000000;;, + 145;3; 0.000000, 0.826434, 0.000000;;, + 146;3; 0.000000, 0.826434, 0.000000;;, + 147;3; 0.000000, 0.826434, 0.000000;;, + 148;3; 0.000000, 0.826434, 0.000000;;, + 149;3; 0.000000, 0.826434, 0.000000;;, + 150;3; 0.000000, 0.826434, 0.000000;;, + 151;3; 0.000000, 0.826434, 0.000000;;, + 152;3; 0.000000, 0.826434, 0.000000;;, + 153;3; 0.000000, 0.826434, 0.000000;;, + 154;3; 0.000000, 0.826434, 0.000000;;, + 155;3; 0.000000, 0.826434, 0.000000;;, + 156;3; 0.000000, 0.826434, 0.000000;;, + 157;3; 0.000000, 0.826434, 0.000000;;, + 158;3; 0.000000, 0.826434, 0.000000;;, + 159;3; 0.000000, 0.826434, 0.000000;;, + 160;3; 0.000000, 0.826434, 0.000000;;, + 161;3; 0.000000, 0.826434, 0.000000;;, + 162;3; 0.000000, 0.826434, 0.000000;;, + 163;3; 0.000000, 0.826434, 0.000000;;, + 164;3; 0.000000, 0.826434, 0.000000;;, + 165;3; 0.000000, 0.826434, 0.000000;;, + 166;3; 0.000000, 0.826434, 0.000000;;, + 167;3; 0.000000, 0.826434, 0.000000;;, + 168;3; 0.000000, 0.826434, 0.000000;;, + 169;3; 0.000000, 0.826434, 0.000000;;, + 170;3; 0.000000, 0.826434, 0.000000;;, + 171;3; 0.000000, 0.826434, 0.000000;;, + 172;3; 0.000000, 0.826434, 0.000000;;, + 173;3; 0.000000, 0.826434, 0.000000;;, + 174;3; 0.000000, 0.826434, 0.000000;;, + 175;3; 0.000000, 0.826434, 0.000000;;, + 176;3; 0.000000, 0.826434, 0.000000;;, + 177;3; 0.000000, 0.826434, 0.000000;;, + 178;3; 0.000000, 0.826434, 0.000000;;, + 179;3; 0.000000, 0.826434, 0.000000;;, + 180;3; 0.000000, 0.826434, 0.000000;;, + 181;3; 0.000000, 0.826434, 0.000000;;, + 182;3; 0.000000, 0.826434, 0.000000;;, + 183;3; 0.000000, 0.826434, 0.000000;;, + 184;3; 0.000000, 0.826434, 0.000000;;, + 185;3; 0.000000, 0.826434, 0.000000;;, + 186;3;-0.000000, 0.826434,-0.000000;;, + 187;3;-0.000000, 0.826434,-0.000000;;, + 188;3;-0.000000, 0.826434, 0.000000;;, + 189;3;-0.000000, 0.826434, 0.000000;;, + 190;3;-0.000000, 0.826434,-0.000000;;, + 191;3; 0.000000, 0.826434, 0.000000;;, + 192;3; 0.000000, 0.826434, 0.000000;;, + 193;3; 0.000000, 0.826434, 0.000000;;, + 194;3; 0.000000, 0.826434,-0.000000;;, + 195;3; 0.000000, 0.826434,-0.000000;;, + 196;3; 0.000000, 0.826434, 0.000000;;, + 197;3; 0.000000, 0.826434,-0.000000;;, + 198;3; 0.000000, 0.826434,-0.000000;;, + 199;3; 0.000000, 0.826434, 0.000000;;, + 200;3; 0.000000, 0.826434, 0.000000;;, + 201;3; 0.000000, 0.826434, 0.000000;;, + 202;3; 0.000000, 0.826434, 0.000000;;, + 203;3; 0.000000, 0.826434, 0.000000;;, + 204;3; 0.000000, 0.826434, 0.000000;;, + 205;3; 0.000000, 0.826434, 0.000000;;, + 206;3; 0.000000, 0.826434, 0.000000;;, + 207;3; 0.000000, 0.826434, 0.000000;;, + 208;3; 0.000000, 0.826434, 0.000000;;, + 209;3; 0.000000, 0.826434, 0.000000;;, + 210;3; 0.000000, 0.826434, 0.000000;;, + 211;3; 0.000000, 0.826434, 0.000000;;, + 212;3; 0.000000, 0.826434, 0.000000;;, + 213;3; 0.000000, 0.826434, 0.000000;;, + 214;3; 0.000000, 0.826434, 0.000000;;, + 215;3; 0.000000, 0.826434, 0.000000;;, + 216;3; 0.000000, 0.826434, 0.000000;;, + 217;3; 0.000000, 0.826434, 0.000000;;, + 218;3; 0.000000, 0.826434, 0.000000;;, + 219;3; 0.000000, 0.826434, 0.000000;;, + 220;3; 0.000000, 0.826434, 0.000000;;, + 221;3; 0.000000, 0.826434, 0.000000;;, + 222;3; 0.000000, 0.826434, 0.000000;;, + 223;3; 0.000000, 0.826434, 0.000000;;, + 224;3; 0.000000, 0.826434, 0.000000;;, + 225;3; 0.000000, 0.826434, 0.000000;;, + 226;3; 0.000000, 0.826434, 0.000000;;, + 227;3; 0.000000, 0.826434, 0.000000;;, + 228;3; 0.000000, 0.826434, 0.000000;;, + 229;3; 0.000000, 0.826434, 0.000000;;, + 230;3; 0.000000, 0.826434, 0.000000;;, + 231;3; 0.000000, 0.826434, 0.000000;;, + 232;3; 0.000000, 0.826434, 0.000000;;, + 233;3; 0.000000, 0.826434, 0.000000;;, + 234;3; 0.000000, 0.826434, 0.000000;;, + 235;3; 0.000000, 0.826434, 0.000000;;, + 236;3; 0.000000, 0.826434, 0.000000;;, + 237;3; 0.000000, 0.826434, 0.000000;;, + 238;3; 0.000000, 0.826434, 0.000000;;, + 239;3; 0.000000, 0.826434, 0.000000;;, + 240;3; 0.000000, 0.826434, 0.000000;;, + 241;3; 0.000000, 0.826434, 0.000000;;, + 242;3; 0.000000, 0.826434, 0.000000;;, + 243;3; 0.000000, 0.826434, 0.000000;;, + 244;3; 0.000000, 0.826434, 0.000000;;, + 245;3; 0.000000, 0.826434, 0.000000;;, + 246;3; 0.000000, 0.826434, 0.000000;;, + 247;3; 0.000000, 0.826434, 0.000000;;, + 248;3; 0.000000, 0.826434, 0.000000;;, + 249;3; 0.000000, 0.826434, 0.000000;;; + } + } + Animation { + {Armature_Bone_018} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 1;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 2;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 3;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 4;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 5;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 6;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 7;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 8;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 9;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 10;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 11;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 12;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 13;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 14;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 15;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 16;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 17;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 18;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 19;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 20;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 21;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 22;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 23;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 24;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 25;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 26;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 27;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 28;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 29;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 30;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 31;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 32;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 33;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 34;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 35;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 36;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 37;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 38;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 39;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 40;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 41;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 42;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 43;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 44;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 45;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 46;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 47;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 48;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 49;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 50;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 51;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 52;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 53;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 54;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 55;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 56;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 57;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 58;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 59;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 60;4;-0.941928, 0.110942, 0.038431, 0.314618;;, + 61;4;-0.941940, 0.110822, 0.038332, 0.314629;;, + 62;4;-0.941959, 0.110622, 0.038166, 0.314647;;, + 63;4;-0.941986, 0.110341, 0.037932, 0.314672;;, + 64;4;-0.942020, 0.109980, 0.037631, 0.314704;;, + 65;4;-0.942063, 0.109538, 0.037263, 0.314744;;, + 66;4;-0.942113, 0.109016, 0.036829, 0.314790;;, + 67;4;-0.942170, 0.108416, 0.036330, 0.314844;;, + 68;4;-0.942235, 0.107740, 0.035767, 0.314904;;, + 69;4;-0.942307, 0.106990, 0.035144, 0.314971;;, + 70;4;-0.942385, 0.106171, 0.034462, 0.315044;;, + 71;4;-0.942470, 0.105285, 0.033725, 0.315123;;, + 72;4;-0.942561, 0.104338, 0.032937, 0.315207;;, + 73;4;-0.942657, 0.103336, 0.032103, 0.315297;;, + 74;4;-0.942758, 0.102284, 0.031228, 0.315391;;, + 75;4;-0.942862, 0.101190, 0.030317, 0.315488;;, + 76;4;-0.942971, 0.100062, 0.029378, 0.315589;;, + 77;4;-0.943081, 0.098907, 0.028417, 0.315692;;, + 78;4;-0.943194, 0.097733, 0.027441, 0.315797;;, + 79;4;-0.943307, 0.096551, 0.026457, 0.315902;;, + 80;4;-0.943420, 0.095369, 0.025474, 0.316008;;, + 81;4;-0.943533, 0.094196, 0.024498, 0.316112;;, + 82;4;-0.943643, 0.093041, 0.023537, 0.316215;;, + 83;4;-0.943751, 0.091913, 0.022598, 0.316316;;, + 84;4;-0.943856, 0.090819, 0.021687, 0.316414;;, + 85;4;-0.943957, 0.089767, 0.020812, 0.316507;;, + 86;4;-0.944053, 0.088764, 0.019978, 0.316597;;, + 87;4;-0.944144, 0.087818, 0.019190, 0.316681;;, + 88;4;-0.944229, 0.086932, 0.018453, 0.316760;;, + 89;4;-0.944307, 0.086112, 0.017771, 0.316833;;, + 90;4;-0.944379, 0.085363, 0.017148, 0.316900;;, + 91;4;-0.944444, 0.084687, 0.016585, 0.316961;;, + 92;4;-0.944501, 0.084087, 0.016086, 0.317014;;, + 93;4;-0.944551, 0.083565, 0.015652, 0.317061;;, + 94;4;-0.944594, 0.083123, 0.015284, 0.317100;;, + 95;4;-0.944628, 0.082761, 0.014983, 0.317132;;, + 96;4;-0.944655, 0.082481, 0.014749, 0.317157;;, + 97;4;-0.944674, 0.082281, 0.014583, 0.317175;;, + 98;4;-0.944686, 0.082161, 0.014484, 0.317186;;, + 99;4;-0.944690, 0.082122, 0.014451, 0.317189;;, + 100;4;-0.944432, 0.083307, 0.015445, 0.317035;;, + 101;4;-0.943634, 0.086989, 0.018534, 0.316554;;, + 102;4;-0.942277, 0.093244, 0.023782, 0.315738;;, + 103;4;-0.940398, 0.101913, 0.031054, 0.314608;;, + 104;4;-0.938096, 0.112526, 0.039958, 0.313223;;, + 105;4;-0.935535, 0.124332, 0.049863, 0.311683;;, + 106;4;-0.932904, 0.136463, 0.060039, 0.310101;;, + 107;4;-0.930373, 0.148134, 0.069831, 0.308578;;, + 108;4;-0.928063, 0.158788, 0.078769, 0.307188;;, + 109;4;-0.926042, 0.168107, 0.086587, 0.305973;;, + 110;4;-0.924160, 0.176978, 0.094533, 0.304717;;, + 111;4;-0.922248, 0.186352, 0.103834, 0.303215;;, + 112;4;-0.920311, 0.196111, 0.114169, 0.301523;;, + 113;4;-0.918365, 0.206043, 0.124970, 0.299746;;, + 114;4;-0.916425, 0.215853, 0.135442, 0.298029;;, + 115;4;-0.914514, 0.225212, 0.144702, 0.296534;;, + 116;4;-0.912647, 0.233837, 0.151987, 0.295400;;, + 117;4;-0.910837, 0.241551, 0.156820, 0.294712;;, + 118;4;-0.909086, 0.248293, 0.159040, 0.294503;;, + 119;4;-0.907394, 0.254092, 0.158723, 0.294756;;, + 120;4;-0.905553, 0.259730, 0.157099, 0.295339;;, + 121;4;-0.903387, 0.265840, 0.155180, 0.296157;;, + 122;4;-0.900973, 0.272188, 0.152815, 0.297224;;, + 123;4;-0.898447, 0.278414, 0.149831, 0.298534;;, + 124;4;-0.896001, 0.284057, 0.146068, 0.300052;;, + 125;4;-0.893846, 0.288647, 0.141426, 0.301716;;, + 126;4;-0.892165, 0.291820, 0.135893, 0.303451;;, + 127;4;-0.891073, 0.293391, 0.129539, 0.305183;;, + 128;4;-0.890609, 0.293354, 0.122486, 0.306856;;, + 129;4;-0.890754, 0.291818, 0.114871, 0.308437;;, + 130;4;-0.892324, 0.285246, 0.105875, 0.309949;;, + 131;4;-0.896171, 0.269979, 0.094684, 0.311406;;, + 132;4;-0.902140, 0.246623, 0.081650, 0.312772;;, + 133;4;-0.909790, 0.216887, 0.067466, 0.314002;;, + 134;4;-0.918357, 0.183703, 0.053164, 0.315051;;, + 135;4;-0.926865, 0.150830, 0.039952, 0.315887;;, + 136;4;-0.934340, 0.121992, 0.028929, 0.316501;;, + 137;4;-0.940035, 0.100041, 0.020842, 0.316905;;, + 138;4;-0.943530, 0.086583, 0.016018, 0.317123;;, + 139;4;-0.944690, 0.082122, 0.014451, 0.317189;;, + 140;4;-0.943634, 0.086989, 0.018534, 0.316554;;, + 141;4;-0.940398, 0.101913, 0.031054, 0.314608;;, + 142;4;-0.935535, 0.124332, 0.049863, 0.311683;;, + 143;4;-0.930373, 0.148134, 0.069831, 0.308578;;, + 144;4;-0.926042, 0.168107, 0.086587, 0.305973;;, + 145;4;-0.922248, 0.186352, 0.103834, 0.303215;;, + 146;4;-0.918365, 0.206043, 0.124970, 0.299746;;, + 147;4;-0.914514, 0.225212, 0.144702, 0.296534;;, + 148;4;-0.910837, 0.241551, 0.156820, 0.294712;;, + 149;4;-0.907394, 0.254092, 0.158723, 0.294756;;, + 150;4;-0.903387, 0.265840, 0.155180, 0.296157;;, + 151;4;-0.898447, 0.278414, 0.149831, 0.298534;;, + 152;4;-0.893846, 0.288647, 0.141426, 0.301716;;, + 153;4;-0.891073, 0.293391, 0.129539, 0.305183;;, + 154;4;-0.890754, 0.291818, 0.114871, 0.308437;;, + 155;4;-0.896171, 0.269979, 0.094684, 0.311406;;, + 156;4;-0.909790, 0.216887, 0.067466, 0.314002;;, + 157;4;-0.926865, 0.150830, 0.039952, 0.315887;;, + 158;4;-0.940035, 0.100041, 0.020842, 0.316905;;, + 159;4;-0.944690, 0.082122, 0.014451, 0.317189;;, + 160;4;-0.944679, 0.082151, 0.014546, 0.317192;;, + 161;4;-0.944647, 0.082247, 0.014837, 0.317199;;, + 162;4;-0.944593, 0.082426, 0.015330, 0.317208;;, + 163;4;-0.944517, 0.082706, 0.016025, 0.317218;;, + 164;4;-0.944418, 0.083105, 0.016921, 0.317224;;, + 165;4;-0.944298, 0.083643, 0.018010, 0.317223;;, + 166;4;-0.944157, 0.084341, 0.019278, 0.317211;;, + 167;4;-0.943998, 0.085217, 0.020705, 0.317185;;, + 168;4;-0.943824, 0.086288, 0.022262, 0.317138;;, + 169;4;-0.943638, 0.087566, 0.023917, 0.317068;;, + 170;4;-0.943444, 0.089058, 0.025633, 0.316970;;, + 171;4;-0.943247, 0.090767, 0.027370, 0.316841;;, + 172;4;-0.943049, 0.092688, 0.029092, 0.316679;;, + 173;4;-0.942856, 0.094812, 0.030764, 0.316482;;, + 174;4;-0.942670, 0.097126, 0.032355, 0.316251;;, + 175;4;-0.942495, 0.099615, 0.033842, 0.315986;;, + 176;4;-0.942331, 0.102262, 0.035206, 0.315688;;, + 177;4;-0.942181, 0.105050, 0.036436, 0.315359;;, + 178;4;-0.942045, 0.107962, 0.037523, 0.315000;;, + 179;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 180;4;-0.943177, 0.114691, 0.038923, 0.308242;;, + 181;4;-0.947108, 0.119663, 0.038608, 0.289529;;, + 182;4;-0.953421, 0.125770, 0.037664, 0.258565;;, + 183;4;-0.961440, 0.132711, 0.036363, 0.216762;;, + 184;4;-0.970093, 0.139998, 0.035102, 0.167139;;, + 185;4;-0.978076, 0.147035, 0.034336, 0.114020;;, + 186;4;-0.984151, 0.153246, 0.034469, 0.062082;;, + 187;4;-0.987422, 0.158213, 0.035767, 0.015261;;, + 188;4;-0.987439, 0.161717, 0.038339,-0.023862;;, + 189;4;-0.984123, 0.163713, 0.042166,-0.054048;;, + 190;4;-0.978817, 0.138808, 0.058118,-0.080008;;, + 191;4;-0.973197, 0.066281, 0.094695,-0.104867;;, + 192;4;-0.968320,-0.027438, 0.139563,-0.124679;;, + 193;4;-0.965252,-0.100614, 0.173854,-0.136337;;, + 194;4;-0.964286,-0.126625, 0.185918,-0.139835;;, + 195;4;-0.962298,-0.105504, 0.172811,-0.099439;;, + 196;4;-0.956699,-0.046014, 0.135892, 0.014343;;, + 197;4;-0.949511, 0.030371, 0.088490, 0.160437;;, + 198;4;-0.943912, 0.089861, 0.051571, 0.274219;;, + 199;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 200;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 201;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 202;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 203;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 204;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 205;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 206;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 207;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 208;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 209;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 210;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 211;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 212;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 213;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 214;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 215;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 216;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 217;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 218;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 219;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 220;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 221;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 222;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 223;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 224;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 225;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 226;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 227;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 228;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 229;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 230;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 231;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 232;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 233;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 234;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 235;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 236;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 237;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 238;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 239;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 240;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 241;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 242;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 243;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 244;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 245;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 246;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 247;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 248;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 249;4;-0.941924, 0.110981, 0.038464, 0.314615;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3;-0.000000, 0.680634,-0.000000;;, + 1;3;-0.000000, 0.680634,-0.000000;;, + 2;3;-0.000000, 0.680634,-0.000000;;, + 3;3;-0.000000, 0.680634,-0.000000;;, + 4;3;-0.000000, 0.680634,-0.000000;;, + 5;3;-0.000000, 0.680634,-0.000000;;, + 6;3;-0.000000, 0.680634,-0.000000;;, + 7;3;-0.000000, 0.680634,-0.000000;;, + 8;3;-0.000000, 0.680634,-0.000000;;, + 9;3;-0.000000, 0.680634,-0.000000;;, + 10;3;-0.000000, 0.680634,-0.000000;;, + 11;3;-0.000000, 0.680634,-0.000000;;, + 12;3;-0.000000, 0.680634,-0.000000;;, + 13;3;-0.000000, 0.680634,-0.000000;;, + 14;3;-0.000000, 0.680634,-0.000000;;, + 15;3;-0.000000, 0.680634,-0.000000;;, + 16;3;-0.000000, 0.680634,-0.000000;;, + 17;3;-0.000000, 0.680634,-0.000000;;, + 18;3;-0.000000, 0.680634,-0.000000;;, + 19;3;-0.000000, 0.680634,-0.000000;;, + 20;3;-0.000000, 0.680634,-0.000000;;, + 21;3;-0.000000, 0.680634,-0.000000;;, + 22;3;-0.000000, 0.680634,-0.000000;;, + 23;3;-0.000000, 0.680634,-0.000000;;, + 24;3;-0.000000, 0.680634,-0.000000;;, + 25;3;-0.000000, 0.680634,-0.000000;;, + 26;3;-0.000000, 0.680634,-0.000000;;, + 27;3;-0.000000, 0.680634,-0.000000;;, + 28;3;-0.000000, 0.680634,-0.000000;;, + 29;3;-0.000000, 0.680634,-0.000000;;, + 30;3;-0.000000, 0.680634,-0.000000;;, + 31;3;-0.000000, 0.680634,-0.000000;;, + 32;3;-0.000000, 0.680634,-0.000000;;, + 33;3;-0.000000, 0.680634,-0.000000;;, + 34;3;-0.000000, 0.680634,-0.000000;;, + 35;3;-0.000000, 0.680634,-0.000000;;, + 36;3;-0.000000, 0.680634,-0.000000;;, + 37;3;-0.000000, 0.680634,-0.000000;;, + 38;3;-0.000000, 0.680634,-0.000000;;, + 39;3;-0.000000, 0.680634,-0.000000;;, + 40;3;-0.000000, 0.680634,-0.000000;;, + 41;3;-0.000000, 0.680634,-0.000000;;, + 42;3;-0.000000, 0.680634,-0.000000;;, + 43;3;-0.000000, 0.680634,-0.000000;;, + 44;3;-0.000000, 0.680634,-0.000000;;, + 45;3;-0.000000, 0.680634,-0.000000;;, + 46;3;-0.000000, 0.680634,-0.000000;;, + 47;3;-0.000000, 0.680634,-0.000000;;, + 48;3;-0.000000, 0.680634,-0.000000;;, + 49;3;-0.000000, 0.680634,-0.000000;;, + 50;3;-0.000000, 0.680634,-0.000000;;, + 51;3;-0.000000, 0.680634,-0.000000;;, + 52;3;-0.000000, 0.680634,-0.000000;;, + 53;3;-0.000000, 0.680634,-0.000000;;, + 54;3;-0.000000, 0.680634,-0.000000;;, + 55;3;-0.000000, 0.680634,-0.000000;;, + 56;3;-0.000000, 0.680634,-0.000000;;, + 57;3;-0.000000, 0.680634,-0.000000;;, + 58;3;-0.000000, 0.680634,-0.000000;;, + 59;3;-0.000000, 0.680634,-0.000000;;, + 60;3;-0.000000, 0.680634,-0.000000;;, + 61;3;-0.000000, 0.680634,-0.000000;;, + 62;3;-0.000000, 0.680634,-0.000000;;, + 63;3;-0.000000, 0.680634,-0.000000;;, + 64;3;-0.000000, 0.680634,-0.000000;;, + 65;3;-0.000000, 0.680634,-0.000000;;, + 66;3;-0.000000, 0.680634,-0.000000;;, + 67;3;-0.000000, 0.680634,-0.000000;;, + 68;3;-0.000000, 0.680634,-0.000000;;, + 69;3;-0.000000, 0.680634,-0.000000;;, + 70;3;-0.000000, 0.680634,-0.000000;;, + 71;3;-0.000000, 0.680634,-0.000000;;, + 72;3;-0.000000, 0.680634,-0.000000;;, + 73;3;-0.000000, 0.680634,-0.000000;;, + 74;3;-0.000000, 0.680634,-0.000000;;, + 75;3;-0.000000, 0.680634,-0.000000;;, + 76;3;-0.000000, 0.680634,-0.000000;;, + 77;3;-0.000000, 0.680634,-0.000000;;, + 78;3;-0.000000, 0.680634,-0.000000;;, + 79;3;-0.000000, 0.680634,-0.000000;;, + 80;3;-0.000000, 0.680634,-0.000000;;, + 81;3;-0.000000, 0.680634,-0.000000;;, + 82;3;-0.000000, 0.680634,-0.000000;;, + 83;3;-0.000000, 0.680634,-0.000000;;, + 84;3;-0.000000, 0.680634,-0.000000;;, + 85;3;-0.000000, 0.680634,-0.000000;;, + 86;3;-0.000000, 0.680634,-0.000000;;, + 87;3;-0.000000, 0.680634,-0.000000;;, + 88;3;-0.000000, 0.680634,-0.000000;;, + 89;3;-0.000000, 0.680634,-0.000000;;, + 90;3;-0.000000, 0.680634,-0.000000;;, + 91;3;-0.000000, 0.680634,-0.000000;;, + 92;3;-0.000000, 0.680634,-0.000000;;, + 93;3;-0.000000, 0.680634,-0.000000;;, + 94;3;-0.000000, 0.680634,-0.000000;;, + 95;3;-0.000000, 0.680634,-0.000000;;, + 96;3;-0.000000, 0.680634,-0.000000;;, + 97;3;-0.000000, 0.680634,-0.000000;;, + 98;3;-0.000000, 0.680634,-0.000000;;, + 99;3;-0.000000, 0.680634,-0.000000;;, + 100;3;-0.000000, 0.680634,-0.000000;;, + 101;3;-0.000000, 0.680634,-0.000000;;, + 102;3;-0.000000, 0.680634,-0.000000;;, + 103;3;-0.000000, 0.680634,-0.000000;;, + 104;3;-0.000000, 0.680634,-0.000000;;, + 105;3;-0.000000, 0.680634,-0.000000;;, + 106;3;-0.000000, 0.680634,-0.000000;;, + 107;3;-0.000000, 0.680634,-0.000000;;, + 108;3;-0.000000, 0.680634,-0.000000;;, + 109;3;-0.000000, 0.680634,-0.000000;;, + 110;3;-0.000000, 0.680634,-0.000000;;, + 111;3;-0.000000, 0.680634,-0.000000;;, + 112;3;-0.000000, 0.680634,-0.000000;;, + 113;3;-0.000000, 0.680634,-0.000000;;, + 114;3;-0.000000, 0.680634,-0.000000;;, + 115;3;-0.000000, 0.680634,-0.000000;;, + 116;3;-0.000000, 0.680634,-0.000000;;, + 117;3;-0.000000, 0.680634,-0.000000;;, + 118;3;-0.000000, 0.680634,-0.000000;;, + 119;3;-0.000000, 0.680634,-0.000000;;, + 120;3;-0.000000, 0.680634,-0.000000;;, + 121;3;-0.000000, 0.680634,-0.000000;;, + 122;3;-0.000000, 0.680634,-0.000000;;, + 123;3;-0.000000, 0.680634,-0.000000;;, + 124;3;-0.000000, 0.680634,-0.000000;;, + 125;3;-0.000000, 0.680634,-0.000000;;, + 126;3;-0.000000, 0.680634,-0.000000;;, + 127;3;-0.000000, 0.680634,-0.000000;;, + 128;3;-0.000000, 0.680634,-0.000000;;, + 129;3;-0.000000, 0.680634,-0.000000;;, + 130;3;-0.000000, 0.680634,-0.000000;;, + 131;3;-0.000000, 0.680634,-0.000000;;, + 132;3;-0.000000, 0.680634,-0.000000;;, + 133;3;-0.000000, 0.680634,-0.000000;;, + 134;3;-0.000000, 0.680634,-0.000000;;, + 135;3;-0.000000, 0.680634,-0.000000;;, + 136;3;-0.000000, 0.680634,-0.000000;;, + 137;3;-0.000000, 0.680634,-0.000000;;, + 138;3;-0.000000, 0.680634,-0.000000;;, + 139;3;-0.000000, 0.680634,-0.000000;;, + 140;3;-0.000000, 0.680634,-0.000000;;, + 141;3;-0.000000, 0.680634,-0.000000;;, + 142;3;-0.000000, 0.680634,-0.000000;;, + 143;3;-0.000000, 0.680634,-0.000000;;, + 144;3;-0.000000, 0.680634,-0.000000;;, + 145;3;-0.000000, 0.680634,-0.000000;;, + 146;3;-0.000000, 0.680634,-0.000000;;, + 147;3;-0.000000, 0.680634,-0.000000;;, + 148;3;-0.000000, 0.680634,-0.000000;;, + 149;3;-0.000000, 0.680634,-0.000000;;, + 150;3;-0.000000, 0.680634,-0.000000;;, + 151;3;-0.000000, 0.680634,-0.000000;;, + 152;3;-0.000000, 0.680634,-0.000000;;, + 153;3;-0.000000, 0.680634,-0.000000;;, + 154;3;-0.000000, 0.680634,-0.000000;;, + 155;3;-0.000000, 0.680634,-0.000000;;, + 156;3;-0.000000, 0.680634,-0.000000;;, + 157;3;-0.000000, 0.680634,-0.000000;;, + 158;3;-0.000000, 0.680634,-0.000000;;, + 159;3;-0.000000, 0.680634,-0.000000;;, + 160;3;-0.000000, 0.680634,-0.000000;;, + 161;3;-0.000000, 0.680634,-0.000000;;, + 162;3;-0.000000, 0.680634,-0.000000;;, + 163;3;-0.000000, 0.680634,-0.000000;;, + 164;3;-0.000000, 0.680634,-0.000000;;, + 165;3;-0.000000, 0.680634,-0.000000;;, + 166;3;-0.000000, 0.680634,-0.000000;;, + 167;3;-0.000000, 0.680634,-0.000000;;, + 168;3;-0.000000, 0.680634,-0.000000;;, + 169;3;-0.000000, 0.680634,-0.000000;;, + 170;3;-0.000000, 0.680634,-0.000000;;, + 171;3;-0.000000, 0.680634,-0.000000;;, + 172;3;-0.000000, 0.680634,-0.000000;;, + 173;3;-0.000000, 0.680634,-0.000000;;, + 174;3;-0.000000, 0.680634,-0.000000;;, + 175;3;-0.000000, 0.680634,-0.000000;;, + 176;3;-0.000000, 0.680634,-0.000000;;, + 177;3;-0.000000, 0.680634,-0.000000;;, + 178;3;-0.000000, 0.680634,-0.000000;;, + 179;3;-0.000000, 0.680634,-0.000000;;, + 180;3;-0.000000, 0.680634,-0.000000;;, + 181;3; 0.000000, 0.680634,-0.000000;;, + 182;3;-0.000000, 0.680634,-0.000000;;, + 183;3;-0.000000, 0.680634,-0.000000;;, + 184;3;-0.000000, 0.680634,-0.000000;;, + 185;3;-0.000000, 0.680634, 0.000000;;, + 186;3; 0.000000, 0.680634,-0.000000;;, + 187;3; 0.000000, 0.680634,-0.000000;;, + 188;3;-0.000000, 0.680634, 0.000000;;, + 189;3; 0.000000, 0.680634,-0.000000;;, + 190;3;-0.000000, 0.680634,-0.000000;;, + 191;3; 0.000001, 0.680634, 0.000000;;, + 192;3; 0.000000, 0.680634,-0.000000;;, + 193;3; 0.000000, 0.680634,-0.000000;;, + 194;3; 0.000000, 0.680634,-0.000000;;, + 195;3;-0.000000, 0.680634, 0.000000;;, + 196;3; 0.000000, 0.680634,-0.000000;;, + 197;3; 0.000000, 0.680634,-0.000000;;, + 198;3;-0.000000, 0.680634,-0.000000;;, + 199;3;-0.000000, 0.680634,-0.000000;;, + 200;3;-0.000000, 0.680634,-0.000000;;, + 201;3;-0.000000, 0.680634,-0.000000;;, + 202;3;-0.000000, 0.680634,-0.000000;;, + 203;3;-0.000000, 0.680634,-0.000000;;, + 204;3;-0.000000, 0.680634,-0.000000;;, + 205;3;-0.000000, 0.680634,-0.000000;;, + 206;3;-0.000000, 0.680634,-0.000000;;, + 207;3;-0.000000, 0.680634,-0.000000;;, + 208;3;-0.000000, 0.680634,-0.000000;;, + 209;3;-0.000000, 0.680634,-0.000000;;, + 210;3;-0.000000, 0.680634,-0.000000;;, + 211;3;-0.000000, 0.680634,-0.000000;;, + 212;3;-0.000000, 0.680634,-0.000000;;, + 213;3;-0.000000, 0.680634,-0.000000;;, + 214;3;-0.000000, 0.680634,-0.000000;;, + 215;3;-0.000000, 0.680634,-0.000000;;, + 216;3;-0.000000, 0.680634,-0.000000;;, + 217;3;-0.000000, 0.680634,-0.000000;;, + 218;3;-0.000000, 0.680634,-0.000000;;, + 219;3;-0.000000, 0.680634,-0.000000;;, + 220;3;-0.000000, 0.680634,-0.000000;;, + 221;3;-0.000000, 0.680634,-0.000000;;, + 222;3;-0.000000, 0.680634,-0.000000;;, + 223;3;-0.000000, 0.680634,-0.000000;;, + 224;3;-0.000000, 0.680634,-0.000000;;, + 225;3;-0.000000, 0.680634,-0.000000;;, + 226;3;-0.000000, 0.680634,-0.000000;;, + 227;3;-0.000000, 0.680634,-0.000000;;, + 228;3;-0.000000, 0.680634,-0.000000;;, + 229;3;-0.000000, 0.680634,-0.000000;;, + 230;3;-0.000000, 0.680634,-0.000000;;, + 231;3;-0.000000, 0.680634,-0.000000;;, + 232;3;-0.000000, 0.680634,-0.000000;;, + 233;3;-0.000000, 0.680634,-0.000000;;, + 234;3;-0.000000, 0.680634,-0.000000;;, + 235;3;-0.000000, 0.680634,-0.000000;;, + 236;3;-0.000000, 0.680634,-0.000000;;, + 237;3;-0.000000, 0.680634,-0.000000;;, + 238;3;-0.000000, 0.680634,-0.000000;;, + 239;3;-0.000000, 0.680634,-0.000000;;, + 240;3;-0.000000, 0.680634,-0.000000;;, + 241;3;-0.000000, 0.680634,-0.000000;;, + 242;3;-0.000000, 0.680634,-0.000000;;, + 243;3;-0.000000, 0.680634,-0.000000;;, + 244;3;-0.000000, 0.680634,-0.000000;;, + 245;3;-0.000000, 0.680634,-0.000000;;, + 246;3;-0.000000, 0.680634,-0.000000;;, + 247;3;-0.000000, 0.680634,-0.000000;;, + 248;3;-0.000000, 0.680634,-0.000000;;, + 249;3;-0.000000, 0.680634,-0.000000;;; + } + } + Animation { + {Armature_Bone_022} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 1;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 2;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 3;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 4;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 5;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 6;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 7;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 8;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 9;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 10;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 11;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 12;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 13;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 14;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 15;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 16;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 17;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 18;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 19;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 20;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 21;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 22;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 23;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 24;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 25;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 26;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 27;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 28;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 29;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 30;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 31;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 32;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 33;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 34;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 35;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 36;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 37;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 38;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 39;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 40;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 41;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 42;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 43;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 44;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 45;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 46;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 47;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 48;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 49;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 50;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 51;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 52;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 53;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 54;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 55;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 56;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 57;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 58;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 59;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 60;4;-0.971886,-0.235439, 0.000032, 0.000000;;, + 61;4;-0.971936,-0.235196, 0.000129, 0.000001;;, + 62;4;-0.972020,-0.234788, 0.000292, 0.000003;;, + 63;4;-0.972138,-0.234216, 0.000520, 0.000005;;, + 64;4;-0.972290,-0.233478, 0.000813, 0.000007;;, + 65;4;-0.972476,-0.232577, 0.001172, 0.000011;;, + 66;4;-0.972695,-0.231513, 0.001596, 0.000014;;, + 67;4;-0.972947,-0.230290, 0.002083, 0.000019;;, + 68;4;-0.973231,-0.228911, 0.002632, 0.000024;;, + 69;4;-0.973545,-0.227383, 0.003241, 0.000029;;, + 70;4;-0.973890,-0.225712, 0.003906, 0.000035;;, + 71;4;-0.974262,-0.223906, 0.004625, 0.000042;;, + 72;4;-0.974659,-0.221976, 0.005394, 0.000049;;, + 73;4;-0.975080,-0.219932, 0.006208, 0.000056;;, + 74;4;-0.975522,-0.217788, 0.007062, 0.000064;;, + 75;4;-0.975981,-0.215557, 0.007950, 0.000072;;, + 76;4;-0.976455,-0.213256, 0.008867, 0.000080;;, + 77;4;-0.976940,-0.210901, 0.009805, 0.000089;;, + 78;4;-0.977433,-0.208509, 0.010757, 0.000097;;, + 79;4;-0.977929,-0.206099, 0.011717, 0.000106;;, + 80;4;-0.978426,-0.203689, 0.012677, 0.000115;;, + 81;4;-0.978919,-0.201298, 0.013629, 0.000123;;, + 82;4;-0.979404,-0.198942, 0.014567, 0.000132;;, + 83;4;-0.979878,-0.196641, 0.015484, 0.000140;;, + 84;4;-0.980337,-0.194411, 0.016372, 0.000148;;, + 85;4;-0.980779,-0.192266, 0.017226, 0.000156;;, + 86;4;-0.981200,-0.190223, 0.018040, 0.000163;;, + 87;4;-0.981597,-0.188292, 0.018809, 0.000170;;, + 88;4;-0.981969,-0.186486, 0.019528, 0.000177;;, + 89;4;-0.982314,-0.184815, 0.020193, 0.000183;;, + 90;4;-0.982628,-0.183287, 0.020802, 0.000188;;, + 91;4;-0.982912,-0.181909, 0.021351, 0.000193;;, + 92;4;-0.983164,-0.180686, 0.021838, 0.000197;;, + 93;4;-0.983383,-0.179622, 0.022262, 0.000201;;, + 94;4;-0.983569,-0.178720, 0.022621, 0.000205;;, + 95;4;-0.983721,-0.177983, 0.022914, 0.000207;;, + 96;4;-0.983839,-0.177410, 0.023142, 0.000209;;, + 97;4;-0.983923,-0.177003, 0.023305, 0.000211;;, + 98;4;-0.983973,-0.176759, 0.023402, 0.000212;;, + 99;4;-0.983990,-0.176678, 0.023434, 0.000212;;, + 100;4;-0.983267,-0.178677, 0.022609, 0.000204;;, + 101;4;-0.981024,-0.184884, 0.020049, 0.000181;;, + 102;4;-0.977214,-0.195430, 0.015698, 0.000142;;, + 103;4;-0.971933,-0.210044, 0.009669, 0.000087;;, + 104;4;-0.965467,-0.227936, 0.002288, 0.000021;;, + 105;4;-0.958274,-0.247841,-0.005923,-0.000054;;, + 106;4;-0.950885,-0.268291,-0.014360,-0.000130;;, + 107;4;-0.943774,-0.287968,-0.022477,-0.000203;;, + 108;4;-0.937284,-0.305928,-0.029886,-0.000270;;, + 109;4;-0.931607,-0.321640,-0.036368,-0.000329;;, + 110;4;-0.925929,-0.337351,-0.042849,-0.000388;;, + 111;4;-0.919439,-0.355312,-0.050259,-0.000455;;, + 112;4;-0.912329,-0.374988,-0.058376,-0.000528;;, + 113;4;-0.904939,-0.395439,-0.066812,-0.000604;;, + 114;4;-0.897746,-0.415344,-0.075024,-0.000678;;, + 115;4;-0.891281,-0.433236,-0.082405,-0.000745;;, + 116;4;-0.885999,-0.447850,-0.088434,-0.000800;;, + 117;4;-0.882189,-0.458395,-0.092784,-0.000839;;, + 118;4;-0.879946,-0.464603,-0.095345,-0.000862;;, + 119;4;-0.879224,-0.466601,-0.096169,-0.000870;;, + 120;4;-0.879946,-0.464603,-0.095345,-0.000862;;, + 121;4;-0.882189,-0.458395,-0.092784,-0.000839;;, + 122;4;-0.885999,-0.447850,-0.088434,-0.000800;;, + 123;4;-0.891280,-0.433236,-0.082405,-0.000745;;, + 124;4;-0.897746,-0.415344,-0.075024,-0.000678;;, + 125;4;-0.904939,-0.395439,-0.066812,-0.000604;;, + 126;4;-0.912329,-0.374988,-0.058376,-0.000528;;, + 127;4;-0.919439,-0.355312,-0.050259,-0.000455;;, + 128;4;-0.925929,-0.337351,-0.042849,-0.000388;;, + 129;4;-0.931607,-0.321640,-0.036368,-0.000329;;, + 130;4;-0.937284,-0.305928,-0.029886,-0.000270;;, + 131;4;-0.943774,-0.287968,-0.022477,-0.000203;;, + 132;4;-0.950885,-0.268291,-0.014360,-0.000130;;, + 133;4;-0.958274,-0.247841,-0.005923,-0.000054;;, + 134;4;-0.965467,-0.227936, 0.002288, 0.000021;;, + 135;4;-0.971933,-0.210044, 0.009669, 0.000087;;, + 136;4;-0.977214,-0.195430, 0.015698, 0.000142;;, + 137;4;-0.981024,-0.184884, 0.020049, 0.000181;;, + 138;4;-0.983267,-0.178677, 0.022609, 0.000204;;, + 139;4;-0.983990,-0.176678, 0.023434, 0.000212;;, + 140;4;-0.981024,-0.184884, 0.020049, 0.000181;;, + 141;4;-0.971933,-0.210044, 0.009669, 0.000087;;, + 142;4;-0.958274,-0.247841,-0.005923,-0.000054;;, + 143;4;-0.943774,-0.287968,-0.022477,-0.000203;;, + 144;4;-0.931607,-0.321640,-0.036368,-0.000329;;, + 145;4;-0.919439,-0.355312,-0.050259,-0.000455;;, + 146;4;-0.904939,-0.395439,-0.066812,-0.000604;;, + 147;4;-0.891281,-0.433236,-0.082405,-0.000745;;, + 148;4;-0.882189,-0.458395,-0.092784,-0.000839;;, + 149;4;-0.879224,-0.466601,-0.096169,-0.000870;;, + 150;4;-0.882189,-0.458395,-0.092784,-0.000839;;, + 151;4;-0.891280,-0.433236,-0.082405,-0.000745;;, + 152;4;-0.904939,-0.395439,-0.066812,-0.000604;;, + 153;4;-0.919439,-0.355312,-0.050259,-0.000455;;, + 154;4;-0.931607,-0.321640,-0.036368,-0.000329;;, + 155;4;-0.943774,-0.287968,-0.022477,-0.000203;;, + 156;4;-0.958274,-0.247841,-0.005923,-0.000054;;, + 157;4;-0.971933,-0.210044, 0.009669, 0.000087;;, + 158;4;-0.981024,-0.184884, 0.020049, 0.000181;;, + 159;4;-0.983990,-0.176678, 0.023434, 0.000212;;, + 160;4;-0.983923,-0.177003, 0.023305, 0.000211;;, + 161;4;-0.983721,-0.177983, 0.022914, 0.000207;;, + 162;4;-0.983383,-0.179622, 0.022262, 0.000201;;, + 163;4;-0.982912,-0.181909, 0.021351, 0.000193;;, + 164;4;-0.982314,-0.184815, 0.020193, 0.000183;;, + 165;4;-0.981597,-0.188292, 0.018809, 0.000170;;, + 166;4;-0.980779,-0.192266, 0.017226, 0.000156;;, + 167;4;-0.979878,-0.196641, 0.015484, 0.000140;;, + 168;4;-0.978919,-0.201298, 0.013629, 0.000123;;, + 169;4;-0.977930,-0.206099, 0.011717, 0.000106;;, + 170;4;-0.976941,-0.210901, 0.009805, 0.000089;;, + 171;4;-0.975981,-0.215557, 0.007950, 0.000072;;, + 172;4;-0.975080,-0.219932, 0.006208, 0.000056;;, + 173;4;-0.974262,-0.223907, 0.004625, 0.000042;;, + 174;4;-0.973545,-0.227383, 0.003241, 0.000029;;, + 175;4;-0.972947,-0.230290, 0.002083, 0.000019;;, + 176;4;-0.972476,-0.232577, 0.001172, 0.000011;;, + 177;4;-0.972138,-0.234216, 0.000520, 0.000005;;, + 178;4;-0.971936,-0.235196, 0.000129, 0.000001;;, + 179;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 180;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 181;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 182;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 183;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 184;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 185;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 186;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 187;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 188;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 189;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 190;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 191;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 192;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 193;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 194;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 195;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 196;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 197;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 198;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 199;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 200;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 201;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 202;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 203;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 204;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 205;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 206;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 207;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 208;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 209;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 210;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 211;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 212;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 213;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 214;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 215;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 216;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 217;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 218;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 219;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 220;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 221;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 222;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 223;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 224;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 225;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 226;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 227;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 228;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 229;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 230;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 231;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 232;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 233;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 234;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 235;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 236;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 237;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 238;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 239;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 240;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 241;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 242;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 243;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 244;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 245;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 246;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 247;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 248;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 249;4;-0.971869,-0.235520, 0.000000,-0.000000;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3;-0.000000, 1.294481, 0.000000;;, + 1;3;-0.000000, 1.294481, 0.000000;;, + 2;3;-0.000000, 1.294481, 0.000000;;, + 3;3;-0.000000, 1.294481, 0.000000;;, + 4;3;-0.000000, 1.294481, 0.000000;;, + 5;3;-0.000000, 1.294481, 0.000000;;, + 6;3;-0.000000, 1.294481, 0.000000;;, + 7;3;-0.000000, 1.294481, 0.000000;;, + 8;3;-0.000000, 1.294481, 0.000000;;, + 9;3;-0.000000, 1.294481, 0.000000;;, + 10;3;-0.000000, 1.294481, 0.000000;;, + 11;3;-0.000000, 1.294481, 0.000000;;, + 12;3;-0.000000, 1.294481, 0.000000;;, + 13;3;-0.000000, 1.294481, 0.000000;;, + 14;3;-0.000000, 1.294481, 0.000000;;, + 15;3;-0.000000, 1.294481, 0.000000;;, + 16;3;-0.000000, 1.294481, 0.000000;;, + 17;3;-0.000000, 1.294481, 0.000000;;, + 18;3;-0.000000, 1.294481, 0.000000;;, + 19;3;-0.000000, 1.294481, 0.000000;;, + 20;3;-0.000000, 1.294481, 0.000000;;, + 21;3;-0.000000, 1.294481, 0.000000;;, + 22;3;-0.000000, 1.294481, 0.000000;;, + 23;3;-0.000000, 1.294481, 0.000000;;, + 24;3;-0.000000, 1.294481, 0.000000;;, + 25;3;-0.000000, 1.294481, 0.000000;;, + 26;3;-0.000000, 1.294481, 0.000000;;, + 27;3;-0.000000, 1.294481, 0.000000;;, + 28;3;-0.000000, 1.294481, 0.000000;;, + 29;3;-0.000000, 1.294481, 0.000000;;, + 30;3;-0.000000, 1.294481, 0.000000;;, + 31;3;-0.000000, 1.294481, 0.000000;;, + 32;3;-0.000000, 1.294481, 0.000000;;, + 33;3;-0.000000, 1.294481, 0.000000;;, + 34;3;-0.000000, 1.294481, 0.000000;;, + 35;3;-0.000000, 1.294481, 0.000000;;, + 36;3;-0.000000, 1.294481, 0.000000;;, + 37;3;-0.000000, 1.294481, 0.000000;;, + 38;3;-0.000000, 1.294481, 0.000000;;, + 39;3;-0.000000, 1.294481, 0.000000;;, + 40;3;-0.000000, 1.294481, 0.000000;;, + 41;3;-0.000000, 1.294481, 0.000000;;, + 42;3;-0.000000, 1.294481, 0.000000;;, + 43;3;-0.000000, 1.294481, 0.000000;;, + 44;3;-0.000000, 1.294481, 0.000000;;, + 45;3;-0.000000, 1.294481, 0.000000;;, + 46;3;-0.000000, 1.294481, 0.000000;;, + 47;3;-0.000000, 1.294481, 0.000000;;, + 48;3;-0.000000, 1.294481, 0.000000;;, + 49;3;-0.000000, 1.294481, 0.000000;;, + 50;3;-0.000000, 1.294481, 0.000000;;, + 51;3;-0.000000, 1.294481, 0.000000;;, + 52;3;-0.000000, 1.294481, 0.000000;;, + 53;3;-0.000000, 1.294481, 0.000000;;, + 54;3;-0.000000, 1.294481, 0.000000;;, + 55;3;-0.000000, 1.294481, 0.000000;;, + 56;3;-0.000000, 1.294481, 0.000000;;, + 57;3;-0.000000, 1.294481, 0.000000;;, + 58;3;-0.000000, 1.294481, 0.000000;;, + 59;3;-0.000000, 1.294481, 0.000000;;, + 60;3;-0.000000, 1.294482,-0.000000;;, + 61;3;-0.000000, 1.294482, 0.000000;;, + 62;3; 0.000000, 1.294481, 0.000000;;, + 63;3;-0.000000, 1.294481, 0.000000;;, + 64;3;-0.000000, 1.294482, 0.000000;;, + 65;3;-0.000000, 1.294482,-0.000000;;, + 66;3;-0.000000, 1.294482, 0.000000;;, + 67;3;-0.000000, 1.294481, 0.000000;;, + 68;3; 0.000000, 1.294482,-0.000000;;, + 69;3; 0.000000, 1.294481, 0.000000;;, + 70;3;-0.000000, 1.294481, 0.000000;;, + 71;3; 0.000000, 1.294482,-0.000000;;, + 72;3; 0.000000, 1.294482, 0.000000;;, + 73;3;-0.000000, 1.294481, 0.000000;;, + 74;3;-0.000000, 1.294482, 0.000000;;, + 75;3; 0.000000, 1.294481, 0.000000;;, + 76;3; 0.000000, 1.294482, 0.000000;;, + 77;3;-0.000000, 1.294481,-0.000000;;, + 78;3;-0.000000, 1.294482, 0.000000;;, + 79;3;-0.000000, 1.294481, 0.000000;;, + 80;3;-0.000000, 1.294482, 0.000000;;, + 81;3;-0.000000, 1.294481, 0.000000;;, + 82;3;-0.000000, 1.294482,-0.000000;;, + 83;3; 0.000000, 1.294482,-0.000000;;, + 84;3;-0.000000, 1.294481, 0.000000;;, + 85;3;-0.000000, 1.294482, 0.000000;;, + 86;3;-0.000000, 1.294481, 0.000000;;, + 87;3; 0.000000, 1.294482, 0.000000;;, + 88;3; 0.000000, 1.294482, 0.000000;;, + 89;3;-0.000000, 1.294482, 0.000000;;, + 90;3;-0.000000, 1.294482,-0.000000;;, + 91;3;-0.000000, 1.294481, 0.000000;;, + 92;3; 0.000000, 1.294481, 0.000000;;, + 93;3; 0.000000, 1.294481, 0.000000;;, + 94;3;-0.000000, 1.294481,-0.000000;;, + 95;3; 0.000000, 1.294481,-0.000000;;, + 96;3;-0.000000, 1.294482,-0.000000;;, + 97;3; 0.000000, 1.294482, 0.000000;;, + 98;3; 0.000000, 1.294482,-0.000000;;, + 99;3;-0.000000, 1.294481, 0.000000;;, + 100;3; 0.000000, 1.294481, 0.000000;;, + 101;3;-0.000000, 1.294481, 0.000000;;, + 102;3;-0.000000, 1.294481,-0.000000;;, + 103;3;-0.000000, 1.294481,-0.000000;;, + 104;3;-0.000000, 1.294482, 0.000000;;, + 105;3;-0.000000, 1.294482,-0.000000;;, + 106;3; 0.000000, 1.294481, 0.000000;;, + 107;3; 0.000000, 1.294482, 0.000000;;, + 108;3;-0.000000, 1.294481,-0.000000;;, + 109;3; 0.000000, 1.294482,-0.000000;;, + 110;3; 0.000000, 1.294482, 0.000000;;, + 111;3; 0.000000, 1.294481, 0.000000;;, + 112;3;-0.000000, 1.294482, 0.000000;;, + 113;3; 0.000000, 1.294481, 0.000000;;, + 114;3; 0.000000, 1.294482, 0.000000;;, + 115;3; 0.000000, 1.294481,-0.000000;;, + 116;3; 0.000000, 1.294481, 0.000000;;, + 117;3; 0.000000, 1.294482,-0.000000;;, + 118;3; 0.000000, 1.294481,-0.000000;;, + 119;3; 0.000000, 1.294481,-0.000000;;, + 120;3;-0.000000, 1.294481,-0.000000;;, + 121;3;-0.000000, 1.294482, 0.000000;;, + 122;3; 0.000000, 1.294481,-0.000000;;, + 123;3; 0.000000, 1.294481,-0.000000;;, + 124;3;-0.000000, 1.294482,-0.000000;;, + 125;3;-0.000000, 1.294482, 0.000000;;, + 126;3;-0.000000, 1.294481,-0.000000;;, + 127;3;-0.000000, 1.294482,-0.000000;;, + 128;3; 0.000000, 1.294481,-0.000000;;, + 129;3;-0.000000, 1.294481, 0.000000;;, + 130;3;-0.000000, 1.294481,-0.000000;;, + 131;3; 0.000000, 1.294481,-0.000000;;, + 132;3; 0.000000, 1.294481,-0.000000;;, + 133;3; 0.000000, 1.294481, 0.000000;;, + 134;3; 0.000000, 1.294481,-0.000000;;, + 135;3; 0.000000, 1.294481, 0.000000;;, + 136;3;-0.000000, 1.294482,-0.000000;;, + 137;3; 0.000000, 1.294481,-0.000000;;, + 138;3;-0.000000, 1.294481,-0.000000;;, + 139;3;-0.000000, 1.294481, 0.000000;;, + 140;3;-0.000000, 1.294481, 0.000000;;, + 141;3;-0.000000, 1.294481,-0.000000;;, + 142;3;-0.000000, 1.294482,-0.000000;;, + 143;3; 0.000000, 1.294482, 0.000000;;, + 144;3; 0.000000, 1.294482,-0.000000;;, + 145;3; 0.000000, 1.294481, 0.000000;;, + 146;3; 0.000000, 1.294481, 0.000000;;, + 147;3; 0.000000, 1.294481,-0.000000;;, + 148;3; 0.000000, 1.294482,-0.000000;;, + 149;3; 0.000000, 1.294481,-0.000000;;, + 150;3;-0.000000, 1.294482, 0.000000;;, + 151;3; 0.000000, 1.294481,-0.000000;;, + 152;3;-0.000000, 1.294482, 0.000000;;, + 153;3;-0.000000, 1.294482,-0.000000;;, + 154;3;-0.000000, 1.294481, 0.000000;;, + 155;3; 0.000000, 1.294481,-0.000000;;, + 156;3; 0.000000, 1.294481, 0.000000;;, + 157;3; 0.000000, 1.294481, 0.000000;;, + 158;3; 0.000000, 1.294481,-0.000000;;, + 159;3;-0.000000, 1.294481, 0.000000;;, + 160;3;-0.000000, 1.294481,-0.000000;;, + 161;3;-0.000000, 1.294481,-0.000000;;, + 162;3; 0.000000, 1.294482,-0.000000;;, + 163;3; 0.000000, 1.294481,-0.000000;;, + 164;3;-0.000000, 1.294481, 0.000000;;, + 165;3; 0.000000, 1.294482, 0.000000;;, + 166;3;-0.000000, 1.294482,-0.000000;;, + 167;3;-0.000000, 1.294482,-0.000000;;, + 168;3; 0.000000, 1.294481,-0.000000;;, + 169;3;-0.000000, 1.294482, 0.000000;;, + 170;3;-0.000000, 1.294481,-0.000000;;, + 171;3;-0.000000, 1.294482,-0.000000;;, + 172;3;-0.000000, 1.294481, 0.000000;;, + 173;3;-0.000000, 1.294482,-0.000000;;, + 174;3;-0.000000, 1.294481, 0.000000;;, + 175;3; 0.000000, 1.294481,-0.000000;;, + 176;3; 0.000000, 1.294481, 0.000000;;, + 177;3;-0.000000, 1.294482, 0.000000;;, + 178;3;-0.000000, 1.294482, 0.000000;;, + 179;3;-0.000000, 1.294481, 0.000000;;, + 180;3; 0.000000, 1.294481,-0.000000;;, + 181;3; 0.000000, 1.294481, 0.000000;;, + 182;3;-0.000000, 1.294481,-0.000000;;, + 183;3; 0.000000, 1.294481, 0.000000;;, + 184;3; 0.000000, 1.294481,-0.000000;;, + 185;3; 0.000000, 1.294481,-0.000000;;, + 186;3; 0.000000, 1.294482,-0.000000;;, + 187;3;-0.000000, 1.294482,-0.000000;;, + 188;3; 0.000000, 1.294481,-0.000000;;, + 189;3; 0.000000, 1.294481,-0.000000;;, + 190;3; 0.000000, 1.294481, 0.000000;;, + 191;3;-0.000000, 1.294481, 0.000000;;, + 192;3; 0.000000, 1.294482,-0.000000;;, + 193;3;-0.000000, 1.294481, 0.000000;;, + 194;3; 0.000000, 1.294481, 0.000000;;, + 195;3;-0.000000, 1.294481, 0.000000;;, + 196;3;-0.000000, 1.294481,-0.000000;;, + 197;3;-0.000000, 1.294481,-0.000000;;, + 198;3;-0.000000, 1.294481,-0.000000;;, + 199;3;-0.000000, 1.294481, 0.000000;;, + 200;3;-0.000000, 1.294481, 0.000000;;, + 201;3;-0.000000, 1.294481, 0.000000;;, + 202;3;-0.000000, 1.294481, 0.000000;;, + 203;3;-0.000000, 1.294481, 0.000000;;, + 204;3;-0.000000, 1.294481, 0.000000;;, + 205;3;-0.000000, 1.294481, 0.000000;;, + 206;3;-0.000000, 1.294481, 0.000000;;, + 207;3;-0.000000, 1.294481, 0.000000;;, + 208;3;-0.000000, 1.294481, 0.000000;;, + 209;3;-0.000000, 1.294481, 0.000000;;, + 210;3;-0.000000, 1.294481, 0.000000;;, + 211;3;-0.000000, 1.294481, 0.000000;;, + 212;3;-0.000000, 1.294481, 0.000000;;, + 213;3;-0.000000, 1.294481, 0.000000;;, + 214;3;-0.000000, 1.294481, 0.000000;;, + 215;3;-0.000000, 1.294481, 0.000000;;, + 216;3;-0.000000, 1.294481, 0.000000;;, + 217;3;-0.000000, 1.294481, 0.000000;;, + 218;3;-0.000000, 1.294481, 0.000000;;, + 219;3;-0.000000, 1.294481, 0.000000;;, + 220;3;-0.000000, 1.294481, 0.000000;;, + 221;3;-0.000000, 1.294481, 0.000000;;, + 222;3;-0.000000, 1.294481, 0.000000;;, + 223;3;-0.000000, 1.294481, 0.000000;;, + 224;3;-0.000000, 1.294481, 0.000000;;, + 225;3;-0.000000, 1.294481, 0.000000;;, + 226;3;-0.000000, 1.294481, 0.000000;;, + 227;3;-0.000000, 1.294481, 0.000000;;, + 228;3;-0.000000, 1.294481, 0.000000;;, + 229;3;-0.000000, 1.294481, 0.000000;;, + 230;3;-0.000000, 1.294481, 0.000000;;, + 231;3;-0.000000, 1.294481, 0.000000;;, + 232;3;-0.000000, 1.294481, 0.000000;;, + 233;3;-0.000000, 1.294481, 0.000000;;, + 234;3;-0.000000, 1.294481, 0.000000;;, + 235;3;-0.000000, 1.294481, 0.000000;;, + 236;3;-0.000000, 1.294481, 0.000000;;, + 237;3;-0.000000, 1.294481, 0.000000;;, + 238;3;-0.000000, 1.294481, 0.000000;;, + 239;3;-0.000000, 1.294481, 0.000000;;, + 240;3;-0.000000, 1.294481, 0.000000;;, + 241;3;-0.000000, 1.294481, 0.000000;;, + 242;3;-0.000000, 1.294481, 0.000000;;, + 243;3;-0.000000, 1.294481, 0.000000;;, + 244;3;-0.000000, 1.294481, 0.000000;;, + 245;3;-0.000000, 1.294481, 0.000000;;, + 246;3;-0.000000, 1.294481, 0.000000;;, + 247;3;-0.000000, 1.294481, 0.000000;;, + 248;3;-0.000000, 1.294481, 0.000000;;, + 249;3;-0.000000, 1.294481, 0.000000;;; + } + } + Animation { + {Armature_Bone_026} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 1;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 2;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 3;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 4;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 5;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 6;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 7;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 8;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 9;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 10;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 11;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 12;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 13;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 14;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 15;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 16;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 17;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 18;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 19;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 20;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 21;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 22;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 23;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 24;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 25;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 26;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 27;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 28;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 29;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 30;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 31;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 32;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 33;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 34;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 35;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 36;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 37;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 38;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 39;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 40;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 41;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 42;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 43;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 44;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 45;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 46;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 47;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 48;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 49;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 50;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 51;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 52;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 53;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 54;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 55;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 56;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 57;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 58;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 59;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 60;4;-0.990507,-0.137464,-0.000000,-0.000000;;, + 61;4;-0.990507,-0.137465,-0.000000,-0.000000;;, + 62;4;-0.990506,-0.137468,-0.000001,-0.000001;;, + 63;4;-0.990506,-0.137473,-0.000003,-0.000001;;, + 64;4;-0.990504,-0.137481,-0.000006,-0.000002;;, + 65;4;-0.990503,-0.137494,-0.000011,-0.000004;;, + 66;4;-0.990500,-0.137512,-0.000018,-0.000007;;, + 67;4;-0.990496,-0.137538,-0.000027,-0.000011;;, + 68;4;-0.990491,-0.137572,-0.000039,-0.000016;;, + 69;4;-0.990485,-0.137615,-0.000055,-0.000022;;, + 70;4;-0.990477,-0.137670,-0.000075,-0.000030;;, + 71;4;-0.990467,-0.137738,-0.000100,-0.000041;;, + 72;4;-0.990455,-0.137821,-0.000130,-0.000053;;, + 73;4;-0.990440,-0.137920,-0.000166,-0.000067;;, + 74;4;-0.990423,-0.138036,-0.000209,-0.000085;;, + 75;4;-0.990404,-0.138173,-0.000259,-0.000105;;, + 76;4;-0.990381,-0.138330,-0.000316,-0.000128;;, + 77;4;-0.990354,-0.138510,-0.000382,-0.000155;;, + 78;4;-0.990325,-0.138714,-0.000457,-0.000185;;, + 79;4;-0.990291,-0.138944,-0.000541,-0.000219;;, + 80;4;-0.990254,-0.139200,-0.000635,-0.000257;;, + 81;4;-0.990212,-0.139484,-0.000738,-0.000299;;, + 82;4;-0.990167,-0.139796,-0.000852,-0.000345;;, + 83;4;-0.990117,-0.140136,-0.000977,-0.000396;;, + 84;4;-0.990063,-0.140506,-0.001112,-0.000450;;, + 85;4;-0.990005,-0.140905,-0.001258,-0.000509;;, + 86;4;-0.989943,-0.141334,-0.001415,-0.000573;;, + 87;4;-0.989876,-0.141791,-0.001582,-0.000640;;, + 88;4;-0.989805,-0.142277,-0.001760,-0.000712;;, + 89;4;-0.989730,-0.142791,-0.001948,-0.000789;;, + 90;4;-0.989651,-0.143333,-0.002146,-0.000869;;, + 91;4;-0.989568,-0.143902,-0.002353,-0.000953;;, + 92;4;-0.989482,-0.144496,-0.002571,-0.001041;;, + 93;4;-0.989391,-0.145115,-0.002797,-0.001132;;, + 94;4;-0.989297,-0.145759,-0.003032,-0.001228;;, + 95;4;-0.989200,-0.146425,-0.003276,-0.001326;;, + 96;4;-0.989100,-0.147113,-0.003528,-0.001428;;, + 97;4;-0.988996,-0.147823,-0.003787,-0.001533;;, + 98;4;-0.988890,-0.148553,-0.004054,-0.001641;;, + 99;4;-0.988781,-0.149301,-0.004328,-0.001752;;, + 100;4;-0.988479,-0.150854,-0.004899,-0.001983;;, + 101;4;-0.987776,-0.154079,-0.006090,-0.002466;;, + 102;4;-0.986660,-0.159023,-0.007917,-0.003205;;, + 103;4;-0.985156,-0.165575,-0.010339,-0.004186;;, + 104;4;-0.983341,-0.173414,-0.013239,-0.005360;;, + 105;4;-0.981337,-0.182034,-0.016428,-0.006651;;, + 106;4;-0.979284,-0.190849,-0.019688,-0.007971;;, + 107;4;-0.977309,-0.199333,-0.022827,-0.009242;;, + 108;4;-0.975500,-0.207115,-0.025706,-0.010408;;, + 109;4;-0.973909,-0.213985,-0.028247,-0.011436;;, + 110;4;-0.972314,-0.220879,-0.030796,-0.012469;;, + 111;4;-0.970496,-0.228722,-0.033697,-0.013643;;, + 112;4;-0.968509,-0.237283,-0.036864,-0.014925;;, + 113;4;-0.966448,-0.246154,-0.040146,-0.016254;;, + 114;4;-0.964445,-0.254769,-0.043332,-0.017544;;, + 115;4;-0.962646,-0.262498,-0.046191,-0.018702;;, + 116;4;-0.961179,-0.268801,-0.048523,-0.019646;;, + 117;4;-0.960121,-0.273344,-0.050204,-0.020326;;, + 118;4;-0.959498,-0.276016,-0.051192,-0.020726;;, + 119;4;-0.959298,-0.276875,-0.051510,-0.020855;;, + 120;4;-0.959498,-0.276016,-0.051192,-0.020726;;, + 121;4;-0.960121,-0.273344,-0.050204,-0.020326;;, + 122;4;-0.961179,-0.268801,-0.048523,-0.019646;;, + 123;4;-0.962646,-0.262498,-0.046191,-0.018702;;, + 124;4;-0.964445,-0.254769,-0.043332,-0.017544;;, + 125;4;-0.966448,-0.246154,-0.040146,-0.016254;;, + 126;4;-0.968509,-0.237283,-0.036864,-0.014925;;, + 127;4;-0.970496,-0.228722,-0.033697,-0.013643;;, + 128;4;-0.972314,-0.220879,-0.030796,-0.012469;;, + 129;4;-0.973909,-0.213985,-0.028247,-0.011436;;, + 130;4;-0.975509,-0.207052,-0.025683,-0.010398;;, + 131;4;-0.977344,-0.199089,-0.022738,-0.009206;;, + 132;4;-0.979360,-0.190333,-0.019500,-0.007895;;, + 133;4;-0.981458,-0.181207,-0.016125,-0.006529;;, + 134;4;-0.983503,-0.172304,-0.012833,-0.005196;;, + 135;4;-0.985343,-0.164287,-0.009869,-0.003996;;, + 136;4;-0.986848,-0.157729,-0.007444,-0.003014;;, + 137;4;-0.987935,-0.152992,-0.005692,-0.002305;;, + 138;4;-0.988575,-0.150200,-0.004660,-0.001887;;, + 139;4;-0.988781,-0.149301,-0.004328,-0.001752;;, + 140;4;-0.987935,-0.152992,-0.005692,-0.002305;;, + 141;4;-0.985343,-0.164287,-0.009869,-0.003996;;, + 142;4;-0.981458,-0.181207,-0.016125,-0.006529;;, + 143;4;-0.977344,-0.199089,-0.022738,-0.009206;;, + 144;4;-0.973909,-0.213985,-0.028247,-0.011436;;, + 145;4;-0.970496,-0.228722,-0.033697,-0.013643;;, + 146;4;-0.966448,-0.246154,-0.040146,-0.016254;;, + 147;4;-0.962646,-0.262498,-0.046191,-0.018702;;, + 148;4;-0.960121,-0.273344,-0.050204,-0.020326;;, + 149;4;-0.959298,-0.276875,-0.051510,-0.020855;;, + 150;4;-0.960121,-0.273344,-0.050204,-0.020326;;, + 151;4;-0.962646,-0.262498,-0.046191,-0.018702;;, + 152;4;-0.966448,-0.246154,-0.040146,-0.016254;;, + 153;4;-0.970496,-0.228722,-0.033697,-0.013643;;, + 154;4;-0.973909,-0.213985,-0.028247,-0.011436;;, + 155;4;-0.977309,-0.199333,-0.022827,-0.009242;;, + 156;4;-0.981337,-0.182034,-0.016428,-0.006651;;, + 157;4;-0.985156,-0.165575,-0.010339,-0.004186;;, + 158;4;-0.987776,-0.154079,-0.006090,-0.002466;;, + 159;4;-0.988781,-0.149301,-0.004328,-0.001752;;, + 160;4;-0.988996,-0.147823,-0.003787,-0.001533;;, + 161;4;-0.989200,-0.146425,-0.003276,-0.001326;;, + 162;4;-0.989391,-0.145115,-0.002797,-0.001132;;, + 163;4;-0.989568,-0.143902,-0.002353,-0.000953;;, + 164;4;-0.989730,-0.142791,-0.001948,-0.000789;;, + 165;4;-0.989876,-0.141791,-0.001582,-0.000640;;, + 166;4;-0.990005,-0.140905,-0.001258,-0.000509;;, + 167;4;-0.990117,-0.140136,-0.000977,-0.000396;;, + 168;4;-0.990212,-0.139484,-0.000738,-0.000299;;, + 169;4;-0.990291,-0.138944,-0.000541,-0.000219;;, + 170;4;-0.990354,-0.138510,-0.000382,-0.000155;;, + 171;4;-0.990404,-0.138173,-0.000259,-0.000105;;, + 172;4;-0.990440,-0.137920,-0.000166,-0.000067;;, + 173;4;-0.990467,-0.137738,-0.000100,-0.000041;;, + 174;4;-0.990485,-0.137615,-0.000055,-0.000022;;, + 175;4;-0.990496,-0.137538,-0.000027,-0.000011;;, + 176;4;-0.990503,-0.137494,-0.000011,-0.000004;;, + 177;4;-0.990506,-0.137473,-0.000003,-0.000001;;, + 178;4;-0.990507,-0.137465,-0.000000,-0.000000;;, + 179;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 180;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 181;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 182;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 183;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 184;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 185;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 186;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 187;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 188;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 189;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 190;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 191;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 192;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 193;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 194;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 195;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 196;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 197;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 198;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 199;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 200;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 201;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 202;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 203;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 204;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 205;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 206;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 207;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 208;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 209;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 210;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 211;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 212;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 213;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 214;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 215;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 216;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 217;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 218;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 219;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 220;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 221;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 222;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 223;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 224;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 225;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 226;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 227;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 228;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 229;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 230;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 231;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 232;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 233;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 234;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 235;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 236;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 237;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 238;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 239;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 240;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 241;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 242;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 243;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 244;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 245;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 246;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 247;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 248;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 249;4;-0.990507,-0.137464, 0.000000,-0.000000;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3; 0.000000, 1.228822,-0.000000;;, + 1;3; 0.000000, 1.228822,-0.000000;;, + 2;3; 0.000000, 1.228822,-0.000000;;, + 3;3; 0.000000, 1.228822,-0.000000;;, + 4;3; 0.000000, 1.228822,-0.000000;;, + 5;3; 0.000000, 1.228822,-0.000000;;, + 6;3; 0.000000, 1.228822,-0.000000;;, + 7;3; 0.000000, 1.228822,-0.000000;;, + 8;3; 0.000000, 1.228822,-0.000000;;, + 9;3; 0.000000, 1.228822,-0.000000;;, + 10;3; 0.000000, 1.228822,-0.000000;;, + 11;3; 0.000000, 1.228822,-0.000000;;, + 12;3; 0.000000, 1.228822,-0.000000;;, + 13;3; 0.000000, 1.228822,-0.000000;;, + 14;3; 0.000000, 1.228822,-0.000000;;, + 15;3; 0.000000, 1.228822,-0.000000;;, + 16;3; 0.000000, 1.228822,-0.000000;;, + 17;3; 0.000000, 1.228822,-0.000000;;, + 18;3; 0.000000, 1.228822,-0.000000;;, + 19;3; 0.000000, 1.228822,-0.000000;;, + 20;3; 0.000000, 1.228822,-0.000000;;, + 21;3; 0.000000, 1.228822,-0.000000;;, + 22;3; 0.000000, 1.228822,-0.000000;;, + 23;3; 0.000000, 1.228822,-0.000000;;, + 24;3; 0.000000, 1.228822,-0.000000;;, + 25;3; 0.000000, 1.228822,-0.000000;;, + 26;3; 0.000000, 1.228822,-0.000000;;, + 27;3; 0.000000, 1.228822,-0.000000;;, + 28;3; 0.000000, 1.228822,-0.000000;;, + 29;3; 0.000000, 1.228822,-0.000000;;, + 30;3; 0.000000, 1.228822,-0.000000;;, + 31;3; 0.000000, 1.228822,-0.000000;;, + 32;3; 0.000000, 1.228822,-0.000000;;, + 33;3; 0.000000, 1.228822,-0.000000;;, + 34;3; 0.000000, 1.228822,-0.000000;;, + 35;3; 0.000000, 1.228822,-0.000000;;, + 36;3; 0.000000, 1.228822,-0.000000;;, + 37;3; 0.000000, 1.228822,-0.000000;;, + 38;3; 0.000000, 1.228822,-0.000000;;, + 39;3; 0.000000, 1.228822,-0.000000;;, + 40;3; 0.000000, 1.228822,-0.000000;;, + 41;3; 0.000000, 1.228822,-0.000000;;, + 42;3; 0.000000, 1.228822,-0.000000;;, + 43;3; 0.000000, 1.228822,-0.000000;;, + 44;3; 0.000000, 1.228822,-0.000000;;, + 45;3; 0.000000, 1.228822,-0.000000;;, + 46;3; 0.000000, 1.228822,-0.000000;;, + 47;3; 0.000000, 1.228822,-0.000000;;, + 48;3; 0.000000, 1.228822,-0.000000;;, + 49;3; 0.000000, 1.228822,-0.000000;;, + 50;3; 0.000000, 1.228822,-0.000000;;, + 51;3; 0.000000, 1.228822,-0.000000;;, + 52;3; 0.000000, 1.228822,-0.000000;;, + 53;3; 0.000000, 1.228822,-0.000000;;, + 54;3; 0.000000, 1.228822,-0.000000;;, + 55;3; 0.000000, 1.228822,-0.000000;;, + 56;3; 0.000000, 1.228822,-0.000000;;, + 57;3; 0.000000, 1.228822,-0.000000;;, + 58;3; 0.000000, 1.228822,-0.000000;;, + 59;3; 0.000000, 1.228822,-0.000000;;, + 60;3; 0.000000, 1.228822,-0.000000;;, + 61;3;-0.000000, 1.228822, 0.000000;;, + 62;3;-0.000000, 1.228822, 0.000000;;, + 63;3; 0.000000, 1.228822,-0.000000;;, + 64;3;-0.000000, 1.228822, 0.000000;;, + 65;3;-0.000000, 1.228822,-0.000000;;, + 66;3;-0.000000, 1.228822, 0.000000;;, + 67;3;-0.000000, 1.228822, 0.000000;;, + 68;3;-0.000000, 1.228822, 0.000000;;, + 69;3; 0.000000, 1.228822,-0.000000;;, + 70;3; 0.000000, 1.228822,-0.000000;;, + 71;3; 0.000000, 1.228822,-0.000000;;, + 72;3; 0.000000, 1.228822,-0.000000;;, + 73;3; 0.000000, 1.228822,-0.000000;;, + 74;3;-0.000000, 1.228822, 0.000000;;, + 75;3;-0.000000, 1.228822,-0.000000;;, + 76;3;-0.000000, 1.228822,-0.000000;;, + 77;3; 0.000000, 1.228822,-0.000000;;, + 78;3;-0.000000, 1.228822,-0.000000;;, + 79;3; 0.000000, 1.228822,-0.000000;;, + 80;3; 0.000000, 1.228822, 0.000000;;, + 81;3;-0.000000, 1.228822, 0.000000;;, + 82;3;-0.000000, 1.228822,-0.000000;;, + 83;3; 0.000000, 1.228822,-0.000000;;, + 84;3;-0.000000, 1.228822,-0.000000;;, + 85;3;-0.000000, 1.228822,-0.000000;;, + 86;3; 0.000000, 1.228822, 0.000000;;, + 87;3; 0.000000, 1.228821, 0.000000;;, + 88;3;-0.000000, 1.228822,-0.000000;;, + 89;3;-0.000000, 1.228822, 0.000000;;, + 90;3; 0.000000, 1.228822, 0.000000;;, + 91;3; 0.000000, 1.228822, 0.000000;;, + 92;3; 0.000000, 1.228822, 0.000000;;, + 93;3;-0.000000, 1.228822,-0.000000;;, + 94;3;-0.000000, 1.228822, 0.000000;;, + 95;3;-0.000000, 1.228822, 0.000000;;, + 96;3; 0.000000, 1.228822,-0.000000;;, + 97;3; 0.000000, 1.228822,-0.000000;;, + 98;3; 0.000000, 1.228822,-0.000000;;, + 99;3;-0.000000, 1.228821, 0.000000;;, + 100;3;-0.000000, 1.228822,-0.000000;;, + 101;3; 0.000000, 1.228821,-0.000000;;, + 102;3;-0.000000, 1.228822, 0.000000;;, + 103;3; 0.000000, 1.228822, 0.000000;;, + 104;3;-0.000000, 1.228822,-0.000000;;, + 105;3;-0.000000, 1.228822, 0.000000;;, + 106;3; 0.000000, 1.228822,-0.000000;;, + 107;3; 0.000000, 1.228822, 0.000000;;, + 108;3;-0.000000, 1.228822,-0.000000;;, + 109;3;-0.000000, 1.228822, 0.000000;;, + 110;3; 0.000000, 1.228822,-0.000000;;, + 111;3;-0.000000, 1.228822,-0.000000;;, + 112;3; 0.000000, 1.228822, 0.000000;;, + 113;3;-0.000000, 1.228822,-0.000000;;, + 114;3; 0.000000, 1.228822,-0.000000;;, + 115;3; 0.000000, 1.228821, 0.000000;;, + 116;3; 0.000000, 1.228822,-0.000000;;, + 117;3; 0.000000, 1.228822,-0.000000;;, + 118;3;-0.000000, 1.228822, 0.000000;;, + 119;3;-0.000000, 1.228822, 0.000000;;, + 120;3;-0.000000, 1.228822, 0.000000;;, + 121;3; 0.000000, 1.228821,-0.000000;;, + 122;3;-0.000000, 1.228822, 0.000000;;, + 123;3; 0.000000, 1.228822, 0.000000;;, + 124;3;-0.000000, 1.228822,-0.000000;;, + 125;3; 0.000000, 1.228822, 0.000000;;, + 126;3;-0.000000, 1.228822,-0.000000;;, + 127;3;-0.000000, 1.228822,-0.000000;;, + 128;3;-0.000000, 1.228822, 0.000000;;, + 129;3;-0.000000, 1.228822,-0.000000;;, + 130;3;-0.000000, 1.228822, 0.000000;;, + 131;3;-0.000000, 1.228821,-0.000000;;, + 132;3; 0.000000, 1.228822, 0.000000;;, + 133;3; 0.000000, 1.228822, 0.000000;;, + 134;3;-0.000000, 1.228822,-0.000000;;, + 135;3;-0.000000, 1.228822,-0.000000;;, + 136;3;-0.000000, 1.228823,-0.000000;;, + 137;3; 0.000000, 1.228821,-0.000000;;, + 138;3; 0.000000, 1.228822,-0.000000;;, + 139;3;-0.000000, 1.228821, 0.000000;;, + 140;3; 0.000000, 1.228821,-0.000000;;, + 141;3; 0.000000, 1.228822, 0.000000;;, + 142;3;-0.000000, 1.228822, 0.000000;;, + 143;3; 0.000000, 1.228822, 0.000000;;, + 144;3;-0.000000, 1.228822, 0.000000;;, + 145;3;-0.000000, 1.228822,-0.000000;;, + 146;3;-0.000000, 1.228822,-0.000000;;, + 147;3; 0.000000, 1.228821, 0.000000;;, + 148;3; 0.000000, 1.228822,-0.000000;;, + 149;3;-0.000000, 1.228822, 0.000000;;, + 150;3; 0.000000, 1.228821,-0.000000;;, + 151;3; 0.000000, 1.228822, 0.000000;;, + 152;3; 0.000000, 1.228822, 0.000000;;, + 153;3;-0.000000, 1.228822,-0.000000;;, + 154;3;-0.000000, 1.228822,-0.000000;;, + 155;3;-0.000000, 1.228821,-0.000000;;, + 156;3; 0.000000, 1.228822, 0.000000;;, + 157;3;-0.000000, 1.228822,-0.000000;;, + 158;3; 0.000000, 1.228821,-0.000000;;, + 159;3;-0.000000, 1.228821, 0.000000;;, + 160;3; 0.000000, 1.228822, 0.000000;;, + 161;3; 0.000000, 1.228821,-0.000000;;, + 162;3; 0.000000, 1.228822,-0.000000;;, + 163;3; 0.000000, 1.228822,-0.000000;;, + 164;3;-0.000000, 1.228822,-0.000000;;, + 165;3;-0.000000, 1.228822,-0.000000;;, + 166;3;-0.000000, 1.228821, 0.000000;;, + 167;3; 0.000000, 1.228821, 0.000000;;, + 168;3; 0.000000, 1.228822,-0.000000;;, + 169;3; 0.000000, 1.228822,-0.000000;;, + 170;3; 0.000000, 1.228822,-0.000000;;, + 171;3; 0.000000, 1.228822,-0.000000;;, + 172;3; 0.000000, 1.228822,-0.000000;;, + 173;3;-0.000000, 1.228822,-0.000000;;, + 174;3; 0.000000, 1.228822, 0.000000;;, + 175;3;-0.000000, 1.228822, 0.000000;;, + 176;3; 0.000000, 1.228822,-0.000000;;, + 177;3;-0.000000, 1.228822,-0.000000;;, + 178;3; 0.000000, 1.228822,-0.000000;;, + 179;3; 0.000000, 1.228822,-0.000000;;, + 180;3;-0.000000, 1.228822,-0.000000;;, + 181;3;-0.000000, 1.228822,-0.000000;;, + 182;3;-0.000000, 1.228822, 0.000000;;, + 183;3;-0.000000, 1.228822, 0.000000;;, + 184;3;-0.000000, 1.228822,-0.000000;;, + 185;3;-0.000000, 1.228822, 0.000000;;, + 186;3; 0.000000, 1.228822,-0.000000;;, + 187;3;-0.000000, 1.228822, 0.000000;;, + 188;3; 0.000000, 1.228821, 0.000000;;, + 189;3; 0.000000, 1.228822, 0.000000;;, + 190;3; 0.000000, 1.228822,-0.000000;;, + 191;3;-0.000000, 1.228822, 0.000000;;, + 192;3; 0.000000, 1.228822,-0.000000;;, + 193;3;-0.000000, 1.228822, 0.000000;;, + 194;3; 0.000000, 1.228822, 0.000000;;, + 195;3;-0.000000, 1.228822, 0.000000;;, + 196;3;-0.000000, 1.228822,-0.000000;;, + 197;3;-0.000000, 1.228822,-0.000000;;, + 198;3;-0.000000, 1.228822, 0.000000;;, + 199;3; 0.000000, 1.228822,-0.000000;;, + 200;3; 0.000000, 1.228822,-0.000000;;, + 201;3; 0.000000, 1.228822,-0.000000;;, + 202;3; 0.000000, 1.228822,-0.000000;;, + 203;3; 0.000000, 1.228822,-0.000000;;, + 204;3; 0.000000, 1.228822,-0.000000;;, + 205;3; 0.000000, 1.228822,-0.000000;;, + 206;3; 0.000000, 1.228822,-0.000000;;, + 207;3; 0.000000, 1.228822,-0.000000;;, + 208;3; 0.000000, 1.228822,-0.000000;;, + 209;3; 0.000000, 1.228822,-0.000000;;, + 210;3; 0.000000, 1.228822,-0.000000;;, + 211;3; 0.000000, 1.228822,-0.000000;;, + 212;3; 0.000000, 1.228822,-0.000000;;, + 213;3; 0.000000, 1.228822,-0.000000;;, + 214;3; 0.000000, 1.228822,-0.000000;;, + 215;3; 0.000000, 1.228822,-0.000000;;, + 216;3; 0.000000, 1.228822,-0.000000;;, + 217;3; 0.000000, 1.228822,-0.000000;;, + 218;3; 0.000000, 1.228822,-0.000000;;, + 219;3; 0.000000, 1.228822,-0.000000;;, + 220;3; 0.000000, 1.228822,-0.000000;;, + 221;3; 0.000000, 1.228822,-0.000000;;, + 222;3; 0.000000, 1.228822,-0.000000;;, + 223;3; 0.000000, 1.228822,-0.000000;;, + 224;3; 0.000000, 1.228822,-0.000000;;, + 225;3; 0.000000, 1.228822,-0.000000;;, + 226;3; 0.000000, 1.228822,-0.000000;;, + 227;3; 0.000000, 1.228822,-0.000000;;, + 228;3; 0.000000, 1.228822,-0.000000;;, + 229;3; 0.000000, 1.228822,-0.000000;;, + 230;3; 0.000000, 1.228822,-0.000000;;, + 231;3; 0.000000, 1.228822,-0.000000;;, + 232;3; 0.000000, 1.228822,-0.000000;;, + 233;3; 0.000000, 1.228822,-0.000000;;, + 234;3; 0.000000, 1.228822,-0.000000;;, + 235;3; 0.000000, 1.228822,-0.000000;;, + 236;3; 0.000000, 1.228822,-0.000000;;, + 237;3; 0.000000, 1.228822,-0.000000;;, + 238;3; 0.000000, 1.228822,-0.000000;;, + 239;3; 0.000000, 1.228822,-0.000000;;, + 240;3; 0.000000, 1.228822,-0.000000;;, + 241;3; 0.000000, 1.228822,-0.000000;;, + 242;3; 0.000000, 1.228822,-0.000000;;, + 243;3; 0.000000, 1.228822,-0.000000;;, + 244;3; 0.000000, 1.228822,-0.000000;;, + 245;3; 0.000000, 1.228822,-0.000000;;, + 246;3; 0.000000, 1.228822,-0.000000;;, + 247;3; 0.000000, 1.228822,-0.000000;;, + 248;3; 0.000000, 1.228822,-0.000000;;, + 249;3; 0.000000, 1.228822,-0.000000;;; + } + } + Animation { + {Armature_Bone_015} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 1;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 2;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 3;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 4;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 5;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 6;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 7;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 8;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 9;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 10;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 11;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 12;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 13;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 14;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 15;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 16;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 17;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 18;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 19;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 20;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 21;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 22;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 23;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 24;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 25;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 26;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 27;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 28;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 29;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 30;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 31;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 32;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 33;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 34;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 35;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 36;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 37;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 38;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 39;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 40;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 41;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 42;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 43;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 44;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 45;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 46;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 47;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 48;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 49;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 50;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 51;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 52;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 53;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 54;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 55;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 56;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 57;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 58;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 59;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 60;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 61;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 62;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 63;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 64;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 65;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 66;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 67;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 68;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 69;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 70;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 71;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 72;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 73;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 74;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 75;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 76;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 77;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 78;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 79;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 80;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 81;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 82;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 83;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 84;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 85;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 86;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 87;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 88;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 89;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 90;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 91;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 92;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 93;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 94;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 95;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 96;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 97;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 98;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 99;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 100;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 101;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 102;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 103;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 104;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 105;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 106;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 107;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 108;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 109;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 110;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 111;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 112;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 113;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 114;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 115;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 116;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 117;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 118;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 119;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 120;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 121;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 122;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 123;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 124;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 125;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 126;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 127;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 128;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 129;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 130;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 131;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 132;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 133;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 134;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 135;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 136;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 137;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 138;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 139;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 140;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 141;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 142;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 143;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 144;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 145;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 146;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 147;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 148;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 149;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 150;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 151;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 152;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 153;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 154;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 155;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 156;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 157;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 158;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 159;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 160;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 161;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 162;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 163;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 164;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 165;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 166;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 167;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 168;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 169;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 170;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 171;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 172;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 173;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 174;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 175;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 176;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 177;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 178;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 179;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 180;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 181;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 182;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 183;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 184;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 185;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 186;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 187;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 188;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 189;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 190;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 191;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 192;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 193;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 194;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 195;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 196;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 197;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 198;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 199;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 200;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 201;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 202;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 203;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 204;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 205;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 206;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 207;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 208;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 209;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 210;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 211;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 212;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 213;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 214;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 215;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 216;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 217;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 218;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 219;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 220;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 221;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 222;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 223;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 224;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 225;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 226;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 227;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 228;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 229;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 230;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 231;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 232;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 233;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 234;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 235;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 236;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 237;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 238;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 239;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 240;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 241;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 242;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 243;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 244;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 245;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 246;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 247;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 248;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 249;4;-0.734154, 0.000000, 0.000000,-0.678983;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3; 0.000000, 0.826434, 0.000000;;, + 1;3; 0.000000, 0.826434, 0.000000;;, + 2;3; 0.000000, 0.826434, 0.000000;;, + 3;3; 0.000000, 0.826434, 0.000000;;, + 4;3; 0.000000, 0.826434, 0.000000;;, + 5;3; 0.000000, 0.826434, 0.000000;;, + 6;3; 0.000000, 0.826434, 0.000000;;, + 7;3; 0.000000, 0.826434, 0.000000;;, + 8;3; 0.000000, 0.826434, 0.000000;;, + 9;3; 0.000000, 0.826434, 0.000000;;, + 10;3; 0.000000, 0.826434, 0.000000;;, + 11;3; 0.000000, 0.826434, 0.000000;;, + 12;3; 0.000000, 0.826434, 0.000000;;, + 13;3; 0.000000, 0.826434, 0.000000;;, + 14;3; 0.000000, 0.826434, 0.000000;;, + 15;3; 0.000000, 0.826434, 0.000000;;, + 16;3; 0.000000, 0.826434, 0.000000;;, + 17;3; 0.000000, 0.826434, 0.000000;;, + 18;3; 0.000000, 0.826434, 0.000000;;, + 19;3; 0.000000, 0.826434, 0.000000;;, + 20;3; 0.000000, 0.826434, 0.000000;;, + 21;3; 0.000000, 0.826434, 0.000000;;, + 22;3; 0.000000, 0.826434, 0.000000;;, + 23;3; 0.000000, 0.826434, 0.000000;;, + 24;3; 0.000000, 0.826434, 0.000000;;, + 25;3; 0.000000, 0.826434, 0.000000;;, + 26;3; 0.000000, 0.826434, 0.000000;;, + 27;3; 0.000000, 0.826434, 0.000000;;, + 28;3; 0.000000, 0.826434, 0.000000;;, + 29;3; 0.000000, 0.826434, 0.000000;;, + 30;3; 0.000000, 0.826434, 0.000000;;, + 31;3; 0.000000, 0.826434, 0.000000;;, + 32;3; 0.000000, 0.826434, 0.000000;;, + 33;3; 0.000000, 0.826434, 0.000000;;, + 34;3; 0.000000, 0.826434, 0.000000;;, + 35;3; 0.000000, 0.826434, 0.000000;;, + 36;3; 0.000000, 0.826434, 0.000000;;, + 37;3; 0.000000, 0.826434, 0.000000;;, + 38;3; 0.000000, 0.826434, 0.000000;;, + 39;3; 0.000000, 0.826434, 0.000000;;, + 40;3; 0.000000, 0.826434, 0.000000;;, + 41;3; 0.000000, 0.826434, 0.000000;;, + 42;3; 0.000000, 0.826434, 0.000000;;, + 43;3; 0.000000, 0.826434, 0.000000;;, + 44;3; 0.000000, 0.826434, 0.000000;;, + 45;3; 0.000000, 0.826434, 0.000000;;, + 46;3; 0.000000, 0.826434, 0.000000;;, + 47;3; 0.000000, 0.826434, 0.000000;;, + 48;3; 0.000000, 0.826434, 0.000000;;, + 49;3; 0.000000, 0.826434, 0.000000;;, + 50;3; 0.000000, 0.826434, 0.000000;;, + 51;3; 0.000000, 0.826434, 0.000000;;, + 52;3; 0.000000, 0.826434, 0.000000;;, + 53;3; 0.000000, 0.826434, 0.000000;;, + 54;3; 0.000000, 0.826434, 0.000000;;, + 55;3; 0.000000, 0.826434, 0.000000;;, + 56;3; 0.000000, 0.826434, 0.000000;;, + 57;3; 0.000000, 0.826434, 0.000000;;, + 58;3; 0.000000, 0.826434, 0.000000;;, + 59;3; 0.000000, 0.826434, 0.000000;;, + 60;3; 0.000000, 0.826434, 0.000000;;, + 61;3; 0.000000, 0.826434, 0.000000;;, + 62;3; 0.000000, 0.826434, 0.000000;;, + 63;3; 0.000000, 0.826434, 0.000000;;, + 64;3; 0.000000, 0.826434, 0.000000;;, + 65;3; 0.000000, 0.826434, 0.000000;;, + 66;3; 0.000000, 0.826434, 0.000000;;, + 67;3; 0.000000, 0.826434, 0.000000;;, + 68;3; 0.000000, 0.826434, 0.000000;;, + 69;3; 0.000000, 0.826434, 0.000000;;, + 70;3; 0.000000, 0.826434, 0.000000;;, + 71;3; 0.000000, 0.826434, 0.000000;;, + 72;3; 0.000000, 0.826434, 0.000000;;, + 73;3; 0.000000, 0.826434, 0.000000;;, + 74;3; 0.000000, 0.826434, 0.000000;;, + 75;3; 0.000000, 0.826434, 0.000000;;, + 76;3; 0.000000, 0.826434, 0.000000;;, + 77;3; 0.000000, 0.826434, 0.000000;;, + 78;3; 0.000000, 0.826434, 0.000000;;, + 79;3; 0.000000, 0.826434, 0.000000;;, + 80;3; 0.000000, 0.826434, 0.000000;;, + 81;3; 0.000000, 0.826434, 0.000000;;, + 82;3; 0.000000, 0.826434, 0.000000;;, + 83;3; 0.000000, 0.826434, 0.000000;;, + 84;3; 0.000000, 0.826434, 0.000000;;, + 85;3; 0.000000, 0.826434, 0.000000;;, + 86;3; 0.000000, 0.826434, 0.000000;;, + 87;3; 0.000000, 0.826434, 0.000000;;, + 88;3; 0.000000, 0.826434, 0.000000;;, + 89;3; 0.000000, 0.826434, 0.000000;;, + 90;3; 0.000000, 0.826434, 0.000000;;, + 91;3; 0.000000, 0.826434, 0.000000;;, + 92;3; 0.000000, 0.826434, 0.000000;;, + 93;3; 0.000000, 0.826434, 0.000000;;, + 94;3; 0.000000, 0.826434, 0.000000;;, + 95;3; 0.000000, 0.826434, 0.000000;;, + 96;3; 0.000000, 0.826434, 0.000000;;, + 97;3; 0.000000, 0.826434, 0.000000;;, + 98;3; 0.000000, 0.826434, 0.000000;;, + 99;3; 0.000000, 0.826434, 0.000000;;, + 100;3; 0.000000, 0.826434, 0.000000;;, + 101;3; 0.000000, 0.826434, 0.000000;;, + 102;3; 0.000000, 0.826434, 0.000000;;, + 103;3; 0.000000, 0.826434, 0.000000;;, + 104;3; 0.000000, 0.826434, 0.000000;;, + 105;3; 0.000000, 0.826434, 0.000000;;, + 106;3; 0.000000, 0.826434, 0.000000;;, + 107;3; 0.000000, 0.826434, 0.000000;;, + 108;3; 0.000000, 0.826434, 0.000000;;, + 109;3; 0.000000, 0.826434, 0.000000;;, + 110;3; 0.000000, 0.826434, 0.000000;;, + 111;3; 0.000000, 0.826434, 0.000000;;, + 112;3; 0.000000, 0.826434, 0.000000;;, + 113;3; 0.000000, 0.826434, 0.000000;;, + 114;3; 0.000000, 0.826434, 0.000000;;, + 115;3; 0.000000, 0.826434, 0.000000;;, + 116;3; 0.000000, 0.826434, 0.000000;;, + 117;3; 0.000000, 0.826434, 0.000000;;, + 118;3; 0.000000, 0.826434, 0.000000;;, + 119;3; 0.000000, 0.826434, 0.000000;;, + 120;3; 0.000000, 0.826434, 0.000000;;, + 121;3; 0.000000, 0.826434, 0.000000;;, + 122;3; 0.000000, 0.826434, 0.000000;;, + 123;3; 0.000000, 0.826434, 0.000000;;, + 124;3; 0.000000, 0.826434, 0.000000;;, + 125;3; 0.000000, 0.826434, 0.000000;;, + 126;3; 0.000000, 0.826434, 0.000000;;, + 127;3; 0.000000, 0.826434, 0.000000;;, + 128;3; 0.000000, 0.826434, 0.000000;;, + 129;3; 0.000000, 0.826434, 0.000000;;, + 130;3; 0.000000, 0.826434, 0.000000;;, + 131;3; 0.000000, 0.826434, 0.000000;;, + 132;3; 0.000000, 0.826434, 0.000000;;, + 133;3; 0.000000, 0.826434, 0.000000;;, + 134;3; 0.000000, 0.826434, 0.000000;;, + 135;3; 0.000000, 0.826434, 0.000000;;, + 136;3; 0.000000, 0.826434, 0.000000;;, + 137;3; 0.000000, 0.826434, 0.000000;;, + 138;3; 0.000000, 0.826434, 0.000000;;, + 139;3; 0.000000, 0.826434, 0.000000;;, + 140;3; 0.000000, 0.826434, 0.000000;;, + 141;3; 0.000000, 0.826434, 0.000000;;, + 142;3; 0.000000, 0.826434, 0.000000;;, + 143;3; 0.000000, 0.826434, 0.000000;;, + 144;3; 0.000000, 0.826434, 0.000000;;, + 145;3; 0.000000, 0.826434, 0.000000;;, + 146;3; 0.000000, 0.826434, 0.000000;;, + 147;3; 0.000000, 0.826434, 0.000000;;, + 148;3; 0.000000, 0.826434, 0.000000;;, + 149;3; 0.000000, 0.826434, 0.000000;;, + 150;3; 0.000000, 0.826434, 0.000000;;, + 151;3; 0.000000, 0.826434, 0.000000;;, + 152;3; 0.000000, 0.826434, 0.000000;;, + 153;3; 0.000000, 0.826434, 0.000000;;, + 154;3; 0.000000, 0.826434, 0.000000;;, + 155;3; 0.000000, 0.826434, 0.000000;;, + 156;3; 0.000000, 0.826434, 0.000000;;, + 157;3; 0.000000, 0.826434, 0.000000;;, + 158;3; 0.000000, 0.826434, 0.000000;;, + 159;3; 0.000000, 0.826434, 0.000000;;, + 160;3; 0.000000, 0.826434, 0.000000;;, + 161;3; 0.000000, 0.826434, 0.000000;;, + 162;3; 0.000000, 0.826434, 0.000000;;, + 163;3; 0.000000, 0.826434, 0.000000;;, + 164;3; 0.000000, 0.826434, 0.000000;;, + 165;3; 0.000000, 0.826434, 0.000000;;, + 166;3; 0.000000, 0.826434, 0.000000;;, + 167;3; 0.000000, 0.826434, 0.000000;;, + 168;3; 0.000000, 0.826434, 0.000000;;, + 169;3; 0.000000, 0.826434, 0.000000;;, + 170;3; 0.000000, 0.826434, 0.000000;;, + 171;3; 0.000000, 0.826434, 0.000000;;, + 172;3; 0.000000, 0.826434, 0.000000;;, + 173;3; 0.000000, 0.826434, 0.000000;;, + 174;3; 0.000000, 0.826434, 0.000000;;, + 175;3; 0.000000, 0.826434, 0.000000;;, + 176;3; 0.000000, 0.826434, 0.000000;;, + 177;3; 0.000000, 0.826434, 0.000000;;, + 178;3; 0.000000, 0.826434, 0.000000;;, + 179;3; 0.000000, 0.826434, 0.000000;;, + 180;3; 0.000000, 0.826434, 0.000000;;, + 181;3; 0.000000, 0.826434, 0.000000;;, + 182;3; 0.000000, 0.826434, 0.000000;;, + 183;3; 0.000000, 0.826434, 0.000000;;, + 184;3; 0.000000, 0.826434, 0.000000;;, + 185;3; 0.000000, 0.826434, 0.000000;;, + 186;3;-0.000000, 0.826434,-0.000000;;, + 187;3;-0.000000, 0.826434,-0.000000;;, + 188;3;-0.000000, 0.826434, 0.000000;;, + 189;3;-0.000000, 0.826434, 0.000000;;, + 190;3;-0.000000, 0.826434,-0.000000;;, + 191;3; 0.000000, 0.826434, 0.000000;;, + 192;3; 0.000000, 0.826434, 0.000000;;, + 193;3; 0.000000, 0.826434, 0.000000;;, + 194;3; 0.000000, 0.826434,-0.000000;;, + 195;3; 0.000000, 0.826434,-0.000000;;, + 196;3; 0.000000, 0.826434, 0.000000;;, + 197;3; 0.000000, 0.826434,-0.000000;;, + 198;3; 0.000000, 0.826434,-0.000000;;, + 199;3; 0.000000, 0.826434, 0.000000;;, + 200;3; 0.000000, 0.826434, 0.000000;;, + 201;3; 0.000000, 0.826434, 0.000000;;, + 202;3; 0.000000, 0.826434, 0.000000;;, + 203;3; 0.000000, 0.826434, 0.000000;;, + 204;3; 0.000000, 0.826434, 0.000000;;, + 205;3; 0.000000, 0.826434, 0.000000;;, + 206;3; 0.000000, 0.826434, 0.000000;;, + 207;3; 0.000000, 0.826434, 0.000000;;, + 208;3; 0.000000, 0.826434, 0.000000;;, + 209;3; 0.000000, 0.826434, 0.000000;;, + 210;3; 0.000000, 0.826434, 0.000000;;, + 211;3; 0.000000, 0.826434, 0.000000;;, + 212;3; 0.000000, 0.826434, 0.000000;;, + 213;3; 0.000000, 0.826434, 0.000000;;, + 214;3; 0.000000, 0.826434, 0.000000;;, + 215;3; 0.000000, 0.826434, 0.000000;;, + 216;3; 0.000000, 0.826434, 0.000000;;, + 217;3; 0.000000, 0.826434, 0.000000;;, + 218;3; 0.000000, 0.826434, 0.000000;;, + 219;3; 0.000000, 0.826434, 0.000000;;, + 220;3; 0.000000, 0.826434, 0.000000;;, + 221;3; 0.000000, 0.826434, 0.000000;;, + 222;3; 0.000000, 0.826434, 0.000000;;, + 223;3; 0.000000, 0.826434, 0.000000;;, + 224;3; 0.000000, 0.826434, 0.000000;;, + 225;3; 0.000000, 0.826434, 0.000000;;, + 226;3; 0.000000, 0.826434, 0.000000;;, + 227;3; 0.000000, 0.826434, 0.000000;;, + 228;3; 0.000000, 0.826434, 0.000000;;, + 229;3; 0.000000, 0.826434, 0.000000;;, + 230;3; 0.000000, 0.826434, 0.000000;;, + 231;3; 0.000000, 0.826434, 0.000000;;, + 232;3; 0.000000, 0.826434, 0.000000;;, + 233;3; 0.000000, 0.826434, 0.000000;;, + 234;3; 0.000000, 0.826434, 0.000000;;, + 235;3; 0.000000, 0.826434, 0.000000;;, + 236;3; 0.000000, 0.826434, 0.000000;;, + 237;3; 0.000000, 0.826434, 0.000000;;, + 238;3; 0.000000, 0.826434, 0.000000;;, + 239;3; 0.000000, 0.826434, 0.000000;;, + 240;3; 0.000000, 0.826434, 0.000000;;, + 241;3; 0.000000, 0.826434, 0.000000;;, + 242;3; 0.000000, 0.826434, 0.000000;;, + 243;3; 0.000000, 0.826434, 0.000000;;, + 244;3; 0.000000, 0.826434, 0.000000;;, + 245;3; 0.000000, 0.826434, 0.000000;;, + 246;3; 0.000000, 0.826434, 0.000000;;, + 247;3; 0.000000, 0.826434, 0.000000;;, + 248;3; 0.000000, 0.826434, 0.000000;;, + 249;3; 0.000000, 0.826434, 0.000000;;; + } + } + Animation { + {Armature_Bone_019} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.945309, 0.122931, 0.038961, 0.299601;;, + 1;4;-0.945411, 0.122945, 0.038914, 0.299240;;, + 2;4;-0.945721, 0.122985, 0.038772, 0.298147;;, + 3;4;-0.946238, 0.123052, 0.038535, 0.296319;;, + 4;4;-0.946959, 0.123146, 0.038203, 0.293774;;, + 5;4;-0.947872, 0.123265, 0.037784, 0.290547;;, + 6;4;-0.948960, 0.123406, 0.037284, 0.286703;;, + 7;4;-0.950197, 0.123567, 0.036716, 0.282337;;, + 8;4;-0.951546, 0.123743, 0.036096, 0.277570;;, + 9;4;-0.952967, 0.123927, 0.035444, 0.272552;;, + 10;4;-0.954412, 0.124115, 0.034780, 0.267447;;, + 11;4;-0.955833, 0.124300, 0.034127, 0.262429;;, + 12;4;-0.957182, 0.124476, 0.033507, 0.257662;;, + 13;4;-0.958419, 0.124636, 0.032940, 0.253295;;, + 14;4;-0.959507, 0.124778, 0.032440, 0.249452;;, + 15;4;-0.960420, 0.124897, 0.032020, 0.246225;;, + 16;4;-0.961141, 0.124990, 0.031689, 0.243679;;, + 17;4;-0.961658, 0.125058, 0.031451, 0.241852;;, + 18;4;-0.961968, 0.125098, 0.031309, 0.240759;;, + 19;4;-0.962070, 0.125111, 0.031262, 0.240397;;, + 20;4;-0.962066, 0.125107, 0.031275, 0.240492;;, + 21;4;-0.962050, 0.125096, 0.031315, 0.240784;;, + 22;4;-0.962022, 0.125077, 0.031383, 0.241279;;, + 23;4;-0.961978, 0.125049, 0.031480, 0.241986;;, + 24;4;-0.961916, 0.125014, 0.031606, 0.242904;;, + 25;4;-0.961834, 0.124970, 0.031760, 0.244032;;, + 26;4;-0.961730, 0.124919, 0.031942, 0.245361;;, + 27;4;-0.961599, 0.124860, 0.032148, 0.246877;;, + 28;4;-0.961442, 0.124796, 0.032377, 0.248556;;, + 29;4;-0.961256, 0.124726, 0.032623, 0.250372;;, + 30;4;-0.961040, 0.124652, 0.032883, 0.252291;;, + 31;4;-0.960796, 0.124576, 0.033152, 0.254279;;, + 32;4;-0.960523, 0.124499, 0.033424, 0.256298;;, + 33;4;-0.960223, 0.124422, 0.033695, 0.258315;;, + 34;4;-0.959899, 0.124347, 0.033961, 0.260300;;, + 35;4;-0.959552, 0.124274, 0.034218, 0.262226;;, + 36;4;-0.959185, 0.124205, 0.034463, 0.264074;;, + 37;4;-0.958800, 0.124139, 0.034695, 0.265828;;, + 38;4;-0.958400, 0.124078, 0.034911, 0.267477;;, + 39;4;-0.957987, 0.124021, 0.035112, 0.269015;;, + 40;4;-0.957562, 0.123964, 0.035312, 0.270556;;, + 41;4;-0.957125, 0.123903, 0.035529, 0.272216;;, + 42;4;-0.956672, 0.123838, 0.035761, 0.273990;;, + 43;4;-0.956202, 0.123768, 0.036006, 0.275867;;, + 44;4;-0.955712, 0.123695, 0.036263, 0.277833;;, + 45;4;-0.955200, 0.123620, 0.036528, 0.279869;;, + 46;4;-0.954664, 0.123543, 0.036799, 0.281949;;, + 47;4;-0.954100, 0.123466, 0.037072, 0.284043;;, + 48;4;-0.953508, 0.123390, 0.037340, 0.286118;;, + 49;4;-0.952887, 0.123317, 0.037600, 0.288137;;, + 50;4;-0.952236, 0.123247, 0.037847, 0.290065;;, + 51;4;-0.951556, 0.123182, 0.038075, 0.291868;;, + 52;4;-0.950849, 0.123124, 0.038282, 0.293518;;, + 53;4;-0.950115, 0.123072, 0.038463, 0.294990;;, + 54;4;-0.949358, 0.123029, 0.038618, 0.296268;;, + 55;4;-0.948580, 0.122993, 0.038743, 0.297344;;, + 56;4;-0.947784, 0.122966, 0.038840, 0.298212;;, + 57;4;-0.946972, 0.122946, 0.038908, 0.298874;;, + 58;4;-0.946146, 0.122935, 0.038948, 0.299335;;, + 59;4;-0.945309, 0.122931, 0.038961, 0.299601;;, + 60;4;-0.944454, 0.123130, 0.038865, 0.299773;;, + 61;4;-0.943573, 0.123730, 0.038573, 0.299941;;, + 62;4;-0.942667, 0.124736, 0.038084, 0.300107;;, + 63;4;-0.941735, 0.126152, 0.037398, 0.300270;;, + 64;4;-0.940778, 0.127982, 0.036514, 0.300430;;, + 65;4;-0.939796, 0.130225, 0.035433, 0.300587;;, + 66;4;-0.938789, 0.132880, 0.034158, 0.300740;;, + 67;4;-0.937759, 0.135942, 0.032690, 0.300890;;, + 68;4;-0.936707, 0.139406, 0.031037, 0.301036;;, + 69;4;-0.935633, 0.143260, 0.029202, 0.301177;;, + 70;4;-0.934539, 0.147493, 0.027196, 0.301315;;, + 71;4;-0.933428, 0.152086, 0.025027, 0.301448;;, + 72;4;-0.932300, 0.157021, 0.022707, 0.301576;;, + 73;4;-0.931158, 0.162272, 0.020250, 0.301699;;, + 74;4;-0.930005, 0.167812, 0.017671, 0.301818;;, + 75;4;-0.928843, 0.173611, 0.014987, 0.301931;;, + 76;4;-0.927675, 0.179634, 0.012217, 0.302039;;, + 77;4;-0.926505, 0.185844, 0.009379, 0.302143;;, + 78;4;-0.925335, 0.192200, 0.006496, 0.302240;;, + 79;4;-0.924168, 0.198663, 0.003588, 0.302333;;, + 80;4;-0.923008, 0.205189, 0.000678, 0.302421;;, + 81;4;-0.921858, 0.211735,-0.002213, 0.302503;;, + 82;4;-0.920722, 0.218259,-0.005062, 0.302581;;, + 83;4;-0.919601, 0.224719,-0.007850, 0.302653;;, + 84;4;-0.918498, 0.231075,-0.010556, 0.302722;;, + 85;4;-0.917417, 0.237289,-0.013161, 0.302785;;, + 86;4;-0.916360, 0.243327,-0.015649, 0.302845;;, + 87;4;-0.915328, 0.249156,-0.018003, 0.302900;;, + 88;4;-0.914322, 0.254747,-0.020211, 0.302952;;, + 89;4;-0.913346, 0.260075,-0.022260, 0.303000;;, + 90;4;-0.912399, 0.265117,-0.024141, 0.303045;;, + 91;4;-0.911483, 0.269856,-0.025845, 0.303087;;, + 92;4;-0.910599, 0.274275,-0.027365, 0.303126;;, + 93;4;-0.909745, 0.278363,-0.028697, 0.303163;;, + 94;4;-0.908924, 0.282111,-0.029836, 0.303198;;, + 95;4;-0.908135, 0.285510,-0.030781, 0.303230;;, + 96;4;-0.907378, 0.288558,-0.031531, 0.303260;;, + 97;4;-0.906652, 0.291251,-0.032086, 0.303289;;, + 98;4;-0.905957, 0.293589,-0.032445, 0.303316;;, + 99;4;-0.905294, 0.295574,-0.032612, 0.303342;;, + 100;4;-0.904634, 0.297353,-0.031031, 0.302463;;, + 101;4;-0.903960, 0.299054,-0.026082, 0.299766;;, + 102;4;-0.903291, 0.300635,-0.017876, 0.295363;;, + 103;4;-0.902653, 0.302051,-0.006912, 0.289596;;, + 104;4;-0.902075, 0.303262, 0.005858, 0.283057;;, + 105;4;-0.901587, 0.304242, 0.019140, 0.276514;;, + 106;4;-0.901210, 0.304987, 0.031590, 0.270737;;, + 107;4;-0.900950, 0.305518, 0.042121, 0.266318;;, + 108;4;-0.900802, 0.305867, 0.050062, 0.263601;;, + 109;4;-0.900756, 0.306070, 0.055135, 0.262697;;, + 110;4;-0.901904, 0.299828, 0.058819, 0.263254;;, + 111;4;-0.905362, 0.280758, 0.062582, 0.264946;;, + 112;4;-0.910987, 0.249658, 0.066320, 0.267734;;, + 113;4;-0.918345, 0.208929, 0.069889, 0.271447;;, + 114;4;-0.926686, 0.162758, 0.073118, 0.275762;;, + 115;4;-0.935032, 0.116567, 0.075844, 0.280240;;, + 116;4;-0.942409, 0.075781, 0.077956, 0.284427;;, + 117;4;-0.948062, 0.044592, 0.079413, 0.287957;;, + 118;4;-0.951558, 0.025407, 0.080240, 0.290604;;, + 119;4;-0.952750, 0.019031, 0.080499, 0.292276;;, + 120;4;-0.952463, 0.020937, 0.079719, 0.293368;;, + 121;4;-0.951473, 0.026859, 0.077297, 0.294279;;, + 122;4;-0.949759, 0.036917, 0.073183, 0.295002;;, + 123;4;-0.947367, 0.050857, 0.067482, 0.295550;;, + 124;4;-0.944427, 0.067923, 0.060501, 0.295957;;, + 125;4;-0.941152, 0.086910, 0.052736, 0.296277;;, + 126;4;-0.937786, 0.106416, 0.044757, 0.296574;;, + 127;4;-0.934548, 0.125185, 0.037080, 0.296904;;, + 128;4;-0.931597, 0.142316, 0.030073, 0.297308;;, + 129;4;-0.929022, 0.157302, 0.023944, 0.297809;;, + 130;4;-0.926575, 0.171986, 0.017826, 0.298404;;, + 131;4;-0.923991, 0.188253, 0.010853, 0.299076;;, + 132;4;-0.921303, 0.205729, 0.003226, 0.299806;;, + 133;4;-0.918568, 0.223750,-0.004694, 0.300563;;, + 134;4;-0.915865, 0.241387,-0.012407, 0.301301;;, + 135;4;-0.913286, 0.257606,-0.019355, 0.301970;;, + 136;4;-0.910906, 0.271516,-0.025055, 0.302527;;, + 137;4;-0.908773, 0.282560,-0.029208, 0.302946;;, + 138;4;-0.906905, 0.290549,-0.031710, 0.303216;;, + 139;4;-0.905294, 0.295574,-0.032612, 0.303342;;, + 140;4;-0.903822, 0.299054,-0.026082, 0.299771;;, + 141;4;-0.902489, 0.302051,-0.006912, 0.289602;;, + 142;4;-0.901482, 0.304242, 0.019140, 0.276518;;, + 143;4;-0.900918, 0.305518, 0.042121, 0.266320;;, + 144;4;-0.900756, 0.306070, 0.055135, 0.262697;;, + 145;4;-0.905362, 0.280758, 0.062582, 0.264946;;, + 146;4;-0.918345, 0.208929, 0.069889, 0.271447;;, + 147;4;-0.935032, 0.116567, 0.075844, 0.280240;;, + 148;4;-0.948062, 0.044592, 0.079413, 0.287957;;, + 149;4;-0.952750, 0.019031, 0.080499, 0.292276;;, + 150;4;-0.951473, 0.026859, 0.077297, 0.294279;;, + 151;4;-0.947367, 0.050857, 0.067482, 0.295550;;, + 152;4;-0.941152, 0.086910, 0.052736, 0.296277;;, + 153;4;-0.934548, 0.125185, 0.037080, 0.296904;;, + 154;4;-0.929022, 0.157302, 0.023944, 0.297809;;, + 155;4;-0.923510, 0.189420, 0.010807, 0.299094;;, + 156;4;-0.916942, 0.227695,-0.004848, 0.300626;;, + 157;4;-0.910755, 0.263748,-0.019594, 0.302069;;, + 158;4;-0.906637, 0.287746,-0.029410, 0.303029;;, + 159;4;-0.905294, 0.295574,-0.032612, 0.303342;;, + 160;4;-0.905515, 0.295573,-0.032254, 0.303334;;, + 161;4;-0.906183, 0.295508,-0.031172, 0.303306;;, + 162;4;-0.907299, 0.295265,-0.029356, 0.303259;;, + 163;4;-0.908858, 0.294711,-0.026815, 0.303190;;, + 164;4;-0.910838, 0.293688,-0.023573, 0.303098;;, + 165;4;-0.913206, 0.292018,-0.019677, 0.302983;;, + 166;4;-0.915913, 0.289505,-0.015200, 0.302844;;, + 167;4;-0.918893, 0.285950,-0.010241, 0.302681;;, + 168;4;-0.922064, 0.281155,-0.004923, 0.302495;;, + 169;4;-0.925333, 0.274941, 0.000610, 0.302288;;, + 170;4;-0.928602, 0.267159, 0.006205, 0.302061;;, + 171;4;-0.931770, 0.257702, 0.011704, 0.301817;;, + 172;4;-0.934746, 0.246510, 0.016962, 0.301559;;, + 173;4;-0.937448, 0.233572, 0.021846, 0.301291;;, + 174;4;-0.939810, 0.218918, 0.026249, 0.301014;;, + 175;4;-0.941783, 0.202614, 0.030087, 0.300733;;, + 176;4;-0.943333, 0.184753, 0.033305, 0.300449;;, + 177;4;-0.944441, 0.165441, 0.035864, 0.300165;;, + 178;4;-0.945099, 0.144795, 0.037750, 0.299882;;, + 179;4;-0.945309, 0.122931, 0.038961, 0.299601;;, + 180;4;-0.943852, 0.094790, 0.030556, 0.290457;;, + 181;4;-0.939490, 0.055477, 0.003488, 0.263499;;, + 182;4;-0.932404, 0.006299,-0.041099, 0.219851;;, + 183;4;-0.923140,-0.049843,-0.099735, 0.162863;;, + 184;4;-0.912648,-0.108395,-0.166358, 0.098367;;, + 185;4;-0.902158,-0.163831,-0.233103, 0.033910;;, + 186;4;-0.892899,-0.210942,-0.292092,-0.022967;;, + 187;4;-0.885820,-0.245988,-0.337230,-0.066439;;, + 188;4;-0.881466,-0.267112,-0.365009,-0.093171;;, + 189;4;-0.880020,-0.274032,-0.374242,-0.102052;;, + 190;4;-0.889364,-0.269311,-0.351268,-0.099030;;, + 191;4;-0.915797,-0.253212,-0.283640,-0.087668;;, + 192;4;-0.950033,-0.225022,-0.188979,-0.065435;;, + 193;4;-0.977279,-0.188430,-0.100020,-0.033238;;, + 194;4;-0.988008,-0.148841,-0.040751, 0.005235;;, + 195;4;-0.985342,-0.096222,-0.004041, 0.060336;;, + 196;4;-0.974860,-0.022930, 0.021380, 0.139373;;, + 197;4;-0.960654, 0.052382, 0.034457, 0.221748;;, + 198;4;-0.949359, 0.105181, 0.038545, 0.279950;;, + 199;4;-0.945309, 0.122931, 0.038961, 0.299601;;, + 200;4;-0.945309, 0.122931, 0.038961, 0.299601;;, + 201;4;-0.945309, 0.122931, 0.038961, 0.299601;;, + 202;4;-0.945309, 0.122931, 0.038961, 0.299601;;, + 203;4;-0.945309, 0.122931, 0.038961, 0.299601;;, + 204;4;-0.945309, 0.122931, 0.038961, 0.299601;;, + 205;4;-0.945309, 0.122931, 0.038961, 0.299601;;, + 206;4;-0.945309, 0.122931, 0.038961, 0.299601;;, + 207;4;-0.945309, 0.122931, 0.038961, 0.299601;;, + 208;4;-0.945309, 0.122931, 0.038961, 0.299601;;, + 209;4;-0.945309, 0.122931, 0.038961, 0.299601;;, + 210;4;-0.945309, 0.122931, 0.038961, 0.299601;;, + 211;4;-0.945309, 0.122931, 0.038961, 0.299601;;, + 212;4;-0.945309, 0.122931, 0.038961, 0.299601;;, + 213;4;-0.945309, 0.122931, 0.038961, 0.299601;;, + 214;4;-0.945309, 0.122931, 0.038961, 0.299601;;, + 215;4;-0.945309, 0.122931, 0.038961, 0.299601;;, + 216;4;-0.945309, 0.122931, 0.038961, 0.299601;;, + 217;4;-0.945309, 0.122931, 0.038961, 0.299601;;, + 218;4;-0.945309, 0.122931, 0.038961, 0.299601;;, + 219;4;-0.945309, 0.122931, 0.038961, 0.299601;;, + 220;4;-0.945309, 0.122931, 0.038961, 0.299601;;, + 221;4;-0.945309, 0.122931, 0.038961, 0.299601;;, + 222;4;-0.945309, 0.122931, 0.038961, 0.299601;;, + 223;4;-0.945309, 0.122931, 0.038961, 0.299601;;, + 224;4;-0.945309, 0.122931, 0.038961, 0.299601;;, + 225;4;-0.945309, 0.122931, 0.038961, 0.299601;;, + 226;4;-0.945309, 0.122931, 0.038961, 0.299601;;, + 227;4;-0.945309, 0.122931, 0.038961, 0.299601;;, + 228;4;-0.945309, 0.122931, 0.038961, 0.299601;;, + 229;4;-0.945309, 0.122931, 0.038961, 0.299601;;, + 230;4;-0.945309, 0.122931, 0.038961, 0.299601;;, + 231;4;-0.945309, 0.122931, 0.038961, 0.299601;;, + 232;4;-0.945309, 0.122931, 0.038961, 0.299601;;, + 233;4;-0.945309, 0.122931, 0.038961, 0.299601;;, + 234;4;-0.945309, 0.122931, 0.038961, 0.299601;;, + 235;4;-0.945309, 0.122931, 0.038961, 0.299601;;, + 236;4;-0.945309, 0.122931, 0.038961, 0.299601;;, + 237;4;-0.945309, 0.122931, 0.038961, 0.299601;;, + 238;4;-0.945309, 0.122931, 0.038961, 0.299601;;, + 239;4;-0.945309, 0.122931, 0.038961, 0.299601;;, + 240;4;-0.945309, 0.122931, 0.038961, 0.299601;;, + 241;4;-0.945309, 0.122931, 0.038961, 0.299601;;, + 242;4;-0.945309, 0.122931, 0.038961, 0.299601;;, + 243;4;-0.945309, 0.122931, 0.038961, 0.299601;;, + 244;4;-0.945309, 0.122931, 0.038961, 0.299601;;, + 245;4;-0.945309, 0.122931, 0.038961, 0.299601;;, + 246;4;-0.945309, 0.122931, 0.038961, 0.299601;;, + 247;4;-0.945309, 0.122931, 0.038961, 0.299601;;, + 248;4;-0.945309, 0.122931, 0.038961, 0.299601;;, + 249;4;-0.945309, 0.122931, 0.038961, 0.299601;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3;-0.000000, 0.592826,-0.000000;;, + 1;3;-0.000000, 0.592826,-0.000000;;, + 2;3;-0.000000, 0.592826,-0.000000;;, + 3;3;-0.000000, 0.592826,-0.000000;;, + 4;3;-0.000000, 0.592826,-0.000000;;, + 5;3;-0.000000, 0.592826,-0.000000;;, + 6;3;-0.000000, 0.592826,-0.000000;;, + 7;3;-0.000000, 0.592826,-0.000000;;, + 8;3;-0.000000, 0.592826,-0.000000;;, + 9;3;-0.000000, 0.592826,-0.000000;;, + 10;3;-0.000000, 0.592826,-0.000000;;, + 11;3;-0.000000, 0.592826,-0.000000;;, + 12;3;-0.000000, 0.592826,-0.000000;;, + 13;3;-0.000000, 0.592826,-0.000000;;, + 14;3;-0.000000, 0.592826,-0.000000;;, + 15;3;-0.000000, 0.592826,-0.000000;;, + 16;3;-0.000000, 0.592826,-0.000000;;, + 17;3;-0.000000, 0.592826,-0.000000;;, + 18;3;-0.000000, 0.592826,-0.000000;;, + 19;3;-0.000000, 0.592826,-0.000000;;, + 20;3;-0.000000, 0.592826,-0.000000;;, + 21;3;-0.000000, 0.592826,-0.000000;;, + 22;3;-0.000000, 0.592826,-0.000000;;, + 23;3;-0.000000, 0.592826,-0.000000;;, + 24;3;-0.000000, 0.592826,-0.000000;;, + 25;3;-0.000000, 0.592826,-0.000000;;, + 26;3;-0.000000, 0.592826,-0.000000;;, + 27;3;-0.000000, 0.592826,-0.000000;;, + 28;3;-0.000000, 0.592826,-0.000000;;, + 29;3;-0.000000, 0.592826,-0.000000;;, + 30;3;-0.000000, 0.592826,-0.000000;;, + 31;3;-0.000000, 0.592826,-0.000000;;, + 32;3;-0.000000, 0.592826,-0.000000;;, + 33;3;-0.000000, 0.592826,-0.000000;;, + 34;3;-0.000000, 0.592826,-0.000000;;, + 35;3;-0.000000, 0.592826,-0.000000;;, + 36;3;-0.000000, 0.592826,-0.000000;;, + 37;3;-0.000000, 0.592826,-0.000000;;, + 38;3;-0.000000, 0.592826,-0.000000;;, + 39;3;-0.000000, 0.592826,-0.000000;;, + 40;3;-0.000000, 0.592826,-0.000000;;, + 41;3;-0.000000, 0.592826,-0.000000;;, + 42;3;-0.000000, 0.592826,-0.000000;;, + 43;3;-0.000000, 0.592826,-0.000000;;, + 44;3;-0.000000, 0.592826,-0.000000;;, + 45;3;-0.000000, 0.592826,-0.000000;;, + 46;3;-0.000000, 0.592826,-0.000000;;, + 47;3;-0.000000, 0.592826,-0.000000;;, + 48;3;-0.000000, 0.592826,-0.000000;;, + 49;3;-0.000000, 0.592826,-0.000000;;, + 50;3;-0.000000, 0.592826,-0.000000;;, + 51;3;-0.000000, 0.592826,-0.000000;;, + 52;3;-0.000000, 0.592826,-0.000000;;, + 53;3;-0.000000, 0.592826,-0.000000;;, + 54;3;-0.000000, 0.592826,-0.000000;;, + 55;3;-0.000000, 0.592826,-0.000000;;, + 56;3;-0.000000, 0.592826,-0.000000;;, + 57;3;-0.000000, 0.592826,-0.000000;;, + 58;3;-0.000000, 0.592826,-0.000000;;, + 59;3;-0.000000, 0.592826,-0.000000;;, + 60;3;-0.000000, 0.592826,-0.000000;;, + 61;3;-0.000000, 0.592826,-0.000000;;, + 62;3;-0.000000, 0.592826,-0.000000;;, + 63;3;-0.000000, 0.592826,-0.000000;;, + 64;3;-0.000000, 0.592826,-0.000000;;, + 65;3;-0.000000, 0.592826,-0.000000;;, + 66;3;-0.000000, 0.592826,-0.000000;;, + 67;3;-0.000000, 0.592826,-0.000000;;, + 68;3;-0.000000, 0.592826,-0.000000;;, + 69;3;-0.000000, 0.592826,-0.000000;;, + 70;3;-0.000000, 0.592826,-0.000000;;, + 71;3;-0.000000, 0.592826,-0.000000;;, + 72;3;-0.000000, 0.592826,-0.000000;;, + 73;3;-0.000000, 0.592826,-0.000000;;, + 74;3;-0.000000, 0.592826,-0.000000;;, + 75;3;-0.000000, 0.592826,-0.000000;;, + 76;3;-0.000000, 0.592826,-0.000000;;, + 77;3;-0.000000, 0.592826,-0.000000;;, + 78;3;-0.000000, 0.592826,-0.000000;;, + 79;3;-0.000000, 0.592826,-0.000000;;, + 80;3;-0.000000, 0.592826,-0.000000;;, + 81;3;-0.000000, 0.592826,-0.000000;;, + 82;3;-0.000000, 0.592826,-0.000000;;, + 83;3;-0.000000, 0.592826,-0.000000;;, + 84;3;-0.000000, 0.592826,-0.000000;;, + 85;3;-0.000000, 0.592826,-0.000000;;, + 86;3;-0.000000, 0.592826,-0.000000;;, + 87;3;-0.000000, 0.592826,-0.000000;;, + 88;3;-0.000000, 0.592826,-0.000000;;, + 89;3;-0.000000, 0.592826,-0.000000;;, + 90;3;-0.000000, 0.592826,-0.000000;;, + 91;3;-0.000000, 0.592826,-0.000000;;, + 92;3;-0.000000, 0.592826,-0.000000;;, + 93;3;-0.000000, 0.592826,-0.000000;;, + 94;3;-0.000000, 0.592826,-0.000000;;, + 95;3;-0.000000, 0.592826,-0.000000;;, + 96;3;-0.000000, 0.592826,-0.000000;;, + 97;3;-0.000000, 0.592826,-0.000000;;, + 98;3;-0.000000, 0.592826,-0.000000;;, + 99;3;-0.000000, 0.592826,-0.000000;;, + 100;3;-0.000000, 0.592826,-0.000000;;, + 101;3;-0.000000, 0.592826,-0.000000;;, + 102;3;-0.000000, 0.592826,-0.000000;;, + 103;3;-0.000000, 0.592826,-0.000000;;, + 104;3;-0.000000, 0.592826,-0.000000;;, + 105;3;-0.000000, 0.592826,-0.000000;;, + 106;3;-0.000000, 0.592826,-0.000000;;, + 107;3;-0.000000, 0.592826,-0.000000;;, + 108;3;-0.000000, 0.592826,-0.000000;;, + 109;3;-0.000000, 0.592826,-0.000000;;, + 110;3;-0.000000, 0.592826,-0.000000;;, + 111;3;-0.000000, 0.592826,-0.000000;;, + 112;3;-0.000000, 0.592826,-0.000000;;, + 113;3;-0.000000, 0.592826,-0.000000;;, + 114;3;-0.000000, 0.592826,-0.000000;;, + 115;3;-0.000000, 0.592826,-0.000000;;, + 116;3;-0.000000, 0.592826,-0.000000;;, + 117;3;-0.000000, 0.592826,-0.000000;;, + 118;3;-0.000000, 0.592826,-0.000000;;, + 119;3;-0.000000, 0.592826,-0.000000;;, + 120;3;-0.000000, 0.592826,-0.000000;;, + 121;3;-0.000000, 0.592826,-0.000000;;, + 122;3;-0.000000, 0.592826,-0.000000;;, + 123;3;-0.000000, 0.592826,-0.000000;;, + 124;3;-0.000000, 0.592826,-0.000000;;, + 125;3;-0.000000, 0.592826,-0.000000;;, + 126;3;-0.000000, 0.592826,-0.000000;;, + 127;3;-0.000000, 0.592826,-0.000000;;, + 128;3;-0.000000, 0.592826,-0.000000;;, + 129;3;-0.000000, 0.592826,-0.000000;;, + 130;3;-0.000000, 0.592826,-0.000000;;, + 131;3;-0.000000, 0.592826,-0.000000;;, + 132;3;-0.000000, 0.592826,-0.000000;;, + 133;3;-0.000000, 0.592826,-0.000000;;, + 134;3;-0.000000, 0.592826,-0.000000;;, + 135;3;-0.000000, 0.592826,-0.000000;;, + 136;3;-0.000000, 0.592826,-0.000000;;, + 137;3;-0.000000, 0.592826,-0.000000;;, + 138;3;-0.000000, 0.592826,-0.000000;;, + 139;3;-0.000000, 0.592826,-0.000000;;, + 140;3;-0.000000, 0.592826,-0.000000;;, + 141;3;-0.000000, 0.592826,-0.000000;;, + 142;3;-0.000000, 0.592826,-0.000000;;, + 143;3;-0.000000, 0.592826,-0.000000;;, + 144;3;-0.000000, 0.592826,-0.000000;;, + 145;3;-0.000000, 0.592826,-0.000000;;, + 146;3;-0.000000, 0.592826,-0.000000;;, + 147;3;-0.000000, 0.592826,-0.000000;;, + 148;3;-0.000000, 0.592826,-0.000000;;, + 149;3;-0.000000, 0.592826,-0.000000;;, + 150;3;-0.000000, 0.592826,-0.000000;;, + 151;3;-0.000000, 0.592826,-0.000000;;, + 152;3;-0.000000, 0.592826,-0.000000;;, + 153;3;-0.000000, 0.592826,-0.000000;;, + 154;3;-0.000000, 0.592826,-0.000000;;, + 155;3;-0.000000, 0.592826,-0.000000;;, + 156;3;-0.000000, 0.592826,-0.000000;;, + 157;3;-0.000000, 0.592826,-0.000000;;, + 158;3;-0.000000, 0.592826,-0.000000;;, + 159;3;-0.000000, 0.592826,-0.000000;;, + 160;3;-0.000000, 0.592826,-0.000000;;, + 161;3;-0.000000, 0.592826,-0.000000;;, + 162;3;-0.000000, 0.592826,-0.000000;;, + 163;3;-0.000000, 0.592826,-0.000000;;, + 164;3;-0.000000, 0.592826,-0.000000;;, + 165;3;-0.000000, 0.592826,-0.000000;;, + 166;3;-0.000000, 0.592826,-0.000000;;, + 167;3;-0.000000, 0.592826,-0.000000;;, + 168;3;-0.000000, 0.592826,-0.000000;;, + 169;3;-0.000000, 0.592826,-0.000000;;, + 170;3;-0.000000, 0.592826,-0.000000;;, + 171;3;-0.000000, 0.592826,-0.000000;;, + 172;3;-0.000000, 0.592826,-0.000000;;, + 173;3;-0.000000, 0.592826,-0.000000;;, + 174;3;-0.000000, 0.592826,-0.000000;;, + 175;3;-0.000000, 0.592826,-0.000000;;, + 176;3;-0.000000, 0.592826,-0.000000;;, + 177;3;-0.000000, 0.592826,-0.000000;;, + 178;3;-0.000000, 0.592826,-0.000000;;, + 179;3;-0.000000, 0.592826,-0.000000;;, + 180;3;-0.000000, 0.592826, 0.000000;;, + 181;3;-0.000000, 0.592826, 0.000000;;, + 182;3;-0.000000, 0.592826,-0.000000;;, + 183;3;-0.000000, 0.592826, 0.000000;;, + 184;3; 0.000000, 0.592826,-0.000000;;, + 185;3;-0.000000, 0.592826, 0.000000;;, + 186;3; 0.000000, 0.592826,-0.000000;;, + 187;3;-0.000000, 0.592826, 0.000000;;, + 188;3; 0.000000, 0.592826, 0.000000;;, + 189;3; 0.000000, 0.592826, 0.000000;;, + 190;3;-0.000000, 0.592826,-0.000000;;, + 191;3; 0.000000, 0.592826,-0.000000;;, + 192;3; 0.000000, 0.592826,-0.000000;;, + 193;3;-0.000000, 0.592826, 0.000000;;, + 194;3;-0.000000, 0.592826,-0.000000;;, + 195;3; 0.000000, 0.592826,-0.000000;;, + 196;3;-0.000000, 0.592826,-0.000000;;, + 197;3; 0.000000, 0.592826, 0.000000;;, + 198;3; 0.000000, 0.592826,-0.000000;;, + 199;3;-0.000000, 0.592826,-0.000000;;, + 200;3;-0.000000, 0.592826,-0.000000;;, + 201;3;-0.000000, 0.592826,-0.000000;;, + 202;3;-0.000000, 0.592826,-0.000000;;, + 203;3;-0.000000, 0.592826,-0.000000;;, + 204;3;-0.000000, 0.592826,-0.000000;;, + 205;3;-0.000000, 0.592826,-0.000000;;, + 206;3;-0.000000, 0.592826,-0.000000;;, + 207;3;-0.000000, 0.592826,-0.000000;;, + 208;3;-0.000000, 0.592826,-0.000000;;, + 209;3;-0.000000, 0.592826,-0.000000;;, + 210;3;-0.000000, 0.592826,-0.000000;;, + 211;3;-0.000000, 0.592826,-0.000000;;, + 212;3;-0.000000, 0.592826,-0.000000;;, + 213;3;-0.000000, 0.592826,-0.000000;;, + 214;3;-0.000000, 0.592826,-0.000000;;, + 215;3;-0.000000, 0.592826,-0.000000;;, + 216;3;-0.000000, 0.592826,-0.000000;;, + 217;3;-0.000000, 0.592826,-0.000000;;, + 218;3;-0.000000, 0.592826,-0.000000;;, + 219;3;-0.000000, 0.592826,-0.000000;;, + 220;3;-0.000000, 0.592826,-0.000000;;, + 221;3;-0.000000, 0.592826,-0.000000;;, + 222;3;-0.000000, 0.592826,-0.000000;;, + 223;3;-0.000000, 0.592826,-0.000000;;, + 224;3;-0.000000, 0.592826,-0.000000;;, + 225;3;-0.000000, 0.592826,-0.000000;;, + 226;3;-0.000000, 0.592826,-0.000000;;, + 227;3;-0.000000, 0.592826,-0.000000;;, + 228;3;-0.000000, 0.592826,-0.000000;;, + 229;3;-0.000000, 0.592826,-0.000000;;, + 230;3;-0.000000, 0.592826,-0.000000;;, + 231;3;-0.000000, 0.592826,-0.000000;;, + 232;3;-0.000000, 0.592826,-0.000000;;, + 233;3;-0.000000, 0.592826,-0.000000;;, + 234;3;-0.000000, 0.592826,-0.000000;;, + 235;3;-0.000000, 0.592826,-0.000000;;, + 236;3;-0.000000, 0.592826,-0.000000;;, + 237;3;-0.000000, 0.592826,-0.000000;;, + 238;3;-0.000000, 0.592826,-0.000000;;, + 239;3;-0.000000, 0.592826,-0.000000;;, + 240;3;-0.000000, 0.592826,-0.000000;;, + 241;3;-0.000000, 0.592826,-0.000000;;, + 242;3;-0.000000, 0.592826,-0.000000;;, + 243;3;-0.000000, 0.592826,-0.000000;;, + 244;3;-0.000000, 0.592826,-0.000000;;, + 245;3;-0.000000, 0.592826,-0.000000;;, + 246;3;-0.000000, 0.592826,-0.000000;;, + 247;3;-0.000000, 0.592826,-0.000000;;, + 248;3;-0.000000, 0.592826,-0.000000;;, + 249;3;-0.000000, 0.592826,-0.000000;;; + } + } + Animation { + {Armature_Bone_023} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 1;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 2;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 3;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 4;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 5;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 6;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 7;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 8;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 9;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 10;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 11;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 12;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 13;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 14;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 15;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 16;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 17;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 18;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 19;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 20;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 21;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 22;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 23;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 24;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 25;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 26;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 27;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 28;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 29;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 30;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 31;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 32;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 33;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 34;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 35;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 36;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 37;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 38;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 39;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 40;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 41;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 42;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 43;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 44;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 45;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 46;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 47;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 48;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 49;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 50;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 51;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 52;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 53;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 54;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 55;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 56;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 57;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 58;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 59;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 60;4;-0.987429,-0.157259, 0.000184,-0.000183;;, + 61;4;-0.986807,-0.158733, 0.000741,-0.000734;;, + 62;4;-0.985765,-0.161200, 0.001672,-0.001656;;, + 63;4;-0.984303,-0.164666, 0.002980,-0.002952;;, + 64;4;-0.982419,-0.169130, 0.004664,-0.004621;;, + 65;4;-0.980116,-0.174587, 0.006723,-0.006661;;, + 66;4;-0.977398,-0.181026, 0.009153,-0.009068;;, + 67;4;-0.974273,-0.188429, 0.011947,-0.011836;;, + 68;4;-0.970752,-0.196773, 0.015096,-0.014955;;, + 69;4;-0.966848,-0.206023, 0.018587,-0.018414;;, + 70;4;-0.962579,-0.216138, 0.022404,-0.022195;;, + 71;4;-0.957966,-0.227068, 0.026528,-0.026282;;, + 72;4;-0.953034,-0.238753, 0.030938,-0.030650;;, + 73;4;-0.947813,-0.251124, 0.035606,-0.035275;;, + 74;4;-0.942335,-0.264104, 0.040505,-0.040128;;, + 75;4;-0.936637,-0.277605, 0.045600,-0.045175;;, + 76;4;-0.930758,-0.291534, 0.050856,-0.050383;;, + 77;4;-0.924742,-0.305790, 0.056236,-0.055712;;, + 78;4;-0.918632,-0.320267, 0.061699,-0.061125;;, + 79;4;-0.912475,-0.334855, 0.067204,-0.066579;;, + 80;4;-0.906318,-0.349444, 0.072709,-0.072033;;, + 81;4;-0.900208,-0.363921, 0.078173,-0.077445;;, + 82;4;-0.894191,-0.378177, 0.083552,-0.082775;;, + 83;4;-0.888312,-0.392106, 0.088809,-0.087982;;, + 84;4;-0.882614,-0.405607, 0.093904,-0.093030;;, + 85;4;-0.877136,-0.418587, 0.098802,-0.097882;;, + 86;4;-0.871915,-0.430958, 0.103470,-0.102507;;, + 87;4;-0.866983,-0.442643, 0.107880,-0.106876;;, + 88;4;-0.862370,-0.453573, 0.112005,-0.110962;;, + 89;4;-0.858101,-0.463688, 0.115822,-0.114744;;, + 90;4;-0.854197,-0.472938, 0.119312,-0.118202;;, + 91;4;-0.850676,-0.481282, 0.122461,-0.121321;;, + 92;4;-0.847551,-0.488685, 0.125255,-0.124089;;, + 93;4;-0.844834,-0.495124, 0.127685,-0.126497;;, + 94;4;-0.842531,-0.500581, 0.129744,-0.128537;;, + 95;4;-0.840647,-0.505045, 0.131429,-0.130206;;, + 96;4;-0.839184,-0.508511, 0.132736,-0.131501;;, + 97;4;-0.838143,-0.510978, 0.133668,-0.132424;;, + 98;4;-0.837521,-0.512452, 0.134224,-0.132975;;, + 99;4;-0.837314,-0.512941, 0.134408,-0.133158;;, + 100;4;-0.838389,-0.510157, 0.133209,-0.132212;;, + 101;4;-0.841728,-0.501509, 0.129484,-0.129275;;, + 102;4;-0.847399,-0.486818, 0.123155,-0.124285;;, + 103;4;-0.855259,-0.466458, 0.114385,-0.117371;;, + 104;4;-0.864882,-0.441532, 0.103647,-0.108905;;, + 105;4;-0.875587,-0.413802, 0.091702,-0.099487;;, + 106;4;-0.886586,-0.385312, 0.079429,-0.089811;;, + 107;4;-0.897168,-0.357900, 0.067621,-0.080501;;, + 108;4;-0.906828,-0.332878, 0.056843,-0.072003;;, + 109;4;-0.915278,-0.310990, 0.047414,-0.064569;;, + 110;4;-0.923728,-0.289102, 0.037985,-0.057135;;, + 111;4;-0.933387,-0.264081, 0.027207,-0.048637;;, + 112;4;-0.943970,-0.236668, 0.015398,-0.039327;;, + 113;4;-0.954968,-0.208178, 0.003126,-0.029651;;, + 114;4;-0.965673,-0.180448,-0.008820,-0.020233;;, + 115;4;-0.975296,-0.155522,-0.019557,-0.011767;;, + 116;4;-0.983156,-0.135162,-0.028328,-0.004852;;, + 117;4;-0.988828,-0.120471,-0.034656, 0.000137;;, + 118;4;-0.992166,-0.111823,-0.038381, 0.003074;;, + 119;4;-0.993241,-0.109039,-0.039581, 0.004020;;, + 120;4;-0.992166,-0.111823,-0.038381, 0.003074;;, + 121;4;-0.988828,-0.120471,-0.034656, 0.000137;;, + 122;4;-0.983156,-0.135162,-0.028328,-0.004852;;, + 123;4;-0.975296,-0.155522,-0.019557,-0.011767;;, + 124;4;-0.965674,-0.180448,-0.008820,-0.020233;;, + 125;4;-0.954968,-0.208178, 0.003126,-0.029651;;, + 126;4;-0.943970,-0.236668, 0.015398,-0.039327;;, + 127;4;-0.933387,-0.264081, 0.027207,-0.048637;;, + 128;4;-0.923728,-0.289102, 0.037985,-0.057135;;, + 129;4;-0.915278,-0.310990, 0.047414,-0.064569;;, + 130;4;-0.906828,-0.332878, 0.056843,-0.072003;;, + 131;4;-0.897168,-0.357900, 0.067621,-0.080501;;, + 132;4;-0.886586,-0.385312, 0.079429,-0.089811;;, + 133;4;-0.875587,-0.413802, 0.091702,-0.099487;;, + 134;4;-0.864882,-0.441532, 0.103647,-0.108905;;, + 135;4;-0.855259,-0.466458, 0.114385,-0.117371;;, + 136;4;-0.847399,-0.486818, 0.123155,-0.124285;;, + 137;4;-0.841728,-0.501509, 0.129484,-0.129275;;, + 138;4;-0.838389,-0.510157, 0.133209,-0.132212;;, + 139;4;-0.837314,-0.512941, 0.134408,-0.133158;;, + 140;4;-0.841728,-0.501509, 0.129484,-0.129275;;, + 141;4;-0.855259,-0.466458, 0.114385,-0.117371;;, + 142;4;-0.875587,-0.413802, 0.091702,-0.099487;;, + 143;4;-0.897168,-0.357900, 0.067621,-0.080501;;, + 144;4;-0.915278,-0.310990, 0.047414,-0.064569;;, + 145;4;-0.933387,-0.264081, 0.027207,-0.048637;;, + 146;4;-0.954968,-0.208178, 0.003126,-0.029651;;, + 147;4;-0.975296,-0.155522,-0.019557,-0.011767;;, + 148;4;-0.988828,-0.120471,-0.034656, 0.000137;;, + 149;4;-0.993241,-0.109039,-0.039581, 0.004020;;, + 150;4;-0.988828,-0.120471,-0.034656, 0.000137;;, + 151;4;-0.975296,-0.155522,-0.019557,-0.011767;;, + 152;4;-0.954968,-0.208178, 0.003126,-0.029651;;, + 153;4;-0.933387,-0.264081, 0.027207,-0.048637;;, + 154;4;-0.915278,-0.310990, 0.047414,-0.064569;;, + 155;4;-0.897168,-0.357900, 0.067621,-0.080501;;, + 156;4;-0.875587,-0.413802, 0.091702,-0.099487;;, + 157;4;-0.855259,-0.466458, 0.114385,-0.117371;;, + 158;4;-0.841728,-0.501509, 0.129484,-0.129275;;, + 159;4;-0.837314,-0.512941, 0.134408,-0.133158;;, + 160;4;-0.838143,-0.510978, 0.133668,-0.132424;;, + 161;4;-0.840647,-0.505045, 0.131429,-0.130206;;, + 162;4;-0.844834,-0.495124, 0.127685,-0.126497;;, + 163;4;-0.850676,-0.481282, 0.122461,-0.121321;;, + 164;4;-0.858101,-0.463688, 0.115822,-0.114744;;, + 165;4;-0.866983,-0.442643, 0.107880,-0.106876;;, + 166;4;-0.877136,-0.418587, 0.098802,-0.097882;;, + 167;4;-0.888312,-0.392106, 0.088809,-0.087982;;, + 168;4;-0.900208,-0.363921, 0.078173,-0.077445;;, + 169;4;-0.912475,-0.334855, 0.067204,-0.066579;;, + 170;4;-0.924742,-0.305790, 0.056236,-0.055712;;, + 171;4;-0.936637,-0.277605, 0.045600,-0.045175;;, + 172;4;-0.947813,-0.251124, 0.035606,-0.035275;;, + 173;4;-0.957966,-0.227068, 0.026528,-0.026281;;, + 174;4;-0.966848,-0.206023, 0.018587,-0.018414;;, + 175;4;-0.974273,-0.188429, 0.011947,-0.011836;;, + 176;4;-0.980116,-0.174587, 0.006723,-0.006661;;, + 177;4;-0.984303,-0.164666, 0.002980,-0.002952;;, + 178;4;-0.986807,-0.158733, 0.000741,-0.000734;;, + 179;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 180;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 181;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 182;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 183;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 184;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 185;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 186;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 187;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 188;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 189;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 190;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 191;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 192;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 193;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 194;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 195;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 196;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 197;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 198;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 199;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 200;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 201;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 202;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 203;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 204;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 205;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 206;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 207;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 208;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 209;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 210;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 211;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 212;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 213;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 214;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 215;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 216;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 217;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 218;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 219;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 220;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 221;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 222;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 223;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 224;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 225;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 226;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 227;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 228;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 229;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 230;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 231;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 232;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 233;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 234;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 235;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 236;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 237;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 238;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 239;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 240;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 241;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 242;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 243;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 244;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 245;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 246;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 247;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 248;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 249;4;-0.987635,-0.156770,-0.000000,-0.000000;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3;-0.000000, 1.294481,-0.000000;;, + 1;3; 0.000000, 1.294481,-0.000000;;, + 2;3; 0.000000, 1.294482,-0.000000;;, + 3;3;-0.000000, 1.294482,-0.000000;;, + 4;3; 0.000000, 1.294481, 0.000000;;, + 5;3; 0.000000, 1.294482,-0.000000;;, + 6;3;-0.000000, 1.294482, 0.000000;;, + 7;3; 0.000000, 1.294482,-0.000000;;, + 8;3;-0.000000, 1.294482,-0.000000;;, + 9;3;-0.000000, 1.294482,-0.000000;;, + 10;3; 0.000000, 1.294482,-0.000000;;, + 11;3;-0.000000, 1.294482, 0.000000;;, + 12;3;-0.000000, 1.294482,-0.000000;;, + 13;3; 0.000000, 1.294482,-0.000000;;, + 14;3;-0.000000, 1.294482,-0.000000;;, + 15;3;-0.000000, 1.294482,-0.000000;;, + 16;3;-0.000000, 1.294482,-0.000000;;, + 17;3;-0.000000, 1.294482, 0.000000;;, + 18;3;-0.000000, 1.294482, 0.000000;;, + 19;3; 0.000000, 1.294482,-0.000000;;, + 20;3;-0.000000, 1.294482,-0.000000;;, + 21;3; 0.000000, 1.294481, 0.000000;;, + 22;3; 0.000000, 1.294481, 0.000000;;, + 23;3;-0.000000, 1.294482,-0.000000;;, + 24;3; 0.000000, 1.294482, 0.000000;;, + 25;3;-0.000000, 1.294482, 0.000000;;, + 26;3; 0.000000, 1.294482,-0.000000;;, + 27;3;-0.000000, 1.294482, 0.000000;;, + 28;3; 0.000000, 1.294481, 0.000000;;, + 29;3;-0.000000, 1.294482,-0.000000;;, + 30;3; 0.000000, 1.294481,-0.000000;;, + 31;3; 0.000000, 1.294482,-0.000000;;, + 32;3; 0.000000, 1.294482,-0.000000;;, + 33;3; 0.000000, 1.294482, 0.000000;;, + 34;3;-0.000000, 1.294482, 0.000000;;, + 35;3;-0.000000, 1.294481, 0.000000;;, + 36;3;-0.000000, 1.294482,-0.000000;;, + 37;3;-0.000000, 1.294482,-0.000000;;, + 38;3;-0.000000, 1.294482,-0.000000;;, + 39;3;-0.000000, 1.294482, 0.000000;;, + 40;3; 0.000000, 1.294481,-0.000000;;, + 41;3; 0.000000, 1.294481, 0.000000;;, + 42;3; 0.000000, 1.294481,-0.000000;;, + 43;3; 0.000000, 1.294481, 0.000000;;, + 44;3; 0.000000, 1.294482,-0.000000;;, + 45;3;-0.000000, 1.294482,-0.000000;;, + 46;3;-0.000000, 1.294481,-0.000000;;, + 47;3;-0.000000, 1.294482,-0.000000;;, + 48;3; 0.000000, 1.294482,-0.000000;;, + 49;3;-0.000000, 1.294482, 0.000000;;, + 50;3; 0.000000, 1.294481,-0.000000;;, + 51;3;-0.000000, 1.294482,-0.000000;;, + 52;3;-0.000000, 1.294482, 0.000000;;, + 53;3; 0.000000, 1.294481,-0.000000;;, + 54;3; 0.000000, 1.294482,-0.000000;;, + 55;3; 0.000000, 1.294482, 0.000000;;, + 56;3;-0.000000, 1.294482,-0.000000;;, + 57;3; 0.000000, 1.294481,-0.000000;;, + 58;3;-0.000000, 1.294482,-0.000000;;, + 59;3;-0.000000, 1.294481,-0.000000;;, + 60;3;-0.000000, 1.294481,-0.000000;;, + 61;3;-0.000000, 1.294482, 0.000000;;, + 62;3; 0.000000, 1.294481,-0.000000;;, + 63;3;-0.000000, 1.294482,-0.000000;;, + 64;3;-0.000000, 1.294482,-0.000000;;, + 65;3; 0.000000, 1.294482,-0.000000;;, + 66;3; 0.000000, 1.294482,-0.000000;;, + 67;3;-0.000000, 1.294482,-0.000000;;, + 68;3;-0.000000, 1.294482, 0.000000;;, + 69;3;-0.000000, 1.294482,-0.000000;;, + 70;3; 0.000000, 1.294482, 0.000000;;, + 71;3; 0.000000, 1.294481, 0.000000;;, + 72;3; 0.000000, 1.294481,-0.000000;;, + 73;3;-0.000000, 1.294482, 0.000000;;, + 74;3;-0.000000, 1.294481, 0.000000;;, + 75;3;-0.000000, 1.294482,-0.000000;;, + 76;3;-0.000000, 1.294482, 0.000000;;, + 77;3; 0.000000, 1.294482,-0.000000;;, + 78;3; 0.000000, 1.294481,-0.000000;;, + 79;3; 0.000000, 1.294482, 0.000000;;, + 80;3;-0.000000, 1.294482,-0.000000;;, + 81;3;-0.000000, 1.294481,-0.000000;;, + 82;3;-0.000000, 1.294482,-0.000000;;, + 83;3;-0.000000, 1.294481,-0.000000;;, + 84;3;-0.000000, 1.294482, 0.000000;;, + 85;3;-0.000000, 1.294482,-0.000000;;, + 86;3;-0.000000, 1.294482,-0.000000;;, + 87;3;-0.000000, 1.294482,-0.000000;;, + 88;3; 0.000000, 1.294482,-0.000000;;, + 89;3;-0.000000, 1.294481,-0.000000;;, + 90;3;-0.000000, 1.294481,-0.000000;;, + 91;3; 0.000000, 1.294482,-0.000000;;, + 92;3;-0.000000, 1.294481,-0.000000;;, + 93;3;-0.000000, 1.294482,-0.000000;;, + 94;3; 0.000000, 1.294482, 0.000000;;, + 95;3;-0.000000, 1.294482, 0.000000;;, + 96;3;-0.000000, 1.294482,-0.000000;;, + 97;3;-0.000000, 1.294481,-0.000000;;, + 98;3;-0.000000, 1.294482,-0.000000;;, + 99;3; 0.000000, 1.294481,-0.000000;;, + 100;3;-0.000000, 1.294482,-0.000000;;, + 101;3; 0.000000, 1.294482,-0.000000;;, + 102;3; 0.000000, 1.294481, 0.000000;;, + 103;3;-0.000000, 1.294482,-0.000000;;, + 104;3;-0.000000, 1.294482,-0.000000;;, + 105;3; 0.000000, 1.294481, 0.000000;;, + 106;3; 0.000000, 1.294482, 0.000000;;, + 107;3; 0.000000, 1.294482,-0.000000;;, + 108;3;-0.000000, 1.294482, 0.000000;;, + 109;3; 0.000000, 1.294481, 0.000000;;, + 110;3; 0.000000, 1.294482,-0.000000;;, + 111;3; 0.000000, 1.294482, 0.000000;;, + 112;3;-0.000000, 1.294482, 0.000000;;, + 113;3;-0.000000, 1.294481, 0.000000;;, + 114;3; 0.000000, 1.294481,-0.000000;;, + 115;3;-0.000000, 1.294481, 0.000000;;, + 116;3; 0.000000, 1.294482,-0.000000;;, + 117;3;-0.000000, 1.294482, 0.000000;;, + 118;3; 0.000000, 1.294482,-0.000000;;, + 119;3;-0.000000, 1.294481, 0.000000;;, + 120;3; 0.000000, 1.294482, 0.000000;;, + 121;3; 0.000000, 1.294482, 0.000000;;, + 122;3;-0.000000, 1.294482, 0.000000;;, + 123;3; 0.000000, 1.294482,-0.000000;;, + 124;3;-0.000000, 1.294482,-0.000000;;, + 125;3; 0.000000, 1.294482,-0.000000;;, + 126;3;-0.000000, 1.294482,-0.000000;;, + 127;3;-0.000000, 1.294482,-0.000000;;, + 128;3; 0.000000, 1.294482, 0.000000;;, + 129;3; 0.000000, 1.294481,-0.000000;;, + 130;3; 0.000000, 1.294482,-0.000000;;, + 131;3;-0.000000, 1.294482, 0.000000;;, + 132;3; 0.000000, 1.294482,-0.000000;;, + 133;3;-0.000000, 1.294482, 0.000000;;, + 134;3;-0.000000, 1.294481, 0.000000;;, + 135;3;-0.000000, 1.294482, 0.000000;;, + 136;3;-0.000000, 1.294481,-0.000000;;, + 137;3;-0.000000, 1.294482, 0.000000;;, + 138;3; 0.000000, 1.294482, 0.000000;;, + 139;3; 0.000000, 1.294481,-0.000000;;, + 140;3;-0.000000, 1.294481,-0.000000;;, + 141;3;-0.000000, 1.294482, 0.000000;;, + 142;3; 0.000000, 1.294482, 0.000000;;, + 143;3;-0.000000, 1.294482,-0.000000;;, + 144;3; 0.000000, 1.294481, 0.000000;;, + 145;3; 0.000000, 1.294482, 0.000000;;, + 146;3;-0.000000, 1.294481, 0.000000;;, + 147;3;-0.000000, 1.294481, 0.000000;;, + 148;3;-0.000000, 1.294482, 0.000000;;, + 149;3;-0.000000, 1.294481, 0.000000;;, + 150;3; 0.000000, 1.294482, 0.000000;;, + 151;3; 0.000000, 1.294482,-0.000000;;, + 152;3; 0.000000, 1.294482,-0.000000;;, + 153;3;-0.000000, 1.294482,-0.000000;;, + 154;3; 0.000000, 1.294481,-0.000000;;, + 155;3; 0.000000, 1.294482, 0.000000;;, + 156;3; 0.000000, 1.294481,-0.000000;;, + 157;3;-0.000000, 1.294482,-0.000000;;, + 158;3; 0.000000, 1.294482, 0.000000;;, + 159;3; 0.000000, 1.294481,-0.000000;;, + 160;3;-0.000000, 1.294482,-0.000000;;, + 161;3;-0.000000, 1.294482,-0.000000;;, + 162;3; 0.000000, 1.294482,-0.000000;;, + 163;3;-0.000000, 1.294482, 0.000000;;, + 164;3;-0.000000, 1.294482, 0.000000;;, + 165;3; 0.000000, 1.294482,-0.000000;;, + 166;3; 0.000000, 1.294482,-0.000000;;, + 167;3; 0.000000, 1.294481,-0.000000;;, + 168;3;-0.000000, 1.294482,-0.000000;;, + 169;3;-0.000000, 1.294481, 0.000000;;, + 170;3;-0.000000, 1.294481,-0.000000;;, + 171;3;-0.000000, 1.294481, 0.000000;;, + 172;3;-0.000000, 1.294481,-0.000000;;, + 173;3;-0.000000, 1.294482, 0.000000;;, + 174;3;-0.000000, 1.294482,-0.000000;;, + 175;3; 0.000000, 1.294481,-0.000000;;, + 176;3; 0.000000, 1.294481,-0.000000;;, + 177;3; 0.000000, 1.294482, 0.000000;;, + 178;3; 0.000000, 1.294482, 0.000000;;, + 179;3;-0.000000, 1.294481,-0.000000;;, + 180;3;-0.000000, 1.294482,-0.000000;;, + 181;3; 0.000000, 1.294482,-0.000000;;, + 182;3;-0.000000, 1.294482,-0.000000;;, + 183;3;-0.000000, 1.294481,-0.000000;;, + 184;3; 0.000000, 1.294482,-0.000000;;, + 185;3; 0.000000, 1.294482, 0.000000;;, + 186;3; 0.000000, 1.294481, 0.000000;;, + 187;3; 0.000000, 1.294481, 0.000000;;, + 188;3; 0.000000, 1.294482,-0.000000;;, + 189;3; 0.000000, 1.294482,-0.000000;;, + 190;3; 0.000000, 1.294482, 0.000000;;, + 191;3;-0.000000, 1.294481, 0.000000;;, + 192;3;-0.000000, 1.294482, 0.000000;;, + 193;3; 0.000000, 1.294481,-0.000000;;, + 194;3;-0.000000, 1.294482, 0.000000;;, + 195;3; 0.000000, 1.294481,-0.000000;;, + 196;3;-0.000000, 1.294482, 0.000000;;, + 197;3;-0.000000, 1.294482, 0.000000;;, + 198;3; 0.000000, 1.294481, 0.000000;;, + 199;3;-0.000000, 1.294481,-0.000000;;, + 200;3;-0.000000, 1.294481,-0.000000;;, + 201;3;-0.000000, 1.294481,-0.000000;;, + 202;3;-0.000000, 1.294481,-0.000000;;, + 203;3;-0.000000, 1.294481,-0.000000;;, + 204;3;-0.000000, 1.294481,-0.000000;;, + 205;3;-0.000000, 1.294481,-0.000000;;, + 206;3;-0.000000, 1.294481,-0.000000;;, + 207;3;-0.000000, 1.294481,-0.000000;;, + 208;3;-0.000000, 1.294481,-0.000000;;, + 209;3;-0.000000, 1.294481,-0.000000;;, + 210;3;-0.000000, 1.294481,-0.000000;;, + 211;3;-0.000000, 1.294481,-0.000000;;, + 212;3;-0.000000, 1.294481,-0.000000;;, + 213;3;-0.000000, 1.294481,-0.000000;;, + 214;3;-0.000000, 1.294481,-0.000000;;, + 215;3;-0.000000, 1.294481,-0.000000;;, + 216;3;-0.000000, 1.294481,-0.000000;;, + 217;3;-0.000000, 1.294481,-0.000000;;, + 218;3;-0.000000, 1.294481,-0.000000;;, + 219;3;-0.000000, 1.294481,-0.000000;;, + 220;3;-0.000000, 1.294481,-0.000000;;, + 221;3;-0.000000, 1.294481,-0.000000;;, + 222;3;-0.000000, 1.294481,-0.000000;;, + 223;3;-0.000000, 1.294481,-0.000000;;, + 224;3;-0.000000, 1.294481,-0.000000;;, + 225;3;-0.000000, 1.294481,-0.000000;;, + 226;3;-0.000000, 1.294481,-0.000000;;, + 227;3;-0.000000, 1.294481,-0.000000;;, + 228;3;-0.000000, 1.294481,-0.000000;;, + 229;3;-0.000000, 1.294481,-0.000000;;, + 230;3;-0.000000, 1.294481,-0.000000;;, + 231;3;-0.000000, 1.294481,-0.000000;;, + 232;3;-0.000000, 1.294481,-0.000000;;, + 233;3;-0.000000, 1.294481,-0.000000;;, + 234;3;-0.000000, 1.294481,-0.000000;;, + 235;3;-0.000000, 1.294481,-0.000000;;, + 236;3;-0.000000, 1.294481,-0.000000;;, + 237;3;-0.000000, 1.294481,-0.000000;;, + 238;3;-0.000000, 1.294481,-0.000000;;, + 239;3;-0.000000, 1.294481,-0.000000;;, + 240;3;-0.000000, 1.294481,-0.000000;;, + 241;3;-0.000000, 1.294481,-0.000000;;, + 242;3;-0.000000, 1.294481,-0.000000;;, + 243;3;-0.000000, 1.294481,-0.000000;;, + 244;3;-0.000000, 1.294481,-0.000000;;, + 245;3;-0.000000, 1.294481,-0.000000;;, + 246;3;-0.000000, 1.294481,-0.000000;;, + 247;3;-0.000000, 1.294481,-0.000000;;, + 248;3;-0.000000, 1.294481,-0.000000;;, + 249;3;-0.000000, 1.294481,-0.000000;;; + } + } + Animation { + {Armature_Bone_027} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 1;4;-0.967903,-0.251025, 0.000767, 0.000246;;, + 2;4;-0.968074,-0.249465, 0.003085, 0.000990;;, + 3;4;-0.968359,-0.246858, 0.006959, 0.002233;;, + 4;4;-0.968757,-0.243225, 0.012357, 0.003965;;, + 5;4;-0.969261,-0.238621, 0.019200, 0.006160;;, + 6;4;-0.969861,-0.233136, 0.027349, 0.008775;;, + 7;4;-0.970543,-0.226905, 0.036609, 0.011746;;, + 8;4;-0.971287,-0.220103, 0.046716, 0.014989;;, + 9;4;-0.972071,-0.212942, 0.057358, 0.018403;;, + 10;4;-0.972868,-0.205658, 0.068181, 0.021876;;, + 11;4;-0.973652,-0.198497, 0.078823, 0.025290;;, + 12;4;-0.974396,-0.191695, 0.088930, 0.028533;;, + 13;4;-0.975078,-0.185464, 0.098189, 0.031504;;, + 14;4;-0.975678,-0.179979, 0.106339, 0.034119;;, + 15;4;-0.976182,-0.175375, 0.113181, 0.036314;;, + 16;4;-0.976580,-0.171742, 0.118579, 0.038046;;, + 17;4;-0.976865,-0.169135, 0.122454, 0.039289;;, + 18;4;-0.977036,-0.167575, 0.124772, 0.040033;;, + 19;4;-0.977092,-0.167059, 0.125539, 0.040279;;, + 20;4;-0.977082,-0.167170, 0.125326, 0.040211;;, + 21;4;-0.977050,-0.167511, 0.124674, 0.040002;;, + 22;4;-0.976996,-0.168095, 0.123564, 0.039646;;, + 23;4;-0.976919,-0.168931, 0.121986, 0.039139;;, + 24;4;-0.976816,-0.170022, 0.119935, 0.038481;;, + 25;4;-0.976690,-0.171370, 0.117420, 0.037674;;, + 26;4;-0.976538,-0.172967, 0.114460, 0.036725;;, + 27;4;-0.976364,-0.174800, 0.111091, 0.035644;;, + 28;4;-0.976168,-0.176846, 0.107365, 0.034448;;, + 29;4;-0.975953,-0.179075, 0.103344, 0.033158;;, + 30;4;-0.975721,-0.181452, 0.099104, 0.031798;;, + 31;4;-0.975477,-0.183936, 0.094725, 0.030393;;, + 32;4;-0.975224,-0.186488, 0.090288, 0.028969;;, + 33;4;-0.974965,-0.189067, 0.085870, 0.027551;;, + 34;4;-0.974705,-0.191637, 0.081538, 0.026162;;, + 35;4;-0.974445,-0.194167, 0.077350, 0.024818;;, + 36;4;-0.974189,-0.196632, 0.073350, 0.023534;;, + 37;4;-0.973938,-0.199011, 0.069573, 0.022322;;, + 38;4;-0.973695,-0.201290, 0.066041, 0.021189;;, + 39;4;-0.973459,-0.203460, 0.062769, 0.020140;;, + 40;4;-0.973221,-0.205651, 0.059498, 0.019090;;, + 41;4;-0.972969,-0.208000, 0.055966, 0.017957;;, + 42;4;-0.972702,-0.210502, 0.052189, 0.016745;;, + 43;4;-0.972422,-0.213147, 0.048189, 0.015462;;, + 44;4;-0.972130,-0.215920, 0.044001, 0.014118;;, + 45;4;-0.971826,-0.218801, 0.039669, 0.012728;;, + 46;4;-0.971513,-0.221762, 0.035251, 0.011310;;, + 47;4;-0.971193,-0.224770, 0.030814, 0.009887;;, + 48;4;-0.970868,-0.227785, 0.026435, 0.008482;;, + 49;4;-0.970543,-0.230765, 0.022195, 0.007121;;, + 50;4;-0.970221,-0.233667, 0.018174, 0.005831;;, + 51;4;-0.969904,-0.236450, 0.014447, 0.004636;;, + 52;4;-0.969597,-0.239078, 0.011079, 0.003555;;, + 53;4;-0.969301,-0.241521, 0.008119, 0.002605;;, + 54;4;-0.969019,-0.243757, 0.005604, 0.001798;;, + 55;4;-0.968752,-0.245771, 0.003553, 0.001140;;, + 56;4;-0.968501,-0.247556, 0.001975, 0.000634;;, + 57;4;-0.968266,-0.249110, 0.000865, 0.000278;;, + 58;4;-0.968048,-0.250436, 0.000213, 0.000068;;, + 59;4;-0.967847,-0.251541,-0.000000, 0.000000;;, + 60;4;-0.967654,-0.252526, 0.000017, 0.000006;;, + 61;4;-0.967462,-0.253486, 0.000070, 0.000023;;, + 62;4;-0.967272,-0.254420, 0.000158, 0.000051;;, + 63;4;-0.967084,-0.255326, 0.000282, 0.000091;;, + 64;4;-0.966898,-0.256202, 0.000442, 0.000142;;, + 65;4;-0.966714,-0.257049, 0.000637, 0.000204;;, + 66;4;-0.966533,-0.257864, 0.000867, 0.000278;;, + 67;4;-0.966355,-0.258645, 0.001132, 0.000363;;, + 68;4;-0.966181,-0.259393, 0.001431, 0.000459;;, + 69;4;-0.966010,-0.260106, 0.001762, 0.000565;;, + 70;4;-0.965843,-0.260783, 0.002123, 0.000681;;, + 71;4;-0.965680,-0.261422, 0.002514, 0.000807;;, + 72;4;-0.965523,-0.262024, 0.002932, 0.000941;;, + 73;4;-0.965370,-0.262588, 0.003375, 0.001083;;, + 74;4;-0.965222,-0.263113, 0.003839, 0.001232;;, + 75;4;-0.965080,-0.263599, 0.004322, 0.001387;;, + 76;4;-0.964944,-0.264048, 0.004820, 0.001547;;, + 77;4;-0.964815,-0.264458, 0.005330, 0.001710;;, + 78;4;-0.964691,-0.264831, 0.005848, 0.001876;;, + 79;4;-0.964575,-0.265168, 0.006370, 0.002044;;, + 80;4;-0.964465,-0.265470, 0.006891, 0.002211;;, + 81;4;-0.964362,-0.265739, 0.007409, 0.002377;;, + 82;4;-0.964266,-0.265976, 0.007919, 0.002541;;, + 83;4;-0.964177,-0.266183, 0.008417, 0.002701;;, + 84;4;-0.964095,-0.266362, 0.008900, 0.002856;;, + 85;4;-0.964019,-0.266516, 0.009364, 0.003005;;, + 86;4;-0.963951,-0.266646, 0.009807, 0.003147;;, + 87;4;-0.963889,-0.266754, 0.010225, 0.003281;;, + 88;4;-0.963833,-0.266844, 0.010616, 0.003406;;, + 89;4;-0.963783,-0.266916, 0.010978, 0.003522;;, + 90;4;-0.963740,-0.266974, 0.011308, 0.003628;;, + 91;4;-0.963702,-0.267018, 0.011607, 0.003724;;, + 92;4;-0.963669,-0.267052, 0.011872, 0.003809;;, + 93;4;-0.963642,-0.267076, 0.012102, 0.003883;;, + 94;4;-0.963619,-0.267093, 0.012297, 0.003946;;, + 95;4;-0.963602,-0.267104, 0.012457, 0.003997;;, + 96;4;-0.963588,-0.267111, 0.012581, 0.004037;;, + 97;4;-0.963579,-0.267114, 0.012669, 0.004065;;, + 98;4;-0.963574,-0.267115, 0.012722, 0.004082;;, + 99;4;-0.963572,-0.267115, 0.012739, 0.004087;;, + 100;4;-0.963730,-0.266134, 0.011959, 0.003837;;, + 101;4;-0.964222,-0.263088, 0.009536, 0.003060;;, + 102;4;-0.965058,-0.257914, 0.005419, 0.001739;;, + 103;4;-0.966217,-0.250742,-0.000286,-0.000092;;, + 104;4;-0.967635,-0.241963,-0.007271,-0.002333;;, + 105;4;-0.969212,-0.232195,-0.015042,-0.004826;;, + 106;4;-0.970833,-0.222160,-0.023026,-0.007388;;, + 107;4;-0.972393,-0.212505,-0.030708,-0.009853;;, + 108;4;-0.973817,-0.203692,-0.037719,-0.012102;;, + 109;4;-0.975062,-0.195982,-0.043853,-0.014070;;, + 110;4;-0.976307,-0.188272,-0.049987,-0.016038;;, + 111;4;-0.977731,-0.179459,-0.056998,-0.018288;;, + 112;4;-0.979291,-0.169804,-0.064680,-0.020753;;, + 113;4;-0.980911,-0.159769,-0.072664,-0.023314;;, + 114;4;-0.982489,-0.150002,-0.080434,-0.025807;;, + 115;4;-0.983907,-0.141222,-0.087419,-0.028049;;, + 116;4;-0.985066,-0.134050,-0.093125,-0.029879;;, + 117;4;-0.985902,-0.128876,-0.097241,-0.031200;;, + 118;4;-0.986394,-0.125830,-0.099665,-0.031978;;, + 119;4;-0.986552,-0.124849,-0.100445,-0.032228;;, + 120;4;-0.986394,-0.125830,-0.099665,-0.031978;;, + 121;4;-0.985902,-0.128876,-0.097241,-0.031200;;, + 122;4;-0.985066,-0.134050,-0.093125,-0.029879;;, + 123;4;-0.983907,-0.141222,-0.087419,-0.028049;;, + 124;4;-0.982489,-0.150002,-0.080434,-0.025807;;, + 125;4;-0.980911,-0.159769,-0.072664,-0.023314;;, + 126;4;-0.979291,-0.169804,-0.064680,-0.020753;;, + 127;4;-0.977731,-0.179459,-0.056998,-0.018288;;, + 128;4;-0.976307,-0.188272,-0.049987,-0.016038;;, + 129;4;-0.975062,-0.195982,-0.043853,-0.014070;;, + 130;4;-0.973817,-0.203692,-0.037719,-0.012102;;, + 131;4;-0.972393,-0.212505,-0.030708,-0.009853;;, + 132;4;-0.970833,-0.222160,-0.023026,-0.007388;;, + 133;4;-0.969213,-0.232195,-0.015042,-0.004826;;, + 134;4;-0.967635,-0.241963,-0.007271,-0.002333;;, + 135;4;-0.966217,-0.250742,-0.000286,-0.000092;;, + 136;4;-0.965058,-0.257914, 0.005419, 0.001739;;, + 137;4;-0.964222,-0.263088, 0.009536, 0.003060;;, + 138;4;-0.963730,-0.266134, 0.011959, 0.003837;;, + 139;4;-0.963572,-0.267115, 0.012739, 0.004087;;, + 140;4;-0.964222,-0.263088, 0.009536, 0.003060;;, + 141;4;-0.966217,-0.250742,-0.000286,-0.000092;;, + 142;4;-0.969212,-0.232195,-0.015042,-0.004826;;, + 143;4;-0.972393,-0.212505,-0.030708,-0.009853;;, + 144;4;-0.975062,-0.195982,-0.043853,-0.014070;;, + 145;4;-0.977731,-0.179459,-0.056998,-0.018288;;, + 146;4;-0.980911,-0.159769,-0.072664,-0.023314;;, + 147;4;-0.983907,-0.141222,-0.087419,-0.028049;;, + 148;4;-0.985902,-0.128876,-0.097241,-0.031200;;, + 149;4;-0.986552,-0.124849,-0.100445,-0.032228;;, + 150;4;-0.985902,-0.128876,-0.097241,-0.031200;;, + 151;4;-0.983907,-0.141222,-0.087419,-0.028049;;, + 152;4;-0.980911,-0.159769,-0.072664,-0.023314;;, + 153;4;-0.977731,-0.179459,-0.056998,-0.018288;;, + 154;4;-0.975062,-0.195982,-0.043853,-0.014070;;, + 155;4;-0.972393,-0.212505,-0.030708,-0.009853;;, + 156;4;-0.969213,-0.232195,-0.015042,-0.004826;;, + 157;4;-0.966217,-0.250742,-0.000286,-0.000092;;, + 158;4;-0.964222,-0.263088, 0.009536, 0.003060;;, + 159;4;-0.963572,-0.267115, 0.012739, 0.004087;;, + 160;4;-0.963596,-0.267029, 0.012669, 0.004065;;, + 161;4;-0.963667,-0.266770, 0.012457, 0.003997;;, + 162;4;-0.963786,-0.266336, 0.012102, 0.003883;;, + 163;4;-0.963952,-0.265731, 0.011607, 0.003724;;, + 164;4;-0.964163,-0.264961, 0.010978, 0.003522;;, + 165;4;-0.964416,-0.264041, 0.010225, 0.003281;;, + 166;4;-0.964704,-0.262989, 0.009364, 0.003005;;, + 167;4;-0.965022,-0.261831, 0.008417, 0.002701;;, + 168;4;-0.965360,-0.260599, 0.007409, 0.002377;;, + 169;4;-0.965709,-0.259328, 0.006370, 0.002044;;, + 170;4;-0.966058,-0.258057, 0.005330, 0.001710;;, + 171;4;-0.966396,-0.256825, 0.004322, 0.001387;;, + 172;4;-0.966714,-0.255667, 0.003375, 0.001083;;, + 173;4;-0.967003,-0.254615, 0.002514, 0.000807;;, + 174;4;-0.967256,-0.253695, 0.001762, 0.000565;;, + 175;4;-0.967467,-0.252925, 0.001132, 0.000363;;, + 176;4;-0.967633,-0.252320, 0.000637, 0.000204;;, + 177;4;-0.967752,-0.251886, 0.000282, 0.000091;;, + 178;4;-0.967823,-0.251627, 0.000070, 0.000023;;, + 179;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 180;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 181;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 182;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 183;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 184;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 185;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 186;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 187;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 188;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 189;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 190;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 191;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 192;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 193;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 194;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 195;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 196;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 197;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 198;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 199;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 200;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 201;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 202;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 203;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 204;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 205;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 206;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 207;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 208;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 209;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 210;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 211;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 212;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 213;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 214;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 215;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 216;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 217;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 218;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 219;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 220;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 221;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 222;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 223;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 224;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 225;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 226;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 227;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 228;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 229;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 230;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 231;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 232;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 233;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 234;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 235;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 236;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 237;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 238;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 239;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 240;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 241;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 242;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 243;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 244;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 245;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 246;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 247;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 248;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 249;4;-0.967847,-0.251541,-0.000000,-0.000000;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3;-0.000000, 1.228822,-0.000000;;, + 1;3;-0.000000, 1.228822,-0.000000;;, + 2;3; 0.000000, 1.228822,-0.000000;;, + 3;3;-0.000000, 1.228822,-0.000000;;, + 4;3; 0.000000, 1.228822, 0.000000;;, + 5;3;-0.000000, 1.228822,-0.000000;;, + 6;3;-0.000000, 1.228822,-0.000000;;, + 7;3; 0.000000, 1.228822,-0.000000;;, + 8;3; 0.000000, 1.228822, 0.000000;;, + 9;3; 0.000000, 1.228822,-0.000000;;, + 10;3; 0.000000, 1.228822,-0.000000;;, + 11;3;-0.000000, 1.228822, 0.000000;;, + 12;3; 0.000000, 1.228822,-0.000000;;, + 13;3; 0.000000, 1.228822, 0.000000;;, + 14;3; 0.000000, 1.228822,-0.000000;;, + 15;3;-0.000000, 1.228822,-0.000000;;, + 16;3; 0.000000, 1.228822,-0.000000;;, + 17;3; 0.000000, 1.228822,-0.000000;;, + 18;3; 0.000000, 1.228822,-0.000000;;, + 19;3;-0.000000, 1.228822, 0.000000;;, + 20;3;-0.000000, 1.228822, 0.000000;;, + 21;3;-0.000000, 1.228822, 0.000000;;, + 22;3;-0.000000, 1.228822,-0.000000;;, + 23;3;-0.000000, 1.228822, 0.000000;;, + 24;3;-0.000000, 1.228822,-0.000000;;, + 25;3;-0.000000, 1.228822,-0.000000;;, + 26;3; 0.000000, 1.228822, 0.000000;;, + 27;3; 0.000000, 1.228822,-0.000000;;, + 28;3; 0.000000, 1.228822, 0.000000;;, + 29;3;-0.000000, 1.228822, 0.000000;;, + 30;3; 0.000000, 1.228822, 0.000000;;, + 31;3; 0.000000, 1.228822, 0.000000;;, + 32;3; 0.000000, 1.228822,-0.000000;;, + 33;3; 0.000000, 1.228822,-0.000000;;, + 34;3; 0.000000, 1.228822,-0.000000;;, + 35;3;-0.000000, 1.228822, 0.000000;;, + 36;3;-0.000000, 1.228822, 0.000000;;, + 37;3; 0.000000, 1.228822, 0.000000;;, + 38;3;-0.000000, 1.228822,-0.000000;;, + 39;3; 0.000000, 1.228822, 0.000000;;, + 40;3;-0.000000, 1.228822, 0.000000;;, + 41;3; 0.000000, 1.228822,-0.000000;;, + 42;3; 0.000000, 1.228822, 0.000000;;, + 43;3; 0.000000, 1.228822, 0.000000;;, + 44;3; 0.000000, 1.228822, 0.000000;;, + 45;3; 0.000000, 1.228822, 0.000000;;, + 46;3;-0.000000, 1.228822,-0.000000;;, + 47;3; 0.000000, 1.228822, 0.000000;;, + 48;3; 0.000000, 1.228822, 0.000000;;, + 49;3;-0.000000, 1.228822, 0.000000;;, + 50;3; 0.000000, 1.228822, 0.000000;;, + 51;3;-0.000000, 1.228822,-0.000000;;, + 52;3; 0.000000, 1.228822, 0.000000;;, + 53;3;-0.000000, 1.228822, 0.000000;;, + 54;3;-0.000000, 1.228822,-0.000000;;, + 55;3;-0.000000, 1.228822,-0.000000;;, + 56;3; 0.000000, 1.228822,-0.000000;;, + 57;3; 0.000000, 1.228822,-0.000000;;, + 58;3; 0.000000, 1.228822,-0.000000;;, + 59;3;-0.000000, 1.228822,-0.000000;;, + 60;3; 0.000000, 1.228822, 0.000000;;, + 61;3;-0.000000, 1.228822, 0.000000;;, + 62;3; 0.000000, 1.228822,-0.000000;;, + 63;3; 0.000000, 1.228822,-0.000000;;, + 64;3;-0.000000, 1.228822, 0.000000;;, + 65;3; 0.000000, 1.228822,-0.000000;;, + 66;3;-0.000000, 1.228822, 0.000000;;, + 67;3; 0.000000, 1.228822, 0.000000;;, + 68;3; 0.000000, 1.228822, 0.000000;;, + 69;3; 0.000000, 1.228822,-0.000000;;, + 70;3; 0.000000, 1.228821, 0.000000;;, + 71;3; 0.000000, 1.228822, 0.000000;;, + 72;3;-0.000000, 1.228822,-0.000000;;, + 73;3;-0.000000, 1.228822,-0.000000;;, + 74;3; 0.000000, 1.228822,-0.000000;;, + 75;3; 0.000000, 1.228822,-0.000000;;, + 76;3; 0.000000, 1.228822, 0.000000;;, + 77;3;-0.000000, 1.228822,-0.000000;;, + 78;3; 0.000000, 1.228822, 0.000000;;, + 79;3; 0.000000, 1.228822,-0.000000;;, + 80;3; 0.000000, 1.228822,-0.000000;;, + 81;3; 0.000000, 1.228822,-0.000000;;, + 82;3; 0.000000, 1.228822, 0.000000;;, + 83;3;-0.000000, 1.228822, 0.000000;;, + 84;3; 0.000000, 1.228822,-0.000000;;, + 85;3; 0.000000, 1.228822,-0.000000;;, + 86;3;-0.000000, 1.228822,-0.000000;;, + 87;3; 0.000000, 1.228822, 0.000000;;, + 88;3;-0.000000, 1.228822, 0.000000;;, + 89;3;-0.000000, 1.228822,-0.000000;;, + 90;3;-0.000000, 1.228822, 0.000000;;, + 91;3; 0.000000, 1.228822, 0.000000;;, + 92;3; 0.000000, 1.228822, 0.000000;;, + 93;3; 0.000000, 1.228822,-0.000000;;, + 94;3;-0.000000, 1.228822, 0.000000;;, + 95;3; 0.000000, 1.228822,-0.000000;;, + 96;3;-0.000000, 1.228822, 0.000000;;, + 97;3;-0.000000, 1.228822,-0.000000;;, + 98;3; 0.000000, 1.228822,-0.000000;;, + 99;3;-0.000000, 1.228822,-0.000000;;, + 100;3;-0.000000, 1.228822, 0.000000;;, + 101;3; 0.000000, 1.228822,-0.000000;;, + 102;3;-0.000000, 1.228822, 0.000000;;, + 103;3;-0.000000, 1.228822, 0.000000;;, + 104;3;-0.000000, 1.228822, 0.000000;;, + 105;3; 0.000000, 1.228822,-0.000000;;, + 106;3; 0.000000, 1.228822, 0.000000;;, + 107;3; 0.000000, 1.228822,-0.000000;;, + 108;3;-0.000000, 1.228822, 0.000000;;, + 109;3; 0.000000, 1.228822, 0.000000;;, + 110;3; 0.000000, 1.228822,-0.000000;;, + 111;3; 0.000000, 1.228822,-0.000000;;, + 112;3;-0.000000, 1.228822,-0.000000;;, + 113;3;-0.000000, 1.228822,-0.000000;;, + 114;3; 0.000000, 1.228822,-0.000000;;, + 115;3;-0.000000, 1.228822,-0.000000;;, + 116;3;-0.000000, 1.228822, 0.000000;;, + 117;3; 0.000000, 1.228822,-0.000000;;, + 118;3;-0.000000, 1.228822, 0.000000;;, + 119;3;-0.000000, 1.228822,-0.000000;;, + 120;3;-0.000000, 1.228822, 0.000000;;, + 121;3; 0.000000, 1.228822, 0.000000;;, + 122;3;-0.000000, 1.228822, 0.000000;;, + 123;3; 0.000000, 1.228822,-0.000000;;, + 124;3; 0.000000, 1.228822, 0.000000;;, + 125;3;-0.000000, 1.228822,-0.000000;;, + 126;3; 0.000000, 1.228822, 0.000000;;, + 127;3; 0.000000, 1.228822,-0.000000;;, + 128;3; 0.000000, 1.228822,-0.000000;;, + 129;3; 0.000000, 1.228822, 0.000000;;, + 130;3; 0.000000, 1.228822, 0.000000;;, + 131;3; 0.000000, 1.228822,-0.000000;;, + 132;3; 0.000000, 1.228822, 0.000000;;, + 133;3; 0.000000, 1.228822, 0.000000;;, + 134;3;-0.000000, 1.228822, 0.000000;;, + 135;3; 0.000000, 1.228822,-0.000000;;, + 136;3;-0.000000, 1.228822,-0.000000;;, + 137;3; 0.000000, 1.228822, 0.000000;;, + 138;3; 0.000000, 1.228822,-0.000000;;, + 139;3;-0.000000, 1.228822,-0.000000;;, + 140;3; 0.000000, 1.228822, 0.000000;;, + 141;3;-0.000000, 1.228822, 0.000000;;, + 142;3; 0.000000, 1.228822,-0.000000;;, + 143;3; 0.000000, 1.228822, 0.000000;;, + 144;3; 0.000000, 1.228822, 0.000000;;, + 145;3; 0.000000, 1.228822,-0.000000;;, + 146;3;-0.000000, 1.228822,-0.000000;;, + 147;3;-0.000000, 1.228822,-0.000000;;, + 148;3; 0.000000, 1.228822,-0.000000;;, + 149;3;-0.000000, 1.228822,-0.000000;;, + 150;3; 0.000000, 1.228822, 0.000000;;, + 151;3; 0.000000, 1.228822,-0.000000;;, + 152;3;-0.000000, 1.228822,-0.000000;;, + 153;3; 0.000000, 1.228822,-0.000000;;, + 154;3; 0.000000, 1.228822, 0.000000;;, + 155;3; 0.000000, 1.228822, 0.000000;;, + 156;3; 0.000000, 1.228822, 0.000000;;, + 157;3; 0.000000, 1.228822,-0.000000;;, + 158;3;-0.000000, 1.228822, 0.000000;;, + 159;3;-0.000000, 1.228822,-0.000000;;, + 160;3;-0.000000, 1.228822,-0.000000;;, + 161;3; 0.000000, 1.228822, 0.000000;;, + 162;3; 0.000000, 1.228822,-0.000000;;, + 163;3; 0.000000, 1.228822,-0.000000;;, + 164;3; 0.000000, 1.228822,-0.000000;;, + 165;3; 0.000000, 1.228822, 0.000000;;, + 166;3; 0.000000, 1.228822, 0.000000;;, + 167;3;-0.000000, 1.228822, 0.000000;;, + 168;3; 0.000000, 1.228822, 0.000000;;, + 169;3;-0.000000, 1.228822, 0.000000;;, + 170;3; 0.000000, 1.228822, 0.000000;;, + 171;3; 0.000000, 1.228822, 0.000000;;, + 172;3;-0.000000, 1.228822,-0.000000;;, + 173;3;-0.000000, 1.228822, 0.000000;;, + 174;3;-0.000000, 1.228822,-0.000000;;, + 175;3; 0.000000, 1.228822, 0.000000;;, + 176;3;-0.000000, 1.228822, 0.000000;;, + 177;3; 0.000000, 1.228822, 0.000000;;, + 178;3;-0.000000, 1.228822, 0.000000;;, + 179;3;-0.000000, 1.228822,-0.000000;;, + 180;3;-0.000000, 1.228822,-0.000000;;, + 181;3; 0.000000, 1.228822,-0.000000;;, + 182;3; 0.000000, 1.228822,-0.000000;;, + 183;3;-0.000000, 1.228822,-0.000000;;, + 184;3;-0.000000, 1.228822,-0.000000;;, + 185;3; 0.000000, 1.228822, 0.000000;;, + 186;3;-0.000000, 1.228822, 0.000000;;, + 187;3; 0.000000, 1.228822, 0.000000;;, + 188;3;-0.000000, 1.228822,-0.000000;;, + 189;3; 0.000000, 1.228822,-0.000000;;, + 190;3;-0.000000, 1.228822,-0.000000;;, + 191;3; 0.000000, 1.228822, 0.000000;;, + 192;3;-0.000000, 1.228822,-0.000000;;, + 193;3; 0.000000, 1.228822,-0.000000;;, + 194;3;-0.000000, 1.228822,-0.000000;;, + 195;3;-0.000000, 1.228822,-0.000000;;, + 196;3;-0.000000, 1.228822,-0.000000;;, + 197;3; 0.000000, 1.228822,-0.000000;;, + 198;3;-0.000000, 1.228822, 0.000000;;, + 199;3;-0.000000, 1.228822,-0.000000;;, + 200;3;-0.000000, 1.228822,-0.000000;;, + 201;3;-0.000000, 1.228822,-0.000000;;, + 202;3;-0.000000, 1.228822,-0.000000;;, + 203;3;-0.000000, 1.228822,-0.000000;;, + 204;3;-0.000000, 1.228822,-0.000000;;, + 205;3;-0.000000, 1.228822,-0.000000;;, + 206;3;-0.000000, 1.228822,-0.000000;;, + 207;3;-0.000000, 1.228822,-0.000000;;, + 208;3;-0.000000, 1.228822,-0.000000;;, + 209;3;-0.000000, 1.228822,-0.000000;;, + 210;3;-0.000000, 1.228822,-0.000000;;, + 211;3;-0.000000, 1.228822,-0.000000;;, + 212;3;-0.000000, 1.228822,-0.000000;;, + 213;3;-0.000000, 1.228822,-0.000000;;, + 214;3;-0.000000, 1.228822,-0.000000;;, + 215;3;-0.000000, 1.228822,-0.000000;;, + 216;3;-0.000000, 1.228822,-0.000000;;, + 217;3;-0.000000, 1.228822,-0.000000;;, + 218;3;-0.000000, 1.228822,-0.000000;;, + 219;3;-0.000000, 1.228822,-0.000000;;, + 220;3;-0.000000, 1.228822,-0.000000;;, + 221;3;-0.000000, 1.228822,-0.000000;;, + 222;3;-0.000000, 1.228822,-0.000000;;, + 223;3;-0.000000, 1.228822,-0.000000;;, + 224;3;-0.000000, 1.228822,-0.000000;;, + 225;3;-0.000000, 1.228822,-0.000000;;, + 226;3;-0.000000, 1.228822,-0.000000;;, + 227;3;-0.000000, 1.228822,-0.000000;;, + 228;3;-0.000000, 1.228822,-0.000000;;, + 229;3;-0.000000, 1.228822,-0.000000;;, + 230;3;-0.000000, 1.228822,-0.000000;;, + 231;3;-0.000000, 1.228822,-0.000000;;, + 232;3;-0.000000, 1.228822,-0.000000;;, + 233;3;-0.000000, 1.228822,-0.000000;;, + 234;3;-0.000000, 1.228822,-0.000000;;, + 235;3;-0.000000, 1.228822,-0.000000;;, + 236;3;-0.000000, 1.228822,-0.000000;;, + 237;3;-0.000000, 1.228822,-0.000000;;, + 238;3;-0.000000, 1.228822,-0.000000;;, + 239;3;-0.000000, 1.228822,-0.000000;;, + 240;3;-0.000000, 1.228822,-0.000000;;, + 241;3;-0.000000, 1.228822,-0.000000;;, + 242;3;-0.000000, 1.228822,-0.000000;;, + 243;3;-0.000000, 1.228822,-0.000000;;, + 244;3;-0.000000, 1.228822,-0.000000;;, + 245;3;-0.000000, 1.228822,-0.000000;;, + 246;3;-0.000000, 1.228822,-0.000000;;, + 247;3;-0.000000, 1.228822,-0.000000;;, + 248;3;-0.000000, 1.228822,-0.000000;;, + 249;3;-0.000000, 1.228822,-0.000000;;; + } + } + Animation { + {Armature_Bone_016} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 1;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 2;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 3;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 4;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 5;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 6;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 7;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 8;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 9;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 10;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 11;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 12;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 13;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 14;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 15;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 16;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 17;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 18;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 19;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 20;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 21;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 22;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 23;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 24;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 25;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 26;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 27;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 28;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 29;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 30;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 31;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 32;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 33;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 34;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 35;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 36;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 37;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 38;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 39;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 40;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 41;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 42;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 43;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 44;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 45;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 46;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 47;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 48;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 49;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 50;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 51;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 52;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 53;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 54;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 55;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 56;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 57;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 58;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 59;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 60;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 61;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 62;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 63;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 64;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 65;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 66;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 67;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 68;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 69;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 70;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 71;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 72;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 73;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 74;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 75;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 76;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 77;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 78;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 79;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 80;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 81;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 82;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 83;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 84;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 85;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 86;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 87;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 88;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 89;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 90;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 91;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 92;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 93;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 94;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 95;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 96;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 97;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 98;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 99;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 100;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 101;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 102;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 103;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 104;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 105;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 106;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 107;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 108;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 109;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 110;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 111;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 112;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 113;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 114;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 115;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 116;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 117;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 118;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 119;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 120;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 121;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 122;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 123;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 124;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 125;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 126;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 127;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 128;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 129;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 130;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 131;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 132;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 133;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 134;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 135;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 136;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 137;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 138;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 139;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 140;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 141;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 142;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 143;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 144;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 145;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 146;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 147;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 148;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 149;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 150;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 151;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 152;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 153;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 154;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 155;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 156;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 157;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 158;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 159;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 160;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 161;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 162;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 163;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 164;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 165;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 166;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 167;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 168;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 169;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 170;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 171;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 172;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 173;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 174;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 175;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 176;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 177;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 178;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 179;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 180;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 181;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 182;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 183;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 184;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 185;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 186;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 187;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 188;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 189;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 190;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 191;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 192;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 193;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 194;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 195;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 196;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 197;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 198;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 199;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 200;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 201;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 202;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 203;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 204;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 205;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 206;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 207;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 208;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 209;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 210;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 211;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 212;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 213;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 214;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 215;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 216;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 217;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 218;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 219;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 220;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 221;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 222;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 223;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 224;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 225;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 226;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 227;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 228;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 229;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 230;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 231;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 232;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 233;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 234;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 235;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 236;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 237;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 238;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 239;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 240;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 241;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 242;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 243;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 244;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 245;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 246;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 247;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 248;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 249;4;-0.524827,-0.000000,-0.000000,-0.851209;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3; 0.000000, 0.826434, 0.000000;;, + 1;3; 0.000000, 0.826434, 0.000000;;, + 2;3; 0.000000, 0.826434, 0.000000;;, + 3;3; 0.000000, 0.826434, 0.000000;;, + 4;3; 0.000000, 0.826434, 0.000000;;, + 5;3; 0.000000, 0.826434, 0.000000;;, + 6;3; 0.000000, 0.826434, 0.000000;;, + 7;3; 0.000000, 0.826434, 0.000000;;, + 8;3; 0.000000, 0.826434, 0.000000;;, + 9;3; 0.000000, 0.826434, 0.000000;;, + 10;3; 0.000000, 0.826434, 0.000000;;, + 11;3; 0.000000, 0.826434, 0.000000;;, + 12;3; 0.000000, 0.826434, 0.000000;;, + 13;3; 0.000000, 0.826434, 0.000000;;, + 14;3; 0.000000, 0.826434, 0.000000;;, + 15;3; 0.000000, 0.826434, 0.000000;;, + 16;3; 0.000000, 0.826434, 0.000000;;, + 17;3; 0.000000, 0.826434, 0.000000;;, + 18;3; 0.000000, 0.826434, 0.000000;;, + 19;3; 0.000000, 0.826434, 0.000000;;, + 20;3; 0.000000, 0.826434, 0.000000;;, + 21;3; 0.000000, 0.826434, 0.000000;;, + 22;3; 0.000000, 0.826434, 0.000000;;, + 23;3; 0.000000, 0.826434, 0.000000;;, + 24;3; 0.000000, 0.826434, 0.000000;;, + 25;3; 0.000000, 0.826434, 0.000000;;, + 26;3; 0.000000, 0.826434, 0.000000;;, + 27;3; 0.000000, 0.826434, 0.000000;;, + 28;3; 0.000000, 0.826434, 0.000000;;, + 29;3; 0.000000, 0.826434, 0.000000;;, + 30;3; 0.000000, 0.826434, 0.000000;;, + 31;3; 0.000000, 0.826434, 0.000000;;, + 32;3; 0.000000, 0.826434, 0.000000;;, + 33;3; 0.000000, 0.826434, 0.000000;;, + 34;3; 0.000000, 0.826434, 0.000000;;, + 35;3; 0.000000, 0.826434, 0.000000;;, + 36;3; 0.000000, 0.826434, 0.000000;;, + 37;3; 0.000000, 0.826434, 0.000000;;, + 38;3; 0.000000, 0.826434, 0.000000;;, + 39;3; 0.000000, 0.826434, 0.000000;;, + 40;3; 0.000000, 0.826434, 0.000000;;, + 41;3; 0.000000, 0.826434, 0.000000;;, + 42;3; 0.000000, 0.826434, 0.000000;;, + 43;3; 0.000000, 0.826434, 0.000000;;, + 44;3; 0.000000, 0.826434, 0.000000;;, + 45;3; 0.000000, 0.826434, 0.000000;;, + 46;3; 0.000000, 0.826434, 0.000000;;, + 47;3; 0.000000, 0.826434, 0.000000;;, + 48;3; 0.000000, 0.826434, 0.000000;;, + 49;3; 0.000000, 0.826434, 0.000000;;, + 50;3; 0.000000, 0.826434, 0.000000;;, + 51;3; 0.000000, 0.826434, 0.000000;;, + 52;3; 0.000000, 0.826434, 0.000000;;, + 53;3; 0.000000, 0.826434, 0.000000;;, + 54;3; 0.000000, 0.826434, 0.000000;;, + 55;3; 0.000000, 0.826434, 0.000000;;, + 56;3; 0.000000, 0.826434, 0.000000;;, + 57;3; 0.000000, 0.826434, 0.000000;;, + 58;3; 0.000000, 0.826434, 0.000000;;, + 59;3; 0.000000, 0.826434, 0.000000;;, + 60;3; 0.000000, 0.826434, 0.000000;;, + 61;3; 0.000000, 0.826434, 0.000000;;, + 62;3; 0.000000, 0.826434, 0.000000;;, + 63;3; 0.000000, 0.826434, 0.000000;;, + 64;3; 0.000000, 0.826434, 0.000000;;, + 65;3; 0.000000, 0.826434, 0.000000;;, + 66;3; 0.000000, 0.826434, 0.000000;;, + 67;3; 0.000000, 0.826434, 0.000000;;, + 68;3; 0.000000, 0.826434, 0.000000;;, + 69;3; 0.000000, 0.826434, 0.000000;;, + 70;3; 0.000000, 0.826434, 0.000000;;, + 71;3; 0.000000, 0.826434, 0.000000;;, + 72;3; 0.000000, 0.826434, 0.000000;;, + 73;3; 0.000000, 0.826434, 0.000000;;, + 74;3; 0.000000, 0.826434, 0.000000;;, + 75;3; 0.000000, 0.826434, 0.000000;;, + 76;3; 0.000000, 0.826434, 0.000000;;, + 77;3; 0.000000, 0.826434, 0.000000;;, + 78;3; 0.000000, 0.826434, 0.000000;;, + 79;3; 0.000000, 0.826434, 0.000000;;, + 80;3; 0.000000, 0.826434, 0.000000;;, + 81;3; 0.000000, 0.826434, 0.000000;;, + 82;3; 0.000000, 0.826434, 0.000000;;, + 83;3; 0.000000, 0.826434, 0.000000;;, + 84;3; 0.000000, 0.826434, 0.000000;;, + 85;3; 0.000000, 0.826434, 0.000000;;, + 86;3; 0.000000, 0.826434, 0.000000;;, + 87;3; 0.000000, 0.826434, 0.000000;;, + 88;3; 0.000000, 0.826434, 0.000000;;, + 89;3; 0.000000, 0.826434, 0.000000;;, + 90;3; 0.000000, 0.826434, 0.000000;;, + 91;3; 0.000000, 0.826434, 0.000000;;, + 92;3; 0.000000, 0.826434, 0.000000;;, + 93;3; 0.000000, 0.826434, 0.000000;;, + 94;3; 0.000000, 0.826434, 0.000000;;, + 95;3; 0.000000, 0.826434, 0.000000;;, + 96;3; 0.000000, 0.826434, 0.000000;;, + 97;3; 0.000000, 0.826434, 0.000000;;, + 98;3; 0.000000, 0.826434, 0.000000;;, + 99;3; 0.000000, 0.826434, 0.000000;;, + 100;3; 0.000000, 0.826434, 0.000000;;, + 101;3; 0.000000, 0.826434, 0.000000;;, + 102;3; 0.000000, 0.826434, 0.000000;;, + 103;3; 0.000000, 0.826434, 0.000000;;, + 104;3; 0.000000, 0.826434, 0.000000;;, + 105;3; 0.000000, 0.826434, 0.000000;;, + 106;3; 0.000000, 0.826434, 0.000000;;, + 107;3; 0.000000, 0.826434, 0.000000;;, + 108;3; 0.000000, 0.826434, 0.000000;;, + 109;3; 0.000000, 0.826434, 0.000000;;, + 110;3; 0.000000, 0.826434, 0.000000;;, + 111;3; 0.000000, 0.826434, 0.000000;;, + 112;3; 0.000000, 0.826434, 0.000000;;, + 113;3; 0.000000, 0.826434, 0.000000;;, + 114;3; 0.000000, 0.826434, 0.000000;;, + 115;3; 0.000000, 0.826434, 0.000000;;, + 116;3; 0.000000, 0.826434, 0.000000;;, + 117;3; 0.000000, 0.826434, 0.000000;;, + 118;3; 0.000000, 0.826434, 0.000000;;, + 119;3; 0.000000, 0.826434, 0.000000;;, + 120;3; 0.000000, 0.826434, 0.000000;;, + 121;3; 0.000000, 0.826434, 0.000000;;, + 122;3; 0.000000, 0.826434, 0.000000;;, + 123;3; 0.000000, 0.826434, 0.000000;;, + 124;3; 0.000000, 0.826434, 0.000000;;, + 125;3; 0.000000, 0.826434, 0.000000;;, + 126;3; 0.000000, 0.826434, 0.000000;;, + 127;3; 0.000000, 0.826434, 0.000000;;, + 128;3; 0.000000, 0.826434, 0.000000;;, + 129;3; 0.000000, 0.826434, 0.000000;;, + 130;3; 0.000000, 0.826434, 0.000000;;, + 131;3; 0.000000, 0.826434, 0.000000;;, + 132;3; 0.000000, 0.826434, 0.000000;;, + 133;3; 0.000000, 0.826434, 0.000000;;, + 134;3; 0.000000, 0.826434, 0.000000;;, + 135;3; 0.000000, 0.826434, 0.000000;;, + 136;3; 0.000000, 0.826434, 0.000000;;, + 137;3; 0.000000, 0.826434, 0.000000;;, + 138;3; 0.000000, 0.826434, 0.000000;;, + 139;3; 0.000000, 0.826434, 0.000000;;, + 140;3; 0.000000, 0.826434, 0.000000;;, + 141;3; 0.000000, 0.826434, 0.000000;;, + 142;3; 0.000000, 0.826434, 0.000000;;, + 143;3; 0.000000, 0.826434, 0.000000;;, + 144;3; 0.000000, 0.826434, 0.000000;;, + 145;3; 0.000000, 0.826434, 0.000000;;, + 146;3; 0.000000, 0.826434, 0.000000;;, + 147;3; 0.000000, 0.826434, 0.000000;;, + 148;3; 0.000000, 0.826434, 0.000000;;, + 149;3; 0.000000, 0.826434, 0.000000;;, + 150;3; 0.000000, 0.826434, 0.000000;;, + 151;3; 0.000000, 0.826434, 0.000000;;, + 152;3; 0.000000, 0.826434, 0.000000;;, + 153;3; 0.000000, 0.826434, 0.000000;;, + 154;3; 0.000000, 0.826434, 0.000000;;, + 155;3; 0.000000, 0.826434, 0.000000;;, + 156;3; 0.000000, 0.826434, 0.000000;;, + 157;3; 0.000000, 0.826434, 0.000000;;, + 158;3; 0.000000, 0.826434, 0.000000;;, + 159;3; 0.000000, 0.826434, 0.000000;;, + 160;3; 0.000000, 0.826434, 0.000000;;, + 161;3; 0.000000, 0.826434, 0.000000;;, + 162;3; 0.000000, 0.826434, 0.000000;;, + 163;3; 0.000000, 0.826434, 0.000000;;, + 164;3; 0.000000, 0.826434, 0.000000;;, + 165;3; 0.000000, 0.826434, 0.000000;;, + 166;3; 0.000000, 0.826434, 0.000000;;, + 167;3; 0.000000, 0.826434, 0.000000;;, + 168;3; 0.000000, 0.826434, 0.000000;;, + 169;3; 0.000000, 0.826434, 0.000000;;, + 170;3; 0.000000, 0.826434, 0.000000;;, + 171;3; 0.000000, 0.826434, 0.000000;;, + 172;3; 0.000000, 0.826434, 0.000000;;, + 173;3; 0.000000, 0.826434, 0.000000;;, + 174;3; 0.000000, 0.826434, 0.000000;;, + 175;3; 0.000000, 0.826434, 0.000000;;, + 176;3; 0.000000, 0.826434, 0.000000;;, + 177;3; 0.000000, 0.826434, 0.000000;;, + 178;3; 0.000000, 0.826434, 0.000000;;, + 179;3; 0.000000, 0.826434, 0.000000;;, + 180;3; 0.000000, 0.826434, 0.000000;;, + 181;3; 0.000000, 0.826434, 0.000000;;, + 182;3; 0.000000, 0.826434, 0.000000;;, + 183;3; 0.000000, 0.826434, 0.000000;;, + 184;3; 0.000000, 0.826434, 0.000000;;, + 185;3; 0.000000, 0.826434, 0.000000;;, + 186;3;-0.000000, 0.826434,-0.000000;;, + 187;3;-0.000000, 0.826434,-0.000000;;, + 188;3;-0.000000, 0.826434, 0.000000;;, + 189;3;-0.000000, 0.826434, 0.000000;;, + 190;3;-0.000000, 0.826434,-0.000000;;, + 191;3; 0.000000, 0.826434, 0.000000;;, + 192;3; 0.000000, 0.826434, 0.000000;;, + 193;3; 0.000000, 0.826434, 0.000000;;, + 194;3; 0.000000, 0.826434,-0.000000;;, + 195;3; 0.000000, 0.826434,-0.000000;;, + 196;3; 0.000000, 0.826434, 0.000000;;, + 197;3; 0.000000, 0.826434,-0.000000;;, + 198;3; 0.000000, 0.826434,-0.000000;;, + 199;3; 0.000000, 0.826434, 0.000000;;, + 200;3; 0.000000, 0.826434, 0.000000;;, + 201;3; 0.000000, 0.826434, 0.000000;;, + 202;3; 0.000000, 0.826434, 0.000000;;, + 203;3; 0.000000, 0.826434, 0.000000;;, + 204;3; 0.000000, 0.826434, 0.000000;;, + 205;3; 0.000000, 0.826434, 0.000000;;, + 206;3; 0.000000, 0.826434, 0.000000;;, + 207;3; 0.000000, 0.826434, 0.000000;;, + 208;3; 0.000000, 0.826434, 0.000000;;, + 209;3; 0.000000, 0.826434, 0.000000;;, + 210;3; 0.000000, 0.826434, 0.000000;;, + 211;3; 0.000000, 0.826434, 0.000000;;, + 212;3; 0.000000, 0.826434, 0.000000;;, + 213;3; 0.000000, 0.826434, 0.000000;;, + 214;3; 0.000000, 0.826434, 0.000000;;, + 215;3; 0.000000, 0.826434, 0.000000;;, + 216;3; 0.000000, 0.826434, 0.000000;;, + 217;3; 0.000000, 0.826434, 0.000000;;, + 218;3; 0.000000, 0.826434, 0.000000;;, + 219;3; 0.000000, 0.826434, 0.000000;;, + 220;3; 0.000000, 0.826434, 0.000000;;, + 221;3; 0.000000, 0.826434, 0.000000;;, + 222;3; 0.000000, 0.826434, 0.000000;;, + 223;3; 0.000000, 0.826434, 0.000000;;, + 224;3; 0.000000, 0.826434, 0.000000;;, + 225;3; 0.000000, 0.826434, 0.000000;;, + 226;3; 0.000000, 0.826434, 0.000000;;, + 227;3; 0.000000, 0.826434, 0.000000;;, + 228;3; 0.000000, 0.826434, 0.000000;;, + 229;3; 0.000000, 0.826434, 0.000000;;, + 230;3; 0.000000, 0.826434, 0.000000;;, + 231;3; 0.000000, 0.826434, 0.000000;;, + 232;3; 0.000000, 0.826434, 0.000000;;, + 233;3; 0.000000, 0.826434, 0.000000;;, + 234;3; 0.000000, 0.826434, 0.000000;;, + 235;3; 0.000000, 0.826434, 0.000000;;, + 236;3; 0.000000, 0.826434, 0.000000;;, + 237;3; 0.000000, 0.826434, 0.000000;;, + 238;3; 0.000000, 0.826434, 0.000000;;, + 239;3; 0.000000, 0.826434, 0.000000;;, + 240;3; 0.000000, 0.826434, 0.000000;;, + 241;3; 0.000000, 0.826434, 0.000000;;, + 242;3; 0.000000, 0.826434, 0.000000;;, + 243;3; 0.000000, 0.826434, 0.000000;;, + 244;3; 0.000000, 0.826434, 0.000000;;, + 245;3; 0.000000, 0.826434, 0.000000;;, + 246;3; 0.000000, 0.826434, 0.000000;;, + 247;3; 0.000000, 0.826434, 0.000000;;, + 248;3; 0.000000, 0.826434, 0.000000;;, + 249;3; 0.000000, 0.826434, 0.000000;;; + } + } + Animation { + {Armature_Bone_020} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 1;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 2;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 3;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 4;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 5;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 6;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 7;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 8;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 9;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 10;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 11;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 12;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 13;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 14;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 15;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 16;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 17;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 18;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 19;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 20;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 21;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 22;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 23;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 24;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 25;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 26;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 27;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 28;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 29;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 30;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 31;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 32;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 33;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 34;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 35;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 36;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 37;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 38;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 39;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 40;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 41;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 42;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 43;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 44;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 45;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 46;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 47;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 48;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 49;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 50;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 51;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 52;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 53;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 54;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 55;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 56;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 57;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 58;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 59;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 60;4;-0.969660, 0.172274, 0.032946, 0.170275;;, + 61;4;-0.969685, 0.172117, 0.032898, 0.170282;;, + 62;4;-0.969726, 0.171854, 0.032820, 0.170295;;, + 63;4;-0.969784, 0.171485, 0.032709, 0.170312;;, + 64;4;-0.969860, 0.171010, 0.032566, 0.170335;;, + 65;4;-0.969951, 0.170429, 0.032392, 0.170362;;, + 66;4;-0.970059, 0.169743, 0.032186, 0.170394;;, + 67;4;-0.970184, 0.168955, 0.031949, 0.170431;;, + 68;4;-0.970324, 0.168067, 0.031683, 0.170473;;, + 69;4;-0.970479, 0.167082, 0.031387, 0.170519;;, + 70;4;-0.970649, 0.166005, 0.031064, 0.170570;;, + 71;4;-0.970833, 0.164841, 0.030715, 0.170625;;, + 72;4;-0.971029, 0.163597, 0.030341, 0.170683;;, + 73;4;-0.971237, 0.162280, 0.029946, 0.170745;;, + 74;4;-0.971455, 0.160898, 0.029531, 0.170810;;, + 75;4;-0.971682, 0.159460, 0.029100, 0.170878;;, + 76;4;-0.971916, 0.157977, 0.028655, 0.170948;;, + 77;4;-0.972156, 0.156459, 0.028199, 0.171019;;, + 78;4;-0.972399, 0.154918, 0.027736, 0.171092;;, + 79;4;-0.972644, 0.153364, 0.027270, 0.171165;;, + 80;4;-0.972889, 0.151811, 0.026804, 0.171238;;, + 81;4;-0.973133, 0.150270, 0.026341, 0.171311;;, + 82;4;-0.973372, 0.148752, 0.025886, 0.171382;;, + 83;4;-0.973606, 0.147268, 0.025441, 0.171452;;, + 84;4;-0.973833, 0.145831, 0.025009, 0.171519;;, + 85;4;-0.974051, 0.144449, 0.024594, 0.171584;;, + 86;4;-0.974259, 0.143132, 0.024199, 0.171646;;, + 87;4;-0.974455, 0.141887, 0.023826, 0.171705;;, + 88;4;-0.974639, 0.140724, 0.023476, 0.171760;;, + 89;4;-0.974809, 0.139647, 0.023153, 0.171810;;, + 90;4;-0.974964, 0.138662, 0.022857, 0.171857;;, + 91;4;-0.975105, 0.137773, 0.022591, 0.171899;;, + 92;4;-0.975229, 0.136985, 0.022354, 0.171936;;, + 93;4;-0.975337, 0.136299, 0.022148, 0.171968;;, + 94;4;-0.975429, 0.135718, 0.021974, 0.171995;;, + 95;4;-0.975504, 0.135243, 0.021831, 0.172018;;, + 96;4;-0.975562, 0.134874, 0.021721, 0.172035;;, + 97;4;-0.975604, 0.134611, 0.021642, 0.172047;;, + 98;4;-0.975628, 0.134454, 0.021595, 0.172055;;, + 99;4;-0.975637, 0.134402, 0.021579, 0.172057;;, + 100;4;-0.975372, 0.135547, 0.021924, 0.171988;;, + 101;4;-0.974549, 0.139101, 0.022996, 0.171774;;, + 102;4;-0.973151, 0.145140, 0.024817, 0.171410;;, + 103;4;-0.971214, 0.153508, 0.027340, 0.170906;;, + 104;4;-0.968842, 0.163754, 0.030429, 0.170289;;, + 105;4;-0.966204, 0.175152, 0.033866, 0.169602;;, + 106;4;-0.963493, 0.186862, 0.037397, 0.168897;;, + 107;4;-0.960885, 0.198129, 0.040794, 0.168218;;, + 108;4;-0.958504, 0.208414, 0.043895, 0.167599;;, + 109;4;-0.956421, 0.217410, 0.046607, 0.167057;;, + 110;4;-0.954474, 0.225951, 0.049182, 0.166547;;, + 111;4;-0.952480, 0.234935, 0.051889, 0.166019;;, + 112;4;-0.950450, 0.244258, 0.054698, 0.165477;;, + 113;4;-0.948403, 0.253734, 0.057552, 0.164929;;, + 114;4;-0.946368, 0.263102, 0.060374, 0.164386;;, + 115;4;-0.944376, 0.272073, 0.063078, 0.163858;;, + 116;4;-0.942451, 0.280397, 0.065587, 0.163357;;, + 117;4;-0.940613, 0.287918, 0.067857, 0.162889;;, + 118;4;-0.938865, 0.294583, 0.069871, 0.162456;;, + 119;4;-0.937206, 0.300418, 0.071636, 0.162056;;, + 120;4;-0.935522, 0.305681, 0.073231, 0.161659;;, + 121;4;-0.933726, 0.310514, 0.074701, 0.161241;;, + 122;4;-0.931869, 0.314796, 0.076009, 0.160815;;, + 123;4;-0.930028, 0.318414, 0.077118, 0.160399;;, + 124;4;-0.928306, 0.321287, 0.078005, 0.160019;;, + 125;4;-0.926808, 0.323405, 0.078663, 0.159697;;, + 126;4;-0.925614, 0.324832, 0.079109, 0.159453;;, + 127;4;-0.924769, 0.325687, 0.079379, 0.159295;;, + 128;4;-0.924276, 0.326109, 0.079513, 0.159222;;, + 129;4;-0.924113, 0.326225, 0.079551, 0.159227;;, + 130;4;-0.925247, 0.321972, 0.078266, 0.159548;;, + 131;4;-0.928679, 0.309174, 0.074398, 0.160428;;, + 132;4;-0.934265, 0.288365, 0.068109, 0.161831;;, + 133;4;-0.941576, 0.261147, 0.059883, 0.163651;;, + 134;4;-0.949860, 0.230314, 0.050565, 0.165704;;, + 135;4;-0.958146, 0.199480, 0.041247, 0.167750;;, + 136;4;-0.965461, 0.172263, 0.033021, 0.169554;;, + 137;4;-0.971053, 0.151453, 0.026732, 0.170930;;, + 138;4;-0.974494, 0.138655, 0.022864, 0.171776;;, + 139;4;-0.975637, 0.134402, 0.021579, 0.172057;;, + 140;4;-0.974549, 0.139101, 0.022996, 0.171774;;, + 141;4;-0.971214, 0.153508, 0.027340, 0.170906;;, + 142;4;-0.966204, 0.175152, 0.033866, 0.169602;;, + 143;4;-0.960885, 0.198129, 0.040794, 0.168218;;, + 144;4;-0.956421, 0.217410, 0.046607, 0.167057;;, + 145;4;-0.952480, 0.234935, 0.051889, 0.166019;;, + 146;4;-0.948403, 0.253734, 0.057552, 0.164929;;, + 147;4;-0.944376, 0.272073, 0.063078, 0.163858;;, + 148;4;-0.940613, 0.287918, 0.067857, 0.162889;;, + 149;4;-0.937206, 0.300418, 0.071636, 0.162056;;, + 150;4;-0.933726, 0.310514, 0.074701, 0.161241;;, + 151;4;-0.930028, 0.318414, 0.077118, 0.160399;;, + 152;4;-0.926808, 0.323405, 0.078663, 0.159697;;, + 153;4;-0.924769, 0.325687, 0.079379, 0.159295;;, + 154;4;-0.924113, 0.326225, 0.079551, 0.159227;;, + 155;4;-0.928679, 0.309174, 0.074398, 0.160428;;, + 156;4;-0.941576, 0.261147, 0.059883, 0.163651;;, + 157;4;-0.958146, 0.199480, 0.041247, 0.167750;;, + 158;4;-0.971053, 0.151453, 0.026732, 0.170930;;, + 159;4;-0.975637, 0.134402, 0.021579, 0.172057;;, + 160;4;-0.975636, 0.134611, 0.021642, 0.172057;;, + 161;4;-0.975632, 0.135243, 0.021831, 0.172056;;, + 162;4;-0.975622, 0.136299, 0.022149, 0.172053;;, + 163;4;-0.975600, 0.137773, 0.022591, 0.172046;;, + 164;4;-0.975560, 0.139647, 0.023153, 0.172034;;, + 165;4;-0.975498, 0.141887, 0.023826, 0.172016;;, + 166;4;-0.975406, 0.144449, 0.024594, 0.171989;;, + 167;4;-0.975279, 0.147268, 0.025441, 0.171950;;, + 168;4;-0.975108, 0.150270, 0.026341, 0.171900;;, + 169;4;-0.974889, 0.153364, 0.027270, 0.171834;;, + 170;4;-0.974616, 0.156459, 0.028199, 0.171753;;, + 171;4;-0.974286, 0.159460, 0.029100, 0.171654;;, + 172;4;-0.973897, 0.162280, 0.029946, 0.171538;;, + 173;4;-0.973449, 0.164841, 0.030715, 0.171405;;, + 174;4;-0.972943, 0.167082, 0.031387, 0.171254;;, + 175;4;-0.972382, 0.168955, 0.031949, 0.171087;;, + 176;4;-0.971768, 0.170429, 0.032392, 0.170904;;, + 177;4;-0.971106, 0.171485, 0.032709, 0.170706;;, + 178;4;-0.970399, 0.172117, 0.032898, 0.170495;;, + 179;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 180;4;-0.965531, 0.168065, 0.019598, 0.168830;;, + 181;4;-0.954679, 0.155242,-0.020619, 0.164950;;, + 182;4;-0.937538, 0.134391,-0.086010, 0.158793;;, + 183;4;-0.915398, 0.107120,-0.171538, 0.150822;;, + 184;4;-0.890490, 0.076225,-0.268428, 0.141844;;, + 185;4;-0.865687, 0.045331,-0.365317, 0.132897;;, + 186;4;-0.843856, 0.018060,-0.450846, 0.125019;;, + 187;4;-0.827198,-0.002791,-0.516237, 0.119005;;, + 188;4;-0.816967,-0.015614,-0.556454, 0.115311;;, + 189;4;-0.813572,-0.019875,-0.569817, 0.114084;;, + 190;4;-0.827046,-0.023230,-0.534655, 0.125702;;, + 191;4;-0.865000,-0.031081,-0.432377, 0.158428;;, + 192;4;-0.913733,-0.036874,-0.292359, 0.200447;;, + 193;4;-0.951687,-0.033040,-0.166392, 0.233173;;, + 194;4;-0.965162,-0.016514,-0.090924, 0.244791;;, + 195;4;-0.965561, 0.016499,-0.047013, 0.238167;;, + 196;4;-0.966685, 0.066771,-0.009930, 0.219510;;, + 197;4;-0.968129, 0.120606, 0.015961, 0.195554;;, + 198;4;-0.969253, 0.159193, 0.029356, 0.176896;;, + 199;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 200;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 201;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 202;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 203;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 204;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 205;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 206;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 207;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 208;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 209;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 210;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 211;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 212;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 213;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 214;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 215;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 216;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 217;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 218;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 219;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 220;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 221;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 222;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 223;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 224;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 225;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 226;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 227;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 228;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 229;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 230;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 231;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 232;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 233;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 234;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 235;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 236;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 237;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 238;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 239;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 240;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 241;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 242;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 243;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 244;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 245;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 246;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 247;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 248;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 249;4;-0.969652, 0.172326, 0.032961, 0.170273;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3; 0.000000, 0.683319, 0.000000;;, + 1;3; 0.000000, 0.683319, 0.000000;;, + 2;3; 0.000000, 0.683319, 0.000000;;, + 3;3; 0.000000, 0.683319, 0.000000;;, + 4;3; 0.000000, 0.683319, 0.000000;;, + 5;3; 0.000000, 0.683319, 0.000000;;, + 6;3; 0.000000, 0.683319, 0.000000;;, + 7;3; 0.000000, 0.683319, 0.000000;;, + 8;3; 0.000000, 0.683319, 0.000000;;, + 9;3; 0.000000, 0.683319, 0.000000;;, + 10;3; 0.000000, 0.683319, 0.000000;;, + 11;3; 0.000000, 0.683319, 0.000000;;, + 12;3; 0.000000, 0.683319, 0.000000;;, + 13;3; 0.000000, 0.683319, 0.000000;;, + 14;3; 0.000000, 0.683319, 0.000000;;, + 15;3; 0.000000, 0.683319, 0.000000;;, + 16;3; 0.000000, 0.683319, 0.000000;;, + 17;3; 0.000000, 0.683319, 0.000000;;, + 18;3; 0.000000, 0.683319, 0.000000;;, + 19;3; 0.000000, 0.683319, 0.000000;;, + 20;3; 0.000000, 0.683319, 0.000000;;, + 21;3; 0.000000, 0.683319, 0.000000;;, + 22;3; 0.000000, 0.683319, 0.000000;;, + 23;3; 0.000000, 0.683319, 0.000000;;, + 24;3; 0.000000, 0.683319, 0.000000;;, + 25;3; 0.000000, 0.683319, 0.000000;;, + 26;3; 0.000000, 0.683319, 0.000000;;, + 27;3; 0.000000, 0.683319, 0.000000;;, + 28;3; 0.000000, 0.683319, 0.000000;;, + 29;3; 0.000000, 0.683319, 0.000000;;, + 30;3; 0.000000, 0.683319, 0.000000;;, + 31;3; 0.000000, 0.683319, 0.000000;;, + 32;3; 0.000000, 0.683319, 0.000000;;, + 33;3; 0.000000, 0.683319, 0.000000;;, + 34;3; 0.000000, 0.683319, 0.000000;;, + 35;3; 0.000000, 0.683319, 0.000000;;, + 36;3; 0.000000, 0.683319, 0.000000;;, + 37;3; 0.000000, 0.683319, 0.000000;;, + 38;3; 0.000000, 0.683319, 0.000000;;, + 39;3; 0.000000, 0.683319, 0.000000;;, + 40;3; 0.000000, 0.683319, 0.000000;;, + 41;3; 0.000000, 0.683319, 0.000000;;, + 42;3; 0.000000, 0.683319, 0.000000;;, + 43;3; 0.000000, 0.683319, 0.000000;;, + 44;3; 0.000000, 0.683319, 0.000000;;, + 45;3; 0.000000, 0.683319, 0.000000;;, + 46;3; 0.000000, 0.683319, 0.000000;;, + 47;3; 0.000000, 0.683319, 0.000000;;, + 48;3; 0.000000, 0.683319, 0.000000;;, + 49;3; 0.000000, 0.683319, 0.000000;;, + 50;3; 0.000000, 0.683319, 0.000000;;, + 51;3; 0.000000, 0.683319, 0.000000;;, + 52;3; 0.000000, 0.683319, 0.000000;;, + 53;3; 0.000000, 0.683319, 0.000000;;, + 54;3; 0.000000, 0.683319, 0.000000;;, + 55;3; 0.000000, 0.683319, 0.000000;;, + 56;3; 0.000000, 0.683319, 0.000000;;, + 57;3; 0.000000, 0.683319, 0.000000;;, + 58;3; 0.000000, 0.683319, 0.000000;;, + 59;3; 0.000000, 0.683319, 0.000000;;, + 60;3; 0.000000, 0.683319, 0.000000;;, + 61;3; 0.000000, 0.683319, 0.000000;;, + 62;3; 0.000000, 0.683319, 0.000000;;, + 63;3; 0.000000, 0.683319, 0.000000;;, + 64;3; 0.000000, 0.683319, 0.000000;;, + 65;3; 0.000000, 0.683319, 0.000000;;, + 66;3; 0.000000, 0.683319, 0.000000;;, + 67;3; 0.000000, 0.683319, 0.000000;;, + 68;3; 0.000000, 0.683319, 0.000000;;, + 69;3; 0.000000, 0.683319, 0.000000;;, + 70;3; 0.000000, 0.683319, 0.000000;;, + 71;3; 0.000000, 0.683319, 0.000000;;, + 72;3; 0.000000, 0.683319, 0.000000;;, + 73;3; 0.000000, 0.683319, 0.000000;;, + 74;3; 0.000000, 0.683319, 0.000000;;, + 75;3; 0.000000, 0.683319, 0.000000;;, + 76;3; 0.000000, 0.683319, 0.000000;;, + 77;3; 0.000000, 0.683319, 0.000000;;, + 78;3; 0.000000, 0.683319, 0.000000;;, + 79;3; 0.000000, 0.683319, 0.000000;;, + 80;3; 0.000000, 0.683319, 0.000000;;, + 81;3; 0.000000, 0.683319, 0.000000;;, + 82;3; 0.000000, 0.683319, 0.000000;;, + 83;3; 0.000000, 0.683319, 0.000000;;, + 84;3; 0.000000, 0.683319, 0.000000;;, + 85;3; 0.000000, 0.683319, 0.000000;;, + 86;3; 0.000000, 0.683319, 0.000000;;, + 87;3; 0.000000, 0.683319, 0.000000;;, + 88;3; 0.000000, 0.683319, 0.000000;;, + 89;3; 0.000000, 0.683319, 0.000000;;, + 90;3; 0.000000, 0.683319, 0.000000;;, + 91;3; 0.000000, 0.683319, 0.000000;;, + 92;3; 0.000000, 0.683319, 0.000000;;, + 93;3; 0.000000, 0.683319, 0.000000;;, + 94;3; 0.000000, 0.683319, 0.000000;;, + 95;3; 0.000000, 0.683319, 0.000000;;, + 96;3; 0.000000, 0.683319, 0.000000;;, + 97;3; 0.000000, 0.683319, 0.000000;;, + 98;3; 0.000000, 0.683319, 0.000000;;, + 99;3; 0.000000, 0.683319, 0.000000;;, + 100;3; 0.000000, 0.683319, 0.000000;;, + 101;3; 0.000000, 0.683319, 0.000000;;, + 102;3; 0.000000, 0.683319, 0.000000;;, + 103;3; 0.000000, 0.683319, 0.000000;;, + 104;3; 0.000000, 0.683319, 0.000000;;, + 105;3; 0.000000, 0.683319, 0.000000;;, + 106;3; 0.000000, 0.683319, 0.000000;;, + 107;3; 0.000000, 0.683319, 0.000000;;, + 108;3; 0.000000, 0.683319, 0.000000;;, + 109;3; 0.000000, 0.683319, 0.000000;;, + 110;3; 0.000000, 0.683319, 0.000000;;, + 111;3; 0.000000, 0.683319, 0.000000;;, + 112;3; 0.000000, 0.683319, 0.000000;;, + 113;3; 0.000000, 0.683319, 0.000000;;, + 114;3; 0.000000, 0.683319, 0.000000;;, + 115;3; 0.000000, 0.683319, 0.000000;;, + 116;3; 0.000000, 0.683319, 0.000000;;, + 117;3; 0.000000, 0.683319, 0.000000;;, + 118;3; 0.000000, 0.683319, 0.000000;;, + 119;3; 0.000000, 0.683319, 0.000000;;, + 120;3; 0.000000, 0.683319, 0.000000;;, + 121;3; 0.000000, 0.683319, 0.000000;;, + 122;3; 0.000000, 0.683319, 0.000000;;, + 123;3; 0.000000, 0.683319, 0.000000;;, + 124;3; 0.000000, 0.683319, 0.000000;;, + 125;3; 0.000000, 0.683319, 0.000000;;, + 126;3; 0.000000, 0.683319, 0.000000;;, + 127;3; 0.000000, 0.683319, 0.000000;;, + 128;3; 0.000000, 0.683319, 0.000000;;, + 129;3; 0.000000, 0.683319, 0.000000;;, + 130;3; 0.000000, 0.683319, 0.000000;;, + 131;3; 0.000000, 0.683319, 0.000000;;, + 132;3; 0.000000, 0.683319, 0.000000;;, + 133;3; 0.000000, 0.683319, 0.000000;;, + 134;3; 0.000000, 0.683319, 0.000000;;, + 135;3; 0.000000, 0.683319, 0.000000;;, + 136;3; 0.000000, 0.683319, 0.000000;;, + 137;3; 0.000000, 0.683319, 0.000000;;, + 138;3; 0.000000, 0.683319, 0.000000;;, + 139;3; 0.000000, 0.683319, 0.000000;;, + 140;3; 0.000000, 0.683319, 0.000000;;, + 141;3; 0.000000, 0.683319, 0.000000;;, + 142;3; 0.000000, 0.683319, 0.000000;;, + 143;3; 0.000000, 0.683319, 0.000000;;, + 144;3; 0.000000, 0.683319, 0.000000;;, + 145;3; 0.000000, 0.683319, 0.000000;;, + 146;3; 0.000000, 0.683319, 0.000000;;, + 147;3; 0.000000, 0.683319, 0.000000;;, + 148;3; 0.000000, 0.683319, 0.000000;;, + 149;3; 0.000000, 0.683319, 0.000000;;, + 150;3; 0.000000, 0.683319, 0.000000;;, + 151;3; 0.000000, 0.683319, 0.000000;;, + 152;3; 0.000000, 0.683319, 0.000000;;, + 153;3; 0.000000, 0.683319, 0.000000;;, + 154;3; 0.000000, 0.683319, 0.000000;;, + 155;3; 0.000000, 0.683319, 0.000000;;, + 156;3; 0.000000, 0.683319, 0.000000;;, + 157;3; 0.000000, 0.683319, 0.000000;;, + 158;3; 0.000000, 0.683319, 0.000000;;, + 159;3; 0.000000, 0.683319, 0.000000;;, + 160;3; 0.000000, 0.683319, 0.000000;;, + 161;3; 0.000000, 0.683319, 0.000000;;, + 162;3; 0.000000, 0.683319, 0.000000;;, + 163;3; 0.000000, 0.683319, 0.000000;;, + 164;3; 0.000000, 0.683319, 0.000000;;, + 165;3; 0.000000, 0.683319, 0.000000;;, + 166;3; 0.000000, 0.683319, 0.000000;;, + 167;3; 0.000000, 0.683319, 0.000000;;, + 168;3; 0.000000, 0.683319, 0.000000;;, + 169;3; 0.000000, 0.683319, 0.000000;;, + 170;3; 0.000000, 0.683319, 0.000000;;, + 171;3; 0.000000, 0.683319, 0.000000;;, + 172;3; 0.000000, 0.683319, 0.000000;;, + 173;3; 0.000000, 0.683319, 0.000000;;, + 174;3; 0.000000, 0.683319, 0.000000;;, + 175;3; 0.000000, 0.683319, 0.000000;;, + 176;3; 0.000000, 0.683319, 0.000000;;, + 177;3; 0.000000, 0.683319, 0.000000;;, + 178;3; 0.000000, 0.683319, 0.000000;;, + 179;3; 0.000000, 0.683319, 0.000000;;, + 180;3;-0.000000, 0.683319, 0.000000;;, + 181;3;-0.000000, 0.683319,-0.000000;;, + 182;3;-0.000000, 0.683319, 0.000000;;, + 183;3;-0.000000, 0.683319, 0.000000;;, + 184;3; 0.000000, 0.683319, 0.000000;;, + 185;3; 0.000000, 0.683319, 0.000000;;, + 186;3;-0.000000, 0.683319, 0.000000;;, + 187;3; 0.000000, 0.683319, 0.000000;;, + 188;3; 0.000000, 0.683319, 0.000000;;, + 189;3;-0.000000, 0.683319,-0.000000;;, + 190;3; 0.000000, 0.683319, 0.000000;;, + 191;3;-0.000000, 0.683319,-0.000000;;, + 192;3; 0.000000, 0.683319,-0.000000;;, + 193;3; 0.000000, 0.683320,-0.000000;;, + 194;3;-0.000000, 0.683319,-0.000000;;, + 195;3; 0.000000, 0.683319, 0.000000;;, + 196;3;-0.000000, 0.683319, 0.000000;;, + 197;3; 0.000000, 0.683319, 0.000000;;, + 198;3; 0.000000, 0.683319,-0.000000;;, + 199;3; 0.000000, 0.683319, 0.000000;;, + 200;3; 0.000000, 0.683319, 0.000000;;, + 201;3; 0.000000, 0.683319, 0.000000;;, + 202;3; 0.000000, 0.683319, 0.000000;;, + 203;3; 0.000000, 0.683319, 0.000000;;, + 204;3; 0.000000, 0.683319, 0.000000;;, + 205;3; 0.000000, 0.683319, 0.000000;;, + 206;3; 0.000000, 0.683319, 0.000000;;, + 207;3; 0.000000, 0.683319, 0.000000;;, + 208;3; 0.000000, 0.683319, 0.000000;;, + 209;3; 0.000000, 0.683319, 0.000000;;, + 210;3; 0.000000, 0.683319, 0.000000;;, + 211;3; 0.000000, 0.683319, 0.000000;;, + 212;3; 0.000000, 0.683319, 0.000000;;, + 213;3; 0.000000, 0.683319, 0.000000;;, + 214;3; 0.000000, 0.683319, 0.000000;;, + 215;3; 0.000000, 0.683319, 0.000000;;, + 216;3; 0.000000, 0.683319, 0.000000;;, + 217;3; 0.000000, 0.683319, 0.000000;;, + 218;3; 0.000000, 0.683319, 0.000000;;, + 219;3; 0.000000, 0.683319, 0.000000;;, + 220;3; 0.000000, 0.683319, 0.000000;;, + 221;3; 0.000000, 0.683319, 0.000000;;, + 222;3; 0.000000, 0.683319, 0.000000;;, + 223;3; 0.000000, 0.683319, 0.000000;;, + 224;3; 0.000000, 0.683319, 0.000000;;, + 225;3; 0.000000, 0.683319, 0.000000;;, + 226;3; 0.000000, 0.683319, 0.000000;;, + 227;3; 0.000000, 0.683319, 0.000000;;, + 228;3; 0.000000, 0.683319, 0.000000;;, + 229;3; 0.000000, 0.683319, 0.000000;;, + 230;3; 0.000000, 0.683319, 0.000000;;, + 231;3; 0.000000, 0.683319, 0.000000;;, + 232;3; 0.000000, 0.683319, 0.000000;;, + 233;3; 0.000000, 0.683319, 0.000000;;, + 234;3; 0.000000, 0.683319, 0.000000;;, + 235;3; 0.000000, 0.683319, 0.000000;;, + 236;3; 0.000000, 0.683319, 0.000000;;, + 237;3; 0.000000, 0.683319, 0.000000;;, + 238;3; 0.000000, 0.683319, 0.000000;;, + 239;3; 0.000000, 0.683319, 0.000000;;, + 240;3; 0.000000, 0.683319, 0.000000;;, + 241;3; 0.000000, 0.683319, 0.000000;;, + 242;3; 0.000000, 0.683319, 0.000000;;, + 243;3; 0.000000, 0.683319, 0.000000;;, + 244;3; 0.000000, 0.683319, 0.000000;;, + 245;3; 0.000000, 0.683319, 0.000000;;, + 246;3; 0.000000, 0.683319, 0.000000;;, + 247;3; 0.000000, 0.683319, 0.000000;;, + 248;3; 0.000000, 0.683319, 0.000000;;, + 249;3; 0.000000, 0.683319, 0.000000;;; + } + } + Animation { + {Armature_Bone_024} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 1;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 2;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 3;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 4;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 5;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 6;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 7;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 8;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 9;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 10;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 11;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 12;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 13;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 14;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 15;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 16;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 17;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 18;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 19;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 20;4;-0.946563,-0.322516,-0.000012,-0.000000;;, + 21;4;-0.946459,-0.322813,-0.000049,-0.000001;;, + 22;4;-0.946284,-0.323309,-0.000111,-0.000002;;, + 23;4;-0.946041,-0.324002,-0.000198,-0.000004;;, + 24;4;-0.945731,-0.324883,-0.000308,-0.000006;;, + 25;4;-0.945361,-0.325937,-0.000440,-0.000009;;, + 26;4;-0.944938,-0.327141,-0.000590,-0.000012;;, + 27;4;-0.944472,-0.328467,-0.000755,-0.000015;;, + 28;4;-0.943976,-0.329878,-0.000932,-0.000019;;, + 29;4;-0.943465,-0.331333,-0.001113,-0.000022;;, + 30;4;-0.942954,-0.332789,-0.001295,-0.000026;;, + 31;4;-0.942458,-0.334200,-0.001471,-0.000030;;, + 32;4;-0.941992,-0.335525,-0.001637,-0.000033;;, + 33;4;-0.941569,-0.336730,-0.001787,-0.000036;;, + 34;4;-0.941199,-0.337784,-0.001919,-0.000038;;, + 35;4;-0.940889,-0.338664,-0.002029,-0.000041;;, + 36;4;-0.940646,-0.339357,-0.002115,-0.000042;;, + 37;4;-0.940471,-0.339854,-0.002177,-0.000044;;, + 38;4;-0.940367,-0.340151,-0.002214,-0.000044;;, + 39;4;-0.940333,-0.340249,-0.002227,-0.000045;;, + 40;4;-0.940343,-0.340233,-0.002224,-0.000045;;, + 41;4;-0.940378,-0.340176,-0.002217,-0.000044;;, + 42;4;-0.940438,-0.340071,-0.002203,-0.000044;;, + 43;4;-0.940529,-0.339905,-0.002181,-0.000044;;, + 44;4;-0.940651,-0.339667,-0.002150,-0.000043;;, + 45;4;-0.940808,-0.339345,-0.002108,-0.000042;;, + 46;4;-0.941004,-0.338924,-0.002053,-0.000041;;, + 47;4;-0.941238,-0.338393,-0.001985,-0.000040;;, + 48;4;-0.941513,-0.337742,-0.001902,-0.000038;;, + 49;4;-0.941828,-0.336961,-0.001803,-0.000036;;, + 50;4;-0.942182,-0.336046,-0.001688,-0.000034;;, + 51;4;-0.942573,-0.334995,-0.001556,-0.000031;;, + 52;4;-0.942998,-0.333810,-0.001407,-0.000028;;, + 53;4;-0.943453,-0.332497,-0.001244,-0.000025;;, + 54;4;-0.943934,-0.331061,-0.001065,-0.000021;;, + 55;4;-0.944437,-0.329514,-0.000874,-0.000018;;, + 56;4;-0.944959,-0.327866,-0.000670,-0.000013;;, + 57;4;-0.945495,-0.326127,-0.000456,-0.000009;;, + 58;4;-0.946042,-0.324307,-0.000232,-0.000005;;, + 59;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 60;4;-0.947182,-0.320398, 0.000247, 0.000005;;, + 61;4;-0.947817,-0.318183, 0.000518, 0.000010;;, + 62;4;-0.948503,-0.315774, 0.000813, 0.000016;;, + 63;4;-0.949240,-0.313171, 0.001131, 0.000023;;, + 64;4;-0.950025,-0.310377, 0.001473, 0.000030;;, + 65;4;-0.950859,-0.307397, 0.001837, 0.000037;;, + 66;4;-0.951741,-0.304234, 0.002223, 0.000045;;, + 67;4;-0.952667,-0.300896, 0.002631, 0.000053;;, + 68;4;-0.953636,-0.297391, 0.003058, 0.000061;;, + 69;4;-0.954645,-0.293730, 0.003505, 0.000070;;, + 70;4;-0.955691,-0.289925, 0.003969, 0.000080;;, + 71;4;-0.956770,-0.285989, 0.004449, 0.000089;;, + 72;4;-0.957877,-0.281940, 0.004943, 0.000099;;, + 73;4;-0.959008,-0.277794, 0.005448, 0.000109;;, + 74;4;-0.960158,-0.273572, 0.005962, 0.000120;;, + 75;4;-0.961320,-0.269296, 0.006483, 0.000130;;, + 76;4;-0.962489,-0.264987, 0.007008, 0.000141;;, + 77;4;-0.963659,-0.260671, 0.007534, 0.000151;;, + 78;4;-0.964822,-0.256372, 0.008058, 0.000162;;, + 79;4;-0.965972,-0.252114, 0.008576, 0.000172;;, + 80;4;-0.967103,-0.247924, 0.009086, 0.000182;;, + 81;4;-0.968207,-0.243826, 0.009585, 0.000192;;, + 82;4;-0.969279,-0.239844, 0.010070, 0.000202;;, + 83;4;-0.970313,-0.236001, 0.010538, 0.000211;;, + 84;4;-0.971303,-0.232316, 0.010987, 0.000220;;, + 85;4;-0.972245,-0.228811, 0.011413, 0.000229;;, + 86;4;-0.973133,-0.225501, 0.011816, 0.000237;;, + 87;4;-0.973964,-0.222402, 0.012193, 0.000245;;, + 88;4;-0.974734,-0.219526, 0.012543, 0.000252;;, + 89;4;-0.975441,-0.216886, 0.012865, 0.000258;;, + 90;4;-0.976083,-0.214487, 0.013156, 0.000264;;, + 91;4;-0.976658,-0.212338, 0.013418, 0.000269;;, + 92;4;-0.977164,-0.210442, 0.013649, 0.000274;;, + 93;4;-0.977602,-0.208803, 0.013848, 0.000278;;, + 94;4;-0.977971,-0.207421, 0.014016, 0.000281;;, + 95;4;-0.978271,-0.206296, 0.014153, 0.000284;;, + 96;4;-0.978503,-0.205427, 0.014259, 0.000286;;, + 97;4;-0.978668,-0.204810, 0.014334, 0.000287;;, + 98;4;-0.978765,-0.204444, 0.014378, 0.000288;;, + 99;4;-0.978798,-0.204322, 0.014393, 0.000289;;, + 100;4;-0.977917,-0.206530, 0.014114, 0.000283;;, + 101;4;-0.975180,-0.213386, 0.013245, 0.000266;;, + 102;4;-0.970531,-0.225034, 0.011769, 0.000236;;, + 103;4;-0.964087,-0.241176, 0.009724, 0.000195;;, + 104;4;-0.956199,-0.260939, 0.007221, 0.000145;;, + 105;4;-0.947423,-0.282925, 0.004436, 0.000089;;, + 106;4;-0.938406,-0.305513, 0.001574, 0.000032;;, + 107;4;-0.929731,-0.327247,-0.001179,-0.000024;;, + 108;4;-0.921813,-0.347085,-0.003693,-0.000074;;, + 109;4;-0.914886,-0.364439,-0.005891,-0.000118;;, + 110;4;-0.907959,-0.381793,-0.008089,-0.000162;;, + 111;4;-0.900040,-0.401631,-0.010603,-0.000213;;, + 112;4;-0.891365,-0.423365,-0.013356,-0.000268;;, + 113;4;-0.882348,-0.445954,-0.016218,-0.000325;;, + 114;4;-0.873572,-0.467939,-0.019003,-0.000381;;, + 115;4;-0.865684,-0.487702,-0.021506,-0.000431;;, + 116;4;-0.859241,-0.503845,-0.023551,-0.000472;;, + 117;4;-0.854591,-0.515492,-0.025027,-0.000502;;, + 118;4;-0.851854,-0.522349,-0.025896,-0.000519;;, + 119;4;-0.850973,-0.524556,-0.026175,-0.000525;;, + 120;4;-0.851854,-0.522349,-0.025896,-0.000519;;, + 121;4;-0.854591,-0.515492,-0.025027,-0.000502;;, + 122;4;-0.859240,-0.503845,-0.023551,-0.000472;;, + 123;4;-0.865684,-0.487702,-0.021506,-0.000431;;, + 124;4;-0.873572,-0.467939,-0.019003,-0.000381;;, + 125;4;-0.882348,-0.445954,-0.016218,-0.000325;;, + 126;4;-0.891365,-0.423365,-0.013356,-0.000268;;, + 127;4;-0.900040,-0.401631,-0.010603,-0.000213;;, + 128;4;-0.907959,-0.381793,-0.008089,-0.000162;;, + 129;4;-0.914886,-0.364439,-0.005891,-0.000118;;, + 130;4;-0.921813,-0.347085,-0.003693,-0.000074;;, + 131;4;-0.929731,-0.327247,-0.001179,-0.000024;;, + 132;4;-0.938406,-0.305513, 0.001574, 0.000032;;, + 133;4;-0.947423,-0.282925, 0.004436, 0.000089;;, + 134;4;-0.956199,-0.260939, 0.007221, 0.000145;;, + 135;4;-0.964087,-0.241176, 0.009724, 0.000195;;, + 136;4;-0.970531,-0.225034, 0.011769, 0.000236;;, + 137;4;-0.975180,-0.213386, 0.013245, 0.000266;;, + 138;4;-0.977917,-0.206530, 0.014114, 0.000283;;, + 139;4;-0.978798,-0.204322, 0.014393, 0.000289;;, + 140;4;-0.975180,-0.213386, 0.013245, 0.000266;;, + 141;4;-0.964087,-0.241176, 0.009724, 0.000195;;, + 142;4;-0.947423,-0.282925, 0.004436, 0.000089;;, + 143;4;-0.929731,-0.327247,-0.001179,-0.000024;;, + 144;4;-0.914886,-0.364439,-0.005891,-0.000118;;, + 145;4;-0.900040,-0.401631,-0.010603,-0.000213;;, + 146;4;-0.882348,-0.445954,-0.016218,-0.000325;;, + 147;4;-0.865684,-0.487702,-0.021506,-0.000431;;, + 148;4;-0.854591,-0.515492,-0.025027,-0.000502;;, + 149;4;-0.850973,-0.524556,-0.026175,-0.000525;;, + 150;4;-0.854591,-0.515492,-0.025027,-0.000502;;, + 151;4;-0.865684,-0.487702,-0.021506,-0.000431;;, + 152;4;-0.882348,-0.445954,-0.016218,-0.000325;;, + 153;4;-0.900040,-0.401631,-0.010603,-0.000213;;, + 154;4;-0.914886,-0.364439,-0.005891,-0.000118;;, + 155;4;-0.929731,-0.327247,-0.001179,-0.000024;;, + 156;4;-0.947423,-0.282925, 0.004436, 0.000089;;, + 157;4;-0.964087,-0.241176, 0.009724, 0.000195;;, + 158;4;-0.975180,-0.213386, 0.013245, 0.000266;;, + 159;4;-0.978798,-0.204322, 0.014393, 0.000289;;, + 160;4;-0.978620,-0.204973, 0.014314, 0.000287;;, + 161;4;-0.978084,-0.206941, 0.014074, 0.000282;;, + 162;4;-0.977187,-0.210230, 0.013673, 0.000274;;, + 163;4;-0.975936,-0.214820, 0.013114, 0.000263;;, + 164;4;-0.974345,-0.220653, 0.012403, 0.000249;;, + 165;4;-0.972442,-0.227631, 0.011552, 0.000232;;, + 166;4;-0.970268,-0.235607, 0.010580, 0.000212;;, + 167;4;-0.967874,-0.244388, 0.009510, 0.000191;;, + 168;4;-0.965325,-0.253733, 0.008371, 0.000168;;, + 169;4;-0.962698,-0.263370, 0.007197, 0.000144;;, + 170;4;-0.960070,-0.273007, 0.006022, 0.000121;;, + 171;4;-0.957522,-0.282352, 0.004883, 0.000098;;, + 172;4;-0.955128,-0.291132, 0.003813, 0.000076;;, + 173;4;-0.952953,-0.299109, 0.002841, 0.000057;;, + 174;4;-0.951050,-0.306087, 0.001990, 0.000040;;, + 175;4;-0.949460,-0.311920, 0.001279, 0.000026;;, + 176;4;-0.948208,-0.316510, 0.000720, 0.000014;;, + 177;4;-0.947312,-0.319799, 0.000319, 0.000006;;, + 178;4;-0.946775,-0.321766, 0.000079, 0.000002;;, + 179;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 180;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 181;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 182;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 183;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 184;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 185;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 186;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 187;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 188;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 189;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 190;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 191;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 192;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 193;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 194;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 195;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 196;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 197;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 198;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 199;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 200;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 201;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 202;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 203;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 204;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 205;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 206;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 207;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 208;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 209;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 210;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 211;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 212;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 213;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 214;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 215;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 216;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 217;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 218;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 219;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 220;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 221;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 222;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 223;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 224;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 225;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 226;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 227;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 228;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 229;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 230;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 231;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 232;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 233;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 234;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 235;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 236;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 237;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 238;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 239;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 240;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 241;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 242;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 243;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 244;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 245;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 246;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 247;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 248;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 249;4;-0.946598,-0.322417,-0.000000,-0.000000;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3; 0.000000, 1.294482, 0.000000;;, + 1;3; 0.000000, 1.294482, 0.000000;;, + 2;3; 0.000000, 1.294482, 0.000000;;, + 3;3; 0.000000, 1.294482, 0.000000;;, + 4;3; 0.000000, 1.294482, 0.000000;;, + 5;3; 0.000000, 1.294482, 0.000000;;, + 6;3; 0.000000, 1.294482, 0.000000;;, + 7;3; 0.000000, 1.294482, 0.000000;;, + 8;3; 0.000000, 1.294482, 0.000000;;, + 9;3; 0.000000, 1.294482, 0.000000;;, + 10;3; 0.000000, 1.294482, 0.000000;;, + 11;3; 0.000000, 1.294482, 0.000000;;, + 12;3; 0.000000, 1.294482, 0.000000;;, + 13;3; 0.000000, 1.294482, 0.000000;;, + 14;3; 0.000000, 1.294482, 0.000000;;, + 15;3; 0.000000, 1.294482, 0.000000;;, + 16;3; 0.000000, 1.294482, 0.000000;;, + 17;3; 0.000000, 1.294482, 0.000000;;, + 18;3; 0.000000, 1.294482, 0.000000;;, + 19;3; 0.000000, 1.294482, 0.000000;;, + 20;3; 0.000000, 1.294482, 0.000000;;, + 21;3; 0.000000, 1.294482, 0.000000;;, + 22;3; 0.000000, 1.294482, 0.000000;;, + 23;3; 0.000000, 1.294482, 0.000000;;, + 24;3; 0.000000, 1.294482, 0.000000;;, + 25;3; 0.000000, 1.294482, 0.000000;;, + 26;3; 0.000000, 1.294482, 0.000000;;, + 27;3; 0.000000, 1.294482, 0.000000;;, + 28;3; 0.000000, 1.294482, 0.000000;;, + 29;3; 0.000000, 1.294482, 0.000000;;, + 30;3; 0.000000, 1.294482, 0.000000;;, + 31;3; 0.000000, 1.294482, 0.000000;;, + 32;3; 0.000000, 1.294482, 0.000000;;, + 33;3; 0.000000, 1.294482, 0.000000;;, + 34;3; 0.000000, 1.294482, 0.000000;;, + 35;3; 0.000000, 1.294482, 0.000000;;, + 36;3; 0.000000, 1.294482, 0.000000;;, + 37;3; 0.000000, 1.294482, 0.000000;;, + 38;3; 0.000000, 1.294482, 0.000000;;, + 39;3; 0.000000, 1.294482, 0.000000;;, + 40;3; 0.000000, 1.294482, 0.000000;;, + 41;3; 0.000000, 1.294482, 0.000000;;, + 42;3; 0.000000, 1.294482, 0.000000;;, + 43;3; 0.000000, 1.294482, 0.000000;;, + 44;3; 0.000000, 1.294482, 0.000000;;, + 45;3; 0.000000, 1.294482, 0.000000;;, + 46;3; 0.000000, 1.294482, 0.000000;;, + 47;3; 0.000000, 1.294482, 0.000000;;, + 48;3; 0.000000, 1.294482, 0.000000;;, + 49;3; 0.000000, 1.294482, 0.000000;;, + 50;3; 0.000000, 1.294482, 0.000000;;, + 51;3; 0.000000, 1.294482, 0.000000;;, + 52;3; 0.000000, 1.294482, 0.000000;;, + 53;3; 0.000000, 1.294482, 0.000000;;, + 54;3; 0.000000, 1.294482, 0.000000;;, + 55;3; 0.000000, 1.294482, 0.000000;;, + 56;3; 0.000000, 1.294482, 0.000000;;, + 57;3; 0.000000, 1.294482, 0.000000;;, + 58;3; 0.000000, 1.294482, 0.000000;;, + 59;3; 0.000000, 1.294482, 0.000000;;, + 60;3; 0.000000, 1.294482, 0.000000;;, + 61;3; 0.000000, 1.294482, 0.000000;;, + 62;3; 0.000000, 1.294481,-0.000000;;, + 63;3;-0.000000, 1.294482, 0.000000;;, + 64;3;-0.000000, 1.294482,-0.000000;;, + 65;3; 0.000000, 1.294482,-0.000000;;, + 66;3; 0.000000, 1.294482, 0.000000;;, + 67;3; 0.000000, 1.294482, 0.000000;;, + 68;3; 0.000000, 1.294482, 0.000000;;, + 69;3; 0.000000, 1.294482, 0.000000;;, + 70;3; 0.000000, 1.294482, 0.000000;;, + 71;3;-0.000000, 1.294482,-0.000000;;, + 72;3; 0.000000, 1.294481,-0.000000;;, + 73;3;-0.000000, 1.294482, 0.000000;;, + 74;3;-0.000000, 1.294482, 0.000000;;, + 75;3; 0.000000, 1.294482, 0.000000;;, + 76;3; 0.000000, 1.294482, 0.000000;;, + 77;3; 0.000000, 1.294482,-0.000000;;, + 78;3; 0.000000, 1.294481, 0.000000;;, + 79;3; 0.000000, 1.294482, 0.000000;;, + 80;3;-0.000000, 1.294482, 0.000000;;, + 81;3; 0.000000, 1.294482, 0.000000;;, + 82;3; 0.000000, 1.294482, 0.000000;;, + 83;3; 0.000000, 1.294482, 0.000000;;, + 84;3;-0.000000, 1.294482, 0.000000;;, + 85;3; 0.000000, 1.294482, 0.000000;;, + 86;3; 0.000000, 1.294482, 0.000000;;, + 87;3; 0.000000, 1.294482,-0.000000;;, + 88;3; 0.000000, 1.294482,-0.000000;;, + 89;3; 0.000000, 1.294482,-0.000000;;, + 90;3; 0.000000, 1.294482, 0.000000;;, + 91;3; 0.000000, 1.294482, 0.000000;;, + 92;3; 0.000000, 1.294482, 0.000000;;, + 93;3; 0.000000, 1.294482, 0.000000;;, + 94;3; 0.000000, 1.294481, 0.000000;;, + 95;3; 0.000000, 1.294482, 0.000000;;, + 96;3;-0.000000, 1.294482,-0.000000;;, + 97;3; 0.000000, 1.294482, 0.000000;;, + 98;3; 0.000000, 1.294482, 0.000000;;, + 99;3; 0.000000, 1.294482, 0.000000;;, + 100;3; 0.000000, 1.294482,-0.000000;;, + 101;3; 0.000000, 1.294481, 0.000000;;, + 102;3; 0.000000, 1.294482, 0.000000;;, + 103;3; 0.000000, 1.294482, 0.000000;;, + 104;3; 0.000000, 1.294482,-0.000000;;, + 105;3; 0.000000, 1.294482, 0.000000;;, + 106;3; 0.000000, 1.294482,-0.000000;;, + 107;3; 0.000000, 1.294482, 0.000000;;, + 108;3; 0.000000, 1.294481,-0.000000;;, + 109;3; 0.000000, 1.294482, 0.000000;;, + 110;3;-0.000000, 1.294482,-0.000000;;, + 111;3;-0.000000, 1.294482,-0.000000;;, + 112;3;-0.000000, 1.294482, 0.000000;;, + 113;3;-0.000000, 1.294482,-0.000000;;, + 114;3; 0.000000, 1.294482,-0.000000;;, + 115;3;-0.000000, 1.294482,-0.000000;;, + 116;3; 0.000000, 1.294482, 0.000000;;, + 117;3;-0.000000, 1.294482, 0.000000;;, + 118;3;-0.000000, 1.294481, 0.000000;;, + 119;3;-0.000000, 1.294482,-0.000000;;, + 120;3;-0.000000, 1.294482, 0.000000;;, + 121;3;-0.000000, 1.294482,-0.000000;;, + 122;3; 0.000000, 1.294482,-0.000000;;, + 123;3;-0.000000, 1.294481,-0.000000;;, + 124;3; 0.000000, 1.294482,-0.000000;;, + 125;3; 0.000000, 1.294482,-0.000000;;, + 126;3; 0.000000, 1.294482,-0.000000;;, + 127;3; 0.000000, 1.294482, 0.000000;;, + 128;3; 0.000000, 1.294482, 0.000000;;, + 129;3;-0.000000, 1.294482, 0.000000;;, + 130;3; 0.000000, 1.294482, 0.000000;;, + 131;3; 0.000000, 1.294482, 0.000000;;, + 132;3; 0.000000, 1.294481, 0.000000;;, + 133;3; 0.000000, 1.294482,-0.000000;;, + 134;3;-0.000000, 1.294482, 0.000000;;, + 135;3; 0.000000, 1.294482,-0.000000;;, + 136;3; 0.000000, 1.294482, 0.000000;;, + 137;3;-0.000000, 1.294482,-0.000000;;, + 138;3;-0.000000, 1.294482,-0.000000;;, + 139;3; 0.000000, 1.294482, 0.000000;;, + 140;3; 0.000000, 1.294481, 0.000000;;, + 141;3; 0.000000, 1.294482, 0.000000;;, + 142;3; 0.000000, 1.294482, 0.000000;;, + 143;3; 0.000000, 1.294482, 0.000000;;, + 144;3; 0.000000, 1.294482, 0.000000;;, + 145;3;-0.000000, 1.294482,-0.000000;;, + 146;3;-0.000000, 1.294482,-0.000000;;, + 147;3;-0.000000, 1.294482,-0.000000;;, + 148;3;-0.000000, 1.294482, 0.000000;;, + 149;3;-0.000000, 1.294482,-0.000000;;, + 150;3;-0.000000, 1.294482,-0.000000;;, + 151;3;-0.000000, 1.294481,-0.000000;;, + 152;3; 0.000000, 1.294482,-0.000000;;, + 153;3; 0.000000, 1.294482, 0.000000;;, + 154;3;-0.000000, 1.294482, 0.000000;;, + 155;3; 0.000000, 1.294482, 0.000000;;, + 156;3; 0.000000, 1.294482,-0.000000;;, + 157;3; 0.000000, 1.294482,-0.000000;;, + 158;3;-0.000000, 1.294482,-0.000000;;, + 159;3; 0.000000, 1.294482, 0.000000;;, + 160;3;-0.000000, 1.294482, 0.000000;;, + 161;3;-0.000000, 1.294482, 0.000000;;, + 162;3; 0.000000, 1.294482,-0.000000;;, + 163;3; 0.000000, 1.294482, 0.000000;;, + 164;3;-0.000000, 1.294482, 0.000000;;, + 165;3;-0.000000, 1.294481,-0.000000;;, + 166;3;-0.000000, 1.294482, 0.000000;;, + 167;3;-0.000000, 1.294482, 0.000000;;, + 168;3; 0.000000, 1.294482, 0.000000;;, + 169;3; 0.000000, 1.294482, 0.000000;;, + 170;3; 0.000000, 1.294482,-0.000000;;, + 171;3; 0.000000, 1.294481, 0.000000;;, + 172;3;-0.000000, 1.294482, 0.000000;;, + 173;3;-0.000000, 1.294481, 0.000000;;, + 174;3; 0.000000, 1.294482, 0.000000;;, + 175;3;-0.000000, 1.294482, 0.000000;;, + 176;3; 0.000000, 1.294482,-0.000000;;, + 177;3; 0.000000, 1.294482, 0.000000;;, + 178;3;-0.000000, 1.294482, 0.000000;;, + 179;3; 0.000000, 1.294482, 0.000000;;, + 180;3; 0.000000, 1.294482, 0.000000;;, + 181;3;-0.000000, 1.294482, 0.000000;;, + 182;3;-0.000000, 1.294482,-0.000000;;, + 183;3;-0.000000, 1.294481,-0.000000;;, + 184;3;-0.000000, 1.294482, 0.000000;;, + 185;3;-0.000000, 1.294481,-0.000000;;, + 186;3; 0.000000, 1.294482,-0.000000;;, + 187;3; 0.000000, 1.294482,-0.000000;;, + 188;3; 0.000000, 1.294482,-0.000000;;, + 189;3;-0.000000, 1.294481, 0.000000;;, + 190;3;-0.000000, 1.294482, 0.000000;;, + 191;3;-0.000000, 1.294482,-0.000000;;, + 192;3;-0.000000, 1.294482, 0.000000;;, + 193;3;-0.000000, 1.294482, 0.000000;;, + 194;3; 0.000000, 1.294482, 0.000000;;, + 195;3;-0.000000, 1.294481,-0.000000;;, + 196;3; 0.000000, 1.294481, 0.000000;;, + 197;3;-0.000000, 1.294482,-0.000000;;, + 198;3;-0.000000, 1.294482, 0.000000;;, + 199;3; 0.000000, 1.294482, 0.000000;;, + 200;3; 0.000000, 1.294482, 0.000000;;, + 201;3; 0.000000, 1.294482, 0.000000;;, + 202;3; 0.000000, 1.294482, 0.000000;;, + 203;3; 0.000000, 1.294482, 0.000000;;, + 204;3; 0.000000, 1.294482, 0.000000;;, + 205;3; 0.000000, 1.294482, 0.000000;;, + 206;3; 0.000000, 1.294482, 0.000000;;, + 207;3; 0.000000, 1.294482, 0.000000;;, + 208;3; 0.000000, 1.294482, 0.000000;;, + 209;3; 0.000000, 1.294482, 0.000000;;, + 210;3; 0.000000, 1.294482, 0.000000;;, + 211;3; 0.000000, 1.294482, 0.000000;;, + 212;3; 0.000000, 1.294482, 0.000000;;, + 213;3; 0.000000, 1.294482, 0.000000;;, + 214;3; 0.000000, 1.294482, 0.000000;;, + 215;3; 0.000000, 1.294482, 0.000000;;, + 216;3; 0.000000, 1.294482, 0.000000;;, + 217;3; 0.000000, 1.294482, 0.000000;;, + 218;3; 0.000000, 1.294482, 0.000000;;, + 219;3; 0.000000, 1.294482, 0.000000;;, + 220;3; 0.000000, 1.294482, 0.000000;;, + 221;3; 0.000000, 1.294482, 0.000000;;, + 222;3; 0.000000, 1.294482, 0.000000;;, + 223;3; 0.000000, 1.294482, 0.000000;;, + 224;3; 0.000000, 1.294482, 0.000000;;, + 225;3; 0.000000, 1.294482, 0.000000;;, + 226;3; 0.000000, 1.294482, 0.000000;;, + 227;3; 0.000000, 1.294482, 0.000000;;, + 228;3; 0.000000, 1.294482, 0.000000;;, + 229;3; 0.000000, 1.294482, 0.000000;;, + 230;3; 0.000000, 1.294482, 0.000000;;, + 231;3; 0.000000, 1.294482, 0.000000;;, + 232;3; 0.000000, 1.294482, 0.000000;;, + 233;3; 0.000000, 1.294482, 0.000000;;, + 234;3; 0.000000, 1.294482, 0.000000;;, + 235;3; 0.000000, 1.294482, 0.000000;;, + 236;3; 0.000000, 1.294482, 0.000000;;, + 237;3; 0.000000, 1.294482, 0.000000;;, + 238;3; 0.000000, 1.294482, 0.000000;;, + 239;3; 0.000000, 1.294482, 0.000000;;, + 240;3; 0.000000, 1.294482, 0.000000;;, + 241;3; 0.000000, 1.294482, 0.000000;;, + 242;3; 0.000000, 1.294482, 0.000000;;, + 243;3; 0.000000, 1.294482, 0.000000;;, + 244;3; 0.000000, 1.294482, 0.000000;;, + 245;3; 0.000000, 1.294482, 0.000000;;, + 246;3; 0.000000, 1.294482, 0.000000;;, + 247;3; 0.000000, 1.294482, 0.000000;;, + 248;3; 0.000000, 1.294482, 0.000000;;, + 249;3; 0.000000, 1.294482, 0.000000;;; + } + } + Animation { + {Armature_Bone_028} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 1;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 2;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 3;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 4;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 5;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 6;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 7;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 8;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 9;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 10;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 11;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 12;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 13;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 14;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 15;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 16;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 17;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 18;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 19;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 20;4;-0.979305,-0.202173, 0.000069, 0.000043;;, + 21;4;-0.979598,-0.200095, 0.000280, 0.000172;;, + 22;4;-0.980089,-0.196620, 0.000631, 0.000389;;, + 23;4;-0.980774,-0.191771, 0.001121, 0.000691;;, + 24;4;-0.981645,-0.185609, 0.001744, 0.001076;;, + 25;4;-0.982687,-0.178237, 0.002489, 0.001535;;, + 26;4;-0.983877,-0.169811, 0.003341, 0.002060;;, + 27;4;-0.985188,-0.160535, 0.004279, 0.002639;;, + 28;4;-0.986583,-0.150663, 0.005277, 0.003254;;, + 29;4;-0.988021,-0.140482, 0.006306, 0.003889;;, + 30;4;-0.989460,-0.130301, 0.007335, 0.004523;;, + 31;4;-0.990855,-0.120429, 0.008333, 0.005139;;, + 32;4;-0.992165,-0.111153, 0.009270, 0.005717;;, + 33;4;-0.993356,-0.102727, 0.010122, 0.006242;;, + 34;4;-0.994398,-0.095355, 0.010867, 0.006702;;, + 35;4;-0.995268,-0.089193, 0.011490, 0.007086;;, + 36;4;-0.995953,-0.084344, 0.011981, 0.007388;;, + 37;4;-0.996444,-0.080869, 0.012332, 0.007605;;, + 38;4;-0.996738,-0.078791, 0.012542, 0.007735;;, + 39;4;-0.996835,-0.078103, 0.012611, 0.007777;;, + 40;4;-0.996738,-0.078791, 0.012542, 0.007735;;, + 41;4;-0.996444,-0.080869, 0.012332, 0.007605;;, + 42;4;-0.995953,-0.084344, 0.011981, 0.007388;;, + 43;4;-0.995268,-0.089193, 0.011490, 0.007086;;, + 44;4;-0.994398,-0.095355, 0.010867, 0.006702;;, + 45;4;-0.993356,-0.102727, 0.010122, 0.006242;;, + 46;4;-0.992165,-0.111153, 0.009270, 0.005717;;, + 47;4;-0.990855,-0.120429, 0.008333, 0.005139;;, + 48;4;-0.989460,-0.130301, 0.007335, 0.004523;;, + 49;4;-0.988021,-0.140482, 0.006306, 0.003889;;, + 50;4;-0.986583,-0.150663, 0.005277, 0.003254;;, + 51;4;-0.985188,-0.160535, 0.004279, 0.002639;;, + 52;4;-0.983877,-0.169811, 0.003341, 0.002060;;, + 53;4;-0.982687,-0.178237, 0.002489, 0.001535;;, + 54;4;-0.981645,-0.185609, 0.001744, 0.001075;;, + 55;4;-0.980774,-0.191771, 0.001121, 0.000691;;, + 56;4;-0.980089,-0.196620, 0.000631, 0.000389;;, + 57;4;-0.979598,-0.200095, 0.000280, 0.000172;;, + 58;4;-0.979305,-0.202173, 0.000069, 0.000043;;, + 59;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 60;4;-0.979226,-0.202749, 0.000011, 0.000007;;, + 61;4;-0.979281,-0.202412, 0.000046, 0.000028;;, + 62;4;-0.979374,-0.201848, 0.000103, 0.000063;;, + 63;4;-0.979503,-0.201056, 0.000183, 0.000113;;, + 64;4;-0.979671,-0.200036, 0.000287, 0.000177;;, + 65;4;-0.979875,-0.198789, 0.000413, 0.000255;;, + 66;4;-0.980116,-0.197317, 0.000563, 0.000347;;, + 67;4;-0.980393,-0.195625, 0.000735, 0.000453;;, + 68;4;-0.980706,-0.193718, 0.000928, 0.000573;;, + 69;4;-0.981052,-0.191604, 0.001143, 0.000705;;, + 70;4;-0.981431,-0.189293, 0.001378, 0.000850;;, + 71;4;-0.981841,-0.186795, 0.001631, 0.001006;;, + 72;4;-0.982278,-0.184124, 0.001903, 0.001173;;, + 73;4;-0.982742,-0.181297, 0.002190, 0.001350;;, + 74;4;-0.983228,-0.178331, 0.002491, 0.001536;;, + 75;4;-0.983734,-0.175245, 0.002804, 0.001729;;, + 76;4;-0.984255,-0.172062, 0.003128, 0.001929;;, + 77;4;-0.984789,-0.168804, 0.003458, 0.002133;;, + 78;4;-0.985332,-0.165495, 0.003794, 0.002340;;, + 79;4;-0.985878,-0.162161, 0.004133, 0.002549;;, + 80;4;-0.986425,-0.158827, 0.004471, 0.002758;;, + 81;4;-0.986967,-0.155518, 0.004807, 0.002965;;, + 82;4;-0.987501,-0.152260, 0.005138, 0.003169;;, + 83;4;-0.988023,-0.149077, 0.005462, 0.003368;;, + 84;4;-0.988528,-0.145991, 0.005775, 0.003561;;, + 85;4;-0.989015,-0.143025, 0.006076, 0.003747;;, + 86;4;-0.989478,-0.140198, 0.006363, 0.003924;;, + 87;4;-0.989916,-0.137527, 0.006634, 0.004091;;, + 88;4;-0.990325,-0.135029, 0.006888, 0.004248;;, + 89;4;-0.990704,-0.132717, 0.007123, 0.004393;;, + 90;4;-0.991050,-0.130603, 0.007338, 0.004525;;, + 91;4;-0.991363,-0.128697, 0.007531, 0.004644;;, + 92;4;-0.991640,-0.127004, 0.007703, 0.004750;;, + 93;4;-0.991881,-0.125533, 0.007852, 0.004843;;, + 94;4;-0.992086,-0.124286, 0.007979, 0.004921;;, + 95;4;-0.992253,-0.123266, 0.008083, 0.004985;;, + 96;4;-0.992383,-0.122474, 0.008163, 0.005034;;, + 97;4;-0.992475,-0.121910, 0.008220, 0.005070;;, + 98;4;-0.992530,-0.121573, 0.008255, 0.005091;;, + 99;4;-0.992549,-0.121461, 0.008266, 0.005098;;, + 100;4;-0.992340,-0.122500, 0.008160, 0.005032;;, + 101;4;-0.991690,-0.125726, 0.007830, 0.004829;;, + 102;4;-0.990587,-0.131207, 0.007269, 0.004483;;, + 103;4;-0.989058,-0.138803, 0.006492, 0.004003;;, + 104;4;-0.987186,-0.148103, 0.005540, 0.003417;;, + 105;4;-0.985104,-0.158448, 0.004482, 0.002764;;, + 106;4;-0.982965,-0.169078, 0.003394, 0.002093;;, + 107;4;-0.980906,-0.179305, 0.002348, 0.001448;;, + 108;4;-0.979027,-0.188640, 0.001393, 0.000859;;, + 109;4;-0.977383,-0.196806, 0.000557, 0.000344;;, + 110;4;-0.975740,-0.204972,-0.000278,-0.000171;;, + 111;4;-0.973861,-0.214307,-0.001233,-0.000760;;, + 112;4;-0.971802,-0.224535,-0.002279,-0.001406;;, + 113;4;-0.969663,-0.235164,-0.003367,-0.002076;;, + 114;4;-0.967580,-0.245510,-0.004425,-0.002729;;, + 115;4;-0.965708,-0.254809,-0.005377,-0.003316;;, + 116;4;-0.964180,-0.262405,-0.006154,-0.003795;;, + 117;4;-0.963076,-0.267886,-0.006715,-0.004141;;, + 118;4;-0.962427,-0.271113,-0.007045,-0.004344;;, + 119;4;-0.962218,-0.272151,-0.007151,-0.004410;;, + 120;4;-0.962427,-0.271113,-0.007045,-0.004344;;, + 121;4;-0.963076,-0.267886,-0.006715,-0.004141;;, + 122;4;-0.964180,-0.262405,-0.006154,-0.003795;;, + 123;4;-0.965708,-0.254809,-0.005377,-0.003316;;, + 124;4;-0.967580,-0.245510,-0.004425,-0.002729;;, + 125;4;-0.969663,-0.235164,-0.003367,-0.002076;;, + 126;4;-0.971802,-0.224535,-0.002279,-0.001406;;, + 127;4;-0.973861,-0.214307,-0.001233,-0.000760;;, + 128;4;-0.975740,-0.204972,-0.000278,-0.000171;;, + 129;4;-0.977383,-0.196806, 0.000557, 0.000344;;, + 130;4;-0.979027,-0.188640, 0.001393, 0.000859;;, + 131;4;-0.980906,-0.179305, 0.002348, 0.001448;;, + 132;4;-0.982964,-0.169078, 0.003394, 0.002093;;, + 133;4;-0.985104,-0.158448, 0.004482, 0.002764;;, + 134;4;-0.987186,-0.148103, 0.005540, 0.003417;;, + 135;4;-0.989058,-0.138803, 0.006492, 0.004003;;, + 136;4;-0.990587,-0.131207, 0.007269, 0.004483;;, + 137;4;-0.991690,-0.125726, 0.007830, 0.004829;;, + 138;4;-0.992340,-0.122500, 0.008160, 0.005032;;, + 139;4;-0.992549,-0.121461, 0.008266, 0.005098;;, + 140;4;-0.991690,-0.125726, 0.007830, 0.004829;;, + 141;4;-0.989058,-0.138803, 0.006492, 0.004003;;, + 142;4;-0.985104,-0.158448, 0.004482, 0.002764;;, + 143;4;-0.980906,-0.179305, 0.002348, 0.001448;;, + 144;4;-0.977383,-0.196806, 0.000557, 0.000344;;, + 145;4;-0.973861,-0.214307,-0.001233,-0.000760;;, + 146;4;-0.969663,-0.235164,-0.003367,-0.002076;;, + 147;4;-0.965708,-0.254809,-0.005377,-0.003316;;, + 148;4;-0.963076,-0.267886,-0.006715,-0.004141;;, + 149;4;-0.962218,-0.272151,-0.007151,-0.004410;;, + 150;4;-0.963076,-0.267886,-0.006715,-0.004141;;, + 151;4;-0.965708,-0.254809,-0.005377,-0.003316;;, + 152;4;-0.969663,-0.235164,-0.003367,-0.002076;;, + 153;4;-0.973861,-0.214307,-0.001233,-0.000760;;, + 154;4;-0.977383,-0.196806, 0.000557, 0.000344;;, + 155;4;-0.980906,-0.179305, 0.002348, 0.001448;;, + 156;4;-0.985104,-0.158448, 0.004482, 0.002764;;, + 157;4;-0.989058,-0.138803, 0.006492, 0.004003;;, + 158;4;-0.991690,-0.125726, 0.007830, 0.004829;;, + 159;4;-0.992549,-0.121461, 0.008266, 0.005098;;, + 160;4;-0.992475,-0.121910, 0.008220, 0.005070;;, + 161;4;-0.992253,-0.123266, 0.008083, 0.004985;;, + 162;4;-0.991881,-0.125533, 0.007852, 0.004843;;, + 163;4;-0.991363,-0.128697, 0.007531, 0.004644;;, + 164;4;-0.990704,-0.132717, 0.007123, 0.004393;;, + 165;4;-0.989916,-0.137527, 0.006634, 0.004091;;, + 166;4;-0.989015,-0.143025, 0.006076, 0.003747;;, + 167;4;-0.988023,-0.149077, 0.005462, 0.003368;;, + 168;4;-0.986967,-0.155518, 0.004807, 0.002965;;, + 169;4;-0.985878,-0.162161, 0.004133, 0.002549;;, + 170;4;-0.984789,-0.168804, 0.003458, 0.002133;;, + 171;4;-0.983734,-0.175245, 0.002804, 0.001729;;, + 172;4;-0.982742,-0.181297, 0.002190, 0.001350;;, + 173;4;-0.981841,-0.186795, 0.001631, 0.001006;;, + 174;4;-0.981052,-0.191604, 0.001143, 0.000705;;, + 175;4;-0.980393,-0.195625, 0.000735, 0.000453;;, + 176;4;-0.979875,-0.198789, 0.000413, 0.000255;;, + 177;4;-0.979503,-0.201056, 0.000183, 0.000113;;, + 178;4;-0.979281,-0.202412, 0.000046, 0.000028;;, + 179;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 180;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 181;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 182;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 183;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 184;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 185;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 186;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 187;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 188;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 189;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 190;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 191;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 192;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 193;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 194;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 195;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 196;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 197;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 198;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 199;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 200;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 201;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 202;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 203;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 204;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 205;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 206;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 207;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 208;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 209;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 210;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 211;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 212;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 213;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 214;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 215;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 216;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 217;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 218;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 219;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 220;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 221;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 222;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 223;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 224;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 225;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 226;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 227;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 228;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 229;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 230;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 231;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 232;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 233;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 234;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 235;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 236;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 237;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 238;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 239;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 240;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 241;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 242;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 243;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 244;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 245;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 246;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 247;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 248;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 249;4;-0.979208,-0.202861,-0.000000,-0.000000;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3;-0.000000, 1.228822, 0.000000;;, + 1;3;-0.000000, 1.228822, 0.000000;;, + 2;3;-0.000000, 1.228822, 0.000000;;, + 3;3;-0.000000, 1.228822, 0.000000;;, + 4;3;-0.000000, 1.228822, 0.000000;;, + 5;3;-0.000000, 1.228822, 0.000000;;, + 6;3;-0.000000, 1.228822, 0.000000;;, + 7;3;-0.000000, 1.228822, 0.000000;;, + 8;3;-0.000000, 1.228822, 0.000000;;, + 9;3;-0.000000, 1.228822, 0.000000;;, + 10;3;-0.000000, 1.228822, 0.000000;;, + 11;3;-0.000000, 1.228822, 0.000000;;, + 12;3;-0.000000, 1.228822, 0.000000;;, + 13;3;-0.000000, 1.228822, 0.000000;;, + 14;3;-0.000000, 1.228822, 0.000000;;, + 15;3;-0.000000, 1.228822, 0.000000;;, + 16;3;-0.000000, 1.228822, 0.000000;;, + 17;3;-0.000000, 1.228822, 0.000000;;, + 18;3;-0.000000, 1.228822, 0.000000;;, + 19;3;-0.000000, 1.228822, 0.000000;;, + 20;3;-0.000000, 1.228822,-0.000000;;, + 21;3;-0.000000, 1.228822,-0.000000;;, + 22;3;-0.000000, 1.228822, 0.000000;;, + 23;3;-0.000000, 1.228822, 0.000000;;, + 24;3;-0.000000, 1.228822,-0.000000;;, + 25;3; 0.000000, 1.228822, 0.000000;;, + 26;3; 0.000000, 1.228822, 0.000000;;, + 27;3;-0.000000, 1.228822, 0.000000;;, + 28;3;-0.000000, 1.228822, 0.000000;;, + 29;3;-0.000000, 1.228822,-0.000000;;, + 30;3; 0.000000, 1.228822, 0.000000;;, + 31;3; 0.000000, 1.228822, 0.000000;;, + 32;3; 0.000000, 1.228822, 0.000000;;, + 33;3; 0.000000, 1.228822, 0.000000;;, + 34;3;-0.000000, 1.228822,-0.000000;;, + 35;3;-0.000000, 1.228822,-0.000000;;, + 36;3; 0.000000, 1.228822,-0.000000;;, + 37;3; 0.000000, 1.228822, 0.000000;;, + 38;3;-0.000000, 1.228822, 0.000000;;, + 39;3;-0.000000, 1.228822, 0.000000;;, + 40;3; 0.000000, 1.228822,-0.000000;;, + 41;3; 0.000000, 1.228822,-0.000000;;, + 42;3;-0.000000, 1.228822,-0.000000;;, + 43;3;-0.000000, 1.228822, 0.000000;;, + 44;3;-0.000000, 1.228822, 0.000000;;, + 45;3;-0.000000, 1.228822, 0.000000;;, + 46;3;-0.000000, 1.228822, 0.000000;;, + 47;3;-0.000000, 1.228822, 0.000000;;, + 48;3;-0.000000, 1.228822,-0.000000;;, + 49;3; 0.000000, 1.228822, 0.000000;;, + 50;3;-0.000000, 1.228822,-0.000000;;, + 51;3; 0.000000, 1.228822, 0.000000;;, + 52;3;-0.000000, 1.228822,-0.000000;;, + 53;3; 0.000000, 1.228822, 0.000000;;, + 54;3;-0.000000, 1.228822,-0.000000;;, + 55;3; 0.000000, 1.228822, 0.000000;;, + 56;3; 0.000000, 1.228822, 0.000000;;, + 57;3;-0.000000, 1.228822,-0.000000;;, + 58;3;-0.000000, 1.228822, 0.000000;;, + 59;3;-0.000000, 1.228822, 0.000000;;, + 60;3;-0.000000, 1.228822, 0.000000;;, + 61;3; 0.000000, 1.228822,-0.000000;;, + 62;3;-0.000000, 1.228822,-0.000000;;, + 63;3;-0.000000, 1.228822, 0.000000;;, + 64;3; 0.000000, 1.228822, 0.000000;;, + 65;3;-0.000000, 1.228822,-0.000000;;, + 66;3;-0.000000, 1.228822, 0.000000;;, + 67;3;-0.000000, 1.228822,-0.000000;;, + 68;3; 0.000000, 1.228822, 0.000000;;, + 69;3;-0.000000, 1.228822,-0.000000;;, + 70;3;-0.000000, 1.228822,-0.000000;;, + 71;3;-0.000000, 1.228822, 0.000000;;, + 72;3;-0.000000, 1.228822, 0.000000;;, + 73;3; 0.000000, 1.228822,-0.000000;;, + 74;3;-0.000000, 1.228822,-0.000000;;, + 75;3;-0.000000, 1.228822,-0.000000;;, + 76;3;-0.000000, 1.228822, 0.000000;;, + 77;3;-0.000000, 1.228822, 0.000000;;, + 78;3;-0.000000, 1.228822, 0.000000;;, + 79;3;-0.000000, 1.228822, 0.000000;;, + 80;3;-0.000000, 1.228822,-0.000000;;, + 81;3;-0.000000, 1.228822, 0.000000;;, + 82;3; 0.000000, 1.228822, 0.000000;;, + 83;3; 0.000000, 1.228822,-0.000000;;, + 84;3; 0.000000, 1.228822, 0.000000;;, + 85;3; 0.000000, 1.228822, 0.000000;;, + 86;3; 0.000000, 1.228822,-0.000000;;, + 87;3; 0.000000, 1.228822, 0.000000;;, + 88;3;-0.000000, 1.228822,-0.000000;;, + 89;3; 0.000000, 1.228822,-0.000000;;, + 90;3;-0.000000, 1.228822, 0.000000;;, + 91;3;-0.000000, 1.228822, 0.000000;;, + 92;3; 0.000000, 1.228822, 0.000000;;, + 93;3; 0.000000, 1.228822,-0.000000;;, + 94;3;-0.000000, 1.228822,-0.000000;;, + 95;3;-0.000000, 1.228822,-0.000000;;, + 96;3;-0.000000, 1.228822, 0.000000;;, + 97;3;-0.000000, 1.228822,-0.000000;;, + 98;3;-0.000000, 1.228822, 0.000000;;, + 99;3;-0.000000, 1.228822,-0.000000;;, + 100;3;-0.000000, 1.228822,-0.000000;;, + 101;3; 0.000000, 1.228822, 0.000000;;, + 102;3; 0.000000, 1.228822,-0.000000;;, + 103;3;-0.000000, 1.228822,-0.000000;;, + 104;3;-0.000000, 1.228822, 0.000000;;, + 105;3;-0.000000, 1.228822,-0.000000;;, + 106;3;-0.000000, 1.228822,-0.000000;;, + 107;3; 0.000000, 1.228822, 0.000000;;, + 108;3; 0.000000, 1.228822, 0.000000;;, + 109;3;-0.000000, 1.228822, 0.000000;;, + 110;3; 0.000000, 1.228822,-0.000000;;, + 111;3; 0.000000, 1.228822, 0.000000;;, + 112;3;-0.000000, 1.228822,-0.000000;;, + 113;3; 0.000000, 1.228822, 0.000000;;, + 114;3;-0.000000, 1.228822, 0.000000;;, + 115;3; 0.000000, 1.228822,-0.000000;;, + 116;3;-0.000000, 1.228822, 0.000000;;, + 117;3;-0.000000, 1.228822, 0.000000;;, + 118;3; 0.000000, 1.228822, 0.000000;;, + 119;3; 0.000000, 1.228822,-0.000000;;, + 120;3; 0.000000, 1.228822, 0.000000;;, + 121;3;-0.000000, 1.228822, 0.000000;;, + 122;3; 0.000000, 1.228822, 0.000000;;, + 123;3; 0.000000, 1.228822, 0.000000;;, + 124;3;-0.000000, 1.228822,-0.000000;;, + 125;3; 0.000000, 1.228822, 0.000000;;, + 126;3; 0.000000, 1.228822, 0.000000;;, + 127;3;-0.000000, 1.228822,-0.000000;;, + 128;3;-0.000000, 1.228822, 0.000000;;, + 129;3;-0.000000, 1.228822, 0.000000;;, + 130;3; 0.000000, 1.228822,-0.000000;;, + 131;3;-0.000000, 1.228822, 0.000000;;, + 132;3;-0.000000, 1.228822,-0.000000;;, + 133;3; 0.000000, 1.228822,-0.000000;;, + 134;3;-0.000000, 1.228822, 0.000000;;, + 135;3;-0.000000, 1.228822,-0.000000;;, + 136;3;-0.000000, 1.228822, 0.000000;;, + 137;3;-0.000000, 1.228822,-0.000000;;, + 138;3;-0.000000, 1.228822, 0.000000;;, + 139;3;-0.000000, 1.228822,-0.000000;;, + 140;3; 0.000000, 1.228822, 0.000000;;, + 141;3;-0.000000, 1.228822,-0.000000;;, + 142;3;-0.000000, 1.228822,-0.000000;;, + 143;3; 0.000000, 1.228822, 0.000000;;, + 144;3;-0.000000, 1.228822, 0.000000;;, + 145;3; 0.000000, 1.228822, 0.000000;;, + 146;3; 0.000000, 1.228822, 0.000000;;, + 147;3; 0.000000, 1.228822,-0.000000;;, + 148;3;-0.000000, 1.228822, 0.000000;;, + 149;3; 0.000000, 1.228822,-0.000000;;, + 150;3;-0.000000, 1.228822, 0.000000;;, + 151;3; 0.000000, 1.228822, 0.000000;;, + 152;3; 0.000000, 1.228822, 0.000000;;, + 153;3;-0.000000, 1.228822,-0.000000;;, + 154;3;-0.000000, 1.228822, 0.000000;;, + 155;3;-0.000000, 1.228822, 0.000000;;, + 156;3; 0.000000, 1.228822,-0.000000;;, + 157;3;-0.000000, 1.228822,-0.000000;;, + 158;3;-0.000000, 1.228822,-0.000000;;, + 159;3;-0.000000, 1.228822,-0.000000;;, + 160;3;-0.000000, 1.228822,-0.000000;;, + 161;3; 0.000000, 1.228822,-0.000000;;, + 162;3; 0.000000, 1.228822,-0.000000;;, + 163;3; 0.000000, 1.228822, 0.000000;;, + 164;3; 0.000000, 1.228822, 0.000000;;, + 165;3;-0.000000, 1.228822, 0.000000;;, + 166;3;-0.000000, 1.228822, 0.000000;;, + 167;3; 0.000000, 1.228822,-0.000000;;, + 168;3; 0.000000, 1.228822, 0.000000;;, + 169;3; 0.000000, 1.228822, 0.000000;;, + 170;3; 0.000000, 1.228822, 0.000000;;, + 171;3;-0.000000, 1.228822, 0.000000;;, + 172;3;-0.000000, 1.228822,-0.000000;;, + 173;3; 0.000000, 1.228822, 0.000000;;, + 174;3; 0.000000, 1.228822,-0.000000;;, + 175;3; 0.000000, 1.228822, 0.000000;;, + 176;3;-0.000000, 1.228822,-0.000000;;, + 177;3;-0.000000, 1.228822, 0.000000;;, + 178;3;-0.000000, 1.228822,-0.000000;;, + 179;3;-0.000000, 1.228822, 0.000000;;, + 180;3;-0.000000, 1.228822, 0.000000;;, + 181;3; 0.000000, 1.228822,-0.000000;;, + 182;3; 0.000000, 1.228822, 0.000000;;, + 183;3; 0.000000, 1.228822, 0.000000;;, + 184;3;-0.000000, 1.228822,-0.000000;;, + 185;3;-0.000000, 1.228822, 0.000000;;, + 186;3; 0.000000, 1.228822,-0.000000;;, + 187;3;-0.000000, 1.228822, 0.000000;;, + 188;3;-0.000000, 1.228822, 0.000000;;, + 189;3;-0.000000, 1.228822,-0.000000;;, + 190;3;-0.000000, 1.228822,-0.000000;;, + 191;3; 0.000000, 1.228822,-0.000000;;, + 192;3;-0.000000, 1.228822, 0.000000;;, + 193;3;-0.000000, 1.228822, 0.000000;;, + 194;3;-0.000000, 1.228822,-0.000000;;, + 195;3;-0.000000, 1.228822,-0.000000;;, + 196;3; 0.000000, 1.228822, 0.000000;;, + 197;3;-0.000000, 1.228822,-0.000000;;, + 198;3;-0.000000, 1.228822,-0.000000;;, + 199;3;-0.000000, 1.228822, 0.000000;;, + 200;3;-0.000000, 1.228822, 0.000000;;, + 201;3;-0.000000, 1.228822, 0.000000;;, + 202;3;-0.000000, 1.228822, 0.000000;;, + 203;3;-0.000000, 1.228822, 0.000000;;, + 204;3;-0.000000, 1.228822, 0.000000;;, + 205;3;-0.000000, 1.228822, 0.000000;;, + 206;3;-0.000000, 1.228822, 0.000000;;, + 207;3;-0.000000, 1.228822, 0.000000;;, + 208;3;-0.000000, 1.228822, 0.000000;;, + 209;3;-0.000000, 1.228822, 0.000000;;, + 210;3;-0.000000, 1.228822, 0.000000;;, + 211;3;-0.000000, 1.228822, 0.000000;;, + 212;3;-0.000000, 1.228822, 0.000000;;, + 213;3;-0.000000, 1.228822, 0.000000;;, + 214;3;-0.000000, 1.228822, 0.000000;;, + 215;3;-0.000000, 1.228822, 0.000000;;, + 216;3;-0.000000, 1.228822, 0.000000;;, + 217;3;-0.000000, 1.228822, 0.000000;;, + 218;3;-0.000000, 1.228822, 0.000000;;, + 219;3;-0.000000, 1.228822, 0.000000;;, + 220;3;-0.000000, 1.228822, 0.000000;;, + 221;3;-0.000000, 1.228822, 0.000000;;, + 222;3;-0.000000, 1.228822, 0.000000;;, + 223;3;-0.000000, 1.228822, 0.000000;;, + 224;3;-0.000000, 1.228822, 0.000000;;, + 225;3;-0.000000, 1.228822, 0.000000;;, + 226;3;-0.000000, 1.228822, 0.000000;;, + 227;3;-0.000000, 1.228822, 0.000000;;, + 228;3;-0.000000, 1.228822, 0.000000;;, + 229;3;-0.000000, 1.228822, 0.000000;;, + 230;3;-0.000000, 1.228822, 0.000000;;, + 231;3;-0.000000, 1.228822, 0.000000;;, + 232;3;-0.000000, 1.228822, 0.000000;;, + 233;3;-0.000000, 1.228822, 0.000000;;, + 234;3;-0.000000, 1.228822, 0.000000;;, + 235;3;-0.000000, 1.228822, 0.000000;;, + 236;3;-0.000000, 1.228822, 0.000000;;, + 237;3;-0.000000, 1.228822, 0.000000;;, + 238;3;-0.000000, 1.228822, 0.000000;;, + 239;3;-0.000000, 1.228822, 0.000000;;, + 240;3;-0.000000, 1.228822, 0.000000;;, + 241;3;-0.000000, 1.228822, 0.000000;;, + 242;3;-0.000000, 1.228822, 0.000000;;, + 243;3;-0.000000, 1.228822, 0.000000;;, + 244;3;-0.000000, 1.228822, 0.000000;;, + 245;3;-0.000000, 1.228822, 0.000000;;, + 246;3;-0.000000, 1.228822, 0.000000;;, + 247;3;-0.000000, 1.228822, 0.000000;;, + 248;3;-0.000000, 1.228822, 0.000000;;, + 249;3;-0.000000, 1.228822, 0.000000;;; + } + } + Animation { + {Armature_Bone_001} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 1;4;-0.707099,-0.000262,-0.000262, 0.707099;;, + 2;4;-0.707075,-0.001053,-0.001053, 0.707075;;, + 3;4;-0.707035,-0.002376,-0.002376, 0.707035;;, + 4;4;-0.706979,-0.004219,-0.004219, 0.706979;;, + 5;4;-0.706908,-0.006555,-0.006555, 0.706908;;, + 6;4;-0.706824,-0.009338,-0.009338, 0.706824;;, + 7;4;-0.706728,-0.012499,-0.012499, 0.706728;;, + 8;4;-0.706623,-0.015950,-0.015950, 0.706623;;, + 9;4;-0.706513,-0.019583,-0.019583, 0.706513;;, + 10;4;-0.706401,-0.023279,-0.023279, 0.706401;;, + 11;4;-0.706290,-0.026912,-0.026912, 0.706290;;, + 12;4;-0.706186,-0.030363,-0.030363, 0.706186;;, + 13;4;-0.706090,-0.033524,-0.033524, 0.706090;;, + 14;4;-0.706005,-0.036307,-0.036307, 0.706005;;, + 15;4;-0.705935,-0.038643,-0.038643, 0.705935;;, + 16;4;-0.705879,-0.040486,-0.040486, 0.705879;;, + 17;4;-0.705839,-0.041808,-0.041808, 0.705839;;, + 18;4;-0.705815,-0.042600,-0.042600, 0.705815;;, + 19;4;-0.705807,-0.042862,-0.042862, 0.705807;;, + 20;4;-0.705808,-0.042476,-0.042476, 0.705808;;, + 21;4;-0.705811,-0.041309,-0.041309, 0.705811;;, + 22;4;-0.705817,-0.039359,-0.039359, 0.705817;;, + 23;4;-0.705826,-0.036638,-0.036638, 0.705826;;, + 24;4;-0.705837,-0.033179,-0.033179, 0.705837;;, + 25;4;-0.705852,-0.029042,-0.029042, 0.705852;;, + 26;4;-0.705869,-0.024313,-0.024313, 0.705869;;, + 27;4;-0.705889,-0.019107,-0.019107, 0.705889;;, + 28;4;-0.705912,-0.013566,-0.013566, 0.705912;;, + 29;4;-0.705938,-0.007852,-0.007852, 0.705938;;, + 30;4;-0.705966,-0.002138,-0.002138, 0.705966;;, + 31;4;-0.705996, 0.003403, 0.003403, 0.705996;;, + 32;4;-0.706027, 0.008609, 0.008609, 0.706027;;, + 33;4;-0.706059, 0.013338, 0.013338, 0.706059;;, + 34;4;-0.706093, 0.017475, 0.017475, 0.706093;;, + 35;4;-0.706126, 0.020934, 0.020934, 0.706126;;, + 36;4;-0.706160, 0.023655, 0.023655, 0.706160;;, + 37;4;-0.706194, 0.025605, 0.025605, 0.706194;;, + 38;4;-0.706227, 0.026772, 0.026772, 0.706227;;, + 39;4;-0.706260, 0.027158, 0.027158, 0.706260;;, + 40;4;-0.706295, 0.027008, 0.027008, 0.706295;;, + 41;4;-0.706335, 0.026556, 0.026556, 0.706335;;, + 42;4;-0.706379, 0.025799, 0.025799, 0.706379;;, + 43;4;-0.706428, 0.024744, 0.024744, 0.706428;;, + 44;4;-0.706481, 0.023402, 0.023402, 0.706481;;, + 45;4;-0.706538, 0.021798, 0.021798, 0.706538;;, + 46;4;-0.706597, 0.019963, 0.019963, 0.706597;;, + 47;4;-0.706658, 0.017944, 0.017944, 0.706658;;, + 48;4;-0.706719, 0.015795, 0.015795, 0.706719;;, + 49;4;-0.706779, 0.013579, 0.013579, 0.706779;;, + 50;4;-0.706836, 0.011363, 0.011363, 0.706836;;, + 51;4;-0.706890, 0.009214, 0.009214, 0.706890;;, + 52;4;-0.706940, 0.007194, 0.007194, 0.706940;;, + 53;4;-0.706984, 0.005360, 0.005360, 0.706984;;, + 54;4;-0.707022, 0.003755, 0.003755, 0.707022;;, + 55;4;-0.707053, 0.002414, 0.002414, 0.707053;;, + 56;4;-0.707077, 0.001359, 0.001359, 0.707077;;, + 57;4;-0.707093, 0.000602, 0.000602, 0.707093;;, + 58;4;-0.707104, 0.000150, 0.000150, 0.707104;;, + 59;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 60;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 61;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 62;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 63;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 64;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 65;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 66;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 67;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 68;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 69;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 70;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 71;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 72;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 73;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 74;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 75;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 76;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 77;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 78;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 79;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 80;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 81;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 82;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 83;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 84;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 85;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 86;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 87;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 88;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 89;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 90;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 91;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 92;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 93;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 94;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 95;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 96;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 97;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 98;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 99;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 100;4;-0.707095,-0.000610,-0.000610, 0.707095;;, + 101;4;-0.707059,-0.002445,-0.002445, 0.707059;;, + 102;4;-0.707001,-0.005428,-0.005428, 0.707001;;, + 103;4;-0.706925,-0.009330,-0.009330, 0.706925;;, + 104;4;-0.706839,-0.013751,-0.013751, 0.706839;;, + 105;4;-0.706753,-0.018172,-0.018172, 0.706753;;, + 106;4;-0.706677,-0.022074,-0.022074, 0.706677;;, + 107;4;-0.706619,-0.025057,-0.025057, 0.706619;;, + 108;4;-0.706584,-0.026892,-0.026892, 0.706584;;, + 109;4;-0.706572,-0.027502,-0.027502, 0.706572;;, + 110;4;-0.706584,-0.026892,-0.026892, 0.706584;;, + 111;4;-0.706619,-0.025057,-0.025057, 0.706619;;, + 112;4;-0.706677,-0.022074,-0.022074, 0.706677;;, + 113;4;-0.706753,-0.018172,-0.018172, 0.706753;;, + 114;4;-0.706839,-0.013751,-0.013751, 0.706839;;, + 115;4;-0.706925,-0.009330,-0.009330, 0.706925;;, + 116;4;-0.707001,-0.005428,-0.005428, 0.707001;;, + 117;4;-0.707059,-0.002445,-0.002445, 0.707059;;, + 118;4;-0.707095,-0.000610,-0.000610, 0.707095;;, + 119;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 120;4;-0.707095,-0.000610,-0.000610, 0.707095;;, + 121;4;-0.707059,-0.002445,-0.002445, 0.707059;;, + 122;4;-0.707001,-0.005428,-0.005428, 0.707001;;, + 123;4;-0.706925,-0.009330,-0.009330, 0.706925;;, + 124;4;-0.706839,-0.013751,-0.013751, 0.706839;;, + 125;4;-0.706753,-0.018172,-0.018172, 0.706753;;, + 126;4;-0.706677,-0.022074,-0.022074, 0.706677;;, + 127;4;-0.706619,-0.025057,-0.025057, 0.706619;;, + 128;4;-0.706584,-0.026892,-0.026892, 0.706584;;, + 129;4;-0.706572,-0.027502,-0.027502, 0.706572;;, + 130;4;-0.706584,-0.026892,-0.026892, 0.706584;;, + 131;4;-0.706619,-0.025057,-0.025057, 0.706619;;, + 132;4;-0.706677,-0.022074,-0.022074, 0.706677;;, + 133;4;-0.706753,-0.018172,-0.018172, 0.706753;;, + 134;4;-0.706839,-0.013751,-0.013751, 0.706839;;, + 135;4;-0.706925,-0.009330,-0.009330, 0.706925;;, + 136;4;-0.707001,-0.005428,-0.005428, 0.707001;;, + 137;4;-0.707059,-0.002445,-0.002445, 0.707059;;, + 138;4;-0.707095,-0.000610,-0.000610, 0.707095;;, + 139;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 140;4;-0.707059,-0.002445,-0.002445, 0.707059;;, + 141;4;-0.706925,-0.009330,-0.009330, 0.706925;;, + 142;4;-0.706753,-0.018172,-0.018172, 0.706753;;, + 143;4;-0.706619,-0.025057,-0.025057, 0.706619;;, + 144;4;-0.706572,-0.027502,-0.027502, 0.706572;;, + 145;4;-0.706619,-0.025057,-0.025057, 0.706619;;, + 146;4;-0.706753,-0.018172,-0.018172, 0.706753;;, + 147;4;-0.706925,-0.009330,-0.009330, 0.706925;;, + 148;4;-0.707059,-0.002445,-0.002445, 0.707059;;, + 149;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 150;4;-0.707059,-0.002445,-0.002445, 0.707059;;, + 151;4;-0.706925,-0.009330,-0.009330, 0.706925;;, + 152;4;-0.706753,-0.018172,-0.018172, 0.706753;;, + 153;4;-0.706619,-0.025057,-0.025057, 0.706619;;, + 154;4;-0.706572,-0.027502,-0.027502, 0.706572;;, + 155;4;-0.706619,-0.025057,-0.025057, 0.706619;;, + 156;4;-0.706753,-0.018172,-0.018172, 0.706753;;, + 157;4;-0.706925,-0.009330,-0.009330, 0.706925;;, + 158;4;-0.707059,-0.002445,-0.002445, 0.707059;;, + 159;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 160;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 161;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 162;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 163;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 164;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 165;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 166;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 167;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 168;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 169;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 170;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 171;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 172;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 173;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 174;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 175;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 176;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 177;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 178;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 179;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 180;4;-0.706883,-0.002637,-0.002637, 0.706883;;, + 181;4;-0.706211,-0.010574,-0.010574, 0.706211;;, + 182;4;-0.705118,-0.023479,-0.023479, 0.705118;;, + 183;4;-0.703688,-0.040358,-0.040358, 0.703688;;, + 184;4;-0.702068,-0.059479,-0.059479, 0.702068;;, + 185;4;-0.700448,-0.078600,-0.078600, 0.700448;;, + 186;4;-0.699018,-0.095479,-0.095479, 0.699018;;, + 187;4;-0.697925,-0.108384,-0.108384, 0.697925;;, + 188;4;-0.697252,-0.116321,-0.116321, 0.697252;;, + 189;4;-0.697029,-0.118958,-0.118958, 0.697029;;, + 190;4;-0.697029,-0.118958,-0.118958, 0.697029;;, + 191;4;-0.697029,-0.118958,-0.118958, 0.697029;;, + 192;4;-0.697029,-0.118958,-0.118958, 0.697029;;, + 193;4;-0.697029,-0.118958,-0.118958, 0.697029;;, + 194;4;-0.697029,-0.118958,-0.118958, 0.697029;;, + 195;4;-0.697925,-0.108384,-0.108384, 0.697925;;, + 196;4;-0.700448,-0.078600,-0.078600, 0.700448;;, + 197;4;-0.703688,-0.040358,-0.040358, 0.703688;;, + 198;4;-0.706211,-0.010574,-0.010574, 0.706211;;, + 199;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 200;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 201;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 202;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 203;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 204;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 205;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 206;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 207;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 208;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 209;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 210;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 211;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 212;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 213;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 214;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 215;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 216;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 217;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 218;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 219;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 220;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 221;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 222;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 223;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 224;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 225;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 226;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 227;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 228;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 229;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 230;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 231;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 232;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 233;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 234;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 235;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 236;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 237;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 238;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 239;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 240;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 241;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 242;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 243;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 244;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 245;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 246;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 247;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 248;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 249;4;-0.707107, 0.000000, 0.000000, 0.707107;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3; 0.506179, 1.550838, 1.183012;;, + 1;3; 0.506179, 1.550838, 1.183012;;, + 2;3; 0.506179, 1.550838, 1.183012;;, + 3;3; 0.506179, 1.550838, 1.183012;;, + 4;3; 0.506179, 1.550838, 1.183012;;, + 5;3; 0.506179, 1.550838, 1.183012;;, + 6;3; 0.506179, 1.550838, 1.183012;;, + 7;3; 0.506179, 1.550838, 1.183012;;, + 8;3; 0.506179, 1.550838, 1.183012;;, + 9;3; 0.506179, 1.550838, 1.183012;;, + 10;3; 0.506179, 1.550838, 1.183012;;, + 11;3; 0.506179, 1.550838, 1.183012;;, + 12;3; 0.506179, 1.550838, 1.183012;;, + 13;3; 0.506179, 1.550838, 1.183012;;, + 14;3; 0.506179, 1.550838, 1.183012;;, + 15;3; 0.506179, 1.550838, 1.183012;;, + 16;3; 0.506179, 1.550838, 1.183012;;, + 17;3; 0.506179, 1.550838, 1.183012;;, + 18;3; 0.506179, 1.550838, 1.183012;;, + 19;3; 0.506179, 1.550838, 1.183012;;, + 20;3; 0.506179, 1.550838, 1.183012;;, + 21;3; 0.506179, 1.550838, 1.183012;;, + 22;3; 0.506179, 1.550838, 1.183012;;, + 23;3; 0.506179, 1.550838, 1.183012;;, + 24;3; 0.506179, 1.550838, 1.183012;;, + 25;3; 0.506179, 1.550838, 1.183012;;, + 26;3; 0.506179, 1.550838, 1.183012;;, + 27;3; 0.506179, 1.550838, 1.183012;;, + 28;3; 0.506179, 1.550838, 1.183012;;, + 29;3; 0.506179, 1.550838, 1.183012;;, + 30;3; 0.506179, 1.550838, 1.183012;;, + 31;3; 0.506179, 1.550838, 1.183012;;, + 32;3; 0.506179, 1.550838, 1.183012;;, + 33;3; 0.506179, 1.550838, 1.183012;;, + 34;3; 0.506179, 1.550838, 1.183012;;, + 35;3; 0.506179, 1.550838, 1.183012;;, + 36;3; 0.506179, 1.550838, 1.183012;;, + 37;3; 0.506179, 1.550838, 1.183012;;, + 38;3; 0.506179, 1.550838, 1.183012;;, + 39;3; 0.506179, 1.550838, 1.183012;;, + 40;3; 0.506179, 1.550838, 1.183012;;, + 41;3; 0.506179, 1.550838, 1.183012;;, + 42;3; 0.506179, 1.550838, 1.183012;;, + 43;3; 0.506179, 1.550838, 1.183012;;, + 44;3; 0.506179, 1.550838, 1.183012;;, + 45;3; 0.506179, 1.550838, 1.183012;;, + 46;3; 0.506179, 1.550838, 1.183012;;, + 47;3; 0.506179, 1.550838, 1.183012;;, + 48;3; 0.506179, 1.550838, 1.183012;;, + 49;3; 0.506179, 1.550838, 1.183012;;, + 50;3; 0.506179, 1.550838, 1.183012;;, + 51;3; 0.506179, 1.550838, 1.183012;;, + 52;3; 0.506179, 1.550838, 1.183012;;, + 53;3; 0.506179, 1.550838, 1.183012;;, + 54;3; 0.506179, 1.550838, 1.183012;;, + 55;3; 0.506179, 1.550838, 1.183012;;, + 56;3; 0.506179, 1.550838, 1.183012;;, + 57;3; 0.506179, 1.550838, 1.183012;;, + 58;3; 0.506179, 1.550838, 1.183012;;, + 59;3; 0.506179, 1.550838, 1.183012;;, + 60;3; 0.506179, 1.550838, 1.183012;;, + 61;3; 0.506179, 1.550838, 1.183012;;, + 62;3; 0.506179, 1.550838, 1.183012;;, + 63;3; 0.506179, 1.550838, 1.183012;;, + 64;3; 0.506179, 1.550838, 1.183012;;, + 65;3; 0.506179, 1.550838, 1.183012;;, + 66;3; 0.506179, 1.550838, 1.183012;;, + 67;3; 0.506179, 1.550838, 1.183012;;, + 68;3; 0.506179, 1.550838, 1.183012;;, + 69;3; 0.506179, 1.550838, 1.183012;;, + 70;3; 0.506179, 1.550838, 1.183012;;, + 71;3; 0.506179, 1.550838, 1.183012;;, + 72;3; 0.506179, 1.550838, 1.183012;;, + 73;3; 0.506179, 1.550838, 1.183012;;, + 74;3; 0.506179, 1.550838, 1.183012;;, + 75;3; 0.506179, 1.550838, 1.183012;;, + 76;3; 0.506179, 1.550838, 1.183012;;, + 77;3; 0.506179, 1.550838, 1.183012;;, + 78;3; 0.506179, 1.550838, 1.183012;;, + 79;3; 0.506179, 1.550838, 1.183012;;, + 80;3; 0.506179, 1.550838, 1.183012;;, + 81;3; 0.506179, 1.550838, 1.183012;;, + 82;3; 0.506179, 1.550838, 1.183012;;, + 83;3; 0.506179, 1.550838, 1.183012;;, + 84;3; 0.506179, 1.550838, 1.183012;;, + 85;3; 0.506179, 1.550838, 1.183012;;, + 86;3; 0.506179, 1.550838, 1.183012;;, + 87;3; 0.506179, 1.550838, 1.183012;;, + 88;3; 0.506179, 1.550838, 1.183012;;, + 89;3; 0.506179, 1.550838, 1.183012;;, + 90;3; 0.506179, 1.550838, 1.183012;;, + 91;3; 0.506179, 1.550838, 1.183012;;, + 92;3; 0.506179, 1.550838, 1.183012;;, + 93;3; 0.506179, 1.550838, 1.183012;;, + 94;3; 0.506179, 1.550838, 1.183012;;, + 95;3; 0.506179, 1.550838, 1.183012;;, + 96;3; 0.506179, 1.550838, 1.183012;;, + 97;3; 0.506179, 1.550838, 1.183012;;, + 98;3; 0.506179, 1.550838, 1.183012;;, + 99;3; 0.506179, 1.550838, 1.183012;;, + 100;3; 0.506179, 1.550838, 1.183012;;, + 101;3; 0.506179, 1.550838, 1.183012;;, + 102;3; 0.506179, 1.550838, 1.183012;;, + 103;3; 0.506179, 1.550838, 1.183012;;, + 104;3; 0.506179, 1.550838, 1.183012;;, + 105;3; 0.506179, 1.550838, 1.183012;;, + 106;3; 0.506179, 1.550838, 1.183012;;, + 107;3; 0.506179, 1.550838, 1.183012;;, + 108;3; 0.506179, 1.550838, 1.183012;;, + 109;3; 0.506179, 1.550838, 1.183012;;, + 110;3; 0.506179, 1.550838, 1.183012;;, + 111;3; 0.506179, 1.550838, 1.183012;;, + 112;3; 0.506179, 1.550838, 1.183012;;, + 113;3; 0.506179, 1.550838, 1.183012;;, + 114;3; 0.506179, 1.550838, 1.183012;;, + 115;3; 0.506179, 1.550838, 1.183012;;, + 116;3; 0.506179, 1.550838, 1.183012;;, + 117;3; 0.506179, 1.550838, 1.183012;;, + 118;3; 0.506179, 1.550838, 1.183012;;, + 119;3; 0.506179, 1.550838, 1.183012;;, + 120;3; 0.506179, 1.550838, 1.183012;;, + 121;3; 0.506179, 1.550838, 1.183012;;, + 122;3; 0.506179, 1.550838, 1.183012;;, + 123;3; 0.506179, 1.550838, 1.183012;;, + 124;3; 0.506179, 1.550838, 1.183012;;, + 125;3; 0.506179, 1.550838, 1.183012;;, + 126;3; 0.506179, 1.550838, 1.183012;;, + 127;3; 0.506179, 1.550838, 1.183012;;, + 128;3; 0.506179, 1.550838, 1.183012;;, + 129;3; 0.506179, 1.550838, 1.183012;;, + 130;3; 0.506179, 1.550838, 1.183012;;, + 131;3; 0.506179, 1.550838, 1.183012;;, + 132;3; 0.506179, 1.550838, 1.183012;;, + 133;3; 0.506179, 1.550838, 1.183012;;, + 134;3; 0.506179, 1.550838, 1.183012;;, + 135;3; 0.506179, 1.550838, 1.183012;;, + 136;3; 0.506179, 1.550838, 1.183012;;, + 137;3; 0.506179, 1.550838, 1.183012;;, + 138;3; 0.506179, 1.550838, 1.183012;;, + 139;3; 0.506179, 1.550838, 1.183012;;, + 140;3; 0.506179, 1.550838, 1.183012;;, + 141;3; 0.506179, 1.550838, 1.183012;;, + 142;3; 0.506179, 1.550838, 1.183012;;, + 143;3; 0.506179, 1.550838, 1.183012;;, + 144;3; 0.506179, 1.550838, 1.183012;;, + 145;3; 0.506179, 1.550838, 1.183012;;, + 146;3; 0.506179, 1.550838, 1.183012;;, + 147;3; 0.506179, 1.550838, 1.183012;;, + 148;3; 0.506179, 1.550838, 1.183012;;, + 149;3; 0.506179, 1.550838, 1.183012;;, + 150;3; 0.506179, 1.550838, 1.183012;;, + 151;3; 0.506179, 1.550838, 1.183012;;, + 152;3; 0.506179, 1.550838, 1.183012;;, + 153;3; 0.506179, 1.550838, 1.183012;;, + 154;3; 0.506179, 1.550838, 1.183012;;, + 155;3; 0.506179, 1.550838, 1.183012;;, + 156;3; 0.506179, 1.550838, 1.183012;;, + 157;3; 0.506179, 1.550838, 1.183012;;, + 158;3; 0.506179, 1.550838, 1.183012;;, + 159;3; 0.506179, 1.550838, 1.183012;;, + 160;3; 0.506179, 1.550838, 1.183012;;, + 161;3; 0.506179, 1.550838, 1.183012;;, + 162;3; 0.506179, 1.550838, 1.183012;;, + 163;3; 0.506179, 1.550838, 1.183012;;, + 164;3; 0.506179, 1.550838, 1.183012;;, + 165;3; 0.506179, 1.550838, 1.183012;;, + 166;3; 0.506179, 1.550838, 1.183012;;, + 167;3; 0.506179, 1.550838, 1.183012;;, + 168;3; 0.506179, 1.550838, 1.183012;;, + 169;3; 0.506179, 1.550838, 1.183012;;, + 170;3; 0.506179, 1.550838, 1.183012;;, + 171;3; 0.506179, 1.550838, 1.183012;;, + 172;3; 0.506179, 1.550838, 1.183012;;, + 173;3; 0.506179, 1.550838, 1.183012;;, + 174;3; 0.506179, 1.550838, 1.183012;;, + 175;3; 0.506179, 1.550838, 1.183012;;, + 176;3; 0.506179, 1.550838, 1.183012;;, + 177;3; 0.506179, 1.550838, 1.183012;;, + 178;3; 0.506179, 1.550838, 1.183012;;, + 179;3; 0.506179, 1.550838, 1.183012;;, + 180;3; 0.534224, 1.550838, 1.200614;;, + 181;3; 0.618629, 1.550838, 1.253590;;, + 182;3; 0.755866, 1.550838, 1.339727;;, + 183;3; 0.935366, 1.550838, 1.452389;;, + 184;3; 1.138711, 1.550838, 1.580017;;, + 185;3; 1.342055, 1.550838, 1.707644;;, + 186;3; 1.521555, 1.550838, 1.820307;;, + 187;3; 1.658792, 1.550838, 1.906443;;, + 188;3; 1.743197, 1.550838, 1.959419;;, + 189;3; 1.771243, 1.550838, 1.977021;;, + 190;3; 1.771243, 1.550838, 1.977021;;, + 191;3; 1.771243, 1.550838, 1.977021;;, + 192;3; 1.771243, 1.550838, 1.977021;;, + 193;3; 1.771243, 1.550838, 1.977021;;, + 194;3; 1.771243, 1.550838, 1.977021;;, + 195;3; 1.658792, 1.550838, 1.906443;;, + 196;3; 1.342055, 1.550838, 1.707644;;, + 197;3; 0.935367, 1.550838, 1.452389;;, + 198;3; 0.618629, 1.550838, 1.253590;;, + 199;3; 0.506179, 1.550838, 1.183012;;, + 200;3; 0.506179, 1.550838, 1.183012;;, + 201;3; 0.506179, 1.550838, 1.183012;;, + 202;3; 0.506179, 1.550838, 1.183012;;, + 203;3; 0.506179, 1.550838, 1.183012;;, + 204;3; 0.506179, 1.550838, 1.183012;;, + 205;3; 0.506179, 1.550838, 1.183012;;, + 206;3; 0.506179, 1.550838, 1.183012;;, + 207;3; 0.506179, 1.550838, 1.183012;;, + 208;3; 0.506179, 1.550838, 1.183012;;, + 209;3; 0.506179, 1.550838, 1.183012;;, + 210;3; 0.506179, 1.550838, 1.183012;;, + 211;3; 0.506179, 1.550838, 1.183012;;, + 212;3; 0.506179, 1.550838, 1.183012;;, + 213;3; 0.506179, 1.550838, 1.183012;;, + 214;3; 0.506179, 1.550838, 1.183012;;, + 215;3; 0.506179, 1.550838, 1.183012;;, + 216;3; 0.506179, 1.550838, 1.183012;;, + 217;3; 0.506179, 1.550838, 1.183012;;, + 218;3; 0.506179, 1.550838, 1.183012;;, + 219;3; 0.506179, 1.550838, 1.183012;;, + 220;3; 0.506179, 1.550838, 1.183012;;, + 221;3; 0.506179, 1.550838, 1.183012;;, + 222;3; 0.506179, 1.550838, 1.183012;;, + 223;3; 0.506179, 1.550838, 1.183012;;, + 224;3; 0.506179, 1.550838, 1.183012;;, + 225;3; 0.506179, 1.550838, 1.183012;;, + 226;3; 0.506179, 1.550838, 1.183012;;, + 227;3; 0.506179, 1.550838, 1.183012;;, + 228;3; 0.506179, 1.550838, 1.183012;;, + 229;3; 0.506179, 1.550838, 1.183012;;, + 230;3; 0.506179, 1.550838, 1.183012;;, + 231;3; 0.506179, 1.550838, 1.183012;;, + 232;3; 0.506179, 1.550838, 1.183012;;, + 233;3; 0.506179, 1.550838, 1.183012;;, + 234;3; 0.506179, 1.550838, 1.183012;;, + 235;3; 0.506179, 1.550838, 1.183012;;, + 236;3; 0.506179, 1.550838, 1.183012;;, + 237;3; 0.506179, 1.550838, 1.183012;;, + 238;3; 0.506179, 1.550838, 1.183012;;, + 239;3; 0.506179, 1.550838, 1.183012;;, + 240;3; 0.506179, 1.550838, 1.183012;;, + 241;3; 0.506179, 1.550838, 1.183012;;, + 242;3; 0.506179, 1.550838, 1.183012;;, + 243;3; 0.506179, 1.550838, 1.183012;;, + 244;3; 0.506179, 1.550838, 1.183012;;, + 245;3; 0.506179, 1.550838, 1.183012;;, + 246;3; 0.506179, 1.550838, 1.183012;;, + 247;3; 0.506179, 1.550838, 1.183012;;, + 248;3; 0.506179, 1.550838, 1.183012;;, + 249;3; 0.506179, 1.550838, 1.183012;;; + } + } + Animation { + {Cube_001} + AnimationKey { // Rotation + 0; + 250; + 0;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 1;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 2;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 3;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 4;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 5;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 6;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 7;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 8;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 9;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 10;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 11;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 12;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 13;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 14;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 15;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 16;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 17;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 18;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 19;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 20;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 21;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 22;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 23;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 24;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 25;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 26;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 27;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 28;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 29;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 30;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 31;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 32;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 33;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 34;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 35;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 36;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 37;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 38;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 39;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 40;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 41;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 42;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 43;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 44;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 45;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 46;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 47;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 48;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 49;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 50;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 51;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 52;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 53;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 54;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 55;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 56;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 57;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 58;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 59;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 60;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 61;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 62;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 63;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 64;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 65;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 66;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 67;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 68;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 69;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 70;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 71;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 72;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 73;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 74;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 75;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 76;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 77;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 78;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 79;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 80;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 81;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 82;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 83;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 84;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 85;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 86;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 87;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 88;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 89;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 90;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 91;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 92;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 93;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 94;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 95;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 96;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 97;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 98;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 99;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 100;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 101;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 102;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 103;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 104;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 105;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 106;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 107;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 108;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 109;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 110;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 111;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 112;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 113;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 114;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 115;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 116;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 117;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 118;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 119;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 120;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 121;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 122;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 123;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 124;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 125;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 126;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 127;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 128;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 129;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 130;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 131;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 132;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 133;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 134;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 135;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 136;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 137;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 138;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 139;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 140;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 141;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 142;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 143;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 144;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 145;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 146;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 147;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 148;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 149;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 150;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 151;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 152;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 153;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 154;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 155;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 156;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 157;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 158;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 159;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 160;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 161;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 162;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 163;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 164;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 165;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 166;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 167;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 168;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 169;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 170;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 171;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 172;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 173;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 174;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 175;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 176;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 177;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 178;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 179;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 180;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 181;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 182;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 183;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 184;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 185;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 186;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 187;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 188;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 189;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 190;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 191;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 192;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 193;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 194;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 195;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 196;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 197;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 198;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 199;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 200;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 201;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 202;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 203;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 204;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 205;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 206;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 207;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 208;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 209;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 210;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 211;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 212;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 213;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 214;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 215;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 216;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 217;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 218;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 219;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 220;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 221;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 222;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 223;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 224;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 225;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 226;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 227;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 228;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 229;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 230;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 231;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 232;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 233;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 234;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 235;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 236;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 237;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 238;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 239;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 240;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 241;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 242;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 243;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 244;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 245;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 246;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 247;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 248;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 249;4; 0.000000,-0.000000, 0.000000, 1.000000;;; + } + AnimationKey { // Scale + 1; + 250; + 0;3; 0.165085, 0.348037, 0.189174;;, + 1;3; 0.165085, 0.348037, 0.189174;;, + 2;3; 0.165085, 0.348037, 0.189174;;, + 3;3; 0.165085, 0.348037, 0.189174;;, + 4;3; 0.165085, 0.348037, 0.189174;;, + 5;3; 0.165085, 0.348037, 0.189174;;, + 6;3; 0.165085, 0.348037, 0.189174;;, + 7;3; 0.165085, 0.348037, 0.189174;;, + 8;3; 0.165085, 0.348037, 0.189174;;, + 9;3; 0.165085, 0.348037, 0.189174;;, + 10;3; 0.165085, 0.348037, 0.189174;;, + 11;3; 0.165085, 0.348037, 0.189174;;, + 12;3; 0.165085, 0.348037, 0.189174;;, + 13;3; 0.165085, 0.348037, 0.189174;;, + 14;3; 0.165085, 0.348037, 0.189174;;, + 15;3; 0.165085, 0.348037, 0.189174;;, + 16;3; 0.165085, 0.348037, 0.189174;;, + 17;3; 0.165085, 0.348037, 0.189174;;, + 18;3; 0.165085, 0.348037, 0.189174;;, + 19;3; 0.165085, 0.348037, 0.189174;;, + 20;3; 0.165085, 0.348037, 0.189174;;, + 21;3; 0.165085, 0.348037, 0.189174;;, + 22;3; 0.165085, 0.348037, 0.189174;;, + 23;3; 0.165085, 0.348037, 0.189174;;, + 24;3; 0.165085, 0.348037, 0.189174;;, + 25;3; 0.165085, 0.348037, 0.189174;;, + 26;3; 0.165085, 0.348037, 0.189174;;, + 27;3; 0.165085, 0.348037, 0.189174;;, + 28;3; 0.165085, 0.348037, 0.189174;;, + 29;3; 0.165085, 0.348037, 0.189174;;, + 30;3; 0.165085, 0.348037, 0.189174;;, + 31;3; 0.165085, 0.348037, 0.189174;;, + 32;3; 0.165085, 0.348037, 0.189174;;, + 33;3; 0.165085, 0.348037, 0.189174;;, + 34;3; 0.165085, 0.348037, 0.189174;;, + 35;3; 0.165085, 0.348037, 0.189174;;, + 36;3; 0.165085, 0.348037, 0.189174;;, + 37;3; 0.165085, 0.348037, 0.189174;;, + 38;3; 0.165085, 0.348037, 0.189174;;, + 39;3; 0.165085, 0.348037, 0.189174;;, + 40;3; 0.165085, 0.348037, 0.189174;;, + 41;3; 0.165085, 0.348037, 0.189174;;, + 42;3; 0.165085, 0.348037, 0.189174;;, + 43;3; 0.165085, 0.348037, 0.189174;;, + 44;3; 0.165085, 0.348037, 0.189174;;, + 45;3; 0.165085, 0.348037, 0.189174;;, + 46;3; 0.165085, 0.348037, 0.189174;;, + 47;3; 0.165085, 0.348037, 0.189174;;, + 48;3; 0.165085, 0.348037, 0.189174;;, + 49;3; 0.165085, 0.348037, 0.189174;;, + 50;3; 0.165085, 0.348037, 0.189174;;, + 51;3; 0.165085, 0.348037, 0.189174;;, + 52;3; 0.165085, 0.348037, 0.189174;;, + 53;3; 0.165085, 0.348037, 0.189174;;, + 54;3; 0.165085, 0.348037, 0.189174;;, + 55;3; 0.165085, 0.348037, 0.189174;;, + 56;3; 0.165085, 0.348037, 0.189174;;, + 57;3; 0.165085, 0.348037, 0.189174;;, + 58;3; 0.165085, 0.348037, 0.189174;;, + 59;3; 0.165085, 0.348037, 0.189174;;, + 60;3; 0.165085, 0.348037, 0.189174;;, + 61;3; 0.165085, 0.348037, 0.189174;;, + 62;3; 0.165085, 0.348037, 0.189174;;, + 63;3; 0.165085, 0.348037, 0.189174;;, + 64;3; 0.165085, 0.348037, 0.189174;;, + 65;3; 0.165085, 0.348037, 0.189174;;, + 66;3; 0.165085, 0.348037, 0.189174;;, + 67;3; 0.165085, 0.348037, 0.189174;;, + 68;3; 0.165085, 0.348037, 0.189174;;, + 69;3; 0.165085, 0.348037, 0.189174;;, + 70;3; 0.165085, 0.348037, 0.189174;;, + 71;3; 0.165085, 0.348037, 0.189174;;, + 72;3; 0.165085, 0.348037, 0.189174;;, + 73;3; 0.165085, 0.348037, 0.189174;;, + 74;3; 0.165085, 0.348037, 0.189174;;, + 75;3; 0.165085, 0.348037, 0.189174;;, + 76;3; 0.165085, 0.348037, 0.189174;;, + 77;3; 0.165085, 0.348037, 0.189174;;, + 78;3; 0.165085, 0.348037, 0.189174;;, + 79;3; 0.165085, 0.348037, 0.189174;;, + 80;3; 0.165085, 0.348037, 0.189174;;, + 81;3; 0.165085, 0.348037, 0.189174;;, + 82;3; 0.165085, 0.348037, 0.189174;;, + 83;3; 0.165085, 0.348037, 0.189174;;, + 84;3; 0.165085, 0.348037, 0.189174;;, + 85;3; 0.165085, 0.348037, 0.189174;;, + 86;3; 0.165085, 0.348037, 0.189174;;, + 87;3; 0.165085, 0.348037, 0.189174;;, + 88;3; 0.165085, 0.348037, 0.189174;;, + 89;3; 0.165085, 0.348037, 0.189174;;, + 90;3; 0.165085, 0.348037, 0.189174;;, + 91;3; 0.165085, 0.348037, 0.189174;;, + 92;3; 0.165085, 0.348037, 0.189174;;, + 93;3; 0.165085, 0.348037, 0.189174;;, + 94;3; 0.165085, 0.348037, 0.189174;;, + 95;3; 0.165085, 0.348037, 0.189174;;, + 96;3; 0.165085, 0.348037, 0.189174;;, + 97;3; 0.165085, 0.348037, 0.189174;;, + 98;3; 0.165085, 0.348037, 0.189174;;, + 99;3; 0.165085, 0.348037, 0.189174;;, + 100;3; 0.165085, 0.348037, 0.189174;;, + 101;3; 0.165085, 0.348037, 0.189174;;, + 102;3; 0.165085, 0.348037, 0.189174;;, + 103;3; 0.165085, 0.348037, 0.189174;;, + 104;3; 0.165085, 0.348037, 0.189174;;, + 105;3; 0.165085, 0.348037, 0.189174;;, + 106;3; 0.165085, 0.348037, 0.189174;;, + 107;3; 0.165085, 0.348037, 0.189174;;, + 108;3; 0.165085, 0.348037, 0.189174;;, + 109;3; 0.165085, 0.348037, 0.189174;;, + 110;3; 0.165085, 0.348037, 0.189174;;, + 111;3; 0.165085, 0.348037, 0.189174;;, + 112;3; 0.165085, 0.348037, 0.189174;;, + 113;3; 0.165085, 0.348037, 0.189174;;, + 114;3; 0.165085, 0.348037, 0.189174;;, + 115;3; 0.165085, 0.348037, 0.189174;;, + 116;3; 0.165085, 0.348037, 0.189174;;, + 117;3; 0.165085, 0.348037, 0.189174;;, + 118;3; 0.165085, 0.348037, 0.189174;;, + 119;3; 0.165085, 0.348037, 0.189174;;, + 120;3; 0.165085, 0.348037, 0.189174;;, + 121;3; 0.165085, 0.348037, 0.189174;;, + 122;3; 0.165085, 0.348037, 0.189174;;, + 123;3; 0.165085, 0.348037, 0.189174;;, + 124;3; 0.165085, 0.348037, 0.189174;;, + 125;3; 0.165085, 0.348037, 0.189174;;, + 126;3; 0.165085, 0.348037, 0.189174;;, + 127;3; 0.165085, 0.348037, 0.189174;;, + 128;3; 0.165085, 0.348037, 0.189174;;, + 129;3; 0.165085, 0.348037, 0.189174;;, + 130;3; 0.165085, 0.348037, 0.189174;;, + 131;3; 0.165085, 0.348037, 0.189174;;, + 132;3; 0.165085, 0.348037, 0.189174;;, + 133;3; 0.165085, 0.348037, 0.189174;;, + 134;3; 0.165085, 0.348037, 0.189174;;, + 135;3; 0.165085, 0.348037, 0.189174;;, + 136;3; 0.165085, 0.348037, 0.189174;;, + 137;3; 0.165085, 0.348037, 0.189174;;, + 138;3; 0.165085, 0.348037, 0.189174;;, + 139;3; 0.165085, 0.348037, 0.189174;;, + 140;3; 0.165085, 0.348037, 0.189174;;, + 141;3; 0.165085, 0.348037, 0.189174;;, + 142;3; 0.165085, 0.348037, 0.189174;;, + 143;3; 0.165085, 0.348037, 0.189174;;, + 144;3; 0.165085, 0.348037, 0.189174;;, + 145;3; 0.165085, 0.348037, 0.189174;;, + 146;3; 0.165085, 0.348037, 0.189174;;, + 147;3; 0.165085, 0.348037, 0.189174;;, + 148;3; 0.165085, 0.348037, 0.189174;;, + 149;3; 0.165085, 0.348037, 0.189174;;, + 150;3; 0.165085, 0.348037, 0.189174;;, + 151;3; 0.165085, 0.348037, 0.189174;;, + 152;3; 0.165085, 0.348037, 0.189174;;, + 153;3; 0.165085, 0.348037, 0.189174;;, + 154;3; 0.165085, 0.348037, 0.189174;;, + 155;3; 0.165085, 0.348037, 0.189174;;, + 156;3; 0.165085, 0.348037, 0.189174;;, + 157;3; 0.165085, 0.348037, 0.189174;;, + 158;3; 0.165085, 0.348037, 0.189174;;, + 159;3; 0.165085, 0.348037, 0.189174;;, + 160;3; 0.165085, 0.348037, 0.189174;;, + 161;3; 0.165085, 0.348037, 0.189174;;, + 162;3; 0.165085, 0.348037, 0.189174;;, + 163;3; 0.165085, 0.348037, 0.189174;;, + 164;3; 0.165085, 0.348037, 0.189174;;, + 165;3; 0.165085, 0.348037, 0.189174;;, + 166;3; 0.165085, 0.348037, 0.189174;;, + 167;3; 0.165085, 0.348037, 0.189174;;, + 168;3; 0.165085, 0.348037, 0.189174;;, + 169;3; 0.165085, 0.348037, 0.189174;;, + 170;3; 0.165085, 0.348037, 0.189174;;, + 171;3; 0.165085, 0.348037, 0.189174;;, + 172;3; 0.165085, 0.348037, 0.189174;;, + 173;3; 0.165085, 0.348037, 0.189174;;, + 174;3; 0.165085, 0.348037, 0.189174;;, + 175;3; 0.165085, 0.348037, 0.189174;;, + 176;3; 0.165085, 0.348037, 0.189174;;, + 177;3; 0.165085, 0.348037, 0.189174;;, + 178;3; 0.165085, 0.348037, 0.189174;;, + 179;3; 0.165085, 0.348037, 0.189174;;, + 180;3; 0.165085, 0.348037, 0.189174;;, + 181;3; 0.165085, 0.348037, 0.189174;;, + 182;3; 0.165085, 0.348037, 0.189174;;, + 183;3; 0.165085, 0.348037, 0.189174;;, + 184;3; 0.165085, 0.348037, 0.189174;;, + 185;3; 0.165085, 0.348037, 0.189174;;, + 186;3; 0.165085, 0.348037, 0.189174;;, + 187;3; 0.165085, 0.348037, 0.189174;;, + 188;3; 0.165085, 0.348037, 0.189174;;, + 189;3; 0.165085, 0.348037, 0.189174;;, + 190;3; 0.165085, 0.348037, 0.189174;;, + 191;3; 0.165085, 0.348037, 0.189174;;, + 192;3; 0.165085, 0.348037, 0.189174;;, + 193;3; 0.165085, 0.348037, 0.189174;;, + 194;3; 0.165085, 0.348037, 0.189174;;, + 195;3; 0.165085, 0.348037, 0.189174;;, + 196;3; 0.165085, 0.348037, 0.189174;;, + 197;3; 0.165085, 0.348037, 0.189174;;, + 198;3; 0.165085, 0.348037, 0.189174;;, + 199;3; 0.165085, 0.348037, 0.189174;;, + 200;3; 0.165085, 0.348037, 0.189174;;, + 201;3; 0.165085, 0.348037, 0.189174;;, + 202;3; 0.165085, 0.348037, 0.189174;;, + 203;3; 0.165085, 0.348037, 0.189174;;, + 204;3; 0.165085, 0.348037, 0.189174;;, + 205;3; 0.165085, 0.348037, 0.189174;;, + 206;3; 0.165085, 0.348037, 0.189174;;, + 207;3; 0.165085, 0.348037, 0.189174;;, + 208;3; 0.165085, 0.348037, 0.189174;;, + 209;3; 0.165085, 0.348037, 0.189174;;, + 210;3; 0.165085, 0.348037, 0.189174;;, + 211;3; 0.165085, 0.348037, 0.189174;;, + 212;3; 0.165085, 0.348037, 0.189174;;, + 213;3; 0.165085, 0.348037, 0.189174;;, + 214;3; 0.165085, 0.348037, 0.189174;;, + 215;3; 0.165085, 0.348037, 0.189174;;, + 216;3; 0.165085, 0.348037, 0.189174;;, + 217;3; 0.165085, 0.348037, 0.189174;;, + 218;3; 0.165085, 0.348037, 0.189174;;, + 219;3; 0.165085, 0.348037, 0.189174;;, + 220;3; 0.165085, 0.348037, 0.189174;;, + 221;3; 0.165085, 0.348037, 0.189174;;, + 222;3; 0.165085, 0.348037, 0.189174;;, + 223;3; 0.165085, 0.348037, 0.189174;;, + 224;3; 0.165085, 0.348037, 0.189174;;, + 225;3; 0.165085, 0.348037, 0.189174;;, + 226;3; 0.165085, 0.348037, 0.189174;;, + 227;3; 0.165085, 0.348037, 0.189174;;, + 228;3; 0.165085, 0.348037, 0.189174;;, + 229;3; 0.165085, 0.348037, 0.189174;;, + 230;3; 0.165085, 0.348037, 0.189174;;, + 231;3; 0.165085, 0.348037, 0.189174;;, + 232;3; 0.165085, 0.348037, 0.189174;;, + 233;3; 0.165085, 0.348037, 0.189174;;, + 234;3; 0.165085, 0.348037, 0.189174;;, + 235;3; 0.165085, 0.348037, 0.189174;;, + 236;3; 0.165085, 0.348037, 0.189174;;, + 237;3; 0.165085, 0.348037, 0.189174;;, + 238;3; 0.165085, 0.348037, 0.189174;;, + 239;3; 0.165085, 0.348037, 0.189174;;, + 240;3; 0.165085, 0.348037, 0.189174;;, + 241;3; 0.165085, 0.348037, 0.189174;;, + 242;3; 0.165085, 0.348037, 0.189174;;, + 243;3; 0.165085, 0.348037, 0.189174;;, + 244;3; 0.165085, 0.348037, 0.189174;;, + 245;3; 0.165085, 0.348037, 0.189174;;, + 246;3; 0.165085, 0.348037, 0.189174;;, + 247;3; 0.165085, 0.348037, 0.189174;;, + 248;3; 0.165085, 0.348037, 0.189174;;, + 249;3; 0.165085, 0.348037, 0.189174;;; + } + AnimationKey { // Position + 2; + 250; + 0;3; 0.672467, 1.528196, 1.101588;;, + 1;3; 0.672467, 1.528196, 1.101588;;, + 2;3; 0.672467, 1.528196, 1.101588;;, + 3;3; 0.672467, 1.528196, 1.101588;;, + 4;3; 0.672467, 1.528196, 1.101588;;, + 5;3; 0.672467, 1.528196, 1.101588;;, + 6;3; 0.672467, 1.528196, 1.101588;;, + 7;3; 0.672467, 1.528196, 1.101588;;, + 8;3; 0.672467, 1.528196, 1.101588;;, + 9;3; 0.672467, 1.528196, 1.101588;;, + 10;3; 0.672467, 1.528196, 1.101588;;, + 11;3; 0.672467, 1.528196, 1.101588;;, + 12;3; 0.672467, 1.528196, 1.101588;;, + 13;3; 0.672467, 1.528196, 1.101588;;, + 14;3; 0.672467, 1.528196, 1.101588;;, + 15;3; 0.672467, 1.528196, 1.101588;;, + 16;3; 0.672467, 1.528196, 1.101588;;, + 17;3; 0.672467, 1.528196, 1.101588;;, + 18;3; 0.672467, 1.528196, 1.101588;;, + 19;3; 0.672467, 1.528196, 1.101588;;, + 20;3; 0.672467, 1.528196, 1.101588;;, + 21;3; 0.672467, 1.528196, 1.101588;;, + 22;3; 0.672467, 1.528196, 1.101588;;, + 23;3; 0.672467, 1.528196, 1.101588;;, + 24;3; 0.672467, 1.528196, 1.101588;;, + 25;3; 0.672467, 1.528196, 1.101588;;, + 26;3; 0.672467, 1.528196, 1.101588;;, + 27;3; 0.672467, 1.528196, 1.101588;;, + 28;3; 0.672467, 1.528196, 1.101588;;, + 29;3; 0.672467, 1.528196, 1.101588;;, + 30;3; 0.672467, 1.528196, 1.101588;;, + 31;3; 0.672467, 1.528196, 1.101588;;, + 32;3; 0.672467, 1.528196, 1.101588;;, + 33;3; 0.672467, 1.528196, 1.101588;;, + 34;3; 0.672467, 1.528196, 1.101588;;, + 35;3; 0.672467, 1.528196, 1.101588;;, + 36;3; 0.672467, 1.528196, 1.101588;;, + 37;3; 0.672467, 1.528196, 1.101588;;, + 38;3; 0.672467, 1.528196, 1.101588;;, + 39;3; 0.672467, 1.528196, 1.101588;;, + 40;3; 0.672467, 1.528196, 1.101588;;, + 41;3; 0.672467, 1.528196, 1.101588;;, + 42;3; 0.672467, 1.528196, 1.101588;;, + 43;3; 0.672467, 1.528196, 1.101588;;, + 44;3; 0.672467, 1.528196, 1.101588;;, + 45;3; 0.672467, 1.528196, 1.101588;;, + 46;3; 0.672467, 1.528196, 1.101588;;, + 47;3; 0.672467, 1.528196, 1.101588;;, + 48;3; 0.672467, 1.528196, 1.101588;;, + 49;3; 0.672467, 1.528196, 1.101588;;, + 50;3; 0.672467, 1.528196, 1.101588;;, + 51;3; 0.672467, 1.528196, 1.101588;;, + 52;3; 0.672467, 1.528196, 1.101588;;, + 53;3; 0.672467, 1.528196, 1.101588;;, + 54;3; 0.672467, 1.528196, 1.101588;;, + 55;3; 0.672467, 1.528196, 1.101588;;, + 56;3; 0.672467, 1.528196, 1.101588;;, + 57;3; 0.672467, 1.528196, 1.101588;;, + 58;3; 0.672467, 1.528196, 1.101588;;, + 59;3; 0.672467, 1.528196, 1.101588;;, + 60;3; 0.672467, 1.528196, 1.101588;;, + 61;3; 0.672467, 1.528196, 1.101588;;, + 62;3; 0.672467, 1.528196, 1.101588;;, + 63;3; 0.672467, 1.528196, 1.101588;;, + 64;3; 0.672467, 1.528196, 1.101588;;, + 65;3; 0.672467, 1.528196, 1.101588;;, + 66;3; 0.672467, 1.528196, 1.101588;;, + 67;3; 0.672467, 1.528196, 1.101588;;, + 68;3; 0.672467, 1.528196, 1.101588;;, + 69;3; 0.672467, 1.528196, 1.101588;;, + 70;3; 0.672467, 1.528196, 1.101588;;, + 71;3; 0.672467, 1.528196, 1.101588;;, + 72;3; 0.672467, 1.528196, 1.101588;;, + 73;3; 0.672467, 1.528196, 1.101588;;, + 74;3; 0.672467, 1.528196, 1.101588;;, + 75;3; 0.672467, 1.528196, 1.101588;;, + 76;3; 0.672467, 1.528196, 1.101588;;, + 77;3; 0.672467, 1.528196, 1.101588;;, + 78;3; 0.672467, 1.528196, 1.101588;;, + 79;3; 0.672467, 1.528196, 1.101588;;, + 80;3; 0.672467, 1.528196, 1.101588;;, + 81;3; 0.672467, 1.528196, 1.101588;;, + 82;3; 0.672467, 1.528196, 1.101588;;, + 83;3; 0.672467, 1.528196, 1.101588;;, + 84;3; 0.672467, 1.528196, 1.101588;;, + 85;3; 0.672467, 1.528196, 1.101588;;, + 86;3; 0.672467, 1.528196, 1.101588;;, + 87;3; 0.672467, 1.528196, 1.101588;;, + 88;3; 0.672467, 1.528196, 1.101588;;, + 89;3; 0.672467, 1.528196, 1.101588;;, + 90;3; 0.672467, 1.528196, 1.101588;;, + 91;3; 0.672467, 1.528196, 1.101588;;, + 92;3; 0.672467, 1.528196, 1.101588;;, + 93;3; 0.672467, 1.528196, 1.101588;;, + 94;3; 0.672467, 1.528196, 1.101588;;, + 95;3; 0.672467, 1.528196, 1.101588;;, + 96;3; 0.672467, 1.528196, 1.101588;;, + 97;3; 0.672467, 1.528196, 1.101588;;, + 98;3; 0.672467, 1.528196, 1.101588;;, + 99;3; 0.672467, 1.528196, 1.101588;;, + 100;3; 0.672467, 1.528196, 1.101588;;, + 101;3; 0.672467, 1.528196, 1.101588;;, + 102;3; 0.672467, 1.528196, 1.101588;;, + 103;3; 0.672467, 1.528196, 1.101588;;, + 104;3; 0.672467, 1.528196, 1.101588;;, + 105;3; 0.672467, 1.528196, 1.101588;;, + 106;3; 0.672467, 1.528196, 1.101588;;, + 107;3; 0.672467, 1.528196, 1.101588;;, + 108;3; 0.672467, 1.528196, 1.101588;;, + 109;3; 0.672467, 1.528196, 1.101588;;, + 110;3; 0.672467, 1.528196, 1.101588;;, + 111;3; 0.672467, 1.528196, 1.101588;;, + 112;3; 0.672467, 1.528196, 1.101588;;, + 113;3; 0.672467, 1.528196, 1.101588;;, + 114;3; 0.672467, 1.528196, 1.101588;;, + 115;3; 0.672467, 1.528196, 1.101588;;, + 116;3; 0.672467, 1.528196, 1.101588;;, + 117;3; 0.672467, 1.528196, 1.101588;;, + 118;3; 0.672467, 1.528196, 1.101588;;, + 119;3; 0.672467, 1.528196, 1.101588;;, + 120;3; 0.672467, 1.528196, 1.101588;;, + 121;3; 0.672467, 1.528196, 1.101588;;, + 122;3; 0.672467, 1.528196, 1.101588;;, + 123;3; 0.672467, 1.528196, 1.101588;;, + 124;3; 0.672467, 1.528196, 1.101588;;, + 125;3; 0.672467, 1.528196, 1.101588;;, + 126;3; 0.672467, 1.528196, 1.101588;;, + 127;3; 0.672467, 1.528196, 1.101588;;, + 128;3; 0.672467, 1.528196, 1.101588;;, + 129;3; 0.672467, 1.528196, 1.101588;;, + 130;3; 0.672467, 1.528196, 1.101588;;, + 131;3; 0.672467, 1.528196, 1.101588;;, + 132;3; 0.672467, 1.528196, 1.101588;;, + 133;3; 0.672467, 1.528196, 1.101588;;, + 134;3; 0.672467, 1.528196, 1.101588;;, + 135;3; 0.672467, 1.528196, 1.101588;;, + 136;3; 0.672467, 1.528196, 1.101588;;, + 137;3; 0.672467, 1.528196, 1.101588;;, + 138;3; 0.672467, 1.528196, 1.101588;;, + 139;3; 0.672467, 1.528196, 1.101588;;, + 140;3; 0.672467, 1.528196, 1.101588;;, + 141;3; 0.672467, 1.528196, 1.101588;;, + 142;3; 0.672467, 1.528196, 1.101588;;, + 143;3; 0.672467, 1.528196, 1.101588;;, + 144;3; 0.672467, 1.528196, 1.101588;;, + 145;3; 0.672467, 1.528196, 1.101588;;, + 146;3; 0.672467, 1.528196, 1.101588;;, + 147;3; 0.672467, 1.528196, 1.101588;;, + 148;3; 0.672467, 1.528196, 1.101588;;, + 149;3; 0.672467, 1.528196, 1.101588;;, + 150;3; 0.672467, 1.528196, 1.101588;;, + 151;3; 0.672467, 1.528196, 1.101588;;, + 152;3; 0.672467, 1.528196, 1.101588;;, + 153;3; 0.672467, 1.528196, 1.101588;;, + 154;3; 0.672467, 1.528196, 1.101588;;, + 155;3; 0.672467, 1.528196, 1.101588;;, + 156;3; 0.672467, 1.528196, 1.101588;;, + 157;3; 0.672467, 1.528196, 1.101588;;, + 158;3; 0.672467, 1.528196, 1.101588;;, + 159;3; 0.672467, 1.528196, 1.101588;;, + 160;3; 0.672467, 1.528196, 1.101588;;, + 161;3; 0.672467, 1.528196, 1.101588;;, + 162;3; 0.672467, 1.528196, 1.101588;;, + 163;3; 0.672467, 1.528196, 1.101588;;, + 164;3; 0.672467, 1.528196, 1.101588;;, + 165;3; 0.672467, 1.528196, 1.101588;;, + 166;3; 0.672467, 1.528196, 1.101588;;, + 167;3; 0.672467, 1.528196, 1.101588;;, + 168;3; 0.672467, 1.528196, 1.101588;;, + 169;3; 0.672467, 1.528196, 1.101588;;, + 170;3; 0.672467, 1.528196, 1.101588;;, + 171;3; 0.672467, 1.528196, 1.101588;;, + 172;3; 0.672467, 1.528196, 1.101588;;, + 173;3; 0.672467, 1.528196, 1.101588;;, + 174;3; 0.672467, 1.528196, 1.101588;;, + 175;3; 0.672467, 1.528196, 1.101588;;, + 176;3; 0.672467, 1.528196, 1.101588;;, + 177;3; 0.672467, 1.528196, 1.101588;;, + 178;3; 0.672467, 1.528196, 1.101588;;, + 179;3; 0.672467, 1.528196, 1.101588;;, + 180;3; 0.672467, 1.528196, 1.101588;;, + 181;3; 0.672467, 1.528196, 1.101588;;, + 182;3; 0.672467, 1.528196, 1.101588;;, + 183;3; 0.672467, 1.528196, 1.101588;;, + 184;3; 0.672467, 1.528196, 1.101588;;, + 185;3; 0.672467, 1.528196, 1.101588;;, + 186;3; 0.672467, 1.528196, 1.101588;;, + 187;3; 0.672467, 1.528196, 1.101588;;, + 188;3; 0.672467, 1.528196, 1.101588;;, + 189;3; 0.672467, 1.528196, 1.101588;;, + 190;3; 0.672467, 1.528196, 1.101588;;, + 191;3; 0.672467, 1.528196, 1.101588;;, + 192;3; 0.672467, 1.528196, 1.101588;;, + 193;3; 0.672467, 1.528196, 1.101588;;, + 194;3; 0.672467, 1.528196, 1.101588;;, + 195;3; 0.672467, 1.528196, 1.101588;;, + 196;3; 0.672467, 1.528196, 1.101588;;, + 197;3; 0.672467, 1.528196, 1.101588;;, + 198;3; 0.672467, 1.528196, 1.101588;;, + 199;3; 0.672467, 1.528196, 1.101588;;, + 200;3; 0.672467, 1.528196, 1.101588;;, + 201;3; 0.672467, 1.528196, 1.101588;;, + 202;3; 0.672467, 1.528196, 1.101588;;, + 203;3; 0.672467, 1.528196, 1.101588;;, + 204;3; 0.672467, 1.528196, 1.101588;;, + 205;3; 0.672467, 1.528196, 1.101588;;, + 206;3; 0.672467, 1.528196, 1.101588;;, + 207;3; 0.672467, 1.528196, 1.101588;;, + 208;3; 0.672467, 1.528196, 1.101588;;, + 209;3; 0.672467, 1.528196, 1.101588;;, + 210;3; 0.672467, 1.528196, 1.101588;;, + 211;3; 0.672467, 1.528196, 1.101588;;, + 212;3; 0.672467, 1.528196, 1.101588;;, + 213;3; 0.672467, 1.528196, 1.101588;;, + 214;3; 0.672467, 1.528196, 1.101588;;, + 215;3; 0.672467, 1.528196, 1.101588;;, + 216;3; 0.672467, 1.528196, 1.101588;;, + 217;3; 0.672467, 1.528196, 1.101588;;, + 218;3; 0.672467, 1.528196, 1.101588;;, + 219;3; 0.672467, 1.528196, 1.101588;;, + 220;3; 0.672467, 1.528196, 1.101588;;, + 221;3; 0.672467, 1.528196, 1.101588;;, + 222;3; 0.672467, 1.528196, 1.101588;;, + 223;3; 0.672467, 1.528196, 1.101588;;, + 224;3; 0.672467, 1.528196, 1.101588;;, + 225;3; 0.672467, 1.528196, 1.101588;;, + 226;3; 0.672467, 1.528196, 1.101588;;, + 227;3; 0.672467, 1.528196, 1.101588;;, + 228;3; 0.672467, 1.528196, 1.101588;;, + 229;3; 0.672467, 1.528196, 1.101588;;, + 230;3; 0.672467, 1.528196, 1.101588;;, + 231;3; 0.672467, 1.528196, 1.101588;;, + 232;3; 0.672467, 1.528196, 1.101588;;, + 233;3; 0.672467, 1.528196, 1.101588;;, + 234;3; 0.672467, 1.528196, 1.101588;;, + 235;3; 0.672467, 1.528196, 1.101588;;, + 236;3; 0.672467, 1.528196, 1.101588;;, + 237;3; 0.672467, 1.528196, 1.101588;;, + 238;3; 0.672467, 1.528196, 1.101588;;, + 239;3; 0.672467, 1.528196, 1.101588;;, + 240;3; 0.672467, 1.528196, 1.101588;;, + 241;3; 0.672467, 1.528196, 1.101588;;, + 242;3; 0.672467, 1.528196, 1.101588;;, + 243;3; 0.672467, 1.528196, 1.101588;;, + 244;3; 0.672467, 1.528196, 1.101588;;, + 245;3; 0.672467, 1.528196, 1.101588;;, + 246;3; 0.672467, 1.528196, 1.101588;;, + 247;3; 0.672467, 1.528196, 1.101588;;, + 248;3; 0.672467, 1.528196, 1.101588;;, + 249;3; 0.672467, 1.528196, 1.101588;;; + } + } +} // End of AnimationSet Global diff --git a/mods/_various/legacy_mobs/models/tarantula_propower.x b/mods/_various/legacy_mobs/models/tarantula_propower.x new file mode 100644 index 000000000..bc8ba6440 --- /dev/null +++ b/mods/_various/legacy_mobs/models/tarantula_propower.x @@ -0,0 +1,37588 @@ +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.672467,-1.528196,-0.828771, 1.000000;; + } + Frame Armature_Bone { + FrameTransformMatrix { + -0.022287, 0.000001,-0.999752, 0.000000, + 0.999752, 0.000000,-0.022287, 0.000000, + -0.000000,-1.000000,-0.000001, 0.000000, + 0.506179, 1.550838, 1.103719, 1.000000;; + } + Frame Armature_Bone_002 { + FrameTransformMatrix { + -0.000001,-0.000000, 1.000000, 0.000000, + -0.022286, 0.999752,-0.000000, 0.000000, + -0.999752,-0.022287,-0.000001, 0.000000, + 0.000000, 0.344354,-0.000000, 1.000000;; + } + Frame Armature_Bone_003 { + FrameTransformMatrix { + 0.920869,-0.389858, 0.003366, 0.000000, + 0.374396, 0.886689, 0.271313, 0.000000, + -0.108759,-0.248583, 0.962485, 0.000000, + 0.000000, 0.826434, 0.000000, 1.000000;; + } + Frame Armature_Bone_005 { + FrameTransformMatrix { + -0.387537, 0.916651,-0.097809, 0.000000, + -0.044231,-0.124468,-0.991237, 0.000000, + -0.920793,-0.379815, 0.088780, 0.000000, + 0.000000, 0.761776, 0.000000, 1.000000;; + } + Frame Armature_Bone_006 { + FrameTransformMatrix { + 0.994682, 0.102985,-0.000918, 0.000000, + -0.102944, 0.994472, 0.020679, 0.000000, + 0.003042,-0.020475, 0.999786, 0.000000, + 0.000000, 0.660698, 0.000000, 1.000000;; + } + } // End of Armature_Bone_006 + } // End of Armature_Bone_005 + } // End of Armature_Bone_003 + Frame Armature_Bone_004 { + FrameTransformMatrix { + 0.936957, 0.349445, 0.000925, 0.000000, + -0.333569, 0.893594, 0.300370, 0.000000, + 0.104136,-0.281742, 0.953822, 0.000000, + 0.000000, 0.826434, 0.000000, 1.000000;; + } + Frame Armature_Bone_007 { + FrameTransformMatrix { + 0.341940, 0.931761,-0.122062, 0.000000, + 0.074553,-0.156381,-0.984879, 0.000000, + -0.936760, 0.327669,-0.122939, 0.000000, + -0.000000, 0.747179,-0.000000, 1.000000;; + } + Frame Armature_Bone_008 { + FrameTransformMatrix { + 0.994198, 0.107557,-0.001024, 0.000000, + -0.107516, 0.994008, 0.019680, 0.000000, + 0.003134,-0.019455, 0.999806, 0.000000, + 0.000000, 0.672674, 0.000000, 1.000000;; + } + } // End of Armature_Bone_008 + } // End of Armature_Bone_007 + } // End of Armature_Bone_004 + Frame Armature_Bone_009 { + FrameTransformMatrix { + -0.738149, 0.674637, 0.000000, 0.000000, + -0.674637,-0.738150,-0.000000, 0.000000, + 0.000000,-0.000000, 1.000000, 0.000000, + 0.000000, 0.826434, 0.000000, 1.000000;; + } + Frame Armature_Bone_029 { + FrameTransformMatrix { + 0.674637,-0.738150,-0.000000, 0.000000, + 0.738150, 0.674637, 0.000000, 0.000000, + 0.000000,-0.000000, 1.000000, 0.000000, + 0.000000, 0.868658, 0.000000, 1.000000;; + } + Frame Armature_Bone_033 { + 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, 1.279916, 0.000000, 1.000000;; + } + Frame Armature_Bone_037 { + 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, 1.228417, 0.000000, 1.000000;; + } + } // End of Armature_Bone_037 + } // End of Armature_Bone_033 + } // End of Armature_Bone_029 + } // End of Armature_Bone_009 + Frame Armature_Bone_010 { + FrameTransformMatrix { + -0.443098, 0.896473, 0.000000, 0.000000, + -0.896473,-0.443098, 0.000000, 0.000000, + 0.000000,-0.000000, 1.000000, 0.000000, + 0.000000, 0.826434, 0.000000, 1.000000;; + } + Frame Armature_Bone_030 { + FrameTransformMatrix { + 0.896473,-0.443098,-0.000000, 0.000000, + 0.443098, 0.896473, 0.000000, 0.000000, + 0.000000,-0.000000, 1.000000, 0.000000, + 0.000000, 0.666142,-0.000000, 1.000000;; + } + Frame Armature_Bone_034 { + 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, 1.279916, 0.000000, 1.000000;; + } + Frame Armature_Bone_038 { + 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, 1.228416,-0.000000, 1.000000;; + } + } // End of Armature_Bone_038 + } // End of Armature_Bone_034 + } // End of Armature_Bone_030 + } // End of Armature_Bone_010 + Frame Armature_Bone_011 { + FrameTransformMatrix { + 0.142387, 0.989811,-0.000000, 0.000000, + -0.989811, 0.142387, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.000000, 0.826434, 0.000000, 1.000000;; + } + Frame Armature_Bone_031 { + FrameTransformMatrix { + 0.989811, 0.142387, 0.000000, 0.000000, + -0.142387, 0.989811,-0.000000, 0.000000, + -0.000000,-0.000000, 1.000000, 0.000000, + 0.000000, 0.586459, 0.000000, 1.000000;; + } + Frame Armature_Bone_035 { + 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, 1.279916, 0.000000, 1.000000;; + } + Frame Armature_Bone_039 { + 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, 1.228416,-0.000000, 1.000000;; + } + } // End of Armature_Bone_039 + } // End of Armature_Bone_035 + } // End of Armature_Bone_031 + } // End of Armature_Bone_011 + Frame Armature_Bone_012 { + FrameTransformMatrix { + 0.577704, 0.816246,-0.000000, 0.000000, + -0.816246, 0.577704,-0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.000000, 0.826434, 0.000000, 1.000000;; + } + Frame Armature_Bone_032 { + FrameTransformMatrix { + 0.816246, 0.577704, 0.000000, 0.000000, + -0.577704, 0.816246,-0.000000, 0.000000, + -0.000000,-0.000000, 1.000000, 0.000000, + -0.000000, 0.690756, 0.000000, 1.000000;; + } + Frame Armature_Bone_036 { + 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, 1.279916, 0.000000, 1.000000;; + } + Frame Armature_Bone_040 { + 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, 1.228417, 0.000000, 1.000000;; + } + } // End of Armature_Bone_040 + } // End of Armature_Bone_036 + } // End of Armature_Bone_032 + } // End of Armature_Bone_012 + Frame Armature_Bone_013 { + FrameTransformMatrix { + -0.724868,-0.688888, 0.000000, 0.000000, + 0.688888,-0.724868, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.000000, 0.826434, 0.000000, 1.000000;; + } + Frame Armature_Bone_017 { + FrameTransformMatrix { + 0.688888, 0.724868,-0.000000, 0.000000, + -0.724868, 0.688888, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + -0.000000, 0.893468, 0.000000, 1.000000;; + } + Frame Armature_Bone_021 { + 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, 1.294482,-0.000000, 1.000000;; + } + Frame Armature_Bone_025 { + 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, 1.228822,-0.000000, 1.000000;; + } + } // End of Armature_Bone_025 + } // End of Armature_Bone_021 + } // End of Armature_Bone_017 + } // End of Armature_Bone_013 + Frame Armature_Bone_014 { + FrameTransformMatrix { + 0.525789,-0.850615,-0.000000, 0.000000, + 0.850615, 0.525789, 0.000000, 0.000000, + 0.000000,-0.000000, 1.000000, 0.000000, + 0.000000, 0.826434, 0.000000, 1.000000;; + } + Frame Armature_Bone_018 { + FrameTransformMatrix { + 0.850615,-0.525789, 0.000000, 0.000000, + 0.525789, 0.850615,-0.000000, 0.000000, + -0.000000, 0.000000, 1.000000, 0.000000, + -0.000000, 0.680634,-0.000000, 1.000000;; + } + Frame Armature_Bone_022 { + 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, 1.294481,-0.000000, 1.000000;; + } + Frame Armature_Bone_026 { + 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, 1.228822,-0.000000, 1.000000;; + } + } // End of Armature_Bone_026 + } // End of Armature_Bone_022 + } // End of Armature_Bone_018 + } // End of Armature_Bone_014 + Frame Armature_Bone_015 { + FrameTransformMatrix { + 0.077964,-0.996956,-0.000000, 0.000000, + 0.996956, 0.077964, 0.000000, 0.000000, + 0.000000,-0.000000, 1.000000, 0.000000, + 0.000000, 0.826434, 0.000000, 1.000000;; + } + Frame Armature_Bone_019 { + FrameTransformMatrix { + 0.996956,-0.077964, 0.000000, 0.000000, + 0.077964, 0.996956,-0.000000, 0.000000, + -0.000000, 0.000000, 1.000000, 0.000000, + -0.000000, 0.592826, 0.000000, 1.000000;; + } + Frame Armature_Bone_023 { + 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, 1.294482,-0.000000, 1.000000;; + } + Frame Armature_Bone_027 { + 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, 1.228822,-0.000000, 1.000000;; + } + } // End of Armature_Bone_027 + } // End of Armature_Bone_023 + } // End of Armature_Bone_019 + } // End of Armature_Bone_015 + Frame Armature_Bone_016 { + FrameTransformMatrix { + -0.449112,-0.893475, 0.000000, 0.000000, + 0.893475,-0.449113, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.000000, 0.826434, 0.000000, 1.000000;; + } + Frame Armature_Bone_020 { + FrameTransformMatrix { + 0.893475, 0.449112,-0.000000, 0.000000, + -0.449112, 0.893475,-0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.000000, 0.683319, 0.000000, 1.000000;; + } + Frame Armature_Bone_024 { + 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, 1.294482,-0.000000, 1.000000;; + } + Frame Armature_Bone_028 { + 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, 1.228822,-0.000000, 1.000000;; + } + } // End of Armature_Bone_028 + } // End of Armature_Bone_024 + } // End of Armature_Bone_020 + } // End of Armature_Bone_016 + } // End of Armature_Bone_002 + } // End of Armature_Bone + Frame Armature_Bone_001 { + FrameTransformMatrix { + 0.000000, 1.000000, 0.000000, 0.000000, + -1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.506179, 1.550838, 1.103719, 1.000000;; + } + } // End of Armature_Bone_001 + Frame Cube_001 { + FrameTransformMatrix { + -0.165085,-0.000000, 0.000000, 0.000000, + 0.000000,-0.348037, 0.000000, 0.000000, + 0.000000, 0.000000, 0.189174, 0.000000, + 0.672467, 1.528196, 1.101588, 1.000000;; + } + Mesh { // Cube_001 mesh + 744; + -7.525823; 8.883257;-0.581474;, + -7.525823; 5.349147;-0.581474;, + -8.858474; 5.349147;-0.581474;, + -8.858473; 8.883258;-0.581474;, + -7.525823; 8.883256; 0.581474;, + -8.858474; 8.883257; 0.581474;, + -8.858474; 5.349147; 0.581474;, + -7.525823; 5.349146; 0.581474;, + -7.525823; 8.883257;-0.581474;, + -7.525823; 8.883256; 0.581474;, + -7.525823; 5.349146; 0.581474;, + -7.525823; 5.349147;-0.581474;, + -7.525823; 5.349147;-0.581474;, + -7.525823; 5.349146; 0.581474;, + -8.858474; 5.349147; 0.581474;, + -8.858474; 5.349147;-0.581474;, + -8.858474; 5.349147;-0.581474;, + -8.858474; 5.349147; 0.581474;, + -8.858474; 8.883257; 0.581474;, + -8.858473; 8.883258;-0.581474;, + -7.525823; 8.883256; 0.581474;, + -7.525823; 8.883257;-0.581474;, + -8.858473; 8.883258;-0.581474;, + -8.858474; 8.883257; 0.581474;, + -6.941897; 5.325300;-0.960908;, + -6.941897; 1.791190;-0.960908;, + -9.132964; 1.791191;-0.960908;, + -9.132964; 5.325301;-0.960908;, + -6.941897; 5.325299; 1.407544;, + -9.132964; 5.325300; 1.407544;, + -9.132964; 1.791191; 1.407544;, + -6.941898; 1.791189; 1.407544;, + -6.941897; 5.325300;-0.960908;, + -6.941897; 5.325299; 1.407544;, + -6.941898; 1.791189; 1.407544;, + -6.941897; 1.791190;-0.960908;, + -6.941897; 1.791190;-0.960908;, + -6.941898; 1.791189; 1.407544;, + -9.132964; 1.791191; 1.407544;, + -9.132964; 1.791191;-0.960908;, + -9.132964; 1.791191;-0.960908;, + -9.132964; 1.791191; 1.407544;, + -9.132964; 5.325300; 1.407544;, + -9.132964; 5.325301;-0.960908;, + -6.941897; 5.325299; 1.407544;, + -6.941897; 5.325300;-0.960908;, + -9.132964; 5.325301;-0.960908;, + -9.132964; 5.325300; 1.407544;, + -7.051261;10.606580;-0.677308;, + -7.051261; 8.904172;-0.677308;, + -9.112616; 8.904172;-0.677308;, + -9.112616;10.606581;-0.677308;, + -7.051261;10.606580; 0.737293;, + -9.112616;10.606580; 0.737293;, + -9.112617; 8.904172; 0.737293;, + -7.051261; 8.904171; 0.737293;, + -7.051261;10.606580;-0.677308;, + -7.051261;10.606580; 0.737293;, + -7.051261; 8.904171; 0.737293;, + -7.051261; 8.904172;-0.677308;, + -7.051261; 8.904172;-0.677308;, + -7.051261; 8.904171; 0.737293;, + -9.112617; 8.904172; 0.737293;, + -9.112616; 8.904172;-0.677308;, + -9.112616; 8.904172;-0.677308;, + -9.112617; 8.904172; 0.737293;, + -9.112616;10.606580; 0.737293;, + -9.112616;10.606581;-0.677308;, + -7.051261;10.606580; 0.737293;, + -7.051261;10.606580;-0.677308;, + -9.112616;10.606581;-0.677308;, + -9.112616;10.606580; 0.737293;, + -5.059513;10.606580;-0.677308;, + -5.059513; 8.904172;-0.677308;, + -7.242017; 8.904172;-0.677308;, + -7.242017;10.606581;-0.677308;, + -5.059512;10.606580; 0.737293;, + -7.242017;10.606580; 0.737293;, + -7.242017; 8.904172; 0.737293;, + -5.059513; 8.904171; 0.737293;, + -5.059513;10.606580;-0.677308;, + -5.059512;10.606580; 0.737293;, + -5.059513; 8.904171; 0.737293;, + -5.059513; 8.904172;-0.677308;, + -5.059513; 8.904172;-0.677308;, + -5.059513; 8.904171; 0.737293;, + -7.242017; 8.904172; 0.737293;, + -7.242017; 8.904172;-0.677308;, + -7.242017; 8.904172;-0.677308;, + -7.242017; 8.904172; 0.737293;, + -7.242017;10.606580; 0.737293;, + -7.242017;10.606581;-0.677308;, + -5.059512;10.606580; 0.737293;, + -5.059513;10.606580;-0.677308;, + -7.242017;10.606581;-0.677308;, + -7.242017;10.606580; 0.737293;, + -5.010724; 5.325300;-0.960908;, + -5.010724; 1.791190;-0.960908;, + -7.201790; 1.791191;-0.960908;, + -7.201790; 5.325301;-0.960908;, + -5.010723; 5.325299; 1.407544;, + -7.201790; 5.325300; 1.407544;, + -7.201790; 1.791191; 1.407544;, + -5.010724; 1.791189; 1.407544;, + -5.010724; 5.325300;-0.960908;, + -5.010723; 5.325299; 1.407544;, + -5.010724; 1.791189; 1.407544;, + -5.010724; 1.791190;-0.960908;, + -5.010724; 1.791190;-0.960908;, + -5.010724; 1.791189; 1.407544;, + -7.201790; 1.791191; 1.407544;, + -7.201790; 1.791191;-0.960908;, + -7.201790; 1.791191;-0.960908;, + -7.201790; 1.791191; 1.407544;, + -7.201790; 5.325300; 1.407544;, + -7.201790; 5.325301;-0.960908;, + -5.010723; 5.325299; 1.407544;, + -5.010724; 5.325300;-0.960908;, + -7.201790; 5.325301;-0.960908;, + -7.201790; 5.325300; 1.407544;, + -5.594649; 8.883257;-0.581474;, + -5.594649; 5.349147;-0.581474;, + -6.927300; 5.349147;-0.581474;, + -6.927299; 8.883258;-0.581474;, + -5.594649; 8.883256; 0.581474;, + -6.927299; 8.883257; 0.581474;, + -6.927300; 5.349147; 0.581474;, + -5.594649; 5.349146; 0.581474;, + -5.594649; 8.883257;-0.581474;, + -5.594649; 8.883256; 0.581474;, + -5.594649; 5.349146; 0.581474;, + -5.594649; 5.349147;-0.581474;, + -5.594649; 5.349147;-0.581474;, + -5.594649; 5.349146; 0.581474;, + -6.927300; 5.349147; 0.581474;, + -6.927300; 5.349147;-0.581474;, + -6.927300; 5.349147;-0.581474;, + -6.927300; 5.349147; 0.581474;, + -6.927299; 8.883257; 0.581474;, + -6.927299; 8.883258;-0.581474;, + -5.594649; 8.883256; 0.581474;, + -5.594649; 8.883257;-0.581474;, + -6.927299; 8.883258;-0.581474;, + -6.927299; 8.883257; 0.581474;, + -3.424468; 8.883257;-0.581474;, + -3.424468; 5.349147;-0.581474;, + -4.757119; 5.349147;-0.581474;, + -4.757119; 8.883258;-0.581474;, + -3.424468; 8.883256; 0.581474;, + -4.757119; 8.883257; 0.581474;, + -4.757119; 5.349147; 0.581474;, + -3.424469; 5.349146; 0.581474;, + -3.424468; 8.883257;-0.581474;, + -3.424468; 8.883256; 0.581474;, + -3.424469; 5.349146; 0.581474;, + -3.424468; 5.349147;-0.581474;, + -3.424468; 5.349147;-0.581474;, + -3.424469; 5.349146; 0.581474;, + -4.757119; 5.349147; 0.581474;, + -4.757119; 5.349147;-0.581474;, + -4.757119; 5.349147;-0.581474;, + -4.757119; 5.349147; 0.581474;, + -4.757119; 8.883257; 0.581474;, + -4.757119; 8.883258;-0.581474;, + -3.424468; 8.883256; 0.581474;, + -3.424468; 8.883257;-0.581474;, + -4.757119; 8.883258;-0.581474;, + -4.757119; 8.883257; 0.581474;, + -2.840543; 5.325300;-0.960908;, + -2.840543; 1.791190;-0.960908;, + -5.031610; 1.791191;-0.960908;, + -5.031609; 5.325301;-0.960908;, + -2.840542; 5.325299; 1.407544;, + -5.031610; 5.325300; 1.407544;, + -5.031610; 1.791191; 1.407544;, + -2.840543; 1.791189; 1.407544;, + -2.840543; 5.325300;-0.960908;, + -2.840542; 5.325299; 1.407544;, + -2.840543; 1.791189; 1.407544;, + -2.840543; 1.791190;-0.960908;, + -2.840543; 1.791190;-0.960908;, + -2.840543; 1.791189; 1.407544;, + -5.031610; 1.791191; 1.407544;, + -5.031610; 1.791191;-0.960908;, + -5.031610; 1.791191;-0.960908;, + -5.031610; 1.791191; 1.407544;, + -5.031610; 5.325300; 1.407544;, + -5.031609; 5.325301;-0.960908;, + -2.840542; 5.325299; 1.407544;, + -2.840543; 5.325300;-0.960908;, + -5.031609; 5.325301;-0.960908;, + -5.031610; 5.325300; 1.407544;, + -2.949907;10.606580;-0.677308;, + -2.949907; 8.904172;-0.677308;, + -5.011261; 8.904172;-0.677308;, + -5.011261;10.606581;-0.677308;, + -2.949906;10.606580; 0.737293;, + -5.011261;10.606580; 0.737293;, + -5.011261; 8.904172; 0.737293;, + -2.949907; 8.904171; 0.737293;, + -2.949907;10.606580;-0.677308;, + -2.949906;10.606580; 0.737293;, + -2.949907; 8.904171; 0.737293;, + -2.949907; 8.904172;-0.677308;, + -2.949907; 8.904172;-0.677308;, + -2.949907; 8.904171; 0.737293;, + -5.011261; 8.904172; 0.737293;, + -5.011261; 8.904172;-0.677308;, + -5.011261; 8.904172;-0.677308;, + -5.011261; 8.904172; 0.737293;, + -5.011261;10.606580; 0.737293;, + -5.011261;10.606581;-0.677308;, + -2.949906;10.606580; 0.737293;, + -2.949907;10.606580;-0.677308;, + -5.011261;10.606581;-0.677308;, + -5.011261;10.606580; 0.737293;, + -1.005693;10.606580;-0.677308;, + -1.005693; 8.904172;-0.677308;, + -3.067047; 8.904172;-0.677308;, + -3.067047;10.606581;-0.677308;, + -1.005692;10.606580; 0.737293;, + -3.067047;10.606580; 0.737293;, + -3.067047; 8.904172; 0.737293;, + -1.005693; 8.904171; 0.737293;, + -1.005693;10.606580;-0.677308;, + -1.005692;10.606580; 0.737293;, + -1.005693; 8.904171; 0.737293;, + -1.005693; 8.904172;-0.677308;, + -1.005693; 8.904172;-0.677308;, + -1.005693; 8.904171; 0.737293;, + -3.067047; 8.904172; 0.737293;, + -3.067047; 8.904172;-0.677308;, + -3.067047; 8.904172;-0.677308;, + -3.067047; 8.904172; 0.737293;, + -3.067047;10.606580; 0.737293;, + -3.067047;10.606581;-0.677308;, + -1.005692;10.606580; 0.737293;, + -1.005693;10.606580;-0.677308;, + -3.067047;10.606581;-0.677308;, + -3.067047;10.606580; 0.737293;, + -0.835754; 5.325300;-0.960908;, + -0.835754; 1.791190;-0.960908;, + -3.147970; 1.791191;-0.960908;, + -3.147970; 5.325301;-0.960908;, + -0.835753; 5.325299; 1.407544;, + -3.147970; 5.325300; 1.407544;, + -3.147971; 1.791191; 1.407544;, + -0.835754; 1.791189; 1.407544;, + -0.835754; 5.325300;-0.960908;, + -0.835753; 5.325299; 1.407544;, + -0.835754; 1.791189; 1.407544;, + -0.835754; 1.791190;-0.960908;, + -0.835754; 1.791190;-0.960908;, + -0.835754; 1.791189; 1.407544;, + -3.147971; 1.791191; 1.407544;, + -3.147970; 1.791191;-0.960908;, + -3.147970; 1.791191;-0.960908;, + -3.147971; 1.791191; 1.407544;, + -3.147970; 5.325300; 1.407544;, + -3.147970; 5.325301;-0.960908;, + -0.835753; 5.325299; 1.407544;, + -0.835754; 5.325300;-0.960908;, + -3.147970; 5.325301;-0.960908;, + -3.147970; 5.325300; 1.407544;, + -1.480254; 8.883257;-0.581474;, + -1.480254; 5.349147;-0.581474;, + -2.812905; 5.349147;-0.581474;, + -2.812905; 8.883258;-0.581474;, + -1.480254; 8.883256; 0.581474;, + -2.812905; 8.883257; 0.581474;, + -2.812905; 5.349147; 0.581474;, + -1.480255; 5.349146; 0.581474;, + -1.480254; 8.883257;-0.581474;, + -1.480254; 8.883256; 0.581474;, + -1.480255; 5.349146; 0.581474;, + -1.480254; 5.349147;-0.581474;, + -1.480254; 5.349147;-0.581474;, + -1.480255; 5.349146; 0.581474;, + -2.812905; 5.349147; 0.581474;, + -2.812905; 5.349147;-0.581474;, + -2.812905; 5.349147;-0.581474;, + -2.812905; 5.349147; 0.581474;, + -2.812905; 8.883257; 0.581474;, + -2.812905; 8.883258;-0.581474;, + -1.480254; 8.883256; 0.581474;, + -1.480254; 8.883257;-0.581474;, + -2.812905; 8.883258;-0.581474;, + -2.812905; 8.883257; 0.581474;, + -0.896329;-1.799264;-0.908047;, + -0.896329;-5.333374;-0.908047;, + -3.087395;-5.333374;-0.908047;, + -3.087395;-1.799264;-0.908047;, + -0.896328;-1.799265; 1.354682;, + -3.087395;-1.799264; 1.354682;, + -3.087396;-5.333374; 1.354682;, + -0.896329;-5.333375; 1.354682;, + -0.896329;-1.799264;-0.908047;, + -0.896328;-1.799265; 1.354682;, + -0.896329;-5.333375; 1.354682;, + -0.896329;-5.333374;-0.908047;, + -0.896329;-5.333374;-0.908047;, + -0.896329;-5.333375; 1.354682;, + -3.087396;-5.333374; 1.354682;, + -3.087395;-5.333374;-0.908047;, + -3.087395;-5.333374;-0.908047;, + -3.087396;-5.333374; 1.354682;, + -3.087395;-1.799264; 1.354682;, + -3.087395;-1.799264;-0.908047;, + -0.896328;-1.799265; 1.354682;, + -0.896329;-1.799264;-0.908047;, + -3.087395;-1.799264;-0.908047;, + -3.087395;-1.799264; 1.354682;, + -1.480254;-5.357221;-0.581474;, + -1.480254;-8.891331;-0.581474;, + -2.812905;-8.891331;-0.581474;, + -2.812905;-5.357221;-0.581474;, + -1.480254;-5.357222; 0.581474;, + -2.812905;-5.357221; 0.581474;, + -2.812905;-8.891331; 0.581474;, + -1.480255;-8.891333; 0.581474;, + -1.480254;-5.357221;-0.581474;, + -1.480254;-5.357222; 0.581474;, + -1.480255;-8.891333; 0.581474;, + -1.480254;-8.891331;-0.581474;, + -1.480254;-8.891331;-0.581474;, + -1.480255;-8.891333; 0.581474;, + -2.812905;-8.891331; 0.581474;, + -2.812905;-8.891331;-0.581474;, + -2.812905;-8.891331;-0.581474;, + -2.812905;-8.891331; 0.581474;, + -2.812905;-5.357221; 0.581474;, + -2.812905;-5.357221;-0.581474;, + -1.480254;-5.357222; 0.581474;, + -1.480254;-5.357221;-0.581474;, + -2.812905;-5.357221;-0.581474;, + -2.812905;-5.357221; 0.581474;, + -1.005693;-8.911617;-0.677308;, + -1.005693;-10.614025;-0.677308;, + -3.067047;-10.614025;-0.677308;, + -3.067047;-8.911616;-0.677308;, + -1.005692;-8.911617; 0.737293;, + -3.067047;-8.911617; 0.737293;, + -3.067047;-10.614025; 0.737293;, + -1.005693;-10.614026; 0.737293;, + -1.005693;-8.911617;-0.677308;, + -1.005692;-8.911617; 0.737293;, + -1.005693;-10.614026; 0.737293;, + -1.005693;-10.614025;-0.677308;, + -1.005693;-10.614025;-0.677308;, + -1.005693;-10.614026; 0.737293;, + -3.067047;-10.614025; 0.737293;, + -3.067047;-10.614025;-0.677308;, + -3.067047;-10.614025;-0.677308;, + -3.067047;-10.614025; 0.737293;, + -3.067047;-8.911617; 0.737293;, + -3.067047;-8.911616;-0.677308;, + -1.005692;-8.911617; 0.737293;, + -1.005693;-8.911617;-0.677308;, + -3.067047;-8.911616;-0.677308;, + -3.067047;-8.911617; 0.737293;, + -2.935827;-8.911617;-0.677308;, + -2.935827;-10.614025;-0.677308;, + -4.997181;-10.614025;-0.677308;, + -4.997181;-8.911616;-0.677308;, + -2.935826;-8.911617; 0.737293;, + -4.997181;-8.911617; 0.737293;, + -4.997181;-10.614025; 0.737293;, + -2.935827;-10.614026; 0.737293;, + -2.935827;-8.911617;-0.677308;, + -2.935826;-8.911617; 0.737293;, + -2.935827;-10.614026; 0.737293;, + -2.935827;-10.614025;-0.677308;, + -2.935827;-10.614025;-0.677308;, + -2.935827;-10.614026; 0.737293;, + -4.997181;-10.614025; 0.737293;, + -4.997181;-10.614025;-0.677308;, + -4.997181;-10.614025;-0.677308;, + -4.997181;-10.614025; 0.737293;, + -4.997181;-8.911617; 0.737293;, + -4.997181;-8.911616;-0.677308;, + -2.935826;-8.911617; 0.737293;, + -2.935827;-8.911617;-0.677308;, + -4.997181;-8.911616;-0.677308;, + -4.997181;-8.911617; 0.737293;, + -3.410388;-5.357221;-0.581474;, + -3.410388;-8.891331;-0.581474;, + -4.743039;-8.891331;-0.581474;, + -4.743039;-5.357221;-0.581474;, + -3.410388;-5.357222; 0.581474;, + -4.743039;-5.357221; 0.581474;, + -4.743039;-8.891331; 0.581474;, + -3.410389;-8.891333; 0.581474;, + -3.410388;-5.357221;-0.581474;, + -3.410388;-5.357222; 0.581474;, + -3.410389;-8.891333; 0.581474;, + -3.410388;-8.891331;-0.581474;, + -3.410388;-8.891331;-0.581474;, + -3.410389;-8.891333; 0.581474;, + -4.743039;-8.891331; 0.581474;, + -4.743039;-8.891331;-0.581474;, + -4.743039;-8.891331;-0.581474;, + -4.743039;-8.891331; 0.581474;, + -4.743039;-5.357221; 0.581474;, + -4.743039;-5.357221;-0.581474;, + -3.410388;-5.357222; 0.581474;, + -3.410388;-5.357221;-0.581474;, + -4.743039;-5.357221;-0.581474;, + -4.743039;-5.357221; 0.581474;, + -2.826463;-1.799264;-0.960908;, + -2.826463;-5.333374;-0.960908;, + -5.017529;-5.333374;-0.960908;, + -5.017529;-1.799264;-0.960908;, + -2.826462;-1.799265; 1.407544;, + -5.017529;-1.799264; 1.407544;, + -5.017529;-5.333374; 1.407544;, + -2.826463;-5.333375; 1.407544;, + -2.826463;-1.799264;-0.960908;, + -2.826462;-1.799265; 1.407544;, + -2.826463;-5.333375; 1.407544;, + -2.826463;-5.333374;-0.960908;, + -2.826463;-5.333374;-0.960908;, + -2.826463;-5.333375; 1.407544;, + -5.017529;-5.333374; 1.407544;, + -5.017529;-5.333374;-0.960908;, + -5.017529;-5.333374;-0.960908;, + -5.017529;-5.333374; 1.407544;, + -5.017529;-1.799264; 1.407544;, + -5.017529;-1.799264;-0.960908;, + -2.826462;-1.799265; 1.407544;, + -2.826463;-1.799264;-0.960908;, + -5.017529;-1.799264;-0.960908;, + -5.017529;-1.799264; 1.407544;, + -5.166610;-1.799264;-0.960908;, + -5.166610;-5.333374;-0.960908;, + -7.357677;-5.333374;-0.960908;, + -7.357676;-1.799264;-0.960908;, + -5.166610;-1.799265; 1.407544;, + -7.357677;-1.799264; 1.407544;, + -7.357677;-5.333374; 1.407544;, + -5.166610;-5.333375; 1.407544;, + -5.166610;-1.799264;-0.960908;, + -5.166610;-1.799265; 1.407544;, + -5.166610;-5.333375; 1.407544;, + -5.166610;-5.333374;-0.960908;, + -5.166610;-5.333374;-0.960908;, + -5.166610;-5.333375; 1.407544;, + -7.357677;-5.333374; 1.407544;, + -7.357677;-5.333374;-0.960908;, + -7.357677;-5.333374;-0.960908;, + -7.357677;-5.333374; 1.407544;, + -7.357677;-1.799264; 1.407544;, + -7.357676;-1.799264;-0.960908;, + -5.166610;-1.799265; 1.407544;, + -5.166610;-1.799264;-0.960908;, + -7.357676;-1.799264;-0.960908;, + -7.357677;-1.799264; 1.407544;, + -5.750535;-5.357221;-0.581474;, + -5.750535;-8.891331;-0.581474;, + -7.083186;-8.891331;-0.581474;, + -7.083186;-5.357221;-0.581474;, + -5.750535;-5.357222; 0.581474;, + -7.083186;-5.357221; 0.581474;, + -7.083186;-8.891331; 0.581474;, + -5.750535;-8.891333; 0.581474;, + -5.750535;-5.357221;-0.581474;, + -5.750535;-5.357222; 0.581474;, + -5.750535;-8.891333; 0.581474;, + -5.750535;-8.891331;-0.581474;, + -5.750535;-8.891331;-0.581474;, + -5.750535;-8.891333; 0.581474;, + -7.083186;-8.891331; 0.581474;, + -7.083186;-8.891331;-0.581474;, + -7.083186;-8.891331;-0.581474;, + -7.083186;-8.891331; 0.581474;, + -7.083186;-5.357221; 0.581474;, + -7.083186;-5.357221;-0.581474;, + -5.750535;-5.357222; 0.581474;, + -5.750535;-5.357221;-0.581474;, + -7.083186;-5.357221;-0.581474;, + -7.083186;-5.357221; 0.581474;, + -5.275974;-8.911617;-0.677308;, + -5.275974;-10.614025;-0.677308;, + -7.337328;-10.614025;-0.677308;, + -7.337328;-8.911616;-0.677308;, + -5.275973;-8.911617; 0.737293;, + -7.337328;-8.911617; 0.737293;, + -7.337328;-10.614025; 0.737293;, + -5.275974;-10.614026; 0.737293;, + -5.275974;-8.911617;-0.677308;, + -5.275973;-8.911617; 0.737293;, + -5.275974;-10.614026; 0.737293;, + -5.275974;-10.614025;-0.677308;, + -5.275974;-10.614025;-0.677308;, + -5.275974;-10.614026; 0.737293;, + -7.337328;-10.614025; 0.737293;, + -7.337328;-10.614025;-0.677308;, + -7.337328;-10.614025;-0.677308;, + -7.337328;-10.614025; 0.737293;, + -7.337328;-8.911617; 0.737293;, + -7.337328;-8.911616;-0.677308;, + -5.275973;-8.911617; 0.737293;, + -5.275974;-8.911617;-0.677308;, + -7.337328;-8.911616;-0.677308;, + -7.337328;-8.911617; 0.737293;, + -7.333074;-8.911617;-0.677308;, + -7.333074;-10.614025;-0.677308;, + -9.394428;-10.614025;-0.677308;, + -9.394428;-8.911616;-0.677308;, + -7.333074;-8.911617; 0.737293;, + -9.394428;-8.911617; 0.737293;, + -9.394429;-10.614025; 0.737293;, + -7.333074;-10.614026; 0.737293;, + -7.333074;-8.911617;-0.677308;, + -7.333074;-8.911617; 0.737293;, + -7.333074;-10.614026; 0.737293;, + -7.333074;-10.614025;-0.677308;, + -7.333074;-10.614025;-0.677308;, + -7.333074;-10.614026; 0.737293;, + -9.394429;-10.614025; 0.737293;, + -9.394428;-10.614025;-0.677308;, + -9.394428;-10.614025;-0.677308;, + -9.394429;-10.614025; 0.737293;, + -9.394428;-8.911617; 0.737293;, + -9.394428;-8.911616;-0.677308;, + -7.333074;-8.911617; 0.737293;, + -7.333074;-8.911617;-0.677308;, + -9.394428;-8.911616;-0.677308;, + -9.394428;-8.911617; 0.737293;, + -7.807635;-5.357221;-0.581474;, + -7.807635;-8.891331;-0.581474;, + -9.140286;-8.891331;-0.581474;, + -9.140285;-5.357221;-0.581474;, + -7.807635;-5.357222; 0.581474;, + -9.140286;-5.357221; 0.581474;, + -9.140286;-8.891331; 0.581474;, + -7.807636;-8.891333; 0.581474;, + -7.807635;-5.357221;-0.581474;, + -7.807635;-5.357222; 0.581474;, + -7.807636;-8.891333; 0.581474;, + -7.807635;-8.891331;-0.581474;, + -7.807635;-8.891331;-0.581474;, + -7.807636;-8.891333; 0.581474;, + -9.140286;-8.891331; 0.581474;, + -9.140286;-8.891331;-0.581474;, + -9.140286;-8.891331;-0.581474;, + -9.140286;-8.891331; 0.581474;, + -9.140286;-5.357221; 0.581474;, + -9.140285;-5.357221;-0.581474;, + -7.807635;-5.357222; 0.581474;, + -7.807635;-5.357221;-0.581474;, + -9.140285;-5.357221;-0.581474;, + -9.140286;-5.357221; 0.581474;, + -7.223710;-1.799264;-0.960908;, + -7.223710;-5.333374;-0.960908;, + -9.414777;-5.333374;-0.960908;, + -9.414777;-1.799264;-0.960908;, + -7.223710;-1.799265; 1.407544;, + -9.414777;-1.799264; 1.407544;, + -9.414777;-5.333374; 1.407544;, + -7.223711;-5.333375; 1.407544;, + -7.223710;-1.799264;-0.960908;, + -7.223710;-1.799265; 1.407544;, + -7.223711;-5.333375; 1.407544;, + -7.223710;-5.333374;-0.960908;, + -7.223710;-5.333374;-0.960908;, + -7.223711;-5.333375; 1.407544;, + -9.414777;-5.333374; 1.407544;, + -9.414777;-5.333374;-0.960908;, + -9.414777;-5.333374;-0.960908;, + -9.414777;-5.333374; 1.407544;, + -9.414777;-1.799264; 1.407544;, + -9.414777;-1.799264;-0.960908;, + -7.223710;-1.799265; 1.407544;, + -7.223710;-1.799264;-0.960908;, + -9.414777;-1.799264;-0.960908;, + -9.414777;-1.799264; 1.407544;, + -10.182327;-0.553378;-4.591125;, + -10.182327;-0.978322;-4.591125;, + -11.024656;-0.978322;-4.591125;, + -11.024656;-0.553377;-4.591125;, + -10.182327;-0.553378;-2.555301;, + -11.024656;-0.553378;-2.555301;, + -11.024656;-0.978322;-2.555301;, + -10.182327;-0.978322;-2.555301;, + -10.182327;-0.553378;-4.591125;, + -10.182327;-0.553378;-2.555301;, + -10.182327;-0.978322;-2.555301;, + -10.182327;-0.978322;-4.591125;, + -10.182327;-0.978322;-4.591125;, + -10.182327;-0.978322;-2.555301;, + -11.024656;-0.978322;-2.555301;, + -11.024656;-0.978322;-4.591125;, + -11.024656;-0.978322;-4.591125;, + -11.024656;-0.978322;-2.555301;, + -11.024656;-0.553378;-2.555301;, + -11.024656;-0.553377;-4.591125;, + -10.182327;-0.553378;-2.555301;, + -10.182327;-0.553378;-4.591125;, + -11.024656;-0.553377;-4.591125;, + -11.024656;-0.553378;-2.555301;, + -10.182327; 0.972910;-4.584551;, + -10.182327; 0.525326;-4.584551;, + -11.024656; 0.525326;-4.584551;, + -11.024656; 0.972911;-4.584551;, + -10.182327; 0.972910;-2.548727;, + -11.024656; 0.972910;-2.548727;, + -11.024656; 0.525326;-2.548727;, + -10.182327; 0.525326;-2.548727;, + -10.182327; 0.972910;-4.584551;, + -10.182327; 0.972910;-2.548727;, + -10.182327; 0.525326;-2.548727;, + -10.182327; 0.525326;-4.584551;, + -10.182327; 0.525326;-4.584551;, + -10.182327; 0.525326;-2.548727;, + -11.024656; 0.525326;-2.548727;, + -11.024656; 0.525326;-4.584551;, + -11.024656; 0.525326;-4.584551;, + -11.024656; 0.525326;-2.548727;, + -11.024656; 0.972910;-2.548727;, + -11.024656; 0.972911;-4.584551;, + -10.182327; 0.972910;-2.548727;, + -10.182327; 0.972910;-4.584551;, + -11.024656; 0.972911;-4.584551;, + -11.024656; 0.972910;-2.548727;, + -9.828722; 1.338463;-2.663285;, + -9.828722; 0.183701;-2.663285;, + -11.094425; 0.183701;-2.663285;, + -11.094424; 1.338464;-2.663285;, + -9.828722; 1.338463; 1.618752;, + -11.094424; 1.338464; 1.618752;, + -11.094425; 0.183701; 1.618752;, + -9.828723; 0.183700; 1.618752;, + -9.828722; 1.338463;-2.663285;, + -9.828722; 1.338463; 1.618752;, + -9.828723; 0.183700; 1.618752;, + -9.828722; 0.183701;-2.663285;, + -9.828722; 0.183701;-2.663285;, + -9.828723; 0.183700; 1.618752;, + -11.094425; 0.183701; 1.618752;, + -11.094425; 0.183701;-2.663285;, + -11.094425; 0.183701;-2.663285;, + -11.094425; 0.183701; 1.618752;, + -11.094424; 1.338464; 1.618752;, + -11.094424; 1.338464;-2.663285;, + -9.828722; 1.338463; 1.618752;, + -9.828722; 1.338463;-2.663285;, + -11.094424; 1.338464;-2.663285;, + -11.094424; 1.338464; 1.618752;, + -9.850704;-0.142858;-2.654951;, + -9.850704;-1.326516;-2.654951;, + -11.116406;-1.326516;-2.654951;, + -11.116405;-0.142858;-2.654951;, + -9.850703;-0.142858; 1.574314;, + -11.116405;-0.142858; 1.574314;, + -11.116406;-1.326516; 1.574314;, + -9.850704;-1.326516; 1.574314;, + -9.850704;-0.142858;-2.654951;, + -9.850703;-0.142858; 1.574314;, + -9.850704;-1.326516; 1.574314;, + -9.850704;-1.326516;-2.654951;, + -9.850704;-1.326516;-2.654951;, + -9.850704;-1.326516; 1.574314;, + -11.116406;-1.326516; 1.574314;, + -11.116406;-1.326516;-2.654951;, + -11.116406;-1.326516;-2.654951;, + -11.116406;-1.326516; 1.574314;, + -11.116405;-0.142858; 1.574314;, + -11.116405;-0.142858;-2.654951;, + -9.850703;-0.142858; 1.574314;, + -9.850704;-0.142858;-2.654951;, + -11.116405;-0.142858;-2.654951;, + -11.116405;-0.142858; 1.574314;, + -1.067807; 1.767679;-1.776137;, + -1.067807;-1.767679;-1.776137;, + -9.790613;-1.767679;-1.776137;, + -9.790611; 1.767680;-1.776137;, + -1.067805; 1.767678; 3.361375;, + -9.790613; 1.767679; 3.361375;, + -9.790615;-1.767679; 3.361375;, + -1.067810;-1.767680; 3.361375;, + -1.067807; 1.767679;-1.776137;, + -1.067805; 1.767678; 3.361375;, + -1.067810;-1.767680; 3.361375;, + -1.067807;-1.767679;-1.776137;, + -1.067807;-1.767679;-1.776137;, + -1.067810;-1.767680; 3.361375;, + -9.790615;-1.767679; 3.361375;, + -9.790613;-1.767679;-1.776137;, + -9.790613;-1.767679;-1.776137;, + -9.790615;-1.767679; 3.361375;, + -9.790613; 1.767679; 3.361375;, + -9.790611; 1.767680;-1.776137;, + -1.067805; 1.767678; 3.361375;, + -1.067807; 1.767679;-1.776137;, + -9.790611; 1.767680;-1.776137;, + -9.790613; 1.767679; 3.361375;, + 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.999999; 1.000000;, + -1.000000; 1.000000; 1.000000;, + -1.000000;-1.000000; 1.000000;, + 0.999999;-1.000001; 1.000000;, + 1.000000; 1.000000;-1.000000;, + 1.000000; 0.999999; 1.000000;, + 0.999999;-1.000001; 1.000000;, + 1.000000;-1.000000;-1.000000;, + 1.000000;-1.000000;-1.000000;, + 0.999999;-1.000001; 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.999999; 1.000000;, + 1.000000; 1.000000;-1.000000;, + -1.000000; 1.000000;-1.000000;, + -1.000000; 1.000000; 1.000000;, + 12.090038; 2.577776;-1.156314;, + 12.090038;-2.506783;-1.156314;, + 1.099999;-2.506782;-1.156314;, + 1.100001; 2.577777;-1.156314;, + 12.090041; 2.577775; 2.951054;, + 1.100000; 2.577776; 2.951054;, + 1.099998;-2.506782; 2.951054;, + 12.090035;-2.506784; 2.951054;, + 12.090038; 2.577776;-1.156314;, + 12.090041; 2.577775; 2.951054;, + 12.090035;-2.506784; 2.951054;, + 12.090038;-2.506783;-1.156314;, + 12.090038;-2.506783;-1.156314;, + 12.090035;-2.506784; 2.951054;, + 1.099998;-2.506782; 2.951054;, + 1.099999;-2.506782;-1.156314;, + 1.099999;-2.506782;-1.156314;, + 1.099998;-2.506782; 2.951054;, + 1.100000; 2.577776; 2.951054;, + 1.100001; 2.577777;-1.156314;, + 12.090041; 2.577775; 2.951054;, + 12.090038; 2.577776;-1.156314;, + 1.100001; 2.577777;-1.156314;, + 1.100000; 2.577776; 2.951054;; + 186; + 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;, + 4;351,350,349,348;, + 4;355,354,353,352;, + 4;359,358,357,356;, + 4;363,362,361,360;, + 4;367,366,365,364;, + 4;371,370,369,368;, + 4;375,374,373,372;, + 4;379,378,377,376;, + 4;383,382,381,380;, + 4;387,386,385,384;, + 4;391,390,389,388;, + 4;395,394,393,392;, + 4;399,398,397,396;, + 4;403,402,401,400;, + 4;407,406,405,404;, + 4;411,410,409,408;, + 4;415,414,413,412;, + 4;419,418,417,416;, + 4;423,422,421,420;, + 4;427,426,425,424;, + 4;431,430,429,428;, + 4;435,434,433,432;, + 4;439,438,437,436;, + 4;443,442,441,440;, + 4;447,446,445,444;, + 4;451,450,449,448;, + 4;455,454,453,452;, + 4;459,458,457,456;, + 4;463,462,461,460;, + 4;467,466,465,464;, + 4;471,470,469,468;, + 4;475,474,473,472;, + 4;479,478,477,476;, + 4;483,482,481,480;, + 4;487,486,485,484;, + 4;491,490,489,488;, + 4;495,494,493,492;, + 4;499,498,497,496;, + 4;503,502,501,500;, + 4;507,506,505,504;, + 4;511,510,509,508;, + 4;515,514,513,512;, + 4;519,518,517,516;, + 4;523,522,521,520;, + 4;527,526,525,524;, + 4;531,530,529,528;, + 4;535,534,533,532;, + 4;539,538,537,536;, + 4;543,542,541,540;, + 4;547,546,545,544;, + 4;551,550,549,548;, + 4;555,554,553,552;, + 4;559,558,557,556;, + 4;563,562,561,560;, + 4;567,566,565,564;, + 4;571,570,569,568;, + 4;575,574,573,572;, + 4;579,578,577,576;, + 4;583,582,581,580;, + 4;587,586,585,584;, + 4;591,590,589,588;, + 4;595,594,593,592;, + 4;599,598,597,596;, + 4;603,602,601,600;, + 4;607,606,605,604;, + 4;611,610,609,608;, + 4;615,614,613,612;, + 4;619,618,617,616;, + 4;623,622,621,620;, + 4;627,626,625,624;, + 4;631,630,629,628;, + 4;635,634,633,632;, + 4;639,638,637,636;, + 4;643,642,641,640;, + 4;647,646,645,644;, + 4;651,650,649,648;, + 4;655,654,653,652;, + 4;659,658,657,656;, + 4;663,662,661,660;, + 4;667,666,665,664;, + 4;671,670,669,668;, + 4;675,674,673,672;, + 4;679,678,677,676;, + 4;683,682,681,680;, + 4;687,686,685,684;, + 4;691,690,689,688;, + 4;695,694,693,692;, + 4;699,698,697,696;, + 4;703,702,701,700;, + 4;707,706,705,704;, + 4;711,710,709,708;, + 4;715,714,713,712;, + 4;719,718,717,716;, + 4;723,722,721,720;, + 4;727,726,725,724;, + 4;731,730,729,728;, + 4;735,734,733,732;, + 4;739,738,737,736;, + 4;743,742,741,740;; + MeshNormals { // Cube_001 normals + 186; + 0.000000; 0.000000;-1.000000;, + 0.000000;-0.000000; 1.000000;, + 1.000000;-0.000000; 0.000000;, + -0.000001;-1.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + 0.000001; 1.000000; 0.000001;, + 0.000000; 0.000000;-1.000000;, + 0.000000;-0.000000; 1.000000;, + 1.000000;-0.000000; 0.000000;, + -0.000000;-1.000000;-0.000000;, + -1.000000;-0.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000;-0.000000; 1.000000;, + 1.000000;-0.000000;-0.000000;, + -0.000000;-1.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000;-0.000000; 1.000000;, + 1.000000;-0.000000;-0.000000;, + -0.000000;-1.000000;-0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000;-0.000000; 1.000000;, + 1.000000;-0.000000;-0.000000;, + -0.000000;-1.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000;-0.000000; 1.000000;, + 1.000000;-0.000000;-0.000000;, + -0.000001;-1.000000;-0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000001; 1.000000; 0.000001;, + 0.000000; 0.000000;-1.000000;, + 0.000000;-0.000000; 1.000000;, + 1.000000;-0.000000; 0.000000;, + -0.000001;-1.000000;-0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000001; 1.000000; 0.000001;, + 0.000000; 0.000000;-1.000000;, + 0.000000;-0.000000; 1.000000;, + 1.000000;-0.000000; 0.000000;, + -0.000000;-1.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000;-0.000000; 1.000000;, + 1.000000;-0.000000; 0.000000;, + -0.000000;-1.000000;-0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000;-0.000000; 1.000000;, + 1.000000;-0.000000; 0.000000;, + -0.000000;-1.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000;-0.000000; 1.000000;, + 1.000000;-0.000000; 0.000000;, + -0.000000;-1.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000;-0.000000; 1.000000;, + 1.000000;-0.000000; 0.000000;, + -0.000001;-1.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + 0.000001; 1.000000; 0.000001;, + 0.000000; 0.000000;-1.000000;, + 0.000000;-0.000000; 1.000000;, + 1.000000;-0.000000; 0.000000;, + -0.000000;-1.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000;-0.000000; 1.000000;, + 1.000000;-0.000000; 0.000000;, + -0.000001;-1.000000;-0.000001;, + -1.000000; 0.000000;-0.000000;, + 0.000001; 1.000000; 0.000001;, + 0.000000; 0.000000;-1.000000;, + 0.000000;-0.000000; 1.000000;, + 1.000000;-0.000000; 0.000000;, + -0.000000;-1.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000;-0.000000; 1.000000;, + 1.000000;-0.000000; 0.000000;, + -0.000000;-1.000000;-0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000;-0.000000; 1.000000;, + 1.000000;-0.000000; 0.000000;, + -0.000001;-1.000000;-0.000001;, + -1.000000; 0.000000; 0.000000;, + 0.000001; 1.000000; 0.000001;, + 0.000000; 0.000000;-1.000000;, + 0.000000;-0.000000; 1.000000;, + 1.000000;-0.000000; 0.000000;, + -0.000000;-1.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000;-0.000000; 1.000000;, + 1.000000;-0.000000; 0.000000;, + -0.000000;-1.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000;-0.000000; 1.000000;, + 1.000000;-0.000000; 0.000000;, + -0.000001;-1.000000;-0.000001;, + -1.000000; 0.000000; 0.000000;, + 0.000001; 1.000000; 0.000001;, + 0.000000; 0.000000;-1.000000;, + 0.000000;-0.000000; 1.000000;, + 1.000000;-0.000000;-0.000000;, + -0.000000;-1.000000;-0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000;-0.000000; 1.000000;, + 1.000000;-0.000000;-0.000000;, + -0.000000;-1.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000;-0.000000; 1.000000;, + 1.000000;-0.000000; 0.000000;, + -0.000001;-1.000000;-0.000001;, + -1.000000; 0.000000;-0.000000;, + 0.000001; 1.000000; 0.000001;, + 0.000000; 0.000000;-1.000000;, + 0.000000;-0.000000; 1.000000;, + 1.000000;-0.000000; 0.000000;, + -0.000000;-1.000000;-0.000000;, + -1.000000;-0.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000;-0.000000; 1.000000;, + 1.000000;-0.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000;-0.000000; 1.000000;, + 1.000000;-0.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000;-0.000000; 1.000000;, + 1.000000;-0.000000; 0.000000;, + -0.000000;-1.000000;-0.000000;, + -1.000000; 0.000001; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000;-0.000000; 1.000000;, + 1.000000;-0.000000;-0.000000;, + -0.000000;-1.000000;-0.000000;, + -1.000000; 0.000001; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000;-0.000000; 1.000000;, + 1.000000;-0.000001; 0.000000;, + -0.000000;-1.000000;-0.000000;, + -1.000000; 0.000001;-0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000;-0.000000; 1.000000;, + 1.000000;-0.000000; 0.000000;, + -0.000000;-1.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000;-0.000000; 1.000000;, + 1.000000;-0.000001;-0.000000;, + -0.000000;-1.000000;-0.000000;, + -1.000000; 0.000000;-0.000000;, + 0.000000; 1.000000; 0.000000;; + 186; + 4;0,0,0,0;, + 4;1,1,1,1;, + 4;2,2,2,2;, + 4;3,3,3,3;, + 4;4,4,4,4;, + 4;5,5,5,5;, + 4;6,6,6,6;, + 4;7,7,7,7;, + 4;8,8,8,8;, + 4;9,9,9,9;, + 4;10,10,10,10;, + 4;11,11,11,11;, + 4;12,12,12,12;, + 4;13,13,13,13;, + 4;14,14,14,14;, + 4;15,15,15,15;, + 4;16,16,16,16;, + 4;17,17,17,17;, + 4;18,18,18,18;, + 4;19,19,19,19;, + 4;20,20,20,20;, + 4;21,21,21,21;, + 4;22,22,22,22;, + 4;23,23,23,23;, + 4;24,24,24,24;, + 4;25,25,25,25;, + 4;26,26,26,26;, + 4;27,27,27,27;, + 4;28,28,28,28;, + 4;29,29,29,29;, + 4;30,30,30,30;, + 4;31,31,31,31;, + 4;32,32,32,32;, + 4;33,33,33,33;, + 4;34,34,34,34;, + 4;35,35,35,35;, + 4;36,36,36,36;, + 4;37,37,37,37;, + 4;38,38,38,38;, + 4;39,39,39,39;, + 4;40,40,40,40;, + 4;41,41,41,41;, + 4;42,42,42,42;, + 4;43,43,43,43;, + 4;44,44,44,44;, + 4;45,45,45,45;, + 4;46,46,46,46;, + 4;47,47,47,47;, + 4;48,48,48,48;, + 4;49,49,49,49;, + 4;50,50,50,50;, + 4;51,51,51,51;, + 4;52,52,52,52;, + 4;53,53,53,53;, + 4;54,54,54,54;, + 4;55,55,55,55;, + 4;56,56,56,56;, + 4;57,57,57,57;, + 4;58,58,58,58;, + 4;59,59,59,59;, + 4;60,60,60,60;, + 4;61,61,61,61;, + 4;62,62,62,62;, + 4;63,63,63,63;, + 4;64,64,64,64;, + 4;65,65,65,65;, + 4;66,66,66,66;, + 4;67,67,67,67;, + 4;68,68,68,68;, + 4;69,69,69,69;, + 4;70,70,70,70;, + 4;71,71,71,71;, + 4;72,72,72,72;, + 4;73,73,73,73;, + 4;74,74,74,74;, + 4;75,75,75,75;, + 4;76,76,76,76;, + 4;77,77,77,77;, + 4;78,78,78,78;, + 4;79,79,79,79;, + 4;80,80,80,80;, + 4;81,81,81,81;, + 4;82,82,82,82;, + 4;83,83,83,83;, + 4;84,84,84,84;, + 4;85,85,85,85;, + 4;86,86,86,86;, + 4;87,87,87,87;, + 4;88,88,88,88;, + 4;89,89,89,89;, + 4;90,90,90,90;, + 4;91,91,91,91;, + 4;92,92,92,92;, + 4;93,93,93,93;, + 4;94,94,94,94;, + 4;95,95,95,95;, + 4;96,96,96,96;, + 4;97,97,97,97;, + 4;98,98,98,98;, + 4;99,99,99,99;, + 4;100,100,100,100;, + 4;101,101,101,101;, + 4;102,102,102,102;, + 4;103,103,103,103;, + 4;104,104,104,104;, + 4;105,105,105,105;, + 4;106,106,106,106;, + 4;107,107,107,107;, + 4;108,108,108,108;, + 4;109,109,109,109;, + 4;110,110,110,110;, + 4;111,111,111,111;, + 4;112,112,112,112;, + 4;113,113,113,113;, + 4;114,114,114,114;, + 4;115,115,115,115;, + 4;116,116,116,116;, + 4;117,117,117,117;, + 4;118,118,118,118;, + 4;119,119,119,119;, + 4;120,120,120,120;, + 4;121,121,121,121;, + 4;122,122,122,122;, + 4;123,123,123,123;, + 4;124,124,124,124;, + 4;125,125,125,125;, + 4;126,126,126,126;, + 4;127,127,127,127;, + 4;128,128,128,128;, + 4;129,129,129,129;, + 4;130,130,130,130;, + 4;131,131,131,131;, + 4;132,132,132,132;, + 4;133,133,133,133;, + 4;134,134,134,134;, + 4;135,135,135,135;, + 4;136,136,136,136;, + 4;137,137,137,137;, + 4;138,138,138,138;, + 4;139,139,139,139;, + 4;140,140,140,140;, + 4;141,141,141,141;, + 4;142,142,142,142;, + 4;143,143,143,143;, + 4;144,144,144,144;, + 4;145,145,145,145;, + 4;146,146,146,146;, + 4;147,147,147,147;, + 4;148,148,148,148;, + 4;149,149,149,149;, + 4;150,150,150,150;, + 4;151,151,151,151;, + 4;152,152,152,152;, + 4;153,153,153,153;, + 4;154,154,154,154;, + 4;155,155,155,155;, + 4;156,156,156,156;, + 4;157,157,157,157;, + 4;158,158,158,158;, + 4;159,159,159,159;, + 4;160,160,160,160;, + 4;161,161,161,161;, + 4;162,162,162,162;, + 4;163,163,163,163;, + 4;164,164,164,164;, + 4;165,165,165,165;, + 4;166,166,166,166;, + 4;167,167,167,167;, + 4;168,168,168,168;, + 4;169,169,169,169;, + 4;170,170,170,170;, + 4;171,171,171,171;, + 4;172,172,172,172;, + 4;173,173,173,173;, + 4;174,174,174,174;, + 4;175,175,175,175;, + 4;176,176,176,176;, + 4;177,177,177,177;, + 4;178,178,178,178;, + 4;179,179,179,179;, + 4;180,180,180,180;, + 4;181,181,181,181;, + 4;182,182,182,182;, + 4;183,183,183,183;, + 4;184,184,184,184;, + 4;185,185,185,185;; + } // End of Cube_001 normals + MeshTextureCoords { // Cube_001 UV coordinates + 744; + 0.302262; 0.155803;, + 0.302262; 0.269389;, + 0.345250; 0.269389;, + 0.345250; 0.155802;, + 0.087322; 0.155803;, + 0.044334; 0.155803;, + 0.044334; 0.269389;, + 0.087322; 0.269389;, + 0.882562; 0.772828;, + 0.845048; 0.772828;, + 0.845048; 0.886414;, + 0.882562; 0.886414;, + 0.987958; 0.452192;, + 0.950444; 0.452192;, + 0.950444; 0.495024;, + 0.987958; 0.495024;, + 0.848057; 0.322567;, + 0.885571; 0.322567;, + 0.885571; 0.208981;, + 0.848058; 0.208981;, + 0.898216; 0.663600;, + 0.860703; 0.663600;, + 0.860703; 0.706431;, + 0.898216; 0.706431;, + 0.508039; 0.382975;, + 0.508039; 0.269389;, + 0.457235; 0.269389;, + 0.457235; 0.382975;, + 0.000000; 0.382975;, + 0.050804; 0.382975;, + 0.050804; 0.269389;, + 0.000000; 0.269389;, + 0.760735; 0.208981;, + 0.716401; 0.208981;, + 0.716401; 0.322567;, + 0.760735; 0.322567;, + 0.478320; 0.054565;, + 0.433985; 0.054565;, + 0.433985; 0.105184;, + 0.478319; 0.105184;, + 0.000000; 0.269389;, + 0.044334; 0.269389;, + 0.044334; 0.155803;, + 0.000000; 0.155803;, + 0.590377; 0.133027;, + 0.634711; 0.133027;, + 0.634711; 0.082408;, + 0.590377; 0.082408;, + 0.965897; 0.099550;, + 0.965897; 0.044835;, + 0.926817; 0.044835;, + 0.926817; 0.099550;, + 0.539573; 0.104751;, + 0.578653; 0.104751;, + 0.578653; 0.050035;, + 0.539573; 0.050035;, + 0.984548; 0.495024;, + 0.950444; 0.495024;, + 0.950444; 0.549739;, + 0.984548; 0.549739;, + 0.672066; 0.040680;, + 0.706170; 0.040680;, + 0.706170; 0.001742;, + 0.672066; 0.001742;, + 0.668815; 0.023597;, + 0.634711; 0.023597;, + 0.634711; 0.078312;, + 0.668815; 0.078312;, + 0.965897; 0.170043;, + 1.000000; 0.170043;, + 1.000000; 0.131106;, + 0.965897; 0.131106;, + 0.863882; 0.763263;, + 0.863882; 0.708548;, + 0.820894; 0.708548;, + 0.820894; 0.763263;, + 0.748161; 0.663600;, + 0.705173; 0.663600;, + 0.705173; 0.718315;, + 0.748161; 0.718315;, + 0.288185; 0.036807;, + 0.254082; 0.036807;, + 0.254082; 0.091523;, + 0.288185; 0.091523;, + 0.962566; 0.957169;, + 0.996669; 0.957169;, + 0.996669; 0.914337;, + 0.962566; 0.914337;, + 0.322288; 0.036807;, + 0.288185; 0.036807;, + 0.288185; 0.091523;, + 0.322288; 0.091523;, + 0.996669; 0.957169;, + 0.962566; 0.957169;, + 0.962566; 1.000000;, + 0.996669; 1.000000;, + 0.590377; 0.382541;, + 0.590377; 0.268955;, + 0.539573; 0.268955;, + 0.539573; 0.382541;, + 0.722870; 0.549739;, + 0.672066; 0.549739;, + 0.672066; 0.663325;, + 0.722870; 0.663325;, + 0.767205; 0.322567;, + 0.722870; 0.322567;, + 0.722870; 0.436153;, + 0.767205; 0.436153;, + 0.478319; 0.155802;, + 0.522654; 0.155802;, + 0.522654; 0.105184;, + 0.478320; 0.105184;, + 0.811539; 0.436153;, + 0.767205; 0.436153;, + 0.767205; 0.549739;, + 0.811539; 0.549739;, + 0.433985; 0.105184;, + 0.389651; 0.105184;, + 0.389651; 0.155802;, + 0.433985; 0.155802;, + 0.173298; 0.155803;, + 0.173298; 0.269389;, + 0.216286; 0.269389;, + 0.216286; 0.155802;, + 0.539573; 0.268955;, + 0.582561; 0.268955;, + 0.582561; 0.155369;, + 0.539573; 0.155369;, + 0.892041; 0.322567;, + 0.854527; 0.322567;, + 0.854527; 0.436153;, + 0.892041; 0.436153;, + 0.959156; 0.748790;, + 0.996669; 0.748790;, + 0.996669; 0.705958;, + 0.959156; 0.705958;, + 0.859635; 0.095395;, + 0.822121; 0.095395;, + 0.822121; 0.208981;, + 0.859635; 0.208981;, + 0.382830; 0.011734;, + 0.345316; 0.011734;, + 0.345316; 0.054565;, + 0.382830; 0.054565;, + 0.854527; 0.663325;, + 0.854527; 0.549739;, + 0.811539; 0.549739;, + 0.811539; 0.663325;, + 0.388238; 0.269389;, + 0.431226; 0.269389;, + 0.431226; 0.155803;, + 0.388238; 0.155803;, + 0.892041; 0.436153;, + 0.854527; 0.436153;, + 0.854527; 0.549739;, + 0.892041; 0.549739;, + 0.962165; 0.322567;, + 0.999679; 0.322567;, + 0.999679; 0.279736;, + 0.962165; 0.279736;, + 0.709580; 0.208981;, + 0.747094; 0.208981;, + 0.747094; 0.095395;, + 0.709580; 0.095395;, + 0.495371; 0.054565;, + 0.532885; 0.054565;, + 0.532885; 0.011734;, + 0.495371; 0.011734;, + 0.457235; 0.382975;, + 0.457235; 0.269389;, + 0.406431; 0.269389;, + 0.406431; 0.382975;, + 0.101608; 0.269389;, + 0.050804; 0.269389;, + 0.050804; 0.382975;, + 0.101608; 0.382975;, + 0.716401; 0.208981;, + 0.672066; 0.208981;, + 0.672066; 0.322567;, + 0.716401; 0.322567;, + 0.863882; 0.763263;, + 0.908217; 0.763263;, + 0.908217; 0.712645;, + 0.863882; 0.712645;, + 0.845048; 0.772828;, + 0.800714; 0.772828;, + 0.800714; 0.886414;, + 0.845048; 0.886414;, + 0.389651; 0.105184;, + 0.345316; 0.105184;, + 0.345316; 0.155802;, + 0.389651; 0.155802;, + 0.962566; 1.000000;, + 0.962566; 0.945285;, + 0.923486; 0.945285;, + 0.923486; 1.000000;, + 0.750226; 0.040680;, + 0.711146; 0.040680;, + 0.711146; 0.095395;, + 0.750226; 0.095395;, + 0.963658; 0.553894;, + 0.929555; 0.553894;, + 0.929555; 0.608610;, + 0.963658; 0.608610;, + 0.965897; 0.131106;, + 1.000000; 0.131106;, + 1.000000; 0.092168;, + 0.965897; 0.092168;, + 0.185875; 0.036807;, + 0.151771; 0.036807;, + 0.151771; 0.091523;, + 0.185875; 0.091523;, + 0.965897; 0.208981;, + 1.000000; 0.208981;, + 1.000000; 0.170043;, + 0.965897; 0.170043;, + 0.867466; 0.095395;, + 0.867466; 0.040680;, + 0.828386; 0.040680;, + 0.828386; 0.095395;, + 0.962566; 0.890569;, + 0.923486; 0.890569;, + 0.923486; 0.945285;, + 0.962566; 0.945285;, + 0.668815; 0.078312;, + 0.634711; 0.078312;, + 0.634711; 0.133027;, + 0.668815; 0.133027;, + 0.997761; 0.624387;, + 0.963658; 0.624388;, + 0.963658; 0.663325;, + 0.997761; 0.663325;, + 0.150055; 0.036807;, + 0.115952; 0.036807;, + 0.115952; 0.091523;, + 0.150055; 0.091523;, + 0.995023; 0.005898;, + 0.960920; 0.005898;, + 0.960920; 0.044835;, + 0.995023; 0.044835;, + 0.715551; 0.886414;, + 0.715551; 0.772828;, + 0.660839; 0.772828;, + 0.660839; 0.886414;, + 0.715551; 0.886414;, + 0.660839; 0.886414;, + 0.660839; 1.000000;, + 0.715551; 1.000000;, + 0.800714; 0.886414;, + 0.756379; 0.886414;, + 0.756379; 1.000000;, + 0.800714; 1.000000;, + 0.660839; 0.772828;, + 0.705173; 0.772828;, + 0.705173; 0.718315;, + 0.660839; 0.718315;, + 0.767205; 0.549739;, + 0.722870; 0.549739;, + 0.722870; 0.663325;, + 0.767205; 0.663325;, + 0.660839; 0.718315;, + 0.705173; 0.718315;, + 0.705173; 0.663803;, + 0.660839; 0.663803;, + 0.302262; 0.269389;, + 0.302262; 0.155803;, + 0.259274; 0.155803;, + 0.259274; 0.269389;, + 0.811539; 0.549739;, + 0.854527; 0.549739;, + 0.854527; 0.436153;, + 0.811539; 0.436153;, + 0.822121; 0.095395;, + 0.784607; 0.095395;, + 0.784608; 0.208981;, + 0.822121; 0.208981;, + 0.577087; 0.007204;, + 0.539573; 0.007204;, + 0.539573; 0.050035;, + 0.577087; 0.050035;, + 0.920076; 0.772828;, + 0.882562; 0.772828;, + 0.882562; 0.886414;, + 0.920076; 0.886414;, + 0.860703; 0.663600;, + 0.823189; 0.663600;, + 0.823189; 0.706431;, + 0.860703; 0.706431;, + 0.355628; 0.382975;, + 0.355628; 0.269389;, + 0.304824; 0.269389;, + 0.304824; 0.382975;, + 0.101608; 0.382975;, + 0.152412; 0.382975;, + 0.152412; 0.269389;, + 0.101608; 0.269389;, + 0.885972; 0.886414;, + 0.845048; 0.886414;, + 0.845048; 1.000000;, + 0.885972; 1.000000;, + 0.000000; 0.091523;, + 0.040924; 0.091523;, + 0.040924; 0.040904;, + 0.000000; 0.040904;, + 0.631301; 0.133027;, + 0.590377; 0.133027;, + 0.590377; 0.246613;, + 0.631301; 0.246613;, + 0.040924; 0.091523;, + 0.081848; 0.091523;, + 0.081848; 0.040904;, + 0.040924; 0.040904;, + 0.848057; 0.322567;, + 0.848057; 0.208981;, + 0.805070; 0.208981;, + 0.805070; 0.322567;, + 0.216286; 0.269389;, + 0.259274; 0.269389;, + 0.259274; 0.155803;, + 0.216286; 0.155803;, + 0.784607; 0.095395;, + 0.747094; 0.095395;, + 0.747094; 0.208981;, + 0.784607; 0.208981;, + 0.823189; 0.663600;, + 0.785675; 0.663600;, + 0.785675; 0.706431;, + 0.823189; 0.706431;, + 0.923085; 0.208981;, + 0.885571; 0.208981;, + 0.885571; 0.322567;, + 0.923085; 0.322567;, + 0.495371; 0.011734;, + 0.457857; 0.011734;, + 0.457857; 0.054565;, + 0.495371; 0.054565;, + 0.828386; 0.095395;, + 0.828386; 0.040680;, + 0.789306; 0.040680;, + 0.789306; 0.095395;, + 0.959156; 0.694074;, + 0.920076; 0.694074;, + 0.920076; 0.748790;, + 0.959156; 0.748790;, + 0.115952; 0.036807;, + 0.081848; 0.036807;, + 0.081848; 0.091523;, + 0.115952; 0.091523;, + 0.960920; 0.005898;, + 0.926817; 0.005898;, + 0.926817; 0.044835;, + 0.960920; 0.044835;, + 0.963658; 0.608610;, + 0.929555; 0.608610;, + 0.929555; 0.663325;, + 0.963658; 0.663325;, + 0.997761; 0.585450;, + 0.963658; 0.585450;, + 0.963658; 0.624387;, + 0.997761; 0.624387;, + 0.711146; 0.095395;, + 0.711146; 0.040680;, + 0.672066; 0.040680;, + 0.672066; 0.095395;, + 0.789306; 0.040680;, + 0.750226; 0.040680;, + 0.750226; 0.095395;, + 0.789306; 0.095395;, + 0.254082; 0.036807;, + 0.219978; 0.036807;, + 0.219978; 0.091523;, + 0.254082; 0.091523;, + 0.706170; 0.040680;, + 0.740273; 0.040680;, + 0.740273; 0.001742;, + 0.706170; 0.001742;, + 0.219978; 0.036807;, + 0.185875; 0.036807;, + 0.185875; 0.091523;, + 0.219978; 0.091523;, + 0.000000; 0.040904;, + 0.034103; 0.040904;, + 0.034103; 0.001966;, + 0.000000; 0.001966;, + 0.517202; 0.269389;, + 0.517202; 0.155803;, + 0.474214; 0.155803;, + 0.474214; 0.269389;, + 0.345250; 0.269389;, + 0.388238; 0.269389;, + 0.388238; 0.155803;, + 0.345250; 0.155803;, + 0.892041; 0.549739;, + 0.854527; 0.549739;, + 0.854527; 0.663325;, + 0.892041; 0.663325;, + 0.926817; 0.030221;, + 0.889303; 0.030221;, + 0.889303; 0.073053;, + 0.926817; 0.073053;, + 0.923486; 0.886414;, + 0.885972; 0.886414;, + 0.885972; 1.000000;, + 0.923486; 1.000000;, + 0.987958; 0.409361;, + 0.950444; 0.409361;, + 0.950444; 0.452192;, + 0.987958; 0.452192;, + 0.254020; 0.269389;, + 0.254020; 0.382975;, + 0.304824; 0.382975;, + 0.304824; 0.269389;, + 0.722870; 0.436153;, + 0.672066; 0.436153;, + 0.672066; 0.549739;, + 0.722870; 0.549739;, + 0.800714; 0.772828;, + 0.756379; 0.772828;, + 0.756379; 0.886414;, + 0.800714; 0.886414;, + 0.936375; 0.322567;, + 0.892041; 0.322567;, + 0.892041; 0.373186;, + 0.936375; 0.373186;, + 0.845048; 0.886414;, + 0.800714; 0.886414;, + 0.800714; 1.000000;, + 0.845048; 1.000000;, + 0.345316; 0.105184;, + 0.389651; 0.105184;, + 0.389651; 0.054565;, + 0.345316; 0.054565;, + 0.406431; 0.382975;, + 0.406431; 0.269389;, + 0.355628; 0.269389;, + 0.355628; 0.382975;, + 0.203216; 0.382975;, + 0.254020; 0.382975;, + 0.254020; 0.269389;, + 0.203216; 0.269389;, + 0.767205; 0.436153;, + 0.722870; 0.436153;, + 0.722870; 0.549739;, + 0.767205; 0.549739;, + 0.583907; 0.104751;, + 0.539573; 0.104751;, + 0.539573; 0.155369;, + 0.583907; 0.155369;, + 0.811539; 0.322567;, + 0.767205; 0.322567;, + 0.767205; 0.436153;, + 0.811539; 0.436153;, + 0.389651; 0.105184;, + 0.433985; 0.105184;, + 0.433985; 0.054565;, + 0.389651; 0.054565;, + 0.854527; 0.436153;, + 0.854527; 0.322567;, + 0.811539; 0.322567;, + 0.811539; 0.436153;, + 0.474214; 0.155803;, + 0.431226; 0.155803;, + 0.431226; 0.269389;, + 0.474214; 0.269389;, + 0.709580; 0.095395;, + 0.672066; 0.095395;, + 0.672066; 0.208981;, + 0.709580; 0.208981;, + 0.420344; 0.011734;, + 0.382830; 0.011734;, + 0.382830; 0.054565;, + 0.420344; 0.054565;, + 0.929554; 0.549739;, + 0.892041; 0.549739;, + 0.892041; 0.663325;, + 0.929554; 0.663325;, + 0.962165; 0.279736;, + 0.999679; 0.279736;, + 0.999679; 0.236904;, + 0.962165; 0.236904;, + 0.965897; 0.154266;, + 0.965897; 0.099550;, + 0.926817; 0.099550;, + 0.926817; 0.154266;, + 0.962165; 0.213136;, + 0.923085; 0.213136;, + 0.923085; 0.267852;, + 0.962165; 0.267852;, + 0.982915; 0.831699;, + 0.948811; 0.831699;, + 0.948811; 0.886414;, + 0.982915; 0.886414;, + 0.034103; 0.040904;, + 0.068207; 0.040904;, + 0.068207; 0.001966;, + 0.034103; 0.001966;, + 0.970479; 0.322567;, + 0.936375; 0.322567;, + 0.936375; 0.377282;, + 0.970479; 0.377282;, + 0.740273; 0.040680;, + 0.774376; 0.040680;, + 0.774376; 0.001742;, + 0.740273; 0.001742;, + 0.962165; 0.322567;, + 0.962165; 0.267852;, + 0.923085; 0.267852;, + 0.923085; 0.322567;, + 0.965897; 0.154266;, + 0.926817; 0.154266;, + 0.926817; 0.208981;, + 0.965897; 0.208981;, + 0.624480; 0.027693;, + 0.590377; 0.027693;, + 0.590377; 0.082408;, + 0.624480; 0.082408;, + 0.993259; 0.667021;, + 0.959156; 0.667021;, + 0.959156; 0.705958;, + 0.993259; 0.705958;, + 0.982915; 0.776983;, + 0.948811; 0.776983;, + 0.948811; 0.831699;, + 0.982915; 0.831699;, + 0.965897; 0.092168;, + 1.000000; 0.092168;, + 1.000000; 0.053231;, + 0.965897; 0.053231;, + 0.130310; 0.155803;, + 0.130310; 0.269389;, + 0.173298; 0.269389;, + 0.173298; 0.155803;, + 0.130310; 0.155803;, + 0.087322; 0.155802;, + 0.087322; 0.269389;, + 0.130310; 0.269389;, + 0.668815; 0.133027;, + 0.631301; 0.133027;, + 0.631301; 0.246613;, + 0.668815; 0.246613;, + 0.457857; 0.011734;, + 0.420344; 0.011734;, + 0.420344; 0.054565;, + 0.457857; 0.054565;, + 0.897149; 0.095395;, + 0.859635; 0.095395;, + 0.859635; 0.208981;, + 0.897149; 0.208981;, + 0.748161; 0.706431;, + 0.785675; 0.706431;, + 0.785675; 0.663600;, + 0.748161; 0.663600;, + 0.722870; 0.436153;, + 0.722870; 0.322567;, + 0.672066; 0.322567;, + 0.672066; 0.436153;, + 0.152412; 0.382975;, + 0.203216; 0.382975;, + 0.203216; 0.269389;, + 0.152412; 0.269389;, + 0.805070; 0.208981;, + 0.760735; 0.208981;, + 0.760735; 0.322567;, + 0.805070; 0.322567;, + 0.478319; 0.105184;, + 0.522654; 0.105184;, + 0.522654; 0.054565;, + 0.478320; 0.054565;, + 0.811539; 0.549739;, + 0.767205; 0.549739;, + 0.767205; 0.663325;, + 0.811539; 0.663325;, + 0.433985; 0.155802;, + 0.478319; 0.155802;, + 0.478319; 0.105184;, + 0.433985; 0.105184;, + 0.553530; 0.666283;, + 0.546797; 0.666283;, + 0.546797; 0.674071;, + 0.553530; 0.674071;, + 0.560262; 0.674071;, + 0.560262; 0.666283;, + 0.553530; 0.666283;, + 0.553530; 0.674071;, + 0.582561; 0.167018;, + 0.582561; 0.217987;, + 0.589293; 0.217987;, + 0.589293; 0.167018;, + 0.582561; 0.217987;, + 0.582561; 0.268955;, + 0.590377; 0.268955;, + 0.590377; 0.217987;, + 0.536270; 0.199678;, + 0.536270; 0.148709;, + 0.529538; 0.148709;, + 0.529538; 0.199678;, + 0.529891; 0.250647;, + 0.529891; 0.301616;, + 0.537707; 0.301616;, + 0.537707; 0.250647;, + 0.554260; 0.681858;, + 0.546797; 0.681858;, + 0.546797; 0.689646;, + 0.554260; 0.689646;, + 0.554260; 0.681858;, + 0.554260; 0.674071;, + 0.546797; 0.674071;, + 0.546797; 0.681858;, + 0.529891; 0.199678;, + 0.529891; 0.250647;, + 0.537354; 0.250647;, + 0.537354; 0.199678;, + 0.705173; 0.721859;, + 0.705173; 0.772828;, + 0.712989; 0.772828;, + 0.712989; 0.721859;, + 0.522075; 0.199678;, + 0.522075; 0.250647;, + 0.529538; 0.250647;, + 0.529538; 0.199678;, + 0.529891; 0.301616;, + 0.529891; 0.250647;, + 0.522075; 0.250647;, + 0.522075; 0.301616;, + 0.970479; 0.377282;, + 0.999214; 0.377282;, + 0.999214; 0.336603;, + 0.970479; 0.336603;, + 0.774376; 0.000000;, + 0.774376; 0.040680;, + 0.803112; 0.040680;, + 0.803112; 0.000000;, + 0.950444; 0.549739;, + 0.950444; 0.412115;, + 0.921709; 0.412115;, + 0.921709; 0.549739;, + 0.715551; 0.724751;, + 0.715551; 0.862376;, + 0.756379; 0.862376;, + 0.756379; 0.724751;, + 0.920076; 0.748790;, + 0.920076; 0.886414;, + 0.948811; 0.886414;, + 0.948811; 0.748790;, + 0.756379; 1.000000;, + 0.756379; 0.862376;, + 0.715551; 0.862376;, + 0.715551; 1.000000;, + 0.537707; 0.342295;, + 0.508039; 0.342295;, + 0.508039; 0.382975;, + 0.537707; 0.382975;, + 0.537707; 0.342295;, + 0.537707; 0.301616;, + 0.508039; 0.301616;, + 0.508039; 0.342295;, + 0.892041; 0.413811;, + 0.892041; 0.549739;, + 0.921709; 0.549739;, + 0.921709; 0.413811;, + 0.590377; 0.246613;, + 0.590377; 0.382541;, + 0.631205; 0.382541;, + 0.631205; 0.246613;, + 0.926817; 0.208981;, + 0.926817; 0.073053;, + 0.897149; 0.073053;, + 0.897149; 0.208981;, + 0.672033; 0.382541;, + 0.672033; 0.246613;, + 0.631205; 0.246613;, + 0.631205; 0.382541;, + 0.425531; 0.663325;, + 0.539573; 0.663325;, + 0.539573; 0.382975;, + 0.425531; 0.382975;, + 0.311489; 0.382975;, + 0.311489; 0.663325;, + 0.425531; 0.663325;, + 0.425531; 0.382975;, + 0.660839; 1.000000;, + 0.660839; 0.844823;, + 0.546797; 0.844823;, + 0.546797; 1.000000;, + 0.311489; 0.382975;, + 0.155745; 0.382975;, + 0.155745; 0.663325;, + 0.311489; 0.663325;, + 0.546797; 0.689646;, + 0.546797; 0.844823;, + 0.660839; 0.844823;, + 0.660839; 0.689646;, + 0.000000; 0.663325;, + 0.155745; 0.663325;, + 0.155745; 0.382975;, + 0.000000; 0.382975;, + 0.280801; 0.155802;, + 0.345316; 0.155802;, + 0.345316; 0.091523;, + 0.280801; 0.091523;, + 0.280801; 0.155802;, + 0.280801; 0.091523;, + 0.216286; 0.091523;, + 0.216286; 0.155802;, + 0.820894; 0.708548;, + 0.756379; 0.708548;, + 0.756379; 0.772828;, + 0.820894; 0.772828;, + 0.000000; 0.091523;, + 0.000000; 0.155802;, + 0.064515; 0.155803;, + 0.064515; 0.091523;, + 0.216286; 0.091523;, + 0.151771; 0.091523;, + 0.151771; 0.155802;, + 0.216286; 0.155802;, + 0.064515; 0.155803;, + 0.129030; 0.155803;, + 0.129030; 0.091523;, + 0.064515; 0.091523;, + 0.140905; 1.000000;, + 0.281810; 1.000000;, + 0.281810; 0.663325;, + 0.140905; 0.663325;, + 0.000000; 0.663325;, + 0.000000; 1.000000;, + 0.140905; 1.000000;, + 0.140905; 0.663325;, + 0.672066; 0.522933;, + 0.539573; 0.522933;, + 0.539573; 0.663325;, + 0.672066; 0.663325;, + 0.546797; 0.663325;, + 0.414304; 0.663325;, + 0.414304; 1.000000;, + 0.546797; 1.000000;, + 0.672066; 0.382541;, + 0.539573; 0.382541;, + 0.539573; 0.522933;, + 0.672066; 0.522933;, + 0.281810; 1.000000;, + 0.414304; 1.000000;, + 0.414304; 0.663325;, + 0.281811; 0.663325;; + } // End of Cube_001 UV coordinates + MeshMaterialList { // Cube_001 material list + 1; + 186; + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0;; + Material Material { + 0.640000; 0.640000; 0.640000; 1.000000;; + 96.078431; + 0.500000; 0.500000; 0.500000;; + 0.000000; 0.000000; 0.000000;; + TextureFilename {"tarantula.png";} + } + } // End of Cube_001 material list + XSkinMeshHeader { + 4; + 12; + 41; + } + SkinWeights { + "Armature_Bone_013"; + 21; + 672, + 673, + 675, + 676, + 677, + 678, + 679, + 680, + 681, + 682, + 683, + 684, + 685, + 686, + 689, + 690, + 691, + 692, + 693, + 694, + 695; + 1.000000, + 0.020645, + 0.031604, + 0.876569, + 0.250363, + 0.102980, + 0.107790, + 1.000000, + 0.876569, + 0.107790, + 0.020645, + 0.020645, + 0.107790, + 0.102980, + 0.102980, + 0.250363, + 0.031604, + 0.876569, + 1.000000, + 0.031604, + 0.250363; + 0.113725, 0.119665,-0.000000, 0.000000, + -0.252281, 0.239758,-0.000000, 0.000000, + 0.000000, 0.000000, 0.189174, 0.000000, + 0.675516, 0.743666, 0.005543, 1.000000;; + } // End of Armature_Bone_013 skin weights + SkinWeights { + "Armature_Bone_003"; + 15; + 627, + 628, + 629, + 630, + 631, + 633, + 634, + 637, + 638, + 641, + 642, + 643, + 644, + 646, + 647; + 0.052897, + 0.473024, + 0.484951, + 0.442607, + 0.133675, + 0.473024, + 0.133675, + 0.133675, + 0.442607, + 0.442607, + 0.484951, + 0.052897, + 0.473024, + 0.052897, + 0.484951; + 0.064360,-0.146379, 0.041037, 0.000000, + 0.320496, 0.130304,-0.037852, 0.000000, + 0.000637, 0.051325, 0.182078, 0.000000, + 0.412448,-0.880622, 0.252553, 1.000000;; + } // End of Armature_Bone_003 skin weights + SkinWeights { + "Armature_Bone_037"; + 24; + 336, + 337, + 338, + 339, + 340, + 341, + 342, + 343, + 344, + 345, + 346, + 347, + 348, + 349, + 350, + 351, + 352, + 353, + 354, + 355, + 356, + 357, + 358, + 359; + 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.165085,-0.000000, 0.000000, 0.000000, + 0.000000,-0.348037,-0.000000, 0.000000, + 0.000000,-0.000000, 0.189174, 0.000000, + -0.363215,-3.117004, 0.005543, 1.000000;; + } // End of Armature_Bone_037 skin weights + SkinWeights { + "Armature_Bone_030"; + 24; + 408, + 409, + 410, + 411, + 412, + 413, + 414, + 415, + 416, + 417, + 418, + 419, + 420, + 421, + 422, + 423, + 424, + 425, + 426, + 427, + 428, + 429, + 430, + 431; + 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.165085, 0.000000, 0.000000, 0.000000, + 0.000000,-0.348037,-0.000000, 0.000000, + 0.000000,-0.000000, 0.189174, 0.000000, + -0.709248,-0.619820, 0.005543, 1.000000;; + } // End of Armature_Bone_030 skin weights + SkinWeights { + "Armature_Bone_038"; + 24; + 360, + 361, + 362, + 363, + 364, + 365, + 366, + 367, + 368, + 369, + 370, + 371, + 372, + 373, + 374, + 375, + 376, + 377, + 378, + 379, + 380, + 381, + 382, + 383; + 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.165085, 0.000000, 0.000000, 0.000000, + 0.000000,-0.348037,-0.000000, 0.000000, + 0.000000,-0.000000, 0.189174, 0.000000, + -0.709249,-3.128153, 0.005543, 1.000000;; + } // End of Armature_Bone_038 skin weights + SkinWeights { + "Armature_Bone_023"; + 24; + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143; + 0.476087, + 0.980288, + 1.000000, + 0.130105, + 0.498086, + 0.478004, + 1.000000, + 0.980912, + 0.476087, + 0.498086, + 0.980912, + 0.980288, + 0.980288, + 0.980912, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.478004, + 0.130105, + 0.498086, + 0.476087, + 0.130105, + 0.478004; + 0.165085, 0.000000, 0.000000, 0.000000, + -0.000000, 0.348037,-0.000000, 0.000000, + -0.000000, 0.000000, 0.189174, 0.000000, + 1.050634,-1.862861, 0.005543, 1.000000;; + } // End of Armature_Bone_023 skin weights + SkinWeights { + "Armature_Bone_036"; + 24; + 528, + 529, + 530, + 531, + 532, + 533, + 534, + 535, + 536, + 537, + 538, + 539, + 540, + 541, + 542, + 543, + 544, + 545, + 546, + 547, + 548, + 549, + 550, + 551; + 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.165085,-0.000000, 0.000000, 0.000000, + 0.000000,-0.348037,-0.000000, 0.000000, + 0.000000,-0.000000, 0.189174, 0.000000, + -1.403467,-1.866385, 0.005543, 1.000000;; + } // End of Armature_Bone_036 skin weights + SkinWeights { + "Armature_Bone_015"; + 0; + 0.164582,-0.012871, 0.000000, 0.000000, + 0.027134, 0.346977,-0.000000, 0.000000, + -0.000000, 0.000000, 0.189174, 0.000000, + 1.003122,-0.055735, 0.005543, 1.000000;; + } // End of Armature_Bone_015 skin weights + SkinWeights { + "Armature_Bone_034"; + 24; + 384, + 385, + 386, + 387, + 388, + 389, + 390, + 391, + 392, + 393, + 394, + 395, + 396, + 397, + 398, + 399, + 400, + 401, + 402, + 403, + 404, + 405, + 406, + 407; + 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.165085, 0.000000, 0.000000, 0.000000, + 0.000000,-0.348037,-0.000000, 0.000000, + 0.000000,-0.000000, 0.189174, 0.000000, + -0.709248,-1.899737, 0.005543, 1.000000;; + } // End of Armature_Bone_034 skin weights + SkinWeights { + "Armature_Bone_020"; + 24; + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191; + 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.165085, 0.000000, 0.000000, 0.000000, + -0.000000, 0.348037,-0.000000, 0.000000, + -0.000000, 0.000000, 0.189174, 0.000000, + 0.697527,-0.587887, 0.005543, 1.000000;; + } // End of Armature_Bone_020 skin weights + SkinWeights { + "Armature_Bone_012"; + 18; + 673, + 674, + 675, + 677, + 678, + 679, + 682, + 683, + 684, + 685, + 686, + 687, + 688, + 689, + 690, + 691, + 694, + 695; + 0.000132, + 0.994826, + 0.037213, + 0.175329, + 0.499827, + 0.046383, + 0.046383, + 0.000132, + 0.000132, + 0.046383, + 0.499827, + 0.994826, + 0.994826, + 0.499827, + 0.175329, + 0.037213, + 0.037213, + 0.175329; + -0.134750,-0.095370,-0.000000, 0.000000, + 0.201062,-0.284084,-0.000000, 0.000000, + 0.000000,-0.000000, 0.189174, 0.000000, + -0.806769,-0.598736, 0.005543, 1.000000;; + } // End of Armature_Bone_012 skin weights + SkinWeights { + "Armature_Bone_007"; + 24; + 648, + 649, + 650, + 651, + 652, + 653, + 654, + 655, + 656, + 657, + 658, + 659, + 660, + 661, + 662, + 663, + 664, + 665, + 666, + 667, + 668, + 669, + 670, + 671; + 0.996040, + 1.000000, + 1.000000, + 0.942805, + 0.545704, + 0.514810, + 0.509983, + 0.508597, + 0.996040, + 0.545704, + 0.508597, + 1.000000, + 1.000000, + 0.508597, + 0.509983, + 1.000000, + 1.000000, + 0.509983, + 0.514810, + 0.942805, + 0.545704, + 0.996040, + 0.942805, + 0.514810; + -0.162855,-0.027040,-0.000016, 0.000000, + -0.001091, 0.006771,-0.347969, 0.000000, + 0.030980,-0.186583,-0.003728, 0.000000, + -1.686205,-0.052699,-0.267670, 1.000000;; + } // End of Armature_Bone_007 skin weights + SkinWeights { + "Armature_Bone_004"; + 18; + 648, + 651, + 652, + 653, + 654, + 655, + 656, + 657, + 658, + 661, + 662, + 665, + 666, + 667, + 668, + 669, + 670, + 671; + 0.003960, + 0.057195, + 0.454296, + 0.485190, + 0.490017, + 0.491403, + 0.003960, + 0.454296, + 0.491403, + 0.491403, + 0.490017, + 0.490017, + 0.485190, + 0.057195, + 0.454296, + 0.003960, + 0.057195, + 0.485190; + -0.057688,-0.147519, 0.046511, 0.000000, + 0.326095,-0.116094, 0.036243, 0.000000, + 0.000175, 0.056822, 0.180439, 0.000000, + -0.329768,-0.903427, 0.290631, 1.000000;; + } // End of Armature_Bone_004 skin weights + SkinWeights { + "Armature_Bone_031"; + 24; + 432, + 433, + 434, + 435, + 436, + 437, + 438, + 439, + 440, + 441, + 442, + 443, + 444, + 445, + 446, + 447, + 448, + 449, + 450, + 451, + 452, + 453, + 454, + 455; + 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.165084,-0.000000, 0.000000, 0.000000, + 0.000000,-0.348037,-0.000000, 0.000000, + 0.000000,-0.000000, 0.189174, 0.000000, + -1.087919,-0.603126, 0.005543, 1.000000;; + } // End of Armature_Bone_031 skin weights + SkinWeights { + "Armature_Bone_011"; + 0; + -0.163402,-0.023506,-0.000000, 0.000000, + 0.049556,-0.344491,-0.000000, 0.000000, + 0.000000,-0.000000, 0.189174, 0.000000, + -0.990957,-0.165427, 0.005543, 1.000000;; + } // End of Armature_Bone_011 skin weights + SkinWeights { + "Armature_Bone_024"; + 24; + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167; + 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.165085, 0.000000, 0.000000, 0.000000, + -0.000000, 0.348037,-0.000000, 0.000000, + -0.000000, 0.000000, 0.189174, 0.000000, + 0.697527,-1.882368, 0.005543, 1.000000;; + } // End of Armature_Bone_024 skin weights + SkinWeights { + "Armature_Bone_017"; + 24; + 240, + 241, + 242, + 243, + 244, + 245, + 246, + 247, + 248, + 249, + 250, + 251, + 252, + 253, + 254, + 255, + 256, + 257, + 258, + 259, + 260, + 261, + 262, + 263; + 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.165085, 0.000000, 0.000000, 0.000000, + -0.000000, 0.348037,-0.000000, 0.000000, + -0.000000, 0.000000, 0.189174, 0.000000, + 0.356768,-0.592857, 0.005543, 1.000000;; + } // End of Armature_Bone_017 skin weights + SkinWeights { + "Armature_Bone_005"; + 24; + 624, + 625, + 626, + 627, + 628, + 629, + 630, + 631, + 632, + 633, + 634, + 635, + 636, + 637, + 638, + 639, + 640, + 641, + 642, + 643, + 644, + 645, + 646, + 647; + 1.000000, + 1.000000, + 1.000000, + 0.947103, + 0.526976, + 0.515049, + 0.557393, + 0.866325, + 1.000000, + 0.526976, + 0.866325, + 1.000000, + 1.000000, + 0.866325, + 0.557393, + 1.000000, + 1.000000, + 0.557393, + 0.515049, + 0.947103, + 0.526976, + 1.000000, + 0.947103, + 0.515049; + -0.163134,-0.025305,-0.000022, 0.000000, + -0.001059, 0.007126,-0.347962, 0.000000, + 0.028992,-0.186899,-0.003916, 0.000000, + -1.690046,-0.064158, 0.266449, 1.000000;; + } // End of Armature_Bone_005 skin weights + SkinWeights { + "Armature_Bone_025"; + 24; + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + 232, + 233, + 234, + 235, + 236, + 237, + 238, + 239; + 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.165085, 0.000000, 0.000000, 0.000000, + -0.000000, 0.348037,-0.000000, 0.000000, + -0.000000, 0.000000, 0.189174, 0.000000, + 0.356768,-3.116160, 0.005543, 1.000000;; + } // End of Armature_Bone_025 skin weights + SkinWeights { + "Armature_Bone_010"; + 0; + -0.147994, 0.073149, 0.000000, 0.000000, + -0.154214,-0.312006,-0.000000, 0.000000, + 0.000000,-0.000000, 0.189174, 0.000000, + -0.910463, 0.424756, 0.005543, 1.000000;; + } // End of Armature_Bone_010 skin weights + SkinWeights { + "Armature_Bone_039"; + 24; + 480, + 481, + 482, + 483, + 484, + 485, + 486, + 487, + 488, + 489, + 490, + 491, + 492, + 493, + 494, + 495, + 496, + 497, + 498, + 499, + 500, + 501, + 502, + 503; + 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.165084,-0.000000, 0.000000, 0.000000, + 0.000000,-0.348037,-0.000000, 0.000000, + 0.000000,-0.000000, 0.189174, 0.000000, + -1.087919,-3.111459, 0.005543, 1.000000;; + } // End of Armature_Bone_039 skin weights + SkinWeights { + "Armature_Bone_001"; + 48; + 696, + 697, + 698, + 699, + 700, + 701, + 702, + 703, + 704, + 705, + 706, + 707, + 708, + 709, + 710, + 711, + 712, + 713, + 714, + 715, + 716, + 717, + 718, + 719, + 720, + 721, + 722, + 723, + 724, + 725, + 726, + 727, + 728, + 729, + 730, + 731, + 732, + 733, + 734, + 735, + 736, + 737, + 738, + 739, + 740, + 741, + 742, + 743; + 0.111799, + 0.081663, + 0.041212, + 0.056513, + 0.379139, + 0.131483, + 0.094456, + 0.353594, + 0.111799, + 0.379139, + 0.353594, + 0.081663, + 0.081663, + 0.353594, + 0.094456, + 0.041212, + 0.041212, + 0.094456, + 0.131483, + 0.056513, + 0.379139, + 0.111799, + 0.056513, + 0.131483, + 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.165085, 0.000000, 0.000000, + -0.348037,-0.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 0.189174, 0.000000, + -0.022642,-0.166288,-0.002131, 1.000000;; + } // End of Armature_Bone_001 skin weights + SkinWeights { + "Armature_Bone_028"; + 24; + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215; + 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.165085, 0.000000, 0.000000, 0.000000, + -0.000000, 0.348037,-0.000000, 0.000000, + -0.000000, 0.000000, 0.189174, 0.000000, + 0.697527,-3.111190, 0.005543, 1.000000;; + } // End of Armature_Bone_028 skin weights + SkinWeights { + "Armature_Bone_006"; + 24; + 600, + 601, + 602, + 603, + 604, + 605, + 606, + 607, + 608, + 609, + 610, + 611, + 612, + 613, + 614, + 615, + 616, + 617, + 618, + 619, + 620, + 621, + 622, + 623; + 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.164872,-0.008372,-0.000000, 0.000000, + 0.000000, 0.000000,-0.348037, 0.000000, + 0.009593,-0.188931, 0.000000, 0.000000, + -1.755953,-0.541359, 0.276091, 1.000000;; + } // End of Armature_Bone_006 skin weights + SkinWeights { + "Armature_Bone_027"; + 42; + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 120, + 121, + 123, + 124, + 125, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 138, + 139, + 140, + 141, + 142, + 143; + 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.523913, + 0.019712, + 0.869895, + 0.501914, + 0.521996, + 0.019088, + 0.523913, + 0.501914, + 0.019088, + 0.019712, + 0.019712, + 0.019088, + 0.521996, + 0.869895, + 0.501914, + 0.523913, + 0.869895, + 0.521996; + 0.165085, 0.000000, 0.000000, 0.000000, + -0.000000, 0.348037,-0.000000, 0.000000, + -0.000000, 0.000000, 0.189174, 0.000000, + 1.050634,-3.091683, 0.005543, 1.000000;; + } // End of Armature_Bone_027 skin weights + SkinWeights { + "Armature_Bone_019"; + 24; + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119; + 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.165085, 0.000000, 0.000000, 0.000000, + -0.000000, 0.348037,-0.000000, 0.000000, + -0.000000, 0.000000, 0.189174, 0.000000, + 1.050634,-0.568380, 0.005543, 1.000000;; + } // End of Armature_Bone_019 skin weights + SkinWeights { + "Armature_Bone_021"; + 24; + 264, + 265, + 266, + 267, + 268, + 269, + 270, + 271, + 272, + 273, + 274, + 275, + 276, + 277, + 278, + 279, + 280, + 281, + 282, + 283, + 284, + 285, + 286, + 287; + 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.165085, 0.000000, 0.000000, 0.000000, + -0.000000, 0.348037,-0.000000, 0.000000, + -0.000000, 0.000000, 0.189174, 0.000000, + 0.356768,-1.887338, 0.005543, 1.000000;; + } // End of Armature_Bone_021 skin weights + SkinWeights { + "Armature_Bone_018"; + 24; + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47; + 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.165085,-0.000000, 0.000000, 0.000000, + 0.000000, 0.348037,-0.000000, 0.000000, + 0.000000, 0.000000, 0.189174, 0.000000, + 1.362284,-0.556315, 0.005543, 1.000000;; + } // End of Armature_Bone_018 skin weights + SkinWeights { + "Armature_Bone_032"; + 24; + 552, + 553, + 554, + 555, + 556, + 557, + 558, + 559, + 560, + 561, + 562, + 563, + 564, + 565, + 566, + 567, + 568, + 569, + 570, + 571, + 572, + 573, + 574, + 575; + 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.165085,-0.000000, 0.000000, 0.000000, + 0.000000,-0.348037,-0.000000, 0.000000, + 0.000000,-0.000000, 0.189174, 0.000000, + -1.403467,-0.586469, 0.005543, 1.000000;; + } // End of Armature_Bone_032 skin weights + SkinWeights { + "Armature_Bone_002"; + 0; + 0.000000,-0.165085, 0.000000, 0.000000, + 0.348037, 0.000000,-0.000000, 0.000000, + 0.000000,-0.000000, 0.189174, 0.000000, + 0.022642,-0.177981, 0.005543, 1.000000;; + } // End of Armature_Bone_002 skin weights + SkinWeights { + "Armature_Bone_014"; + 15; + 674, + 675, + 676, + 677, + 678, + 681, + 686, + 687, + 688, + 689, + 690, + 691, + 692, + 694, + 695; + 0.004078, + 0.931183, + 0.030704, + 0.478693, + 0.161453, + 0.030704, + 0.161453, + 0.004078, + 0.004078, + 0.161453, + 0.478693, + 0.931183, + 0.030704, + 0.931183, + 0.478693; + 0.140423,-0.086800, 0.000000, 0.000000, + 0.182994, 0.296045,-0.000000, 0.000000, + 0.000000, 0.000000, 0.189174, 0.000000, + 0.866275,-0.508851, 0.005543, 1.000000;; + } // End of Armature_Bone_014 skin weights + SkinWeights { + "Armature_Bone_033"; + 24; + 312, + 313, + 314, + 315, + 316, + 317, + 318, + 319, + 320, + 321, + 322, + 323, + 324, + 325, + 326, + 327, + 328, + 329, + 330, + 331, + 332, + 333, + 334, + 335; + 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.165085,-0.000000, 0.000000, 0.000000, + 0.000000,-0.348037,-0.000000, 0.000000, + 0.000000,-0.000000, 0.189174, 0.000000, + -0.363215,-1.888587, 0.005543, 1.000000;; + } // End of Armature_Bone_033 skin weights + SkinWeights { + "Armature_Bone_040"; + 24; + 504, + 505, + 506, + 507, + 508, + 509, + 510, + 511, + 512, + 513, + 514, + 515, + 516, + 517, + 518, + 519, + 520, + 521, + 522, + 523, + 524, + 525, + 526, + 527; + 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.165085,-0.000000, 0.000000, 0.000000, + 0.000000,-0.348037,-0.000000, 0.000000, + 0.000000,-0.000000, 0.189174, 0.000000, + -1.403467,-3.094802, 0.005543, 1.000000;; + } // End of Armature_Bone_040 skin weights + SkinWeights { + "Armature_Bone_016"; + 0; + 0.147499, 0.074142,-0.000000, 0.000000, + -0.156308, 0.310962,-0.000000, 0.000000, + -0.000000, 0.000000, 0.189174, 0.000000, + 0.887251, 0.471325, 0.005543, 1.000000;; + } // End of Armature_Bone_016 skin weights + SkinWeights { + "Armature_Bone_022"; + 24; + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23; + 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.165085,-0.000000, 0.000000, 0.000000, + 0.000000, 0.348037,-0.000000, 0.000000, + 0.000000, 0.000000, 0.189174, 0.000000, + 1.362284,-1.850797, 0.005543, 1.000000;; + } // End of Armature_Bone_022 skin weights + SkinWeights { + "Armature_Bone_009"; + 18; + 673, + 674, + 676, + 677, + 678, + 679, + 681, + 682, + 683, + 684, + 685, + 686, + 687, + 688, + 689, + 690, + 692, + 695; + 0.979223, + 0.001095, + 0.092727, + 0.095615, + 0.235740, + 0.845827, + 0.092727, + 0.845827, + 0.979223, + 0.979223, + 0.845827, + 0.235740, + 0.001095, + 0.001095, + 0.235740, + 0.095615, + 0.092727, + 0.095615; + -0.111372, 0.121857, 0.000000, 0.000000, + -0.256903,-0.234799,-0.000000, 0.000000, + 0.000000,-0.000000, 0.189174, 0.000000, + -0.694329, 0.726133, 0.005543, 1.000000;; + } // End of Armature_Bone_009 skin weights + SkinWeights { + "Armature_Bone_026"; + 24; + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71; + 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.165085,-0.000000, 0.000000, 0.000000, + 0.000000, 0.348037,-0.000000, 0.000000, + 0.000000, 0.000000, 0.189174, 0.000000, + 1.362284,-3.079619, 0.005543, 1.000000;; + } // End of Armature_Bone_026 skin weights + SkinWeights { + "Armature_Bone"; + 24; + 696, + 697, + 698, + 699, + 700, + 701, + 702, + 703, + 704, + 705, + 706, + 707, + 708, + 709, + 710, + 711, + 712, + 713, + 714, + 715, + 716, + 717, + 718, + 719; + 0.888201, + 0.918337, + 0.958788, + 0.943487, + 0.620861, + 0.868517, + 0.905544, + 0.646406, + 0.888201, + 0.620861, + 0.646406, + 0.918337, + 0.918337, + 0.646406, + 0.905544, + 0.958788, + 0.958788, + 0.905544, + 0.868517, + 0.943487, + 0.620861, + 0.888201, + 0.943487, + 0.868517; + 0.003679,-0.165043, 0.000000, 0.000000, + -0.000000, 0.000000, 0.348037, 0.000000, + -0.189127,-0.004216,-0.000000, 0.000000, + -0.001575, 0.166294, 0.022642, 1.000000;; + } // End of Armature_Bone skin weights + SkinWeights { + "Armature_Bone_035"; + 24; + 456, + 457, + 458, + 459, + 460, + 461, + 462, + 463, + 464, + 465, + 466, + 467, + 468, + 469, + 470, + 471, + 472, + 473, + 474, + 475, + 476, + 477, + 478, + 479; + 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.165084,-0.000000, 0.000000, 0.000000, + 0.000000,-0.348037,-0.000000, 0.000000, + 0.000000,-0.000000, 0.189174, 0.000000, + -1.087919,-1.883042, 0.005543, 1.000000;; + } // End of Armature_Bone_035 skin weights + SkinWeights { + "Armature_Bone_029"; + 24; + 288, + 289, + 290, + 291, + 292, + 293, + 294, + 295, + 296, + 297, + 298, + 299, + 300, + 301, + 302, + 303, + 304, + 305, + 306, + 307, + 308, + 309, + 310, + 311; + 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.165085,-0.000000, 0.000000, 0.000000, + 0.000000,-0.348037,-0.000000, 0.000000, + 0.000000,-0.000000, 0.189174, 0.000000, + -0.363215,-0.608671, 0.005543, 1.000000;; + } // End of Armature_Bone_029 skin weights + SkinWeights { + "Armature_Bone_008"; + 24; + 576, + 577, + 578, + 579, + 580, + 581, + 582, + 583, + 584, + 585, + 586, + 587, + 588, + 589, + 590, + 591, + 592, + 593, + 594, + 595, + 596, + 597, + 598, + 599; + 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.164818,-0.009368,-0.000000, 0.000000, + 0.000000, 0.000000,-0.348037, 0.000000, + 0.010735,-0.188870, 0.000000, 0.000000, + -1.754168,-0.545000,-0.258790, 1.000000;; + } // End of Armature_Bone_008 skin weights + } // End of Cube_001 mesh + } // End of Cube_001 + } // End of Armature +} // End of Root +AnimationSet Global { + Animation { + {Armature} + AnimationKey { // Rotation + 0; + 250; + 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;;, + 189;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 190;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 191;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 192;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 193;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 194;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 195;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 196;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 197;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 198;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 199;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 200;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 201;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 202;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 203;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 204;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 205;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 206;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 207;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 208;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 209;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 210;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 211;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 212;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 213;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 214;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 215;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 216;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 217;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 218;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 219;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 220;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 221;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 222;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 223;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 224;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 225;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 226;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 227;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 228;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 229;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 230;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 231;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 232;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 233;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 234;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 235;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 236;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 237;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 238;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 239;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 240;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 241;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 242;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 243;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 244;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 245;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 246;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 247;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 248;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 249;4;-1.000000, 0.000000, 0.000000, 0.000000;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3;-0.672467,-1.528196,-0.828771;;, + 1;3;-0.672467,-1.528196,-0.828771;;, + 2;3;-0.672467,-1.528196,-0.828771;;, + 3;3;-0.672467,-1.528196,-0.828771;;, + 4;3;-0.672467,-1.528196,-0.828771;;, + 5;3;-0.672467,-1.528196,-0.828771;;, + 6;3;-0.672467,-1.528196,-0.828771;;, + 7;3;-0.672467,-1.528196,-0.828771;;, + 8;3;-0.672467,-1.528196,-0.828771;;, + 9;3;-0.672467,-1.528196,-0.828771;;, + 10;3;-0.672467,-1.528196,-0.828771;;, + 11;3;-0.672467,-1.528196,-0.828771;;, + 12;3;-0.672467,-1.528196,-0.828771;;, + 13;3;-0.672467,-1.528196,-0.828771;;, + 14;3;-0.672467,-1.528196,-0.828771;;, + 15;3;-0.672467,-1.528196,-0.828771;;, + 16;3;-0.672467,-1.528196,-0.828771;;, + 17;3;-0.672467,-1.528196,-0.828771;;, + 18;3;-0.672467,-1.528196,-0.828771;;, + 19;3;-0.672467,-1.528196,-0.828771;;, + 20;3;-0.672467,-1.528196,-0.828771;;, + 21;3;-0.672467,-1.528196,-0.828771;;, + 22;3;-0.672467,-1.528196,-0.828771;;, + 23;3;-0.672467,-1.528196,-0.828771;;, + 24;3;-0.672467,-1.528196,-0.828771;;, + 25;3;-0.672467,-1.528196,-0.828771;;, + 26;3;-0.672467,-1.528196,-0.828771;;, + 27;3;-0.672467,-1.528196,-0.828771;;, + 28;3;-0.672467,-1.528196,-0.828771;;, + 29;3;-0.672467,-1.528196,-0.828771;;, + 30;3;-0.672467,-1.528196,-0.828771;;, + 31;3;-0.672467,-1.528196,-0.828771;;, + 32;3;-0.672467,-1.528196,-0.828771;;, + 33;3;-0.672467,-1.528196,-0.828771;;, + 34;3;-0.672467,-1.528196,-0.828771;;, + 35;3;-0.672467,-1.528196,-0.828771;;, + 36;3;-0.672467,-1.528196,-0.828771;;, + 37;3;-0.672467,-1.528196,-0.828771;;, + 38;3;-0.672467,-1.528196,-0.828771;;, + 39;3;-0.672467,-1.528196,-0.828771;;, + 40;3;-0.672467,-1.528196,-0.828771;;, + 41;3;-0.672467,-1.528196,-0.828771;;, + 42;3;-0.672467,-1.528196,-0.828771;;, + 43;3;-0.672467,-1.528196,-0.828771;;, + 44;3;-0.672467,-1.528196,-0.828771;;, + 45;3;-0.672467,-1.528196,-0.828771;;, + 46;3;-0.672467,-1.528196,-0.828771;;, + 47;3;-0.672467,-1.528196,-0.828771;;, + 48;3;-0.672467,-1.528196,-0.828771;;, + 49;3;-0.672467,-1.528196,-0.828771;;, + 50;3;-0.672467,-1.528196,-0.828771;;, + 51;3;-0.672467,-1.528196,-0.828771;;, + 52;3;-0.672467,-1.528196,-0.828771;;, + 53;3;-0.672467,-1.528196,-0.828771;;, + 54;3;-0.672467,-1.528196,-0.828771;;, + 55;3;-0.672467,-1.528196,-0.828771;;, + 56;3;-0.672467,-1.528196,-0.828771;;, + 57;3;-0.672467,-1.528196,-0.828771;;, + 58;3;-0.672467,-1.528196,-0.828771;;, + 59;3;-0.672467,-1.528196,-0.828771;;, + 60;3;-0.672467,-1.528196,-0.828771;;, + 61;3;-0.672467,-1.528196,-0.828771;;, + 62;3;-0.672467,-1.528196,-0.828771;;, + 63;3;-0.672467,-1.528196,-0.828771;;, + 64;3;-0.672467,-1.528196,-0.828771;;, + 65;3;-0.672467,-1.528196,-0.828771;;, + 66;3;-0.672467,-1.528196,-0.828771;;, + 67;3;-0.672467,-1.528196,-0.828771;;, + 68;3;-0.672467,-1.528196,-0.828771;;, + 69;3;-0.672467,-1.528196,-0.828771;;, + 70;3;-0.672467,-1.528196,-0.828771;;, + 71;3;-0.672467,-1.528196,-0.828771;;, + 72;3;-0.672467,-1.528196,-0.828771;;, + 73;3;-0.672467,-1.528196,-0.828771;;, + 74;3;-0.672467,-1.528196,-0.828771;;, + 75;3;-0.672467,-1.528196,-0.828771;;, + 76;3;-0.672467,-1.528196,-0.828771;;, + 77;3;-0.672467,-1.528196,-0.828771;;, + 78;3;-0.672467,-1.528196,-0.828771;;, + 79;3;-0.672467,-1.528196,-0.828771;;, + 80;3;-0.672467,-1.528196,-0.828771;;, + 81;3;-0.672467,-1.528196,-0.828771;;, + 82;3;-0.672467,-1.528196,-0.828771;;, + 83;3;-0.672467,-1.528196,-0.828771;;, + 84;3;-0.672467,-1.528196,-0.828771;;, + 85;3;-0.672467,-1.528196,-0.828771;;, + 86;3;-0.672467,-1.528196,-0.828771;;, + 87;3;-0.672467,-1.528196,-0.828771;;, + 88;3;-0.672467,-1.528196,-0.828771;;, + 89;3;-0.672467,-1.528196,-0.828771;;, + 90;3;-0.672467,-1.528196,-0.828771;;, + 91;3;-0.672467,-1.528196,-0.828771;;, + 92;3;-0.672467,-1.528196,-0.828771;;, + 93;3;-0.672467,-1.528196,-0.828771;;, + 94;3;-0.672467,-1.528196,-0.828771;;, + 95;3;-0.672467,-1.528196,-0.828771;;, + 96;3;-0.672467,-1.528196,-0.828771;;, + 97;3;-0.672467,-1.528196,-0.828771;;, + 98;3;-0.672467,-1.528196,-0.828771;;, + 99;3;-0.672467,-1.528196,-0.828771;;, + 100;3;-0.672467,-1.528196,-0.828771;;, + 101;3;-0.672467,-1.528196,-0.828771;;, + 102;3;-0.672467,-1.528196,-0.828771;;, + 103;3;-0.672467,-1.528196,-0.828771;;, + 104;3;-0.672467,-1.528196,-0.828771;;, + 105;3;-0.672467,-1.528196,-0.828771;;, + 106;3;-0.672467,-1.528196,-0.828771;;, + 107;3;-0.672467,-1.528196,-0.828771;;, + 108;3;-0.672467,-1.528196,-0.828771;;, + 109;3;-0.672467,-1.528196,-0.828771;;, + 110;3;-0.672467,-1.528196,-0.828771;;, + 111;3;-0.672467,-1.528196,-0.828771;;, + 112;3;-0.672467,-1.528196,-0.828771;;, + 113;3;-0.672467,-1.528196,-0.828771;;, + 114;3;-0.672467,-1.528196,-0.828771;;, + 115;3;-0.672467,-1.528196,-0.828771;;, + 116;3;-0.672467,-1.528196,-0.828771;;, + 117;3;-0.672467,-1.528196,-0.828771;;, + 118;3;-0.672467,-1.528196,-0.828771;;, + 119;3;-0.672467,-1.528196,-0.828771;;, + 120;3;-0.672467,-1.528196,-0.828771;;, + 121;3;-0.672467,-1.528196,-0.828771;;, + 122;3;-0.672467,-1.528196,-0.828771;;, + 123;3;-0.672467,-1.528196,-0.828771;;, + 124;3;-0.672467,-1.528196,-0.828771;;, + 125;3;-0.672467,-1.528196,-0.828771;;, + 126;3;-0.672467,-1.528196,-0.828771;;, + 127;3;-0.672467,-1.528196,-0.828771;;, + 128;3;-0.672467,-1.528196,-0.828771;;, + 129;3;-0.672467,-1.528196,-0.828771;;, + 130;3;-0.672467,-1.528196,-0.828771;;, + 131;3;-0.672467,-1.528196,-0.828771;;, + 132;3;-0.672467,-1.528196,-0.828771;;, + 133;3;-0.672467,-1.528196,-0.828771;;, + 134;3;-0.672467,-1.528196,-0.828771;;, + 135;3;-0.672467,-1.528196,-0.828771;;, + 136;3;-0.672467,-1.528196,-0.828771;;, + 137;3;-0.672467,-1.528196,-0.828771;;, + 138;3;-0.672467,-1.528196,-0.828771;;, + 139;3;-0.672467,-1.528196,-0.828771;;, + 140;3;-0.672467,-1.528196,-0.828771;;, + 141;3;-0.672467,-1.528196,-0.828771;;, + 142;3;-0.672467,-1.528196,-0.828771;;, + 143;3;-0.672467,-1.528196,-0.828771;;, + 144;3;-0.672467,-1.528196,-0.828771;;, + 145;3;-0.672467,-1.528196,-0.828771;;, + 146;3;-0.672467,-1.528196,-0.828771;;, + 147;3;-0.672467,-1.528196,-0.828771;;, + 148;3;-0.672467,-1.528196,-0.828771;;, + 149;3;-0.672467,-1.528196,-0.828771;;, + 150;3;-0.672467,-1.528196,-0.828771;;, + 151;3;-0.672467,-1.528196,-0.828771;;, + 152;3;-0.672467,-1.528196,-0.828771;;, + 153;3;-0.672467,-1.528196,-0.828771;;, + 154;3;-0.672467,-1.528196,-0.828771;;, + 155;3;-0.672467,-1.528196,-0.828771;;, + 156;3;-0.672467,-1.528196,-0.828771;;, + 157;3;-0.672467,-1.528196,-0.828771;;, + 158;3;-0.672467,-1.528196,-0.828771;;, + 159;3;-0.672467,-1.528196,-0.828771;;, + 160;3;-0.672467,-1.528196,-0.828771;;, + 161;3;-0.672467,-1.528196,-0.828771;;, + 162;3;-0.672467,-1.528196,-0.828771;;, + 163;3;-0.672467,-1.528196,-0.828771;;, + 164;3;-0.672467,-1.528196,-0.828771;;, + 165;3;-0.672467,-1.528196,-0.828771;;, + 166;3;-0.672467,-1.528196,-0.828771;;, + 167;3;-0.672467,-1.528196,-0.828771;;, + 168;3;-0.672467,-1.528196,-0.828771;;, + 169;3;-0.672467,-1.528196,-0.828771;;, + 170;3;-0.672467,-1.528196,-0.828771;;, + 171;3;-0.672467,-1.528196,-0.828771;;, + 172;3;-0.672467,-1.528196,-0.828771;;, + 173;3;-0.672467,-1.528196,-0.828771;;, + 174;3;-0.672467,-1.528196,-0.828771;;, + 175;3;-0.672467,-1.528196,-0.828771;;, + 176;3;-0.672467,-1.528196,-0.828771;;, + 177;3;-0.672467,-1.528196,-0.828771;;, + 178;3;-0.672467,-1.528196,-0.828771;;, + 179;3;-0.672467,-1.528196,-0.828771;;, + 180;3;-0.672467,-1.528196,-0.828771;;, + 181;3;-0.672467,-1.528196,-0.828771;;, + 182;3;-0.672467,-1.528196,-0.828771;;, + 183;3;-0.672467,-1.528196,-0.828771;;, + 184;3;-0.672467,-1.528196,-0.828771;;, + 185;3;-0.672467,-1.528196,-0.828771;;, + 186;3;-0.672467,-1.528196,-0.828771;;, + 187;3;-0.672467,-1.528196,-0.828771;;, + 188;3;-0.672467,-1.528196,-0.828771;;, + 189;3;-0.672467,-1.528196,-0.828771;;, + 190;3;-0.672467,-1.528196,-0.828771;;, + 191;3;-0.672467,-1.528196,-0.828771;;, + 192;3;-0.672467,-1.528196,-0.828771;;, + 193;3;-0.672467,-1.528196,-0.828771;;, + 194;3;-0.672467,-1.528196,-0.828771;;, + 195;3;-0.672467,-1.528196,-0.828771;;, + 196;3;-0.672467,-1.528196,-0.828771;;, + 197;3;-0.672467,-1.528196,-0.828771;;, + 198;3;-0.672467,-1.528196,-0.828771;;, + 199;3;-0.672467,-1.528196,-0.828771;;, + 200;3;-0.672467,-1.528196,-0.828771;;, + 201;3;-0.672467,-1.528196,-0.828771;;, + 202;3;-0.672467,-1.528196,-0.828771;;, + 203;3;-0.672467,-1.528196,-0.828771;;, + 204;3;-0.672467,-1.528196,-0.828771;;, + 205;3;-0.672467,-1.528196,-0.828771;;, + 206;3;-0.672467,-1.528196,-0.828771;;, + 207;3;-0.672467,-1.528196,-0.828771;;, + 208;3;-0.672467,-1.528196,-0.828771;;, + 209;3;-0.672467,-1.528196,-0.828771;;, + 210;3;-0.672467,-1.528196,-0.828771;;, + 211;3;-0.672467,-1.528196,-0.828771;;, + 212;3;-0.672467,-1.528196,-0.828771;;, + 213;3;-0.672467,-1.528196,-0.828771;;, + 214;3;-0.672467,-1.528196,-0.828771;;, + 215;3;-0.672467,-1.528196,-0.828771;;, + 216;3;-0.672467,-1.528196,-0.828771;;, + 217;3;-0.672467,-1.528196,-0.828771;;, + 218;3;-0.672467,-1.528196,-0.828771;;, + 219;3;-0.672467,-1.528196,-0.828771;;, + 220;3;-0.672467,-1.528196,-0.828771;;, + 221;3;-0.672467,-1.528196,-0.828771;;, + 222;3;-0.672467,-1.528196,-0.828771;;, + 223;3;-0.672467,-1.528196,-0.828771;;, + 224;3;-0.672467,-1.528196,-0.828771;;, + 225;3;-0.672467,-1.528196,-0.828771;;, + 226;3;-0.672467,-1.528196,-0.828771;;, + 227;3;-0.672467,-1.528196,-0.828771;;, + 228;3;-0.672467,-1.528196,-0.828771;;, + 229;3;-0.672467,-1.528196,-0.828771;;, + 230;3;-0.672467,-1.528196,-0.828771;;, + 231;3;-0.672467,-1.528196,-0.828771;;, + 232;3;-0.672467,-1.528196,-0.828771;;, + 233;3;-0.672467,-1.528196,-0.828771;;, + 234;3;-0.672467,-1.528196,-0.828771;;, + 235;3;-0.672467,-1.528196,-0.828771;;, + 236;3;-0.672467,-1.528196,-0.828771;;, + 237;3;-0.672467,-1.528196,-0.828771;;, + 238;3;-0.672467,-1.528196,-0.828771;;, + 239;3;-0.672467,-1.528196,-0.828771;;, + 240;3;-0.672467,-1.528196,-0.828771;;, + 241;3;-0.672467,-1.528196,-0.828771;;, + 242;3;-0.672467,-1.528196,-0.828771;;, + 243;3;-0.672467,-1.528196,-0.828771;;, + 244;3;-0.672467,-1.528196,-0.828771;;, + 245;3;-0.672467,-1.528196,-0.828771;;, + 246;3;-0.672467,-1.528196,-0.828771;;, + 247;3;-0.672467,-1.528196,-0.828771;;, + 248;3;-0.672467,-1.528196,-0.828771;;, + 249;3;-0.672467,-1.528196,-0.828771;;; + } + } + Animation { + {Armature_Bone} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 1;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 2;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 3;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 4;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 5;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 6;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 7;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 8;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 9;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 10;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 11;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 12;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 13;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 14;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 15;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 16;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 17;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 18;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 19;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 20;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 21;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 22;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 23;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 24;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 25;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 26;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 27;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 28;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 29;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 30;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 31;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 32;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 33;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 34;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 35;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 36;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 37;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 38;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 39;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 40;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 41;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 42;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 43;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 44;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 45;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 46;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 47;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 48;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 49;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 50;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 51;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 52;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 53;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 54;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 55;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 56;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 57;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 58;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 59;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 60;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 61;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 62;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 63;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 64;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 65;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 66;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 67;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 68;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 69;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 70;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 71;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 72;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 73;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 74;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 75;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 76;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 77;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 78;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 79;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 80;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 81;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 82;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 83;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 84;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 85;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 86;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 87;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 88;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 89;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 90;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 91;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 92;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 93;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 94;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 95;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 96;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 97;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 98;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 99;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 100;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 101;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 102;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 103;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 104;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 105;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 106;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 107;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 108;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 109;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 110;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 111;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 112;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 113;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 114;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 115;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 116;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 117;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 118;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 119;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 120;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 121;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 122;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 123;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 124;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 125;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 126;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 127;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 128;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 129;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 130;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 131;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 132;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 133;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 134;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 135;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 136;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 137;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 138;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 139;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 140;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 141;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 142;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 143;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 144;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 145;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 146;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 147;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 148;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 149;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 150;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 151;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 152;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 153;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 154;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 155;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 156;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 157;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 158;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 159;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 160;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 161;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 162;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 163;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 164;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 165;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 166;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 167;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 168;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 169;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 170;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 171;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 172;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 173;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 174;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 175;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 176;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 177;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 178;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 179;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 180;4;-0.498303, 0.498304, 0.499305,-0.499305;;, + 181;4;-0.510060, 0.510060, 0.480538,-0.480538;;, + 182;4;-0.529175, 0.529175, 0.450023,-0.450023;;, + 183;4;-0.554177, 0.554177, 0.410112,-0.410111;;, + 184;4;-0.582500, 0.582501, 0.364898,-0.364898;;, + 185;4;-0.610824, 0.610824, 0.319685,-0.319685;;, + 186;4;-0.635826, 0.635826, 0.279773,-0.279773;;, + 187;4;-0.654941, 0.654941, 0.249259,-0.249258;;, + 188;4;-0.666697, 0.666698, 0.230492,-0.230491;;, + 189;4;-0.670604, 0.670604, 0.224256,-0.224255;;, + 190;4;-0.670604, 0.670604, 0.224256,-0.224255;;, + 191;4;-0.670604, 0.670604, 0.224256,-0.224255;;, + 192;4;-0.670604, 0.670604, 0.224256,-0.224255;;, + 193;4;-0.670604, 0.670604, 0.224256,-0.224255;;, + 194;4;-0.670604, 0.670604, 0.224256,-0.224255;;, + 195;4;-0.654941, 0.654941, 0.249259,-0.249258;;, + 196;4;-0.610824, 0.610824, 0.319685,-0.319685;;, + 197;4;-0.554177, 0.554177, 0.410112,-0.410111;;, + 198;4;-0.510060, 0.510060, 0.480538,-0.480538;;, + 199;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 200;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 201;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 202;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 203;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 204;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 205;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 206;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 207;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 208;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 209;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 210;4;-0.498922, 0.498923, 0.500618,-0.500617;;, + 211;4;-0.511670, 0.511670, 0.486750,-0.486749;;, + 212;4;-0.528037, 0.528037, 0.468943,-0.468943;;, + 213;4;-0.540784, 0.540785, 0.455076,-0.455075;;, + 214;4;-0.545310, 0.545310, 0.450152,-0.450152;;, + 215;4;-0.543869, 0.543869, 0.451720,-0.451720;;, + 216;4;-0.539451, 0.539451, 0.456527,-0.456526;;, + 217;4;-0.532813, 0.532814, 0.463748,-0.463747;;, + 218;4;-0.525767, 0.525767, 0.471414,-0.471413;;, + 219;4;-0.519853, 0.519854, 0.477847,-0.477846;;, + 220;4;-0.513940, 0.513941, 0.484280,-0.484279;;, + 221;4;-0.506894, 0.506894, 0.491946,-0.491945;;, + 222;4;-0.500256, 0.500256, 0.499167,-0.499166;;, + 223;4;-0.495838, 0.495838, 0.503973,-0.503973;;, + 224;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 225;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 226;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 227;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 228;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 229;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 230;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 231;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 232;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 233;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 234;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 235;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 236;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 237;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 238;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 239;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 240;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 241;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 242;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 243;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 244;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 245;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 246;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 247;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 248;4;-0.494397, 0.494397, 0.505541,-0.505541;;, + 249;4;-0.494397, 0.494397, 0.505541,-0.505541;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3; 0.506179, 1.550838, 1.183012;;, + 1;3; 0.506179, 1.550838, 1.183012;;, + 2;3; 0.506179, 1.550838, 1.183012;;, + 3;3; 0.506179, 1.550838, 1.183012;;, + 4;3; 0.506179, 1.550838, 1.183012;;, + 5;3; 0.506179, 1.550838, 1.183012;;, + 6;3; 0.506179, 1.550838, 1.183012;;, + 7;3; 0.506179, 1.550838, 1.183012;;, + 8;3; 0.506179, 1.550838, 1.183012;;, + 9;3; 0.506179, 1.550838, 1.183012;;, + 10;3; 0.506179, 1.550838, 1.183012;;, + 11;3; 0.506179, 1.550838, 1.183012;;, + 12;3; 0.506179, 1.550838, 1.183012;;, + 13;3; 0.506179, 1.550838, 1.183012;;, + 14;3; 0.506179, 1.550838, 1.183012;;, + 15;3; 0.506179, 1.550838, 1.183012;;, + 16;3; 0.506179, 1.550838, 1.183012;;, + 17;3; 0.506179, 1.550838, 1.183012;;, + 18;3; 0.506179, 1.550838, 1.183012;;, + 19;3; 0.506179, 1.550838, 1.183012;;, + 20;3; 0.506179, 1.550838, 1.183012;;, + 21;3; 0.506179, 1.550838, 1.183012;;, + 22;3; 0.506179, 1.550838, 1.183012;;, + 23;3; 0.506179, 1.550838, 1.183012;;, + 24;3; 0.506179, 1.550838, 1.183012;;, + 25;3; 0.506179, 1.550838, 1.183012;;, + 26;3; 0.506179, 1.550838, 1.183012;;, + 27;3; 0.506179, 1.550838, 1.183012;;, + 28;3; 0.506179, 1.550838, 1.183012;;, + 29;3; 0.506179, 1.550838, 1.183012;;, + 30;3; 0.506179, 1.550838, 1.183012;;, + 31;3; 0.506179, 1.550838, 1.183012;;, + 32;3; 0.506179, 1.550838, 1.183012;;, + 33;3; 0.506179, 1.550838, 1.183012;;, + 34;3; 0.506179, 1.550838, 1.183012;;, + 35;3; 0.506179, 1.550838, 1.183012;;, + 36;3; 0.506179, 1.550838, 1.183012;;, + 37;3; 0.506179, 1.550838, 1.183012;;, + 38;3; 0.506179, 1.550838, 1.183012;;, + 39;3; 0.506179, 1.550838, 1.183012;;, + 40;3; 0.506179, 1.550838, 1.183012;;, + 41;3; 0.506179, 1.550838, 1.183012;;, + 42;3; 0.506179, 1.550838, 1.183012;;, + 43;3; 0.506179, 1.550838, 1.183012;;, + 44;3; 0.506179, 1.550838, 1.183012;;, + 45;3; 0.506179, 1.550838, 1.183012;;, + 46;3; 0.506179, 1.550838, 1.183012;;, + 47;3; 0.506179, 1.550838, 1.183012;;, + 48;3; 0.506179, 1.550838, 1.183012;;, + 49;3; 0.506179, 1.550838, 1.183012;;, + 50;3; 0.506179, 1.550838, 1.183012;;, + 51;3; 0.506179, 1.550838, 1.183012;;, + 52;3; 0.506179, 1.550838, 1.183012;;, + 53;3; 0.506179, 1.550838, 1.183012;;, + 54;3; 0.506179, 1.550838, 1.183012;;, + 55;3; 0.506179, 1.550838, 1.183012;;, + 56;3; 0.506179, 1.550838, 1.183012;;, + 57;3; 0.506179, 1.550838, 1.183012;;, + 58;3; 0.506179, 1.550838, 1.183012;;, + 59;3; 0.506179, 1.550838, 1.183012;;, + 60;3; 0.506179, 1.550838, 1.183012;;, + 61;3; 0.506179, 1.550838, 1.183012;;, + 62;3; 0.506179, 1.550838, 1.183012;;, + 63;3; 0.506179, 1.550838, 1.183012;;, + 64;3; 0.506179, 1.550838, 1.183012;;, + 65;3; 0.506179, 1.550838, 1.183012;;, + 66;3; 0.506179, 1.550838, 1.183012;;, + 67;3; 0.506179, 1.550838, 1.183012;;, + 68;3; 0.506179, 1.550838, 1.183012;;, + 69;3; 0.506179, 1.550838, 1.183012;;, + 70;3; 0.506179, 1.550838, 1.183012;;, + 71;3; 0.506179, 1.550838, 1.183012;;, + 72;3; 0.506179, 1.550838, 1.183012;;, + 73;3; 0.506179, 1.550838, 1.183012;;, + 74;3; 0.506179, 1.550838, 1.183012;;, + 75;3; 0.506179, 1.550838, 1.183012;;, + 76;3; 0.506179, 1.550838, 1.183012;;, + 77;3; 0.506179, 1.550838, 1.183012;;, + 78;3; 0.506179, 1.550838, 1.183012;;, + 79;3; 0.506179, 1.550838, 1.183012;;, + 80;3; 0.506179, 1.550838, 1.183012;;, + 81;3; 0.506179, 1.550838, 1.183012;;, + 82;3; 0.506179, 1.550838, 1.183012;;, + 83;3; 0.506179, 1.550838, 1.183012;;, + 84;3; 0.506179, 1.550838, 1.183012;;, + 85;3; 0.506179, 1.550838, 1.183012;;, + 86;3; 0.506179, 1.550838, 1.183012;;, + 87;3; 0.506179, 1.550838, 1.183012;;, + 88;3; 0.506179, 1.550838, 1.183012;;, + 89;3; 0.506179, 1.550838, 1.183012;;, + 90;3; 0.506179, 1.550838, 1.183012;;, + 91;3; 0.506179, 1.550838, 1.183012;;, + 92;3; 0.506179, 1.550838, 1.183012;;, + 93;3; 0.506179, 1.550838, 1.183012;;, + 94;3; 0.506179, 1.550838, 1.183012;;, + 95;3; 0.506179, 1.550838, 1.183012;;, + 96;3; 0.506179, 1.550838, 1.183012;;, + 97;3; 0.506179, 1.550838, 1.183012;;, + 98;3; 0.506179, 1.550838, 1.183012;;, + 99;3; 0.506179, 1.550838, 1.183012;;, + 100;3; 0.506179, 1.550838, 1.183012;;, + 101;3; 0.506179, 1.550838, 1.183012;;, + 102;3; 0.506179, 1.550838, 1.183012;;, + 103;3; 0.506179, 1.550838, 1.183012;;, + 104;3; 0.506179, 1.550838, 1.183012;;, + 105;3; 0.506179, 1.550838, 1.183012;;, + 106;3; 0.506179, 1.550838, 1.183012;;, + 107;3; 0.506179, 1.550838, 1.183012;;, + 108;3; 0.506179, 1.550838, 1.183012;;, + 109;3; 0.506179, 1.550838, 1.183012;;, + 110;3; 0.506179, 1.550838, 1.183012;;, + 111;3; 0.506179, 1.550838, 1.183012;;, + 112;3; 0.506179, 1.550838, 1.183012;;, + 113;3; 0.506179, 1.550838, 1.183012;;, + 114;3; 0.506179, 1.550838, 1.183012;;, + 115;3; 0.506179, 1.550838, 1.183012;;, + 116;3; 0.506179, 1.550838, 1.183012;;, + 117;3; 0.506179, 1.550838, 1.183012;;, + 118;3; 0.506179, 1.550838, 1.183012;;, + 119;3; 0.506179, 1.550838, 1.183012;;, + 120;3; 0.506179, 1.550838, 1.183012;;, + 121;3; 0.506179, 1.550838, 1.183012;;, + 122;3; 0.506179, 1.550838, 1.183012;;, + 123;3; 0.506179, 1.550838, 1.183012;;, + 124;3; 0.506179, 1.550838, 1.183012;;, + 125;3; 0.506179, 1.550838, 1.183012;;, + 126;3; 0.506179, 1.550838, 1.183012;;, + 127;3; 0.506179, 1.550838, 1.183012;;, + 128;3; 0.506179, 1.550838, 1.183012;;, + 129;3; 0.506179, 1.550838, 1.183012;;, + 130;3; 0.506179, 1.550838, 1.183012;;, + 131;3; 0.506179, 1.550838, 1.183012;;, + 132;3; 0.506179, 1.550838, 1.183012;;, + 133;3; 0.506179, 1.550838, 1.183012;;, + 134;3; 0.506179, 1.550838, 1.183012;;, + 135;3; 0.506179, 1.550838, 1.183012;;, + 136;3; 0.506179, 1.550838, 1.183012;;, + 137;3; 0.506179, 1.550838, 1.183012;;, + 138;3; 0.506179, 1.550838, 1.183012;;, + 139;3; 0.506179, 1.550838, 1.183012;;, + 140;3; 0.506179, 1.550838, 1.183012;;, + 141;3; 0.506179, 1.550838, 1.183012;;, + 142;3; 0.506179, 1.550838, 1.183012;;, + 143;3; 0.506179, 1.550838, 1.183012;;, + 144;3; 0.506179, 1.550838, 1.183012;;, + 145;3; 0.506179, 1.550838, 1.183012;;, + 146;3; 0.506179, 1.550838, 1.183012;;, + 147;3; 0.506179, 1.550838, 1.183012;;, + 148;3; 0.506179, 1.550838, 1.183012;;, + 149;3; 0.506179, 1.550838, 1.183012;;, + 150;3; 0.506179, 1.550838, 1.183012;;, + 151;3; 0.506179, 1.550838, 1.183012;;, + 152;3; 0.506179, 1.550838, 1.183012;;, + 153;3; 0.506179, 1.550838, 1.183012;;, + 154;3; 0.506179, 1.550838, 1.183012;;, + 155;3; 0.506179, 1.550838, 1.183012;;, + 156;3; 0.506179, 1.550838, 1.183012;;, + 157;3; 0.506179, 1.550838, 1.183012;;, + 158;3; 0.506179, 1.550838, 1.183012;;, + 159;3; 0.506179, 1.550838, 1.183012;;, + 160;3; 0.506179, 1.550838, 1.183012;;, + 161;3; 0.506179, 1.550838, 1.183012;;, + 162;3; 0.506179, 1.550838, 1.183012;;, + 163;3; 0.506179, 1.550838, 1.183012;;, + 164;3; 0.506179, 1.550838, 1.183012;;, + 165;3; 0.506179, 1.550838, 1.183012;;, + 166;3; 0.506179, 1.550838, 1.183012;;, + 167;3; 0.506179, 1.550838, 1.183012;;, + 168;3; 0.506179, 1.550838, 1.183012;;, + 169;3; 0.506179, 1.550838, 1.183012;;, + 170;3; 0.506179, 1.550838, 1.183012;;, + 171;3; 0.506179, 1.550838, 1.183012;;, + 172;3; 0.506179, 1.550838, 1.183012;;, + 173;3; 0.506179, 1.550838, 1.183012;;, + 174;3; 0.506179, 1.550838, 1.183012;;, + 175;3; 0.506179, 1.550838, 1.183012;;, + 176;3; 0.506179, 1.550838, 1.183012;;, + 177;3; 0.506179, 1.550838, 1.183012;;, + 178;3; 0.506179, 1.550838, 1.183012;;, + 179;3; 0.506179, 1.550838, 1.183012;;, + 180;3; 0.534224, 1.550838, 1.200614;;, + 181;3; 0.618629, 1.550838, 1.253590;;, + 182;3; 0.755866, 1.550838, 1.339727;;, + 183;3; 0.935366, 1.550838, 1.452389;;, + 184;3; 1.138711, 1.550838, 1.580017;;, + 185;3; 1.342055, 1.550838, 1.707644;;, + 186;3; 1.521555, 1.550838, 1.820307;;, + 187;3; 1.658792, 1.550838, 1.906443;;, + 188;3; 1.743197, 1.550838, 1.959419;;, + 189;3; 1.771243, 1.550838, 1.977021;;, + 190;3; 1.771243, 1.550838, 1.977021;;, + 191;3; 1.771243, 1.550838, 1.977021;;, + 192;3; 1.771243, 1.550838, 1.977021;;, + 193;3; 1.771243, 1.550838, 1.977021;;, + 194;3; 1.771243, 1.550838, 1.977021;;, + 195;3; 1.658792, 1.550838, 1.906443;;, + 196;3; 1.342055, 1.550838, 1.707644;;, + 197;3; 0.935367, 1.550838, 1.452389;;, + 198;3; 0.618629, 1.550838, 1.253590;;, + 199;3; 0.506179, 1.550838, 1.183012;;, + 200;3; 0.506179, 1.550838, 1.183012;;, + 201;3; 0.506179, 1.550838, 1.183012;;, + 202;3; 0.506179, 1.550838, 1.183012;;, + 203;3; 0.506179, 1.550838, 1.183012;;, + 204;3; 0.506179, 1.550838, 1.183012;;, + 205;3; 0.506179, 1.550838, 1.183012;;, + 206;3; 0.506179, 1.550838, 1.183012;;, + 207;3; 0.506179, 1.550838, 1.183012;;, + 208;3; 0.506179, 1.550838, 1.183012;;, + 209;3; 0.506179, 1.550838, 1.183012;;, + 210;3; 0.363665, 1.550838, 1.220984;;, + 211;3;-0.037440, 1.550838, 1.342045;;, + 212;3;-0.551611, 1.550838, 1.535358;;, + 213;3;-0.950415, 1.550838, 1.759623;;, + 214;3;-1.089015, 1.550838, 1.973187;;, + 215;3;-0.988112, 1.550838, 2.225044;;, + 216;3;-0.688117, 1.550838, 2.556626;;, + 217;3;-0.240085, 1.550838, 2.886285;;, + 218;3; 0.234610, 1.550838, 3.110718;;, + 219;3; 0.632749, 1.550838, 3.180268;;, + 220;3; 1.031500, 1.550838, 3.115619;;, + 221;3; 1.507408, 1.550838, 2.939241;;, + 222;3; 1.955633, 1.550838, 2.693020;;, + 223;3; 2.253121, 1.550838, 2.456898;;, + 224;3; 2.348306, 1.550838, 2.290598;;, + 225;3; 2.327718, 1.550838, 2.167573;;, + 226;3; 2.271061, 1.550838, 2.045905;;, + 227;3; 2.178646, 1.550838, 1.926793;;, + 228;3; 2.052372, 1.550838, 1.811709;;, + 229;3; 1.896185, 1.550838, 1.702353;;, + 230;3; 1.716337, 1.550838, 1.600557;;, + 231;3; 1.521299, 1.550838, 1.508105;;, + 232;3; 1.321170, 1.550838, 1.426527;;, + 233;3; 1.126641, 1.550838, 1.356892;;, + 234;3; 0.947788, 1.550838, 1.299692;;, + 235;3; 0.793037, 1.550838, 1.254831;;, + 236;3; 0.668592, 1.550838, 1.221727;;, + 237;3; 0.578335, 1.550838, 1.199460;;, + 238;3; 0.524111, 1.550838, 1.186937;;, + 239;3; 0.506179, 1.550838, 1.183012;;, + 240;3; 0.506179, 1.550838, 1.183012;;, + 241;3; 0.506179, 1.550838, 1.183012;;, + 242;3; 0.506179, 1.550838, 1.183012;;, + 243;3; 0.506179, 1.550838, 1.183012;;, + 244;3; 0.506179, 1.550838, 1.183012;;, + 245;3; 0.506179, 1.550838, 1.183012;;, + 246;3; 0.506179, 1.550838, 1.183012;;, + 247;3; 0.506179, 1.550838, 1.183012;;, + 248;3; 0.506179, 1.550838, 1.183012;;, + 249;3; 0.506179, 1.550838, 1.183012;;; + } + } + Animation { + {Armature_Bone_002} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 1;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 2;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 3;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 4;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 5;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 6;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 7;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 8;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 9;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 10;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 11;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 12;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 13;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 14;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 15;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 16;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 17;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 18;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 19;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 20;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 21;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 22;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 23;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 24;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 25;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 26;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 27;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 28;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 29;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 30;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 31;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 32;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 33;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 34;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 35;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 36;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 37;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 38;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 39;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 40;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 41;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 42;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 43;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 44;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 45;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 46;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 47;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 48;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 49;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 50;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 51;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 52;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 53;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 54;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 55;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 56;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 57;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 58;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 59;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 60;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 61;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 62;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 63;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 64;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 65;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 66;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 67;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 68;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 69;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 70;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 71;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 72;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 73;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 74;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 75;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 76;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 77;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 78;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 79;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 80;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 81;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 82;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 83;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 84;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 85;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 86;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 87;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 88;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 89;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 90;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 91;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 92;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 93;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 94;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 95;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 96;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 97;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 98;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 99;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 100;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 101;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 102;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 103;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 104;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 105;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 106;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 107;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 108;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 109;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 110;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 111;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 112;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 113;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 114;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 115;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 116;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 117;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 118;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 119;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 120;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 121;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 122;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 123;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 124;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 125;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 126;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 127;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 128;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 129;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 130;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 131;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 132;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 133;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 134;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 135;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 136;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 137;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 138;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 139;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 140;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 141;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 142;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 143;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 144;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 145;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 146;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 147;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 148;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 149;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 150;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 151;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 152;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 153;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 154;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 155;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 156;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 157;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 158;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 159;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 160;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 161;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 162;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 163;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 164;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 165;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 166;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 167;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 168;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 169;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 170;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 171;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 172;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 173;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 174;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 175;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 176;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 177;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 178;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 179;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 180;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 181;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 182;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 183;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 184;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 185;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 186;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 187;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 188;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 189;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 190;4;-0.702411,-0.016559,-0.702412,-0.016559;;, + 191;4;-0.689311,-0.085395,-0.689311,-0.085395;;, + 192;4;-0.672490,-0.173780,-0.672490,-0.173780;;, + 193;4;-0.659389,-0.242616,-0.659389,-0.242616;;, + 194;4;-0.654738,-0.267054,-0.654738,-0.267055;;, + 195;4;-0.659389,-0.242616,-0.659389,-0.242616;;, + 196;4;-0.672490,-0.173780,-0.672490,-0.173780;;, + 197;4;-0.689311,-0.085395,-0.689311,-0.085395;;, + 198;4;-0.702411,-0.016559,-0.702412,-0.016559;;, + 199;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 200;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 201;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 202;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 203;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 204;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 205;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 206;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 207;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 208;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 209;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 210;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 211;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 212;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 213;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 214;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 215;4;-0.706826, 0.010736,-0.706826, 0.010736;;, + 216;4;-0.706099, 0.019492,-0.706099, 0.019492;;, + 217;4;-0.705007, 0.032647,-0.705008, 0.032647;;, + 218;4;-0.703848, 0.046613,-0.703849, 0.046613;;, + 219;4;-0.702876, 0.058332,-0.702876, 0.058332;;, + 220;4;-0.701903, 0.070051,-0.701904, 0.070051;;, + 221;4;-0.700744, 0.084017,-0.700745, 0.084017;;, + 222;4;-0.699652, 0.097171,-0.699653, 0.097171;;, + 223;4;-0.698926, 0.105928,-0.698926, 0.105928;;, + 224;4;-0.698689, 0.108784,-0.698689, 0.108784;;, + 225;4;-0.698771, 0.107793,-0.698771, 0.107793;;, + 226;4;-0.699019, 0.104798,-0.699020, 0.104798;;, + 227;4;-0.699433, 0.099815,-0.699434, 0.099815;;, + 228;4;-0.700003, 0.092946,-0.700004, 0.092946;;, + 229;4;-0.700711, 0.084410,-0.700712, 0.084410;;, + 230;4;-0.701530, 0.074551,-0.701530, 0.074551;;, + 231;4;-0.702419, 0.063837,-0.702419, 0.063837;;, + 232;4;-0.703332, 0.052827,-0.703333, 0.052827;;, + 233;4;-0.704222, 0.042113,-0.704222, 0.042113;;, + 234;4;-0.705040, 0.032254,-0.705040, 0.032254;;, + 235;4;-0.705748, 0.023717,-0.705749, 0.023717;;, + 236;4;-0.706318, 0.016849,-0.706319, 0.016849;;, + 237;4;-0.706732, 0.011866,-0.706732, 0.011866;;, + 238;4;-0.706980, 0.008871,-0.706981, 0.008871;;, + 239;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 240;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 241;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 242;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 243;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 244;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 245;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 246;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 247;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 248;4;-0.707063, 0.007880,-0.707063, 0.007880;;, + 249;4;-0.707063, 0.007880,-0.707063, 0.007880;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3; 0.000000, 0.344354,-0.000000;;, + 1;3; 0.000000, 0.344354,-0.000000;;, + 2;3; 0.000000, 0.344354,-0.000000;;, + 3;3; 0.000000, 0.344354,-0.000000;;, + 4;3; 0.000000, 0.344354,-0.000000;;, + 5;3; 0.000000, 0.344354,-0.000000;;, + 6;3; 0.000000, 0.344354,-0.000000;;, + 7;3; 0.000000, 0.344354,-0.000000;;, + 8;3; 0.000000, 0.344354,-0.000000;;, + 9;3; 0.000000, 0.344354,-0.000000;;, + 10;3; 0.000000, 0.344354,-0.000000;;, + 11;3; 0.000000, 0.344354,-0.000000;;, + 12;3; 0.000000, 0.344354,-0.000000;;, + 13;3; 0.000000, 0.344354,-0.000000;;, + 14;3; 0.000000, 0.344354,-0.000000;;, + 15;3; 0.000000, 0.344354,-0.000000;;, + 16;3; 0.000000, 0.344354,-0.000000;;, + 17;3; 0.000000, 0.344354,-0.000000;;, + 18;3; 0.000000, 0.344354,-0.000000;;, + 19;3; 0.000000, 0.344354,-0.000000;;, + 20;3; 0.000000, 0.344354,-0.000000;;, + 21;3; 0.000000, 0.344354,-0.000000;;, + 22;3; 0.000000, 0.344354,-0.000000;;, + 23;3; 0.000000, 0.344354,-0.000000;;, + 24;3; 0.000000, 0.344354,-0.000000;;, + 25;3; 0.000000, 0.344354,-0.000000;;, + 26;3; 0.000000, 0.344354,-0.000000;;, + 27;3; 0.000000, 0.344354,-0.000000;;, + 28;3; 0.000000, 0.344354,-0.000000;;, + 29;3; 0.000000, 0.344354,-0.000000;;, + 30;3; 0.000000, 0.344354,-0.000000;;, + 31;3; 0.000000, 0.344354,-0.000000;;, + 32;3; 0.000000, 0.344354,-0.000000;;, + 33;3; 0.000000, 0.344354,-0.000000;;, + 34;3; 0.000000, 0.344354,-0.000000;;, + 35;3; 0.000000, 0.344354,-0.000000;;, + 36;3; 0.000000, 0.344354,-0.000000;;, + 37;3; 0.000000, 0.344354,-0.000000;;, + 38;3; 0.000000, 0.344354,-0.000000;;, + 39;3; 0.000000, 0.344354,-0.000000;;, + 40;3; 0.000000, 0.344354,-0.000000;;, + 41;3; 0.000000, 0.344354,-0.000000;;, + 42;3; 0.000000, 0.344354,-0.000000;;, + 43;3; 0.000000, 0.344354,-0.000000;;, + 44;3; 0.000000, 0.344354,-0.000000;;, + 45;3; 0.000000, 0.344354,-0.000000;;, + 46;3; 0.000000, 0.344354,-0.000000;;, + 47;3; 0.000000, 0.344354,-0.000000;;, + 48;3; 0.000000, 0.344354,-0.000000;;, + 49;3; 0.000000, 0.344354,-0.000000;;, + 50;3; 0.000000, 0.344354,-0.000000;;, + 51;3; 0.000000, 0.344354,-0.000000;;, + 52;3; 0.000000, 0.344354,-0.000000;;, + 53;3; 0.000000, 0.344354,-0.000000;;, + 54;3; 0.000000, 0.344354,-0.000000;;, + 55;3; 0.000000, 0.344354,-0.000000;;, + 56;3; 0.000000, 0.344354,-0.000000;;, + 57;3; 0.000000, 0.344354,-0.000000;;, + 58;3; 0.000000, 0.344354,-0.000000;;, + 59;3; 0.000000, 0.344354,-0.000000;;, + 60;3; 0.000000, 0.344354,-0.000000;;, + 61;3; 0.000000, 0.344354,-0.000000;;, + 62;3; 0.000000, 0.344354,-0.000000;;, + 63;3; 0.000000, 0.344354,-0.000000;;, + 64;3; 0.000000, 0.344354,-0.000000;;, + 65;3; 0.000000, 0.344354,-0.000000;;, + 66;3; 0.000000, 0.344354,-0.000000;;, + 67;3; 0.000000, 0.344354,-0.000000;;, + 68;3; 0.000000, 0.344354,-0.000000;;, + 69;3; 0.000000, 0.344354,-0.000000;;, + 70;3; 0.000000, 0.344354,-0.000000;;, + 71;3; 0.000000, 0.344354,-0.000000;;, + 72;3; 0.000000, 0.344354,-0.000000;;, + 73;3; 0.000000, 0.344354,-0.000000;;, + 74;3; 0.000000, 0.344354,-0.000000;;, + 75;3; 0.000000, 0.344354,-0.000000;;, + 76;3; 0.000000, 0.344354,-0.000000;;, + 77;3; 0.000000, 0.344354,-0.000000;;, + 78;3; 0.000000, 0.344354,-0.000000;;, + 79;3; 0.000000, 0.344354,-0.000000;;, + 80;3; 0.000000, 0.344354,-0.000000;;, + 81;3; 0.000000, 0.344354,-0.000000;;, + 82;3; 0.000000, 0.344354,-0.000000;;, + 83;3; 0.000000, 0.344354,-0.000000;;, + 84;3; 0.000000, 0.344354,-0.000000;;, + 85;3; 0.000000, 0.344354,-0.000000;;, + 86;3; 0.000000, 0.344354,-0.000000;;, + 87;3; 0.000000, 0.344354,-0.000000;;, + 88;3; 0.000000, 0.344354,-0.000000;;, + 89;3; 0.000000, 0.344354,-0.000000;;, + 90;3; 0.000000, 0.344354,-0.000000;;, + 91;3; 0.000000, 0.344354,-0.000000;;, + 92;3; 0.000000, 0.344354,-0.000000;;, + 93;3; 0.000000, 0.344354,-0.000000;;, + 94;3; 0.000000, 0.344354,-0.000000;;, + 95;3; 0.000000, 0.344354,-0.000000;;, + 96;3; 0.000000, 0.344354,-0.000000;;, + 97;3; 0.000000, 0.344354,-0.000000;;, + 98;3; 0.000000, 0.344354,-0.000000;;, + 99;3; 0.000000, 0.344354,-0.000000;;, + 100;3; 0.000000, 0.344354,-0.000000;;, + 101;3; 0.000000, 0.344354,-0.000000;;, + 102;3; 0.000000, 0.344354,-0.000000;;, + 103;3; 0.000000, 0.344354,-0.000000;;, + 104;3; 0.000000, 0.344354,-0.000000;;, + 105;3; 0.000000, 0.344354,-0.000000;;, + 106;3; 0.000000, 0.344354,-0.000000;;, + 107;3; 0.000000, 0.344354,-0.000000;;, + 108;3; 0.000000, 0.344354,-0.000000;;, + 109;3; 0.000000, 0.344354,-0.000000;;, + 110;3; 0.000000, 0.344354,-0.000000;;, + 111;3; 0.000000, 0.344354,-0.000000;;, + 112;3; 0.000000, 0.344354,-0.000000;;, + 113;3; 0.000000, 0.344354,-0.000000;;, + 114;3; 0.000000, 0.344354,-0.000000;;, + 115;3; 0.000000, 0.344354,-0.000000;;, + 116;3; 0.000000, 0.344354,-0.000000;;, + 117;3; 0.000000, 0.344354,-0.000000;;, + 118;3; 0.000000, 0.344354,-0.000000;;, + 119;3; 0.000000, 0.344354,-0.000000;;, + 120;3; 0.000000, 0.344354,-0.000000;;, + 121;3; 0.000000, 0.344354,-0.000000;;, + 122;3; 0.000000, 0.344354,-0.000000;;, + 123;3; 0.000000, 0.344354,-0.000000;;, + 124;3; 0.000000, 0.344354,-0.000000;;, + 125;3; 0.000000, 0.344354,-0.000000;;, + 126;3; 0.000000, 0.344354,-0.000000;;, + 127;3; 0.000000, 0.344354,-0.000000;;, + 128;3; 0.000000, 0.344354,-0.000000;;, + 129;3; 0.000000, 0.344354,-0.000000;;, + 130;3; 0.000000, 0.344354,-0.000000;;, + 131;3; 0.000000, 0.344354,-0.000000;;, + 132;3; 0.000000, 0.344354,-0.000000;;, + 133;3; 0.000000, 0.344354,-0.000000;;, + 134;3; 0.000000, 0.344354,-0.000000;;, + 135;3; 0.000000, 0.344354,-0.000000;;, + 136;3; 0.000000, 0.344354,-0.000000;;, + 137;3; 0.000000, 0.344354,-0.000000;;, + 138;3; 0.000000, 0.344354,-0.000000;;, + 139;3; 0.000000, 0.344354,-0.000000;;, + 140;3; 0.000000, 0.344354,-0.000000;;, + 141;3; 0.000000, 0.344354,-0.000000;;, + 142;3; 0.000000, 0.344354,-0.000000;;, + 143;3; 0.000000, 0.344354,-0.000000;;, + 144;3; 0.000000, 0.344354,-0.000000;;, + 145;3; 0.000000, 0.344354,-0.000000;;, + 146;3; 0.000000, 0.344354,-0.000000;;, + 147;3; 0.000000, 0.344354,-0.000000;;, + 148;3; 0.000000, 0.344354,-0.000000;;, + 149;3; 0.000000, 0.344354,-0.000000;;, + 150;3; 0.000000, 0.344354,-0.000000;;, + 151;3; 0.000000, 0.344354,-0.000000;;, + 152;3; 0.000000, 0.344354,-0.000000;;, + 153;3; 0.000000, 0.344354,-0.000000;;, + 154;3; 0.000000, 0.344354,-0.000000;;, + 155;3; 0.000000, 0.344354,-0.000000;;, + 156;3; 0.000000, 0.344354,-0.000000;;, + 157;3; 0.000000, 0.344354,-0.000000;;, + 158;3; 0.000000, 0.344354,-0.000000;;, + 159;3; 0.000000, 0.344354,-0.000000;;, + 160;3; 0.000000, 0.344354,-0.000000;;, + 161;3; 0.000000, 0.344354,-0.000000;;, + 162;3; 0.000000, 0.344354,-0.000000;;, + 163;3; 0.000000, 0.344354,-0.000000;;, + 164;3; 0.000000, 0.344354,-0.000000;;, + 165;3; 0.000000, 0.344354,-0.000000;;, + 166;3; 0.000000, 0.344354,-0.000000;;, + 167;3; 0.000000, 0.344354,-0.000000;;, + 168;3; 0.000000, 0.344354,-0.000000;;, + 169;3; 0.000000, 0.344354,-0.000000;;, + 170;3; 0.000000, 0.344354,-0.000000;;, + 171;3; 0.000000, 0.344354,-0.000000;;, + 172;3; 0.000000, 0.344354,-0.000000;;, + 173;3; 0.000000, 0.344354,-0.000000;;, + 174;3; 0.000000, 0.344354,-0.000000;;, + 175;3; 0.000000, 0.344354,-0.000000;;, + 176;3; 0.000000, 0.344354,-0.000000;;, + 177;3; 0.000000, 0.344354,-0.000000;;, + 178;3; 0.000000, 0.344354,-0.000000;;, + 179;3; 0.000000, 0.344354,-0.000000;;, + 180;3;-0.000000, 0.344354, 0.000000;;, + 181;3;-0.000000, 0.344354, 0.000000;;, + 182;3;-0.000000, 0.344354,-0.000000;;, + 183;3; 0.000000, 0.344354, 0.000000;;, + 184;3;-0.000000, 0.344355,-0.000000;;, + 185;3; 0.000000, 0.344354, 0.000000;;, + 186;3;-0.000000, 0.344355,-0.000000;;, + 187;3; 0.000000, 0.344354,-0.000000;;, + 188;3;-0.000000, 0.344354,-0.000000;;, + 189;3;-0.000000, 0.344355, 0.000000;;, + 190;3;-0.000000, 0.344355, 0.000000;;, + 191;3;-0.000000, 0.344355, 0.000000;;, + 192;3;-0.000000, 0.344355, 0.000000;;, + 193;3;-0.000000, 0.344355, 0.000000;;, + 194;3;-0.000000, 0.344355, 0.000000;;, + 195;3; 0.000000, 0.344354,-0.000000;;, + 196;3; 0.000000, 0.344355, 0.000000;;, + 197;3; 0.000000, 0.344354, 0.000000;;, + 198;3;-0.000000, 0.344354, 0.000000;;, + 199;3; 0.000000, 0.344354,-0.000000;;, + 200;3; 0.000000, 0.344354,-0.000000;;, + 201;3; 0.000000, 0.344354,-0.000000;;, + 202;3; 0.000000, 0.344354,-0.000000;;, + 203;3; 0.000000, 0.344354,-0.000000;;, + 204;3; 0.000000, 0.344354,-0.000000;;, + 205;3; 0.000000, 0.344354,-0.000000;;, + 206;3; 0.000000, 0.344354,-0.000000;;, + 207;3; 0.000000, 0.344354,-0.000000;;, + 208;3; 0.000000, 0.344354,-0.000000;;, + 209;3; 0.000000, 0.344354,-0.000000;;, + 210;3;-0.000000, 0.344354,-0.000000;;, + 211;3;-0.000000, 0.344354,-0.000000;;, + 212;3;-0.000000, 0.344355, 0.000000;;, + 213;3; 0.000000, 0.344354,-0.000000;;, + 214;3; 0.000000, 0.344354,-0.000000;;, + 215;3; 0.000000, 0.344354,-0.000000;;, + 216;3;-0.000000, 0.344355,-0.000000;;, + 217;3;-0.000000, 0.344354, 0.000000;;, + 218;3;-0.000000, 0.344354, 0.000000;;, + 219;3;-0.000000, 0.344354,-0.000000;;, + 220;3;-0.000000, 0.344354, 0.000000;;, + 221;3; 0.000000, 0.344355, 0.000000;;, + 222;3;-0.000000, 0.344354, 0.000000;;, + 223;3; 0.000000, 0.344355, 0.000000;;, + 224;3;-0.000000, 0.344355,-0.000000;;, + 225;3; 0.000000, 0.344355,-0.000000;;, + 226;3; 0.000000, 0.344355, 0.000000;;, + 227;3;-0.000000, 0.344355,-0.000000;;, + 228;3;-0.000000, 0.344355,-0.000000;;, + 229;3;-0.000000, 0.344355,-0.000000;;, + 230;3;-0.000000, 0.344354,-0.000000;;, + 231;3;-0.000000, 0.344354,-0.000000;;, + 232;3; 0.000000, 0.344354, 0.000000;;, + 233;3; 0.000000, 0.344354,-0.000000;;, + 234;3; 0.000000, 0.344354,-0.000000;;, + 235;3; 0.000000, 0.344354,-0.000000;;, + 236;3;-0.000000, 0.344354,-0.000000;;, + 237;3; 0.000000, 0.344354,-0.000000;;, + 238;3; 0.000000, 0.344354,-0.000000;;, + 239;3; 0.000000, 0.344354,-0.000000;;, + 240;3; 0.000000, 0.344354,-0.000000;;, + 241;3; 0.000000, 0.344354,-0.000000;;, + 242;3; 0.000000, 0.344354,-0.000000;;, + 243;3; 0.000000, 0.344354,-0.000000;;, + 244;3; 0.000000, 0.344354,-0.000000;;, + 245;3; 0.000000, 0.344354,-0.000000;;, + 246;3; 0.000000, 0.344354,-0.000000;;, + 247;3; 0.000000, 0.344354,-0.000000;;, + 248;3; 0.000000, 0.344354,-0.000000;;, + 249;3; 0.000000, 0.344354,-0.000000;;; + } + } + Animation { + {Armature_Bone_003} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 1;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 2;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 3;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 4;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 5;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 6;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 7;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 8;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 9;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 10;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 11;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 12;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 13;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 14;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 15;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 16;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 17;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 18;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 19;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 20;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 21;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 22;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 23;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 24;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 25;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 26;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 27;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 28;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 29;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 30;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 31;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 32;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 33;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 34;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 35;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 36;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 37;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 38;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 39;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 40;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 41;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 42;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 43;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 44;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 45;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 46;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 47;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 48;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 49;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 50;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 51;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 52;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 53;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 54;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 55;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 56;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 57;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 58;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 59;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 60;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 61;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 62;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 63;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 64;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 65;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 66;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 67;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 68;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 69;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 70;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 71;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 72;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 73;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 74;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 75;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 76;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 77;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 78;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 79;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 80;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 81;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 82;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 83;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 84;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 85;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 86;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 87;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 88;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 89;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 90;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 91;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 92;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 93;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 94;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 95;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 96;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 97;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 98;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 99;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 100;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 101;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 102;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 103;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 104;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 105;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 106;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 107;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 108;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 109;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 110;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 111;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 112;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 113;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 114;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 115;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 116;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 117;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 118;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 119;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 120;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 121;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 122;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 123;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 124;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 125;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 126;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 127;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 128;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 129;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 130;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 131;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 132;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 133;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 134;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 135;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 136;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 137;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 138;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 139;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 140;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 141;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 142;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 143;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 144;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 145;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 146;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 147;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 148;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 149;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 150;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 151;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 152;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 153;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 154;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 155;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 156;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 157;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 158;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 159;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 160;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 161;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 162;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 163;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 164;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 165;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 166;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 167;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 168;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 169;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 170;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 171;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 172;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 173;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 174;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 175;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 176;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 177;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 178;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 179;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 180;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 181;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 182;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 183;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 184;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 185;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 186;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 187;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 188;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 189;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 190;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 191;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 192;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 193;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 194;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 195;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 196;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 197;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 198;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 199;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 200;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 201;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 202;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 203;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 204;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 205;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 206;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 207;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 208;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 209;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 210;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 211;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 212;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 213;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 214;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 215;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 216;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 217;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 218;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 219;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 220;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 221;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 222;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 223;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 224;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 225;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 226;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 227;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 228;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 229;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 230;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 231;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 232;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 233;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 234;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 235;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 236;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 237;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 238;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 239;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 240;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 241;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 242;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 243;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 244;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 245;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 246;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 247;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 248;4;-0.970830, 0.133879,-0.028874,-0.196804;;, + 249;4;-0.970830, 0.133879,-0.028874,-0.196804;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3; 0.000000, 0.826434, 0.000000;;, + 1;3; 0.000000, 0.826434, 0.000000;;, + 2;3; 0.000000, 0.826434, 0.000000;;, + 3;3; 0.000000, 0.826434, 0.000000;;, + 4;3; 0.000000, 0.826434, 0.000000;;, + 5;3; 0.000000, 0.826434, 0.000000;;, + 6;3; 0.000000, 0.826434, 0.000000;;, + 7;3; 0.000000, 0.826434, 0.000000;;, + 8;3; 0.000000, 0.826434, 0.000000;;, + 9;3; 0.000000, 0.826434, 0.000000;;, + 10;3; 0.000000, 0.826434, 0.000000;;, + 11;3; 0.000000, 0.826434, 0.000000;;, + 12;3; 0.000000, 0.826434, 0.000000;;, + 13;3; 0.000000, 0.826434, 0.000000;;, + 14;3; 0.000000, 0.826434, 0.000000;;, + 15;3; 0.000000, 0.826434, 0.000000;;, + 16;3; 0.000000, 0.826434, 0.000000;;, + 17;3; 0.000000, 0.826434, 0.000000;;, + 18;3; 0.000000, 0.826434, 0.000000;;, + 19;3; 0.000000, 0.826434, 0.000000;;, + 20;3; 0.000000, 0.826434, 0.000000;;, + 21;3; 0.000000, 0.826434, 0.000000;;, + 22;3; 0.000000, 0.826434, 0.000000;;, + 23;3; 0.000000, 0.826434, 0.000000;;, + 24;3; 0.000000, 0.826434, 0.000000;;, + 25;3; 0.000000, 0.826434, 0.000000;;, + 26;3; 0.000000, 0.826434, 0.000000;;, + 27;3; 0.000000, 0.826434, 0.000000;;, + 28;3; 0.000000, 0.826434, 0.000000;;, + 29;3; 0.000000, 0.826434, 0.000000;;, + 30;3; 0.000000, 0.826434, 0.000000;;, + 31;3; 0.000000, 0.826434, 0.000000;;, + 32;3; 0.000000, 0.826434, 0.000000;;, + 33;3; 0.000000, 0.826434, 0.000000;;, + 34;3; 0.000000, 0.826434, 0.000000;;, + 35;3; 0.000000, 0.826434, 0.000000;;, + 36;3; 0.000000, 0.826434, 0.000000;;, + 37;3; 0.000000, 0.826434, 0.000000;;, + 38;3; 0.000000, 0.826434, 0.000000;;, + 39;3; 0.000000, 0.826434, 0.000000;;, + 40;3; 0.000000, 0.826434, 0.000000;;, + 41;3; 0.000000, 0.826434, 0.000000;;, + 42;3; 0.000000, 0.826434, 0.000000;;, + 43;3; 0.000000, 0.826434, 0.000000;;, + 44;3; 0.000000, 0.826434, 0.000000;;, + 45;3; 0.000000, 0.826434, 0.000000;;, + 46;3; 0.000000, 0.826434, 0.000000;;, + 47;3; 0.000000, 0.826434, 0.000000;;, + 48;3; 0.000000, 0.826434, 0.000000;;, + 49;3; 0.000000, 0.826434, 0.000000;;, + 50;3; 0.000000, 0.826434, 0.000000;;, + 51;3; 0.000000, 0.826434, 0.000000;;, + 52;3; 0.000000, 0.826434, 0.000000;;, + 53;3; 0.000000, 0.826434, 0.000000;;, + 54;3; 0.000000, 0.826434, 0.000000;;, + 55;3; 0.000000, 0.826434, 0.000000;;, + 56;3; 0.000000, 0.826434, 0.000000;;, + 57;3; 0.000000, 0.826434, 0.000000;;, + 58;3; 0.000000, 0.826434, 0.000000;;, + 59;3; 0.000000, 0.826434, 0.000000;;, + 60;3; 0.000000, 0.826434, 0.000000;;, + 61;3; 0.000000, 0.826434, 0.000000;;, + 62;3; 0.000000, 0.826434, 0.000000;;, + 63;3; 0.000000, 0.826434, 0.000000;;, + 64;3; 0.000000, 0.826434, 0.000000;;, + 65;3; 0.000000, 0.826434, 0.000000;;, + 66;3; 0.000000, 0.826434, 0.000000;;, + 67;3; 0.000000, 0.826434, 0.000000;;, + 68;3; 0.000000, 0.826434, 0.000000;;, + 69;3; 0.000000, 0.826434, 0.000000;;, + 70;3; 0.000000, 0.826434, 0.000000;;, + 71;3; 0.000000, 0.826434, 0.000000;;, + 72;3; 0.000000, 0.826434, 0.000000;;, + 73;3; 0.000000, 0.826434, 0.000000;;, + 74;3; 0.000000, 0.826434, 0.000000;;, + 75;3; 0.000000, 0.826434, 0.000000;;, + 76;3; 0.000000, 0.826434, 0.000000;;, + 77;3; 0.000000, 0.826434, 0.000000;;, + 78;3; 0.000000, 0.826434, 0.000000;;, + 79;3; 0.000000, 0.826434, 0.000000;;, + 80;3; 0.000000, 0.826434, 0.000000;;, + 81;3; 0.000000, 0.826434, 0.000000;;, + 82;3; 0.000000, 0.826434, 0.000000;;, + 83;3; 0.000000, 0.826434, 0.000000;;, + 84;3; 0.000000, 0.826434, 0.000000;;, + 85;3; 0.000000, 0.826434, 0.000000;;, + 86;3; 0.000000, 0.826434, 0.000000;;, + 87;3; 0.000000, 0.826434, 0.000000;;, + 88;3; 0.000000, 0.826434, 0.000000;;, + 89;3; 0.000000, 0.826434, 0.000000;;, + 90;3; 0.000000, 0.826434, 0.000000;;, + 91;3; 0.000000, 0.826434, 0.000000;;, + 92;3; 0.000000, 0.826434, 0.000000;;, + 93;3; 0.000000, 0.826434, 0.000000;;, + 94;3; 0.000000, 0.826434, 0.000000;;, + 95;3; 0.000000, 0.826434, 0.000000;;, + 96;3; 0.000000, 0.826434, 0.000000;;, + 97;3; 0.000000, 0.826434, 0.000000;;, + 98;3; 0.000000, 0.826434, 0.000000;;, + 99;3; 0.000000, 0.826434, 0.000000;;, + 100;3; 0.000000, 0.826434, 0.000000;;, + 101;3; 0.000000, 0.826434, 0.000000;;, + 102;3; 0.000000, 0.826434, 0.000000;;, + 103;3; 0.000000, 0.826434, 0.000000;;, + 104;3; 0.000000, 0.826434, 0.000000;;, + 105;3; 0.000000, 0.826434, 0.000000;;, + 106;3; 0.000000, 0.826434, 0.000000;;, + 107;3; 0.000000, 0.826434, 0.000000;;, + 108;3; 0.000000, 0.826434, 0.000000;;, + 109;3; 0.000000, 0.826434, 0.000000;;, + 110;3; 0.000000, 0.826434, 0.000000;;, + 111;3; 0.000000, 0.826434, 0.000000;;, + 112;3; 0.000000, 0.826434, 0.000000;;, + 113;3; 0.000000, 0.826434, 0.000000;;, + 114;3; 0.000000, 0.826434, 0.000000;;, + 115;3; 0.000000, 0.826434, 0.000000;;, + 116;3; 0.000000, 0.826434, 0.000000;;, + 117;3; 0.000000, 0.826434, 0.000000;;, + 118;3; 0.000000, 0.826434, 0.000000;;, + 119;3; 0.000000, 0.826434, 0.000000;;, + 120;3; 0.000000, 0.826434, 0.000000;;, + 121;3; 0.000000, 0.826434, 0.000000;;, + 122;3; 0.000000, 0.826434, 0.000000;;, + 123;3; 0.000000, 0.826434, 0.000000;;, + 124;3; 0.000000, 0.826434, 0.000000;;, + 125;3; 0.000000, 0.826434, 0.000000;;, + 126;3; 0.000000, 0.826434, 0.000000;;, + 127;3; 0.000000, 0.826434, 0.000000;;, + 128;3; 0.000000, 0.826434, 0.000000;;, + 129;3; 0.000000, 0.826434, 0.000000;;, + 130;3; 0.000000, 0.826434, 0.000000;;, + 131;3; 0.000000, 0.826434, 0.000000;;, + 132;3; 0.000000, 0.826434, 0.000000;;, + 133;3; 0.000000, 0.826434, 0.000000;;, + 134;3; 0.000000, 0.826434, 0.000000;;, + 135;3; 0.000000, 0.826434, 0.000000;;, + 136;3; 0.000000, 0.826434, 0.000000;;, + 137;3; 0.000000, 0.826434, 0.000000;;, + 138;3; 0.000000, 0.826434, 0.000000;;, + 139;3; 0.000000, 0.826434, 0.000000;;, + 140;3; 0.000000, 0.826434, 0.000000;;, + 141;3; 0.000000, 0.826434, 0.000000;;, + 142;3; 0.000000, 0.826434, 0.000000;;, + 143;3; 0.000000, 0.826434, 0.000000;;, + 144;3; 0.000000, 0.826434, 0.000000;;, + 145;3; 0.000000, 0.826434, 0.000000;;, + 146;3; 0.000000, 0.826434, 0.000000;;, + 147;3; 0.000000, 0.826434, 0.000000;;, + 148;3; 0.000000, 0.826434, 0.000000;;, + 149;3; 0.000000, 0.826434, 0.000000;;, + 150;3; 0.000000, 0.826434, 0.000000;;, + 151;3; 0.000000, 0.826434, 0.000000;;, + 152;3; 0.000000, 0.826434, 0.000000;;, + 153;3; 0.000000, 0.826434, 0.000000;;, + 154;3; 0.000000, 0.826434, 0.000000;;, + 155;3; 0.000000, 0.826434, 0.000000;;, + 156;3; 0.000000, 0.826434, 0.000000;;, + 157;3; 0.000000, 0.826434, 0.000000;;, + 158;3; 0.000000, 0.826434, 0.000000;;, + 159;3; 0.000000, 0.826434, 0.000000;;, + 160;3; 0.000000, 0.826434, 0.000000;;, + 161;3; 0.000000, 0.826434, 0.000000;;, + 162;3; 0.000000, 0.826434, 0.000000;;, + 163;3; 0.000000, 0.826434, 0.000000;;, + 164;3; 0.000000, 0.826434, 0.000000;;, + 165;3; 0.000000, 0.826434, 0.000000;;, + 166;3; 0.000000, 0.826434, 0.000000;;, + 167;3; 0.000000, 0.826434, 0.000000;;, + 168;3; 0.000000, 0.826434, 0.000000;;, + 169;3; 0.000000, 0.826434, 0.000000;;, + 170;3; 0.000000, 0.826434, 0.000000;;, + 171;3; 0.000000, 0.826434, 0.000000;;, + 172;3; 0.000000, 0.826434, 0.000000;;, + 173;3; 0.000000, 0.826434, 0.000000;;, + 174;3; 0.000000, 0.826434, 0.000000;;, + 175;3; 0.000000, 0.826434, 0.000000;;, + 176;3; 0.000000, 0.826434, 0.000000;;, + 177;3; 0.000000, 0.826434, 0.000000;;, + 178;3; 0.000000, 0.826434, 0.000000;;, + 179;3; 0.000000, 0.826434, 0.000000;;, + 180;3; 0.000000, 0.826434, 0.000000;;, + 181;3; 0.000000, 0.826434, 0.000000;;, + 182;3; 0.000000, 0.826434, 0.000000;;, + 183;3; 0.000000, 0.826434, 0.000000;;, + 184;3; 0.000000, 0.826434, 0.000000;;, + 185;3; 0.000000, 0.826434, 0.000000;;, + 186;3;-0.000000, 0.826434,-0.000000;;, + 187;3;-0.000000, 0.826434,-0.000000;;, + 188;3;-0.000000, 0.826434, 0.000000;;, + 189;3;-0.000000, 0.826434, 0.000000;;, + 190;3;-0.000000, 0.826434,-0.000000;;, + 191;3; 0.000000, 0.826434, 0.000000;;, + 192;3; 0.000000, 0.826434, 0.000000;;, + 193;3; 0.000000, 0.826434, 0.000000;;, + 194;3; 0.000000, 0.826434,-0.000000;;, + 195;3; 0.000000, 0.826434,-0.000000;;, + 196;3; 0.000000, 0.826434, 0.000000;;, + 197;3; 0.000000, 0.826434,-0.000000;;, + 198;3; 0.000000, 0.826434,-0.000000;;, + 199;3; 0.000000, 0.826434, 0.000000;;, + 200;3; 0.000000, 0.826434, 0.000000;;, + 201;3; 0.000000, 0.826434, 0.000000;;, + 202;3; 0.000000, 0.826434, 0.000000;;, + 203;3; 0.000000, 0.826434, 0.000000;;, + 204;3; 0.000000, 0.826434, 0.000000;;, + 205;3; 0.000000, 0.826434, 0.000000;;, + 206;3; 0.000000, 0.826434, 0.000000;;, + 207;3; 0.000000, 0.826434, 0.000000;;, + 208;3; 0.000000, 0.826434, 0.000000;;, + 209;3; 0.000000, 0.826434, 0.000000;;, + 210;3;-0.000000, 0.826434, 0.000000;;, + 211;3;-0.000000, 0.826434, 0.000000;;, + 212;3; 0.000000, 0.826434,-0.000000;;, + 213;3; 0.000000, 0.826434, 0.000000;;, + 214;3; 0.000000, 0.826434, 0.000000;;, + 215;3;-0.000000, 0.826434,-0.000000;;, + 216;3;-0.000000, 0.826434,-0.000000;;, + 217;3;-0.000000, 0.826434,-0.000000;;, + 218;3;-0.000000, 0.826434, 0.000000;;, + 219;3;-0.000000, 0.826434,-0.000000;;, + 220;3;-0.000000, 0.826434, 0.000000;;, + 221;3; 0.000000, 0.826434, 0.000000;;, + 222;3;-0.000000, 0.826434, 0.000000;;, + 223;3; 0.000000, 0.826434,-0.000000;;, + 224;3; 0.000000, 0.826434,-0.000000;;, + 225;3; 0.000000, 0.826434, 0.000000;;, + 226;3; 0.000000, 0.826434, 0.000000;;, + 227;3; 0.000000, 0.826434, 0.000000;;, + 228;3;-0.000000, 0.826434, 0.000000;;, + 229;3; 0.000000, 0.826434, 0.000000;;, + 230;3; 0.000000, 0.826434, 0.000000;;, + 231;3; 0.000000, 0.826434,-0.000000;;, + 232;3;-0.000000, 0.826434,-0.000000;;, + 233;3; 0.000000, 0.826434, 0.000000;;, + 234;3; 0.000000, 0.826434, 0.000000;;, + 235;3; 0.000000, 0.826434, 0.000000;;, + 236;3; 0.000000, 0.826434, 0.000000;;, + 237;3; 0.000000, 0.826434, 0.000000;;, + 238;3; 0.000000, 0.826434, 0.000000;;, + 239;3; 0.000000, 0.826434, 0.000000;;, + 240;3; 0.000000, 0.826434, 0.000000;;, + 241;3; 0.000000, 0.826434, 0.000000;;, + 242;3; 0.000000, 0.826434, 0.000000;;, + 243;3; 0.000000, 0.826434, 0.000000;;, + 244;3; 0.000000, 0.826434, 0.000000;;, + 245;3; 0.000000, 0.826434, 0.000000;;, + 246;3; 0.000000, 0.826434, 0.000000;;, + 247;3; 0.000000, 0.826434, 0.000000;;, + 248;3; 0.000000, 0.826434, 0.000000;;, + 249;3; 0.000000, 0.826434, 0.000000;;; + } + } + Animation { + {Armature_Bone_005} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 1;4;-0.380162,-0.402155,-0.542078, 0.632313;;, + 2;4;-0.381472,-0.400992,-0.542850, 0.631414;;, + 3;4;-0.383661,-0.399049,-0.544140, 0.629912;;, + 4;4;-0.386712,-0.396342,-0.545936, 0.627819;;, + 5;4;-0.390578,-0.392911,-0.548214, 0.625166;;, + 6;4;-0.395184,-0.388825,-0.550926, 0.622006;;, + 7;4;-0.400416,-0.384182,-0.554008, 0.618416;;, + 8;4;-0.406128,-0.379113,-0.557373, 0.614497;;, + 9;4;-0.412141,-0.373777,-0.560915, 0.610370;;, + 10;4;-0.418257,-0.368350,-0.564517, 0.606174;;, + 11;4;-0.424271,-0.363013,-0.568059, 0.602047;;, + 12;4;-0.429982,-0.357945,-0.571424, 0.598128;;, + 13;4;-0.435214,-0.353302,-0.574506, 0.594538;;, + 14;4;-0.439820,-0.349215,-0.577218, 0.591378;;, + 15;4;-0.443686,-0.345784,-0.579496, 0.588725;;, + 16;4;-0.446737,-0.343077,-0.581293, 0.586632;;, + 17;4;-0.448926,-0.341134,-0.582582, 0.585130;;, + 18;4;-0.450236,-0.339972,-0.583354, 0.584231;;, + 19;4;-0.450669,-0.339587,-0.583609, 0.583933;;, + 20;4;-0.450231,-0.339962,-0.583344, 0.584216;;, + 21;4;-0.448905,-0.341094,-0.582544, 0.585072;;, + 22;4;-0.446688,-0.342987,-0.581207, 0.586504;;, + 23;4;-0.443596,-0.345630,-0.579341, 0.588503;;, + 24;4;-0.439666,-0.348989,-0.576972, 0.591046;;, + 25;4;-0.434967,-0.353009,-0.574139, 0.594089;;, + 26;4;-0.429597,-0.357605,-0.570904, 0.597570;;, + 27;4;-0.423689,-0.362668,-0.567346, 0.601405;;, + 28;4;-0.417402,-0.368059,-0.563562, 0.605493;;, + 29;4;-0.410923,-0.373622,-0.559666, 0.609713;;, + 30;4;-0.404448,-0.379190,-0.555776, 0.613941;;, + 31;4;-0.398175,-0.384594,-0.552011, 0.618050;;, + 32;4;-0.392288,-0.389679,-0.548482, 0.621921;;, + 33;4;-0.386947,-0.394306,-0.545288, 0.625451;;, + 34;4;-0.382284,-0.398364,-0.542507, 0.628553;;, + 35;4;-0.378397,-0.401769,-0.540198, 0.631166;;, + 36;4;-0.375352,-0.404462,-0.538402, 0.633245;;, + 37;4;-0.373188,-0.406411,-0.537140, 0.634765;;, + 38;4;-0.371920,-0.407604,-0.536421, 0.635717;;, + 39;4;-0.371542,-0.408043,-0.536243, 0.636101;;, + 40;4;-0.371645,-0.408074,-0.536356, 0.636178;;, + 41;4;-0.371830,-0.408034,-0.536520, 0.636202;;, + 42;4;-0.372099,-0.407924,-0.536732, 0.636172;;, + 43;4;-0.372448,-0.407743,-0.536993, 0.636088;;, + 44;4;-0.372874,-0.407494,-0.537300, 0.635951;;, + 45;4;-0.373370,-0.407182,-0.537647, 0.635766;;, + 46;4;-0.373926,-0.406814,-0.538029, 0.635536;;, + 47;4;-0.374531,-0.406400,-0.538437, 0.635269;;, + 48;4;-0.375167,-0.405952,-0.538862, 0.634973;;, + 49;4;-0.375817,-0.405484,-0.539293, 0.634659;;, + 50;4;-0.376464,-0.405012,-0.539717, 0.634338;;, + 51;4;-0.377087,-0.404550,-0.540124, 0.634021;;, + 52;4;-0.377670,-0.404114,-0.540502, 0.633718;;, + 53;4;-0.378197,-0.403715,-0.540842, 0.633440;;, + 54;4;-0.378658,-0.403365,-0.541138, 0.633195;;, + 55;4;-0.379041,-0.403071,-0.541384, 0.632988;;, + 56;4;-0.379342,-0.402839,-0.541577, 0.632823;;, + 57;4;-0.379558,-0.402672,-0.541714, 0.632705;;, + 58;4;-0.379686,-0.402572,-0.541796, 0.632634;;, + 59;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 60;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 61;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 62;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 63;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 64;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 65;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 66;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 67;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 68;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 69;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 70;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 71;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 72;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 73;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 74;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 75;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 76;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 77;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 78;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 79;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 80;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 81;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 82;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 83;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 84;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 85;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 86;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 87;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 88;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 89;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 90;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 91;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 92;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 93;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 94;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 95;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 96;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 97;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 98;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 99;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 100;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 101;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 102;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 103;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 104;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 105;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 106;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 107;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 108;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 109;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 110;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 111;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 112;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 113;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 114;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 115;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 116;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 117;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 118;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 119;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 120;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 121;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 122;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 123;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 124;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 125;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 126;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 127;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 128;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 129;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 130;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 131;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 132;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 133;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 134;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 135;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 136;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 137;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 138;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 139;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 140;4;-0.385652,-0.397309,-0.545323, 0.628577;;, + 141;4;-0.402334,-0.382576,-0.555180, 0.617217;;, + 142;4;-0.423755,-0.363660,-0.567837, 0.602630;;, + 143;4;-0.440438,-0.348928,-0.577695, 0.591270;;, + 144;4;-0.446361,-0.343698,-0.581195, 0.587236;;, + 145;4;-0.440438,-0.348928,-0.577695, 0.591270;;, + 146;4;-0.423755,-0.363660,-0.567837, 0.602630;;, + 147;4;-0.402334,-0.382576,-0.555180, 0.617217;;, + 148;4;-0.385652,-0.397309,-0.545323, 0.628577;;, + 149;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 150;4;-0.385652,-0.397309,-0.545323, 0.628577;;, + 151;4;-0.402334,-0.382576,-0.555180, 0.617217;;, + 152;4;-0.423755,-0.363660,-0.567837, 0.602630;;, + 153;4;-0.440438,-0.348928,-0.577695, 0.591270;;, + 154;4;-0.446361,-0.343698,-0.581195, 0.587236;;, + 155;4;-0.440438,-0.348928,-0.577695, 0.591270;;, + 156;4;-0.423755,-0.363660,-0.567837, 0.602630;;, + 157;4;-0.402334,-0.382576,-0.555180, 0.617217;;, + 158;4;-0.385652,-0.397309,-0.545323, 0.628577;;, + 159;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 160;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 161;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 162;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 163;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 164;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 165;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 166;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 167;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 168;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 169;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 170;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 171;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 172;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 173;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 174;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 175;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 176;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 177;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 178;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 179;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 180;4;-0.383627,-0.398602,-0.543913, 0.629358;;, + 181;4;-0.395358,-0.386753,-0.550205, 0.619571;;, + 182;4;-0.414433,-0.367486,-0.560434, 0.603656;;, + 183;4;-0.439382,-0.342286,-0.573813, 0.582841;;, + 184;4;-0.467646,-0.313739,-0.588969, 0.559260;;, + 185;4;-0.495909,-0.285192,-0.604126, 0.535680;;, + 186;4;-0.520858,-0.259993,-0.617505, 0.514865;;, + 187;4;-0.539933,-0.240726,-0.627734, 0.498951;;, + 188;4;-0.551665,-0.228877,-0.634025, 0.489163;;, + 189;4;-0.555563,-0.224940,-0.636116, 0.485911;;, + 190;4;-0.549242,-0.232253,-0.633125, 0.492305;;, + 191;4;-0.530164,-0.254070,-0.623991, 0.511300;;, + 192;4;-0.502253,-0.285357,-0.610356, 0.538326;;, + 193;4;-0.473867,-0.316098,-0.596023, 0.564508;;, + 194;4;-0.451706,-0.338592,-0.584188, 0.583131;;, + 195;4;-0.432380,-0.356668,-0.573202, 0.597511;;, + 196;4;-0.411975,-0.374964,-0.561264, 0.611740;;, + 197;4;-0.394312,-0.390272,-0.550703, 0.623418;;, + 198;4;-0.383216,-0.399645,-0.543964, 0.630459;;, + 199;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 200;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 201;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 202;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 203;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 204;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 205;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 206;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 207;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 208;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 209;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 210;4;-0.400993,-0.378907,-0.552300, 0.612268;;, + 211;4;-0.460890,-0.312344,-0.581810, 0.554970;;, + 212;4;-0.537796,-0.226878,-0.619701, 0.481400;;, + 213;4;-0.597692,-0.160315,-0.649211, 0.424102;;, + 214;4;-0.618957,-0.136683,-0.659688, 0.403760;;, + 215;4;-0.608725,-0.146498,-0.653978, 0.411669;;, + 216;4;-0.577389,-0.176625,-0.636518, 0.435972;;, + 217;4;-0.530391,-0.221968,-0.610400, 0.472615;;, + 218;4;-0.480628,-0.270247,-0.582861, 0.511737;;, + 219;4;-0.439046,-0.310945,-0.560003, 0.544858;;, + 220;4;-0.397563,-0.351748,-0.537284, 0.578142;;, + 221;4;-0.348146,-0.400393,-0.510239, 0.617840;;, + 222;4;-0.301780,-0.446406,-0.485023, 0.655536;;, + 223;4;-0.271301,-0.477443,-0.468786, 0.681268;;, + 224;4;-0.262038,-0.488284,-0.464459, 0.690791;;, + 225;4;-0.264095,-0.488398,-0.466504, 0.691721;;, + 226;4;-0.268302,-0.486609,-0.469818, 0.691183;;, + 227;4;-0.274632,-0.482923,-0.474378, 0.689171;;, + 228;4;-0.282962,-0.477424,-0.480099, 0.685742;;, + 229;4;-0.293044,-0.470304,-0.486823, 0.681030;;, + 230;4;-0.304491,-0.461871,-0.494309, 0.675259;;, + 231;4;-0.316786,-0.452552,-0.502235, 0.668745;;, + 232;4;-0.329312,-0.442862,-0.510226, 0.661871;;, + 233;4;-0.341423,-0.433349,-0.517891, 0.655051;;, + 234;4;-0.352512,-0.424536,-0.524865, 0.648684;;, + 235;4;-0.362076,-0.416866,-0.530850, 0.643108;;, + 236;4;-0.369747,-0.410670,-0.535631, 0.638582;;, + 237;4;-0.375299,-0.406159,-0.539080, 0.635274;;, + 238;4;-0.378629,-0.403440,-0.541143, 0.633275;;, + 239;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 240;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 241;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 242;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 243;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 244;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 245;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 246;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 247;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 248;4;-0.379729,-0.402539,-0.541823, 0.632611;;, + 249;4;-0.379729,-0.402539,-0.541823, 0.632611;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3; 0.000000, 0.761776, 0.000000;;, + 1;3; 0.000000, 0.761776, 0.000000;;, + 2;3; 0.000000, 0.761776, 0.000000;;, + 3;3; 0.000000, 0.761776, 0.000000;;, + 4;3; 0.000000, 0.761776, 0.000000;;, + 5;3; 0.000000, 0.761776, 0.000000;;, + 6;3; 0.000000, 0.761776, 0.000000;;, + 7;3; 0.000000, 0.761776, 0.000000;;, + 8;3; 0.000000, 0.761776, 0.000000;;, + 9;3; 0.000000, 0.761776, 0.000000;;, + 10;3; 0.000000, 0.761776, 0.000000;;, + 11;3; 0.000000, 0.761776, 0.000000;;, + 12;3; 0.000000, 0.761776, 0.000000;;, + 13;3; 0.000000, 0.761776, 0.000000;;, + 14;3; 0.000000, 0.761776, 0.000000;;, + 15;3; 0.000000, 0.761776, 0.000000;;, + 16;3; 0.000000, 0.761776, 0.000000;;, + 17;3; 0.000000, 0.761776, 0.000000;;, + 18;3; 0.000000, 0.761776, 0.000000;;, + 19;3; 0.000000, 0.761776, 0.000000;;, + 20;3; 0.000000, 0.761776, 0.000000;;, + 21;3; 0.000000, 0.761776, 0.000000;;, + 22;3; 0.000000, 0.761776, 0.000000;;, + 23;3; 0.000000, 0.761776, 0.000000;;, + 24;3; 0.000000, 0.761776, 0.000000;;, + 25;3; 0.000000, 0.761776, 0.000000;;, + 26;3; 0.000000, 0.761776, 0.000000;;, + 27;3; 0.000000, 0.761776, 0.000000;;, + 28;3; 0.000000, 0.761776, 0.000000;;, + 29;3; 0.000000, 0.761776, 0.000000;;, + 30;3; 0.000000, 0.761776, 0.000000;;, + 31;3; 0.000000, 0.761776, 0.000000;;, + 32;3; 0.000000, 0.761776, 0.000000;;, + 33;3; 0.000000, 0.761776, 0.000000;;, + 34;3; 0.000000, 0.761776, 0.000000;;, + 35;3; 0.000000, 0.761776, 0.000000;;, + 36;3; 0.000000, 0.761776, 0.000000;;, + 37;3; 0.000000, 0.761776, 0.000000;;, + 38;3; 0.000000, 0.761776, 0.000000;;, + 39;3; 0.000000, 0.761776, 0.000000;;, + 40;3; 0.000000, 0.761776, 0.000000;;, + 41;3; 0.000000, 0.761776, 0.000000;;, + 42;3; 0.000000, 0.761776, 0.000000;;, + 43;3; 0.000000, 0.761776, 0.000000;;, + 44;3; 0.000000, 0.761776, 0.000000;;, + 45;3; 0.000000, 0.761776, 0.000000;;, + 46;3; 0.000000, 0.761776, 0.000000;;, + 47;3; 0.000000, 0.761776, 0.000000;;, + 48;3; 0.000000, 0.761776, 0.000000;;, + 49;3; 0.000000, 0.761776, 0.000000;;, + 50;3; 0.000000, 0.761776, 0.000000;;, + 51;3; 0.000000, 0.761776, 0.000000;;, + 52;3; 0.000000, 0.761776, 0.000000;;, + 53;3; 0.000000, 0.761776, 0.000000;;, + 54;3; 0.000000, 0.761776, 0.000000;;, + 55;3; 0.000000, 0.761776, 0.000000;;, + 56;3; 0.000000, 0.761776, 0.000000;;, + 57;3; 0.000000, 0.761776, 0.000000;;, + 58;3; 0.000000, 0.761776, 0.000000;;, + 59;3; 0.000000, 0.761776, 0.000000;;, + 60;3; 0.000000, 0.761776, 0.000000;;, + 61;3; 0.000000, 0.761776, 0.000000;;, + 62;3; 0.000000, 0.761776, 0.000000;;, + 63;3; 0.000000, 0.761776, 0.000000;;, + 64;3; 0.000000, 0.761776, 0.000000;;, + 65;3; 0.000000, 0.761776, 0.000000;;, + 66;3; 0.000000, 0.761776, 0.000000;;, + 67;3; 0.000000, 0.761776, 0.000000;;, + 68;3; 0.000000, 0.761776, 0.000000;;, + 69;3; 0.000000, 0.761776, 0.000000;;, + 70;3; 0.000000, 0.761776, 0.000000;;, + 71;3; 0.000000, 0.761776, 0.000000;;, + 72;3; 0.000000, 0.761776, 0.000000;;, + 73;3; 0.000000, 0.761776, 0.000000;;, + 74;3; 0.000000, 0.761776, 0.000000;;, + 75;3; 0.000000, 0.761776, 0.000000;;, + 76;3; 0.000000, 0.761776, 0.000000;;, + 77;3; 0.000000, 0.761776, 0.000000;;, + 78;3; 0.000000, 0.761776, 0.000000;;, + 79;3; 0.000000, 0.761776, 0.000000;;, + 80;3; 0.000000, 0.761776, 0.000000;;, + 81;3; 0.000000, 0.761776, 0.000000;;, + 82;3; 0.000000, 0.761776, 0.000000;;, + 83;3; 0.000000, 0.761776, 0.000000;;, + 84;3; 0.000000, 0.761776, 0.000000;;, + 85;3; 0.000000, 0.761776, 0.000000;;, + 86;3; 0.000000, 0.761776, 0.000000;;, + 87;3; 0.000000, 0.761776, 0.000000;;, + 88;3; 0.000000, 0.761776, 0.000000;;, + 89;3; 0.000000, 0.761776, 0.000000;;, + 90;3; 0.000000, 0.761776, 0.000000;;, + 91;3; 0.000000, 0.761776, 0.000000;;, + 92;3; 0.000000, 0.761776, 0.000000;;, + 93;3; 0.000000, 0.761776, 0.000000;;, + 94;3; 0.000000, 0.761776, 0.000000;;, + 95;3; 0.000000, 0.761776, 0.000000;;, + 96;3; 0.000000, 0.761776, 0.000000;;, + 97;3; 0.000000, 0.761776, 0.000000;;, + 98;3; 0.000000, 0.761776, 0.000000;;, + 99;3; 0.000000, 0.761776, 0.000000;;, + 100;3; 0.000000, 0.761776, 0.000000;;, + 101;3; 0.000000, 0.761776, 0.000000;;, + 102;3; 0.000000, 0.761776, 0.000000;;, + 103;3; 0.000000, 0.761776, 0.000000;;, + 104;3; 0.000000, 0.761776, 0.000000;;, + 105;3; 0.000000, 0.761776, 0.000000;;, + 106;3; 0.000000, 0.761776, 0.000000;;, + 107;3; 0.000000, 0.761776, 0.000000;;, + 108;3; 0.000000, 0.761776, 0.000000;;, + 109;3; 0.000000, 0.761776, 0.000000;;, + 110;3; 0.000000, 0.761776, 0.000000;;, + 111;3; 0.000000, 0.761776, 0.000000;;, + 112;3; 0.000000, 0.761776, 0.000000;;, + 113;3; 0.000000, 0.761776, 0.000000;;, + 114;3; 0.000000, 0.761776, 0.000000;;, + 115;3; 0.000000, 0.761776, 0.000000;;, + 116;3; 0.000000, 0.761776, 0.000000;;, + 117;3; 0.000000, 0.761776, 0.000000;;, + 118;3; 0.000000, 0.761776, 0.000000;;, + 119;3; 0.000000, 0.761776, 0.000000;;, + 120;3; 0.000000, 0.761776, 0.000000;;, + 121;3; 0.000000, 0.761776, 0.000000;;, + 122;3; 0.000000, 0.761776, 0.000000;;, + 123;3; 0.000000, 0.761776, 0.000000;;, + 124;3; 0.000000, 0.761776, 0.000000;;, + 125;3; 0.000000, 0.761776, 0.000000;;, + 126;3; 0.000000, 0.761776, 0.000000;;, + 127;3; 0.000000, 0.761776, 0.000000;;, + 128;3; 0.000000, 0.761776, 0.000000;;, + 129;3; 0.000000, 0.761776, 0.000000;;, + 130;3; 0.000000, 0.761776, 0.000000;;, + 131;3; 0.000000, 0.761776, 0.000000;;, + 132;3; 0.000000, 0.761776, 0.000000;;, + 133;3; 0.000000, 0.761776, 0.000000;;, + 134;3; 0.000000, 0.761776, 0.000000;;, + 135;3; 0.000000, 0.761776, 0.000000;;, + 136;3; 0.000000, 0.761776, 0.000000;;, + 137;3; 0.000000, 0.761776, 0.000000;;, + 138;3; 0.000000, 0.761776, 0.000000;;, + 139;3; 0.000000, 0.761776, 0.000000;;, + 140;3; 0.000000, 0.761776, 0.000000;;, + 141;3; 0.000000, 0.761776, 0.000000;;, + 142;3; 0.000000, 0.761776, 0.000000;;, + 143;3; 0.000000, 0.761776, 0.000000;;, + 144;3; 0.000000, 0.761776, 0.000000;;, + 145;3; 0.000000, 0.761776, 0.000000;;, + 146;3; 0.000000, 0.761776, 0.000000;;, + 147;3; 0.000000, 0.761776, 0.000000;;, + 148;3; 0.000000, 0.761776, 0.000000;;, + 149;3; 0.000000, 0.761776, 0.000000;;, + 150;3; 0.000000, 0.761776, 0.000000;;, + 151;3; 0.000000, 0.761776, 0.000000;;, + 152;3; 0.000000, 0.761776, 0.000000;;, + 153;3; 0.000000, 0.761776, 0.000000;;, + 154;3; 0.000000, 0.761776, 0.000000;;, + 155;3; 0.000000, 0.761776, 0.000000;;, + 156;3; 0.000000, 0.761776, 0.000000;;, + 157;3; 0.000000, 0.761776, 0.000000;;, + 158;3; 0.000000, 0.761776, 0.000000;;, + 159;3; 0.000000, 0.761776, 0.000000;;, + 160;3; 0.000000, 0.761776, 0.000000;;, + 161;3; 0.000000, 0.761776, 0.000000;;, + 162;3; 0.000000, 0.761776, 0.000000;;, + 163;3; 0.000000, 0.761776, 0.000000;;, + 164;3; 0.000000, 0.761776, 0.000000;;, + 165;3; 0.000000, 0.761776, 0.000000;;, + 166;3; 0.000000, 0.761776, 0.000000;;, + 167;3; 0.000000, 0.761776, 0.000000;;, + 168;3; 0.000000, 0.761776, 0.000000;;, + 169;3; 0.000000, 0.761776, 0.000000;;, + 170;3; 0.000000, 0.761776, 0.000000;;, + 171;3; 0.000000, 0.761776, 0.000000;;, + 172;3; 0.000000, 0.761776, 0.000000;;, + 173;3; 0.000000, 0.761776, 0.000000;;, + 174;3; 0.000000, 0.761776, 0.000000;;, + 175;3; 0.000000, 0.761776, 0.000000;;, + 176;3; 0.000000, 0.761776, 0.000000;;, + 177;3; 0.000000, 0.761776, 0.000000;;, + 178;3; 0.000000, 0.761776, 0.000000;;, + 179;3; 0.000000, 0.761776, 0.000000;;, + 180;3; 0.000000, 0.761776,-0.000000;;, + 181;3; 0.000000, 0.761775, 0.000000;;, + 182;3;-0.000000, 0.761776,-0.000000;;, + 183;3;-0.000000, 0.761776, 0.000000;;, + 184;3; 0.000000, 0.761776, 0.000000;;, + 185;3; 0.000000, 0.761776,-0.000000;;, + 186;3;-0.000000, 0.761776, 0.000000;;, + 187;3; 0.000000, 0.761775, 0.000000;;, + 188;3;-0.000000, 0.761776, 0.000000;;, + 189;3;-0.000000, 0.761775, 0.000000;;, + 190;3;-0.000000, 0.761775,-0.000000;;, + 191;3; 0.000000, 0.761776, 0.000000;;, + 192;3; 0.000000, 0.761776,-0.000000;;, + 193;3; 0.000000, 0.761775,-0.000000;;, + 194;3;-0.000000, 0.761775, 0.000000;;, + 195;3; 0.000000, 0.761775,-0.000000;;, + 196;3; 0.000000, 0.761776, 0.000000;;, + 197;3; 0.000000, 0.761776, 0.000000;;, + 198;3;-0.000000, 0.761776, 0.000000;;, + 199;3; 0.000000, 0.761776, 0.000000;;, + 200;3; 0.000000, 0.761776, 0.000000;;, + 201;3; 0.000000, 0.761776, 0.000000;;, + 202;3; 0.000000, 0.761776, 0.000000;;, + 203;3; 0.000000, 0.761776, 0.000000;;, + 204;3; 0.000000, 0.761776, 0.000000;;, + 205;3; 0.000000, 0.761776, 0.000000;;, + 206;3; 0.000000, 0.761776, 0.000000;;, + 207;3; 0.000000, 0.761776, 0.000000;;, + 208;3; 0.000000, 0.761776, 0.000000;;, + 209;3; 0.000000, 0.761776, 0.000000;;, + 210;3;-0.000000, 0.761775, 0.000000;;, + 211;3; 0.000000, 0.761775, 0.000000;;, + 212;3;-0.000000, 0.761776,-0.000000;;, + 213;3;-0.000000, 0.761776,-0.000000;;, + 214;3;-0.000000, 0.761776,-0.000000;;, + 215;3;-0.000000, 0.761776,-0.000000;;, + 216;3;-0.000000, 0.761775, 0.000000;;, + 217;3; 0.000000, 0.761776,-0.000000;;, + 218;3; 0.000000, 0.761776,-0.000000;;, + 219;3; 0.000000, 0.761775,-0.000000;;, + 220;3;-0.000000, 0.761775,-0.000000;;, + 221;3;-0.000000, 0.761776,-0.000000;;, + 222;3;-0.000000, 0.761775, 0.000000;;, + 223;3; 0.000000, 0.761775, 0.000000;;, + 224;3;-0.000000, 0.761775, 0.000000;;, + 225;3;-0.000000, 0.761775, 0.000000;;, + 226;3; 0.000000, 0.761775, 0.000000;;, + 227;3; 0.000000, 0.761776, 0.000000;;, + 228;3;-0.000000, 0.761775, 0.000000;;, + 229;3;-0.000000, 0.761775,-0.000000;;, + 230;3;-0.000000, 0.761776,-0.000000;;, + 231;3;-0.000000, 0.761776, 0.000000;;, + 232;3;-0.000000, 0.761776,-0.000000;;, + 233;3;-0.000000, 0.761776,-0.000000;;, + 234;3;-0.000000, 0.761775,-0.000000;;, + 235;3; 0.000000, 0.761775,-0.000000;;, + 236;3;-0.000000, 0.761775,-0.000000;;, + 237;3; 0.000000, 0.761776,-0.000000;;, + 238;3; 0.000000, 0.761776,-0.000000;;, + 239;3; 0.000000, 0.761776, 0.000000;;, + 240;3; 0.000000, 0.761776, 0.000000;;, + 241;3; 0.000000, 0.761776, 0.000000;;, + 242;3; 0.000000, 0.761776, 0.000000;;, + 243;3; 0.000000, 0.761776, 0.000000;;, + 244;3; 0.000000, 0.761776, 0.000000;;, + 245;3; 0.000000, 0.761776, 0.000000;;, + 246;3; 0.000000, 0.761776, 0.000000;;, + 247;3; 0.000000, 0.761776, 0.000000;;, + 248;3; 0.000000, 0.761776, 0.000000;;, + 249;3; 0.000000, 0.761776, 0.000000;;; + } + } + Animation { + {Armature_Bone_006} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 1;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 2;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 3;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 4;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 5;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 6;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 7;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 8;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 9;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 10;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 11;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 12;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 13;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 14;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 15;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 16;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 17;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 18;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 19;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 20;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 21;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 22;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 23;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 24;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 25;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 26;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 27;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 28;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 29;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 30;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 31;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 32;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 33;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 34;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 35;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 36;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 37;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 38;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 39;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 40;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 41;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 42;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 43;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 44;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 45;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 46;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 47;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 48;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 49;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 50;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 51;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 52;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 53;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 54;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 55;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 56;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 57;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 58;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 59;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 60;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 61;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 62;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 63;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 64;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 65;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 66;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 67;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 68;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 69;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 70;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 71;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 72;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 73;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 74;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 75;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 76;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 77;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 78;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 79;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 80;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 81;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 82;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 83;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 84;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 85;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 86;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 87;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 88;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 89;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 90;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 91;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 92;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 93;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 94;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 95;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 96;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 97;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 98;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 99;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 100;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 101;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 102;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 103;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 104;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 105;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 106;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 107;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 108;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 109;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 110;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 111;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 112;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 113;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 114;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 115;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 116;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 117;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 118;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 119;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 120;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 121;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 122;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 123;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 124;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 125;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 126;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 127;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 128;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 129;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 130;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 131;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 132;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 133;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 134;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 135;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 136;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 137;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 138;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 139;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 140;4;-0.997332, 0.010306, 0.000875, 0.062699;;, + 141;4;-0.993715, 0.010317, 0.000548, 0.094092;;, + 142;4;-0.989070, 0.010331, 0.000129, 0.134399;;, + 143;4;-0.985452, 0.010342,-0.000198, 0.165792;;, + 144;4;-0.984168, 0.010345,-0.000314, 0.176937;;, + 145;4;-0.985452, 0.010342,-0.000198, 0.165792;;, + 146;4;-0.989070, 0.010331, 0.000129, 0.134399;;, + 147;4;-0.993715, 0.010317, 0.000548, 0.094092;;, + 148;4;-0.997332, 0.010306, 0.000875, 0.062699;;, + 149;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 150;4;-0.997332, 0.010306, 0.000875, 0.062699;;, + 151;4;-0.993715, 0.010317, 0.000548, 0.094092;;, + 152;4;-0.989070, 0.010331, 0.000129, 0.134399;;, + 153;4;-0.985452, 0.010342,-0.000198, 0.165792;;, + 154;4;-0.984168, 0.010345,-0.000314, 0.176937;;, + 155;4;-0.985452, 0.010342,-0.000198, 0.165792;;, + 156;4;-0.989070, 0.010331, 0.000129, 0.134399;;, + 157;4;-0.993715, 0.010317, 0.000548, 0.094092;;, + 158;4;-0.997332, 0.010306, 0.000875, 0.062699;;, + 159;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 160;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 161;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 162;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 163;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 164;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 165;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 166;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 167;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 168;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 169;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 170;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 171;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 172;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 173;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 174;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 175;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 176;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 177;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 178;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 179;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 180;4;-0.996222, 0.010292, 0.000896, 0.060490;;, + 181;4;-0.989016, 0.010259, 0.000610, 0.087384;;, + 182;4;-0.977300, 0.010205, 0.000144, 0.131113;;, + 183;4;-0.961975, 0.010136,-0.000464, 0.188308;;, + 184;4;-0.944614, 0.010056,-0.001154, 0.253100;;, + 185;4;-0.927254, 0.009977,-0.001844, 0.317893;;, + 186;4;-0.911929, 0.009907,-0.002453, 0.375088;;, + 187;4;-0.900212, 0.009854,-0.002918, 0.418816;;, + 188;4;-0.893006, 0.009821,-0.003205, 0.445711;;, + 189;4;-0.890612, 0.009810,-0.003300, 0.454647;;, + 190;4;-0.890612, 0.009810,-0.003300, 0.454647;;, + 191;4;-0.890612, 0.009810,-0.003300, 0.454647;;, + 192;4;-0.890612, 0.009810,-0.003300, 0.454647;;, + 193;4;-0.890612, 0.009810,-0.003300, 0.454647;;, + 194;4;-0.890612, 0.009810,-0.003300, 0.454647;;, + 195;4;-0.900212, 0.009854,-0.002918, 0.418816;;, + 196;4;-0.927254, 0.009977,-0.001844, 0.317893;;, + 197;4;-0.961975, 0.010136,-0.000464, 0.188308;;, + 198;4;-0.989016, 0.010259, 0.000610, 0.087384;;, + 199;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 200;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 201;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 202;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 203;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 204;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 205;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 206;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 207;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 208;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 209;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 210;4;-0.990009, 0.010266, 0.000632, 0.085376;;, + 211;4;-0.965766, 0.010163,-0.000380, 0.180644;;, + 212;4;-0.934637, 0.010030,-0.001680, 0.302968;;, + 213;4;-0.910393, 0.009927,-0.002692, 0.398236;;, + 214;4;-0.901786, 0.009890,-0.003052, 0.432059;;, + 215;4;-0.901865, 0.009891,-0.003051, 0.432032;;, + 216;4;-0.902206, 0.009894,-0.003048, 0.431780;;, + 217;4;-0.902967, 0.009901,-0.003039, 0.430986;;, + 218;4;-0.904188, 0.009911,-0.003021, 0.429450;;, + 219;4;-0.905764, 0.009924,-0.002996, 0.427239;;, + 220;4;-0.907566, 0.009938,-0.002968, 0.424786;;, + 221;4;-0.909706, 0.009955,-0.002932, 0.421521;;, + 222;4;-0.912409, 0.009974,-0.002868, 0.415698;;, + 223;4;-0.915743, 0.009993,-0.002764, 0.406065;;, + 224;4;-0.919575, 0.010013,-0.002622, 0.392778;;, + 225;4;-0.924002, 0.010032,-0.002443, 0.375955;;, + 226;4;-0.929238, 0.010054,-0.002223, 0.355160;;, + 227;4;-0.935239, 0.010078,-0.001962, 0.330570;;, + 228;4;-0.941911, 0.010104,-0.001665, 0.302576;;, + 229;4;-0.949107, 0.010131,-0.001339, 0.271828;;, + 230;4;-0.956621, 0.010158,-0.000994, 0.239259;;, + 231;4;-0.964195, 0.010185,-0.000643, 0.206050;;, + 232;4;-0.971541, 0.010211,-0.000299, 0.173535;;, + 233;4;-0.978372, 0.010235, 0.000024, 0.143066;;, + 234;4;-0.984435, 0.010255, 0.000311, 0.115855;;, + 235;4;-0.989532, 0.010272, 0.000555, 0.092855;;, + 236;4;-0.993535, 0.010286, 0.000747, 0.074709;;, + 237;4;-0.996383, 0.010295, 0.000884, 0.061752;;, + 238;4;-0.998067, 0.010301, 0.000965, 0.054069;;, + 239;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 240;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 241;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 242;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 243;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 244;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 245;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 246;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 247;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 248;4;-0.998617, 0.010303, 0.000991, 0.051554;;, + 249;4;-0.998617, 0.010303, 0.000991, 0.051554;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3;-0.000000, 0.660698,-0.000000;;, + 1;3;-0.000000, 0.660698,-0.000000;;, + 2;3;-0.000000, 0.660698,-0.000000;;, + 3;3;-0.000000, 0.660698,-0.000000;;, + 4;3; 0.000000, 0.660698,-0.000000;;, + 5;3;-0.000000, 0.660698,-0.000000;;, + 6;3;-0.000000, 0.660698,-0.000000;;, + 7;3; 0.000000, 0.660698,-0.000000;;, + 8;3;-0.000000, 0.660698,-0.000000;;, + 9;3; 0.000000, 0.660698,-0.000000;;, + 10;3;-0.000000, 0.660698,-0.000000;;, + 11;3; 0.000000, 0.660698, 0.000000;;, + 12;3;-0.000000, 0.660698,-0.000000;;, + 13;3;-0.000000, 0.660698,-0.000000;;, + 14;3; 0.000000, 0.660698, 0.000000;;, + 15;3; 0.000000, 0.660698,-0.000000;;, + 16;3;-0.000000, 0.660698,-0.000000;;, + 17;3;-0.000000, 0.660698,-0.000000;;, + 18;3;-0.000000, 0.660698,-0.000000;;, + 19;3;-0.000000, 0.660698,-0.000000;;, + 20;3;-0.000000, 0.660698,-0.000000;;, + 21;3; 0.000000, 0.660698,-0.000000;;, + 22;3;-0.000000, 0.660698, 0.000000;;, + 23;3; 0.000000, 0.660698,-0.000000;;, + 24;3;-0.000000, 0.660698,-0.000000;;, + 25;3; 0.000000, 0.660698,-0.000000;;, + 26;3;-0.000000, 0.660698,-0.000000;;, + 27;3; 0.000000, 0.660698,-0.000000;;, + 28;3; 0.000000, 0.660698,-0.000000;;, + 29;3; 0.000000, 0.660698,-0.000000;;, + 30;3; 0.000000, 0.660698,-0.000000;;, + 31;3;-0.000000, 0.660698, 0.000000;;, + 32;3; 0.000000, 0.660698,-0.000000;;, + 33;3; 0.000000, 0.660698,-0.000000;;, + 34;3; 0.000000, 0.660698,-0.000000;;, + 35;3; 0.000000, 0.660698,-0.000000;;, + 36;3; 0.000000, 0.660698,-0.000000;;, + 37;3; 0.000000, 0.660698,-0.000000;;, + 38;3; 0.000000, 0.660698,-0.000000;;, + 39;3; 0.000000, 0.660698,-0.000000;;, + 40;3;-0.000000, 0.660698,-0.000000;;, + 41;3;-0.000000, 0.660698,-0.000000;;, + 42;3; 0.000000, 0.660698,-0.000000;;, + 43;3;-0.000000, 0.660698,-0.000000;;, + 44;3; 0.000000, 0.660698,-0.000000;;, + 45;3;-0.000000, 0.660698,-0.000000;;, + 46;3; 0.000000, 0.660698,-0.000000;;, + 47;3;-0.000000, 0.660698,-0.000000;;, + 48;3;-0.000000, 0.660698,-0.000000;;, + 49;3;-0.000000, 0.660698,-0.000000;;, + 50;3;-0.000000, 0.660698,-0.000000;;, + 51;3; 0.000000, 0.660698,-0.000000;;, + 52;3; 0.000000, 0.660698,-0.000000;;, + 53;3;-0.000000, 0.660698,-0.000000;;, + 54;3;-0.000000, 0.660698,-0.000000;;, + 55;3; 0.000000, 0.660698,-0.000000;;, + 56;3; 0.000000, 0.660698,-0.000000;;, + 57;3; 0.000000, 0.660698,-0.000000;;, + 58;3;-0.000000, 0.660698,-0.000000;;, + 59;3;-0.000000, 0.660698,-0.000000;;, + 60;3;-0.000000, 0.660698,-0.000000;;, + 61;3;-0.000000, 0.660698,-0.000000;;, + 62;3;-0.000000, 0.660698,-0.000000;;, + 63;3;-0.000000, 0.660698,-0.000000;;, + 64;3;-0.000000, 0.660698,-0.000000;;, + 65;3;-0.000000, 0.660698,-0.000000;;, + 66;3;-0.000000, 0.660698,-0.000000;;, + 67;3;-0.000000, 0.660698,-0.000000;;, + 68;3;-0.000000, 0.660698,-0.000000;;, + 69;3;-0.000000, 0.660698,-0.000000;;, + 70;3;-0.000000, 0.660698,-0.000000;;, + 71;3;-0.000000, 0.660698,-0.000000;;, + 72;3;-0.000000, 0.660698,-0.000000;;, + 73;3;-0.000000, 0.660698,-0.000000;;, + 74;3;-0.000000, 0.660698,-0.000000;;, + 75;3;-0.000000, 0.660698,-0.000000;;, + 76;3;-0.000000, 0.660698,-0.000000;;, + 77;3;-0.000000, 0.660698,-0.000000;;, + 78;3;-0.000000, 0.660698,-0.000000;;, + 79;3;-0.000000, 0.660698,-0.000000;;, + 80;3;-0.000000, 0.660698,-0.000000;;, + 81;3;-0.000000, 0.660698,-0.000000;;, + 82;3;-0.000000, 0.660698,-0.000000;;, + 83;3;-0.000000, 0.660698,-0.000000;;, + 84;3;-0.000000, 0.660698,-0.000000;;, + 85;3;-0.000000, 0.660698,-0.000000;;, + 86;3;-0.000000, 0.660698,-0.000000;;, + 87;3;-0.000000, 0.660698,-0.000000;;, + 88;3;-0.000000, 0.660698,-0.000000;;, + 89;3;-0.000000, 0.660698,-0.000000;;, + 90;3;-0.000000, 0.660698,-0.000000;;, + 91;3;-0.000000, 0.660698,-0.000000;;, + 92;3;-0.000000, 0.660698,-0.000000;;, + 93;3;-0.000000, 0.660698,-0.000000;;, + 94;3;-0.000000, 0.660698,-0.000000;;, + 95;3;-0.000000, 0.660698,-0.000000;;, + 96;3;-0.000000, 0.660698,-0.000000;;, + 97;3;-0.000000, 0.660698,-0.000000;;, + 98;3;-0.000000, 0.660698,-0.000000;;, + 99;3;-0.000000, 0.660698,-0.000000;;, + 100;3;-0.000000, 0.660698,-0.000000;;, + 101;3;-0.000000, 0.660698,-0.000000;;, + 102;3;-0.000000, 0.660698,-0.000000;;, + 103;3;-0.000000, 0.660698,-0.000000;;, + 104;3;-0.000000, 0.660698,-0.000000;;, + 105;3;-0.000000, 0.660698,-0.000000;;, + 106;3;-0.000000, 0.660698,-0.000000;;, + 107;3;-0.000000, 0.660698,-0.000000;;, + 108;3;-0.000000, 0.660698,-0.000000;;, + 109;3;-0.000000, 0.660698,-0.000000;;, + 110;3;-0.000000, 0.660698,-0.000000;;, + 111;3;-0.000000, 0.660698,-0.000000;;, + 112;3;-0.000000, 0.660698,-0.000000;;, + 113;3;-0.000000, 0.660698,-0.000000;;, + 114;3;-0.000000, 0.660698,-0.000000;;, + 115;3;-0.000000, 0.660698,-0.000000;;, + 116;3;-0.000000, 0.660698,-0.000000;;, + 117;3;-0.000000, 0.660698,-0.000000;;, + 118;3;-0.000000, 0.660698,-0.000000;;, + 119;3;-0.000000, 0.660698,-0.000000;;, + 120;3;-0.000000, 0.660698,-0.000000;;, + 121;3;-0.000000, 0.660698,-0.000000;;, + 122;3;-0.000000, 0.660698,-0.000000;;, + 123;3;-0.000000, 0.660698,-0.000000;;, + 124;3;-0.000000, 0.660698,-0.000000;;, + 125;3;-0.000000, 0.660698,-0.000000;;, + 126;3;-0.000000, 0.660698,-0.000000;;, + 127;3;-0.000000, 0.660698,-0.000000;;, + 128;3;-0.000000, 0.660698,-0.000000;;, + 129;3;-0.000000, 0.660698,-0.000000;;, + 130;3;-0.000000, 0.660698,-0.000000;;, + 131;3;-0.000000, 0.660698,-0.000000;;, + 132;3;-0.000000, 0.660698,-0.000000;;, + 133;3;-0.000000, 0.660698,-0.000000;;, + 134;3;-0.000000, 0.660698,-0.000000;;, + 135;3;-0.000000, 0.660698,-0.000000;;, + 136;3;-0.000000, 0.660698,-0.000000;;, + 137;3;-0.000000, 0.660698,-0.000000;;, + 138;3;-0.000000, 0.660698,-0.000000;;, + 139;3;-0.000000, 0.660698,-0.000000;;, + 140;3;-0.000000, 0.660698,-0.000000;;, + 141;3; 0.000000, 0.660698,-0.000000;;, + 142;3;-0.000000, 0.660698,-0.000000;;, + 143;3;-0.000000, 0.660698,-0.000000;;, + 144;3;-0.000000, 0.660698,-0.000000;;, + 145;3;-0.000000, 0.660698, 0.000000;;, + 146;3;-0.000000, 0.660698,-0.000000;;, + 147;3; 0.000000, 0.660698,-0.000000;;, + 148;3;-0.000000, 0.660698,-0.000000;;, + 149;3;-0.000000, 0.660698,-0.000000;;, + 150;3;-0.000000, 0.660698,-0.000000;;, + 151;3; 0.000000, 0.660698,-0.000000;;, + 152;3;-0.000000, 0.660698,-0.000000;;, + 153;3;-0.000000, 0.660698,-0.000000;;, + 154;3;-0.000000, 0.660698,-0.000000;;, + 155;3;-0.000000, 0.660698, 0.000000;;, + 156;3;-0.000000, 0.660698,-0.000000;;, + 157;3; 0.000000, 0.660698,-0.000000;;, + 158;3;-0.000000, 0.660698,-0.000000;;, + 159;3;-0.000000, 0.660698,-0.000000;;, + 160;3;-0.000000, 0.660698,-0.000000;;, + 161;3;-0.000000, 0.660698,-0.000000;;, + 162;3;-0.000000, 0.660698,-0.000000;;, + 163;3;-0.000000, 0.660698,-0.000000;;, + 164;3;-0.000000, 0.660698,-0.000000;;, + 165;3;-0.000000, 0.660698,-0.000000;;, + 166;3;-0.000000, 0.660698,-0.000000;;, + 167;3;-0.000000, 0.660698,-0.000000;;, + 168;3;-0.000000, 0.660698,-0.000000;;, + 169;3;-0.000000, 0.660698,-0.000000;;, + 170;3;-0.000000, 0.660698,-0.000000;;, + 171;3;-0.000000, 0.660698,-0.000000;;, + 172;3;-0.000000, 0.660698,-0.000000;;, + 173;3;-0.000000, 0.660698,-0.000000;;, + 174;3;-0.000000, 0.660698,-0.000000;;, + 175;3;-0.000000, 0.660698,-0.000000;;, + 176;3;-0.000000, 0.660698,-0.000000;;, + 177;3;-0.000000, 0.660698,-0.000000;;, + 178;3;-0.000000, 0.660698,-0.000000;;, + 179;3;-0.000000, 0.660698,-0.000000;;, + 180;3;-0.000000, 0.660698,-0.000000;;, + 181;3; 0.000000, 0.660698,-0.000000;;, + 182;3; 0.000000, 0.660698,-0.000000;;, + 183;3;-0.000000, 0.660698,-0.000000;;, + 184;3; 0.000000, 0.660699,-0.000000;;, + 185;3;-0.000000, 0.660699,-0.000000;;, + 186;3;-0.000000, 0.660698,-0.000000;;, + 187;3;-0.000000, 0.660698,-0.000000;;, + 188;3; 0.000000, 0.660698, 0.000000;;, + 189;3;-0.000000, 0.660698,-0.000000;;, + 190;3;-0.000000, 0.660699,-0.000000;;, + 191;3;-0.000000, 0.660698,-0.000000;;, + 192;3;-0.000000, 0.660698,-0.000000;;, + 193;3; 0.000000, 0.660698,-0.000000;;, + 194;3;-0.000000, 0.660698,-0.000000;;, + 195;3;-0.000001, 0.660698, 0.000000;;, + 196;3; 0.000000, 0.660698, 0.000000;;, + 197;3; 0.000000, 0.660698,-0.000000;;, + 198;3;-0.000000, 0.660698,-0.000000;;, + 199;3;-0.000000, 0.660698,-0.000000;;, + 200;3;-0.000000, 0.660698,-0.000000;;, + 201;3;-0.000000, 0.660698,-0.000000;;, + 202;3;-0.000000, 0.660698,-0.000000;;, + 203;3;-0.000000, 0.660698,-0.000000;;, + 204;3;-0.000000, 0.660698,-0.000000;;, + 205;3;-0.000000, 0.660698,-0.000000;;, + 206;3;-0.000000, 0.660698,-0.000000;;, + 207;3;-0.000000, 0.660698,-0.000000;;, + 208;3;-0.000000, 0.660698,-0.000000;;, + 209;3;-0.000000, 0.660698,-0.000000;;, + 210;3;-0.000000, 0.660698,-0.000000;;, + 211;3;-0.000000, 0.660698, 0.000000;;, + 212;3;-0.000000, 0.660699, 0.000000;;, + 213;3; 0.000000, 0.660698,-0.000000;;, + 214;3; 0.000000, 0.660698, 0.000000;;, + 215;3; 0.000000, 0.660698, 0.000000;;, + 216;3; 0.000000, 0.660698, 0.000000;;, + 217;3; 0.000000, 0.660698,-0.000000;;, + 218;3; 0.000000, 0.660698,-0.000000;;, + 219;3;-0.000000, 0.660698, 0.000000;;, + 220;3;-0.000000, 0.660698,-0.000000;;, + 221;3;-0.000000, 0.660699, 0.000000;;, + 222;3; 0.000000, 0.660698, 0.000000;;, + 223;3; 0.000000, 0.660698,-0.000000;;, + 224;3; 0.000000, 0.660698,-0.000000;;, + 225;3; 0.000000, 0.660698, 0.000000;;, + 226;3; 0.000000, 0.660698,-0.000000;;, + 227;3;-0.000000, 0.660698, 0.000000;;, + 228;3;-0.000000, 0.660698,-0.000000;;, + 229;3;-0.000000, 0.660698, 0.000000;;, + 230;3; 0.000000, 0.660698, 0.000000;;, + 231;3;-0.000000, 0.660698, 0.000000;;, + 232;3; 0.000000, 0.660698,-0.000000;;, + 233;3; 0.000000, 0.660698,-0.000000;;, + 234;3; 0.000000, 0.660698,-0.000000;;, + 235;3;-0.000000, 0.660698, 0.000000;;, + 236;3;-0.000000, 0.660698,-0.000000;;, + 237;3;-0.000000, 0.660698,-0.000000;;, + 238;3; 0.000000, 0.660698, 0.000000;;, + 239;3;-0.000000, 0.660698,-0.000000;;, + 240;3;-0.000000, 0.660698,-0.000000;;, + 241;3;-0.000000, 0.660698,-0.000000;;, + 242;3;-0.000000, 0.660698,-0.000000;;, + 243;3;-0.000000, 0.660698,-0.000000;;, + 244;3;-0.000000, 0.660698,-0.000000;;, + 245;3;-0.000000, 0.660698,-0.000000;;, + 246;3;-0.000000, 0.660698,-0.000000;;, + 247;3;-0.000000, 0.660698,-0.000000;;, + 248;3;-0.000000, 0.660698,-0.000000;;, + 249;3;-0.000000, 0.660698,-0.000000;;; + } + } + Animation { + {Armature_Bone_004} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 1;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 2;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 3;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 4;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 5;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 6;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 7;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 8;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 9;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 10;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 11;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 12;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 13;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 14;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 15;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 16;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 17;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 18;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 19;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 20;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 21;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 22;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 23;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 24;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 25;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 26;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 27;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 28;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 29;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 30;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 31;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 32;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 33;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 34;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 35;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 36;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 37;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 38;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 39;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 40;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 41;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 42;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 43;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 44;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 45;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 46;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 47;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 48;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 49;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 50;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 51;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 52;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 53;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 54;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 55;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 56;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 57;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 58;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 59;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 60;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 61;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 62;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 63;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 64;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 65;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 66;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 67;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 68;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 69;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 70;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 71;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 72;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 73;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 74;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 75;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 76;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 77;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 78;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 79;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 80;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 81;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 82;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 83;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 84;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 85;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 86;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 87;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 88;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 89;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 90;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 91;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 92;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 93;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 94;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 95;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 96;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 97;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 98;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 99;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 100;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 101;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 102;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 103;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 104;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 105;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 106;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 107;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 108;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 109;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 110;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 111;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 112;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 113;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 114;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 115;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 116;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 117;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 118;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 119;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 120;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 121;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 122;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 123;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 124;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 125;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 126;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 127;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 128;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 129;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 130;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 131;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 132;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 133;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 134;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 135;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 136;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 137;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 138;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 139;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 140;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 141;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 142;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 143;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 144;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 145;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 146;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 147;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 148;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 149;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 150;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 151;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 152;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 153;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 154;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 155;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 156;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 157;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 158;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 159;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 160;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 161;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 162;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 163;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 164;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 165;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 166;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 167;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 168;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 169;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 170;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 171;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 172;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 173;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 174;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 175;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 176;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 177;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 178;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 179;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 180;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 181;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 182;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 183;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 184;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 185;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 186;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 187;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 188;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 189;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 190;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 191;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 192;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 193;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 194;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 195;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 196;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 197;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 198;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 199;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 200;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 201;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 202;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 203;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 204;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 205;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 206;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 207;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 208;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 209;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 210;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 211;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 212;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 213;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 214;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 215;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 216;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 217;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 218;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 219;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 220;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 221;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 222;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 223;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 224;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 225;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 226;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 227;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 228;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 229;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 230;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 231;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 232;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 233;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 234;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 235;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 236;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 237;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 238;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 239;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 240;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 241;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 242;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 243;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 244;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 245;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 246;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 247;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 248;4;-0.972673, 0.149616, 0.026528, 0.175551;;, + 249;4;-0.972673, 0.149616, 0.026528, 0.175551;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3; 0.000000, 0.826434, 0.000000;;, + 1;3; 0.000000, 0.826434, 0.000000;;, + 2;3; 0.000000, 0.826434, 0.000000;;, + 3;3; 0.000000, 0.826434, 0.000000;;, + 4;3; 0.000000, 0.826434, 0.000000;;, + 5;3; 0.000000, 0.826434, 0.000000;;, + 6;3; 0.000000, 0.826434, 0.000000;;, + 7;3; 0.000000, 0.826434, 0.000000;;, + 8;3; 0.000000, 0.826434, 0.000000;;, + 9;3; 0.000000, 0.826434, 0.000000;;, + 10;3; 0.000000, 0.826434, 0.000000;;, + 11;3; 0.000000, 0.826434, 0.000000;;, + 12;3; 0.000000, 0.826434, 0.000000;;, + 13;3; 0.000000, 0.826434, 0.000000;;, + 14;3; 0.000000, 0.826434, 0.000000;;, + 15;3; 0.000000, 0.826434, 0.000000;;, + 16;3; 0.000000, 0.826434, 0.000000;;, + 17;3; 0.000000, 0.826434, 0.000000;;, + 18;3; 0.000000, 0.826434, 0.000000;;, + 19;3; 0.000000, 0.826434, 0.000000;;, + 20;3; 0.000000, 0.826434, 0.000000;;, + 21;3; 0.000000, 0.826434, 0.000000;;, + 22;3; 0.000000, 0.826434, 0.000000;;, + 23;3; 0.000000, 0.826434, 0.000000;;, + 24;3; 0.000000, 0.826434, 0.000000;;, + 25;3; 0.000000, 0.826434, 0.000000;;, + 26;3; 0.000000, 0.826434, 0.000000;;, + 27;3; 0.000000, 0.826434, 0.000000;;, + 28;3; 0.000000, 0.826434, 0.000000;;, + 29;3; 0.000000, 0.826434, 0.000000;;, + 30;3; 0.000000, 0.826434, 0.000000;;, + 31;3; 0.000000, 0.826434, 0.000000;;, + 32;3; 0.000000, 0.826434, 0.000000;;, + 33;3; 0.000000, 0.826434, 0.000000;;, + 34;3; 0.000000, 0.826434, 0.000000;;, + 35;3; 0.000000, 0.826434, 0.000000;;, + 36;3; 0.000000, 0.826434, 0.000000;;, + 37;3; 0.000000, 0.826434, 0.000000;;, + 38;3; 0.000000, 0.826434, 0.000000;;, + 39;3; 0.000000, 0.826434, 0.000000;;, + 40;3; 0.000000, 0.826434, 0.000000;;, + 41;3; 0.000000, 0.826434, 0.000000;;, + 42;3; 0.000000, 0.826434, 0.000000;;, + 43;3; 0.000000, 0.826434, 0.000000;;, + 44;3; 0.000000, 0.826434, 0.000000;;, + 45;3; 0.000000, 0.826434, 0.000000;;, + 46;3; 0.000000, 0.826434, 0.000000;;, + 47;3; 0.000000, 0.826434, 0.000000;;, + 48;3; 0.000000, 0.826434, 0.000000;;, + 49;3; 0.000000, 0.826434, 0.000000;;, + 50;3; 0.000000, 0.826434, 0.000000;;, + 51;3; 0.000000, 0.826434, 0.000000;;, + 52;3; 0.000000, 0.826434, 0.000000;;, + 53;3; 0.000000, 0.826434, 0.000000;;, + 54;3; 0.000000, 0.826434, 0.000000;;, + 55;3; 0.000000, 0.826434, 0.000000;;, + 56;3; 0.000000, 0.826434, 0.000000;;, + 57;3; 0.000000, 0.826434, 0.000000;;, + 58;3; 0.000000, 0.826434, 0.000000;;, + 59;3; 0.000000, 0.826434, 0.000000;;, + 60;3; 0.000000, 0.826434, 0.000000;;, + 61;3; 0.000000, 0.826434, 0.000000;;, + 62;3; 0.000000, 0.826434, 0.000000;;, + 63;3; 0.000000, 0.826434, 0.000000;;, + 64;3; 0.000000, 0.826434, 0.000000;;, + 65;3; 0.000000, 0.826434, 0.000000;;, + 66;3; 0.000000, 0.826434, 0.000000;;, + 67;3; 0.000000, 0.826434, 0.000000;;, + 68;3; 0.000000, 0.826434, 0.000000;;, + 69;3; 0.000000, 0.826434, 0.000000;;, + 70;3; 0.000000, 0.826434, 0.000000;;, + 71;3; 0.000000, 0.826434, 0.000000;;, + 72;3; 0.000000, 0.826434, 0.000000;;, + 73;3; 0.000000, 0.826434, 0.000000;;, + 74;3; 0.000000, 0.826434, 0.000000;;, + 75;3; 0.000000, 0.826434, 0.000000;;, + 76;3; 0.000000, 0.826434, 0.000000;;, + 77;3; 0.000000, 0.826434, 0.000000;;, + 78;3; 0.000000, 0.826434, 0.000000;;, + 79;3; 0.000000, 0.826434, 0.000000;;, + 80;3; 0.000000, 0.826434, 0.000000;;, + 81;3; 0.000000, 0.826434, 0.000000;;, + 82;3; 0.000000, 0.826434, 0.000000;;, + 83;3; 0.000000, 0.826434, 0.000000;;, + 84;3; 0.000000, 0.826434, 0.000000;;, + 85;3; 0.000000, 0.826434, 0.000000;;, + 86;3; 0.000000, 0.826434, 0.000000;;, + 87;3; 0.000000, 0.826434, 0.000000;;, + 88;3; 0.000000, 0.826434, 0.000000;;, + 89;3; 0.000000, 0.826434, 0.000000;;, + 90;3; 0.000000, 0.826434, 0.000000;;, + 91;3; 0.000000, 0.826434, 0.000000;;, + 92;3; 0.000000, 0.826434, 0.000000;;, + 93;3; 0.000000, 0.826434, 0.000000;;, + 94;3; 0.000000, 0.826434, 0.000000;;, + 95;3; 0.000000, 0.826434, 0.000000;;, + 96;3; 0.000000, 0.826434, 0.000000;;, + 97;3; 0.000000, 0.826434, 0.000000;;, + 98;3; 0.000000, 0.826434, 0.000000;;, + 99;3; 0.000000, 0.826434, 0.000000;;, + 100;3; 0.000000, 0.826434, 0.000000;;, + 101;3; 0.000000, 0.826434, 0.000000;;, + 102;3; 0.000000, 0.826434, 0.000000;;, + 103;3; 0.000000, 0.826434, 0.000000;;, + 104;3; 0.000000, 0.826434, 0.000000;;, + 105;3; 0.000000, 0.826434, 0.000000;;, + 106;3; 0.000000, 0.826434, 0.000000;;, + 107;3; 0.000000, 0.826434, 0.000000;;, + 108;3; 0.000000, 0.826434, 0.000000;;, + 109;3; 0.000000, 0.826434, 0.000000;;, + 110;3; 0.000000, 0.826434, 0.000000;;, + 111;3; 0.000000, 0.826434, 0.000000;;, + 112;3; 0.000000, 0.826434, 0.000000;;, + 113;3; 0.000000, 0.826434, 0.000000;;, + 114;3; 0.000000, 0.826434, 0.000000;;, + 115;3; 0.000000, 0.826434, 0.000000;;, + 116;3; 0.000000, 0.826434, 0.000000;;, + 117;3; 0.000000, 0.826434, 0.000000;;, + 118;3; 0.000000, 0.826434, 0.000000;;, + 119;3; 0.000000, 0.826434, 0.000000;;, + 120;3; 0.000000, 0.826434, 0.000000;;, + 121;3; 0.000000, 0.826434, 0.000000;;, + 122;3; 0.000000, 0.826434, 0.000000;;, + 123;3; 0.000000, 0.826434, 0.000000;;, + 124;3; 0.000000, 0.826434, 0.000000;;, + 125;3; 0.000000, 0.826434, 0.000000;;, + 126;3; 0.000000, 0.826434, 0.000000;;, + 127;3; 0.000000, 0.826434, 0.000000;;, + 128;3; 0.000000, 0.826434, 0.000000;;, + 129;3; 0.000000, 0.826434, 0.000000;;, + 130;3; 0.000000, 0.826434, 0.000000;;, + 131;3; 0.000000, 0.826434, 0.000000;;, + 132;3; 0.000000, 0.826434, 0.000000;;, + 133;3; 0.000000, 0.826434, 0.000000;;, + 134;3; 0.000000, 0.826434, 0.000000;;, + 135;3; 0.000000, 0.826434, 0.000000;;, + 136;3; 0.000000, 0.826434, 0.000000;;, + 137;3; 0.000000, 0.826434, 0.000000;;, + 138;3; 0.000000, 0.826434, 0.000000;;, + 139;3; 0.000000, 0.826434, 0.000000;;, + 140;3; 0.000000, 0.826434, 0.000000;;, + 141;3; 0.000000, 0.826434, 0.000000;;, + 142;3; 0.000000, 0.826434, 0.000000;;, + 143;3; 0.000000, 0.826434, 0.000000;;, + 144;3; 0.000000, 0.826434, 0.000000;;, + 145;3; 0.000000, 0.826434, 0.000000;;, + 146;3; 0.000000, 0.826434, 0.000000;;, + 147;3; 0.000000, 0.826434, 0.000000;;, + 148;3; 0.000000, 0.826434, 0.000000;;, + 149;3; 0.000000, 0.826434, 0.000000;;, + 150;3; 0.000000, 0.826434, 0.000000;;, + 151;3; 0.000000, 0.826434, 0.000000;;, + 152;3; 0.000000, 0.826434, 0.000000;;, + 153;3; 0.000000, 0.826434, 0.000000;;, + 154;3; 0.000000, 0.826434, 0.000000;;, + 155;3; 0.000000, 0.826434, 0.000000;;, + 156;3; 0.000000, 0.826434, 0.000000;;, + 157;3; 0.000000, 0.826434, 0.000000;;, + 158;3; 0.000000, 0.826434, 0.000000;;, + 159;3; 0.000000, 0.826434, 0.000000;;, + 160;3; 0.000000, 0.826434, 0.000000;;, + 161;3; 0.000000, 0.826434, 0.000000;;, + 162;3; 0.000000, 0.826434, 0.000000;;, + 163;3; 0.000000, 0.826434, 0.000000;;, + 164;3; 0.000000, 0.826434, 0.000000;;, + 165;3; 0.000000, 0.826434, 0.000000;;, + 166;3; 0.000000, 0.826434, 0.000000;;, + 167;3; 0.000000, 0.826434, 0.000000;;, + 168;3; 0.000000, 0.826434, 0.000000;;, + 169;3; 0.000000, 0.826434, 0.000000;;, + 170;3; 0.000000, 0.826434, 0.000000;;, + 171;3; 0.000000, 0.826434, 0.000000;;, + 172;3; 0.000000, 0.826434, 0.000000;;, + 173;3; 0.000000, 0.826434, 0.000000;;, + 174;3; 0.000000, 0.826434, 0.000000;;, + 175;3; 0.000000, 0.826434, 0.000000;;, + 176;3; 0.000000, 0.826434, 0.000000;;, + 177;3; 0.000000, 0.826434, 0.000000;;, + 178;3; 0.000000, 0.826434, 0.000000;;, + 179;3; 0.000000, 0.826434, 0.000000;;, + 180;3; 0.000000, 0.826434, 0.000000;;, + 181;3; 0.000000, 0.826434, 0.000000;;, + 182;3; 0.000000, 0.826434, 0.000000;;, + 183;3; 0.000000, 0.826434, 0.000000;;, + 184;3; 0.000000, 0.826434, 0.000000;;, + 185;3; 0.000000, 0.826434, 0.000000;;, + 186;3;-0.000000, 0.826434,-0.000000;;, + 187;3;-0.000000, 0.826434,-0.000000;;, + 188;3;-0.000000, 0.826434, 0.000000;;, + 189;3;-0.000000, 0.826434, 0.000000;;, + 190;3;-0.000000, 0.826434,-0.000000;;, + 191;3; 0.000000, 0.826434, 0.000000;;, + 192;3; 0.000000, 0.826434, 0.000000;;, + 193;3; 0.000000, 0.826434, 0.000000;;, + 194;3; 0.000000, 0.826434,-0.000000;;, + 195;3; 0.000000, 0.826434,-0.000000;;, + 196;3; 0.000000, 0.826434, 0.000000;;, + 197;3; 0.000000, 0.826434,-0.000000;;, + 198;3; 0.000000, 0.826434,-0.000000;;, + 199;3; 0.000000, 0.826434, 0.000000;;, + 200;3; 0.000000, 0.826434, 0.000000;;, + 201;3; 0.000000, 0.826434, 0.000000;;, + 202;3; 0.000000, 0.826434, 0.000000;;, + 203;3; 0.000000, 0.826434, 0.000000;;, + 204;3; 0.000000, 0.826434, 0.000000;;, + 205;3; 0.000000, 0.826434, 0.000000;;, + 206;3; 0.000000, 0.826434, 0.000000;;, + 207;3; 0.000000, 0.826434, 0.000000;;, + 208;3; 0.000000, 0.826434, 0.000000;;, + 209;3; 0.000000, 0.826434, 0.000000;;, + 210;3;-0.000000, 0.826434, 0.000000;;, + 211;3;-0.000000, 0.826434, 0.000000;;, + 212;3; 0.000000, 0.826434,-0.000000;;, + 213;3; 0.000000, 0.826434, 0.000000;;, + 214;3; 0.000000, 0.826434, 0.000000;;, + 215;3;-0.000000, 0.826434,-0.000000;;, + 216;3;-0.000000, 0.826434,-0.000000;;, + 217;3;-0.000000, 0.826434,-0.000000;;, + 218;3;-0.000000, 0.826434, 0.000000;;, + 219;3;-0.000000, 0.826434,-0.000000;;, + 220;3;-0.000000, 0.826434, 0.000000;;, + 221;3; 0.000000, 0.826434, 0.000000;;, + 222;3;-0.000000, 0.826434, 0.000000;;, + 223;3; 0.000000, 0.826434,-0.000000;;, + 224;3; 0.000000, 0.826434,-0.000000;;, + 225;3; 0.000000, 0.826434, 0.000000;;, + 226;3; 0.000000, 0.826434, 0.000000;;, + 227;3; 0.000000, 0.826434, 0.000000;;, + 228;3;-0.000000, 0.826434, 0.000000;;, + 229;3; 0.000000, 0.826434, 0.000000;;, + 230;3; 0.000000, 0.826434, 0.000000;;, + 231;3; 0.000000, 0.826434,-0.000000;;, + 232;3;-0.000000, 0.826434,-0.000000;;, + 233;3; 0.000000, 0.826434, 0.000000;;, + 234;3; 0.000000, 0.826434, 0.000000;;, + 235;3; 0.000000, 0.826434, 0.000000;;, + 236;3; 0.000000, 0.826434, 0.000000;;, + 237;3; 0.000000, 0.826434, 0.000000;;, + 238;3; 0.000000, 0.826434, 0.000000;;, + 239;3; 0.000000, 0.826434, 0.000000;;, + 240;3; 0.000000, 0.826434, 0.000000;;, + 241;3; 0.000000, 0.826434, 0.000000;;, + 242;3; 0.000000, 0.826434, 0.000000;;, + 243;3; 0.000000, 0.826434, 0.000000;;, + 244;3; 0.000000, 0.826434, 0.000000;;, + 245;3; 0.000000, 0.826434, 0.000000;;, + 246;3; 0.000000, 0.826434, 0.000000;;, + 247;3; 0.000000, 0.826434, 0.000000;;, + 248;3; 0.000000, 0.826434, 0.000000;;, + 249;3; 0.000000, 0.826434, 0.000000;;; + } + } + Animation { + {Armature_Bone_007} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 1;4;-0.515659,-0.636389,-0.395534, 0.415448;;, + 2;4;-0.516387,-0.635621,-0.396654, 0.414436;;, + 3;4;-0.517605,-0.634337,-0.398525, 0.412744;;, + 4;4;-0.519301,-0.632548,-0.401133, 0.410387;;, + 5;4;-0.521451,-0.630280,-0.404438, 0.407399;;, + 6;4;-0.524013,-0.627579,-0.408374, 0.403840;;, + 7;4;-0.526923,-0.624511,-0.412847, 0.399796;;, + 8;4;-0.530100,-0.621161,-0.417729, 0.395382;;, + 9;4;-0.533444,-0.617634,-0.422869, 0.390735;;, + 10;4;-0.536846,-0.614047,-0.428097, 0.386009;;, + 11;4;-0.540190,-0.610520,-0.433237, 0.381362;;, + 12;4;-0.543367,-0.607170,-0.438119, 0.376948;;, + 13;4;-0.546277,-0.604101,-0.442591, 0.372904;;, + 14;4;-0.548838,-0.601400,-0.446528, 0.369345;;, + 15;4;-0.550988,-0.599133,-0.449833, 0.366357;;, + 16;4;-0.552685,-0.597344,-0.452440, 0.364000;;, + 17;4;-0.553903,-0.596060,-0.454312, 0.362308;;, + 18;4;-0.554631,-0.595291,-0.455431, 0.361296;;, + 19;4;-0.554872,-0.595037,-0.455802, 0.360961;;, + 20;4;-0.554616,-0.595287,-0.455415, 0.361298;;, + 21;4;-0.553843,-0.596044,-0.454247, 0.362316;;, + 22;4;-0.552551,-0.597310,-0.452293, 0.364019;;, + 23;4;-0.550749,-0.599077,-0.449568, 0.366395;;, + 24;4;-0.548460,-0.601325,-0.446106, 0.369416;;, + 25;4;-0.545722,-0.604014,-0.441965, 0.373031;;, + 26;4;-0.542594,-0.607091,-0.437232, 0.377164;;, + 27;4;-0.539154,-0.610481,-0.432025, 0.381716;;, + 28;4;-0.535495,-0.614092,-0.426485, 0.386563;;, + 29;4;-0.531725,-0.617821,-0.420774, 0.391564;;, + 30;4;-0.527960,-0.621555,-0.415067, 0.396569;;, + 31;4;-0.524314,-0.625182,-0.409537, 0.401427;;, + 32;4;-0.520896,-0.628599,-0.404346, 0.405996;;, + 33;4;-0.517798,-0.631712,-0.399636, 0.410154;;, + 34;4;-0.515097,-0.634448,-0.395524, 0.413798;;, + 35;4;-0.512852,-0.636749,-0.392095, 0.416855;;, + 36;4;-0.511099,-0.638578,-0.389408, 0.419271;;, + 37;4;-0.509861,-0.639911,-0.387496, 0.421018;;, + 38;4;-0.509147,-0.640741,-0.386373, 0.422084;;, + 39;4;-0.508954,-0.641069,-0.386035, 0.422471;;, + 40;4;-0.509050,-0.641118,-0.386131, 0.422482;;, + 41;4;-0.509208,-0.641107,-0.386322, 0.422412;;, + 42;4;-0.509430,-0.641035,-0.386608, 0.422259;;, + 43;4;-0.509713,-0.640903,-0.386987, 0.422025;;, + 44;4;-0.510054,-0.640712,-0.387455, 0.421713;;, + 45;4;-0.510449,-0.640466,-0.388004, 0.421328;;, + 46;4;-0.510889,-0.640172,-0.388624, 0.420879;;, + 47;4;-0.511365,-0.639837,-0.389299, 0.420378;;, + 48;4;-0.511864,-0.639472,-0.390012, 0.419839;;, + 49;4;-0.512374,-0.639088,-0.390743, 0.419279;;, + 50;4;-0.512879,-0.638699,-0.391471, 0.418715;;, + 51;4;-0.513365,-0.638318,-0.392174, 0.418165;;, + 52;4;-0.513819,-0.637956,-0.392832, 0.417646;;, + 53;4;-0.514229,-0.637625,-0.393429, 0.417174;;, + 54;4;-0.514587,-0.637333,-0.393950, 0.416759;;, + 55;4;-0.514884,-0.637088,-0.394384, 0.416411;;, + 56;4;-0.515118,-0.636894,-0.394726, 0.416137;;, + 57;4;-0.515285,-0.636755,-0.394970, 0.415940;;, + 58;4;-0.515385,-0.636671,-0.395116, 0.415822;;, + 59;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 60;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 61;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 62;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 63;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 64;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 65;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 66;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 67;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 68;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 69;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 70;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 71;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 72;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 73;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 74;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 75;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 76;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 77;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 78;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 79;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 80;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 81;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 82;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 83;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 84;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 85;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 86;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 87;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 88;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 89;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 90;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 91;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 92;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 93;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 94;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 95;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 96;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 97;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 98;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 99;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 100;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 101;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 102;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 103;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 104;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 105;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 106;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 107;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 108;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 109;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 110;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 111;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 112;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 113;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 114;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 115;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 116;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 117;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 118;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 119;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 120;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 121;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 122;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 123;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 124;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 125;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 126;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 127;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 128;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 129;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 130;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 131;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 132;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 133;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 134;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 135;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 136;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 137;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 138;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 139;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 140;4;-0.519167,-0.632648,-0.400940, 0.410533;;, + 141;4;-0.529727,-0.621393,-0.417211, 0.395746;;, + 142;4;-0.543287,-0.606942,-0.438102, 0.376759;;, + 143;4;-0.553848,-0.595687,-0.454372, 0.361972;;, + 144;4;-0.557597,-0.591691,-0.460149, 0.356722;;, + 145;4;-0.553848,-0.595687,-0.454372, 0.361972;;, + 146;4;-0.543287,-0.606942,-0.438102, 0.376759;;, + 147;4;-0.529727,-0.621393,-0.417211, 0.395746;;, + 148;4;-0.519167,-0.632648,-0.400940, 0.410533;;, + 149;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 150;4;-0.519167,-0.632648,-0.400940, 0.410533;;, + 151;4;-0.529727,-0.621393,-0.417211, 0.395746;;, + 152;4;-0.543287,-0.606942,-0.438102, 0.376759;;, + 153;4;-0.553848,-0.595687,-0.454372, 0.361972;;, + 154;4;-0.557597,-0.591691,-0.460149, 0.356722;;, + 155;4;-0.553848,-0.595687,-0.454372, 0.361972;;, + 156;4;-0.543287,-0.606942,-0.438102, 0.376759;;, + 157;4;-0.529727,-0.621393,-0.417211, 0.395746;;, + 158;4;-0.519167,-0.632648,-0.400940, 0.410533;;, + 159;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 160;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 161;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 162;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 163;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 164;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 165;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 166;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 167;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 168;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 169;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 170;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 171;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 172;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 173;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 174;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 175;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 176;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 177;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 178;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 179;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 180;4;-0.517803,-0.633175,-0.399151, 0.411554;;, + 181;4;-0.524982,-0.622736,-0.411150, 0.398827;;, + 182;4;-0.536656,-0.605762,-0.430659, 0.378134;;, + 183;4;-0.551924,-0.583561,-0.456177, 0.351068;;, + 184;4;-0.569221,-0.558412,-0.485084, 0.320407;;, + 185;4;-0.586517,-0.533262,-0.513991, 0.289746;;, + 186;4;-0.601785,-0.511061,-0.539509, 0.262681;;, + 187;4;-0.613459,-0.494087,-0.559018, 0.241988;;, + 188;4;-0.620638,-0.483648,-0.571017, 0.229261;;, + 189;4;-0.623024,-0.480179,-0.575004, 0.225032;;, + 190;4;-0.617019,-0.490586,-0.564405, 0.237283;;, + 191;4;-0.599355,-0.520635,-0.533415, 0.272782;;, + 192;4;-0.574661,-0.561199,-0.490578, 0.321024;;, + 193;4;-0.551509,-0.596645,-0.451285, 0.363775;;, + 194;4;-0.536168,-0.616235,-0.426559, 0.388364;;, + 195;4;-0.526702,-0.625545,-0.412238, 0.400872;;, + 196;4;-0.520101,-0.632037,-0.402251, 0.409594;;, + 197;4;-0.516659,-0.635422,-0.397042, 0.414142;;, + 198;4;-0.515546,-0.636517,-0.395359, 0.415613;;, + 199;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 200;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 201;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 202;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 203;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 204;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 205;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 206;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 207;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 208;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 209;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 210;4;-0.527069,-0.616425,-0.415740, 0.391986;;, + 211;4;-0.559890,-0.559476,-0.473695, 0.324956;;, + 212;4;-0.602030,-0.486354,-0.548109, 0.238891;;, + 213;4;-0.634851,-0.429405,-0.606064, 0.171861;;, + 214;4;-0.646503,-0.409187,-0.626640, 0.148064;;, + 215;4;-0.640317,-0.417033,-0.616688, 0.157928;;, + 216;4;-0.621395,-0.441144,-0.586208, 0.188207;;, + 217;4;-0.593076,-0.477497,-0.540502, 0.233781;;, + 218;4;-0.563190,-0.516313,-0.492115, 0.282309;;, + 219;4;-0.538351,-0.549180,-0.451696, 0.323223;;, + 220;4;-0.513645,-0.582211,-0.411378, 0.364244;;, + 221;4;-0.484229,-0.621607,-0.363351, 0.413151;;, + 222;4;-0.456767,-0.659020,-0.318303, 0.459417;;, + 223;4;-0.439010,-0.684568,-0.288716, 0.490635;;, + 224;4;-0.434138,-0.694038,-0.279772, 0.501560;;, + 225;4;-0.436160,-0.694986,-0.281842, 0.501704;;, + 226;4;-0.439540,-0.694478,-0.286010, 0.499940;;, + 227;4;-0.444257,-0.692511,-0.292247, 0.496270;;, + 228;4;-0.450222,-0.689139,-0.300434, 0.490780;;, + 229;4;-0.457269,-0.684495,-0.310327, 0.483662;;, + 230;4;-0.465141,-0.678800,-0.321548, 0.475224;;, + 231;4;-0.473497,-0.672367,-0.333590, 0.465895;;, + 232;4;-0.481937,-0.665575,-0.345852, 0.456190;;, + 233;4;-0.490044,-0.658835,-0.357704, 0.446660;;, + 234;4;-0.497430,-0.652540,-0.368552, 0.437830;;, + 235;4;-0.503773,-0.647026,-0.377906, 0.430144;;, + 236;4;-0.508844,-0.642550,-0.385406, 0.423933;;, + 237;4;-0.512505,-0.639278,-0.390834, 0.419412;;, + 238;4;-0.514695,-0.637301,-0.394089, 0.416686;;, + 239;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 240;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 241;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 242;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 243;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 244;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 245;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 246;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 247;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 248;4;-0.515417,-0.636643,-0.395164, 0.415783;;, + 249;4;-0.515417,-0.636643,-0.395164, 0.415783;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3;-0.000000, 0.747179, 0.000000;;, + 1;3;-0.000000, 0.747179, 0.000000;;, + 2;3;-0.000000, 0.747179, 0.000000;;, + 3;3;-0.000000, 0.747179, 0.000000;;, + 4;3;-0.000000, 0.747179, 0.000000;;, + 5;3;-0.000000, 0.747179, 0.000000;;, + 6;3;-0.000000, 0.747179, 0.000000;;, + 7;3;-0.000000, 0.747179, 0.000000;;, + 8;3;-0.000000, 0.747179, 0.000000;;, + 9;3;-0.000000, 0.747179, 0.000000;;, + 10;3;-0.000000, 0.747179, 0.000000;;, + 11;3;-0.000000, 0.747179, 0.000000;;, + 12;3;-0.000000, 0.747179, 0.000000;;, + 13;3;-0.000000, 0.747179, 0.000000;;, + 14;3;-0.000000, 0.747179, 0.000000;;, + 15;3;-0.000000, 0.747179, 0.000000;;, + 16;3;-0.000000, 0.747179, 0.000000;;, + 17;3;-0.000000, 0.747179, 0.000000;;, + 18;3;-0.000000, 0.747179, 0.000000;;, + 19;3;-0.000000, 0.747179, 0.000000;;, + 20;3;-0.000000, 0.747179, 0.000000;;, + 21;3;-0.000000, 0.747179, 0.000000;;, + 22;3;-0.000000, 0.747179, 0.000000;;, + 23;3;-0.000000, 0.747179, 0.000000;;, + 24;3;-0.000000, 0.747179, 0.000000;;, + 25;3;-0.000000, 0.747179, 0.000000;;, + 26;3;-0.000000, 0.747179, 0.000000;;, + 27;3;-0.000000, 0.747179, 0.000000;;, + 28;3;-0.000000, 0.747179, 0.000000;;, + 29;3;-0.000000, 0.747179, 0.000000;;, + 30;3;-0.000000, 0.747179, 0.000000;;, + 31;3;-0.000000, 0.747179, 0.000000;;, + 32;3;-0.000000, 0.747179, 0.000000;;, + 33;3;-0.000000, 0.747179, 0.000000;;, + 34;3;-0.000000, 0.747179, 0.000000;;, + 35;3;-0.000000, 0.747179, 0.000000;;, + 36;3;-0.000000, 0.747179, 0.000000;;, + 37;3;-0.000000, 0.747179, 0.000000;;, + 38;3;-0.000000, 0.747179, 0.000000;;, + 39;3;-0.000000, 0.747179, 0.000000;;, + 40;3;-0.000000, 0.747179, 0.000000;;, + 41;3;-0.000000, 0.747179, 0.000000;;, + 42;3;-0.000000, 0.747179, 0.000000;;, + 43;3;-0.000000, 0.747179, 0.000000;;, + 44;3;-0.000000, 0.747179, 0.000000;;, + 45;3;-0.000000, 0.747179, 0.000000;;, + 46;3;-0.000000, 0.747179, 0.000000;;, + 47;3;-0.000000, 0.747179, 0.000000;;, + 48;3;-0.000000, 0.747179, 0.000000;;, + 49;3;-0.000000, 0.747179, 0.000000;;, + 50;3;-0.000000, 0.747179, 0.000000;;, + 51;3;-0.000000, 0.747179, 0.000000;;, + 52;3;-0.000000, 0.747179, 0.000000;;, + 53;3;-0.000000, 0.747179, 0.000000;;, + 54;3;-0.000000, 0.747179, 0.000000;;, + 55;3;-0.000000, 0.747179, 0.000000;;, + 56;3;-0.000000, 0.747179, 0.000000;;, + 57;3;-0.000000, 0.747179, 0.000000;;, + 58;3;-0.000000, 0.747179, 0.000000;;, + 59;3;-0.000000, 0.747179, 0.000000;;, + 60;3;-0.000000, 0.747179, 0.000000;;, + 61;3;-0.000000, 0.747179, 0.000000;;, + 62;3;-0.000000, 0.747179, 0.000000;;, + 63;3;-0.000000, 0.747179, 0.000000;;, + 64;3;-0.000000, 0.747179, 0.000000;;, + 65;3;-0.000000, 0.747179, 0.000000;;, + 66;3;-0.000000, 0.747179, 0.000000;;, + 67;3;-0.000000, 0.747179, 0.000000;;, + 68;3;-0.000000, 0.747179, 0.000000;;, + 69;3;-0.000000, 0.747179, 0.000000;;, + 70;3;-0.000000, 0.747179, 0.000000;;, + 71;3;-0.000000, 0.747179, 0.000000;;, + 72;3;-0.000000, 0.747179, 0.000000;;, + 73;3;-0.000000, 0.747179, 0.000000;;, + 74;3;-0.000000, 0.747179, 0.000000;;, + 75;3;-0.000000, 0.747179, 0.000000;;, + 76;3;-0.000000, 0.747179, 0.000000;;, + 77;3;-0.000000, 0.747179, 0.000000;;, + 78;3;-0.000000, 0.747179, 0.000000;;, + 79;3;-0.000000, 0.747179, 0.000000;;, + 80;3;-0.000000, 0.747179, 0.000000;;, + 81;3;-0.000000, 0.747179, 0.000000;;, + 82;3;-0.000000, 0.747179, 0.000000;;, + 83;3;-0.000000, 0.747179, 0.000000;;, + 84;3;-0.000000, 0.747179, 0.000000;;, + 85;3;-0.000000, 0.747179, 0.000000;;, + 86;3;-0.000000, 0.747179, 0.000000;;, + 87;3;-0.000000, 0.747179, 0.000000;;, + 88;3;-0.000000, 0.747179, 0.000000;;, + 89;3;-0.000000, 0.747179, 0.000000;;, + 90;3;-0.000000, 0.747179, 0.000000;;, + 91;3;-0.000000, 0.747179, 0.000000;;, + 92;3;-0.000000, 0.747179, 0.000000;;, + 93;3;-0.000000, 0.747179, 0.000000;;, + 94;3;-0.000000, 0.747179, 0.000000;;, + 95;3;-0.000000, 0.747179, 0.000000;;, + 96;3;-0.000000, 0.747179, 0.000000;;, + 97;3;-0.000000, 0.747179, 0.000000;;, + 98;3;-0.000000, 0.747179, 0.000000;;, + 99;3;-0.000000, 0.747179, 0.000000;;, + 100;3;-0.000000, 0.747179, 0.000000;;, + 101;3;-0.000000, 0.747179, 0.000000;;, + 102;3;-0.000000, 0.747179, 0.000000;;, + 103;3;-0.000000, 0.747179, 0.000000;;, + 104;3;-0.000000, 0.747179, 0.000000;;, + 105;3;-0.000000, 0.747179, 0.000000;;, + 106;3;-0.000000, 0.747179, 0.000000;;, + 107;3;-0.000000, 0.747179, 0.000000;;, + 108;3;-0.000000, 0.747179, 0.000000;;, + 109;3;-0.000000, 0.747179, 0.000000;;, + 110;3;-0.000000, 0.747179, 0.000000;;, + 111;3;-0.000000, 0.747179, 0.000000;;, + 112;3;-0.000000, 0.747179, 0.000000;;, + 113;3;-0.000000, 0.747179, 0.000000;;, + 114;3;-0.000000, 0.747179, 0.000000;;, + 115;3;-0.000000, 0.747179, 0.000000;;, + 116;3;-0.000000, 0.747179, 0.000000;;, + 117;3;-0.000000, 0.747179, 0.000000;;, + 118;3;-0.000000, 0.747179, 0.000000;;, + 119;3;-0.000000, 0.747179, 0.000000;;, + 120;3;-0.000000, 0.747179, 0.000000;;, + 121;3;-0.000000, 0.747179, 0.000000;;, + 122;3;-0.000000, 0.747179, 0.000000;;, + 123;3;-0.000000, 0.747179, 0.000000;;, + 124;3;-0.000000, 0.747179, 0.000000;;, + 125;3;-0.000000, 0.747179, 0.000000;;, + 126;3;-0.000000, 0.747179, 0.000000;;, + 127;3;-0.000000, 0.747179, 0.000000;;, + 128;3;-0.000000, 0.747179, 0.000000;;, + 129;3;-0.000000, 0.747179, 0.000000;;, + 130;3;-0.000000, 0.747179, 0.000000;;, + 131;3;-0.000000, 0.747179, 0.000000;;, + 132;3;-0.000000, 0.747179, 0.000000;;, + 133;3;-0.000000, 0.747179, 0.000000;;, + 134;3;-0.000000, 0.747179, 0.000000;;, + 135;3;-0.000000, 0.747179, 0.000000;;, + 136;3;-0.000000, 0.747179, 0.000000;;, + 137;3;-0.000000, 0.747179, 0.000000;;, + 138;3;-0.000000, 0.747179, 0.000000;;, + 139;3;-0.000000, 0.747179, 0.000000;;, + 140;3;-0.000000, 0.747179, 0.000000;;, + 141;3;-0.000000, 0.747179, 0.000000;;, + 142;3;-0.000000, 0.747179, 0.000000;;, + 143;3;-0.000000, 0.747179, 0.000000;;, + 144;3;-0.000000, 0.747179, 0.000000;;, + 145;3;-0.000000, 0.747179, 0.000000;;, + 146;3;-0.000000, 0.747179, 0.000000;;, + 147;3;-0.000000, 0.747179, 0.000000;;, + 148;3;-0.000000, 0.747179, 0.000000;;, + 149;3;-0.000000, 0.747179, 0.000000;;, + 150;3;-0.000000, 0.747179, 0.000000;;, + 151;3;-0.000000, 0.747179, 0.000000;;, + 152;3;-0.000000, 0.747179, 0.000000;;, + 153;3;-0.000000, 0.747179, 0.000000;;, + 154;3;-0.000000, 0.747179, 0.000000;;, + 155;3;-0.000000, 0.747179, 0.000000;;, + 156;3;-0.000000, 0.747179, 0.000000;;, + 157;3;-0.000000, 0.747179, 0.000000;;, + 158;3;-0.000000, 0.747179, 0.000000;;, + 159;3;-0.000000, 0.747179, 0.000000;;, + 160;3;-0.000000, 0.747179, 0.000000;;, + 161;3;-0.000000, 0.747179, 0.000000;;, + 162;3;-0.000000, 0.747179, 0.000000;;, + 163;3;-0.000000, 0.747179, 0.000000;;, + 164;3;-0.000000, 0.747179, 0.000000;;, + 165;3;-0.000000, 0.747179, 0.000000;;, + 166;3;-0.000000, 0.747179, 0.000000;;, + 167;3;-0.000000, 0.747179, 0.000000;;, + 168;3;-0.000000, 0.747179, 0.000000;;, + 169;3;-0.000000, 0.747179, 0.000000;;, + 170;3;-0.000000, 0.747179, 0.000000;;, + 171;3;-0.000000, 0.747179, 0.000000;;, + 172;3;-0.000000, 0.747179, 0.000000;;, + 173;3;-0.000000, 0.747179, 0.000000;;, + 174;3;-0.000000, 0.747179, 0.000000;;, + 175;3;-0.000000, 0.747179, 0.000000;;, + 176;3;-0.000000, 0.747179, 0.000000;;, + 177;3;-0.000000, 0.747179, 0.000000;;, + 178;3;-0.000000, 0.747179, 0.000000;;, + 179;3;-0.000000, 0.747179, 0.000000;;, + 180;3; 0.000000, 0.747180, 0.000000;;, + 181;3; 0.000000, 0.747180, 0.000000;;, + 182;3; 0.000000, 0.747180,-0.000000;;, + 183;3; 0.000000, 0.747180,-0.000000;;, + 184;3; 0.000000, 0.747179,-0.000000;;, + 185;3; 0.000000, 0.747180, 0.000000;;, + 186;3; 0.000000, 0.747180, 0.000000;;, + 187;3; 0.000000, 0.747180, 0.000000;;, + 188;3; 0.000000, 0.747179, 0.000000;;, + 189;3; 0.000000, 0.747180, 0.000000;;, + 190;3; 0.000000, 0.747180,-0.000000;;, + 191;3; 0.000000, 0.747179, 0.000000;;, + 192;3; 0.000000, 0.747180, 0.000000;;, + 193;3; 0.000000, 0.747179,-0.000000;;, + 194;3; 0.000000, 0.747179, 0.000000;;, + 195;3; 0.000000, 0.747179,-0.000000;;, + 196;3; 0.000000, 0.747180, 0.000000;;, + 197;3; 0.000000, 0.747179, 0.000000;;, + 198;3;-0.000000, 0.747179, 0.000000;;, + 199;3;-0.000000, 0.747179, 0.000000;;, + 200;3;-0.000000, 0.747179, 0.000000;;, + 201;3;-0.000000, 0.747179, 0.000000;;, + 202;3;-0.000000, 0.747179, 0.000000;;, + 203;3;-0.000000, 0.747179, 0.000000;;, + 204;3;-0.000000, 0.747179, 0.000000;;, + 205;3;-0.000000, 0.747179, 0.000000;;, + 206;3;-0.000000, 0.747179, 0.000000;;, + 207;3;-0.000000, 0.747179, 0.000000;;, + 208;3;-0.000000, 0.747179, 0.000000;;, + 209;3;-0.000000, 0.747179, 0.000000;;, + 210;3;-0.000000, 0.747180, 0.000000;;, + 211;3; 0.000000, 0.747180, 0.000000;;, + 212;3; 0.000000, 0.747179,-0.000000;;, + 213;3; 0.000000, 0.747180, 0.000000;;, + 214;3; 0.000000, 0.747180,-0.000000;;, + 215;3; 0.000000, 0.747179, 0.000000;;, + 216;3; 0.000000, 0.747179, 0.000000;;, + 217;3; 0.000000, 0.747179,-0.000000;;, + 218;3; 0.000000, 0.747179,-0.000000;;, + 219;3; 0.000000, 0.747179, 0.000000;;, + 220;3;-0.000000, 0.747180,-0.000000;;, + 221;3; 0.000000, 0.747179,-0.000000;;, + 222;3; 0.000000, 0.747179, 0.000000;;, + 223;3;-0.000000, 0.747179, 0.000000;;, + 224;3; 0.000000, 0.747180,-0.000000;;, + 225;3; 0.000000, 0.747179,-0.000000;;, + 226;3; 0.000000, 0.747180,-0.000000;;, + 227;3; 0.000000, 0.747179,-0.000000;;, + 228;3; 0.000000, 0.747180,-0.000000;;, + 229;3; 0.000000, 0.747179, 0.000000;;, + 230;3; 0.000000, 0.747179, 0.000000;;, + 231;3; 0.000000, 0.747179, 0.000000;;, + 232;3; 0.000000, 0.747179, 0.000000;;, + 233;3;-0.000000, 0.747180,-0.000000;;, + 234;3; 0.000000, 0.747179,-0.000000;;, + 235;3; 0.000000, 0.747179,-0.000000;;, + 236;3; 0.000000, 0.747179,-0.000000;;, + 237;3; 0.000000, 0.747179,-0.000000;;, + 238;3;-0.000000, 0.747179,-0.000000;;, + 239;3;-0.000000, 0.747179, 0.000000;;, + 240;3;-0.000000, 0.747179, 0.000000;;, + 241;3;-0.000000, 0.747179, 0.000000;;, + 242;3;-0.000000, 0.747179, 0.000000;;, + 243;3;-0.000000, 0.747179, 0.000000;;, + 244;3;-0.000000, 0.747179, 0.000000;;, + 245;3;-0.000000, 0.747179, 0.000000;;, + 246;3;-0.000000, 0.747179, 0.000000;;, + 247;3;-0.000000, 0.747179, 0.000000;;, + 248;3;-0.000000, 0.747179, 0.000000;;, + 249;3;-0.000000, 0.747179, 0.000000;;; + } + } + Animation { + {Armature_Bone_008} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 1;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 2;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 3;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 4;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 5;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 6;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 7;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 8;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 9;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 10;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 11;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 12;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 13;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 14;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 15;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 16;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 17;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 18;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 19;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 20;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 21;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 22;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 23;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 24;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 25;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 26;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 27;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 28;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 29;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 30;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 31;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 32;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 33;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 34;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 35;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 36;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 37;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 38;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 39;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 40;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 41;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 42;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 43;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 44;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 45;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 46;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 47;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 48;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 49;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 50;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 51;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 52;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 53;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 54;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 55;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 56;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 57;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 58;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 59;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 60;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 61;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 62;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 63;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 64;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 65;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 66;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 67;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 68;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 69;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 70;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 71;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 72;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 73;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 74;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 75;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 76;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 77;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 78;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 79;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 80;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 81;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 82;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 83;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 84;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 85;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 86;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 87;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 88;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 89;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 90;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 91;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 92;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 93;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 94;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 95;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 96;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 97;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 98;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 99;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 100;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 101;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 102;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 103;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 104;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 105;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 106;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 107;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 108;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 109;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 110;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 111;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 112;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 113;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 114;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 115;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 116;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 117;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 118;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 119;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 120;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 121;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 122;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 123;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 124;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 125;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 126;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 127;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 128;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 129;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 130;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 131;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 132;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 133;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 134;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 135;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 136;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 137;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 138;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 139;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 140;4;-0.997190, 0.009803, 0.000931, 0.064991;;, + 141;4;-0.993501, 0.009816, 0.000619, 0.096376;;, + 142;4;-0.988763, 0.009834, 0.000220, 0.136673;;, + 143;4;-0.985073, 0.009847,-0.000091, 0.168058;;, + 144;4;-0.983763, 0.009852,-0.000202, 0.179200;;, + 145;4;-0.985073, 0.009847,-0.000091, 0.168058;;, + 146;4;-0.988763, 0.009834, 0.000220, 0.136673;;, + 147;4;-0.993501, 0.009816, 0.000619, 0.096376;;, + 148;4;-0.997191, 0.009803, 0.000931, 0.064991;;, + 149;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 150;4;-0.997190, 0.009803, 0.000931, 0.064991;;, + 151;4;-0.993501, 0.009816, 0.000619, 0.096376;;, + 152;4;-0.988763, 0.009834, 0.000220, 0.136673;;, + 153;4;-0.985073, 0.009847,-0.000091, 0.168058;;, + 154;4;-0.983763, 0.009852,-0.000202, 0.179200;;, + 155;4;-0.985073, 0.009847,-0.000091, 0.168058;;, + 156;4;-0.988763, 0.009834, 0.000220, 0.136673;;, + 157;4;-0.993501, 0.009816, 0.000619, 0.096376;;, + 158;4;-0.997191, 0.009803, 0.000931, 0.064991;;, + 159;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 160;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 161;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 162;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 163;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 164;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 165;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 166;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 167;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 168;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 169;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 170;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 171;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 172;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 173;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 174;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 175;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 176;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 177;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 178;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 179;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 180;4;-0.995868, 0.009787, 0.000946, 0.063192;;, + 181;4;-0.987946, 0.009754, 0.000660, 0.091312;;, + 182;4;-0.975066, 0.009701, 0.000195, 0.137033;;, + 183;4;-0.958218, 0.009631,-0.000413, 0.196833;;, + 184;4;-0.939133, 0.009551,-0.001102, 0.264577;;, + 185;4;-0.920048, 0.009472,-0.001791, 0.332321;;, + 186;4;-0.903201, 0.009401,-0.002399, 0.392121;;, + 187;4;-0.890320, 0.009348,-0.002864, 0.437842;;, + 188;4;-0.882398, 0.009315,-0.003150, 0.465962;;, + 189;4;-0.879766, 0.009304,-0.003245, 0.475305;;, + 190;4;-0.879766, 0.009304,-0.003245, 0.475305;;, + 191;4;-0.879766, 0.009304,-0.003245, 0.475305;;, + 192;4;-0.879766, 0.009304,-0.003245, 0.475305;;, + 193;4;-0.879766, 0.009304,-0.003245, 0.475305;;, + 194;4;-0.879766, 0.009304,-0.003245, 0.475305;;, + 195;4;-0.890320, 0.009348,-0.002864, 0.437842;;, + 196;4;-0.920048, 0.009472,-0.001791, 0.332321;;, + 197;4;-0.958218, 0.009631,-0.000413, 0.196833;;, + 198;4;-0.987946, 0.009754, 0.000660, 0.091312;;, + 199;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 200;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 201;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 202;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 203;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 204;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 205;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 206;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 207;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 208;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 209;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 210;4;-0.989815, 0.009767, 0.000699, 0.087652;;, + 211;4;-0.965353, 0.009678,-0.000266, 0.182865;;, + 212;4;-0.933943, 0.009564,-0.001505, 0.305117;;, + 213;4;-0.909480, 0.009475,-0.002469, 0.400330;;, + 214;4;-0.900795, 0.009444,-0.002812, 0.434133;;, + 215;4;-0.900874, 0.009445,-0.002811, 0.434106;;, + 216;4;-0.901215, 0.009448,-0.002808, 0.433855;;, + 217;4;-0.901979, 0.009454,-0.002799, 0.433062;;, + 218;4;-0.903203, 0.009463,-0.002783, 0.431530;;, + 219;4;-0.904784, 0.009475,-0.002759, 0.429322;;, + 220;4;-0.906591, 0.009489,-0.002732, 0.426873;;, + 221;4;-0.908740, 0.009505,-0.002697, 0.423613;;, + 222;4;-0.911456, 0.009522,-0.002636, 0.417796;;, + 223;4;-0.914812, 0.009540,-0.002537, 0.408171;;, + 224;4;-0.918674, 0.009556,-0.002402, 0.394893;;, + 225;4;-0.923140, 0.009573,-0.002231, 0.378080;;, + 226;4;-0.928424, 0.009592,-0.002021, 0.357297;;, + 227;4;-0.934481, 0.009613,-0.001772, 0.332721;;, + 228;4;-0.941218, 0.009634,-0.001490, 0.304741;;, + 229;4;-0.948485, 0.009657,-0.001179, 0.274011;;, + 230;4;-0.956073, 0.009680,-0.000851, 0.241459;;, + 231;4;-0.963724, 0.009702,-0.000516, 0.208266;;, + 232;4;-0.971145, 0.009723,-0.000188, 0.175769;;, + 233;4;-0.978046, 0.009743, 0.000119, 0.145315;;, + 234;4;-0.984170, 0.009760, 0.000393, 0.118118;;, + 235;4;-0.989320, 0.009774, 0.000625, 0.095130;;, + 236;4;-0.993366, 0.009785, 0.000808, 0.076992;;, + 237;4;-0.996244, 0.009792, 0.000938, 0.064043;;, + 238;4;-0.997945, 0.009797, 0.001016, 0.056363;;, + 239;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 240;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 241;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 242;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 243;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 244;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 245;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 246;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 247;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 248;4;-0.998500, 0.009798, 0.001041, 0.053849;;, + 249;4;-0.998500, 0.009798, 0.001041, 0.053849;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3; 0.000000, 0.672674,-0.000000;;, + 1;3;-0.000000, 0.672674, 0.000000;;, + 2;3; 0.000000, 0.672674, 0.000000;;, + 3;3; 0.000000, 0.672674,-0.000000;;, + 4;3;-0.000000, 0.672674, 0.000000;;, + 5;3;-0.000000, 0.672674, 0.000000;;, + 6;3;-0.000000, 0.672674,-0.000000;;, + 7;3;-0.000000, 0.672674,-0.000000;;, + 8;3;-0.000000, 0.672674,-0.000000;;, + 9;3;-0.000000, 0.672674, 0.000000;;, + 10;3; 0.000000, 0.672674,-0.000000;;, + 11;3; 0.000000, 0.672674,-0.000000;;, + 12;3; 0.000000, 0.672674,-0.000000;;, + 13;3;-0.000000, 0.672674,-0.000000;;, + 14;3;-0.000000, 0.672674,-0.000000;;, + 15;3;-0.000000, 0.672674,-0.000000;;, + 16;3;-0.000000, 0.672674, 0.000000;;, + 17;3; 0.000000, 0.672674,-0.000000;;, + 18;3;-0.000000, 0.672674, 0.000000;;, + 19;3;-0.000000, 0.672674,-0.000000;;, + 20;3; 0.000000, 0.672674,-0.000000;;, + 21;3; 0.000000, 0.672674, 0.000000;;, + 22;3; 0.000000, 0.672674,-0.000000;;, + 23;3; 0.000000, 0.672674,-0.000000;;, + 24;3; 0.000000, 0.672674,-0.000000;;, + 25;3;-0.000000, 0.672674,-0.000000;;, + 26;3;-0.000000, 0.672674,-0.000000;;, + 27;3;-0.000000, 0.672674,-0.000000;;, + 28;3;-0.000000, 0.672674, 0.000000;;, + 29;3;-0.000000, 0.672674,-0.000000;;, + 30;3;-0.000001, 0.672674, 0.000000;;, + 31;3;-0.000000, 0.672674,-0.000000;;, + 32;3;-0.000000, 0.672674,-0.000000;;, + 33;3;-0.000000, 0.672674,-0.000000;;, + 34;3;-0.000000, 0.672674,-0.000000;;, + 35;3; 0.000000, 0.672674,-0.000000;;, + 36;3;-0.000000, 0.672674,-0.000000;;, + 37;3;-0.000001, 0.672674,-0.000000;;, + 38;3;-0.000000, 0.672674,-0.000000;;, + 39;3;-0.000000, 0.672674,-0.000000;;, + 40;3;-0.000000, 0.672674, 0.000000;;, + 41;3; 0.000000, 0.672674,-0.000000;;, + 42;3; 0.000000, 0.672674,-0.000000;;, + 43;3;-0.000000, 0.672674,-0.000000;;, + 44;3; 0.000000, 0.672674, 0.000000;;, + 45;3; 0.000000, 0.672674, 0.000000;;, + 46;3;-0.000000, 0.672674,-0.000000;;, + 47;3;-0.000000, 0.672674, 0.000000;;, + 48;3;-0.000000, 0.672674,-0.000000;;, + 49;3; 0.000000, 0.672674,-0.000000;;, + 50;3; 0.000000, 0.672674,-0.000000;;, + 51;3;-0.000000, 0.672674,-0.000000;;, + 52;3;-0.000000, 0.672674, 0.000000;;, + 53;3;-0.000000, 0.672674,-0.000000;;, + 54;3; 0.000000, 0.672674,-0.000000;;, + 55;3; 0.000000, 0.672675, 0.000000;;, + 56;3;-0.000000, 0.672674,-0.000000;;, + 57;3; 0.000000, 0.672674,-0.000000;;, + 58;3; 0.000000, 0.672674,-0.000000;;, + 59;3; 0.000000, 0.672674,-0.000000;;, + 60;3; 0.000000, 0.672674,-0.000000;;, + 61;3; 0.000000, 0.672674,-0.000000;;, + 62;3; 0.000000, 0.672674,-0.000000;;, + 63;3; 0.000000, 0.672674,-0.000000;;, + 64;3; 0.000000, 0.672674,-0.000000;;, + 65;3; 0.000000, 0.672674,-0.000000;;, + 66;3; 0.000000, 0.672674,-0.000000;;, + 67;3; 0.000000, 0.672674,-0.000000;;, + 68;3; 0.000000, 0.672674,-0.000000;;, + 69;3; 0.000000, 0.672674,-0.000000;;, + 70;3; 0.000000, 0.672674,-0.000000;;, + 71;3; 0.000000, 0.672674,-0.000000;;, + 72;3; 0.000000, 0.672674,-0.000000;;, + 73;3; 0.000000, 0.672674,-0.000000;;, + 74;3; 0.000000, 0.672674,-0.000000;;, + 75;3; 0.000000, 0.672674,-0.000000;;, + 76;3; 0.000000, 0.672674,-0.000000;;, + 77;3; 0.000000, 0.672674,-0.000000;;, + 78;3; 0.000000, 0.672674,-0.000000;;, + 79;3; 0.000000, 0.672674,-0.000000;;, + 80;3; 0.000000, 0.672674,-0.000000;;, + 81;3; 0.000000, 0.672674,-0.000000;;, + 82;3; 0.000000, 0.672674,-0.000000;;, + 83;3; 0.000000, 0.672674,-0.000000;;, + 84;3; 0.000000, 0.672674,-0.000000;;, + 85;3; 0.000000, 0.672674,-0.000000;;, + 86;3; 0.000000, 0.672674,-0.000000;;, + 87;3; 0.000000, 0.672674,-0.000000;;, + 88;3; 0.000000, 0.672674,-0.000000;;, + 89;3; 0.000000, 0.672674,-0.000000;;, + 90;3; 0.000000, 0.672674,-0.000000;;, + 91;3; 0.000000, 0.672674,-0.000000;;, + 92;3; 0.000000, 0.672674,-0.000000;;, + 93;3; 0.000000, 0.672674,-0.000000;;, + 94;3; 0.000000, 0.672674,-0.000000;;, + 95;3; 0.000000, 0.672674,-0.000000;;, + 96;3; 0.000000, 0.672674,-0.000000;;, + 97;3; 0.000000, 0.672674,-0.000000;;, + 98;3; 0.000000, 0.672674,-0.000000;;, + 99;3; 0.000000, 0.672674,-0.000000;;, + 100;3; 0.000000, 0.672674,-0.000000;;, + 101;3; 0.000000, 0.672674,-0.000000;;, + 102;3; 0.000000, 0.672674,-0.000000;;, + 103;3; 0.000000, 0.672674,-0.000000;;, + 104;3; 0.000000, 0.672674,-0.000000;;, + 105;3; 0.000000, 0.672674,-0.000000;;, + 106;3; 0.000000, 0.672674,-0.000000;;, + 107;3; 0.000000, 0.672674,-0.000000;;, + 108;3; 0.000000, 0.672674,-0.000000;;, + 109;3; 0.000000, 0.672674,-0.000000;;, + 110;3; 0.000000, 0.672674,-0.000000;;, + 111;3; 0.000000, 0.672674,-0.000000;;, + 112;3; 0.000000, 0.672674,-0.000000;;, + 113;3; 0.000000, 0.672674,-0.000000;;, + 114;3; 0.000000, 0.672674,-0.000000;;, + 115;3; 0.000000, 0.672674,-0.000000;;, + 116;3; 0.000000, 0.672674,-0.000000;;, + 117;3; 0.000000, 0.672674,-0.000000;;, + 118;3; 0.000000, 0.672674,-0.000000;;, + 119;3; 0.000000, 0.672674,-0.000000;;, + 120;3; 0.000000, 0.672674,-0.000000;;, + 121;3; 0.000000, 0.672674,-0.000000;;, + 122;3; 0.000000, 0.672674,-0.000000;;, + 123;3; 0.000000, 0.672674,-0.000000;;, + 124;3; 0.000000, 0.672674,-0.000000;;, + 125;3; 0.000000, 0.672674,-0.000000;;, + 126;3; 0.000000, 0.672674,-0.000000;;, + 127;3; 0.000000, 0.672674,-0.000000;;, + 128;3; 0.000000, 0.672674,-0.000000;;, + 129;3; 0.000000, 0.672674,-0.000000;;, + 130;3; 0.000000, 0.672674,-0.000000;;, + 131;3; 0.000000, 0.672674,-0.000000;;, + 132;3; 0.000000, 0.672674,-0.000000;;, + 133;3; 0.000000, 0.672674,-0.000000;;, + 134;3; 0.000000, 0.672674,-0.000000;;, + 135;3; 0.000000, 0.672674,-0.000000;;, + 136;3; 0.000000, 0.672674,-0.000000;;, + 137;3; 0.000000, 0.672674,-0.000000;;, + 138;3; 0.000000, 0.672674,-0.000000;;, + 139;3; 0.000000, 0.672674,-0.000000;;, + 140;3;-0.000000, 0.672674,-0.000000;;, + 141;3;-0.000000, 0.672674,-0.000000;;, + 142;3; 0.000000, 0.672674, 0.000000;;, + 143;3;-0.000000, 0.672674, 0.000000;;, + 144;3; 0.000000, 0.672674,-0.000000;;, + 145;3; 0.000000, 0.672674, 0.000000;;, + 146;3; 0.000000, 0.672674, 0.000000;;, + 147;3;-0.000000, 0.672674,-0.000000;;, + 148;3;-0.000000, 0.672674,-0.000000;;, + 149;3; 0.000000, 0.672674,-0.000000;;, + 150;3;-0.000000, 0.672674,-0.000000;;, + 151;3;-0.000000, 0.672674,-0.000000;;, + 152;3; 0.000000, 0.672674, 0.000000;;, + 153;3;-0.000000, 0.672674, 0.000000;;, + 154;3; 0.000000, 0.672674,-0.000000;;, + 155;3; 0.000000, 0.672674, 0.000000;;, + 156;3; 0.000000, 0.672674, 0.000000;;, + 157;3;-0.000000, 0.672674,-0.000000;;, + 158;3;-0.000000, 0.672674,-0.000000;;, + 159;3; 0.000000, 0.672674,-0.000000;;, + 160;3; 0.000000, 0.672674,-0.000000;;, + 161;3; 0.000000, 0.672674,-0.000000;;, + 162;3; 0.000000, 0.672674,-0.000000;;, + 163;3; 0.000000, 0.672674,-0.000000;;, + 164;3; 0.000000, 0.672674,-0.000000;;, + 165;3; 0.000000, 0.672674,-0.000000;;, + 166;3; 0.000000, 0.672674,-0.000000;;, + 167;3; 0.000000, 0.672674,-0.000000;;, + 168;3; 0.000000, 0.672674,-0.000000;;, + 169;3; 0.000000, 0.672674,-0.000000;;, + 170;3; 0.000000, 0.672674,-0.000000;;, + 171;3; 0.000000, 0.672674,-0.000000;;, + 172;3; 0.000000, 0.672674,-0.000000;;, + 173;3; 0.000000, 0.672674,-0.000000;;, + 174;3; 0.000000, 0.672674,-0.000000;;, + 175;3; 0.000000, 0.672674,-0.000000;;, + 176;3; 0.000000, 0.672674,-0.000000;;, + 177;3; 0.000000, 0.672674,-0.000000;;, + 178;3; 0.000000, 0.672674,-0.000000;;, + 179;3; 0.000000, 0.672674,-0.000000;;, + 180;3;-0.000000, 0.672674, 0.000000;;, + 181;3;-0.000000, 0.672674, 0.000000;;, + 182;3;-0.000000, 0.672674,-0.000000;;, + 183;3;-0.000000, 0.672674, 0.000000;;, + 184;3;-0.000000, 0.672674, 0.000000;;, + 185;3; 0.000000, 0.672674,-0.000000;;, + 186;3; 0.000000, 0.672674, 0.000000;;, + 187;3; 0.000000, 0.672675, 0.000000;;, + 188;3; 0.000000, 0.672674,-0.000000;;, + 189;3;-0.000000, 0.672674,-0.000000;;, + 190;3; 0.000000, 0.672674, 0.000000;;, + 191;3; 0.000000, 0.672674, 0.000000;;, + 192;3; 0.000001, 0.672674, 0.000000;;, + 193;3;-0.000000, 0.672674,-0.000000;;, + 194;3; 0.000000, 0.672674, 0.000000;;, + 195;3;-0.000000, 0.672674, 0.000000;;, + 196;3;-0.000000, 0.672674,-0.000000;;, + 197;3; 0.000000, 0.672674, 0.000000;;, + 198;3; 0.000000, 0.672674,-0.000000;;, + 199;3; 0.000000, 0.672674,-0.000000;;, + 200;3; 0.000000, 0.672674,-0.000000;;, + 201;3; 0.000000, 0.672674,-0.000000;;, + 202;3; 0.000000, 0.672674,-0.000000;;, + 203;3; 0.000000, 0.672674,-0.000000;;, + 204;3; 0.000000, 0.672674,-0.000000;;, + 205;3; 0.000000, 0.672674,-0.000000;;, + 206;3; 0.000000, 0.672674,-0.000000;;, + 207;3; 0.000000, 0.672674,-0.000000;;, + 208;3; 0.000000, 0.672674,-0.000000;;, + 209;3; 0.000000, 0.672674,-0.000000;;, + 210;3; 0.000000, 0.672674, 0.000000;;, + 211;3;-0.000000, 0.672674, 0.000000;;, + 212;3;-0.000000, 0.672674,-0.000000;;, + 213;3;-0.000000, 0.672674, 0.000000;;, + 214;3;-0.000000, 0.672674, 0.000000;;, + 215;3; 0.000000, 0.672674, 0.000000;;, + 216;3;-0.000000, 0.672674,-0.000000;;, + 217;3; 0.000000, 0.672674, 0.000000;;, + 218;3;-0.000000, 0.672674,-0.000000;;, + 219;3;-0.000000, 0.672674, 0.000000;;, + 220;3; 0.000000, 0.672674,-0.000000;;, + 221;3;-0.000000, 0.672675,-0.000000;;, + 222;3;-0.000000, 0.672674,-0.000000;;, + 223;3; 0.000000, 0.672674, 0.000000;;, + 224;3;-0.000000, 0.672674,-0.000000;;, + 225;3; 0.000000, 0.672674,-0.000000;;, + 226;3; 0.000001, 0.672674, 0.000000;;, + 227;3;-0.000000, 0.672674, 0.000000;;, + 228;3; 0.000000, 0.672674, 0.000000;;, + 229;3;-0.000000, 0.672674, 0.000000;;, + 230;3; 0.000000, 0.672674, 0.000000;;, + 231;3; 0.000000, 0.672674, 0.000000;;, + 232;3; 0.000001, 0.672674, 0.000000;;, + 233;3; 0.000000, 0.672675,-0.000000;;, + 234;3; 0.000000, 0.672674,-0.000000;;, + 235;3; 0.000000, 0.672675,-0.000000;;, + 236;3; 0.000000, 0.672674, 0.000000;;, + 237;3;-0.000000, 0.672674, 0.000000;;, + 238;3; 0.000000, 0.672674, 0.000000;;, + 239;3; 0.000000, 0.672674,-0.000000;;, + 240;3; 0.000000, 0.672674,-0.000000;;, + 241;3; 0.000000, 0.672674,-0.000000;;, + 242;3; 0.000000, 0.672674,-0.000000;;, + 243;3; 0.000000, 0.672674,-0.000000;;, + 244;3; 0.000000, 0.672674,-0.000000;;, + 245;3; 0.000000, 0.672674,-0.000000;;, + 246;3; 0.000000, 0.672674,-0.000000;;, + 247;3; 0.000000, 0.672674,-0.000000;;, + 248;3; 0.000000, 0.672674,-0.000000;;, + 249;3; 0.000000, 0.672674,-0.000000;;; + } + } + Animation { + {Armature_Bone_009} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 1;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 2;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 3;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 4;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 5;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 6;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 7;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 8;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 9;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 10;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 11;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 12;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 13;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 14;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 15;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 16;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 17;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 18;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 19;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 20;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 21;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 22;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 23;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 24;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 25;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 26;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 27;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 28;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 29;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 30;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 31;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 32;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 33;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 34;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 35;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 36;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 37;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 38;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 39;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 40;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 41;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 42;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 43;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 44;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 45;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 46;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 47;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 48;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 49;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 50;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 51;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 52;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 53;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 54;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 55;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 56;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 57;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 58;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 59;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 60;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 61;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 62;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 63;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 64;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 65;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 66;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 67;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 68;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 69;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 70;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 71;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 72;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 73;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 74;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 75;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 76;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 77;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 78;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 79;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 80;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 81;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 82;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 83;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 84;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 85;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 86;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 87;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 88;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 89;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 90;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 91;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 92;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 93;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 94;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 95;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 96;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 97;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 98;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 99;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 100;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 101;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 102;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 103;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 104;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 105;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 106;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 107;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 108;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 109;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 110;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 111;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 112;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 113;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 114;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 115;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 116;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 117;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 118;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 119;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 120;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 121;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 122;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 123;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 124;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 125;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 126;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 127;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 128;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 129;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 130;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 131;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 132;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 133;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 134;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 135;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 136;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 137;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 138;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 139;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 140;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 141;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 142;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 143;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 144;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 145;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 146;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 147;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 148;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 149;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 150;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 151;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 152;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 153;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 154;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 155;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 156;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 157;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 158;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 159;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 160;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 161;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 162;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 163;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 164;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 165;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 166;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 167;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 168;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 169;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 170;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 171;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 172;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 173;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 174;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 175;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 176;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 177;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 178;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 179;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 180;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 181;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 182;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 183;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 184;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 185;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 186;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 187;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 188;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 189;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 190;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 191;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 192;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 193;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 194;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 195;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 196;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 197;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 198;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 199;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 200;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 201;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 202;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 203;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 204;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 205;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 206;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 207;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 208;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 209;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 210;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 211;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 212;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 213;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 214;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 215;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 216;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 217;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 218;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 219;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 220;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 221;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 222;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 223;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 224;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 225;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 226;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 227;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 228;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 229;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 230;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 231;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 232;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 233;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 234;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 235;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 236;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 237;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 238;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 239;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 240;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 241;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 242;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 243;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 244;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 245;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 246;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 247;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 248;4;-0.361836, 0.000000,-0.000000, 0.932242;;, + 249;4;-0.361836, 0.000000,-0.000000, 0.932242;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3; 0.000000, 0.826434, 0.000000;;, + 1;3; 0.000000, 0.826434, 0.000000;;, + 2;3; 0.000000, 0.826434, 0.000000;;, + 3;3; 0.000000, 0.826434, 0.000000;;, + 4;3; 0.000000, 0.826434, 0.000000;;, + 5;3; 0.000000, 0.826434, 0.000000;;, + 6;3; 0.000000, 0.826434, 0.000000;;, + 7;3; 0.000000, 0.826434, 0.000000;;, + 8;3; 0.000000, 0.826434, 0.000000;;, + 9;3; 0.000000, 0.826434, 0.000000;;, + 10;3; 0.000000, 0.826434, 0.000000;;, + 11;3; 0.000000, 0.826434, 0.000000;;, + 12;3; 0.000000, 0.826434, 0.000000;;, + 13;3; 0.000000, 0.826434, 0.000000;;, + 14;3; 0.000000, 0.826434, 0.000000;;, + 15;3; 0.000000, 0.826434, 0.000000;;, + 16;3; 0.000000, 0.826434, 0.000000;;, + 17;3; 0.000000, 0.826434, 0.000000;;, + 18;3; 0.000000, 0.826434, 0.000000;;, + 19;3; 0.000000, 0.826434, 0.000000;;, + 20;3; 0.000000, 0.826434, 0.000000;;, + 21;3; 0.000000, 0.826434, 0.000000;;, + 22;3; 0.000000, 0.826434, 0.000000;;, + 23;3; 0.000000, 0.826434, 0.000000;;, + 24;3; 0.000000, 0.826434, 0.000000;;, + 25;3; 0.000000, 0.826434, 0.000000;;, + 26;3; 0.000000, 0.826434, 0.000000;;, + 27;3; 0.000000, 0.826434, 0.000000;;, + 28;3; 0.000000, 0.826434, 0.000000;;, + 29;3; 0.000000, 0.826434, 0.000000;;, + 30;3; 0.000000, 0.826434, 0.000000;;, + 31;3; 0.000000, 0.826434, 0.000000;;, + 32;3; 0.000000, 0.826434, 0.000000;;, + 33;3; 0.000000, 0.826434, 0.000000;;, + 34;3; 0.000000, 0.826434, 0.000000;;, + 35;3; 0.000000, 0.826434, 0.000000;;, + 36;3; 0.000000, 0.826434, 0.000000;;, + 37;3; 0.000000, 0.826434, 0.000000;;, + 38;3; 0.000000, 0.826434, 0.000000;;, + 39;3; 0.000000, 0.826434, 0.000000;;, + 40;3; 0.000000, 0.826434, 0.000000;;, + 41;3; 0.000000, 0.826434, 0.000000;;, + 42;3; 0.000000, 0.826434, 0.000000;;, + 43;3; 0.000000, 0.826434, 0.000000;;, + 44;3; 0.000000, 0.826434, 0.000000;;, + 45;3; 0.000000, 0.826434, 0.000000;;, + 46;3; 0.000000, 0.826434, 0.000000;;, + 47;3; 0.000000, 0.826434, 0.000000;;, + 48;3; 0.000000, 0.826434, 0.000000;;, + 49;3; 0.000000, 0.826434, 0.000000;;, + 50;3; 0.000000, 0.826434, 0.000000;;, + 51;3; 0.000000, 0.826434, 0.000000;;, + 52;3; 0.000000, 0.826434, 0.000000;;, + 53;3; 0.000000, 0.826434, 0.000000;;, + 54;3; 0.000000, 0.826434, 0.000000;;, + 55;3; 0.000000, 0.826434, 0.000000;;, + 56;3; 0.000000, 0.826434, 0.000000;;, + 57;3; 0.000000, 0.826434, 0.000000;;, + 58;3; 0.000000, 0.826434, 0.000000;;, + 59;3; 0.000000, 0.826434, 0.000000;;, + 60;3; 0.000000, 0.826434, 0.000000;;, + 61;3; 0.000000, 0.826434, 0.000000;;, + 62;3; 0.000000, 0.826434, 0.000000;;, + 63;3; 0.000000, 0.826434, 0.000000;;, + 64;3; 0.000000, 0.826434, 0.000000;;, + 65;3; 0.000000, 0.826434, 0.000000;;, + 66;3; 0.000000, 0.826434, 0.000000;;, + 67;3; 0.000000, 0.826434, 0.000000;;, + 68;3; 0.000000, 0.826434, 0.000000;;, + 69;3; 0.000000, 0.826434, 0.000000;;, + 70;3; 0.000000, 0.826434, 0.000000;;, + 71;3; 0.000000, 0.826434, 0.000000;;, + 72;3; 0.000000, 0.826434, 0.000000;;, + 73;3; 0.000000, 0.826434, 0.000000;;, + 74;3; 0.000000, 0.826434, 0.000000;;, + 75;3; 0.000000, 0.826434, 0.000000;;, + 76;3; 0.000000, 0.826434, 0.000000;;, + 77;3; 0.000000, 0.826434, 0.000000;;, + 78;3; 0.000000, 0.826434, 0.000000;;, + 79;3; 0.000000, 0.826434, 0.000000;;, + 80;3; 0.000000, 0.826434, 0.000000;;, + 81;3; 0.000000, 0.826434, 0.000000;;, + 82;3; 0.000000, 0.826434, 0.000000;;, + 83;3; 0.000000, 0.826434, 0.000000;;, + 84;3; 0.000000, 0.826434, 0.000000;;, + 85;3; 0.000000, 0.826434, 0.000000;;, + 86;3; 0.000000, 0.826434, 0.000000;;, + 87;3; 0.000000, 0.826434, 0.000000;;, + 88;3; 0.000000, 0.826434, 0.000000;;, + 89;3; 0.000000, 0.826434, 0.000000;;, + 90;3; 0.000000, 0.826434, 0.000000;;, + 91;3; 0.000000, 0.826434, 0.000000;;, + 92;3; 0.000000, 0.826434, 0.000000;;, + 93;3; 0.000000, 0.826434, 0.000000;;, + 94;3; 0.000000, 0.826434, 0.000000;;, + 95;3; 0.000000, 0.826434, 0.000000;;, + 96;3; 0.000000, 0.826434, 0.000000;;, + 97;3; 0.000000, 0.826434, 0.000000;;, + 98;3; 0.000000, 0.826434, 0.000000;;, + 99;3; 0.000000, 0.826434, 0.000000;;, + 100;3; 0.000000, 0.826434, 0.000000;;, + 101;3; 0.000000, 0.826434, 0.000000;;, + 102;3; 0.000000, 0.826434, 0.000000;;, + 103;3; 0.000000, 0.826434, 0.000000;;, + 104;3; 0.000000, 0.826434, 0.000000;;, + 105;3; 0.000000, 0.826434, 0.000000;;, + 106;3; 0.000000, 0.826434, 0.000000;;, + 107;3; 0.000000, 0.826434, 0.000000;;, + 108;3; 0.000000, 0.826434, 0.000000;;, + 109;3; 0.000000, 0.826434, 0.000000;;, + 110;3; 0.000000, 0.826434, 0.000000;;, + 111;3; 0.000000, 0.826434, 0.000000;;, + 112;3; 0.000000, 0.826434, 0.000000;;, + 113;3; 0.000000, 0.826434, 0.000000;;, + 114;3; 0.000000, 0.826434, 0.000000;;, + 115;3; 0.000000, 0.826434, 0.000000;;, + 116;3; 0.000000, 0.826434, 0.000000;;, + 117;3; 0.000000, 0.826434, 0.000000;;, + 118;3; 0.000000, 0.826434, 0.000000;;, + 119;3; 0.000000, 0.826434, 0.000000;;, + 120;3; 0.000000, 0.826434, 0.000000;;, + 121;3; 0.000000, 0.826434, 0.000000;;, + 122;3; 0.000000, 0.826434, 0.000000;;, + 123;3; 0.000000, 0.826434, 0.000000;;, + 124;3; 0.000000, 0.826434, 0.000000;;, + 125;3; 0.000000, 0.826434, 0.000000;;, + 126;3; 0.000000, 0.826434, 0.000000;;, + 127;3; 0.000000, 0.826434, 0.000000;;, + 128;3; 0.000000, 0.826434, 0.000000;;, + 129;3; 0.000000, 0.826434, 0.000000;;, + 130;3; 0.000000, 0.826434, 0.000000;;, + 131;3; 0.000000, 0.826434, 0.000000;;, + 132;3; 0.000000, 0.826434, 0.000000;;, + 133;3; 0.000000, 0.826434, 0.000000;;, + 134;3; 0.000000, 0.826434, 0.000000;;, + 135;3; 0.000000, 0.826434, 0.000000;;, + 136;3; 0.000000, 0.826434, 0.000000;;, + 137;3; 0.000000, 0.826434, 0.000000;;, + 138;3; 0.000000, 0.826434, 0.000000;;, + 139;3; 0.000000, 0.826434, 0.000000;;, + 140;3; 0.000000, 0.826434, 0.000000;;, + 141;3; 0.000000, 0.826434, 0.000000;;, + 142;3; 0.000000, 0.826434, 0.000000;;, + 143;3; 0.000000, 0.826434, 0.000000;;, + 144;3; 0.000000, 0.826434, 0.000000;;, + 145;3; 0.000000, 0.826434, 0.000000;;, + 146;3; 0.000000, 0.826434, 0.000000;;, + 147;3; 0.000000, 0.826434, 0.000000;;, + 148;3; 0.000000, 0.826434, 0.000000;;, + 149;3; 0.000000, 0.826434, 0.000000;;, + 150;3; 0.000000, 0.826434, 0.000000;;, + 151;3; 0.000000, 0.826434, 0.000000;;, + 152;3; 0.000000, 0.826434, 0.000000;;, + 153;3; 0.000000, 0.826434, 0.000000;;, + 154;3; 0.000000, 0.826434, 0.000000;;, + 155;3; 0.000000, 0.826434, 0.000000;;, + 156;3; 0.000000, 0.826434, 0.000000;;, + 157;3; 0.000000, 0.826434, 0.000000;;, + 158;3; 0.000000, 0.826434, 0.000000;;, + 159;3; 0.000000, 0.826434, 0.000000;;, + 160;3; 0.000000, 0.826434, 0.000000;;, + 161;3; 0.000000, 0.826434, 0.000000;;, + 162;3; 0.000000, 0.826434, 0.000000;;, + 163;3; 0.000000, 0.826434, 0.000000;;, + 164;3; 0.000000, 0.826434, 0.000000;;, + 165;3; 0.000000, 0.826434, 0.000000;;, + 166;3; 0.000000, 0.826434, 0.000000;;, + 167;3; 0.000000, 0.826434, 0.000000;;, + 168;3; 0.000000, 0.826434, 0.000000;;, + 169;3; 0.000000, 0.826434, 0.000000;;, + 170;3; 0.000000, 0.826434, 0.000000;;, + 171;3; 0.000000, 0.826434, 0.000000;;, + 172;3; 0.000000, 0.826434, 0.000000;;, + 173;3; 0.000000, 0.826434, 0.000000;;, + 174;3; 0.000000, 0.826434, 0.000000;;, + 175;3; 0.000000, 0.826434, 0.000000;;, + 176;3; 0.000000, 0.826434, 0.000000;;, + 177;3; 0.000000, 0.826434, 0.000000;;, + 178;3; 0.000000, 0.826434, 0.000000;;, + 179;3; 0.000000, 0.826434, 0.000000;;, + 180;3; 0.000000, 0.826434, 0.000000;;, + 181;3; 0.000000, 0.826434, 0.000000;;, + 182;3; 0.000000, 0.826434, 0.000000;;, + 183;3; 0.000000, 0.826434, 0.000000;;, + 184;3; 0.000000, 0.826434, 0.000000;;, + 185;3; 0.000000, 0.826434, 0.000000;;, + 186;3;-0.000000, 0.826434,-0.000000;;, + 187;3;-0.000000, 0.826434,-0.000000;;, + 188;3;-0.000000, 0.826434, 0.000000;;, + 189;3;-0.000000, 0.826434, 0.000000;;, + 190;3;-0.000000, 0.826434,-0.000000;;, + 191;3; 0.000000, 0.826434, 0.000000;;, + 192;3; 0.000000, 0.826434, 0.000000;;, + 193;3; 0.000000, 0.826434, 0.000000;;, + 194;3; 0.000000, 0.826434,-0.000000;;, + 195;3; 0.000000, 0.826434,-0.000000;;, + 196;3; 0.000000, 0.826434, 0.000000;;, + 197;3; 0.000000, 0.826434,-0.000000;;, + 198;3; 0.000000, 0.826434,-0.000000;;, + 199;3; 0.000000, 0.826434, 0.000000;;, + 200;3; 0.000000, 0.826434, 0.000000;;, + 201;3; 0.000000, 0.826434, 0.000000;;, + 202;3; 0.000000, 0.826434, 0.000000;;, + 203;3; 0.000000, 0.826434, 0.000000;;, + 204;3; 0.000000, 0.826434, 0.000000;;, + 205;3; 0.000000, 0.826434, 0.000000;;, + 206;3; 0.000000, 0.826434, 0.000000;;, + 207;3; 0.000000, 0.826434, 0.000000;;, + 208;3; 0.000000, 0.826434, 0.000000;;, + 209;3; 0.000000, 0.826434, 0.000000;;, + 210;3;-0.000000, 0.826434, 0.000000;;, + 211;3;-0.000000, 0.826434, 0.000000;;, + 212;3; 0.000000, 0.826434,-0.000000;;, + 213;3; 0.000000, 0.826434, 0.000000;;, + 214;3; 0.000000, 0.826434, 0.000000;;, + 215;3;-0.000000, 0.826434,-0.000000;;, + 216;3;-0.000000, 0.826434,-0.000000;;, + 217;3;-0.000000, 0.826434,-0.000000;;, + 218;3;-0.000000, 0.826434, 0.000000;;, + 219;3;-0.000000, 0.826434,-0.000000;;, + 220;3;-0.000000, 0.826434, 0.000000;;, + 221;3; 0.000000, 0.826434, 0.000000;;, + 222;3;-0.000000, 0.826434, 0.000000;;, + 223;3; 0.000000, 0.826434,-0.000000;;, + 224;3; 0.000000, 0.826434,-0.000000;;, + 225;3; 0.000000, 0.826434, 0.000000;;, + 226;3; 0.000000, 0.826434, 0.000000;;, + 227;3; 0.000000, 0.826434, 0.000000;;, + 228;3;-0.000000, 0.826434, 0.000000;;, + 229;3; 0.000000, 0.826434, 0.000000;;, + 230;3; 0.000000, 0.826434, 0.000000;;, + 231;3; 0.000000, 0.826434,-0.000000;;, + 232;3;-0.000000, 0.826434,-0.000000;;, + 233;3; 0.000000, 0.826434, 0.000000;;, + 234;3; 0.000000, 0.826434, 0.000000;;, + 235;3; 0.000000, 0.826434, 0.000000;;, + 236;3; 0.000000, 0.826434, 0.000000;;, + 237;3; 0.000000, 0.826434, 0.000000;;, + 238;3; 0.000000, 0.826434, 0.000000;;, + 239;3; 0.000000, 0.826434, 0.000000;;, + 240;3; 0.000000, 0.826434, 0.000000;;, + 241;3; 0.000000, 0.826434, 0.000000;;, + 242;3; 0.000000, 0.826434, 0.000000;;, + 243;3; 0.000000, 0.826434, 0.000000;;, + 244;3; 0.000000, 0.826434, 0.000000;;, + 245;3; 0.000000, 0.826434, 0.000000;;, + 246;3; 0.000000, 0.826434, 0.000000;;, + 247;3; 0.000000, 0.826434, 0.000000;;, + 248;3; 0.000000, 0.826434, 0.000000;;, + 249;3; 0.000000, 0.826434, 0.000000;;; + } + } + Animation { + {Armature_Bone_029} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 1;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 2;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 3;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 4;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 5;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 6;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 7;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 8;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 9;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 10;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 11;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 12;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 13;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 14;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 15;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 16;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 17;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 18;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 19;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 20;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 21;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 22;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 23;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 24;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 25;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 26;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 27;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 28;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 29;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 30;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 31;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 32;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 33;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 34;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 35;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 36;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 37;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 38;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 39;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 40;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 41;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 42;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 43;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 44;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 45;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 46;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 47;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 48;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 49;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 50;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 51;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 52;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 53;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 54;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 55;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 56;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 57;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 58;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 59;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 60;4;-0.988993, 0.075798,-0.009673,-0.126694;;, + 61;4;-0.989001, 0.075642,-0.009541,-0.126701;;, + 62;4;-0.989014, 0.075380,-0.009320,-0.126713;;, + 63;4;-0.989033, 0.075013,-0.009009,-0.126730;;, + 64;4;-0.989057, 0.074540,-0.008609,-0.126752;;, + 65;4;-0.989086, 0.073962,-0.008120,-0.126778;;, + 66;4;-0.989121, 0.073279,-0.007543,-0.126810;;, + 67;4;-0.989161, 0.072494,-0.006880,-0.126847;;, + 68;4;-0.989205, 0.071610,-0.006132,-0.126888;;, + 69;4;-0.989255, 0.070630,-0.005303,-0.126935;;, + 70;4;-0.989309, 0.069558,-0.004397,-0.126986;;, + 71;4;-0.989366, 0.068400,-0.003417,-0.127041;;, + 72;4;-0.989428, 0.067161,-0.002370,-0.127101;;, + 73;4;-0.989493, 0.065850,-0.001262,-0.127165;;, + 74;4;-0.989561, 0.064475,-0.000099,-0.127233;;, + 75;4;-0.989632, 0.063044, 0.001111,-0.127304;;, + 76;4;-0.989704, 0.061568, 0.002359,-0.127378;;, + 77;4;-0.989778, 0.060057, 0.003637,-0.127455;;, + 78;4;-0.989852, 0.058522, 0.004934,-0.127535;;, + 79;4;-0.989926, 0.056976, 0.006241,-0.127616;;, + 80;4;-0.990000, 0.055430, 0.007548,-0.127698;;, + 81;4;-0.990072, 0.053896, 0.008846,-0.127781;;, + 82;4;-0.990143, 0.052385, 0.010123,-0.127865;;, + 83;4;-0.990211, 0.050909, 0.011371,-0.127948;;, + 84;4;-0.990276, 0.049478, 0.012581,-0.128031;;, + 85;4;-0.990338, 0.048103, 0.013744,-0.128113;;, + 86;4;-0.990396, 0.046792, 0.014853,-0.128194;;, + 87;4;-0.990449, 0.045553, 0.015900,-0.128272;;, + 88;4;-0.990498, 0.044395, 0.016879,-0.128349;;, + 89;4;-0.990542, 0.043323, 0.017785,-0.128423;;, + 90;4;-0.990580, 0.042342, 0.018614,-0.128494;;, + 91;4;-0.990613, 0.041458, 0.019362,-0.128562;;, + 92;4;-0.990640, 0.040674, 0.020025,-0.128627;;, + 93;4;-0.990661, 0.039991, 0.020602,-0.128689;;, + 94;4;-0.990677, 0.039413, 0.021091,-0.128747;;, + 95;4;-0.990686, 0.038940, 0.021491,-0.128802;;, + 96;4;-0.990690, 0.038573, 0.021802,-0.128853;;, + 97;4;-0.990688, 0.038311, 0.022023,-0.128900;;, + 98;4;-0.990680, 0.038155, 0.022155,-0.128944;;, + 99;4;-0.990666, 0.038103, 0.022199,-0.128984;;, + 100;4;-0.990381, 0.039510, 0.020997,-0.128905;;, + 101;4;-0.989533, 0.043882, 0.017266,-0.128581;;, + 102;4;-0.988103, 0.051309, 0.010927,-0.128004;;, + 103;4;-0.986127, 0.061601, 0.002142,-0.127189;;, + 104;4;-0.983714, 0.074201,-0.008614,-0.126181;;, + 105;4;-0.981031, 0.088219,-0.020579,-0.125055;;, + 106;4;-0.978276, 0.102621,-0.032873,-0.123895;;, + 107;4;-0.975625, 0.116479,-0.044701,-0.122778;;, + 108;4;-0.973205, 0.129127,-0.055498,-0.121760;;, + 109;4;-0.971087, 0.140192,-0.064942,-0.120871;;, + 110;4;-0.969159, 0.150606,-0.074100,-0.120059;;, + 111;4;-0.967282, 0.161397,-0.084078,-0.119258;;, + 112;4;-0.965442, 0.172477,-0.094682,-0.118465;;, + 113;4;-0.963621, 0.183688,-0.105568,-0.117675;;, + 114;4;-0.961789, 0.194806,-0.116256,-0.116879;;, + 115;4;-0.959913, 0.205586,-0.126209,-0.116071;;, + 116;4;-0.957965, 0.215815,-0.134966,-0.115243;;, + 117;4;-0.955928, 0.225360,-0.142239,-0.114392;;, + 118;4;-0.953796, 0.234175,-0.147929,-0.113515;;, + 119;4;-0.951571, 0.242281,-0.152083,-0.112615;;, + 120;4;-0.948958, 0.251248,-0.152162,-0.111800;;, + 121;4;-0.945681, 0.262514,-0.145470,-0.111192;;, + 122;4;-0.941843, 0.275725,-0.132340,-0.110802;;, + 123;4;-0.937651, 0.290171,-0.113916,-0.110625;;, + 124;4;-0.933412, 0.304787,-0.092274,-0.110628;;, + 125;4;-0.929488, 0.318325,-0.070157,-0.110759;;, + 126;4;-0.926209, 0.329642,-0.050354,-0.110948;;, + 127;4;-0.923801, 0.337959,-0.035066,-0.111132;;, + 128;4;-0.922363, 0.342924,-0.025597,-0.111263;;, + 129;4;-0.921895, 0.344540,-0.022436,-0.111310;;, + 130;4;-0.923420, 0.338017,-0.020833,-0.111702;;, + 131;4;-0.928008, 0.318342,-0.016107,-0.112881;;, + 132;4;-0.935468, 0.286251,-0.008651,-0.114798;;, + 133;4;-0.945226, 0.244095, 0.000687,-0.117306;;, + 134;4;-0.956280, 0.196042, 0.010591,-0.120147;;, + 135;4;-0.967335, 0.147541, 0.019479,-0.122988;;, + 136;4;-0.977093, 0.104087, 0.025872,-0.125495;;, + 137;4;-0.984553, 0.069965, 0.028720,-0.127413;;, + 138;4;-0.989141, 0.047676, 0.027516,-0.128592;;, + 139;4;-0.990666, 0.038103, 0.022199,-0.128984;;, + 140;4;-0.989556, 0.041570, 0.012021,-0.128527;;, + 141;4;-0.986156, 0.058863,-0.004070,-0.127124;;, + 142;4;-0.981049, 0.086461,-0.024569,-0.125014;;, + 143;4;-0.975630, 0.115958,-0.045882,-0.122766;;, + 144;4;-0.971087, 0.140192,-0.064942,-0.120871;;, + 145;4;-0.967282, 0.161397,-0.084078,-0.119258;;, + 146;4;-0.963621, 0.183688,-0.105568,-0.117675;;, + 147;4;-0.959913, 0.205586,-0.126209,-0.116071;;, + 148;4;-0.955928, 0.225360,-0.142239,-0.114392;;, + 149;4;-0.951571, 0.242281,-0.152083,-0.112615;;, + 150;4;-0.945681, 0.262514,-0.145470,-0.111192;;, + 151;4;-0.937651, 0.290171,-0.113916,-0.110625;;, + 152;4;-0.929488, 0.318325,-0.070157,-0.110759;;, + 153;4;-0.923801, 0.337959,-0.035066,-0.111132;;, + 154;4;-0.921895, 0.344540,-0.022436,-0.111310;;, + 155;4;-0.927996, 0.317417,-0.018204,-0.112908;;, + 156;4;-0.945186, 0.240971,-0.006399,-0.117397;;, + 157;4;-0.967272, 0.142678, 0.008447,-0.123129;;, + 158;4;-0.984500, 0.065860, 0.019406,-0.127532;;, + 159;4;-0.990666, 0.038103, 0.022199,-0.128984;;, + 160;4;-0.990734, 0.037638, 0.020496,-0.128828;;, + 161;4;-0.990791, 0.037695, 0.018666,-0.128695;;, + 162;4;-0.990836, 0.038279, 0.016718,-0.128583;;, + 163;4;-0.990866, 0.039387, 0.014664,-0.128492;;, + 164;4;-0.990880, 0.041002, 0.012519,-0.128419;;, + 165;4;-0.990878, 0.043089, 0.010308,-0.128362;;, + 166;4;-0.990856, 0.045597, 0.008059,-0.128318;;, + 167;4;-0.990815, 0.048456, 0.005807,-0.128281;;, + 168;4;-0.990753, 0.051579, 0.003588,-0.128247;;, + 169;4;-0.990671, 0.054862, 0.001444,-0.128210;;, + 170;4;-0.990569, 0.058196,-0.000585,-0.128163;;, + 171;4;-0.990448, 0.061468,-0.002463,-0.128103;;, + 172;4;-0.990309, 0.064573,-0.004158,-0.128023;;, + 173;4;-0.990153, 0.067417,-0.005646,-0.127919;;, + 174;4;-0.989984, 0.069922,-0.006909,-0.127789;;, + 175;4;-0.989802, 0.072028,-0.007937,-0.127630;;, + 176;4;-0.989610, 0.073693,-0.008728,-0.127441;;, + 177;4;-0.989410, 0.074892,-0.009284,-0.127221;;, + 178;4;-0.989203, 0.075611,-0.009610,-0.126971;;, + 179;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 180;4;-0.986083, 0.079754, 0.000101,-0.124537;;, + 181;4;-0.977768, 0.091301, 0.029737,-0.118645;;, + 182;4;-0.964390, 0.109598, 0.078133,-0.109258;;, + 183;4;-0.946970, 0.132664, 0.141816,-0.097088;;, + 184;4;-0.927284, 0.157384, 0.214578,-0.083366;;, + 185;4;-0.907628, 0.179982, 0.288277,-0.069686;;, + 186;4;-0.890294, 0.196893, 0.354672,-0.057633;;, + 187;4;-0.877051, 0.205560, 0.407313,-0.048431;;, + 188;4;-0.868910, 0.204713, 0.442412,-0.042777;;, + 189;4;-0.866206, 0.194155, 0.458604,-0.040900;;, + 190;4;-0.874856, 0.162582, 0.444607,-0.047644;;, + 191;4;-0.899688, 0.101149, 0.389390,-0.066848;;, + 192;4;-0.932828, 0.025866, 0.307044,-0.092059;;, + 193;4;-0.961083,-0.037592, 0.225849,-0.112772;;, + 194;4;-0.975559,-0.072609, 0.167655,-0.122084;;, + 195;4;-0.981508,-0.073185, 0.120643,-0.124590;;, + 196;4;-0.985748,-0.038554, 0.070473,-0.126130;;, + 197;4;-0.988051, 0.015005, 0.026688,-0.126723;;, + 198;4;-0.988867, 0.059553,-0.000984,-0.126754;;, + 199;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 200;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 201;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 202;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 203;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 204;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 205;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 206;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 207;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 208;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 209;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 210;4;-0.988357, 0.072095,-0.014826,-0.100879;;, + 211;4;-0.986573, 0.060925,-0.030252,-0.028170;;, + 212;4;-0.984283, 0.044986,-0.052838, 0.065187;;, + 213;4;-0.982499, 0.029464,-0.075836, 0.137896;;, + 214;4;-0.981866, 0.018305,-0.093828, 0.163710;;, + 215;4;-0.981850, 0.010182,-0.108392, 0.162074;;, + 216;4;-0.981810, 0.002927,-0.122330, 0.156684;;, + 217;4;-0.981770,-0.003155,-0.134876, 0.147665;;, + 218;4;-0.981760,-0.008118,-0.145587, 0.136556;;, + 219;4;-0.981796,-0.012343,-0.154660, 0.125188;;, + 220;4;-0.981850,-0.016142,-0.162713, 0.112954;;, + 221;4;-0.981912,-0.019316,-0.169517, 0.098469;;, + 222;4;-0.982019,-0.021502,-0.174270, 0.082613;;, + 223;4;-0.982198,-0.022615,-0.176730, 0.067026;;, + 224;4;-0.982449,-0.022911,-0.177393, 0.052916;;, + 225;4;-0.982771,-0.021941,-0.175746, 0.039140;;, + 226;4;-0.983169,-0.019010,-0.170770, 0.024299;;, + 227;4;-0.983640,-0.014132,-0.162488, 0.008529;;, + 228;4;-0.984177,-0.007410,-0.151075,-0.007948;;, + 229;4;-0.984766, 0.000945,-0.136890,-0.024819;;, + 230;4;-0.985390, 0.010595,-0.120507,-0.041681;;, + 231;4;-0.986027, 0.021081,-0.102703,-0.058057;;, + 232;4;-0.986651, 0.031858,-0.084407,-0.073448;;, + 233;4;-0.987235, 0.042344,-0.066603,-0.087381;;, + 234;4;-0.987757, 0.051994,-0.050219,-0.099466;;, + 235;4;-0.988198, 0.060349,-0.036034,-0.109429;;, + 236;4;-0.988546, 0.067071,-0.024621,-0.117125;;, + 237;4;-0.988795, 0.071949,-0.016340,-0.122522;;, + 238;4;-0.988942, 0.074880,-0.011363,-0.125673;;, + 239;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 240;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 241;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 242;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 243;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 244;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 245;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 246;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 247;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 248;4;-0.988990, 0.075850,-0.009717,-0.126692;;, + 249;4;-0.988990, 0.075850,-0.009717,-0.126692;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3; 0.000000, 0.868658, 0.000000;;, + 1;3; 0.000000, 0.868658, 0.000000;;, + 2;3; 0.000000, 0.868658, 0.000000;;, + 3;3; 0.000000, 0.868658, 0.000000;;, + 4;3; 0.000000, 0.868658, 0.000000;;, + 5;3; 0.000000, 0.868658, 0.000000;;, + 6;3; 0.000000, 0.868658, 0.000000;;, + 7;3; 0.000000, 0.868658, 0.000000;;, + 8;3; 0.000000, 0.868658, 0.000000;;, + 9;3; 0.000000, 0.868658, 0.000000;;, + 10;3; 0.000000, 0.868658, 0.000000;;, + 11;3; 0.000000, 0.868658, 0.000000;;, + 12;3; 0.000000, 0.868658, 0.000000;;, + 13;3; 0.000000, 0.868658, 0.000000;;, + 14;3; 0.000000, 0.868658, 0.000000;;, + 15;3; 0.000000, 0.868658, 0.000000;;, + 16;3; 0.000000, 0.868658, 0.000000;;, + 17;3; 0.000000, 0.868658, 0.000000;;, + 18;3; 0.000000, 0.868658, 0.000000;;, + 19;3; 0.000000, 0.868658, 0.000000;;, + 20;3; 0.000000, 0.868658, 0.000000;;, + 21;3; 0.000000, 0.868658, 0.000000;;, + 22;3; 0.000000, 0.868658, 0.000000;;, + 23;3; 0.000000, 0.868658, 0.000000;;, + 24;3; 0.000000, 0.868658, 0.000000;;, + 25;3; 0.000000, 0.868658, 0.000000;;, + 26;3; 0.000000, 0.868658, 0.000000;;, + 27;3; 0.000000, 0.868658, 0.000000;;, + 28;3; 0.000000, 0.868658, 0.000000;;, + 29;3; 0.000000, 0.868658, 0.000000;;, + 30;3; 0.000000, 0.868658, 0.000000;;, + 31;3; 0.000000, 0.868658, 0.000000;;, + 32;3; 0.000000, 0.868658, 0.000000;;, + 33;3; 0.000000, 0.868658, 0.000000;;, + 34;3; 0.000000, 0.868658, 0.000000;;, + 35;3; 0.000000, 0.868658, 0.000000;;, + 36;3; 0.000000, 0.868658, 0.000000;;, + 37;3; 0.000000, 0.868658, 0.000000;;, + 38;3; 0.000000, 0.868658, 0.000000;;, + 39;3; 0.000000, 0.868658, 0.000000;;, + 40;3; 0.000000, 0.868658, 0.000000;;, + 41;3; 0.000000, 0.868658, 0.000000;;, + 42;3; 0.000000, 0.868658, 0.000000;;, + 43;3; 0.000000, 0.868658, 0.000000;;, + 44;3; 0.000000, 0.868658, 0.000000;;, + 45;3; 0.000000, 0.868658, 0.000000;;, + 46;3; 0.000000, 0.868658, 0.000000;;, + 47;3; 0.000000, 0.868658, 0.000000;;, + 48;3; 0.000000, 0.868658, 0.000000;;, + 49;3; 0.000000, 0.868658, 0.000000;;, + 50;3; 0.000000, 0.868658, 0.000000;;, + 51;3; 0.000000, 0.868658, 0.000000;;, + 52;3; 0.000000, 0.868658, 0.000000;;, + 53;3; 0.000000, 0.868658, 0.000000;;, + 54;3; 0.000000, 0.868658, 0.000000;;, + 55;3; 0.000000, 0.868658, 0.000000;;, + 56;3; 0.000000, 0.868658, 0.000000;;, + 57;3; 0.000000, 0.868658, 0.000000;;, + 58;3; 0.000000, 0.868658, 0.000000;;, + 59;3; 0.000000, 0.868658, 0.000000;;, + 60;3; 0.000000, 0.868658, 0.000000;;, + 61;3; 0.000000, 0.868658, 0.000000;;, + 62;3; 0.000000, 0.868658, 0.000000;;, + 63;3; 0.000000, 0.868658, 0.000000;;, + 64;3; 0.000000, 0.868658, 0.000000;;, + 65;3; 0.000000, 0.868658, 0.000000;;, + 66;3; 0.000000, 0.868658, 0.000000;;, + 67;3; 0.000000, 0.868658, 0.000000;;, + 68;3; 0.000000, 0.868658, 0.000000;;, + 69;3; 0.000000, 0.868658, 0.000000;;, + 70;3; 0.000000, 0.868658, 0.000000;;, + 71;3; 0.000000, 0.868658, 0.000000;;, + 72;3; 0.000000, 0.868658, 0.000000;;, + 73;3; 0.000000, 0.868658, 0.000000;;, + 74;3; 0.000000, 0.868658, 0.000000;;, + 75;3; 0.000000, 0.868658, 0.000000;;, + 76;3; 0.000000, 0.868658, 0.000000;;, + 77;3; 0.000000, 0.868658, 0.000000;;, + 78;3; 0.000000, 0.868658, 0.000000;;, + 79;3; 0.000000, 0.868658, 0.000000;;, + 80;3; 0.000000, 0.868658, 0.000000;;, + 81;3; 0.000000, 0.868658, 0.000000;;, + 82;3; 0.000000, 0.868658, 0.000000;;, + 83;3; 0.000000, 0.868658, 0.000000;;, + 84;3; 0.000000, 0.868658, 0.000000;;, + 85;3; 0.000000, 0.868658, 0.000000;;, + 86;3; 0.000000, 0.868658, 0.000000;;, + 87;3; 0.000000, 0.868658, 0.000000;;, + 88;3; 0.000000, 0.868658, 0.000000;;, + 89;3; 0.000000, 0.868658, 0.000000;;, + 90;3; 0.000000, 0.868658, 0.000000;;, + 91;3; 0.000000, 0.868658, 0.000000;;, + 92;3; 0.000000, 0.868658, 0.000000;;, + 93;3; 0.000000, 0.868658, 0.000000;;, + 94;3; 0.000000, 0.868658, 0.000000;;, + 95;3; 0.000000, 0.868658, 0.000000;;, + 96;3; 0.000000, 0.868658, 0.000000;;, + 97;3; 0.000000, 0.868658, 0.000000;;, + 98;3; 0.000000, 0.868658, 0.000000;;, + 99;3; 0.000000, 0.868658, 0.000000;;, + 100;3; 0.000000, 0.868658, 0.000000;;, + 101;3; 0.000000, 0.868658, 0.000000;;, + 102;3; 0.000000, 0.868658, 0.000000;;, + 103;3; 0.000000, 0.868658, 0.000000;;, + 104;3; 0.000000, 0.868658, 0.000000;;, + 105;3; 0.000000, 0.868658, 0.000000;;, + 106;3; 0.000000, 0.868658, 0.000000;;, + 107;3; 0.000000, 0.868658, 0.000000;;, + 108;3; 0.000000, 0.868658, 0.000000;;, + 109;3; 0.000000, 0.868658, 0.000000;;, + 110;3; 0.000000, 0.868658, 0.000000;;, + 111;3; 0.000000, 0.868658, 0.000000;;, + 112;3; 0.000000, 0.868658, 0.000000;;, + 113;3; 0.000000, 0.868658, 0.000000;;, + 114;3; 0.000000, 0.868658, 0.000000;;, + 115;3; 0.000000, 0.868658, 0.000000;;, + 116;3; 0.000000, 0.868658, 0.000000;;, + 117;3; 0.000000, 0.868658, 0.000000;;, + 118;3; 0.000000, 0.868658, 0.000000;;, + 119;3; 0.000000, 0.868658, 0.000000;;, + 120;3; 0.000000, 0.868658, 0.000000;;, + 121;3; 0.000000, 0.868658, 0.000000;;, + 122;3; 0.000000, 0.868658, 0.000000;;, + 123;3; 0.000000, 0.868658, 0.000000;;, + 124;3; 0.000000, 0.868658, 0.000000;;, + 125;3; 0.000000, 0.868658, 0.000000;;, + 126;3; 0.000000, 0.868658, 0.000000;;, + 127;3; 0.000000, 0.868658, 0.000000;;, + 128;3; 0.000000, 0.868658, 0.000000;;, + 129;3; 0.000000, 0.868658, 0.000000;;, + 130;3; 0.000000, 0.868658, 0.000000;;, + 131;3; 0.000000, 0.868658, 0.000000;;, + 132;3; 0.000000, 0.868658, 0.000000;;, + 133;3; 0.000000, 0.868658, 0.000000;;, + 134;3; 0.000000, 0.868658, 0.000000;;, + 135;3; 0.000000, 0.868658, 0.000000;;, + 136;3; 0.000000, 0.868658, 0.000000;;, + 137;3; 0.000000, 0.868658, 0.000000;;, + 138;3; 0.000000, 0.868658, 0.000000;;, + 139;3; 0.000000, 0.868658, 0.000000;;, + 140;3; 0.000000, 0.868658, 0.000000;;, + 141;3; 0.000000, 0.868658, 0.000000;;, + 142;3; 0.000000, 0.868658, 0.000000;;, + 143;3; 0.000000, 0.868658, 0.000000;;, + 144;3; 0.000000, 0.868658, 0.000000;;, + 145;3; 0.000000, 0.868658, 0.000000;;, + 146;3; 0.000000, 0.868658, 0.000000;;, + 147;3; 0.000000, 0.868658, 0.000000;;, + 148;3; 0.000000, 0.868658, 0.000000;;, + 149;3; 0.000000, 0.868658, 0.000000;;, + 150;3; 0.000000, 0.868658, 0.000000;;, + 151;3; 0.000000, 0.868658, 0.000000;;, + 152;3; 0.000000, 0.868658, 0.000000;;, + 153;3; 0.000000, 0.868658, 0.000000;;, + 154;3; 0.000000, 0.868658, 0.000000;;, + 155;3; 0.000000, 0.868658, 0.000000;;, + 156;3; 0.000000, 0.868658, 0.000000;;, + 157;3; 0.000000, 0.868658, 0.000000;;, + 158;3; 0.000000, 0.868658, 0.000000;;, + 159;3; 0.000000, 0.868658, 0.000000;;, + 160;3; 0.000000, 0.868658, 0.000000;;, + 161;3; 0.000000, 0.868658, 0.000000;;, + 162;3; 0.000000, 0.868658, 0.000000;;, + 163;3; 0.000000, 0.868658, 0.000000;;, + 164;3; 0.000000, 0.868658, 0.000000;;, + 165;3; 0.000000, 0.868658, 0.000000;;, + 166;3; 0.000000, 0.868658, 0.000000;;, + 167;3; 0.000000, 0.868658, 0.000000;;, + 168;3; 0.000000, 0.868658, 0.000000;;, + 169;3; 0.000000, 0.868658, 0.000000;;, + 170;3; 0.000000, 0.868658, 0.000000;;, + 171;3; 0.000000, 0.868658, 0.000000;;, + 172;3; 0.000000, 0.868658, 0.000000;;, + 173;3; 0.000000, 0.868658, 0.000000;;, + 174;3; 0.000000, 0.868658, 0.000000;;, + 175;3; 0.000000, 0.868658, 0.000000;;, + 176;3; 0.000000, 0.868658, 0.000000;;, + 177;3; 0.000000, 0.868658, 0.000000;;, + 178;3; 0.000000, 0.868658, 0.000000;;, + 179;3; 0.000000, 0.868658, 0.000000;;, + 180;3; 0.000000, 0.868658, 0.000000;;, + 181;3; 0.000000, 0.868658, 0.000000;;, + 182;3; 0.000000, 0.868658,-0.000000;;, + 183;3; 0.000000, 0.868658, 0.000000;;, + 184;3;-0.000000, 0.868658,-0.000000;;, + 185;3; 0.000000, 0.868658,-0.000000;;, + 186;3; 0.000000, 0.868658,-0.000000;;, + 187;3; 0.000000, 0.868658,-0.000000;;, + 188;3;-0.000000, 0.868658, 0.000000;;, + 189;3; 0.000000, 0.868658, 0.000000;;, + 190;3; 0.000000, 0.868658, 0.000000;;, + 191;3;-0.000000, 0.868658, 0.000000;;, + 192;3; 0.000000, 0.868658,-0.000000;;, + 193;3; 0.000000, 0.868658,-0.000000;;, + 194;3;-0.000000, 0.868658,-0.000000;;, + 195;3;-0.000000, 0.868658,-0.000000;;, + 196;3; 0.000000, 0.868658, 0.000000;;, + 197;3;-0.000000, 0.868658, 0.000000;;, + 198;3; 0.000000, 0.868658, 0.000000;;, + 199;3; 0.000000, 0.868658, 0.000000;;, + 200;3; 0.000000, 0.868658, 0.000000;;, + 201;3; 0.000000, 0.868658, 0.000000;;, + 202;3; 0.000000, 0.868658, 0.000000;;, + 203;3; 0.000000, 0.868658, 0.000000;;, + 204;3; 0.000000, 0.868658, 0.000000;;, + 205;3; 0.000000, 0.868658, 0.000000;;, + 206;3; 0.000000, 0.868658, 0.000000;;, + 207;3; 0.000000, 0.868658, 0.000000;;, + 208;3; 0.000000, 0.868658, 0.000000;;, + 209;3; 0.000000, 0.868658, 0.000000;;, + 210;3; 0.000000, 0.868658, 0.000000;;, + 211;3;-0.000000, 0.868658,-0.000000;;, + 212;3;-0.000000, 0.868658, 0.000000;;, + 213;3;-0.000000, 0.868658,-0.000000;;, + 214;3; 0.000000, 0.868658,-0.000000;;, + 215;3; 0.000000, 0.868658, 0.000000;;, + 216;3;-0.000000, 0.868658,-0.000000;;, + 217;3; 0.000000, 0.868658,-0.000000;;, + 218;3;-0.000000, 0.868658, 0.000000;;, + 219;3; 0.000000, 0.868658,-0.000000;;, + 220;3; 0.000000, 0.868658, 0.000000;;, + 221;3;-0.000000, 0.868658, 0.000000;;, + 222;3;-0.000000, 0.868658, 0.000000;;, + 223;3;-0.000000, 0.868658, 0.000000;;, + 224;3;-0.000000, 0.868658,-0.000000;;, + 225;3;-0.000000, 0.868658, 0.000000;;, + 226;3;-0.000000, 0.868658, 0.000000;;, + 227;3; 0.000000, 0.868658, 0.000000;;, + 228;3;-0.000000, 0.868658,-0.000000;;, + 229;3; 0.000000, 0.868658,-0.000000;;, + 230;3; 0.000000, 0.868658, 0.000000;;, + 231;3;-0.000000, 0.868658, 0.000000;;, + 232;3;-0.000000, 0.868658,-0.000000;;, + 233;3;-0.000000, 0.868658, 0.000000;;, + 234;3;-0.000000, 0.868658, 0.000000;;, + 235;3;-0.000000, 0.868658, 0.000000;;, + 236;3;-0.000000, 0.868658,-0.000000;;, + 237;3; 0.000000, 0.868658,-0.000000;;, + 238;3;-0.000000, 0.868658, 0.000000;;, + 239;3; 0.000000, 0.868658, 0.000000;;, + 240;3; 0.000000, 0.868658, 0.000000;;, + 241;3; 0.000000, 0.868658, 0.000000;;, + 242;3; 0.000000, 0.868658, 0.000000;;, + 243;3; 0.000000, 0.868658, 0.000000;;, + 244;3; 0.000000, 0.868658, 0.000000;;, + 245;3; 0.000000, 0.868658, 0.000000;;, + 246;3; 0.000000, 0.868658, 0.000000;;, + 247;3; 0.000000, 0.868658, 0.000000;;, + 248;3; 0.000000, 0.868658, 0.000000;;, + 249;3; 0.000000, 0.868658, 0.000000;;; + } + } + Animation { + {Armature_Bone_033} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 1;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 2;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 3;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 4;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 5;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 6;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 7;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 8;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 9;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 10;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 11;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 12;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 13;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 14;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 15;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 16;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 17;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 18;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 19;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 20;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 21;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 22;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 23;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 24;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 25;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 26;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 27;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 28;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 29;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 30;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 31;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 32;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 33;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 34;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 35;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 36;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 37;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 38;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 39;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 40;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 41;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 42;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 43;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 44;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 45;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 46;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 47;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 48;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 49;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 50;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 51;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 52;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 53;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 54;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 55;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 56;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 57;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 58;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 59;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 60;4;-0.984118,-0.177486,-0.000064,-0.000002;;, + 61;4;-0.984156,-0.177191,-0.000256,-0.000007;;, + 62;4;-0.984219,-0.176698,-0.000578,-0.000015;;, + 63;4;-0.984308,-0.176006,-0.001030,-0.000026;;, + 64;4;-0.984423,-0.175114,-0.001613,-0.000041;;, + 65;4;-0.984563,-0.174023,-0.002325,-0.000059;;, + 66;4;-0.984728,-0.172737,-0.003165,-0.000081;;, + 67;4;-0.984917,-0.171257,-0.004131,-0.000105;;, + 68;4;-0.985131,-0.169590,-0.005220,-0.000133;;, + 69;4;-0.985368,-0.167742,-0.006427,-0.000164;;, + 70;4;-0.985627,-0.165720,-0.007747,-0.000197;;, + 71;4;-0.985908,-0.163536,-0.009173,-0.000233;;, + 72;4;-0.986207,-0.161201,-0.010698,-0.000272;;, + 73;4;-0.986524,-0.158729,-0.012312,-0.000313;;, + 74;4;-0.986857,-0.156135,-0.014006,-0.000356;;, + 75;4;-0.987203,-0.153437,-0.015768,-0.000401;;, + 76;4;-0.987560,-0.150654,-0.017586,-0.000448;;, + 77;4;-0.987925,-0.147805,-0.019446,-0.000495;;, + 78;4;-0.988296,-0.144912,-0.021335,-0.000543;;, + 79;4;-0.988670,-0.141997,-0.023239,-0.000591;;, + 80;4;-0.989044,-0.139082,-0.025142,-0.000640;;, + 81;4;-0.989415,-0.136189,-0.027031,-0.000688;;, + 82;4;-0.989781,-0.133340,-0.028892,-0.000735;;, + 83;4;-0.990138,-0.130557,-0.030709,-0.000781;;, + 84;4;-0.990484,-0.127859,-0.032471,-0.000826;;, + 85;4;-0.990816,-0.125265,-0.034165,-0.000869;;, + 86;4;-0.991134,-0.122793,-0.035779,-0.000910;;, + 87;4;-0.991433,-0.120458,-0.037304,-0.000949;;, + 88;4;-0.991713,-0.118274,-0.038730,-0.000986;;, + 89;4;-0.991973,-0.116253,-0.040050,-0.001019;;, + 90;4;-0.992210,-0.114405,-0.041257,-0.001050;;, + 91;4;-0.992423,-0.112737,-0.042346,-0.001078;;, + 92;4;-0.992613,-0.111258,-0.043312,-0.001102;;, + 93;4;-0.992778,-0.109971,-0.044152,-0.001124;;, + 94;4;-0.992918,-0.108881,-0.044864,-0.001142;;, + 95;4;-0.993033,-0.107989,-0.045447,-0.001157;;, + 96;4;-0.993121,-0.107296,-0.045899,-0.001168;;, + 97;4;-0.993185,-0.106803,-0.046221,-0.001176;;, + 98;4;-0.993222,-0.106509,-0.046413,-0.001181;;, + 99;4;-0.993235,-0.106411,-0.046477,-0.001183;;, + 100;4;-0.992457,-0.108704,-0.044924,-0.001143;;, + 101;4;-0.990042,-0.115829,-0.040099,-0.001020;;, + 102;4;-0.985938,-0.127931,-0.031902,-0.000812;;, + 103;4;-0.980251,-0.144703,-0.020542,-0.000523;;, + 104;4;-0.973289,-0.165237,-0.006635,-0.000169;;, + 105;4;-0.965544,-0.188081, 0.008838, 0.000225;;, + 106;4;-0.957586,-0.211550, 0.024734, 0.000629;;, + 107;4;-0.949929,-0.234133, 0.040028, 0.001019;;, + 108;4;-0.942940,-0.254745, 0.053989, 0.001374;;, + 109;4;-0.936827,-0.272776, 0.066201, 0.001685;;, + 110;4;-0.930713,-0.290807, 0.078414, 0.001995;;, + 111;4;-0.923724,-0.311419, 0.092374, 0.002351;;, + 112;4;-0.916067,-0.334001, 0.107669, 0.002740;;, + 113;4;-0.908110,-0.357471, 0.123565, 0.003144;;, + 114;4;-0.900364,-0.380315, 0.139037, 0.003538;;, + 115;4;-0.893402,-0.400849, 0.152945, 0.003892;;, + 116;4;-0.887715,-0.417621, 0.164305, 0.004181;;, + 117;4;-0.883612,-0.429723, 0.172501, 0.004390;;, + 118;4;-0.881196,-0.436847, 0.177327, 0.004513;;, + 119;4;-0.880418,-0.439141, 0.178880, 0.004552;;, + 120;4;-0.881196,-0.436848, 0.177327, 0.004513;;, + 121;4;-0.883612,-0.429723, 0.172501, 0.004390;;, + 122;4;-0.887715,-0.417621, 0.164305, 0.004181;;, + 123;4;-0.893402,-0.400849, 0.152945, 0.003892;;, + 124;4;-0.900364,-0.380315, 0.139037, 0.003538;;, + 125;4;-0.908110,-0.357471, 0.123565, 0.003144;;, + 126;4;-0.916067,-0.334001, 0.107669, 0.002740;;, + 127;4;-0.923724,-0.311419, 0.092374, 0.002351;;, + 128;4;-0.930713,-0.290807, 0.078414, 0.001995;;, + 129;4;-0.936827,-0.272776, 0.066201, 0.001685;;, + 130;4;-0.942940,-0.254745, 0.053989, 0.001374;;, + 131;4;-0.949929,-0.234133, 0.040028, 0.001019;;, + 132;4;-0.957586,-0.211550, 0.024734, 0.000629;;, + 133;4;-0.965544,-0.188081, 0.008838, 0.000225;;, + 134;4;-0.973289,-0.165237,-0.006635,-0.000169;;, + 135;4;-0.980251,-0.144703,-0.020542,-0.000523;;, + 136;4;-0.985938,-0.127931,-0.031902,-0.000812;;, + 137;4;-0.990042,-0.115829,-0.040099,-0.001020;;, + 138;4;-0.992457,-0.108704,-0.044924,-0.001143;;, + 139;4;-0.993235,-0.106411,-0.046477,-0.001183;;, + 140;4;-0.990042,-0.115829,-0.040099,-0.001020;;, + 141;4;-0.980251,-0.144703,-0.020542,-0.000523;;, + 142;4;-0.965544,-0.188081, 0.008838, 0.000225;;, + 143;4;-0.949929,-0.234133, 0.040028, 0.001019;;, + 144;4;-0.936827,-0.272776, 0.066201, 0.001685;;, + 145;4;-0.923724,-0.311419, 0.092374, 0.002351;;, + 146;4;-0.908110,-0.357471, 0.123565, 0.003144;;, + 147;4;-0.893402,-0.400849, 0.152945, 0.003892;;, + 148;4;-0.883612,-0.429723, 0.172501, 0.004390;;, + 149;4;-0.880418,-0.439141, 0.178880, 0.004552;;, + 150;4;-0.883612,-0.429723, 0.172501, 0.004390;;, + 151;4;-0.893402,-0.400849, 0.152945, 0.003892;;, + 152;4;-0.908110,-0.357471, 0.123565, 0.003144;;, + 153;4;-0.923724,-0.311419, 0.092374, 0.002351;;, + 154;4;-0.936827,-0.272776, 0.066201, 0.001685;;, + 155;4;-0.949929,-0.234133, 0.040028, 0.001019;;, + 156;4;-0.965544,-0.188081, 0.008838, 0.000225;;, + 157;4;-0.980251,-0.144703,-0.020542,-0.000523;;, + 158;4;-0.990042,-0.115829,-0.040099,-0.001020;;, + 159;4;-0.993235,-0.106411,-0.046477,-0.001183;;, + 160;4;-0.993185,-0.106803,-0.046221,-0.001176;;, + 161;4;-0.993032,-0.107989,-0.045447,-0.001157;;, + 162;4;-0.992778,-0.109971,-0.044152,-0.001124;;, + 163;4;-0.992423,-0.112737,-0.042346,-0.001078;;, + 164;4;-0.991972,-0.116253,-0.040050,-0.001019;;, + 165;4;-0.991433,-0.120458,-0.037304,-0.000949;;, + 166;4;-0.990816,-0.125266,-0.034165,-0.000869;;, + 167;4;-0.990138,-0.130557,-0.030709,-0.000781;;, + 168;4;-0.989415,-0.136189,-0.027031,-0.000688;;, + 169;4;-0.988670,-0.141997,-0.023239,-0.000591;;, + 170;4;-0.987925,-0.147805,-0.019446,-0.000495;;, + 171;4;-0.987203,-0.153437,-0.015768,-0.000401;;, + 172;4;-0.986524,-0.158729,-0.012312,-0.000313;;, + 173;4;-0.985908,-0.163536,-0.009173,-0.000233;;, + 174;4;-0.985368,-0.167742,-0.006427,-0.000164;;, + 175;4;-0.984917,-0.171257,-0.004131,-0.000105;;, + 176;4;-0.984562,-0.174023,-0.002325,-0.000059;;, + 177;4;-0.984308,-0.176006,-0.001030,-0.000026;;, + 178;4;-0.984156,-0.177191,-0.000256,-0.000007;;, + 179;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 180;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 181;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 182;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 183;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 184;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 185;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 186;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 187;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 188;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 189;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 190;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 191;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 192;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 193;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 194;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 195;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 196;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 197;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 198;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 199;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 200;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 201;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 202;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 203;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 204;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 205;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 206;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 207;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 208;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 209;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 210;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 211;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 212;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 213;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 214;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 215;4;-0.985123,-0.166367, 0.006745,-0.001948;;, + 216;4;-0.987989,-0.134773, 0.025742,-0.007435;;, + 217;4;-0.991668,-0.094207, 0.050134,-0.014481;;, + 218;4;-0.994533,-0.062614, 0.069132,-0.019968;;, + 219;4;-0.995551,-0.051397, 0.075876,-0.021916;;, + 220;4;-0.994533,-0.062614, 0.069132,-0.019968;;, + 221;4;-0.991668,-0.094207, 0.050134,-0.014481;;, + 222;4;-0.987989,-0.134773, 0.025742,-0.007435;;, + 223;4;-0.985123,-0.166367, 0.006745,-0.001948;;, + 224;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 225;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 226;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 227;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 228;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 229;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 230;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 231;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 232;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 233;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 234;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 235;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 236;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 237;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 238;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 239;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 240;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 241;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 242;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 243;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 244;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 245;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 246;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 247;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 248;4;-0.984106,-0.177584,-0.000000, 0.000000;;, + 249;4;-0.984106,-0.177584,-0.000000, 0.000000;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3;-0.000000, 1.279916,-0.000000;;, + 1;3;-0.000000, 1.279916,-0.000000;;, + 2;3;-0.000000, 1.279916,-0.000000;;, + 3;3;-0.000000, 1.279916,-0.000000;;, + 4;3;-0.000000, 1.279916,-0.000000;;, + 5;3;-0.000000, 1.279916,-0.000000;;, + 6;3;-0.000000, 1.279916,-0.000000;;, + 7;3;-0.000000, 1.279916,-0.000000;;, + 8;3;-0.000000, 1.279916,-0.000000;;, + 9;3;-0.000000, 1.279916,-0.000000;;, + 10;3;-0.000000, 1.279916,-0.000000;;, + 11;3;-0.000000, 1.279916,-0.000000;;, + 12;3;-0.000000, 1.279916,-0.000000;;, + 13;3;-0.000000, 1.279916,-0.000000;;, + 14;3;-0.000000, 1.279916,-0.000000;;, + 15;3;-0.000000, 1.279916,-0.000000;;, + 16;3;-0.000000, 1.279916,-0.000000;;, + 17;3;-0.000000, 1.279916,-0.000000;;, + 18;3;-0.000000, 1.279916,-0.000000;;, + 19;3;-0.000000, 1.279916,-0.000000;;, + 20;3;-0.000000, 1.279916,-0.000000;;, + 21;3;-0.000000, 1.279916,-0.000000;;, + 22;3;-0.000000, 1.279916,-0.000000;;, + 23;3;-0.000000, 1.279916,-0.000000;;, + 24;3;-0.000000, 1.279916,-0.000000;;, + 25;3;-0.000000, 1.279916,-0.000000;;, + 26;3;-0.000000, 1.279916,-0.000000;;, + 27;3;-0.000000, 1.279916,-0.000000;;, + 28;3;-0.000000, 1.279916,-0.000000;;, + 29;3;-0.000000, 1.279916,-0.000000;;, + 30;3;-0.000000, 1.279916,-0.000000;;, + 31;3;-0.000000, 1.279916,-0.000000;;, + 32;3;-0.000000, 1.279916,-0.000000;;, + 33;3;-0.000000, 1.279916,-0.000000;;, + 34;3;-0.000000, 1.279916,-0.000000;;, + 35;3;-0.000000, 1.279916,-0.000000;;, + 36;3;-0.000000, 1.279916,-0.000000;;, + 37;3;-0.000000, 1.279916,-0.000000;;, + 38;3;-0.000000, 1.279916,-0.000000;;, + 39;3;-0.000000, 1.279916,-0.000000;;, + 40;3;-0.000000, 1.279916,-0.000000;;, + 41;3;-0.000000, 1.279916,-0.000000;;, + 42;3;-0.000000, 1.279916,-0.000000;;, + 43;3;-0.000000, 1.279916,-0.000000;;, + 44;3;-0.000000, 1.279916,-0.000000;;, + 45;3;-0.000000, 1.279916,-0.000000;;, + 46;3;-0.000000, 1.279916,-0.000000;;, + 47;3;-0.000000, 1.279916,-0.000000;;, + 48;3;-0.000000, 1.279916,-0.000000;;, + 49;3;-0.000000, 1.279916,-0.000000;;, + 50;3;-0.000000, 1.279916,-0.000000;;, + 51;3;-0.000000, 1.279916,-0.000000;;, + 52;3;-0.000000, 1.279916,-0.000000;;, + 53;3;-0.000000, 1.279916,-0.000000;;, + 54;3;-0.000000, 1.279916,-0.000000;;, + 55;3;-0.000000, 1.279916,-0.000000;;, + 56;3;-0.000000, 1.279916,-0.000000;;, + 57;3;-0.000000, 1.279916,-0.000000;;, + 58;3;-0.000000, 1.279916,-0.000000;;, + 59;3;-0.000000, 1.279916,-0.000000;;, + 60;3; 0.000000, 1.279916, 0.000000;;, + 61;3;-0.000000, 1.279916,-0.000000;;, + 62;3;-0.000000, 1.279916,-0.000000;;, + 63;3;-0.000000, 1.279916, 0.000000;;, + 64;3;-0.000000, 1.279916, 0.000000;;, + 65;3; 0.000000, 1.279916,-0.000000;;, + 66;3;-0.000000, 1.279916, 0.000000;;, + 67;3; 0.000000, 1.279916,-0.000000;;, + 68;3; 0.000000, 1.279916,-0.000000;;, + 69;3; 0.000000, 1.279916, 0.000000;;, + 70;3;-0.000000, 1.279916,-0.000000;;, + 71;3;-0.000000, 1.279916,-0.000000;;, + 72;3;-0.000000, 1.279916, 0.000000;;, + 73;3;-0.000000, 1.279916,-0.000000;;, + 74;3;-0.000000, 1.279916, 0.000000;;, + 75;3;-0.000000, 1.279916,-0.000000;;, + 76;3;-0.000000, 1.279916, 0.000000;;, + 77;3;-0.000000, 1.279916, 0.000000;;, + 78;3;-0.000000, 1.279916,-0.000000;;, + 79;3;-0.000000, 1.279916, 0.000000;;, + 80;3;-0.000000, 1.279916,-0.000000;;, + 81;3;-0.000000, 1.279916, 0.000000;;, + 82;3;-0.000000, 1.279916, 0.000000;;, + 83;3;-0.000000, 1.279916, 0.000000;;, + 84;3;-0.000000, 1.279916, 0.000000;;, + 85;3; 0.000000, 1.279916, 0.000000;;, + 86;3;-0.000000, 1.279916,-0.000000;;, + 87;3;-0.000000, 1.279916,-0.000000;;, + 88;3;-0.000000, 1.279916, 0.000000;;, + 89;3;-0.000000, 1.279916,-0.000000;;, + 90;3; 0.000000, 1.279916, 0.000000;;, + 91;3; 0.000000, 1.279916,-0.000000;;, + 92;3;-0.000000, 1.279916,-0.000000;;, + 93;3; 0.000000, 1.279916,-0.000000;;, + 94;3; 0.000000, 1.279916,-0.000000;;, + 95;3; 0.000000, 1.279916,-0.000000;;, + 96;3; 0.000000, 1.279916, 0.000000;;, + 97;3;-0.000000, 1.279916, 0.000000;;, + 98;3; 0.000000, 1.279916, 0.000000;;, + 99;3;-0.000000, 1.279916,-0.000000;;, + 100;3;-0.000000, 1.279916,-0.000000;;, + 101;3;-0.000000, 1.279916, 0.000000;;, + 102;3;-0.000000, 1.279916, 0.000000;;, + 103;3; 0.000000, 1.279916,-0.000000;;, + 104;3;-0.000000, 1.279916, 0.000000;;, + 105;3;-0.000000, 1.279916, 0.000000;;, + 106;3;-0.000000, 1.279916,-0.000000;;, + 107;3; 0.000000, 1.279916,-0.000000;;, + 108;3; 0.000000, 1.279916, 0.000000;;, + 109;3; 0.000000, 1.279916, 0.000000;;, + 110;3; 0.000000, 1.279916, 0.000000;;, + 111;3;-0.000000, 1.279916,-0.000000;;, + 112;3;-0.000000, 1.279916,-0.000000;;, + 113;3;-0.000000, 1.279916, 0.000000;;, + 114;3;-0.000000, 1.279916,-0.000000;;, + 115;3;-0.000000, 1.279916,-0.000000;;, + 116;3;-0.000000, 1.279916,-0.000000;;, + 117;3;-0.000000, 1.279916, 0.000000;;, + 118;3; 0.000000, 1.279916, 0.000000;;, + 119;3;-0.000000, 1.279916, 0.000000;;, + 120;3;-0.000000, 1.279916, 0.000000;;, + 121;3; 0.000000, 1.279916, 0.000000;;, + 122;3;-0.000000, 1.279916, 0.000000;;, + 123;3;-0.000000, 1.279916, 0.000000;;, + 124;3;-0.000000, 1.279916, 0.000000;;, + 125;3;-0.000000, 1.279916, 0.000000;;, + 126;3; 0.000000, 1.279916,-0.000000;;, + 127;3;-0.000000, 1.279916,-0.000000;;, + 128;3;-0.000000, 1.279916,-0.000000;;, + 129;3;-0.000000, 1.279916, 0.000000;;, + 130;3; 0.000000, 1.279916, 0.000000;;, + 131;3; 0.000000, 1.279916,-0.000000;;, + 132;3; 0.000000, 1.279916, 0.000000;;, + 133;3;-0.000000, 1.279916,-0.000000;;, + 134;3;-0.000000, 1.279916, 0.000000;;, + 135;3; 0.000000, 1.279916, 0.000000;;, + 136;3; 0.000000, 1.279916, 0.000000;;, + 137;3;-0.000000, 1.279916,-0.000000;;, + 138;3;-0.000000, 1.279916,-0.000000;;, + 139;3;-0.000000, 1.279916,-0.000000;;, + 140;3; 0.000000, 1.279916,-0.000000;;, + 141;3; 0.000000, 1.279916,-0.000000;;, + 142;3;-0.000000, 1.279916, 0.000000;;, + 143;3; 0.000000, 1.279916,-0.000000;;, + 144;3; 0.000000, 1.279916, 0.000000;;, + 145;3;-0.000000, 1.279916,-0.000000;;, + 146;3;-0.000000, 1.279916, 0.000000;;, + 147;3;-0.000000, 1.279916,-0.000000;;, + 148;3;-0.000000, 1.279916, 0.000000;;, + 149;3;-0.000000, 1.279916, 0.000000;;, + 150;3; 0.000000, 1.279916, 0.000000;;, + 151;3;-0.000000, 1.279916, 0.000000;;, + 152;3;-0.000000, 1.279916, 0.000000;;, + 153;3;-0.000000, 1.279916,-0.000000;;, + 154;3;-0.000000, 1.279916, 0.000000;;, + 155;3;-0.000000, 1.279916, 0.000000;;, + 156;3; 0.000000, 1.279916,-0.000000;;, + 157;3; 0.000000, 1.279917,-0.000000;;, + 158;3;-0.000000, 1.279916, 0.000000;;, + 159;3;-0.000000, 1.279916,-0.000000;;, + 160;3; 0.000000, 1.279916, 0.000000;;, + 161;3; 0.000000, 1.279916,-0.000000;;, + 162;3;-0.000000, 1.279916,-0.000000;;, + 163;3; 0.000000, 1.279916,-0.000000;;, + 164;3; 0.000000, 1.279916,-0.000000;;, + 165;3; 0.000000, 1.279916, 0.000000;;, + 166;3; 0.000000, 1.279916,-0.000000;;, + 167;3; 0.000000, 1.279916, 0.000000;;, + 168;3; 0.000000, 1.279916, 0.000000;;, + 169;3; 0.000000, 1.279916,-0.000000;;, + 170;3;-0.000000, 1.279916, 0.000000;;, + 171;3;-0.000000, 1.279916, 0.000000;;, + 172;3;-0.000000, 1.279916, 0.000000;;, + 173;3;-0.000000, 1.279916, 0.000000;;, + 174;3;-0.000000, 1.279916,-0.000000;;, + 175;3;-0.000000, 1.279916, 0.000000;;, + 176;3;-0.000000, 1.279916, 0.000000;;, + 177;3;-0.000000, 1.279916,-0.000000;;, + 178;3;-0.000000, 1.279916,-0.000000;;, + 179;3;-0.000000, 1.279916,-0.000000;;, + 180;3; 0.000000, 1.279916,-0.000000;;, + 181;3;-0.000000, 1.279916,-0.000000;;, + 182;3; 0.000000, 1.279916,-0.000000;;, + 183;3; 0.000000, 1.279916,-0.000000;;, + 184;3;-0.000000, 1.279916, 0.000000;;, + 185;3; 0.000000, 1.279916, 0.000000;;, + 186;3; 0.000000, 1.279916,-0.000000;;, + 187;3;-0.000000, 1.279916, 0.000000;;, + 188;3;-0.000000, 1.279916, 0.000000;;, + 189;3; 0.000000, 1.279916, 0.000000;;, + 190;3; 0.000000, 1.279916,-0.000000;;, + 191;3; 0.000000, 1.279916,-0.000000;;, + 192;3; 0.000000, 1.279916, 0.000000;;, + 193;3; 0.000000, 1.279916,-0.000000;;, + 194;3;-0.000000, 1.279916, 0.000000;;, + 195;3; 0.000000, 1.279916, 0.000000;;, + 196;3;-0.000000, 1.279916,-0.000000;;, + 197;3;-0.000000, 1.279916, 0.000000;;, + 198;3; 0.000000, 1.279916,-0.000000;;, + 199;3;-0.000000, 1.279916,-0.000000;;, + 200;3;-0.000000, 1.279916,-0.000000;;, + 201;3;-0.000000, 1.279916,-0.000000;;, + 202;3;-0.000000, 1.279916,-0.000000;;, + 203;3;-0.000000, 1.279916,-0.000000;;, + 204;3;-0.000000, 1.279916,-0.000000;;, + 205;3;-0.000000, 1.279916,-0.000000;;, + 206;3;-0.000000, 1.279916,-0.000000;;, + 207;3;-0.000000, 1.279916,-0.000000;;, + 208;3;-0.000000, 1.279916,-0.000000;;, + 209;3;-0.000000, 1.279916,-0.000000;;, + 210;3;-0.000000, 1.279916,-0.000000;;, + 211;3;-0.000000, 1.279916,-0.000000;;, + 212;3;-0.000000, 1.279916,-0.000000;;, + 213;3;-0.000000, 1.279916, 0.000000;;, + 214;3;-0.000000, 1.279916, 0.000000;;, + 215;3; 0.000000, 1.279916, 0.000000;;, + 216;3; 0.000000, 1.279916,-0.000000;;, + 217;3;-0.000000, 1.279916,-0.000000;;, + 218;3;-0.000001, 1.279916,-0.000000;;, + 219;3;-0.000000, 1.279916, 0.000000;;, + 220;3;-0.000000, 1.279916,-0.000000;;, + 221;3;-0.000000, 1.279916,-0.000000;;, + 222;3; 0.000000, 1.279916,-0.000000;;, + 223;3;-0.000000, 1.279916, 0.000000;;, + 224;3; 0.000000, 1.279916,-0.000000;;, + 225;3; 0.000000, 1.279916,-0.000000;;, + 226;3;-0.000000, 1.279916,-0.000000;;, + 227;3; 0.000000, 1.279916, 0.000000;;, + 228;3;-0.000000, 1.279916,-0.000000;;, + 229;3; 0.000000, 1.279917, 0.000000;;, + 230;3; 0.000000, 1.279916,-0.000000;;, + 231;3;-0.000000, 1.279916,-0.000000;;, + 232;3; 0.000000, 1.279916,-0.000000;;, + 233;3; 0.000000, 1.279916, 0.000000;;, + 234;3;-0.000000, 1.279916,-0.000000;;, + 235;3;-0.000000, 1.279916,-0.000000;;, + 236;3; 0.000000, 1.279916,-0.000000;;, + 237;3;-0.000000, 1.279916,-0.000000;;, + 238;3;-0.000000, 1.279916, 0.000000;;, + 239;3;-0.000000, 1.279916,-0.000000;;, + 240;3;-0.000000, 1.279916,-0.000000;;, + 241;3;-0.000000, 1.279916,-0.000000;;, + 242;3;-0.000000, 1.279916,-0.000000;;, + 243;3;-0.000000, 1.279916,-0.000000;;, + 244;3;-0.000000, 1.279916,-0.000000;;, + 245;3;-0.000000, 1.279916,-0.000000;;, + 246;3;-0.000000, 1.279916,-0.000000;;, + 247;3;-0.000000, 1.279916,-0.000000;;, + 248;3;-0.000000, 1.279916,-0.000000;;, + 249;3;-0.000000, 1.279916,-0.000000;;; + } + } + Animation { + {Armature_Bone_037} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 1;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 2;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 3;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 4;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 5;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 6;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 7;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 8;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 9;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 10;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 11;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 12;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 13;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 14;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 15;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 16;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 17;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 18;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 19;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 20;4;-0.969856,-0.243669,-0.000080,-0.000039;;, + 21;4;-0.969950,-0.243264,-0.000323,-0.000156;;, + 22;4;-0.970108,-0.242587,-0.000730,-0.000353;;, + 23;4;-0.970328,-0.241641,-0.001296,-0.000627;;, + 24;4;-0.970607,-0.240440,-0.002017,-0.000975;;, + 25;4;-0.970941,-0.239003,-0.002878,-0.001391;;, + 26;4;-0.971323,-0.237360,-0.003863,-0.001867;;, + 27;4;-0.971744,-0.235552,-0.004948,-0.002392;;, + 28;4;-0.972192,-0.233627,-0.006102,-0.002949;;, + 29;4;-0.972653,-0.231643,-0.007292,-0.003525;;, + 30;4;-0.973115,-0.229658,-0.008482,-0.004100;;, + 31;4;-0.973563,-0.227733,-0.009636,-0.004658;;, + 32;4;-0.973983,-0.225925,-0.010720,-0.005182;;, + 33;4;-0.974366,-0.224282,-0.011705,-0.005658;;, + 34;4;-0.974700,-0.222845,-0.012567,-0.006074;;, + 35;4;-0.974979,-0.221644,-0.013287,-0.006423;;, + 36;4;-0.975199,-0.220698,-0.013854,-0.006697;;, + 37;4;-0.975357,-0.220021,-0.014260,-0.006893;;, + 38;4;-0.975451,-0.219616,-0.014503,-0.007010;;, + 39;4;-0.975482,-0.219482,-0.014583,-0.007049;;, + 40;4;-0.975451,-0.219616,-0.014503,-0.007010;;, + 41;4;-0.975357,-0.220021,-0.014260,-0.006893;;, + 42;4;-0.975199,-0.220698,-0.013854,-0.006697;;, + 43;4;-0.974979,-0.221644,-0.013287,-0.006423;;, + 44;4;-0.974700,-0.222845,-0.012567,-0.006074;;, + 45;4;-0.974366,-0.224282,-0.011705,-0.005658;;, + 46;4;-0.973983,-0.225925,-0.010720,-0.005182;;, + 47;4;-0.973563,-0.227733,-0.009636,-0.004658;;, + 48;4;-0.973115,-0.229658,-0.008482,-0.004100;;, + 49;4;-0.972653,-0.231643,-0.007292,-0.003525;;, + 50;4;-0.972192,-0.233627,-0.006102,-0.002949;;, + 51;4;-0.971744,-0.235552,-0.004948,-0.002392;;, + 52;4;-0.971323,-0.237360,-0.003863,-0.001867;;, + 53;4;-0.970941,-0.239003,-0.002878,-0.001391;;, + 54;4;-0.970607,-0.240440,-0.002017,-0.000975;;, + 55;4;-0.970328,-0.241641,-0.001296,-0.000627;;, + 56;4;-0.970108,-0.242587,-0.000730,-0.000353;;, + 57;4;-0.969950,-0.243264,-0.000323,-0.000156;;, + 58;4;-0.969856,-0.243669,-0.000080,-0.000039;;, + 59;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 60;4;-0.969850,-0.243657,-0.000087,-0.000042;;, + 61;4;-0.969925,-0.243215,-0.000348,-0.000168;;, + 62;4;-0.970052,-0.242475,-0.000785,-0.000379;;, + 63;4;-0.970230,-0.241435,-0.001399,-0.000676;;, + 64;4;-0.970459,-0.240097,-0.002190,-0.001059;;, + 65;4;-0.970738,-0.238460,-0.003157,-0.001526;;, + 66;4;-0.971069,-0.236529,-0.004298,-0.002078;;, + 67;4;-0.971448,-0.234309,-0.005610,-0.002712;;, + 68;4;-0.971876,-0.231806,-0.007088,-0.003426;;, + 69;4;-0.972350,-0.229032,-0.008727,-0.004218;;, + 70;4;-0.972869,-0.225999,-0.010520,-0.005085;;, + 71;4;-0.973430,-0.222721,-0.012456,-0.006021;;, + 72;4;-0.974029,-0.219217,-0.014527,-0.007022;;, + 73;4;-0.974663,-0.215506,-0.016719,-0.008081;;, + 74;4;-0.975329,-0.211614,-0.019019,-0.009193;;, + 75;4;-0.976021,-0.207565,-0.021411,-0.010349;;, + 76;4;-0.976736,-0.203387,-0.023879,-0.011542;;, + 77;4;-0.977467,-0.199112,-0.026405,-0.012763;;, + 78;4;-0.978209,-0.194770,-0.028970,-0.014003;;, + 79;4;-0.978957,-0.190395,-0.031555,-0.015253;;, + 80;4;-0.979705,-0.186020,-0.034140,-0.016502;;, + 81;4;-0.980448,-0.181678,-0.036705,-0.017742;;, + 82;4;-0.981179,-0.177403,-0.039231,-0.018963;;, + 83;4;-0.981893,-0.173226,-0.041700,-0.020156;;, + 84;4;-0.982585,-0.169177,-0.044092,-0.021313;;, + 85;4;-0.983251,-0.165284,-0.046392,-0.022424;;, + 86;4;-0.983885,-0.161574,-0.048584,-0.023484;;, + 87;4;-0.984485,-0.158070,-0.050654,-0.024485;;, + 88;4;-0.985045,-0.154792,-0.052591,-0.025421;;, + 89;4;-0.985564,-0.151758,-0.054383,-0.026287;;, + 90;4;-0.986038,-0.148984,-0.056022,-0.027080;;, + 91;4;-0.986466,-0.146482,-0.057501,-0.027794;;, + 92;4;-0.986846,-0.144261,-0.058812,-0.028428;;, + 93;4;-0.987176,-0.142330,-0.059953,-0.028980;;, + 94;4;-0.987456,-0.140694,-0.060920,-0.029447;;, + 95;4;-0.987685,-0.139355,-0.061711,-0.029830;;, + 96;4;-0.987862,-0.138316,-0.062325,-0.030126;;, + 97;4;-0.987989,-0.137576,-0.062763,-0.030338;;, + 98;4;-0.988065,-0.137134,-0.063024,-0.030464;;, + 99;4;-0.988090,-0.136987,-0.063110,-0.030506;;, + 100;4;-0.987822,-0.138188,-0.062392,-0.030159;;, + 101;4;-0.986990,-0.141919,-0.060160,-0.029080;;, + 102;4;-0.985577,-0.148256,-0.056369,-0.027247;;, + 103;4;-0.983618,-0.157039,-0.051114,-0.024707;;, + 104;4;-0.981220,-0.167792,-0.044682,-0.021598;;, + 105;4;-0.978553,-0.179755,-0.037525,-0.018139;;, + 106;4;-0.975812,-0.192046,-0.030173,-0.014585;;, + 107;4;-0.973176,-0.203871,-0.023098,-0.011165;;, + 108;4;-0.970769,-0.214665,-0.016641,-0.008044;;, + 109;4;-0.968663,-0.224108,-0.010992,-0.005313;;, + 110;4;-0.966558,-0.233550,-0.005343,-0.002583;;, + 111;4;-0.964151,-0.244344, 0.001114, 0.000539;;, + 112;4;-0.961514,-0.256170, 0.008189, 0.003958;;, + 113;4;-0.958773,-0.268460, 0.015541, 0.007512;;, + 114;4;-0.956106,-0.280423, 0.022698, 0.010972;;, + 115;4;-0.953708,-0.291176, 0.029130, 0.014081;;, + 116;4;-0.951750,-0.299959, 0.034385, 0.016621;;, + 117;4;-0.950337,-0.306296, 0.038176, 0.018453;;, + 118;4;-0.949505,-0.310027, 0.040408, 0.019532;;, + 119;4;-0.949237,-0.311228, 0.041127, 0.019880;;, + 120;4;-0.949505,-0.310027, 0.040408, 0.019532;;, + 121;4;-0.950337,-0.306296, 0.038176, 0.018453;;, + 122;4;-0.951750,-0.299959, 0.034385, 0.016621;;, + 123;4;-0.953708,-0.291176, 0.029130, 0.014081;;, + 124;4;-0.956106,-0.280423, 0.022698, 0.010972;;, + 125;4;-0.958773,-0.268460, 0.015541, 0.007512;;, + 126;4;-0.961514,-0.256170, 0.008189, 0.003958;;, + 127;4;-0.964151,-0.244344, 0.001114, 0.000539;;, + 128;4;-0.966558,-0.233550,-0.005343,-0.002583;;, + 129;4;-0.968663,-0.224108,-0.010992,-0.005313;;, + 130;4;-0.970769,-0.214665,-0.016641,-0.008044;;, + 131;4;-0.973176,-0.203871,-0.023098,-0.011165;;, + 132;4;-0.975812,-0.192046,-0.030173,-0.014585;;, + 133;4;-0.978553,-0.179755,-0.037525,-0.018139;;, + 134;4;-0.981220,-0.167792,-0.044682,-0.021598;;, + 135;4;-0.983618,-0.157039,-0.051114,-0.024707;;, + 136;4;-0.985577,-0.148256,-0.056369,-0.027247;;, + 137;4;-0.986990,-0.141919,-0.060160,-0.029080;;, + 138;4;-0.987822,-0.138188,-0.062392,-0.030159;;, + 139;4;-0.988090,-0.136987,-0.063110,-0.030506;;, + 140;4;-0.986990,-0.141919,-0.060160,-0.029080;;, + 141;4;-0.983618,-0.157039,-0.051114,-0.024707;;, + 142;4;-0.978553,-0.179755,-0.037525,-0.018139;;, + 143;4;-0.973176,-0.203871,-0.023098,-0.011165;;, + 144;4;-0.968663,-0.224108,-0.010992,-0.005313;;, + 145;4;-0.964151,-0.244344, 0.001114, 0.000539;;, + 146;4;-0.958773,-0.268460, 0.015541, 0.007512;;, + 147;4;-0.953708,-0.291176, 0.029130, 0.014081;;, + 148;4;-0.950337,-0.306296, 0.038176, 0.018453;;, + 149;4;-0.949237,-0.311228, 0.041127, 0.019880;;, + 150;4;-0.950337,-0.306296, 0.038176, 0.018453;;, + 151;4;-0.953708,-0.291176, 0.029130, 0.014081;;, + 152;4;-0.958773,-0.268460, 0.015541, 0.007512;;, + 153;4;-0.964151,-0.244344, 0.001114, 0.000539;;, + 154;4;-0.968663,-0.224108,-0.010992,-0.005313;;, + 155;4;-0.973176,-0.203871,-0.023098,-0.011165;;, + 156;4;-0.978553,-0.179755,-0.037525,-0.018139;;, + 157;4;-0.983618,-0.157039,-0.051114,-0.024707;;, + 158;4;-0.986990,-0.141919,-0.060160,-0.029080;;, + 159;4;-0.988090,-0.136987,-0.063110,-0.030506;;, + 160;4;-0.987989,-0.137576,-0.062763,-0.030338;;, + 161;4;-0.987685,-0.139355,-0.061711,-0.029830;;, + 162;4;-0.987176,-0.142330,-0.059953,-0.028980;;, + 163;4;-0.986466,-0.146482,-0.057501,-0.027794;;, + 164;4;-0.985564,-0.151758,-0.054383,-0.026287;;, + 165;4;-0.984485,-0.158070,-0.050654,-0.024485;;, + 166;4;-0.983251,-0.165284,-0.046392,-0.022424;;, + 167;4;-0.981893,-0.173226,-0.041700,-0.020156;;, + 168;4;-0.980448,-0.181678,-0.036705,-0.017742;;, + 169;4;-0.978957,-0.190395,-0.031555,-0.015253;;, + 170;4;-0.977467,-0.199112,-0.026405,-0.012763;;, + 171;4;-0.976021,-0.207565,-0.021411,-0.010349;;, + 172;4;-0.974663,-0.215506,-0.016719,-0.008081;;, + 173;4;-0.973430,-0.222721,-0.012456,-0.006021;;, + 174;4;-0.972350,-0.229032,-0.008727,-0.004218;;, + 175;4;-0.971448,-0.234309,-0.005610,-0.002712;;, + 176;4;-0.970738,-0.238460,-0.003157,-0.001526;;, + 177;4;-0.970230,-0.241435,-0.001399,-0.000676;;, + 178;4;-0.969925,-0.243215,-0.000348,-0.000168;;, + 179;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 180;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 181;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 182;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 183;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 184;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 185;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 186;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 187;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 188;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 189;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 190;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 191;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 192;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 193;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 194;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 195;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 196;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 197;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 198;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 199;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 200;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 201;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 202;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 203;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 204;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 205;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 206;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 207;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 208;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 209;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 210;4;-0.972002,-0.230274, 0.006046, 0.001263;;, + 211;4;-0.978134,-0.190099, 0.024224, 0.004983;;, + 212;4;-0.986008,-0.132963, 0.050649, 0.010192;;, + 213;4;-0.992141,-0.077657, 0.077232, 0.015091;;, + 214;4;-0.994318,-0.038385, 0.097578, 0.018361;;, + 215;4;-0.993304,-0.009580, 0.115048, 0.020396;;, + 216;4;-0.990274, 0.016243, 0.133530, 0.021818;;, + 217;4;-0.985919, 0.035525, 0.149555, 0.022563;;, + 218;4;-0.981625, 0.046217, 0.159633, 0.022806;;, + 219;4;-0.978459, 0.049279, 0.162803, 0.022835;;, + 220;4;-0.975935, 0.023228, 0.148331, 0.020806;;, + 221;4;-0.973450,-0.050152, 0.107570, 0.015088;;, + 222;4;-0.971418,-0.144372, 0.055233, 0.007747;;, + 223;4;-0.970197,-0.217752, 0.014471, 0.002030;;, + 224;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 225;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 226;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 227;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 228;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 229;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 230;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 231;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 232;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 233;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 234;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 235;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 236;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 237;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 238;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 239;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 240;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 241;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 242;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 243;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 244;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 245;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 246;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 247;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 248;4;-0.969825,-0.243803,-0.000000, 0.000000;;, + 249;4;-0.969825,-0.243803,-0.000000, 0.000000;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3;-0.000000, 1.228416,-0.000000;;, + 1;3;-0.000000, 1.228416,-0.000000;;, + 2;3;-0.000000, 1.228416,-0.000000;;, + 3;3;-0.000000, 1.228416,-0.000000;;, + 4;3;-0.000000, 1.228416,-0.000000;;, + 5;3;-0.000000, 1.228416,-0.000000;;, + 6;3;-0.000000, 1.228416,-0.000000;;, + 7;3;-0.000000, 1.228416,-0.000000;;, + 8;3;-0.000000, 1.228416,-0.000000;;, + 9;3;-0.000000, 1.228416,-0.000000;;, + 10;3;-0.000000, 1.228416,-0.000000;;, + 11;3;-0.000000, 1.228416,-0.000000;;, + 12;3;-0.000000, 1.228416,-0.000000;;, + 13;3;-0.000000, 1.228416,-0.000000;;, + 14;3;-0.000000, 1.228416,-0.000000;;, + 15;3;-0.000000, 1.228416,-0.000000;;, + 16;3;-0.000000, 1.228416,-0.000000;;, + 17;3;-0.000000, 1.228416,-0.000000;;, + 18;3;-0.000000, 1.228416,-0.000000;;, + 19;3;-0.000000, 1.228416,-0.000000;;, + 20;3;-0.000000, 1.228416,-0.000000;;, + 21;3;-0.000000, 1.228416,-0.000000;;, + 22;3;-0.000000, 1.228416,-0.000000;;, + 23;3;-0.000000, 1.228416,-0.000000;;, + 24;3;-0.000000, 1.228416,-0.000000;;, + 25;3;-0.000000, 1.228416,-0.000000;;, + 26;3;-0.000000, 1.228416,-0.000000;;, + 27;3;-0.000000, 1.228416,-0.000000;;, + 28;3;-0.000000, 1.228416,-0.000000;;, + 29;3;-0.000000, 1.228416,-0.000000;;, + 30;3;-0.000000, 1.228416,-0.000000;;, + 31;3;-0.000000, 1.228416,-0.000000;;, + 32;3;-0.000000, 1.228416,-0.000000;;, + 33;3;-0.000000, 1.228416,-0.000000;;, + 34;3;-0.000000, 1.228416,-0.000000;;, + 35;3;-0.000000, 1.228416,-0.000000;;, + 36;3;-0.000000, 1.228416,-0.000000;;, + 37;3;-0.000000, 1.228416,-0.000000;;, + 38;3;-0.000000, 1.228416,-0.000000;;, + 39;3;-0.000000, 1.228416,-0.000000;;, + 40;3;-0.000000, 1.228416,-0.000000;;, + 41;3;-0.000000, 1.228416,-0.000000;;, + 42;3;-0.000000, 1.228416,-0.000000;;, + 43;3;-0.000000, 1.228416,-0.000000;;, + 44;3;-0.000000, 1.228416,-0.000000;;, + 45;3;-0.000000, 1.228416,-0.000000;;, + 46;3;-0.000000, 1.228416,-0.000000;;, + 47;3;-0.000000, 1.228416,-0.000000;;, + 48;3;-0.000000, 1.228416,-0.000000;;, + 49;3;-0.000000, 1.228416,-0.000000;;, + 50;3;-0.000000, 1.228416,-0.000000;;, + 51;3;-0.000000, 1.228416,-0.000000;;, + 52;3;-0.000000, 1.228416,-0.000000;;, + 53;3;-0.000000, 1.228416,-0.000000;;, + 54;3;-0.000000, 1.228416,-0.000000;;, + 55;3;-0.000000, 1.228416,-0.000000;;, + 56;3;-0.000000, 1.228416,-0.000000;;, + 57;3;-0.000000, 1.228416,-0.000000;;, + 58;3;-0.000000, 1.228416,-0.000000;;, + 59;3;-0.000000, 1.228416,-0.000000;;, + 60;3;-0.000000, 1.228417,-0.000000;;, + 61;3;-0.000000, 1.228416, 0.000000;;, + 62;3;-0.000000, 1.228416, 0.000000;;, + 63;3;-0.000000, 1.228416, 0.000000;;, + 64;3; 0.000000, 1.228416, 0.000000;;, + 65;3;-0.000000, 1.228416,-0.000000;;, + 66;3;-0.000000, 1.228417, 0.000000;;, + 67;3; 0.000000, 1.228417, 0.000000;;, + 68;3; 0.000000, 1.228417,-0.000000;;, + 69;3; 0.000000, 1.228416,-0.000000;;, + 70;3;-0.000000, 1.228417,-0.000000;;, + 71;3;-0.000000, 1.228416, 0.000000;;, + 72;3;-0.000000, 1.228417, 0.000000;;, + 73;3; 0.000000, 1.228416, 0.000000;;, + 74;3;-0.000000, 1.228417, 0.000000;;, + 75;3;-0.000000, 1.228417, 0.000000;;, + 76;3;-0.000000, 1.228416, 0.000000;;, + 77;3; 0.000000, 1.228417, 0.000000;;, + 78;3;-0.000000, 1.228417,-0.000000;;, + 79;3;-0.000000, 1.228417,-0.000000;;, + 80;3;-0.000000, 1.228417, 0.000000;;, + 81;3;-0.000001, 1.228416, 0.000000;;, + 82;3;-0.000000, 1.228416,-0.000000;;, + 83;3; 0.000000, 1.228416, 0.000000;;, + 84;3;-0.000000, 1.228416, 0.000000;;, + 85;3;-0.000000, 1.228417,-0.000000;;, + 86;3;-0.000000, 1.228416, 0.000000;;, + 87;3;-0.000000, 1.228416,-0.000000;;, + 88;3;-0.000000, 1.228416, 0.000000;;, + 89;3; 0.000000, 1.228416,-0.000000;;, + 90;3;-0.000000, 1.228417, 0.000000;;, + 91;3;-0.000000, 1.228417,-0.000000;;, + 92;3;-0.000000, 1.228416,-0.000000;;, + 93;3; 0.000000, 1.228417,-0.000000;;, + 94;3; 0.000000, 1.228416, 0.000000;;, + 95;3;-0.000000, 1.228417,-0.000000;;, + 96;3; 0.000000, 1.228417,-0.000000;;, + 97;3;-0.000000, 1.228416,-0.000000;;, + 98;3; 0.000000, 1.228417, 0.000000;;, + 99;3;-0.000000, 1.228416,-0.000000;;, + 100;3;-0.000000, 1.228416, 0.000000;;, + 101;3;-0.000000, 1.228417, 0.000000;;, + 102;3;-0.000000, 1.228416,-0.000000;;, + 103;3;-0.000000, 1.228416,-0.000000;;, + 104;3;-0.000000, 1.228416,-0.000000;;, + 105;3;-0.000000, 1.228416,-0.000000;;, + 106;3; 0.000000, 1.228416, 0.000000;;, + 107;3;-0.000000, 1.228416, 0.000000;;, + 108;3; 0.000000, 1.228416,-0.000000;;, + 109;3; 0.000000, 1.228416,-0.000000;;, + 110;3; 0.000000, 1.228416, 0.000000;;, + 111;3; 0.000000, 1.228417, 0.000000;;, + 112;3; 0.000000, 1.228416,-0.000000;;, + 113;3; 0.000000, 1.228416,-0.000000;;, + 114;3;-0.000000, 1.228416,-0.000000;;, + 115;3; 0.000000, 1.228417,-0.000000;;, + 116;3; 0.000000, 1.228416, 0.000000;;, + 117;3;-0.000000, 1.228416, 0.000000;;, + 118;3;-0.000000, 1.228416,-0.000000;;, + 119;3;-0.000000, 1.228416,-0.000000;;, + 120;3;-0.000000, 1.228416, 0.000000;;, + 121;3;-0.000000, 1.228416,-0.000000;;, + 122;3; 0.000000, 1.228416,-0.000000;;, + 123;3; 0.000000, 1.228417,-0.000000;;, + 124;3; 0.000000, 1.228417,-0.000000;;, + 125;3; 0.000000, 1.228416, 0.000000;;, + 126;3; 0.000000, 1.228417, 0.000000;;, + 127;3;-0.000000, 1.228416, 0.000000;;, + 128;3; 0.000000, 1.228416,-0.000000;;, + 129;3;-0.000000, 1.228417, 0.000000;;, + 130;3;-0.000000, 1.228416,-0.000000;;, + 131;3; 0.000000, 1.228416, 0.000000;;, + 132;3;-0.000000, 1.228416, 0.000000;;, + 133;3;-0.000000, 1.228417,-0.000000;;, + 134;3; 0.000000, 1.228417,-0.000000;;, + 135;3; 0.000000, 1.228416, 0.000000;;, + 136;3;-0.000000, 1.228417,-0.000000;;, + 137;3; 0.000000, 1.228416, 0.000000;;, + 138;3; 0.000000, 1.228417, 0.000000;;, + 139;3;-0.000000, 1.228416,-0.000000;;, + 140;3; 0.000000, 1.228416, 0.000000;;, + 141;3; 0.000000, 1.228417,-0.000000;;, + 142;3;-0.000000, 1.228416, 0.000000;;, + 143;3;-0.000000, 1.228416,-0.000000;;, + 144;3; 0.000000, 1.228416,-0.000000;;, + 145;3; 0.000000, 1.228417, 0.000000;;, + 146;3; 0.000000, 1.228416,-0.000000;;, + 147;3; 0.000000, 1.228417,-0.000000;;, + 148;3;-0.000000, 1.228416, 0.000000;;, + 149;3;-0.000000, 1.228416,-0.000000;;, + 150;3;-0.000000, 1.228416,-0.000000;;, + 151;3; 0.000000, 1.228417,-0.000000;;, + 152;3; 0.000000, 1.228416, 0.000000;;, + 153;3;-0.000000, 1.228416, 0.000000;;, + 154;3;-0.000000, 1.228417, 0.000000;;, + 155;3;-0.000000, 1.228416, 0.000000;;, + 156;3;-0.000000, 1.228417, 0.000000;;, + 157;3;-0.000000, 1.228417, 0.000000;;, + 158;3;-0.000000, 1.228416,-0.000000;;, + 159;3;-0.000000, 1.228416,-0.000000;;, + 160;3;-0.000000, 1.228417,-0.000000;;, + 161;3;-0.000000, 1.228417,-0.000000;;, + 162;3;-0.000000, 1.228417, 0.000000;;, + 163;3;-0.000000, 1.228416, 0.000000;;, + 164;3;-0.000000, 1.228416,-0.000000;;, + 165;3;-0.000000, 1.228416,-0.000000;;, + 166;3; 0.000000, 1.228417,-0.000000;;, + 167;3;-0.000000, 1.228416,-0.000000;;, + 168;3; 0.000000, 1.228416,-0.000000;;, + 169;3;-0.000000, 1.228416, 0.000000;;, + 170;3;-0.000000, 1.228416, 0.000000;;, + 171;3;-0.000000, 1.228416,-0.000000;;, + 172;3;-0.000000, 1.228416,-0.000000;;, + 173;3;-0.000000, 1.228416, 0.000000;;, + 174;3;-0.000000, 1.228417,-0.000000;;, + 175;3;-0.000000, 1.228416, 0.000000;;, + 176;3;-0.000000, 1.228416,-0.000000;;, + 177;3;-0.000000, 1.228417, 0.000000;;, + 178;3; 0.000000, 1.228417, 0.000000;;, + 179;3;-0.000000, 1.228416,-0.000000;;, + 180;3; 0.000000, 1.228417, 0.000000;;, + 181;3;-0.000000, 1.228416, 0.000000;;, + 182;3; 0.000000, 1.228417,-0.000000;;, + 183;3;-0.000000, 1.228416, 0.000000;;, + 184;3; 0.000000, 1.228416,-0.000000;;, + 185;3;-0.000000, 1.228416,-0.000000;;, + 186;3; 0.000000, 1.228416,-0.000000;;, + 187;3; 0.000000, 1.228416,-0.000000;;, + 188;3;-0.000000, 1.228417, 0.000000;;, + 189;3;-0.000000, 1.228416, 0.000000;;, + 190;3;-0.000000, 1.228416, 0.000000;;, + 191;3; 0.000000, 1.228416, 0.000000;;, + 192;3; 0.000000, 1.228416, 0.000000;;, + 193;3; 0.000000, 1.228416, 0.000000;;, + 194;3; 0.000000, 1.228416, 0.000000;;, + 195;3;-0.000000, 1.228417, 0.000000;;, + 196;3; 0.000000, 1.228417, 0.000000;;, + 197;3; 0.000000, 1.228417,-0.000000;;, + 198;3;-0.000000, 1.228417, 0.000000;;, + 199;3;-0.000000, 1.228416,-0.000000;;, + 200;3;-0.000000, 1.228416,-0.000000;;, + 201;3;-0.000000, 1.228416,-0.000000;;, + 202;3;-0.000000, 1.228416,-0.000000;;, + 203;3;-0.000000, 1.228416,-0.000000;;, + 204;3;-0.000000, 1.228416,-0.000000;;, + 205;3;-0.000000, 1.228416,-0.000000;;, + 206;3;-0.000000, 1.228416,-0.000000;;, + 207;3;-0.000000, 1.228416,-0.000000;;, + 208;3;-0.000000, 1.228416,-0.000000;;, + 209;3;-0.000000, 1.228416,-0.000000;;, + 210;3;-0.000000, 1.228416, 0.000000;;, + 211;3;-0.000000, 1.228417, 0.000000;;, + 212;3; 0.000000, 1.228416,-0.000000;;, + 213;3; 0.000000, 1.228416,-0.000000;;, + 214;3; 0.000000, 1.228416, 0.000000;;, + 215;3;-0.000000, 1.228416, 0.000000;;, + 216;3; 0.000000, 1.228416,-0.000000;;, + 217;3; 0.000000, 1.228416,-0.000001;;, + 218;3; 0.000000, 1.228417,-0.000000;;, + 219;3;-0.000000, 1.228417,-0.000001;;, + 220;3;-0.000000, 1.228416,-0.000000;;, + 221;3; 0.000000, 1.228417, 0.000000;;, + 222;3;-0.000000, 1.228417, 0.000000;;, + 223;3;-0.000000, 1.228416, 0.000000;;, + 224;3; 0.000000, 1.228416, 0.000000;;, + 225;3;-0.000001, 1.228417,-0.000000;;, + 226;3; 0.000000, 1.228417, 0.000000;;, + 227;3;-0.000000, 1.228416, 0.000000;;, + 228;3;-0.000000, 1.228417,-0.000000;;, + 229;3; 0.000000, 1.228417, 0.000000;;, + 230;3; 0.000000, 1.228417, 0.000000;;, + 231;3; 0.000000, 1.228416,-0.000000;;, + 232;3; 0.000000, 1.228416, 0.000000;;, + 233;3;-0.000000, 1.228416,-0.000000;;, + 234;3;-0.000000, 1.228416,-0.000000;;, + 235;3; 0.000000, 1.228417,-0.000000;;, + 236;3;-0.000000, 1.228416, 0.000000;;, + 237;3;-0.000000, 1.228416, 0.000000;;, + 238;3; 0.000000, 1.228417, 0.000000;;, + 239;3;-0.000000, 1.228416,-0.000000;;, + 240;3;-0.000000, 1.228416,-0.000000;;, + 241;3;-0.000000, 1.228416,-0.000000;;, + 242;3;-0.000000, 1.228416,-0.000000;;, + 243;3;-0.000000, 1.228416,-0.000000;;, + 244;3;-0.000000, 1.228416,-0.000000;;, + 245;3;-0.000000, 1.228416,-0.000000;;, + 246;3;-0.000000, 1.228416,-0.000000;;, + 247;3;-0.000000, 1.228416,-0.000000;;, + 248;3;-0.000000, 1.228416,-0.000000;;, + 249;3;-0.000000, 1.228416,-0.000000;;; + } + } + Animation { + {Armature_Bone_010} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 1;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 2;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 3;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 4;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 5;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 6;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 7;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 8;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 9;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 10;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 11;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 12;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 13;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 14;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 15;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 16;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 17;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 18;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 19;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 20;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 21;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 22;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 23;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 24;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 25;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 26;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 27;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 28;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 29;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 30;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 31;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 32;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 33;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 34;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 35;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 36;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 37;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 38;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 39;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 40;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 41;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 42;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 43;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 44;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 45;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 46;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 47;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 48;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 49;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 50;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 51;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 52;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 53;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 54;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 55;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 56;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 57;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 58;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 59;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 60;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 61;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 62;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 63;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 64;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 65;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 66;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 67;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 68;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 69;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 70;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 71;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 72;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 73;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 74;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 75;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 76;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 77;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 78;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 79;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 80;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 81;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 82;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 83;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 84;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 85;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 86;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 87;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 88;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 89;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 90;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 91;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 92;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 93;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 94;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 95;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 96;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 97;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 98;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 99;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 100;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 101;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 102;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 103;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 104;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 105;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 106;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 107;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 108;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 109;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 110;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 111;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 112;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 113;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 114;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 115;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 116;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 117;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 118;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 119;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 120;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 121;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 122;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 123;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 124;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 125;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 126;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 127;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 128;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 129;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 130;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 131;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 132;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 133;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 134;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 135;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 136;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 137;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 138;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 139;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 140;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 141;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 142;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 143;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 144;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 145;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 146;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 147;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 148;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 149;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 150;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 151;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 152;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 153;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 154;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 155;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 156;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 157;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 158;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 159;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 160;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 161;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 162;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 163;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 164;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 165;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 166;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 167;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 168;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 169;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 170;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 171;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 172;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 173;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 174;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 175;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 176;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 177;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 178;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 179;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 180;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 181;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 182;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 183;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 184;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 185;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 186;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 187;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 188;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 189;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 190;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 191;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 192;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 193;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 194;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 195;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 196;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 197;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 198;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 199;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 200;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 201;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 202;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 203;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 204;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 205;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 206;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 207;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 208;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 209;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 210;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 211;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 212;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 213;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 214;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 215;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 216;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 217;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 218;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 219;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 220;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 221;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 222;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 223;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 224;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 225;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 226;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 227;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 228;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 229;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 230;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 231;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 232;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 233;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 234;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 235;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 236;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 237;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 238;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 239;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 240;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 241;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 242;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 243;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 244;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 245;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 246;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 247;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 248;4;-0.527685, 0.000000,-0.000000, 0.849440;;, + 249;4;-0.527685, 0.000000,-0.000000, 0.849440;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3; 0.000000, 0.826434, 0.000000;;, + 1;3; 0.000000, 0.826434, 0.000000;;, + 2;3; 0.000000, 0.826434, 0.000000;;, + 3;3; 0.000000, 0.826434, 0.000000;;, + 4;3; 0.000000, 0.826434, 0.000000;;, + 5;3; 0.000000, 0.826434, 0.000000;;, + 6;3; 0.000000, 0.826434, 0.000000;;, + 7;3; 0.000000, 0.826434, 0.000000;;, + 8;3; 0.000000, 0.826434, 0.000000;;, + 9;3; 0.000000, 0.826434, 0.000000;;, + 10;3; 0.000000, 0.826434, 0.000000;;, + 11;3; 0.000000, 0.826434, 0.000000;;, + 12;3; 0.000000, 0.826434, 0.000000;;, + 13;3; 0.000000, 0.826434, 0.000000;;, + 14;3; 0.000000, 0.826434, 0.000000;;, + 15;3; 0.000000, 0.826434, 0.000000;;, + 16;3; 0.000000, 0.826434, 0.000000;;, + 17;3; 0.000000, 0.826434, 0.000000;;, + 18;3; 0.000000, 0.826434, 0.000000;;, + 19;3; 0.000000, 0.826434, 0.000000;;, + 20;3; 0.000000, 0.826434, 0.000000;;, + 21;3; 0.000000, 0.826434, 0.000000;;, + 22;3; 0.000000, 0.826434, 0.000000;;, + 23;3; 0.000000, 0.826434, 0.000000;;, + 24;3; 0.000000, 0.826434, 0.000000;;, + 25;3; 0.000000, 0.826434, 0.000000;;, + 26;3; 0.000000, 0.826434, 0.000000;;, + 27;3; 0.000000, 0.826434, 0.000000;;, + 28;3; 0.000000, 0.826434, 0.000000;;, + 29;3; 0.000000, 0.826434, 0.000000;;, + 30;3; 0.000000, 0.826434, 0.000000;;, + 31;3; 0.000000, 0.826434, 0.000000;;, + 32;3; 0.000000, 0.826434, 0.000000;;, + 33;3; 0.000000, 0.826434, 0.000000;;, + 34;3; 0.000000, 0.826434, 0.000000;;, + 35;3; 0.000000, 0.826434, 0.000000;;, + 36;3; 0.000000, 0.826434, 0.000000;;, + 37;3; 0.000000, 0.826434, 0.000000;;, + 38;3; 0.000000, 0.826434, 0.000000;;, + 39;3; 0.000000, 0.826434, 0.000000;;, + 40;3; 0.000000, 0.826434, 0.000000;;, + 41;3; 0.000000, 0.826434, 0.000000;;, + 42;3; 0.000000, 0.826434, 0.000000;;, + 43;3; 0.000000, 0.826434, 0.000000;;, + 44;3; 0.000000, 0.826434, 0.000000;;, + 45;3; 0.000000, 0.826434, 0.000000;;, + 46;3; 0.000000, 0.826434, 0.000000;;, + 47;3; 0.000000, 0.826434, 0.000000;;, + 48;3; 0.000000, 0.826434, 0.000000;;, + 49;3; 0.000000, 0.826434, 0.000000;;, + 50;3; 0.000000, 0.826434, 0.000000;;, + 51;3; 0.000000, 0.826434, 0.000000;;, + 52;3; 0.000000, 0.826434, 0.000000;;, + 53;3; 0.000000, 0.826434, 0.000000;;, + 54;3; 0.000000, 0.826434, 0.000000;;, + 55;3; 0.000000, 0.826434, 0.000000;;, + 56;3; 0.000000, 0.826434, 0.000000;;, + 57;3; 0.000000, 0.826434, 0.000000;;, + 58;3; 0.000000, 0.826434, 0.000000;;, + 59;3; 0.000000, 0.826434, 0.000000;;, + 60;3; 0.000000, 0.826434, 0.000000;;, + 61;3; 0.000000, 0.826434, 0.000000;;, + 62;3; 0.000000, 0.826434, 0.000000;;, + 63;3; 0.000000, 0.826434, 0.000000;;, + 64;3; 0.000000, 0.826434, 0.000000;;, + 65;3; 0.000000, 0.826434, 0.000000;;, + 66;3; 0.000000, 0.826434, 0.000000;;, + 67;3; 0.000000, 0.826434, 0.000000;;, + 68;3; 0.000000, 0.826434, 0.000000;;, + 69;3; 0.000000, 0.826434, 0.000000;;, + 70;3; 0.000000, 0.826434, 0.000000;;, + 71;3; 0.000000, 0.826434, 0.000000;;, + 72;3; 0.000000, 0.826434, 0.000000;;, + 73;3; 0.000000, 0.826434, 0.000000;;, + 74;3; 0.000000, 0.826434, 0.000000;;, + 75;3; 0.000000, 0.826434, 0.000000;;, + 76;3; 0.000000, 0.826434, 0.000000;;, + 77;3; 0.000000, 0.826434, 0.000000;;, + 78;3; 0.000000, 0.826434, 0.000000;;, + 79;3; 0.000000, 0.826434, 0.000000;;, + 80;3; 0.000000, 0.826434, 0.000000;;, + 81;3; 0.000000, 0.826434, 0.000000;;, + 82;3; 0.000000, 0.826434, 0.000000;;, + 83;3; 0.000000, 0.826434, 0.000000;;, + 84;3; 0.000000, 0.826434, 0.000000;;, + 85;3; 0.000000, 0.826434, 0.000000;;, + 86;3; 0.000000, 0.826434, 0.000000;;, + 87;3; 0.000000, 0.826434, 0.000000;;, + 88;3; 0.000000, 0.826434, 0.000000;;, + 89;3; 0.000000, 0.826434, 0.000000;;, + 90;3; 0.000000, 0.826434, 0.000000;;, + 91;3; 0.000000, 0.826434, 0.000000;;, + 92;3; 0.000000, 0.826434, 0.000000;;, + 93;3; 0.000000, 0.826434, 0.000000;;, + 94;3; 0.000000, 0.826434, 0.000000;;, + 95;3; 0.000000, 0.826434, 0.000000;;, + 96;3; 0.000000, 0.826434, 0.000000;;, + 97;3; 0.000000, 0.826434, 0.000000;;, + 98;3; 0.000000, 0.826434, 0.000000;;, + 99;3; 0.000000, 0.826434, 0.000000;;, + 100;3; 0.000000, 0.826434, 0.000000;;, + 101;3; 0.000000, 0.826434, 0.000000;;, + 102;3; 0.000000, 0.826434, 0.000000;;, + 103;3; 0.000000, 0.826434, 0.000000;;, + 104;3; 0.000000, 0.826434, 0.000000;;, + 105;3; 0.000000, 0.826434, 0.000000;;, + 106;3; 0.000000, 0.826434, 0.000000;;, + 107;3; 0.000000, 0.826434, 0.000000;;, + 108;3; 0.000000, 0.826434, 0.000000;;, + 109;3; 0.000000, 0.826434, 0.000000;;, + 110;3; 0.000000, 0.826434, 0.000000;;, + 111;3; 0.000000, 0.826434, 0.000000;;, + 112;3; 0.000000, 0.826434, 0.000000;;, + 113;3; 0.000000, 0.826434, 0.000000;;, + 114;3; 0.000000, 0.826434, 0.000000;;, + 115;3; 0.000000, 0.826434, 0.000000;;, + 116;3; 0.000000, 0.826434, 0.000000;;, + 117;3; 0.000000, 0.826434, 0.000000;;, + 118;3; 0.000000, 0.826434, 0.000000;;, + 119;3; 0.000000, 0.826434, 0.000000;;, + 120;3; 0.000000, 0.826434, 0.000000;;, + 121;3; 0.000000, 0.826434, 0.000000;;, + 122;3; 0.000000, 0.826434, 0.000000;;, + 123;3; 0.000000, 0.826434, 0.000000;;, + 124;3; 0.000000, 0.826434, 0.000000;;, + 125;3; 0.000000, 0.826434, 0.000000;;, + 126;3; 0.000000, 0.826434, 0.000000;;, + 127;3; 0.000000, 0.826434, 0.000000;;, + 128;3; 0.000000, 0.826434, 0.000000;;, + 129;3; 0.000000, 0.826434, 0.000000;;, + 130;3; 0.000000, 0.826434, 0.000000;;, + 131;3; 0.000000, 0.826434, 0.000000;;, + 132;3; 0.000000, 0.826434, 0.000000;;, + 133;3; 0.000000, 0.826434, 0.000000;;, + 134;3; 0.000000, 0.826434, 0.000000;;, + 135;3; 0.000000, 0.826434, 0.000000;;, + 136;3; 0.000000, 0.826434, 0.000000;;, + 137;3; 0.000000, 0.826434, 0.000000;;, + 138;3; 0.000000, 0.826434, 0.000000;;, + 139;3; 0.000000, 0.826434, 0.000000;;, + 140;3; 0.000000, 0.826434, 0.000000;;, + 141;3; 0.000000, 0.826434, 0.000000;;, + 142;3; 0.000000, 0.826434, 0.000000;;, + 143;3; 0.000000, 0.826434, 0.000000;;, + 144;3; 0.000000, 0.826434, 0.000000;;, + 145;3; 0.000000, 0.826434, 0.000000;;, + 146;3; 0.000000, 0.826434, 0.000000;;, + 147;3; 0.000000, 0.826434, 0.000000;;, + 148;3; 0.000000, 0.826434, 0.000000;;, + 149;3; 0.000000, 0.826434, 0.000000;;, + 150;3; 0.000000, 0.826434, 0.000000;;, + 151;3; 0.000000, 0.826434, 0.000000;;, + 152;3; 0.000000, 0.826434, 0.000000;;, + 153;3; 0.000000, 0.826434, 0.000000;;, + 154;3; 0.000000, 0.826434, 0.000000;;, + 155;3; 0.000000, 0.826434, 0.000000;;, + 156;3; 0.000000, 0.826434, 0.000000;;, + 157;3; 0.000000, 0.826434, 0.000000;;, + 158;3; 0.000000, 0.826434, 0.000000;;, + 159;3; 0.000000, 0.826434, 0.000000;;, + 160;3; 0.000000, 0.826434, 0.000000;;, + 161;3; 0.000000, 0.826434, 0.000000;;, + 162;3; 0.000000, 0.826434, 0.000000;;, + 163;3; 0.000000, 0.826434, 0.000000;;, + 164;3; 0.000000, 0.826434, 0.000000;;, + 165;3; 0.000000, 0.826434, 0.000000;;, + 166;3; 0.000000, 0.826434, 0.000000;;, + 167;3; 0.000000, 0.826434, 0.000000;;, + 168;3; 0.000000, 0.826434, 0.000000;;, + 169;3; 0.000000, 0.826434, 0.000000;;, + 170;3; 0.000000, 0.826434, 0.000000;;, + 171;3; 0.000000, 0.826434, 0.000000;;, + 172;3; 0.000000, 0.826434, 0.000000;;, + 173;3; 0.000000, 0.826434, 0.000000;;, + 174;3; 0.000000, 0.826434, 0.000000;;, + 175;3; 0.000000, 0.826434, 0.000000;;, + 176;3; 0.000000, 0.826434, 0.000000;;, + 177;3; 0.000000, 0.826434, 0.000000;;, + 178;3; 0.000000, 0.826434, 0.000000;;, + 179;3; 0.000000, 0.826434, 0.000000;;, + 180;3; 0.000000, 0.826434, 0.000000;;, + 181;3; 0.000000, 0.826434, 0.000000;;, + 182;3; 0.000000, 0.826434, 0.000000;;, + 183;3; 0.000000, 0.826434, 0.000000;;, + 184;3; 0.000000, 0.826434, 0.000000;;, + 185;3; 0.000000, 0.826434, 0.000000;;, + 186;3;-0.000000, 0.826434,-0.000000;;, + 187;3;-0.000000, 0.826434,-0.000000;;, + 188;3;-0.000000, 0.826434, 0.000000;;, + 189;3;-0.000000, 0.826434, 0.000000;;, + 190;3;-0.000000, 0.826434,-0.000000;;, + 191;3; 0.000000, 0.826434, 0.000000;;, + 192;3; 0.000000, 0.826434, 0.000000;;, + 193;3; 0.000000, 0.826434, 0.000000;;, + 194;3; 0.000000, 0.826434,-0.000000;;, + 195;3; 0.000000, 0.826434,-0.000000;;, + 196;3; 0.000000, 0.826434, 0.000000;;, + 197;3; 0.000000, 0.826434,-0.000000;;, + 198;3; 0.000000, 0.826434,-0.000000;;, + 199;3; 0.000000, 0.826434, 0.000000;;, + 200;3; 0.000000, 0.826434, 0.000000;;, + 201;3; 0.000000, 0.826434, 0.000000;;, + 202;3; 0.000000, 0.826434, 0.000000;;, + 203;3; 0.000000, 0.826434, 0.000000;;, + 204;3; 0.000000, 0.826434, 0.000000;;, + 205;3; 0.000000, 0.826434, 0.000000;;, + 206;3; 0.000000, 0.826434, 0.000000;;, + 207;3; 0.000000, 0.826434, 0.000000;;, + 208;3; 0.000000, 0.826434, 0.000000;;, + 209;3; 0.000000, 0.826434, 0.000000;;, + 210;3;-0.000000, 0.826434, 0.000000;;, + 211;3;-0.000000, 0.826434, 0.000000;;, + 212;3; 0.000000, 0.826434,-0.000000;;, + 213;3; 0.000000, 0.826434, 0.000000;;, + 214;3; 0.000000, 0.826434, 0.000000;;, + 215;3;-0.000000, 0.826434,-0.000000;;, + 216;3;-0.000000, 0.826434,-0.000000;;, + 217;3;-0.000000, 0.826434,-0.000000;;, + 218;3;-0.000000, 0.826434, 0.000000;;, + 219;3;-0.000000, 0.826434,-0.000000;;, + 220;3;-0.000000, 0.826434, 0.000000;;, + 221;3; 0.000000, 0.826434, 0.000000;;, + 222;3;-0.000000, 0.826434, 0.000000;;, + 223;3; 0.000000, 0.826434,-0.000000;;, + 224;3; 0.000000, 0.826434,-0.000000;;, + 225;3; 0.000000, 0.826434, 0.000000;;, + 226;3; 0.000000, 0.826434, 0.000000;;, + 227;3; 0.000000, 0.826434, 0.000000;;, + 228;3;-0.000000, 0.826434, 0.000000;;, + 229;3; 0.000000, 0.826434, 0.000000;;, + 230;3; 0.000000, 0.826434, 0.000000;;, + 231;3; 0.000000, 0.826434,-0.000000;;, + 232;3;-0.000000, 0.826434,-0.000000;;, + 233;3; 0.000000, 0.826434, 0.000000;;, + 234;3; 0.000000, 0.826434, 0.000000;;, + 235;3; 0.000000, 0.826434, 0.000000;;, + 236;3; 0.000000, 0.826434, 0.000000;;, + 237;3; 0.000000, 0.826434, 0.000000;;, + 238;3; 0.000000, 0.826434, 0.000000;;, + 239;3; 0.000000, 0.826434, 0.000000;;, + 240;3; 0.000000, 0.826434, 0.000000;;, + 241;3; 0.000000, 0.826434, 0.000000;;, + 242;3; 0.000000, 0.826434, 0.000000;;, + 243;3; 0.000000, 0.826434, 0.000000;;, + 244;3; 0.000000, 0.826434, 0.000000;;, + 245;3; 0.000000, 0.826434, 0.000000;;, + 246;3; 0.000000, 0.826434, 0.000000;;, + 247;3; 0.000000, 0.826434, 0.000000;;, + 248;3; 0.000000, 0.826434, 0.000000;;, + 249;3; 0.000000, 0.826434, 0.000000;;; + } + } + Animation { + {Armature_Bone_030} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 1;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 2;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 3;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 4;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 5;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 6;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 7;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 8;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 9;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 10;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 11;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 12;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 13;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 14;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 15;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 16;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 17;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 18;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 19;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 20;4;-0.989934, 0.106238,-0.009968,-0.092884;;, + 21;4;-0.989819, 0.106226,-0.010069,-0.093822;;, + 22;4;-0.989627, 0.106205,-0.010237,-0.095391;;, + 23;4;-0.989359, 0.106176,-0.010472,-0.097580;;, + 24;4;-0.989019, 0.106140,-0.010771,-0.100361;;, + 25;4;-0.988612, 0.106096,-0.011128,-0.103689;;, + 26;4;-0.988146, 0.106046,-0.011536,-0.107492;;, + 27;4;-0.987634, 0.105991,-0.011985,-0.111679;;, + 28;4;-0.987088, 0.105933,-0.012463,-0.116135;;, + 29;4;-0.986526, 0.105872,-0.012957,-0.120731;;, + 30;4;-0.985964, 0.105812,-0.013450,-0.125327;;, + 31;4;-0.985418, 0.105753,-0.013928,-0.129783;;, + 32;4;-0.984906, 0.105698,-0.014377,-0.133970;;, + 33;4;-0.984440, 0.105648,-0.014786,-0.137773;;, + 34;4;-0.984033, 0.105605,-0.015143,-0.141101;;, + 35;4;-0.983693, 0.105568,-0.015441,-0.143882;;, + 36;4;-0.983425, 0.105539,-0.015676,-0.146071;;, + 37;4;-0.983233, 0.105519,-0.015844,-0.147640;;, + 38;4;-0.983118, 0.105506,-0.015945,-0.148578;;, + 39;4;-0.983080, 0.105502,-0.015978,-0.148888;;, + 40;4;-0.983138, 0.105506,-0.015945,-0.148584;;, + 41;4;-0.983310, 0.105519,-0.015844,-0.147665;;, + 42;4;-0.983596, 0.105539,-0.015676,-0.146127;;, + 43;4;-0.983990, 0.105568,-0.015441,-0.143980;;, + 44;4;-0.984485, 0.105605,-0.015143,-0.141249;;, + 45;4;-0.985067, 0.105648,-0.014786,-0.137979;;, + 46;4;-0.985720, 0.105698,-0.014377,-0.134237;;, + 47;4;-0.986423, 0.105753,-0.013928,-0.130112;;, + 48;4;-0.987151, 0.105812,-0.013450,-0.125716;;, + 49;4;-0.987875, 0.105872,-0.012957,-0.121173;;, + 50;4;-0.988567, 0.105933,-0.012463,-0.116620;;, + 51;4;-0.989199, 0.105991,-0.011985,-0.112192;;, + 52;4;-0.989745, 0.106046,-0.011536,-0.108016;;, + 53;4;-0.990184, 0.106096,-0.011128,-0.104204;;, + 54;4;-0.990500, 0.106140,-0.010771,-0.100847;;, + 55;4;-0.990680, 0.106176,-0.010472,-0.098013;;, + 56;4;-0.990719, 0.106205,-0.010237,-0.095749;;, + 57;4;-0.990613, 0.106226,-0.010069,-0.094083;;, + 58;4;-0.990363, 0.106238,-0.009968,-0.093025;;, + 59;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 60;4;-0.989514, 0.106358,-0.009979,-0.092424;;, + 61;4;-0.989061, 0.106711,-0.010114,-0.092277;;, + 62;4;-0.988614, 0.107305,-0.010342,-0.092131;;, + 63;4;-0.988170, 0.108146,-0.010664,-0.091988;;, + 64;4;-0.987730, 0.109238,-0.011083,-0.091847;;, + 65;4;-0.987292, 0.110585,-0.011599,-0.091708;;, + 66;4;-0.986856, 0.112190,-0.012214,-0.091571;;, + 67;4;-0.986420, 0.114053,-0.012929,-0.091435;;, + 68;4;-0.985983, 0.116175,-0.013742,-0.091301;;, + 69;4;-0.985544, 0.118554,-0.014655,-0.091167;;, + 70;4;-0.985101, 0.121188,-0.015665,-0.091034;;, + 71;4;-0.984653, 0.124071,-0.016771,-0.090902;;, + 72;4;-0.984198, 0.127196,-0.017971,-0.090769;;, + 73;4;-0.983735, 0.130555,-0.019260,-0.090636;;, + 74;4;-0.983261, 0.134136,-0.020635,-0.090503;;, + 75;4;-0.982774, 0.137926,-0.022091,-0.090368;;, + 76;4;-0.982274, 0.141910,-0.023621,-0.090232;;, + 77;4;-0.981758, 0.146070,-0.025220,-0.090093;;, + 78;4;-0.981224, 0.150388,-0.026880,-0.089952;;, + 79;4;-0.980671, 0.154844,-0.028593,-0.089808;;, + 80;4;-0.980097, 0.159416,-0.030351,-0.089661;;, + 81;4;-0.979501, 0.164082,-0.032147,-0.089510;;, + 82;4;-0.978880, 0.168819,-0.033970,-0.089355;;, + 83;4;-0.978236, 0.173604,-0.035813,-0.089195;;, + 84;4;-0.977566, 0.178416,-0.037666,-0.089031;;, + 85;4;-0.976869, 0.183233,-0.039523,-0.088862;;, + 86;4;-0.976146, 0.188033,-0.041374,-0.088687;;, + 87;4;-0.975396, 0.192799,-0.043213,-0.088507;;, + 88;4;-0.974618, 0.197511,-0.045031,-0.088321;;, + 89;4;-0.973814, 0.202154,-0.046825,-0.088130;;, + 90;4;-0.972983, 0.206712,-0.048586,-0.087934;;, + 91;4;-0.972125, 0.211172,-0.050311,-0.087731;;, + 92;4;-0.971241, 0.215524,-0.051995,-0.087523;;, + 93;4;-0.970331, 0.219757,-0.053634,-0.087310;;, + 94;4;-0.969397, 0.223862,-0.055225,-0.087091;;, + 95;4;-0.968438, 0.227833,-0.056765,-0.086866;;, + 96;4;-0.967456, 0.231665,-0.058253,-0.086637;;, + 97;4;-0.966452, 0.235353,-0.059686,-0.086402;;, + 98;4;-0.965425, 0.238893,-0.061063,-0.086162;;, + 99;4;-0.964378, 0.242285,-0.062384,-0.085917;;, + 100;4;-0.963136, 0.245860,-0.063780,-0.085643;;, + 101;4;-0.961538, 0.249912,-0.065368,-0.085319;;, + 102;4;-0.959635, 0.254320,-0.067101,-0.084957;;, + 103;4;-0.957530, 0.258878,-0.068897,-0.084578;;, + 104;4;-0.955382, 0.263294,-0.070640,-0.084213;;, + 105;4;-0.953378, 0.267250,-0.072204,-0.083893;;, + 106;4;-0.951691, 0.270473,-0.073480,-0.083648;;, + 107;4;-0.950442, 0.272793,-0.074399,-0.083494;;, + 108;4;-0.949686, 0.274156,-0.074939,-0.083438;;, + 109;4;-0.949426, 0.274594,-0.075113,-0.083477;;, + 110;4;-0.950399, 0.269670,-0.073213,-0.083796;;, + 111;4;-0.953367, 0.254850,-0.067493,-0.084588;;, + 112;4;-0.958205, 0.230754,-0.058194,-0.085820;;, + 113;4;-0.964540, 0.199237,-0.046031,-0.087401;;, + 114;4;-0.971721, 0.163534,-0.032252,-0.089173;;, + 115;4;-0.978905, 0.127831,-0.018473,-0.090933;;, + 116;4;-0.985248, 0.096314,-0.006309,-0.092480;;, + 117;4;-0.990098, 0.072218, 0.002990,-0.093659;;, + 118;4;-0.993081, 0.057398, 0.008709,-0.094383;;, + 119;4;-0.994073, 0.052474, 0.010610,-0.094623;;, + 120;4;-0.993868, 0.053782, 0.010107,-0.094563;;, + 121;4;-0.993232, 0.057846, 0.008544,-0.094376;;, + 122;4;-0.992152, 0.064750, 0.005889,-0.094060;;, + 123;4;-0.990655, 0.074318, 0.002209,-0.093621;;, + 124;4;-0.988823, 0.086032,-0.002295,-0.093083;;, + 125;4;-0.986784, 0.099063,-0.007307,-0.092486;;, + 126;4;-0.984690, 0.112452,-0.012455,-0.091872;;, + 127;4;-0.982674, 0.125334,-0.017410,-0.091281;;, + 128;4;-0.980835, 0.137093,-0.021931,-0.090742;;, + 129;4;-0.979225, 0.147379,-0.025887,-0.090270;;, + 130;4;-0.977803, 0.156997,-0.029583,-0.089842;;, + 131;4;-0.976495, 0.166849,-0.033365,-0.089427;;, + 132;4;-0.975274, 0.176881,-0.037212,-0.089021;;, + 133;4;-0.974093, 0.186993,-0.041088,-0.088621;;, + 134;4;-0.972884, 0.197049,-0.044944,-0.088217;;, + 135;4;-0.971572, 0.206894,-0.048723,-0.087801;;, + 136;4;-0.970094, 0.216397,-0.052377,-0.087367;;, + 137;4;-0.968407, 0.225475,-0.055876,-0.086909;;, + 138;4;-0.966500, 0.234100,-0.059210,-0.086425;;, + 139;4;-0.964378, 0.242285,-0.062384,-0.085917;;, + 140;4;-0.961461, 0.250875,-0.065736,-0.085301;;, + 141;4;-0.957438, 0.260019,-0.069333,-0.084557;;, + 142;4;-0.953319, 0.267984,-0.072484,-0.083879;;, + 143;4;-0.950424, 0.273010,-0.074482,-0.083490;;, + 144;4;-0.949426, 0.274594,-0.075113,-0.083477;;, + 145;4;-0.953367, 0.254850,-0.067493,-0.084588;;, + 146;4;-0.964540, 0.199237,-0.046031,-0.087401;;, + 147;4;-0.978905, 0.127831,-0.018473,-0.090933;;, + 148;4;-0.990098, 0.072218, 0.002990,-0.093659;;, + 149;4;-0.994073, 0.052474, 0.010610,-0.094623;;, + 150;4;-0.993232, 0.057846, 0.008544,-0.094376;;, + 151;4;-0.990655, 0.074318, 0.002209,-0.093621;;, + 152;4;-0.986784, 0.099063,-0.007307,-0.092486;;, + 153;4;-0.982674, 0.125334,-0.017410,-0.091281;;, + 154;4;-0.979225, 0.147379,-0.025887,-0.090270;;, + 155;4;-0.975777, 0.169424,-0.034365,-0.089259;;, + 156;4;-0.971667, 0.195695,-0.044467,-0.088054;;, + 157;4;-0.967795, 0.220440,-0.053984,-0.086919;;, + 158;4;-0.965218, 0.236912,-0.060318,-0.086163;;, + 159;4;-0.964378, 0.242285,-0.062384,-0.085917;;, + 160;4;-0.964519, 0.242113,-0.062342,-0.085954;;, + 161;4;-0.964945, 0.241557,-0.062200,-0.086065;;, + 162;4;-0.965658, 0.240545,-0.061926,-0.086250;;, + 163;4;-0.966653, 0.239002,-0.061489,-0.086509;;, + 164;4;-0.967917, 0.236848,-0.060850,-0.086838;;, + 165;4;-0.969429, 0.233998,-0.059970,-0.087231;;, + 166;4;-0.971158, 0.230375,-0.058806,-0.087681;;, + 167;4;-0.973061, 0.225905,-0.057321,-0.088175;;, + 168;4;-0.975086, 0.220534,-0.055476,-0.088702;;, + 169;4;-0.977175, 0.214222,-0.053244,-0.089245;;, + 170;4;-0.979263, 0.206956,-0.050604,-0.089789;;, + 171;4;-0.981289, 0.198748,-0.047548,-0.090315;;, + 172;4;-0.983192, 0.189634,-0.044076,-0.090810;;, + 173;4;-0.984920, 0.179668,-0.040201,-0.091260;;, + 174;4;-0.986433, 0.168921,-0.035944,-0.091653;;, + 175;4;-0.987697, 0.157471,-0.031330,-0.091982;;, + 176;4;-0.988692, 0.145400,-0.026391,-0.092241;;, + 177;4;-0.989404, 0.132788,-0.021159,-0.092426;;, + 178;4;-0.989831, 0.119713,-0.015663,-0.092537;;, + 179;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 180;4;-0.987443, 0.092015, 0.006008,-0.090256;;, + 181;4;-0.979832, 0.076804, 0.042188,-0.083279;;, + 182;4;-0.967458, 0.061039, 0.097179,-0.071936;;, + 183;4;-0.951272, 0.045395, 0.166977,-0.057099;;, + 184;4;-0.932937, 0.030744, 0.244733,-0.040291;;, + 185;4;-0.914601, 0.017988, 0.321680,-0.023484;;, + 186;4;-0.898416, 0.007838, 0.389129,-0.008647;;, + 187;4;-0.886042, 0.000670, 0.440444, 0.002697;;, + 188;4;-0.878431,-0.003478, 0.471893, 0.009673;;, + 189;4;-0.875902,-0.004795, 0.482317, 0.011991;;, + 190;4;-0.885999,-0.014233, 0.441198, 0.000728;;, + 191;4;-0.914439,-0.039878, 0.325161,-0.030996;;, + 192;4;-0.950957,-0.070291, 0.175583,-0.071729;;, + 193;4;-0.979397,-0.089081, 0.057945,-0.103453;;, + 194;4;-0.989494,-0.086855, 0.014101,-0.114716;;, + 195;4;-0.989536,-0.060170, 0.009741,-0.112748;;, + 196;4;-0.989656,-0.010069, 0.003312,-0.107204;;, + 197;4;-0.989810, 0.047975,-0.003473,-0.100086;;, + 198;4;-0.989929, 0.091221,-0.008299,-0.094542;;, + 199;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 200;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 201;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 202;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 203;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 204;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 205;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 206;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 207;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 208;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 209;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 210;4;-0.989668, 0.098460,-0.001145,-0.072888;;, + 211;4;-0.988829, 0.075764, 0.023797,-0.017368;;, + 212;4;-0.987797, 0.044538, 0.056308, 0.054113;;, + 213;4;-0.987081, 0.016162, 0.082576, 0.110158;;, + 214;4;-0.986986,-0.001283, 0.093624, 0.130737;;, + 215;4;-0.987194,-0.011437, 0.093239, 0.131618;;, + 216;4;-0.987345,-0.019537, 0.086679, 0.132190;;, + 217;4;-0.987464,-0.025436, 0.075359, 0.132462;;, + 218;4;-0.987594,-0.029782, 0.062893, 0.132565;;, + 219;4;-0.987765,-0.033549, 0.052460, 0.132648;;, + 220;4;-0.987924,-0.037455, 0.042060, 0.132747;;, + 221;4;-0.988085,-0.041417, 0.029505, 0.132804;;, + 222;4;-0.988412,-0.044740, 0.017582, 0.132777;;, + 223;4;-0.989055,-0.046777, 0.009606, 0.132643;;, + 224;4;-0.990035,-0.047407, 0.006996, 0.132416;;, + 225;4;-0.991061,-0.045898, 0.006830, 0.129967;;, + 226;4;-0.991872,-0.041337, 0.006327, 0.123099;;, + 227;4;-0.992458,-0.033749, 0.005491, 0.111849;;, + 228;4;-0.992818,-0.023291, 0.004339, 0.096450;;, + 229;4;-0.992956,-0.010292, 0.002906, 0.077383;;, + 230;4;-0.992890, 0.004720, 0.001252, 0.055413;;, + 231;4;-0.992653, 0.021035,-0.000546, 0.031578;;, + 232;4;-0.992287, 0.037800,-0.002393, 0.007112;;, + 233;4;-0.991841, 0.054115,-0.004191,-0.016675;;, + 234;4;-0.991368, 0.069128,-0.005845,-0.038549;;, + 235;4;-0.990916, 0.082126,-0.007277,-0.057479;;, + 236;4;-0.990524, 0.092584,-0.008430,-0.072703;;, + 237;4;-0.990224, 0.100173,-0.009266,-0.083745;;, + 238;4;-0.990036, 0.104733,-0.009769,-0.090380;;, + 239;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 240;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 241;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 242;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 243;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 244;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 245;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 246;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 247;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 248;4;-0.989972, 0.106242,-0.009935,-0.092574;;, + 249;4;-0.989972, 0.106242,-0.009935,-0.092574;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3; 0.000000, 0.666142, 0.000000;;, + 1;3; 0.000000, 0.666142, 0.000000;;, + 2;3; 0.000000, 0.666142, 0.000000;;, + 3;3; 0.000000, 0.666142, 0.000000;;, + 4;3; 0.000000, 0.666142, 0.000000;;, + 5;3; 0.000000, 0.666142, 0.000000;;, + 6;3; 0.000000, 0.666142, 0.000000;;, + 7;3; 0.000000, 0.666142, 0.000000;;, + 8;3; 0.000000, 0.666142, 0.000000;;, + 9;3; 0.000000, 0.666142, 0.000000;;, + 10;3; 0.000000, 0.666142, 0.000000;;, + 11;3; 0.000000, 0.666142, 0.000000;;, + 12;3; 0.000000, 0.666142, 0.000000;;, + 13;3; 0.000000, 0.666142, 0.000000;;, + 14;3; 0.000000, 0.666142, 0.000000;;, + 15;3; 0.000000, 0.666142, 0.000000;;, + 16;3; 0.000000, 0.666142, 0.000000;;, + 17;3; 0.000000, 0.666142, 0.000000;;, + 18;3; 0.000000, 0.666142, 0.000000;;, + 19;3; 0.000000, 0.666142, 0.000000;;, + 20;3; 0.000000, 0.666142, 0.000000;;, + 21;3; 0.000000, 0.666142, 0.000000;;, + 22;3; 0.000000, 0.666142, 0.000000;;, + 23;3; 0.000000, 0.666142, 0.000000;;, + 24;3; 0.000000, 0.666142, 0.000000;;, + 25;3; 0.000000, 0.666142, 0.000000;;, + 26;3; 0.000000, 0.666142, 0.000000;;, + 27;3; 0.000000, 0.666142, 0.000000;;, + 28;3; 0.000000, 0.666142, 0.000000;;, + 29;3; 0.000000, 0.666142, 0.000000;;, + 30;3; 0.000000, 0.666142, 0.000000;;, + 31;3; 0.000000, 0.666142, 0.000000;;, + 32;3; 0.000000, 0.666142, 0.000000;;, + 33;3; 0.000000, 0.666142, 0.000000;;, + 34;3; 0.000000, 0.666142, 0.000000;;, + 35;3; 0.000000, 0.666142, 0.000000;;, + 36;3; 0.000000, 0.666142, 0.000000;;, + 37;3; 0.000000, 0.666142, 0.000000;;, + 38;3; 0.000000, 0.666142, 0.000000;;, + 39;3; 0.000000, 0.666142, 0.000000;;, + 40;3; 0.000000, 0.666142, 0.000000;;, + 41;3; 0.000000, 0.666142, 0.000000;;, + 42;3; 0.000000, 0.666142, 0.000000;;, + 43;3; 0.000000, 0.666142, 0.000000;;, + 44;3; 0.000000, 0.666142, 0.000000;;, + 45;3; 0.000000, 0.666142, 0.000000;;, + 46;3; 0.000000, 0.666142, 0.000000;;, + 47;3; 0.000000, 0.666142, 0.000000;;, + 48;3; 0.000000, 0.666142, 0.000000;;, + 49;3; 0.000000, 0.666142, 0.000000;;, + 50;3; 0.000000, 0.666142, 0.000000;;, + 51;3; 0.000000, 0.666142, 0.000000;;, + 52;3; 0.000000, 0.666142, 0.000000;;, + 53;3; 0.000000, 0.666142, 0.000000;;, + 54;3; 0.000000, 0.666142, 0.000000;;, + 55;3; 0.000000, 0.666142, 0.000000;;, + 56;3; 0.000000, 0.666142, 0.000000;;, + 57;3; 0.000000, 0.666142, 0.000000;;, + 58;3; 0.000000, 0.666142, 0.000000;;, + 59;3; 0.000000, 0.666142, 0.000000;;, + 60;3; 0.000000, 0.666142, 0.000000;;, + 61;3; 0.000000, 0.666142, 0.000000;;, + 62;3; 0.000000, 0.666142, 0.000000;;, + 63;3; 0.000000, 0.666142, 0.000000;;, + 64;3; 0.000000, 0.666142, 0.000000;;, + 65;3; 0.000000, 0.666142, 0.000000;;, + 66;3; 0.000000, 0.666142, 0.000000;;, + 67;3; 0.000000, 0.666142, 0.000000;;, + 68;3; 0.000000, 0.666142, 0.000000;;, + 69;3; 0.000000, 0.666142, 0.000000;;, + 70;3; 0.000000, 0.666142, 0.000000;;, + 71;3; 0.000000, 0.666142, 0.000000;;, + 72;3; 0.000000, 0.666142, 0.000000;;, + 73;3; 0.000000, 0.666142, 0.000000;;, + 74;3; 0.000000, 0.666142, 0.000000;;, + 75;3; 0.000000, 0.666142, 0.000000;;, + 76;3; 0.000000, 0.666142, 0.000000;;, + 77;3; 0.000000, 0.666142, 0.000000;;, + 78;3; 0.000000, 0.666142, 0.000000;;, + 79;3; 0.000000, 0.666142, 0.000000;;, + 80;3; 0.000000, 0.666142, 0.000000;;, + 81;3; 0.000000, 0.666142, 0.000000;;, + 82;3; 0.000000, 0.666142, 0.000000;;, + 83;3; 0.000000, 0.666142, 0.000000;;, + 84;3; 0.000000, 0.666142, 0.000000;;, + 85;3; 0.000000, 0.666142, 0.000000;;, + 86;3; 0.000000, 0.666142, 0.000000;;, + 87;3; 0.000000, 0.666142, 0.000000;;, + 88;3; 0.000000, 0.666142, 0.000000;;, + 89;3; 0.000000, 0.666142, 0.000000;;, + 90;3; 0.000000, 0.666142, 0.000000;;, + 91;3; 0.000000, 0.666142, 0.000000;;, + 92;3; 0.000000, 0.666142, 0.000000;;, + 93;3; 0.000000, 0.666142, 0.000000;;, + 94;3; 0.000000, 0.666142, 0.000000;;, + 95;3; 0.000000, 0.666142, 0.000000;;, + 96;3; 0.000000, 0.666142, 0.000000;;, + 97;3; 0.000000, 0.666142, 0.000000;;, + 98;3; 0.000000, 0.666142, 0.000000;;, + 99;3; 0.000000, 0.666142, 0.000000;;, + 100;3; 0.000000, 0.666142, 0.000000;;, + 101;3; 0.000000, 0.666142, 0.000000;;, + 102;3; 0.000000, 0.666142, 0.000000;;, + 103;3; 0.000000, 0.666142, 0.000000;;, + 104;3; 0.000000, 0.666142, 0.000000;;, + 105;3; 0.000000, 0.666142, 0.000000;;, + 106;3; 0.000000, 0.666142, 0.000000;;, + 107;3; 0.000000, 0.666142, 0.000000;;, + 108;3; 0.000000, 0.666142, 0.000000;;, + 109;3; 0.000000, 0.666142, 0.000000;;, + 110;3; 0.000000, 0.666142, 0.000000;;, + 111;3; 0.000000, 0.666142, 0.000000;;, + 112;3; 0.000000, 0.666142, 0.000000;;, + 113;3; 0.000000, 0.666142, 0.000000;;, + 114;3; 0.000000, 0.666142, 0.000000;;, + 115;3; 0.000000, 0.666142, 0.000000;;, + 116;3; 0.000000, 0.666142, 0.000000;;, + 117;3; 0.000000, 0.666142, 0.000000;;, + 118;3; 0.000000, 0.666142, 0.000000;;, + 119;3; 0.000000, 0.666142, 0.000000;;, + 120;3; 0.000000, 0.666142, 0.000000;;, + 121;3; 0.000000, 0.666142, 0.000000;;, + 122;3; 0.000000, 0.666142, 0.000000;;, + 123;3; 0.000000, 0.666142, 0.000000;;, + 124;3; 0.000000, 0.666142, 0.000000;;, + 125;3; 0.000000, 0.666142, 0.000000;;, + 126;3; 0.000000, 0.666142, 0.000000;;, + 127;3; 0.000000, 0.666142, 0.000000;;, + 128;3; 0.000000, 0.666142, 0.000000;;, + 129;3; 0.000000, 0.666142, 0.000000;;, + 130;3; 0.000000, 0.666142, 0.000000;;, + 131;3; 0.000000, 0.666142, 0.000000;;, + 132;3; 0.000000, 0.666142, 0.000000;;, + 133;3; 0.000000, 0.666142, 0.000000;;, + 134;3; 0.000000, 0.666142, 0.000000;;, + 135;3; 0.000000, 0.666142, 0.000000;;, + 136;3; 0.000000, 0.666142, 0.000000;;, + 137;3; 0.000000, 0.666142, 0.000000;;, + 138;3; 0.000000, 0.666142, 0.000000;;, + 139;3; 0.000000, 0.666142, 0.000000;;, + 140;3; 0.000000, 0.666142, 0.000000;;, + 141;3; 0.000000, 0.666142, 0.000000;;, + 142;3; 0.000000, 0.666142, 0.000000;;, + 143;3; 0.000000, 0.666142, 0.000000;;, + 144;3; 0.000000, 0.666142, 0.000000;;, + 145;3; 0.000000, 0.666142, 0.000000;;, + 146;3; 0.000000, 0.666142, 0.000000;;, + 147;3; 0.000000, 0.666142, 0.000000;;, + 148;3; 0.000000, 0.666142, 0.000000;;, + 149;3; 0.000000, 0.666142, 0.000000;;, + 150;3; 0.000000, 0.666142, 0.000000;;, + 151;3; 0.000000, 0.666142, 0.000000;;, + 152;3; 0.000000, 0.666142, 0.000000;;, + 153;3; 0.000000, 0.666142, 0.000000;;, + 154;3; 0.000000, 0.666142, 0.000000;;, + 155;3; 0.000000, 0.666142, 0.000000;;, + 156;3; 0.000000, 0.666142, 0.000000;;, + 157;3; 0.000000, 0.666142, 0.000000;;, + 158;3; 0.000000, 0.666142, 0.000000;;, + 159;3; 0.000000, 0.666142, 0.000000;;, + 160;3; 0.000000, 0.666142, 0.000000;;, + 161;3; 0.000000, 0.666142, 0.000000;;, + 162;3; 0.000000, 0.666142, 0.000000;;, + 163;3; 0.000000, 0.666142, 0.000000;;, + 164;3; 0.000000, 0.666142, 0.000000;;, + 165;3; 0.000000, 0.666142, 0.000000;;, + 166;3; 0.000000, 0.666142, 0.000000;;, + 167;3; 0.000000, 0.666142, 0.000000;;, + 168;3; 0.000000, 0.666142, 0.000000;;, + 169;3; 0.000000, 0.666142, 0.000000;;, + 170;3; 0.000000, 0.666142, 0.000000;;, + 171;3; 0.000000, 0.666142, 0.000000;;, + 172;3; 0.000000, 0.666142, 0.000000;;, + 173;3; 0.000000, 0.666142, 0.000000;;, + 174;3; 0.000000, 0.666142, 0.000000;;, + 175;3; 0.000000, 0.666142, 0.000000;;, + 176;3; 0.000000, 0.666142, 0.000000;;, + 177;3; 0.000000, 0.666142, 0.000000;;, + 178;3; 0.000000, 0.666142, 0.000000;;, + 179;3; 0.000000, 0.666142, 0.000000;;, + 180;3;-0.000000, 0.666142, 0.000000;;, + 181;3; 0.000000, 0.666142,-0.000000;;, + 182;3; 0.000000, 0.666142,-0.000000;;, + 183;3; 0.000000, 0.666142,-0.000000;;, + 184;3;-0.000000, 0.666142, 0.000000;;, + 185;3;-0.000000, 0.666142, 0.000000;;, + 186;3; 0.000000, 0.666142,-0.000000;;, + 187;3; 0.000000, 0.666142,-0.000000;;, + 188;3; 0.000000, 0.666142, 0.000000;;, + 189;3;-0.000000, 0.666142, 0.000000;;, + 190;3; 0.000001, 0.666142, 0.000000;;, + 191;3;-0.000000, 0.666142,-0.000001;;, + 192;3;-0.000000, 0.666142,-0.000000;;, + 193;3;-0.000000, 0.666142, 0.000000;;, + 194;3;-0.000000, 0.666142,-0.000000;;, + 195;3; 0.000000, 0.666142, 0.000000;;, + 196;3; 0.000000, 0.666142,-0.000000;;, + 197;3;-0.000000, 0.666142,-0.000000;;, + 198;3;-0.000000, 0.666142,-0.000000;;, + 199;3; 0.000000, 0.666142, 0.000000;;, + 200;3; 0.000000, 0.666142, 0.000000;;, + 201;3; 0.000000, 0.666142, 0.000000;;, + 202;3; 0.000000, 0.666142, 0.000000;;, + 203;3; 0.000000, 0.666142, 0.000000;;, + 204;3; 0.000000, 0.666142, 0.000000;;, + 205;3; 0.000000, 0.666142, 0.000000;;, + 206;3; 0.000000, 0.666142, 0.000000;;, + 207;3; 0.000000, 0.666142, 0.000000;;, + 208;3; 0.000000, 0.666142, 0.000000;;, + 209;3; 0.000000, 0.666142, 0.000000;;, + 210;3; 0.000000, 0.666142, 0.000000;;, + 211;3; 0.000000, 0.666142, 0.000000;;, + 212;3;-0.000000, 0.666142, 0.000000;;, + 213;3;-0.000000, 0.666142,-0.000000;;, + 214;3;-0.000000, 0.666142,-0.000000;;, + 215;3;-0.000000, 0.666142, 0.000000;;, + 216;3;-0.000000, 0.666142, 0.000000;;, + 217;3;-0.000000, 0.666142,-0.000000;;, + 218;3;-0.000000, 0.666142,-0.000000;;, + 219;3; 0.000000, 0.666142, 0.000000;;, + 220;3; 0.000000, 0.666142, 0.000000;;, + 221;3; 0.000000, 0.666142, 0.000000;;, + 222;3;-0.000000, 0.666142, 0.000000;;, + 223;3;-0.000000, 0.666142,-0.000000;;, + 224;3;-0.000000, 0.666142,-0.000000;;, + 225;3;-0.000000, 0.666142,-0.000000;;, + 226;3; 0.000000, 0.666142,-0.000000;;, + 227;3; 0.000000, 0.666142,-0.000000;;, + 228;3;-0.000000, 0.666142, 0.000000;;, + 229;3; 0.000000, 0.666142,-0.000000;;, + 230;3; 0.000000, 0.666142,-0.000000;;, + 231;3; 0.000000, 0.666142,-0.000000;;, + 232;3;-0.000000, 0.666142,-0.000000;;, + 233;3;-0.000000, 0.666142, 0.000000;;, + 234;3;-0.000000, 0.666142,-0.000000;;, + 235;3;-0.000000, 0.666142,-0.000000;;, + 236;3;-0.000000, 0.666142,-0.000000;;, + 237;3;-0.000000, 0.666142,-0.000000;;, + 238;3;-0.000000, 0.666142, 0.000000;;, + 239;3; 0.000000, 0.666142, 0.000000;;, + 240;3; 0.000000, 0.666142, 0.000000;;, + 241;3; 0.000000, 0.666142, 0.000000;;, + 242;3; 0.000000, 0.666142, 0.000000;;, + 243;3; 0.000000, 0.666142, 0.000000;;, + 244;3; 0.000000, 0.666142, 0.000000;;, + 245;3; 0.000000, 0.666142, 0.000000;;, + 246;3; 0.000000, 0.666142, 0.000000;;, + 247;3; 0.000000, 0.666142, 0.000000;;, + 248;3; 0.000000, 0.666142, 0.000000;;, + 249;3; 0.000000, 0.666142, 0.000000;;; + } + } + Animation { + {Armature_Bone_034} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 1;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 2;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 3;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 4;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 5;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 6;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 7;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 8;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 9;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 10;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 11;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 12;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 13;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 14;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 15;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 16;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 17;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 18;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 19;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 20;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 21;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 22;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 23;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 24;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 25;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 26;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 27;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 28;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 29;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 30;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 31;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 32;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 33;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 34;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 35;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 36;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 37;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 38;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 39;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 40;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 41;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 42;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 43;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 44;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 45;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 46;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 47;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 48;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 49;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 50;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 51;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 52;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 53;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 54;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 55;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 56;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 57;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 58;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 59;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 60;4;-0.977258,-0.211870, 0.000087,-0.000000;;, + 61;4;-0.976944,-0.212767, 0.000351,-0.000000;;, + 62;4;-0.976417,-0.214269, 0.000793,-0.000001;;, + 63;4;-0.975677,-0.216379, 0.001413,-0.000001;;, + 64;4;-0.974725,-0.219096, 0.002212,-0.000001;;, + 65;4;-0.973560,-0.222418, 0.003188,-0.000002;;, + 66;4;-0.972186,-0.226337, 0.004340,-0.000003;;, + 67;4;-0.970605,-0.230844, 0.005665,-0.000004;;, + 68;4;-0.968825,-0.235923, 0.007158,-0.000005;;, + 69;4;-0.966851,-0.241554, 0.008813,-0.000006;;, + 70;4;-0.964692,-0.247711, 0.010623,-0.000007;;, + 71;4;-0.962359,-0.254365, 0.012578,-0.000008;;, + 72;4;-0.959865,-0.261478, 0.014669,-0.000009;;, + 73;4;-0.957225,-0.269008, 0.016883,-0.000011;;, + 74;4;-0.954455,-0.276909, 0.019205,-0.000012;;, + 75;4;-0.951573,-0.285128, 0.021621,-0.000014;;, + 76;4;-0.948600,-0.293607, 0.024113,-0.000015;;, + 77;4;-0.945558,-0.302285, 0.026664,-0.000017;;, + 78;4;-0.942468,-0.311098, 0.029254,-0.000019;;, + 79;4;-0.939355,-0.319978, 0.031864,-0.000020;;, + 80;4;-0.936241,-0.328858, 0.034475,-0.000022;;, + 81;4;-0.933151,-0.337671, 0.037065,-0.000024;;, + 82;4;-0.930109,-0.346349, 0.039616,-0.000025;;, + 83;4;-0.927136,-0.354828, 0.042108,-0.000027;;, + 84;4;-0.924254,-0.363047, 0.044524,-0.000028;;, + 85;4;-0.921484,-0.370948, 0.046846,-0.000030;;, + 86;4;-0.918844,-0.378479, 0.049060,-0.000031;;, + 87;4;-0.916350,-0.385592, 0.051150,-0.000032;;, + 88;4;-0.914017,-0.392245, 0.053106,-0.000034;;, + 89;4;-0.911859,-0.398402, 0.054916,-0.000035;;, + 90;4;-0.909884,-0.404033, 0.056571,-0.000036;;, + 91;4;-0.908104,-0.409112, 0.058064,-0.000037;;, + 92;4;-0.906524,-0.413619, 0.059388,-0.000038;;, + 93;4;-0.905149,-0.417538, 0.060541,-0.000038;;, + 94;4;-0.903985,-0.420860, 0.061517,-0.000039;;, + 95;4;-0.903032,-0.423578, 0.062316,-0.000040;;, + 96;4;-0.902292,-0.425687, 0.062936,-0.000040;;, + 97;4;-0.901766,-0.427189, 0.063377,-0.000040;;, + 98;4;-0.901451,-0.428086, 0.063641,-0.000040;;, + 99;4;-0.901347,-0.428384, 0.063728,-0.000040;;, + 100;4;-0.901991,-0.426101, 0.063067,-0.000040;;, + 101;4;-0.903990,-0.419011, 0.061011,-0.000039;;, + 102;4;-0.907387,-0.406965, 0.057520,-0.000037;;, + 103;4;-0.912095,-0.390272, 0.052681,-0.000033;;, + 104;4;-0.917859,-0.369834, 0.046756,-0.000030;;, + 105;4;-0.924271,-0.347098, 0.040165,-0.000026;;, + 106;4;-0.930858,-0.323738, 0.033394,-0.000021;;, + 107;4;-0.937197,-0.301262, 0.026879,-0.000017;;, + 108;4;-0.942982,-0.280747, 0.020932,-0.000013;;, + 109;4;-0.948044,-0.262800, 0.015729,-0.000010;;, + 110;4;-0.953105,-0.244853, 0.010527,-0.000007;;, + 111;4;-0.958890,-0.224338, 0.004580,-0.000003;;, + 112;4;-0.965229,-0.201862,-0.001935, 0.000001;;, + 113;4;-0.971817,-0.178502,-0.008707, 0.000005;;, + 114;4;-0.978229,-0.155766,-0.015297, 0.000010;;, + 115;4;-0.983992,-0.135328,-0.021222, 0.000013;;, + 116;4;-0.988700,-0.118635,-0.026061, 0.000017;;, + 117;4;-0.992097,-0.106589,-0.029553, 0.000019;;, + 118;4;-0.994097,-0.099499,-0.031608, 0.000020;;, + 119;4;-0.994740,-0.097216,-0.032270, 0.000020;;, + 120;4;-0.994097,-0.099499,-0.031608, 0.000020;;, + 121;4;-0.992097,-0.106589,-0.029553, 0.000019;;, + 122;4;-0.988700,-0.118635,-0.026061, 0.000017;;, + 123;4;-0.983992,-0.135328,-0.021222, 0.000013;;, + 124;4;-0.978229,-0.155766,-0.015297, 0.000010;;, + 125;4;-0.971817,-0.178502,-0.008707, 0.000005;;, + 126;4;-0.965229,-0.201862,-0.001935, 0.000001;;, + 127;4;-0.958890,-0.224338, 0.004580,-0.000003;;, + 128;4;-0.953105,-0.244853, 0.010527,-0.000007;;, + 129;4;-0.948044,-0.262800, 0.015729,-0.000010;;, + 130;4;-0.942982,-0.280747, 0.020932,-0.000013;;, + 131;4;-0.937197,-0.301262, 0.026879,-0.000017;;, + 132;4;-0.930858,-0.323738, 0.033394,-0.000021;;, + 133;4;-0.924271,-0.347098, 0.040165,-0.000026;;, + 134;4;-0.917859,-0.369834, 0.046756,-0.000030;;, + 135;4;-0.912095,-0.390272, 0.052681,-0.000033;;, + 136;4;-0.907387,-0.406965, 0.057520,-0.000037;;, + 137;4;-0.903990,-0.419011, 0.061011,-0.000039;;, + 138;4;-0.901991,-0.426101, 0.063067,-0.000040;;, + 139;4;-0.901347,-0.428384, 0.063728,-0.000040;;, + 140;4;-0.903990,-0.419011, 0.061011,-0.000039;;, + 141;4;-0.912095,-0.390272, 0.052681,-0.000033;;, + 142;4;-0.924271,-0.347098, 0.040165,-0.000026;;, + 143;4;-0.937197,-0.301262, 0.026879,-0.000017;;, + 144;4;-0.948044,-0.262800, 0.015729,-0.000010;;, + 145;4;-0.958890,-0.224338, 0.004580,-0.000003;;, + 146;4;-0.971817,-0.178502,-0.008707, 0.000005;;, + 147;4;-0.983992,-0.135328,-0.021222, 0.000013;;, + 148;4;-0.992097,-0.106589,-0.029553, 0.000019;;, + 149;4;-0.994740,-0.097216,-0.032270, 0.000020;;, + 150;4;-0.992097,-0.106589,-0.029553, 0.000019;;, + 151;4;-0.983992,-0.135328,-0.021222, 0.000013;;, + 152;4;-0.971817,-0.178502,-0.008707, 0.000005;;, + 153;4;-0.958890,-0.224338, 0.004580,-0.000003;;, + 154;4;-0.948044,-0.262800, 0.015729,-0.000010;;, + 155;4;-0.937197,-0.301262, 0.026879,-0.000017;;, + 156;4;-0.924271,-0.347098, 0.040165,-0.000026;;, + 157;4;-0.912095,-0.390272, 0.052681,-0.000033;;, + 158;4;-0.903990,-0.419011, 0.061011,-0.000039;;, + 159;4;-0.901347,-0.428384, 0.063728,-0.000040;;, + 160;4;-0.901766,-0.427189, 0.063377,-0.000040;;, + 161;4;-0.903032,-0.423578, 0.062316,-0.000040;;, + 162;4;-0.905149,-0.417538, 0.060541,-0.000038;;, + 163;4;-0.908104,-0.409112, 0.058064,-0.000037;;, + 164;4;-0.911859,-0.398402, 0.054916,-0.000035;;, + 165;4;-0.916350,-0.385592, 0.051150,-0.000032;;, + 166;4;-0.921484,-0.370948, 0.046846,-0.000030;;, + 167;4;-0.927136,-0.354828, 0.042108,-0.000027;;, + 168;4;-0.933151,-0.337671, 0.037065,-0.000024;;, + 169;4;-0.939355,-0.319978, 0.031864,-0.000020;;, + 170;4;-0.945558,-0.302285, 0.026664,-0.000017;;, + 171;4;-0.951573,-0.285128, 0.021621,-0.000014;;, + 172;4;-0.957225,-0.269008, 0.016883,-0.000011;;, + 173;4;-0.962359,-0.254365, 0.012578,-0.000008;;, + 174;4;-0.966851,-0.241554, 0.008813,-0.000006;;, + 175;4;-0.970605,-0.230844, 0.005665,-0.000004;;, + 176;4;-0.973560,-0.222418, 0.003188,-0.000002;;, + 177;4;-0.975677,-0.216379, 0.001413,-0.000001;;, + 178;4;-0.976943,-0.212767, 0.000351,-0.000000;;, + 179;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 180;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 181;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 182;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 183;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 184;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 185;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 186;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 187;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 188;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 189;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 190;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 191;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 192;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 193;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 194;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 195;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 196;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 197;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 198;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 199;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 200;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 201;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 202;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 203;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 204;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 205;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 206;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 207;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 208;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 209;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 210;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 211;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 212;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 213;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 214;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 215;4;-0.977231,-0.194273, 0.018070, 0.006911;;, + 216;4;-0.976860,-0.145546, 0.068966, 0.026379;;, + 217;4;-0.976384,-0.082982, 0.134317, 0.051375;;, + 218;4;-0.976013,-0.034255, 0.185213, 0.070842;;, + 219;4;-0.975881,-0.016956, 0.203282, 0.077753;;, + 220;4;-0.976013,-0.034255, 0.185213, 0.070842;;, + 221;4;-0.976383,-0.082982, 0.134317, 0.051375;;, + 222;4;-0.976860,-0.145546, 0.068966, 0.026379;;, + 223;4;-0.977231,-0.194273, 0.018070, 0.006911;;, + 224;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 225;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 226;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 227;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 228;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 229;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 230;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 231;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 232;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 233;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 234;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 235;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 236;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 237;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 238;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 239;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 240;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 241;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 242;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 243;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 244;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 245;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 246;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 247;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 248;4;-0.977362,-0.211572, 0.000000,-0.000000;;, + 249;4;-0.977362,-0.211572, 0.000000,-0.000000;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3;-0.000000, 1.279916, 0.000000;;, + 1;3;-0.000000, 1.279916, 0.000000;;, + 2;3;-0.000000, 1.279916, 0.000000;;, + 3;3;-0.000000, 1.279916, 0.000000;;, + 4;3;-0.000000, 1.279916, 0.000000;;, + 5;3;-0.000000, 1.279916, 0.000000;;, + 6;3;-0.000000, 1.279916, 0.000000;;, + 7;3;-0.000000, 1.279916, 0.000000;;, + 8;3;-0.000000, 1.279916, 0.000000;;, + 9;3;-0.000000, 1.279916, 0.000000;;, + 10;3;-0.000000, 1.279916, 0.000000;;, + 11;3;-0.000000, 1.279916, 0.000000;;, + 12;3;-0.000000, 1.279916, 0.000000;;, + 13;3;-0.000000, 1.279916, 0.000000;;, + 14;3;-0.000000, 1.279916, 0.000000;;, + 15;3;-0.000000, 1.279916, 0.000000;;, + 16;3;-0.000000, 1.279916, 0.000000;;, + 17;3;-0.000000, 1.279916, 0.000000;;, + 18;3;-0.000000, 1.279916, 0.000000;;, + 19;3;-0.000000, 1.279916, 0.000000;;, + 20;3; 0.000000, 1.279916,-0.000000;;, + 21;3;-0.000000, 1.279916, 0.000000;;, + 22;3;-0.000000, 1.279916, 0.000000;;, + 23;3;-0.000000, 1.279916,-0.000000;;, + 24;3; 0.000000, 1.279916,-0.000000;;, + 25;3; 0.000000, 1.279916,-0.000000;;, + 26;3; 0.000000, 1.279916,-0.000000;;, + 27;3;-0.000000, 1.279916, 0.000000;;, + 28;3; 0.000000, 1.279916,-0.000000;;, + 29;3; 0.000000, 1.279916,-0.000000;;, + 30;3;-0.000000, 1.279916,-0.000000;;, + 31;3;-0.000000, 1.279916,-0.000000;;, + 32;3;-0.000000, 1.279915, 0.000000;;, + 33;3; 0.000000, 1.279916, 0.000000;;, + 34;3; 0.000000, 1.279916,-0.000000;;, + 35;3; 0.000000, 1.279916,-0.000000;;, + 36;3;-0.000000, 1.279916, 0.000000;;, + 37;3;-0.000000, 1.279916, 0.000000;;, + 38;3;-0.000000, 1.279916, 0.000000;;, + 39;3; 0.000000, 1.279916, 0.000000;;, + 40;3;-0.000000, 1.279915,-0.000000;;, + 41;3;-0.000000, 1.279916,-0.000000;;, + 42;3; 0.000000, 1.279916,-0.000000;;, + 43;3; 0.000000, 1.279916,-0.000000;;, + 44;3;-0.000000, 1.279916,-0.000000;;, + 45;3;-0.000000, 1.279916, 0.000000;;, + 46;3;-0.000000, 1.279916, 0.000000;;, + 47;3;-0.000000, 1.279916, 0.000000;;, + 48;3;-0.000000, 1.279916, 0.000000;;, + 49;3;-0.000000, 1.279916, 0.000000;;, + 50;3;-0.000000, 1.279916, 0.000000;;, + 51;3;-0.000000, 1.279916,-0.000000;;, + 52;3; 0.000000, 1.279916, 0.000000;;, + 53;3; 0.000000, 1.279916, 0.000000;;, + 54;3; 0.000000, 1.279916,-0.000000;;, + 55;3; 0.000000, 1.279916, 0.000000;;, + 56;3;-0.000000, 1.279916,-0.000000;;, + 57;3; 0.000000, 1.279916, 0.000000;;, + 58;3;-0.000000, 1.279916,-0.000000;;, + 59;3;-0.000000, 1.279916, 0.000000;;, + 60;3; 0.000000, 1.279915,-0.000000;;, + 61;3; 0.000000, 1.279916,-0.000000;;, + 62;3; 0.000000, 1.279916, 0.000000;;, + 63;3; 0.000000, 1.279916,-0.000000;;, + 64;3;-0.000000, 1.279916,-0.000000;;, + 65;3; 0.000000, 1.279915, 0.000000;;, + 66;3;-0.000000, 1.279916,-0.000000;;, + 67;3; 0.000000, 1.279916,-0.000000;;, + 68;3; 0.000000, 1.279916, 0.000000;;, + 69;3; 0.000000, 1.279916, 0.000000;;, + 70;3; 0.000000, 1.279916, 0.000000;;, + 71;3;-0.000000, 1.279916, 0.000000;;, + 72;3;-0.000000, 1.279916, 0.000000;;, + 73;3;-0.000000, 1.279916,-0.000000;;, + 74;3; 0.000000, 1.279916, 0.000000;;, + 75;3; 0.000000, 1.279916,-0.000000;;, + 76;3; 0.000000, 1.279916,-0.000000;;, + 77;3; 0.000000, 1.279916, 0.000000;;, + 78;3; 0.000000, 1.279916,-0.000000;;, + 79;3;-0.000000, 1.279915, 0.000000;;, + 80;3; 0.000000, 1.279916,-0.000000;;, + 81;3;-0.000000, 1.279916,-0.000000;;, + 82;3; 0.000000, 1.279916, 0.000000;;, + 83;3;-0.000000, 1.279916,-0.000000;;, + 84;3; 0.000000, 1.279916,-0.000000;;, + 85;3; 0.000000, 1.279916,-0.000000;;, + 86;3; 0.000000, 1.279916,-0.000000;;, + 87;3;-0.000000, 1.279916,-0.000000;;, + 88;3;-0.000000, 1.279916, 0.000000;;, + 89;3; 0.000000, 1.279915,-0.000000;;, + 90;3;-0.000000, 1.279916, 0.000000;;, + 91;3; 0.000000, 1.279916,-0.000000;;, + 92;3; 0.000000, 1.279916, 0.000000;;, + 93;3; 0.000000, 1.279916,-0.000000;;, + 94;3; 0.000000, 1.279916, 0.000000;;, + 95;3; 0.000000, 1.279916,-0.000000;;, + 96;3; 0.000000, 1.279915,-0.000000;;, + 97;3; 0.000000, 1.279915,-0.000000;;, + 98;3; 0.000000, 1.279916, 0.000000;;, + 99;3; 0.000000, 1.279916, 0.000000;;, + 100;3;-0.000000, 1.279915, 0.000000;;, + 101;3;-0.000000, 1.279916, 0.000000;;, + 102;3; 0.000000, 1.279916,-0.000000;;, + 103;3; 0.000000, 1.279916, 0.000000;;, + 104;3;-0.000000, 1.279916,-0.000000;;, + 105;3; 0.000000, 1.279916, 0.000000;;, + 106;3;-0.000000, 1.279916, 0.000000;;, + 107;3;-0.000000, 1.279916, 0.000000;;, + 108;3;-0.000000, 1.279916,-0.000000;;, + 109;3; 0.000000, 1.279916, 0.000000;;, + 110;3; 0.000000, 1.279916, 0.000000;;, + 111;3; 0.000000, 1.279916, 0.000000;;, + 112;3; 0.000000, 1.279916,-0.000000;;, + 113;3;-0.000000, 1.279916, 0.000000;;, + 114;3;-0.000000, 1.279916,-0.000000;;, + 115;3;-0.000000, 1.279915,-0.000000;;, + 116;3; 0.000000, 1.279916, 0.000000;;, + 117;3;-0.000000, 1.279916,-0.000000;;, + 118;3; 0.000000, 1.279916, 0.000000;;, + 119;3; 0.000000, 1.279916,-0.000000;;, + 120;3;-0.000000, 1.279916, 0.000000;;, + 121;3;-0.000000, 1.279916, 0.000000;;, + 122;3;-0.000000, 1.279916,-0.000000;;, + 123;3;-0.000000, 1.279916,-0.000000;;, + 124;3;-0.000000, 1.279916, 0.000000;;, + 125;3;-0.000000, 1.279916,-0.000000;;, + 126;3;-0.000000, 1.279916, 0.000000;;, + 127;3;-0.000000, 1.279916,-0.000000;;, + 128;3; 0.000000, 1.279916, 0.000000;;, + 129;3; 0.000000, 1.279916,-0.000000;;, + 130;3;-0.000000, 1.279916,-0.000000;;, + 131;3; 0.000000, 1.279916, 0.000000;;, + 132;3; 0.000000, 1.279916, 0.000000;;, + 133;3; 0.000000, 1.279916, 0.000000;;, + 134;3;-0.000000, 1.279916, 0.000000;;, + 135;3;-0.000000, 1.279916,-0.000000;;, + 136;3;-0.000000, 1.279916, 0.000000;;, + 137;3;-0.000000, 1.279915, 0.000000;;, + 138;3;-0.000000, 1.279916, 0.000000;;, + 139;3; 0.000000, 1.279916, 0.000000;;, + 140;3; 0.000000, 1.279916,-0.000000;;, + 141;3; 0.000000, 1.279916,-0.000000;;, + 142;3; 0.000000, 1.279916, 0.000000;;, + 143;3;-0.000000, 1.279916,-0.000000;;, + 144;3; 0.000000, 1.279916, 0.000000;;, + 145;3; 0.000000, 1.279916, 0.000000;;, + 146;3;-0.000000, 1.279916, 0.000000;;, + 147;3;-0.000000, 1.279915,-0.000000;;, + 148;3;-0.000000, 1.279916,-0.000000;;, + 149;3; 0.000000, 1.279916,-0.000000;;, + 150;3;-0.000000, 1.279916, 0.000000;;, + 151;3;-0.000000, 1.279916,-0.000000;;, + 152;3;-0.000000, 1.279916,-0.000000;;, + 153;3;-0.000000, 1.279916,-0.000000;;, + 154;3; 0.000000, 1.279916,-0.000000;;, + 155;3; 0.000000, 1.279915,-0.000000;;, + 156;3;-0.000000, 1.279916,-0.000000;;, + 157;3; 0.000000, 1.279916, 0.000000;;, + 158;3; 0.000000, 1.279916, 0.000000;;, + 159;3; 0.000000, 1.279916, 0.000000;;, + 160;3;-0.000000, 1.279916,-0.000000;;, + 161;3;-0.000000, 1.279916, 0.000000;;, + 162;3;-0.000000, 1.279916, 0.000000;;, + 163;3; 0.000000, 1.279916,-0.000000;;, + 164;3; 0.000000, 1.279916, 0.000000;;, + 165;3; 0.000000, 1.279916,-0.000000;;, + 166;3;-0.000000, 1.279916,-0.000000;;, + 167;3;-0.000000, 1.279916, 0.000000;;, + 168;3;-0.000000, 1.279916, 0.000000;;, + 169;3; 0.000000, 1.279916,-0.000000;;, + 170;3;-0.000000, 1.279916,-0.000000;;, + 171;3; 0.000000, 1.279916,-0.000000;;, + 172;3;-0.000000, 1.279916, 0.000000;;, + 173;3;-0.000000, 1.279916,-0.000000;;, + 174;3;-0.000000, 1.279916,-0.000000;;, + 175;3; 0.000000, 1.279916,-0.000000;;, + 176;3; 0.000000, 1.279916,-0.000000;;, + 177;3;-0.000000, 1.279915, 0.000000;;, + 178;3; 0.000000, 1.279916, 0.000000;;, + 179;3;-0.000000, 1.279916, 0.000000;;, + 180;3; 0.000000, 1.279915, 0.000000;;, + 181;3; 0.000000, 1.279916,-0.000000;;, + 182;3;-0.000000, 1.279916,-0.000000;;, + 183;3;-0.000000, 1.279916, 0.000000;;, + 184;3;-0.000000, 1.279916,-0.000000;;, + 185;3;-0.000000, 1.279916,-0.000000;;, + 186;3;-0.000000, 1.279916,-0.000000;;, + 187;3; 0.000000, 1.279916,-0.000000;;, + 188;3; 0.000000, 1.279916, 0.000000;;, + 189;3;-0.000000, 1.279916,-0.000000;;, + 190;3; 0.000000, 1.279916,-0.000000;;, + 191;3;-0.000000, 1.279916, 0.000000;;, + 192;3;-0.000000, 1.279915,-0.000000;;, + 193;3;-0.000000, 1.279915,-0.000000;;, + 194;3; 0.000000, 1.279916,-0.000000;;, + 195;3; 0.000000, 1.279916,-0.000000;;, + 196;3; 0.000000, 1.279916,-0.000000;;, + 197;3;-0.000000, 1.279916, 0.000000;;, + 198;3;-0.000000, 1.279916, 0.000000;;, + 199;3;-0.000000, 1.279916, 0.000000;;, + 200;3;-0.000000, 1.279916, 0.000000;;, + 201;3;-0.000000, 1.279916, 0.000000;;, + 202;3;-0.000000, 1.279916, 0.000000;;, + 203;3;-0.000000, 1.279916, 0.000000;;, + 204;3;-0.000000, 1.279916, 0.000000;;, + 205;3;-0.000000, 1.279916, 0.000000;;, + 206;3;-0.000000, 1.279916, 0.000000;;, + 207;3;-0.000000, 1.279916, 0.000000;;, + 208;3;-0.000000, 1.279916, 0.000000;;, + 209;3;-0.000000, 1.279916, 0.000000;;, + 210;3; 0.000000, 1.279916,-0.000000;;, + 211;3; 0.000000, 1.279916,-0.000000;;, + 212;3;-0.000000, 1.279916, 0.000000;;, + 213;3;-0.000000, 1.279916,-0.000000;;, + 214;3; 0.000000, 1.279916, 0.000000;;, + 215;3; 0.000000, 1.279916,-0.000000;;, + 216;3;-0.000000, 1.279916, 0.000000;;, + 217;3; 0.000000, 1.279916,-0.000000;;, + 218;3;-0.000000, 1.279916,-0.000000;;, + 219;3; 0.000000, 1.279916,-0.000000;;, + 220;3; 0.000000, 1.279916, 0.000000;;, + 221;3; 0.000000, 1.279916,-0.000000;;, + 222;3; 0.000000, 1.279916, 0.000000;;, + 223;3; 0.000000, 1.279916,-0.000000;;, + 224;3;-0.000000, 1.279916,-0.000000;;, + 225;3; 0.000000, 1.279916,-0.000000;;, + 226;3; 0.000000, 1.279916,-0.000000;;, + 227;3;-0.000000, 1.279916, 0.000000;;, + 228;3; 0.000000, 1.279916, 0.000000;;, + 229;3; 0.000000, 1.279916, 0.000000;;, + 230;3; 0.000000, 1.279916,-0.000000;;, + 231;3;-0.000000, 1.279916, 0.000000;;, + 232;3; 0.000000, 1.279916,-0.000000;;, + 233;3; 0.000000, 1.279916,-0.000000;;, + 234;3;-0.000000, 1.279916, 0.000000;;, + 235;3;-0.000000, 1.279916, 0.000000;;, + 236;3; 0.000000, 1.279916, 0.000000;;, + 237;3;-0.000000, 1.279916,-0.000000;;, + 238;3;-0.000000, 1.279916, 0.000000;;, + 239;3;-0.000000, 1.279916, 0.000000;;, + 240;3;-0.000000, 1.279916, 0.000000;;, + 241;3;-0.000000, 1.279916, 0.000000;;, + 242;3;-0.000000, 1.279916, 0.000000;;, + 243;3;-0.000000, 1.279916, 0.000000;;, + 244;3;-0.000000, 1.279916, 0.000000;;, + 245;3;-0.000000, 1.279916, 0.000000;;, + 246;3;-0.000000, 1.279916, 0.000000;;, + 247;3;-0.000000, 1.279916, 0.000000;;, + 248;3;-0.000000, 1.279916, 0.000000;;, + 249;3;-0.000000, 1.279916, 0.000000;;; + } + } + Animation { + {Armature_Bone_038} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 1;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 2;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 3;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 4;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 5;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 6;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 7;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 8;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 9;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 10;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 11;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 12;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 13;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 14;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 15;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 16;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 17;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 18;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 19;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 20;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 21;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 22;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 23;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 24;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 25;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 26;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 27;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 28;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 29;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 30;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 31;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 32;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 33;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 34;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 35;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 36;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 37;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 38;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 39;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 40;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 41;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 42;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 43;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 44;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 45;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 46;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 47;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 48;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 49;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 50;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 51;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 52;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 53;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 54;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 55;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 56;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 57;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 58;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 59;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 60;4;-0.958244,-0.285931, 0.000030, 0.000016;;, + 61;4;-0.958123,-0.286275, 0.000119, 0.000065;;, + 62;4;-0.957921,-0.286851, 0.000268, 0.000147;;, + 63;4;-0.957638,-0.287661, 0.000478, 0.000263;;, + 64;4;-0.957272,-0.288703, 0.000748, 0.000411;;, + 65;4;-0.956825,-0.289977, 0.001079, 0.000593;;, + 66;4;-0.956298,-0.291480, 0.001468, 0.000807;;, + 67;4;-0.955692,-0.293208, 0.001917, 0.001053;;, + 68;4;-0.955008,-0.295156, 0.002422, 0.001331;;, + 69;4;-0.954251,-0.297315, 0.002982, 0.001638;;, + 70;4;-0.953423,-0.299677, 0.003594, 0.001975;;, + 71;4;-0.952528,-0.302228, 0.004256, 0.002338;;, + 72;4;-0.951571,-0.304956, 0.004963, 0.002727;;, + 73;4;-0.950558,-0.307844, 0.005712, 0.003138;;, + 74;4;-0.949495,-0.310874, 0.006498, 0.003570;;, + 75;4;-0.948389,-0.314026, 0.007315, 0.004019;;, + 76;4;-0.947249,-0.317278, 0.008159, 0.004483;;, + 77;4;-0.946081,-0.320606, 0.009022, 0.004957;;, + 78;4;-0.944896,-0.323985, 0.009898, 0.005438;;, + 79;4;-0.943701,-0.327391, 0.010781, 0.005924;;, + 80;4;-0.942506,-0.330796, 0.011664, 0.006409;;, + 81;4;-0.941321,-0.334176, 0.012541, 0.006890;;, + 82;4;-0.940153,-0.337504, 0.013404, 0.007364;;, + 83;4;-0.939013,-0.340756, 0.014247, 0.007828;;, + 84;4;-0.937907,-0.343908, 0.015064, 0.008277;;, + 85;4;-0.936844,-0.346938, 0.015850, 0.008709;;, + 86;4;-0.935831,-0.349826, 0.016599, 0.009120;;, + 87;4;-0.934875,-0.352553, 0.017307, 0.009509;;, + 88;4;-0.933979,-0.355105, 0.017968, 0.009872;;, + 89;4;-0.933151,-0.357466, 0.018581, 0.010209;;, + 90;4;-0.932394,-0.359626, 0.019141, 0.010516;;, + 91;4;-0.931710,-0.361574, 0.019646, 0.010794;;, + 92;4;-0.931104,-0.363302, 0.020094, 0.011040;;, + 93;4;-0.930577,-0.364805, 0.020484, 0.011254;;, + 94;4;-0.930130,-0.366079, 0.020814, 0.011436;;, + 95;4;-0.929765,-0.367121, 0.021084, 0.011584;;, + 96;4;-0.929481,-0.367930, 0.021294, 0.011700;;, + 97;4;-0.929279,-0.368506, 0.021443, 0.011782;;, + 98;4;-0.929158,-0.368850, 0.021533, 0.011831;;, + 99;4;-0.929118,-0.368964, 0.021562, 0.011847;;, + 100;4;-0.929521,-0.367474, 0.021184, 0.011639;;, + 101;4;-0.930772,-0.362843, 0.020009, 0.010994;;, + 102;4;-0.932897,-0.354977, 0.018014, 0.009897;;, + 103;4;-0.935842,-0.344075, 0.015248, 0.008378;;, + 104;4;-0.939447,-0.330728, 0.011862, 0.006518;;, + 105;4;-0.943459,-0.315879, 0.008096, 0.004448;;, + 106;4;-0.947580,-0.300624, 0.004226, 0.002322;;, + 107;4;-0.951545,-0.285946, 0.000502, 0.000276;;, + 108;4;-0.955165,-0.272548,-0.002897,-0.001592;;, + 109;4;-0.958331,-0.260827,-0.005870,-0.003225;;, + 110;4;-0.961497,-0.249107,-0.008843,-0.004859;;, + 111;4;-0.965116,-0.235709,-0.012242,-0.006726;;, + 112;4;-0.969082,-0.221031,-0.015966,-0.008772;;, + 113;4;-0.973203,-0.205776,-0.019836,-0.010898;;, + 114;4;-0.977214,-0.190927,-0.023602,-0.012968;;, + 115;4;-0.980820,-0.177580,-0.026988,-0.014828;;, + 116;4;-0.983765,-0.166678,-0.029754,-0.016348;;, + 117;4;-0.985890,-0.158812,-0.031749,-0.017444;;, + 118;4;-0.987141,-0.154181,-0.032924,-0.018090;;, + 119;4;-0.987543,-0.152690,-0.033302,-0.018297;;, + 120;4;-0.987141,-0.154181,-0.032924,-0.018090;;, + 121;4;-0.985890,-0.158812,-0.031749,-0.017444;;, + 122;4;-0.983765,-0.166678,-0.029754,-0.016348;;, + 123;4;-0.980820,-0.177580,-0.026988,-0.014828;;, + 124;4;-0.977214,-0.190927,-0.023602,-0.012968;;, + 125;4;-0.973203,-0.205776,-0.019836,-0.010898;;, + 126;4;-0.969082,-0.221031,-0.015966,-0.008772;;, + 127;4;-0.965116,-0.235709,-0.012242,-0.006726;;, + 128;4;-0.961497,-0.249107,-0.008843,-0.004859;;, + 129;4;-0.958331,-0.260827,-0.005870,-0.003225;;, + 130;4;-0.955165,-0.272548,-0.002897,-0.001592;;, + 131;4;-0.951545,-0.285945, 0.000502, 0.000276;;, + 132;4;-0.947580,-0.300624, 0.004226, 0.002322;;, + 133;4;-0.943459,-0.315879, 0.008096, 0.004448;;, + 134;4;-0.939447,-0.330728, 0.011862, 0.006518;;, + 135;4;-0.935842,-0.344075, 0.015248, 0.008378;;, + 136;4;-0.932897,-0.354977, 0.018014, 0.009897;;, + 137;4;-0.930772,-0.362843, 0.020009, 0.010994;;, + 138;4;-0.929521,-0.367474, 0.021184, 0.011639;;, + 139;4;-0.929118,-0.368964, 0.021562, 0.011847;;, + 140;4;-0.930772,-0.362843, 0.020009, 0.010994;;, + 141;4;-0.935842,-0.344075, 0.015248, 0.008378;;, + 142;4;-0.943459,-0.315879, 0.008096, 0.004448;;, + 143;4;-0.951545,-0.285946, 0.000502, 0.000276;;, + 144;4;-0.958331,-0.260827,-0.005870,-0.003225;;, + 145;4;-0.965116,-0.235709,-0.012242,-0.006726;;, + 146;4;-0.973203,-0.205776,-0.019836,-0.010898;;, + 147;4;-0.980820,-0.177580,-0.026988,-0.014828;;, + 148;4;-0.985890,-0.158812,-0.031749,-0.017444;;, + 149;4;-0.987543,-0.152690,-0.033302,-0.018297;;, + 150;4;-0.985890,-0.158812,-0.031749,-0.017444;;, + 151;4;-0.980820,-0.177580,-0.026988,-0.014828;;, + 152;4;-0.973203,-0.205776,-0.019836,-0.010898;;, + 153;4;-0.965116,-0.235709,-0.012242,-0.006726;;, + 154;4;-0.958331,-0.260827,-0.005870,-0.003225;;, + 155;4;-0.951545,-0.285945, 0.000502, 0.000276;;, + 156;4;-0.943459,-0.315879, 0.008096, 0.004448;;, + 157;4;-0.935842,-0.344075, 0.015248, 0.008378;;, + 158;4;-0.930772,-0.362843, 0.020009, 0.010994;;, + 159;4;-0.929118,-0.368964, 0.021562, 0.011847;;, + 160;4;-0.929279,-0.368506, 0.021443, 0.011782;;, + 161;4;-0.929765,-0.367121, 0.021084, 0.011584;;, + 162;4;-0.930577,-0.364805, 0.020484, 0.011254;;, + 163;4;-0.931710,-0.361573, 0.019646, 0.010794;;, + 164;4;-0.933151,-0.357466, 0.018581, 0.010209;;, + 165;4;-0.934874,-0.352553, 0.017307, 0.009509;;, + 166;4;-0.936844,-0.346938, 0.015850, 0.008709;;, + 167;4;-0.939013,-0.340756, 0.014247, 0.007828;;, + 168;4;-0.941321,-0.334176, 0.012541, 0.006890;;, + 169;4;-0.943701,-0.327391, 0.010781, 0.005924;;, + 170;4;-0.946081,-0.320606, 0.009022, 0.004957;;, + 171;4;-0.948389,-0.314026, 0.007315, 0.004019;;, + 172;4;-0.950558,-0.307844, 0.005712, 0.003138;;, + 173;4;-0.952528,-0.302228, 0.004256, 0.002338;;, + 174;4;-0.954251,-0.297315, 0.002982, 0.001638;;, + 175;4;-0.955692,-0.293208, 0.001917, 0.001053;;, + 176;4;-0.956825,-0.289977, 0.001079, 0.000593;;, + 177;4;-0.957638,-0.287661, 0.000478, 0.000263;;, + 178;4;-0.958123,-0.286275, 0.000119, 0.000065;;, + 179;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 180;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 181;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 182;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 183;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 184;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 185;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 186;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 187;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 188;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 189;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 190;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 191;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 192;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 193;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 194;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 195;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 196;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 197;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 198;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 199;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 200;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 201;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 202;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 203;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 204;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 205;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 206;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 207;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 208;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 209;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 210;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 211;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 212;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 213;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 214;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 215;4;-0.959377,-0.267880, 0.012959, 0.015310;;, + 216;4;-0.962455,-0.217358, 0.049461, 0.058433;;, + 217;4;-0.966407,-0.152488, 0.096328, 0.113802;;, + 218;4;-0.969484,-0.101966, 0.132830, 0.156925;;, + 219;4;-0.970577,-0.084029, 0.145789, 0.172234;;, + 220;4;-0.969484,-0.101966, 0.132830, 0.156925;;, + 221;4;-0.966407,-0.152488, 0.096328, 0.113802;;, + 222;4;-0.962455,-0.217358, 0.049461, 0.058433;;, + 223;4;-0.959377,-0.267880, 0.012959, 0.015310;;, + 224;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 225;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 226;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 227;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 228;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 229;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 230;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 231;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 232;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 233;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 234;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 235;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 236;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 237;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 238;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 239;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 240;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 241;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 242;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 243;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 244;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 245;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 246;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 247;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 248;4;-0.958284,-0.285817, 0.000000,-0.000000;;, + 249;4;-0.958284,-0.285817, 0.000000,-0.000000;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3; 0.000000, 1.228417,-0.000000;;, + 1;3; 0.000000, 1.228417,-0.000000;;, + 2;3; 0.000000, 1.228417,-0.000000;;, + 3;3; 0.000000, 1.228417,-0.000000;;, + 4;3; 0.000000, 1.228417,-0.000000;;, + 5;3; 0.000000, 1.228417,-0.000000;;, + 6;3; 0.000000, 1.228417,-0.000000;;, + 7;3; 0.000000, 1.228417,-0.000000;;, + 8;3; 0.000000, 1.228417,-0.000000;;, + 9;3; 0.000000, 1.228417,-0.000000;;, + 10;3; 0.000000, 1.228417,-0.000000;;, + 11;3; 0.000000, 1.228417,-0.000000;;, + 12;3; 0.000000, 1.228417,-0.000000;;, + 13;3; 0.000000, 1.228417,-0.000000;;, + 14;3; 0.000000, 1.228417,-0.000000;;, + 15;3; 0.000000, 1.228417,-0.000000;;, + 16;3; 0.000000, 1.228417,-0.000000;;, + 17;3; 0.000000, 1.228417,-0.000000;;, + 18;3; 0.000000, 1.228417,-0.000000;;, + 19;3; 0.000000, 1.228417,-0.000000;;, + 20;3;-0.000000, 1.228416,-0.000000;;, + 21;3; 0.000000, 1.228416, 0.000000;;, + 22;3; 0.000000, 1.228417, 0.000000;;, + 23;3;-0.000000, 1.228416, 0.000000;;, + 24;3; 0.000000, 1.228416,-0.000000;;, + 25;3;-0.000000, 1.228417, 0.000000;;, + 26;3;-0.000000, 1.228416,-0.000000;;, + 27;3; 0.000000, 1.228416,-0.000000;;, + 28;3; 0.000000, 1.228416,-0.000000;;, + 29;3; 0.000000, 1.228417,-0.000000;;, + 30;3; 0.000000, 1.228417, 0.000000;;, + 31;3;-0.000000, 1.228417,-0.000000;;, + 32;3;-0.000000, 1.228416, 0.000000;;, + 33;3;-0.000000, 1.228416,-0.000000;;, + 34;3;-0.000000, 1.228416, 0.000000;;, + 35;3; 0.000000, 1.228417,-0.000000;;, + 36;3;-0.000000, 1.228417,-0.000000;;, + 37;3;-0.000000, 1.228416, 0.000000;;, + 38;3;-0.000000, 1.228416,-0.000000;;, + 39;3;-0.000000, 1.228416,-0.000000;;, + 40;3; 0.000000, 1.228416, 0.000000;;, + 41;3;-0.000000, 1.228416, 0.000000;;, + 42;3; 0.000000, 1.228417, 0.000000;;, + 43;3;-0.000000, 1.228416,-0.000000;;, + 44;3;-0.000000, 1.228416,-0.000000;;, + 45;3; 0.000000, 1.228416,-0.000000;;, + 46;3;-0.000000, 1.228416,-0.000000;;, + 47;3;-0.000000, 1.228416,-0.000000;;, + 48;3; 0.000000, 1.228416,-0.000000;;, + 49;3; 0.000000, 1.228416, 0.000000;;, + 50;3;-0.000000, 1.228416,-0.000000;;, + 51;3; 0.000000, 1.228417, 0.000000;;, + 52;3; 0.000000, 1.228417, 0.000000;;, + 53;3;-0.000000, 1.228416, 0.000000;;, + 54;3;-0.000000, 1.228416, 0.000000;;, + 55;3;-0.000000, 1.228417, 0.000000;;, + 56;3; 0.000000, 1.228416,-0.000000;;, + 57;3; 0.000000, 1.228416,-0.000000;;, + 58;3;-0.000000, 1.228416,-0.000000;;, + 59;3; 0.000000, 1.228417,-0.000000;;, + 60;3;-0.000000, 1.228416,-0.000000;;, + 61;3;-0.000000, 1.228417,-0.000000;;, + 62;3;-0.000000, 1.228416,-0.000000;;, + 63;3;-0.000000, 1.228417, 0.000000;;, + 64;3; 0.000000, 1.228417, 0.000000;;, + 65;3;-0.000000, 1.228417,-0.000000;;, + 66;3;-0.000000, 1.228416, 0.000000;;, + 67;3;-0.000000, 1.228416, 0.000000;;, + 68;3; 0.000000, 1.228417, 0.000000;;, + 69;3;-0.000000, 1.228417,-0.000000;;, + 70;3; 0.000000, 1.228417, 0.000000;;, + 71;3;-0.000000, 1.228417,-0.000000;;, + 72;3; 0.000000, 1.228417, 0.000000;;, + 73;3;-0.000000, 1.228416,-0.000000;;, + 74;3; 0.000000, 1.228417,-0.000000;;, + 75;3; 0.000000, 1.228416, 0.000000;;, + 76;3;-0.000000, 1.228417,-0.000000;;, + 77;3; 0.000000, 1.228417, 0.000000;;, + 78;3; 0.000000, 1.228416, 0.000000;;, + 79;3;-0.000000, 1.228416,-0.000000;;, + 80;3;-0.000000, 1.228417, 0.000000;;, + 81;3; 0.000000, 1.228417, 0.000000;;, + 82;3; 0.000000, 1.228417,-0.000000;;, + 83;3; 0.000000, 1.228416,-0.000000;;, + 84;3; 0.000000, 1.228416,-0.000000;;, + 85;3;-0.000000, 1.228416,-0.000000;;, + 86;3; 0.000000, 1.228417,-0.000000;;, + 87;3; 0.000000, 1.228416,-0.000000;;, + 88;3;-0.000000, 1.228416,-0.000000;;, + 89;3;-0.000000, 1.228416,-0.000000;;, + 90;3; 0.000000, 1.228417, 0.000000;;, + 91;3;-0.000000, 1.228416,-0.000000;;, + 92;3; 0.000000, 1.228417, 0.000000;;, + 93;3; 0.000000, 1.228417, 0.000000;;, + 94;3; 0.000000, 1.228417,-0.000000;;, + 95;3;-0.000000, 1.228416, 0.000000;;, + 96;3; 0.000000, 1.228417,-0.000000;;, + 97;3; 0.000000, 1.228416, 0.000000;;, + 98;3;-0.000000, 1.228416, 0.000000;;, + 99;3; 0.000000, 1.228416, 0.000000;;, + 100;3; 0.000000, 1.228417,-0.000000;;, + 101;3;-0.000000, 1.228416,-0.000000;;, + 102;3; 0.000000, 1.228417, 0.000000;;, + 103;3; 0.000000, 1.228416,-0.000000;;, + 104;3; 0.000000, 1.228416, 0.000000;;, + 105;3;-0.000000, 1.228416,-0.000000;;, + 106;3;-0.000000, 1.228416, 0.000000;;, + 107;3;-0.000000, 1.228416,-0.000000;;, + 108;3;-0.000000, 1.228416, 0.000000;;, + 109;3; 0.000000, 1.228416, 0.000000;;, + 110;3;-0.000000, 1.228416,-0.000000;;, + 111;3; 0.000000, 1.228417, 0.000000;;, + 112;3; 0.000000, 1.228417, 0.000000;;, + 113;3;-0.000000, 1.228416, 0.000000;;, + 114;3; 0.000000, 1.228416, 0.000000;;, + 115;3;-0.000000, 1.228416, 0.000000;;, + 116;3;-0.000000, 1.228418, 0.000000;;, + 117;3; 0.000000, 1.228416,-0.000000;;, + 118;3; 0.000000, 1.228417,-0.000000;;, + 119;3; 0.000000, 1.228417,-0.000000;;, + 120;3;-0.000000, 1.228416,-0.000000;;, + 121;3;-0.000000, 1.228417,-0.000000;;, + 122;3; 0.000000, 1.228417, 0.000000;;, + 123;3; 0.000000, 1.228417,-0.000000;;, + 124;3; 0.000000, 1.228416,-0.000000;;, + 125;3; 0.000000, 1.228417,-0.000000;;, + 126;3;-0.000000, 1.228416,-0.000000;;, + 127;3;-0.000000, 1.228416,-0.000000;;, + 128;3; 0.000000, 1.228416,-0.000000;;, + 129;3; 0.000000, 1.228417,-0.000000;;, + 130;3; 0.000000, 1.228416,-0.000000;;, + 131;3;-0.000000, 1.228416,-0.000000;;, + 132;3; 0.000000, 1.228417, 0.000000;;, + 133;3;-0.000000, 1.228416,-0.000000;;, + 134;3;-0.000000, 1.228417,-0.000000;;, + 135;3; 0.000000, 1.228417, 0.000000;;, + 136;3; 0.000000, 1.228416,-0.000000;;, + 137;3; 0.000000, 1.228417, 0.000000;;, + 138;3; 0.000000, 1.228417,-0.000000;;, + 139;3; 0.000000, 1.228416, 0.000000;;, + 140;3;-0.000000, 1.228417,-0.000000;;, + 141;3;-0.000000, 1.228417,-0.000000;;, + 142;3;-0.000000, 1.228416, 0.000000;;, + 143;3; 0.000000, 1.228417, 0.000000;;, + 144;3; 0.000000, 1.228416, 0.000000;;, + 145;3; 0.000000, 1.228417, 0.000000;;, + 146;3;-0.000000, 1.228416, 0.000000;;, + 147;3;-0.000000, 1.228416, 0.000000;;, + 148;3; 0.000000, 1.228416,-0.000000;;, + 149;3; 0.000000, 1.228417,-0.000000;;, + 150;3;-0.000000, 1.228417,-0.000000;;, + 151;3; 0.000000, 1.228417,-0.000000;;, + 152;3; 0.000000, 1.228417,-0.000000;;, + 153;3;-0.000000, 1.228416,-0.000000;;, + 154;3; 0.000000, 1.228417,-0.000000;;, + 155;3; 0.000000, 1.228417,-0.000000;;, + 156;3; 0.000000, 1.228416,-0.000000;;, + 157;3; 0.000000, 1.228416,-0.000000;;, + 158;3;-0.000000, 1.228416,-0.000000;;, + 159;3; 0.000000, 1.228416, 0.000000;;, + 160;3;-0.000000, 1.228416, 0.000000;;, + 161;3; 0.000000, 1.228416, 0.000000;;, + 162;3;-0.000000, 1.228416, 0.000000;;, + 163;3; 0.000000, 1.228417,-0.000000;;, + 164;3; 0.000000, 1.228417, 0.000000;;, + 165;3;-0.000000, 1.228416,-0.000000;;, + 166;3; 0.000000, 1.228416, 0.000000;;, + 167;3;-0.000000, 1.228416, 0.000000;;, + 168;3;-0.000000, 1.228417,-0.000000;;, + 169;3; 0.000000, 1.228416, 0.000000;;, + 170;3;-0.000000, 1.228416,-0.000000;;, + 171;3; 0.000000, 1.228417, 0.000000;;, + 172;3; 0.000000, 1.228417, 0.000000;;, + 173;3;-0.000000, 1.228416,-0.000000;;, + 174;3;-0.000000, 1.228417, 0.000000;;, + 175;3;-0.000000, 1.228417, 0.000000;;, + 176;3;-0.000000, 1.228416, 0.000000;;, + 177;3; 0.000000, 1.228416,-0.000000;;, + 178;3; 0.000000, 1.228417, 0.000000;;, + 179;3; 0.000000, 1.228417,-0.000000;;, + 180;3; 0.000000, 1.228416,-0.000000;;, + 181;3; 0.000000, 1.228417, 0.000000;;, + 182;3; 0.000000, 1.228416, 0.000000;;, + 183;3;-0.000000, 1.228416, 0.000000;;, + 184;3;-0.000000, 1.228416, 0.000000;;, + 185;3; 0.000000, 1.228417, 0.000000;;, + 186;3;-0.000000, 1.228416,-0.000000;;, + 187;3; 0.000000, 1.228416, 0.000000;;, + 188;3; 0.000000, 1.228416, 0.000000;;, + 189;3;-0.000000, 1.228416, 0.000001;;, + 190;3;-0.000000, 1.228417, 0.000000;;, + 191;3;-0.000000, 1.228416,-0.000000;;, + 192;3; 0.000000, 1.228417,-0.000000;;, + 193;3; 0.000000, 1.228416, 0.000001;;, + 194;3; 0.000000, 1.228416,-0.000000;;, + 195;3;-0.000000, 1.228416, 0.000000;;, + 196;3;-0.000000, 1.228417, 0.000000;;, + 197;3; 0.000000, 1.228416, 0.000000;;, + 198;3; 0.000000, 1.228417, 0.000000;;, + 199;3; 0.000000, 1.228417,-0.000000;;, + 200;3; 0.000000, 1.228417,-0.000000;;, + 201;3; 0.000000, 1.228417,-0.000000;;, + 202;3; 0.000000, 1.228417,-0.000000;;, + 203;3; 0.000000, 1.228417,-0.000000;;, + 204;3; 0.000000, 1.228417,-0.000000;;, + 205;3; 0.000000, 1.228417,-0.000000;;, + 206;3; 0.000000, 1.228417,-0.000000;;, + 207;3; 0.000000, 1.228417,-0.000000;;, + 208;3; 0.000000, 1.228417,-0.000000;;, + 209;3; 0.000000, 1.228417,-0.000000;;, + 210;3; 0.000000, 1.228417,-0.000000;;, + 211;3; 0.000000, 1.228417,-0.000000;;, + 212;3;-0.000000, 1.228417, 0.000000;;, + 213;3; 0.000000, 1.228417, 0.000000;;, + 214;3;-0.000000, 1.228416,-0.000000;;, + 215;3;-0.000000, 1.228416, 0.000000;;, + 216;3; 0.000000, 1.228417, 0.000000;;, + 217;3;-0.000000, 1.228416, 0.000000;;, + 218;3; 0.000000, 1.228416, 0.000000;;, + 219;3; 0.000000, 1.228416, 0.000000;;, + 220;3; 0.000000, 1.228417,-0.000000;;, + 221;3;-0.000000, 1.228416,-0.000000;;, + 222;3;-0.000000, 1.228417,-0.000000;;, + 223;3; 0.000000, 1.228416, 0.000000;;, + 224;3;-0.000000, 1.228416,-0.000000;;, + 225;3;-0.000000, 1.228417,-0.000000;;, + 226;3;-0.000001, 1.228416, 0.000000;;, + 227;3;-0.000000, 1.228417,-0.000000;;, + 228;3; 0.000000, 1.228416, 0.000000;;, + 229;3; 0.000000, 1.228416,-0.000000;;, + 230;3; 0.000000, 1.228417,-0.000000;;, + 231;3;-0.000000, 1.228416, 0.000000;;, + 232;3; 0.000000, 1.228416, 0.000000;;, + 233;3;-0.000000, 1.228416, 0.000000;;, + 234;3; 0.000000, 1.228416, 0.000000;;, + 235;3;-0.000000, 1.228416,-0.000000;;, + 236;3; 0.000000, 1.228416, 0.000000;;, + 237;3;-0.000000, 1.228416, 0.000000;;, + 238;3;-0.000000, 1.228416,-0.000000;;, + 239;3; 0.000000, 1.228417,-0.000000;;, + 240;3; 0.000000, 1.228417,-0.000000;;, + 241;3; 0.000000, 1.228417,-0.000000;;, + 242;3; 0.000000, 1.228417,-0.000000;;, + 243;3; 0.000000, 1.228417,-0.000000;;, + 244;3; 0.000000, 1.228417,-0.000000;;, + 245;3; 0.000000, 1.228417,-0.000000;;, + 246;3; 0.000000, 1.228417,-0.000000;;, + 247;3; 0.000000, 1.228417,-0.000000;;, + 248;3; 0.000000, 1.228417,-0.000000;;, + 249;3; 0.000000, 1.228417,-0.000000;;; + } + } + Animation { + {Armature_Bone_011} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 1;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 2;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 3;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 4;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 5;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 6;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 7;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 8;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 9;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 10;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 11;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 12;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 13;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 14;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 15;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 16;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 17;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 18;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 19;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 20;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 21;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 22;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 23;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 24;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 25;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 26;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 27;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 28;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 29;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 30;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 31;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 32;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 33;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 34;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 35;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 36;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 37;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 38;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 39;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 40;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 41;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 42;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 43;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 44;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 45;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 46;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 47;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 48;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 49;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 50;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 51;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 52;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 53;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 54;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 55;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 56;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 57;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 58;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 59;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 60;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 61;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 62;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 63;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 64;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 65;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 66;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 67;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 68;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 69;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 70;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 71;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 72;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 73;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 74;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 75;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 76;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 77;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 78;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 79;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 80;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 81;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 82;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 83;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 84;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 85;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 86;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 87;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 88;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 89;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 90;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 91;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 92;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 93;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 94;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 95;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 96;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 97;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 98;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 99;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 100;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 101;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 102;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 103;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 104;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 105;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 106;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 107;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 108;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 109;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 110;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 111;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 112;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 113;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 114;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 115;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 116;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 117;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 118;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 119;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 120;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 121;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 122;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 123;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 124;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 125;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 126;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 127;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 128;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 129;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 130;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 131;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 132;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 133;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 134;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 135;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 136;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 137;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 138;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 139;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 140;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 141;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 142;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 143;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 144;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 145;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 146;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 147;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 148;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 149;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 150;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 151;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 152;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 153;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 154;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 155;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 156;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 157;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 158;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 159;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 160;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 161;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 162;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 163;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 164;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 165;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 166;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 167;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 168;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 169;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 170;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 171;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 172;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 173;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 174;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 175;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 176;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 177;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 178;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 179;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 180;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 181;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 182;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 183;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 184;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 185;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 186;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 187;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 188;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 189;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 190;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 191;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 192;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 193;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 194;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 195;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 196;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 197;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 198;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 199;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 200;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 201;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 202;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 203;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 204;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 205;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 206;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 207;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 208;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 209;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 210;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 211;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 212;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 213;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 214;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 215;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 216;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 217;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 218;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 219;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 220;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 221;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 222;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 223;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 224;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 225;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 226;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 227;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 228;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 229;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 230;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 231;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 232;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 233;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 234;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 235;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 236;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 237;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 238;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 239;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 240;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 241;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 242;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 243;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 244;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 245;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 246;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 247;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 248;4;-0.755773,-0.000000, 0.000000, 0.654833;;, + 249;4;-0.755773,-0.000000, 0.000000, 0.654833;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3; 0.000000, 0.826434, 0.000000;;, + 1;3; 0.000000, 0.826434, 0.000000;;, + 2;3; 0.000000, 0.826434, 0.000000;;, + 3;3; 0.000000, 0.826434, 0.000000;;, + 4;3; 0.000000, 0.826434, 0.000000;;, + 5;3; 0.000000, 0.826434, 0.000000;;, + 6;3; 0.000000, 0.826434, 0.000000;;, + 7;3; 0.000000, 0.826434, 0.000000;;, + 8;3; 0.000000, 0.826434, 0.000000;;, + 9;3; 0.000000, 0.826434, 0.000000;;, + 10;3; 0.000000, 0.826434, 0.000000;;, + 11;3; 0.000000, 0.826434, 0.000000;;, + 12;3; 0.000000, 0.826434, 0.000000;;, + 13;3; 0.000000, 0.826434, 0.000000;;, + 14;3; 0.000000, 0.826434, 0.000000;;, + 15;3; 0.000000, 0.826434, 0.000000;;, + 16;3; 0.000000, 0.826434, 0.000000;;, + 17;3; 0.000000, 0.826434, 0.000000;;, + 18;3; 0.000000, 0.826434, 0.000000;;, + 19;3; 0.000000, 0.826434, 0.000000;;, + 20;3; 0.000000, 0.826434, 0.000000;;, + 21;3; 0.000000, 0.826434, 0.000000;;, + 22;3; 0.000000, 0.826434, 0.000000;;, + 23;3; 0.000000, 0.826434, 0.000000;;, + 24;3; 0.000000, 0.826434, 0.000000;;, + 25;3; 0.000000, 0.826434, 0.000000;;, + 26;3; 0.000000, 0.826434, 0.000000;;, + 27;3; 0.000000, 0.826434, 0.000000;;, + 28;3; 0.000000, 0.826434, 0.000000;;, + 29;3; 0.000000, 0.826434, 0.000000;;, + 30;3; 0.000000, 0.826434, 0.000000;;, + 31;3; 0.000000, 0.826434, 0.000000;;, + 32;3; 0.000000, 0.826434, 0.000000;;, + 33;3; 0.000000, 0.826434, 0.000000;;, + 34;3; 0.000000, 0.826434, 0.000000;;, + 35;3; 0.000000, 0.826434, 0.000000;;, + 36;3; 0.000000, 0.826434, 0.000000;;, + 37;3; 0.000000, 0.826434, 0.000000;;, + 38;3; 0.000000, 0.826434, 0.000000;;, + 39;3; 0.000000, 0.826434, 0.000000;;, + 40;3; 0.000000, 0.826434, 0.000000;;, + 41;3; 0.000000, 0.826434, 0.000000;;, + 42;3; 0.000000, 0.826434, 0.000000;;, + 43;3; 0.000000, 0.826434, 0.000000;;, + 44;3; 0.000000, 0.826434, 0.000000;;, + 45;3; 0.000000, 0.826434, 0.000000;;, + 46;3; 0.000000, 0.826434, 0.000000;;, + 47;3; 0.000000, 0.826434, 0.000000;;, + 48;3; 0.000000, 0.826434, 0.000000;;, + 49;3; 0.000000, 0.826434, 0.000000;;, + 50;3; 0.000000, 0.826434, 0.000000;;, + 51;3; 0.000000, 0.826434, 0.000000;;, + 52;3; 0.000000, 0.826434, 0.000000;;, + 53;3; 0.000000, 0.826434, 0.000000;;, + 54;3; 0.000000, 0.826434, 0.000000;;, + 55;3; 0.000000, 0.826434, 0.000000;;, + 56;3; 0.000000, 0.826434, 0.000000;;, + 57;3; 0.000000, 0.826434, 0.000000;;, + 58;3; 0.000000, 0.826434, 0.000000;;, + 59;3; 0.000000, 0.826434, 0.000000;;, + 60;3; 0.000000, 0.826434, 0.000000;;, + 61;3; 0.000000, 0.826434, 0.000000;;, + 62;3; 0.000000, 0.826434, 0.000000;;, + 63;3; 0.000000, 0.826434, 0.000000;;, + 64;3; 0.000000, 0.826434, 0.000000;;, + 65;3; 0.000000, 0.826434, 0.000000;;, + 66;3; 0.000000, 0.826434, 0.000000;;, + 67;3; 0.000000, 0.826434, 0.000000;;, + 68;3; 0.000000, 0.826434, 0.000000;;, + 69;3; 0.000000, 0.826434, 0.000000;;, + 70;3; 0.000000, 0.826434, 0.000000;;, + 71;3; 0.000000, 0.826434, 0.000000;;, + 72;3; 0.000000, 0.826434, 0.000000;;, + 73;3; 0.000000, 0.826434, 0.000000;;, + 74;3; 0.000000, 0.826434, 0.000000;;, + 75;3; 0.000000, 0.826434, 0.000000;;, + 76;3; 0.000000, 0.826434, 0.000000;;, + 77;3; 0.000000, 0.826434, 0.000000;;, + 78;3; 0.000000, 0.826434, 0.000000;;, + 79;3; 0.000000, 0.826434, 0.000000;;, + 80;3; 0.000000, 0.826434, 0.000000;;, + 81;3; 0.000000, 0.826434, 0.000000;;, + 82;3; 0.000000, 0.826434, 0.000000;;, + 83;3; 0.000000, 0.826434, 0.000000;;, + 84;3; 0.000000, 0.826434, 0.000000;;, + 85;3; 0.000000, 0.826434, 0.000000;;, + 86;3; 0.000000, 0.826434, 0.000000;;, + 87;3; 0.000000, 0.826434, 0.000000;;, + 88;3; 0.000000, 0.826434, 0.000000;;, + 89;3; 0.000000, 0.826434, 0.000000;;, + 90;3; 0.000000, 0.826434, 0.000000;;, + 91;3; 0.000000, 0.826434, 0.000000;;, + 92;3; 0.000000, 0.826434, 0.000000;;, + 93;3; 0.000000, 0.826434, 0.000000;;, + 94;3; 0.000000, 0.826434, 0.000000;;, + 95;3; 0.000000, 0.826434, 0.000000;;, + 96;3; 0.000000, 0.826434, 0.000000;;, + 97;3; 0.000000, 0.826434, 0.000000;;, + 98;3; 0.000000, 0.826434, 0.000000;;, + 99;3; 0.000000, 0.826434, 0.000000;;, + 100;3; 0.000000, 0.826434, 0.000000;;, + 101;3; 0.000000, 0.826434, 0.000000;;, + 102;3; 0.000000, 0.826434, 0.000000;;, + 103;3; 0.000000, 0.826434, 0.000000;;, + 104;3; 0.000000, 0.826434, 0.000000;;, + 105;3; 0.000000, 0.826434, 0.000000;;, + 106;3; 0.000000, 0.826434, 0.000000;;, + 107;3; 0.000000, 0.826434, 0.000000;;, + 108;3; 0.000000, 0.826434, 0.000000;;, + 109;3; 0.000000, 0.826434, 0.000000;;, + 110;3; 0.000000, 0.826434, 0.000000;;, + 111;3; 0.000000, 0.826434, 0.000000;;, + 112;3; 0.000000, 0.826434, 0.000000;;, + 113;3; 0.000000, 0.826434, 0.000000;;, + 114;3; 0.000000, 0.826434, 0.000000;;, + 115;3; 0.000000, 0.826434, 0.000000;;, + 116;3; 0.000000, 0.826434, 0.000000;;, + 117;3; 0.000000, 0.826434, 0.000000;;, + 118;3; 0.000000, 0.826434, 0.000000;;, + 119;3; 0.000000, 0.826434, 0.000000;;, + 120;3; 0.000000, 0.826434, 0.000000;;, + 121;3; 0.000000, 0.826434, 0.000000;;, + 122;3; 0.000000, 0.826434, 0.000000;;, + 123;3; 0.000000, 0.826434, 0.000000;;, + 124;3; 0.000000, 0.826434, 0.000000;;, + 125;3; 0.000000, 0.826434, 0.000000;;, + 126;3; 0.000000, 0.826434, 0.000000;;, + 127;3; 0.000000, 0.826434, 0.000000;;, + 128;3; 0.000000, 0.826434, 0.000000;;, + 129;3; 0.000000, 0.826434, 0.000000;;, + 130;3; 0.000000, 0.826434, 0.000000;;, + 131;3; 0.000000, 0.826434, 0.000000;;, + 132;3; 0.000000, 0.826434, 0.000000;;, + 133;3; 0.000000, 0.826434, 0.000000;;, + 134;3; 0.000000, 0.826434, 0.000000;;, + 135;3; 0.000000, 0.826434, 0.000000;;, + 136;3; 0.000000, 0.826434, 0.000000;;, + 137;3; 0.000000, 0.826434, 0.000000;;, + 138;3; 0.000000, 0.826434, 0.000000;;, + 139;3; 0.000000, 0.826434, 0.000000;;, + 140;3; 0.000000, 0.826434, 0.000000;;, + 141;3; 0.000000, 0.826434, 0.000000;;, + 142;3; 0.000000, 0.826434, 0.000000;;, + 143;3; 0.000000, 0.826434, 0.000000;;, + 144;3; 0.000000, 0.826434, 0.000000;;, + 145;3; 0.000000, 0.826434, 0.000000;;, + 146;3; 0.000000, 0.826434, 0.000000;;, + 147;3; 0.000000, 0.826434, 0.000000;;, + 148;3; 0.000000, 0.826434, 0.000000;;, + 149;3; 0.000000, 0.826434, 0.000000;;, + 150;3; 0.000000, 0.826434, 0.000000;;, + 151;3; 0.000000, 0.826434, 0.000000;;, + 152;3; 0.000000, 0.826434, 0.000000;;, + 153;3; 0.000000, 0.826434, 0.000000;;, + 154;3; 0.000000, 0.826434, 0.000000;;, + 155;3; 0.000000, 0.826434, 0.000000;;, + 156;3; 0.000000, 0.826434, 0.000000;;, + 157;3; 0.000000, 0.826434, 0.000000;;, + 158;3; 0.000000, 0.826434, 0.000000;;, + 159;3; 0.000000, 0.826434, 0.000000;;, + 160;3; 0.000000, 0.826434, 0.000000;;, + 161;3; 0.000000, 0.826434, 0.000000;;, + 162;3; 0.000000, 0.826434, 0.000000;;, + 163;3; 0.000000, 0.826434, 0.000000;;, + 164;3; 0.000000, 0.826434, 0.000000;;, + 165;3; 0.000000, 0.826434, 0.000000;;, + 166;3; 0.000000, 0.826434, 0.000000;;, + 167;3; 0.000000, 0.826434, 0.000000;;, + 168;3; 0.000000, 0.826434, 0.000000;;, + 169;3; 0.000000, 0.826434, 0.000000;;, + 170;3; 0.000000, 0.826434, 0.000000;;, + 171;3; 0.000000, 0.826434, 0.000000;;, + 172;3; 0.000000, 0.826434, 0.000000;;, + 173;3; 0.000000, 0.826434, 0.000000;;, + 174;3; 0.000000, 0.826434, 0.000000;;, + 175;3; 0.000000, 0.826434, 0.000000;;, + 176;3; 0.000000, 0.826434, 0.000000;;, + 177;3; 0.000000, 0.826434, 0.000000;;, + 178;3; 0.000000, 0.826434, 0.000000;;, + 179;3; 0.000000, 0.826434, 0.000000;;, + 180;3; 0.000000, 0.826434, 0.000000;;, + 181;3; 0.000000, 0.826434, 0.000000;;, + 182;3; 0.000000, 0.826434, 0.000000;;, + 183;3; 0.000000, 0.826434, 0.000000;;, + 184;3; 0.000000, 0.826434, 0.000000;;, + 185;3; 0.000000, 0.826434, 0.000000;;, + 186;3;-0.000000, 0.826434,-0.000000;;, + 187;3;-0.000000, 0.826434,-0.000000;;, + 188;3;-0.000000, 0.826434, 0.000000;;, + 189;3;-0.000000, 0.826434, 0.000000;;, + 190;3;-0.000000, 0.826434,-0.000000;;, + 191;3; 0.000000, 0.826434, 0.000000;;, + 192;3; 0.000000, 0.826434, 0.000000;;, + 193;3; 0.000000, 0.826434, 0.000000;;, + 194;3; 0.000000, 0.826434,-0.000000;;, + 195;3; 0.000000, 0.826434,-0.000000;;, + 196;3; 0.000000, 0.826434, 0.000000;;, + 197;3; 0.000000, 0.826434,-0.000000;;, + 198;3; 0.000000, 0.826434,-0.000000;;, + 199;3; 0.000000, 0.826434, 0.000000;;, + 200;3; 0.000000, 0.826434, 0.000000;;, + 201;3; 0.000000, 0.826434, 0.000000;;, + 202;3; 0.000000, 0.826434, 0.000000;;, + 203;3; 0.000000, 0.826434, 0.000000;;, + 204;3; 0.000000, 0.826434, 0.000000;;, + 205;3; 0.000000, 0.826434, 0.000000;;, + 206;3; 0.000000, 0.826434, 0.000000;;, + 207;3; 0.000000, 0.826434, 0.000000;;, + 208;3; 0.000000, 0.826434, 0.000000;;, + 209;3; 0.000000, 0.826434, 0.000000;;, + 210;3;-0.000000, 0.826434, 0.000000;;, + 211;3;-0.000000, 0.826434, 0.000000;;, + 212;3; 0.000000, 0.826434,-0.000000;;, + 213;3; 0.000000, 0.826434, 0.000000;;, + 214;3; 0.000000, 0.826434, 0.000000;;, + 215;3;-0.000000, 0.826434,-0.000000;;, + 216;3;-0.000000, 0.826434,-0.000000;;, + 217;3;-0.000000, 0.826434,-0.000000;;, + 218;3;-0.000000, 0.826434, 0.000000;;, + 219;3;-0.000000, 0.826434,-0.000000;;, + 220;3;-0.000000, 0.826434, 0.000000;;, + 221;3; 0.000000, 0.826434, 0.000000;;, + 222;3;-0.000000, 0.826434, 0.000000;;, + 223;3; 0.000000, 0.826434,-0.000000;;, + 224;3; 0.000000, 0.826434,-0.000000;;, + 225;3; 0.000000, 0.826434, 0.000000;;, + 226;3; 0.000000, 0.826434, 0.000000;;, + 227;3; 0.000000, 0.826434, 0.000000;;, + 228;3;-0.000000, 0.826434, 0.000000;;, + 229;3; 0.000000, 0.826434, 0.000000;;, + 230;3; 0.000000, 0.826434, 0.000000;;, + 231;3; 0.000000, 0.826434,-0.000000;;, + 232;3;-0.000000, 0.826434,-0.000000;;, + 233;3; 0.000000, 0.826434, 0.000000;;, + 234;3; 0.000000, 0.826434, 0.000000;;, + 235;3; 0.000000, 0.826434, 0.000000;;, + 236;3; 0.000000, 0.826434, 0.000000;;, + 237;3; 0.000000, 0.826434, 0.000000;;, + 238;3; 0.000000, 0.826434, 0.000000;;, + 239;3; 0.000000, 0.826434, 0.000000;;, + 240;3; 0.000000, 0.826434, 0.000000;;, + 241;3; 0.000000, 0.826434, 0.000000;;, + 242;3; 0.000000, 0.826434, 0.000000;;, + 243;3; 0.000000, 0.826434, 0.000000;;, + 244;3; 0.000000, 0.826434, 0.000000;;, + 245;3; 0.000000, 0.826434, 0.000000;;, + 246;3; 0.000000, 0.826434, 0.000000;;, + 247;3; 0.000000, 0.826434, 0.000000;;, + 248;3; 0.000000, 0.826434, 0.000000;;, + 249;3; 0.000000, 0.826434, 0.000000;;; + } + } + Animation { + {Armature_Bone_031} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 1;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 2;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 3;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 4;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 5;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 6;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 7;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 8;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 9;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 10;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 11;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 12;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 13;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 14;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 15;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 16;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 17;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 18;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 19;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 20;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 21;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 22;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 23;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 24;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 25;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 26;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 27;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 28;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 29;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 30;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 31;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 32;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 33;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 34;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 35;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 36;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 37;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 38;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 39;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 40;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 41;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 42;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 43;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 44;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 45;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 46;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 47;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 48;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 49;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 50;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 51;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 52;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 53;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 54;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 55;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 56;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 57;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 58;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 59;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 60;4;-0.968689, 0.113446,-0.025742,-0.219325;;, + 61;4;-0.968710, 0.113171,-0.025846,-0.219310;;, + 62;4;-0.968747, 0.112711,-0.026021,-0.219286;;, + 63;4;-0.968798, 0.112066,-0.026266,-0.219251;;, + 64;4;-0.968865, 0.111234,-0.026582,-0.219207;;, + 65;4;-0.968946, 0.110217,-0.026969,-0.219153;;, + 66;4;-0.969041, 0.109018,-0.027425,-0.219090;;, + 67;4;-0.969151, 0.107638,-0.027949,-0.219017;;, + 68;4;-0.969275, 0.106084,-0.028540,-0.218934;;, + 69;4;-0.969412, 0.104361,-0.029195,-0.218843;;, + 70;4;-0.969562, 0.102476,-0.029911,-0.218743;;, + 71;4;-0.969724, 0.100440,-0.030685,-0.218635;;, + 72;4;-0.969897, 0.098263,-0.031512,-0.218519;;, + 73;4;-0.970081, 0.095959,-0.032388,-0.218397;;, + 74;4;-0.970273, 0.093541,-0.033307,-0.218268;;, + 75;4;-0.970474, 0.091025,-0.034263,-0.218135;;, + 76;4;-0.970680, 0.088430,-0.035250,-0.217997;;, + 77;4;-0.970892, 0.085774,-0.036259,-0.217856;;, + 78;4;-0.971107, 0.083077,-0.037284,-0.217713;;, + 79;4;-0.971323, 0.080360,-0.038317,-0.217569;;, + 80;4;-0.971539, 0.077642,-0.039350,-0.217425;;, + 81;4;-0.971754, 0.074945,-0.040376,-0.217282;;, + 82;4;-0.971966, 0.072289,-0.041385,-0.217141;;, + 83;4;-0.972172, 0.069694,-0.042371,-0.217003;;, + 84;4;-0.972373, 0.067179,-0.043327,-0.216870;;, + 85;4;-0.972565, 0.064761,-0.044246,-0.216741;;, + 86;4;-0.972748, 0.062456,-0.045122,-0.216619;;, + 87;4;-0.972922, 0.060279,-0.045950,-0.216504;;, + 88;4;-0.973084, 0.058243,-0.046724,-0.216396;;, + 89;4;-0.973234, 0.056358,-0.047440,-0.216296;;, + 90;4;-0.973371, 0.054635,-0.048095,-0.216204;;, + 91;4;-0.973495, 0.053081,-0.048686,-0.216122;;, + 92;4;-0.973605, 0.051701,-0.049210,-0.216049;;, + 93;4;-0.973700, 0.050502,-0.049666,-0.215985;;, + 94;4;-0.973781, 0.049485,-0.050053,-0.215931;;, + 95;4;-0.973848, 0.048654,-0.050369,-0.215887;;, + 96;4;-0.973899, 0.048008,-0.050614,-0.215853;;, + 97;4;-0.973936, 0.047548,-0.050789,-0.215828;;, + 98;4;-0.973957, 0.047274,-0.050893,-0.215814;;, + 99;4;-0.973965, 0.047183,-0.050928,-0.215809;;, + 100;4;-0.973713, 0.048686,-0.050347,-0.215860;;, + 101;4;-0.972929, 0.053356,-0.048543,-0.216018;;, + 102;4;-0.971599, 0.061289,-0.045479,-0.216286;;, + 103;4;-0.969755, 0.072283,-0.041231,-0.216658;;, + 104;4;-0.967498, 0.085743,-0.036032,-0.217114;;, + 105;4;-0.964987, 0.100717,-0.030247,-0.217621;;, + 106;4;-0.962407, 0.116102,-0.024304,-0.218141;;, + 107;4;-0.959925, 0.130904,-0.018586,-0.218642;;, + 108;4;-0.957659, 0.144416,-0.013367,-0.219100;;, + 109;4;-0.955677, 0.156235,-0.008801,-0.219500;;, + 110;4;-0.953850, 0.167357,-0.004285,-0.219889;;, + 111;4;-0.952025, 0.178878, 0.000792,-0.220314;;, + 112;4;-0.950203, 0.190704, 0.006297,-0.220768;;, + 113;4;-0.948381, 0.202668, 0.011995,-0.221234;;, + 114;4;-0.946559, 0.214535, 0.017557,-0.221692;;, + 115;4;-0.944735, 0.226044, 0.022617,-0.222117;;, + 116;4;-0.942906, 0.236970, 0.026859,-0.222488;;, + 117;4;-0.941072, 0.247173, 0.030086,-0.222792;;, + 118;4;-0.939233, 0.256605, 0.032231,-0.223026;;, + 119;4;-0.937389, 0.265288, 0.033326,-0.223190;;, + 120;4;-0.935346, 0.273755, 0.033008,-0.222765;;, + 121;4;-0.932935, 0.282392, 0.030802,-0.221215;;, + 122;4;-0.930228, 0.290970, 0.026717,-0.218609;;, + 123;4;-0.927360, 0.299167, 0.020963,-0.215153;;, + 124;4;-0.924527, 0.306602, 0.013995,-0.211207;;, + 125;4;-0.921951, 0.312914, 0.006471,-0.207243;;, + 126;4;-0.919827, 0.317856,-0.000898,-0.203733;;, + 127;4;-0.918283, 0.321342,-0.007510,-0.201044;;, + 128;4;-0.917369, 0.323425,-0.012968,-0.199388;;, + 129;4;-0.917073, 0.324245,-0.017079,-0.198837;;, + 130;4;-0.918327, 0.318313,-0.020774,-0.199111;;, + 131;4;-0.922102, 0.299967,-0.024984,-0.199953;;, + 132;4;-0.928243, 0.269978,-0.029587,-0.201361;;, + 133;4;-0.936279, 0.230663,-0.034362,-0.203270;;, + 134;4;-0.945392, 0.186071,-0.039003,-0.205545;;, + 135;4;-0.954516, 0.141446,-0.043170,-0.207989;;, + 136;4;-0.962588, 0.102033,-0.046570,-0.210387;;, + 137;4;-0.968783, 0.071889,-0.049021,-0.212559;;, + 138;4;-0.972629, 0.053345,-0.050464,-0.214386;;, + 139;4;-0.973965, 0.047183,-0.050928,-0.215809;;, + 140;4;-0.972992, 0.053356,-0.048543,-0.216888;;, + 141;4;-0.969829, 0.072283,-0.041231,-0.217689;;, + 142;4;-0.965034, 0.100717,-0.030247,-0.218283;;, + 143;4;-0.959939, 0.130904,-0.018586,-0.218838;;, + 144;4;-0.955677, 0.156235,-0.008801,-0.219500;;, + 145;4;-0.952025, 0.178878, 0.000792,-0.220314;;, + 146;4;-0.948381, 0.202668, 0.011995,-0.221234;;, + 147;4;-0.944735, 0.226044, 0.022617,-0.222117;;, + 148;4;-0.941072, 0.247173, 0.030086,-0.222792;;, + 149;4;-0.937389, 0.265288, 0.033326,-0.223190;;, + 150;4;-0.932935, 0.282392, 0.030802,-0.221215;;, + 151;4;-0.927360, 0.299167, 0.020963,-0.215153;;, + 152;4;-0.921951, 0.312914, 0.006471,-0.207243;;, + 153;4;-0.918283, 0.321342,-0.007510,-0.201044;;, + 154;4;-0.917073, 0.324245,-0.017079,-0.198837;;, + 155;4;-0.922126, 0.299967,-0.024984,-0.200281;;, + 156;4;-0.936359, 0.230663,-0.034362,-0.204376;;, + 157;4;-0.954639, 0.141446,-0.043170,-0.209711;;, + 158;4;-0.968887, 0.071889,-0.049021,-0.214013;;, + 159;4;-0.973965, 0.047183,-0.050928,-0.215809;;, + 160;4;-0.973992, 0.047556,-0.050899,-0.216199;;, + 161;4;-0.974015, 0.048685,-0.050806,-0.216569;;, + 162;4;-0.974030, 0.050571,-0.050634,-0.216915;;, + 163;4;-0.974033, 0.053201,-0.050370,-0.217238;;, + 164;4;-0.974017, 0.056541,-0.049997,-0.217533;;, + 165;4;-0.973979, 0.060533,-0.049499,-0.217802;;, + 166;4;-0.973912, 0.065091,-0.048859,-0.218042;;, + 167;4;-0.973808, 0.070101,-0.048063,-0.218253;;, + 168;4;-0.973664, 0.075426,-0.047098,-0.218437;;, + 169;4;-0.973472, 0.080906,-0.045955,-0.218594;;, + 170;4;-0.973229, 0.086373,-0.044631,-0.218726;;, + 171;4;-0.972932, 0.091659,-0.043124,-0.218837;;, + 172;4;-0.972579, 0.096606,-0.041440,-0.218930;;, + 173;4;-0.972170, 0.101077,-0.039588,-0.219007;;, + 174;4;-0.971707, 0.104961,-0.037580,-0.219073;;, + 175;4;-0.971192, 0.108174,-0.035430,-0.219130;;, + 176;4;-0.970628, 0.110660,-0.033153,-0.219182;;, + 177;4;-0.970019, 0.112387,-0.030764,-0.219232;;, + 178;4;-0.969369, 0.113345,-0.028278,-0.219280;;, + 179;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 180;4;-0.964552, 0.104241,-0.012007,-0.211874;;, + 181;4;-0.953551, 0.076644, 0.023948,-0.189333;;, + 182;4;-0.936127, 0.031895, 0.080694,-0.152650;;, + 183;4;-0.913594,-0.026567, 0.153964,-0.104652;;, + 184;4;-0.888228,-0.092752, 0.236381,-0.050266;;, + 185;4;-0.862959,-0.158912, 0.318435, 0.004126;;, + 186;4;-0.840710,-0.217298, 0.390655, 0.052145;;, + 187;4;-0.823731,-0.261930, 0.445758, 0.088860;;, + 188;4;-0.813301,-0.289376, 0.479598, 0.111441;;, + 189;4;-0.809839,-0.298495, 0.490830, 0.118945;;, + 190;4;-0.824998,-0.291801, 0.463471, 0.113940;;, + 191;4;-0.867871,-0.270041, 0.382764, 0.097389;;, + 192;4;-0.923392,-0.234296, 0.269351, 0.069548;;, + 193;4;-0.967550,-0.191264, 0.161977, 0.035039;;, + 194;4;-0.984895,-0.148379, 0.089247,-0.000521;;, + 195;4;-0.985239,-0.095557, 0.041995,-0.044910;;, + 196;4;-0.981508,-0.024533, 0.006385,-0.104293;;, + 197;4;-0.975540, 0.047153,-0.014883,-0.164070;;, + 198;4;-0.970524, 0.096906,-0.023826,-0.205494;;, + 199;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 200;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 201;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 202;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 203;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 204;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 205;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 206;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 207;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 208;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 209;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 210;4;-0.968760, 0.102570,-0.006639,-0.187605;;, + 211;4;-0.968980, 0.068720, 0.046858,-0.098246;;, + 212;4;-0.969263, 0.017305, 0.114978, 0.016490;;, + 213;4;-0.969484,-0.038215, 0.166924, 0.105849;;, + 214;4;-0.969562,-0.086050, 0.183354, 0.137574;;, + 215;4;-0.966365,-0.134782, 0.146925, 0.114845;;, + 216;4;-0.957361,-0.192828, 0.049986, 0.050825;;, + 217;4;-0.945799,-0.247487,-0.073062,-0.031376;;, + 218;4;-0.936794,-0.283863,-0.168450,-0.095396;;, + 219;4;-0.933597,-0.295726,-0.202241,-0.118125;;, + 220;4;-0.935776,-0.290184,-0.180994,-0.089195;;, + 221;4;-0.941912,-0.273026,-0.121039,-0.007709;;, + 222;4;-0.949791,-0.246845,-0.043761, 0.096918;;, + 223;4;-0.955928,-0.218375, 0.017004, 0.178404;;, + 224;4;-0.958106,-0.193584, 0.039627, 0.207334;;, + 225;4;-0.958210,-0.170647, 0.040411, 0.203145;;, + 226;4;-0.958524,-0.145758, 0.039601, 0.190481;;, + 227;4;-0.959046,-0.119149, 0.037193, 0.169408;;, + 228;4;-0.959766,-0.091193, 0.033250, 0.140367;;, + 229;4;-0.960661,-0.062431, 0.027922, 0.104272;;, + 230;4;-0.961694,-0.033564, 0.021457, 0.062583;;, + 231;4;-0.962817,-0.005421, 0.014200, 0.017280;;, + 232;4;-0.963971, 0.021113, 0.006571,-0.029276;;, + 233;4;-0.965094, 0.045203,-0.000975,-0.074579;;, + 234;4;-0.966127, 0.066148,-0.008008,-0.116268;;, + 235;4;-0.967022, 0.083455,-0.014156,-0.152362;;, + 236;4;-0.967741, 0.096848,-0.019140,-0.181404;;, + 237;4;-0.968264, 0.106255,-0.022779,-0.202476;;, + 238;4;-0.968578, 0.111756,-0.024977,-0.215140;;, + 239;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 240;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 241;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 242;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 243;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 244;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 245;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 246;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 247;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 248;4;-0.968681, 0.113537,-0.025707,-0.219330;;, + 249;4;-0.968681, 0.113537,-0.025707,-0.219330;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3; 0.000000, 0.586459, 0.000000;;, + 1;3; 0.000000, 0.586459, 0.000000;;, + 2;3; 0.000000, 0.586459, 0.000000;;, + 3;3; 0.000000, 0.586459, 0.000000;;, + 4;3; 0.000000, 0.586459, 0.000000;;, + 5;3; 0.000000, 0.586459, 0.000000;;, + 6;3; 0.000000, 0.586459, 0.000000;;, + 7;3; 0.000000, 0.586459, 0.000000;;, + 8;3; 0.000000, 0.586459, 0.000000;;, + 9;3; 0.000000, 0.586459, 0.000000;;, + 10;3; 0.000000, 0.586459, 0.000000;;, + 11;3; 0.000000, 0.586459, 0.000000;;, + 12;3; 0.000000, 0.586459, 0.000000;;, + 13;3; 0.000000, 0.586459, 0.000000;;, + 14;3; 0.000000, 0.586459, 0.000000;;, + 15;3; 0.000000, 0.586459, 0.000000;;, + 16;3; 0.000000, 0.586459, 0.000000;;, + 17;3; 0.000000, 0.586459, 0.000000;;, + 18;3; 0.000000, 0.586459, 0.000000;;, + 19;3; 0.000000, 0.586459, 0.000000;;, + 20;3; 0.000000, 0.586459, 0.000000;;, + 21;3; 0.000000, 0.586459, 0.000000;;, + 22;3; 0.000000, 0.586459, 0.000000;;, + 23;3; 0.000000, 0.586459, 0.000000;;, + 24;3; 0.000000, 0.586459, 0.000000;;, + 25;3; 0.000000, 0.586459, 0.000000;;, + 26;3; 0.000000, 0.586459, 0.000000;;, + 27;3; 0.000000, 0.586459, 0.000000;;, + 28;3; 0.000000, 0.586459, 0.000000;;, + 29;3; 0.000000, 0.586459, 0.000000;;, + 30;3; 0.000000, 0.586459, 0.000000;;, + 31;3; 0.000000, 0.586459, 0.000000;;, + 32;3; 0.000000, 0.586459, 0.000000;;, + 33;3; 0.000000, 0.586459, 0.000000;;, + 34;3; 0.000000, 0.586459, 0.000000;;, + 35;3; 0.000000, 0.586459, 0.000000;;, + 36;3; 0.000000, 0.586459, 0.000000;;, + 37;3; 0.000000, 0.586459, 0.000000;;, + 38;3; 0.000000, 0.586459, 0.000000;;, + 39;3; 0.000000, 0.586459, 0.000000;;, + 40;3; 0.000000, 0.586459, 0.000000;;, + 41;3; 0.000000, 0.586459, 0.000000;;, + 42;3; 0.000000, 0.586459, 0.000000;;, + 43;3; 0.000000, 0.586459, 0.000000;;, + 44;3; 0.000000, 0.586459, 0.000000;;, + 45;3; 0.000000, 0.586459, 0.000000;;, + 46;3; 0.000000, 0.586459, 0.000000;;, + 47;3; 0.000000, 0.586459, 0.000000;;, + 48;3; 0.000000, 0.586459, 0.000000;;, + 49;3; 0.000000, 0.586459, 0.000000;;, + 50;3; 0.000000, 0.586459, 0.000000;;, + 51;3; 0.000000, 0.586459, 0.000000;;, + 52;3; 0.000000, 0.586459, 0.000000;;, + 53;3; 0.000000, 0.586459, 0.000000;;, + 54;3; 0.000000, 0.586459, 0.000000;;, + 55;3; 0.000000, 0.586459, 0.000000;;, + 56;3; 0.000000, 0.586459, 0.000000;;, + 57;3; 0.000000, 0.586459, 0.000000;;, + 58;3; 0.000000, 0.586459, 0.000000;;, + 59;3; 0.000000, 0.586459, 0.000000;;, + 60;3; 0.000000, 0.586459, 0.000000;;, + 61;3; 0.000000, 0.586459, 0.000000;;, + 62;3; 0.000000, 0.586459, 0.000000;;, + 63;3; 0.000000, 0.586459, 0.000000;;, + 64;3; 0.000000, 0.586459, 0.000000;;, + 65;3; 0.000000, 0.586459, 0.000000;;, + 66;3; 0.000000, 0.586459, 0.000000;;, + 67;3; 0.000000, 0.586459, 0.000000;;, + 68;3; 0.000000, 0.586459, 0.000000;;, + 69;3; 0.000000, 0.586459, 0.000000;;, + 70;3; 0.000000, 0.586459, 0.000000;;, + 71;3; 0.000000, 0.586459, 0.000000;;, + 72;3; 0.000000, 0.586459, 0.000000;;, + 73;3; 0.000000, 0.586459, 0.000000;;, + 74;3; 0.000000, 0.586459, 0.000000;;, + 75;3; 0.000000, 0.586459, 0.000000;;, + 76;3; 0.000000, 0.586459, 0.000000;;, + 77;3; 0.000000, 0.586459, 0.000000;;, + 78;3; 0.000000, 0.586459, 0.000000;;, + 79;3; 0.000000, 0.586459, 0.000000;;, + 80;3; 0.000000, 0.586459, 0.000000;;, + 81;3; 0.000000, 0.586459, 0.000000;;, + 82;3; 0.000000, 0.586459, 0.000000;;, + 83;3; 0.000000, 0.586459, 0.000000;;, + 84;3; 0.000000, 0.586459, 0.000000;;, + 85;3; 0.000000, 0.586459, 0.000000;;, + 86;3; 0.000000, 0.586459, 0.000000;;, + 87;3; 0.000000, 0.586459, 0.000000;;, + 88;3; 0.000000, 0.586459, 0.000000;;, + 89;3; 0.000000, 0.586459, 0.000000;;, + 90;3; 0.000000, 0.586459, 0.000000;;, + 91;3; 0.000000, 0.586459, 0.000000;;, + 92;3; 0.000000, 0.586459, 0.000000;;, + 93;3; 0.000000, 0.586459, 0.000000;;, + 94;3; 0.000000, 0.586459, 0.000000;;, + 95;3; 0.000000, 0.586459, 0.000000;;, + 96;3; 0.000000, 0.586459, 0.000000;;, + 97;3; 0.000000, 0.586459, 0.000000;;, + 98;3; 0.000000, 0.586459, 0.000000;;, + 99;3; 0.000000, 0.586459, 0.000000;;, + 100;3; 0.000000, 0.586459, 0.000000;;, + 101;3; 0.000000, 0.586459, 0.000000;;, + 102;3; 0.000000, 0.586459, 0.000000;;, + 103;3; 0.000000, 0.586459, 0.000000;;, + 104;3; 0.000000, 0.586459, 0.000000;;, + 105;3; 0.000000, 0.586459, 0.000000;;, + 106;3; 0.000000, 0.586459, 0.000000;;, + 107;3; 0.000000, 0.586459, 0.000000;;, + 108;3; 0.000000, 0.586459, 0.000000;;, + 109;3; 0.000000, 0.586459, 0.000000;;, + 110;3; 0.000000, 0.586459, 0.000000;;, + 111;3; 0.000000, 0.586459, 0.000000;;, + 112;3; 0.000000, 0.586459, 0.000000;;, + 113;3; 0.000000, 0.586459, 0.000000;;, + 114;3; 0.000000, 0.586459, 0.000000;;, + 115;3; 0.000000, 0.586459, 0.000000;;, + 116;3; 0.000000, 0.586459, 0.000000;;, + 117;3; 0.000000, 0.586459, 0.000000;;, + 118;3; 0.000000, 0.586459, 0.000000;;, + 119;3; 0.000000, 0.586459, 0.000000;;, + 120;3; 0.000000, 0.586459, 0.000000;;, + 121;3; 0.000000, 0.586459, 0.000000;;, + 122;3; 0.000000, 0.586459, 0.000000;;, + 123;3; 0.000000, 0.586459, 0.000000;;, + 124;3; 0.000000, 0.586459, 0.000000;;, + 125;3; 0.000000, 0.586459, 0.000000;;, + 126;3; 0.000000, 0.586459, 0.000000;;, + 127;3; 0.000000, 0.586459, 0.000000;;, + 128;3; 0.000000, 0.586459, 0.000000;;, + 129;3; 0.000000, 0.586459, 0.000000;;, + 130;3; 0.000000, 0.586459, 0.000000;;, + 131;3; 0.000000, 0.586459, 0.000000;;, + 132;3; 0.000000, 0.586459, 0.000000;;, + 133;3; 0.000000, 0.586459, 0.000000;;, + 134;3; 0.000000, 0.586459, 0.000000;;, + 135;3; 0.000000, 0.586459, 0.000000;;, + 136;3; 0.000000, 0.586459, 0.000000;;, + 137;3; 0.000000, 0.586459, 0.000000;;, + 138;3; 0.000000, 0.586459, 0.000000;;, + 139;3; 0.000000, 0.586459, 0.000000;;, + 140;3; 0.000000, 0.586459, 0.000000;;, + 141;3; 0.000000, 0.586459, 0.000000;;, + 142;3; 0.000000, 0.586459, 0.000000;;, + 143;3; 0.000000, 0.586459, 0.000000;;, + 144;3; 0.000000, 0.586459, 0.000000;;, + 145;3; 0.000000, 0.586459, 0.000000;;, + 146;3; 0.000000, 0.586459, 0.000000;;, + 147;3; 0.000000, 0.586459, 0.000000;;, + 148;3; 0.000000, 0.586459, 0.000000;;, + 149;3; 0.000000, 0.586459, 0.000000;;, + 150;3; 0.000000, 0.586459, 0.000000;;, + 151;3; 0.000000, 0.586459, 0.000000;;, + 152;3; 0.000000, 0.586459, 0.000000;;, + 153;3; 0.000000, 0.586459, 0.000000;;, + 154;3; 0.000000, 0.586459, 0.000000;;, + 155;3; 0.000000, 0.586459, 0.000000;;, + 156;3; 0.000000, 0.586459, 0.000000;;, + 157;3; 0.000000, 0.586459, 0.000000;;, + 158;3; 0.000000, 0.586459, 0.000000;;, + 159;3; 0.000000, 0.586459, 0.000000;;, + 160;3; 0.000000, 0.586459, 0.000000;;, + 161;3; 0.000000, 0.586459, 0.000000;;, + 162;3; 0.000000, 0.586459, 0.000000;;, + 163;3; 0.000000, 0.586459, 0.000000;;, + 164;3; 0.000000, 0.586459, 0.000000;;, + 165;3; 0.000000, 0.586459, 0.000000;;, + 166;3; 0.000000, 0.586459, 0.000000;;, + 167;3; 0.000000, 0.586459, 0.000000;;, + 168;3; 0.000000, 0.586459, 0.000000;;, + 169;3; 0.000000, 0.586459, 0.000000;;, + 170;3; 0.000000, 0.586459, 0.000000;;, + 171;3; 0.000000, 0.586459, 0.000000;;, + 172;3; 0.000000, 0.586459, 0.000000;;, + 173;3; 0.000000, 0.586459, 0.000000;;, + 174;3; 0.000000, 0.586459, 0.000000;;, + 175;3; 0.000000, 0.586459, 0.000000;;, + 176;3; 0.000000, 0.586459, 0.000000;;, + 177;3; 0.000000, 0.586459, 0.000000;;, + 178;3; 0.000000, 0.586459, 0.000000;;, + 179;3; 0.000000, 0.586459, 0.000000;;, + 180;3;-0.000000, 0.586460, 0.000000;;, + 181;3; 0.000000, 0.586459, 0.000000;;, + 182;3; 0.000000, 0.586460, 0.000000;;, + 183;3;-0.000000, 0.586459,-0.000000;;, + 184;3;-0.000000, 0.586459, 0.000000;;, + 185;3; 0.000000, 0.586460,-0.000000;;, + 186;3;-0.000000, 0.586460,-0.000000;;, + 187;3;-0.000000, 0.586460, 0.000000;;, + 188;3; 0.000000, 0.586460, 0.000000;;, + 189;3;-0.000000, 0.586459, 0.000000;;, + 190;3; 0.000000, 0.586460, 0.000000;;, + 191;3; 0.000000, 0.586460,-0.000000;;, + 192;3;-0.000000, 0.586460,-0.000000;;, + 193;3; 0.000000, 0.586460,-0.000000;;, + 194;3; 0.000000, 0.586460,-0.000000;;, + 195;3;-0.000000, 0.586459,-0.000000;;, + 196;3;-0.000000, 0.586459,-0.000000;;, + 197;3; 0.000000, 0.586460, 0.000000;;, + 198;3;-0.000000, 0.586459, 0.000000;;, + 199;3; 0.000000, 0.586459, 0.000000;;, + 200;3; 0.000000, 0.586459, 0.000000;;, + 201;3; 0.000000, 0.586459, 0.000000;;, + 202;3; 0.000000, 0.586459, 0.000000;;, + 203;3; 0.000000, 0.586459, 0.000000;;, + 204;3; 0.000000, 0.586459, 0.000000;;, + 205;3; 0.000000, 0.586459, 0.000000;;, + 206;3; 0.000000, 0.586459, 0.000000;;, + 207;3; 0.000000, 0.586459, 0.000000;;, + 208;3; 0.000000, 0.586459, 0.000000;;, + 209;3; 0.000000, 0.586459, 0.000000;;, + 210;3; 0.000000, 0.586459,-0.000000;;, + 211;3; 0.000000, 0.586459,-0.000000;;, + 212;3; 0.000000, 0.586460, 0.000000;;, + 213;3; 0.000000, 0.586459, 0.000000;;, + 214;3;-0.000000, 0.586459,-0.000000;;, + 215;3; 0.000000, 0.586459,-0.000000;;, + 216;3; 0.000000, 0.586460,-0.000000;;, + 217;3; 0.000000, 0.586460, 0.000000;;, + 218;3; 0.000000, 0.586460, 0.000000;;, + 219;3; 0.000000, 0.586460, 0.000000;;, + 220;3; 0.000000, 0.586460, 0.000000;;, + 221;3; 0.000000, 0.586459,-0.000000;;, + 222;3; 0.000000, 0.586460,-0.000000;;, + 223;3;-0.000000, 0.586460,-0.000000;;, + 224;3;-0.000000, 0.586459, 0.000000;;, + 225;3;-0.000000, 0.586459,-0.000000;;, + 226;3; 0.000000, 0.586459,-0.000000;;, + 227;3; 0.000000, 0.586460,-0.000000;;, + 228;3; 0.000000, 0.586460,-0.000000;;, + 229;3; 0.000000, 0.586459,-0.000000;;, + 230;3; 0.000000, 0.586459,-0.000000;;, + 231;3;-0.000000, 0.586459,-0.000000;;, + 232;3;-0.000000, 0.586459,-0.000000;;, + 233;3; 0.000000, 0.586459,-0.000000;;, + 234;3;-0.000000, 0.586459, 0.000000;;, + 235;3;-0.000000, 0.586459,-0.000000;;, + 236;3;-0.000000, 0.586459,-0.000000;;, + 237;3; 0.000000, 0.586460,-0.000000;;, + 238;3; 0.000000, 0.586459,-0.000000;;, + 239;3; 0.000000, 0.586459, 0.000000;;, + 240;3; 0.000000, 0.586459, 0.000000;;, + 241;3; 0.000000, 0.586459, 0.000000;;, + 242;3; 0.000000, 0.586459, 0.000000;;, + 243;3; 0.000000, 0.586459, 0.000000;;, + 244;3; 0.000000, 0.586459, 0.000000;;, + 245;3; 0.000000, 0.586459, 0.000000;;, + 246;3; 0.000000, 0.586459, 0.000000;;, + 247;3; 0.000000, 0.586459, 0.000000;;, + 248;3; 0.000000, 0.586459, 0.000000;;, + 249;3; 0.000000, 0.586459, 0.000000;;; + } + } + Animation { + {Armature_Bone_035} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 1;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 2;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 3;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 4;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 5;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 6;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 7;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 8;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 9;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 10;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 11;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 12;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 13;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 14;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 15;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 16;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 17;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 18;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 19;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 20;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 21;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 22;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 23;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 24;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 25;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 26;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 27;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 28;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 29;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 30;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 31;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 32;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 33;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 34;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 35;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 36;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 37;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 38;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 39;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 40;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 41;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 42;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 43;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 44;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 45;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 46;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 47;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 48;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 49;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 50;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 51;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 52;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 53;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 54;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 55;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 56;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 57;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 58;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 59;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 60;4;-0.976348,-0.216142, 0.000107,-0.000002;;, + 61;4;-0.976413,-0.215661, 0.000429,-0.000007;;, + 62;4;-0.976521,-0.214857, 0.000968,-0.000015;;, + 63;4;-0.976672,-0.213728, 0.001725,-0.000026;;, + 64;4;-0.976868,-0.212273, 0.002701,-0.000041;;, + 65;4;-0.977107,-0.210494, 0.003893,-0.000060;;, + 66;4;-0.977388,-0.208396, 0.005300,-0.000081;;, + 67;4;-0.977712,-0.205983, 0.006918,-0.000106;;, + 68;4;-0.978078,-0.203264, 0.008741,-0.000134;;, + 69;4;-0.978482,-0.200249, 0.010763,-0.000165;;, + 70;4;-0.978925,-0.196952, 0.012973,-0.000199;;, + 71;4;-0.979404,-0.193390, 0.015361,-0.000235;;, + 72;4;-0.979915,-0.189581, 0.017915,-0.000275;;, + 73;4;-0.980457,-0.185549, 0.020618,-0.000316;;, + 74;4;-0.981025,-0.181319, 0.023454,-0.000359;;, + 75;4;-0.981616,-0.176919, 0.026404,-0.000405;;, + 76;4;-0.982225,-0.172379, 0.029448,-0.000451;;, + 77;4;-0.982849,-0.167733, 0.032563,-0.000499;;, + 78;4;-0.983483,-0.163015, 0.035727,-0.000548;;, + 79;4;-0.984121,-0.158260, 0.038915,-0.000596;;, + 80;4;-0.984760,-0.153505, 0.042102,-0.000645;;, + 81;4;-0.985394,-0.148787, 0.045266,-0.000694;;, + 82;4;-0.986017,-0.144141, 0.048381,-0.000742;;, + 83;4;-0.986627,-0.139601, 0.051425,-0.000788;;, + 84;4;-0.987218,-0.135201, 0.054375,-0.000833;;, + 85;4;-0.987786,-0.130971, 0.057211,-0.000877;;, + 86;4;-0.988328,-0.126939, 0.059915,-0.000918;;, + 87;4;-0.988839,-0.123130, 0.062468,-0.000957;;, + 88;4;-0.989318,-0.119568, 0.064856,-0.000994;;, + 89;4;-0.989760,-0.116271, 0.067067,-0.001028;;, + 90;4;-0.990165,-0.113257, 0.069088,-0.001059;;, + 91;4;-0.990530,-0.110537, 0.070911,-0.001087;;, + 92;4;-0.990854,-0.108124, 0.072529,-0.001112;;, + 93;4;-0.991136,-0.106026, 0.073936,-0.001133;;, + 94;4;-0.991375,-0.104247, 0.075128,-0.001151;;, + 95;4;-0.991570,-0.102792, 0.076104,-0.001166;;, + 96;4;-0.991722,-0.101663, 0.076861,-0.001178;;, + 97;4;-0.991830,-0.100859, 0.077400,-0.001186;;, + 98;4;-0.991895,-0.100378, 0.077722,-0.001191;;, + 99;4;-0.991916,-0.100219, 0.077829,-0.001193;;, + 100;4;-0.991227,-0.102470, 0.076264,-0.001169;;, + 101;4;-0.989087,-0.109462, 0.071403,-0.001094;;, + 102;4;-0.985451,-0.121340, 0.063145,-0.000968;;, + 103;4;-0.980412,-0.137801, 0.051700,-0.000792;;, + 104;4;-0.974244,-0.157954, 0.037689,-0.000578;;, + 105;4;-0.967381,-0.180374, 0.022101,-0.000339;;, + 106;4;-0.960330,-0.203409, 0.006087,-0.000093;;, + 107;4;-0.953546,-0.225572,-0.009322, 0.000143;;, + 108;4;-0.947354,-0.245802,-0.023387, 0.000358;;, + 109;4;-0.941937,-0.263499,-0.035691, 0.000547;;, + 110;4;-0.936521,-0.281196,-0.047994, 0.000736;;, + 111;4;-0.930328,-0.301426,-0.062059, 0.000951;;, + 112;4;-0.923544,-0.323589,-0.077468, 0.001187;;, + 113;4;-0.916494,-0.346624,-0.093483, 0.001433;;, + 114;4;-0.909631,-0.369044,-0.109071, 0.001672;;, + 115;4;-0.903462,-0.389197,-0.123082, 0.001886;;, + 116;4;-0.898424,-0.405658,-0.134527, 0.002062;;, + 117;4;-0.894788,-0.417536,-0.142785, 0.002188;;, + 118;4;-0.892648,-0.424528,-0.147646, 0.002263;;, + 119;4;-0.891959,-0.426779,-0.149211, 0.002287;;, + 120;4;-0.892648,-0.424528,-0.147646, 0.002263;;, + 121;4;-0.894788,-0.417536,-0.142785, 0.002188;;, + 122;4;-0.898424,-0.405658,-0.134527, 0.002062;;, + 123;4;-0.903462,-0.389197,-0.123082, 0.001886;;, + 124;4;-0.909631,-0.369044,-0.109071, 0.001672;;, + 125;4;-0.916494,-0.346624,-0.093483, 0.001433;;, + 126;4;-0.923544,-0.323589,-0.077468, 0.001187;;, + 127;4;-0.930328,-0.301426,-0.062059, 0.000951;;, + 128;4;-0.936521,-0.281196,-0.047994, 0.000736;;, + 129;4;-0.941937,-0.263499,-0.035691, 0.000547;;, + 130;4;-0.947354,-0.245802,-0.023387, 0.000358;;, + 131;4;-0.953547,-0.225572,-0.009322, 0.000143;;, + 132;4;-0.960330,-0.203409, 0.006087,-0.000093;;, + 133;4;-0.967381,-0.180374, 0.022101,-0.000339;;, + 134;4;-0.974244,-0.157954, 0.037689,-0.000578;;, + 135;4;-0.980412,-0.137801, 0.051700,-0.000792;;, + 136;4;-0.985451,-0.121340, 0.063145,-0.000968;;, + 137;4;-0.989087,-0.109462, 0.071403,-0.001094;;, + 138;4;-0.991227,-0.102470, 0.076264,-0.001169;;, + 139;4;-0.991916,-0.100219, 0.077829,-0.001193;;, + 140;4;-0.989087,-0.109462, 0.071403,-0.001094;;, + 141;4;-0.980412,-0.137801, 0.051700,-0.000792;;, + 142;4;-0.967381,-0.180374, 0.022101,-0.000339;;, + 143;4;-0.953546,-0.225572,-0.009322, 0.000143;;, + 144;4;-0.941937,-0.263499,-0.035691, 0.000547;;, + 145;4;-0.930328,-0.301426,-0.062059, 0.000951;;, + 146;4;-0.916494,-0.346624,-0.093483, 0.001433;;, + 147;4;-0.903462,-0.389197,-0.123082, 0.001886;;, + 148;4;-0.894788,-0.417536,-0.142785, 0.002188;;, + 149;4;-0.891959,-0.426779,-0.149211, 0.002287;;, + 150;4;-0.894788,-0.417536,-0.142785, 0.002188;;, + 151;4;-0.903462,-0.389197,-0.123082, 0.001886;;, + 152;4;-0.916494,-0.346624,-0.093483, 0.001433;;, + 153;4;-0.930328,-0.301426,-0.062059, 0.000951;;, + 154;4;-0.941937,-0.263499,-0.035691, 0.000547;;, + 155;4;-0.953547,-0.225572,-0.009322, 0.000143;;, + 156;4;-0.967381,-0.180374, 0.022101,-0.000339;;, + 157;4;-0.980412,-0.137801, 0.051700,-0.000792;;, + 158;4;-0.989087,-0.109462, 0.071403,-0.001094;;, + 159;4;-0.991916,-0.100219, 0.077829,-0.001193;;, + 160;4;-0.991830,-0.100859, 0.077400,-0.001186;;, + 161;4;-0.991570,-0.102792, 0.076104,-0.001166;;, + 162;4;-0.991136,-0.106026, 0.073936,-0.001133;;, + 163;4;-0.990530,-0.110537, 0.070911,-0.001087;;, + 164;4;-0.989760,-0.116271, 0.067067,-0.001028;;, + 165;4;-0.988839,-0.123130, 0.062468,-0.000957;;, + 166;4;-0.987786,-0.130971, 0.057211,-0.000877;;, + 167;4;-0.986627,-0.139601, 0.051425,-0.000788;;, + 168;4;-0.985394,-0.148787, 0.045266,-0.000694;;, + 169;4;-0.984121,-0.158260, 0.038915,-0.000596;;, + 170;4;-0.982849,-0.167733, 0.032563,-0.000499;;, + 171;4;-0.981616,-0.176919, 0.026404,-0.000405;;, + 172;4;-0.980456,-0.185549, 0.020618,-0.000316;;, + 173;4;-0.979404,-0.193390, 0.015361,-0.000235;;, + 174;4;-0.978482,-0.200249, 0.010763,-0.000165;;, + 175;4;-0.977712,-0.205983, 0.006918,-0.000106;;, + 176;4;-0.977107,-0.210494, 0.003893,-0.000060;;, + 177;4;-0.976672,-0.213728, 0.001725,-0.000026;;, + 178;4;-0.976413,-0.215661, 0.000429,-0.000007;;, + 179;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 180;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 181;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 182;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 183;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 184;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 185;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 186;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 187;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 188;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 189;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 190;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 191;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 192;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 193;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 194;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 195;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 196;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 197;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 198;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 199;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 200;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 201;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 202;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 203;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 204;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 205;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 206;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 207;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 208;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 209;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 210;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 211;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 212;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 213;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 214;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 215;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 216;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 217;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 218;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 219;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 220;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 221;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 222;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 223;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 224;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 225;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 226;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 227;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 228;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 229;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 230;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 231;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 232;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 233;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 234;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 235;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 236;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 237;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 238;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 239;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 240;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 241;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 242;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 243;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 244;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 245;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 246;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 247;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 248;4;-0.976327,-0.216301,-0.000000,-0.000000;;, + 249;4;-0.976327,-0.216301,-0.000000,-0.000000;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3; 0.000000, 1.279916, 0.000000;;, + 1;3; 0.000000, 1.279916, 0.000000;;, + 2;3; 0.000000, 1.279916, 0.000000;;, + 3;3; 0.000000, 1.279916, 0.000000;;, + 4;3; 0.000000, 1.279916, 0.000000;;, + 5;3; 0.000000, 1.279916, 0.000000;;, + 6;3; 0.000000, 1.279916, 0.000000;;, + 7;3; 0.000000, 1.279916, 0.000000;;, + 8;3; 0.000000, 1.279916, 0.000000;;, + 9;3; 0.000000, 1.279916, 0.000000;;, + 10;3; 0.000000, 1.279916, 0.000000;;, + 11;3; 0.000000, 1.279916, 0.000000;;, + 12;3; 0.000000, 1.279916, 0.000000;;, + 13;3; 0.000000, 1.279916, 0.000000;;, + 14;3; 0.000000, 1.279916, 0.000000;;, + 15;3; 0.000000, 1.279916, 0.000000;;, + 16;3; 0.000000, 1.279916, 0.000000;;, + 17;3; 0.000000, 1.279916, 0.000000;;, + 18;3; 0.000000, 1.279916, 0.000000;;, + 19;3; 0.000000, 1.279916, 0.000000;;, + 20;3; 0.000000, 1.279916, 0.000000;;, + 21;3; 0.000000, 1.279916, 0.000000;;, + 22;3; 0.000000, 1.279916, 0.000000;;, + 23;3; 0.000000, 1.279916, 0.000000;;, + 24;3; 0.000000, 1.279916, 0.000000;;, + 25;3; 0.000000, 1.279916, 0.000000;;, + 26;3; 0.000000, 1.279916, 0.000000;;, + 27;3; 0.000000, 1.279916, 0.000000;;, + 28;3; 0.000000, 1.279916, 0.000000;;, + 29;3; 0.000000, 1.279916, 0.000000;;, + 30;3; 0.000000, 1.279916, 0.000000;;, + 31;3; 0.000000, 1.279916, 0.000000;;, + 32;3; 0.000000, 1.279916, 0.000000;;, + 33;3; 0.000000, 1.279916, 0.000000;;, + 34;3; 0.000000, 1.279916, 0.000000;;, + 35;3; 0.000000, 1.279916, 0.000000;;, + 36;3; 0.000000, 1.279916, 0.000000;;, + 37;3; 0.000000, 1.279916, 0.000000;;, + 38;3; 0.000000, 1.279916, 0.000000;;, + 39;3; 0.000000, 1.279916, 0.000000;;, + 40;3; 0.000000, 1.279916, 0.000000;;, + 41;3; 0.000000, 1.279916, 0.000000;;, + 42;3; 0.000000, 1.279916, 0.000000;;, + 43;3; 0.000000, 1.279916, 0.000000;;, + 44;3; 0.000000, 1.279916, 0.000000;;, + 45;3; 0.000000, 1.279916, 0.000000;;, + 46;3; 0.000000, 1.279916, 0.000000;;, + 47;3; 0.000000, 1.279916, 0.000000;;, + 48;3; 0.000000, 1.279916, 0.000000;;, + 49;3; 0.000000, 1.279916, 0.000000;;, + 50;3; 0.000000, 1.279916, 0.000000;;, + 51;3; 0.000000, 1.279916, 0.000000;;, + 52;3; 0.000000, 1.279916, 0.000000;;, + 53;3; 0.000000, 1.279916, 0.000000;;, + 54;3; 0.000000, 1.279916, 0.000000;;, + 55;3; 0.000000, 1.279916, 0.000000;;, + 56;3; 0.000000, 1.279916, 0.000000;;, + 57;3; 0.000000, 1.279916, 0.000000;;, + 58;3; 0.000000, 1.279916, 0.000000;;, + 59;3; 0.000000, 1.279916, 0.000000;;, + 60;3;-0.000000, 1.279916, 0.000000;;, + 61;3; 0.000000, 1.279916, 0.000000;;, + 62;3; 0.000000, 1.279915,-0.000000;;, + 63;3; 0.000000, 1.279916,-0.000000;;, + 64;3; 0.000000, 1.279916, 0.000000;;, + 65;3;-0.000000, 1.279916,-0.000000;;, + 66;3;-0.000000, 1.279916,-0.000000;;, + 67;3; 0.000000, 1.279916,-0.000000;;, + 68;3;-0.000000, 1.279916,-0.000000;;, + 69;3; 0.000000, 1.279916, 0.000000;;, + 70;3; 0.000000, 1.279916,-0.000000;;, + 71;3; 0.000000, 1.279916, 0.000000;;, + 72;3;-0.000000, 1.279916,-0.000000;;, + 73;3;-0.000000, 1.279916, 0.000000;;, + 74;3;-0.000000, 1.279915,-0.000000;;, + 75;3;-0.000000, 1.279915,-0.000000;;, + 76;3;-0.000000, 1.279916,-0.000000;;, + 77;3;-0.000000, 1.279915,-0.000000;;, + 78;3;-0.000000, 1.279915,-0.000000;;, + 79;3;-0.000000, 1.279915,-0.000000;;, + 80;3;-0.000000, 1.279916, 0.000000;;, + 81;3;-0.000000, 1.279916,-0.000000;;, + 82;3;-0.000000, 1.279916, 0.000000;;, + 83;3; 0.000000, 1.279916, 0.000000;;, + 84;3;-0.000000, 1.279916,-0.000000;;, + 85;3; 0.000000, 1.279915,-0.000000;;, + 86;3;-0.000000, 1.279915, 0.000000;;, + 87;3;-0.000000, 1.279916, 0.000000;;, + 88;3; 0.000000, 1.279916,-0.000000;;, + 89;3;-0.000000, 1.279916,-0.000000;;, + 90;3; 0.000000, 1.279915,-0.000000;;, + 91;3;-0.000000, 1.279916, 0.000000;;, + 92;3;-0.000000, 1.279915, 0.000000;;, + 93;3;-0.000000, 1.279916,-0.000000;;, + 94;3;-0.000000, 1.279915,-0.000000;;, + 95;3; 0.000000, 1.279915, 0.000000;;, + 96;3;-0.000000, 1.279916, 0.000000;;, + 97;3; 0.000000, 1.279916,-0.000000;;, + 98;3; 0.000000, 1.279916, 0.000000;;, + 99;3;-0.000000, 1.279916,-0.000000;;, + 100;3;-0.000000, 1.279915, 0.000000;;, + 101;3;-0.000000, 1.279916,-0.000000;;, + 102;3;-0.000000, 1.279916, 0.000000;;, + 103;3;-0.000000, 1.279916, 0.000000;;, + 104;3;-0.000000, 1.279916, 0.000000;;, + 105;3;-0.000000, 1.279916, 0.000000;;, + 106;3;-0.000000, 1.279916, 0.000000;;, + 107;3;-0.000000, 1.279916,-0.000000;;, + 108;3;-0.000000, 1.279916,-0.000000;;, + 109;3; 0.000000, 1.279916,-0.000000;;, + 110;3; 0.000000, 1.279916,-0.000000;;, + 111;3;-0.000000, 1.279915, 0.000000;;, + 112;3; 0.000000, 1.279916, 0.000000;;, + 113;3;-0.000000, 1.279916, 0.000000;;, + 114;3;-0.000000, 1.279916, 0.000000;;, + 115;3; 0.000000, 1.279916,-0.000000;;, + 116;3; 0.000000, 1.279916,-0.000000;;, + 117;3;-0.000000, 1.279916, 0.000000;;, + 118;3; 0.000000, 1.279916, 0.000000;;, + 119;3;-0.000000, 1.279916, 0.000000;;, + 120;3; 0.000000, 1.279916, 0.000000;;, + 121;3; 0.000000, 1.279915, 0.000000;;, + 122;3;-0.000000, 1.279916,-0.000000;;, + 123;3;-0.000000, 1.279916,-0.000000;;, + 124;3;-0.000000, 1.279915,-0.000000;;, + 125;3; 0.000000, 1.279915,-0.000000;;, + 126;3;-0.000000, 1.279916,-0.000000;;, + 127;3;-0.000000, 1.279916, 0.000000;;, + 128;3;-0.000000, 1.279916,-0.000000;;, + 129;3;-0.000000, 1.279916, 0.000000;;, + 130;3;-0.000000, 1.279916,-0.000000;;, + 131;3;-0.000000, 1.279916,-0.000000;;, + 132;3; 0.000000, 1.279916,-0.000000;;, + 133;3; 0.000000, 1.279916,-0.000000;;, + 134;3;-0.000000, 1.279916,-0.000000;;, + 135;3; 0.000000, 1.279916,-0.000000;;, + 136;3;-0.000000, 1.279915,-0.000000;;, + 137;3;-0.000000, 1.279915, 0.000000;;, + 138;3; 0.000000, 1.279916, 0.000000;;, + 139;3;-0.000000, 1.279916,-0.000000;;, + 140;3; 0.000000, 1.279916, 0.000000;;, + 141;3;-0.000000, 1.279916, 0.000000;;, + 142;3;-0.000000, 1.279916,-0.000000;;, + 143;3; 0.000000, 1.279916,-0.000000;;, + 144;3; 0.000000, 1.279916,-0.000000;;, + 145;3;-0.000000, 1.279915, 0.000000;;, + 146;3;-0.000000, 1.279916, 0.000000;;, + 147;3; 0.000000, 1.279916,-0.000000;;, + 148;3;-0.000000, 1.279916, 0.000000;;, + 149;3;-0.000000, 1.279916, 0.000000;;, + 150;3; 0.000000, 1.279915, 0.000000;;, + 151;3;-0.000000, 1.279916,-0.000000;;, + 152;3; 0.000000, 1.279915,-0.000000;;, + 153;3;-0.000000, 1.279916, 0.000000;;, + 154;3;-0.000000, 1.279916, 0.000000;;, + 155;3;-0.000000, 1.279915,-0.000000;;, + 156;3;-0.000000, 1.279916, 0.000000;;, + 157;3;-0.000000, 1.279915,-0.000000;;, + 158;3; 0.000000, 1.279915,-0.000000;;, + 159;3;-0.000000, 1.279916,-0.000000;;, + 160;3;-0.000000, 1.279916, 0.000000;;, + 161;3;-0.000000, 1.279916,-0.000000;;, + 162;3;-0.000000, 1.279916,-0.000000;;, + 163;3; 0.000000, 1.279916,-0.000000;;, + 164;3;-0.000000, 1.279916,-0.000000;;, + 165;3;-0.000000, 1.279916,-0.000000;;, + 166;3;-0.000000, 1.279916, 0.000000;;, + 167;3;-0.000000, 1.279915,-0.000000;;, + 168;3; 0.000000, 1.279916, 0.000000;;, + 169;3;-0.000000, 1.279916, 0.000000;;, + 170;3;-0.000000, 1.279915,-0.000000;;, + 171;3; 0.000000, 1.279916, 0.000000;;, + 172;3;-0.000000, 1.279915,-0.000000;;, + 173;3;-0.000000, 1.279916, 0.000000;;, + 174;3;-0.000000, 1.279916,-0.000000;;, + 175;3;-0.000000, 1.279916,-0.000000;;, + 176;3; 0.000000, 1.279916, 0.000000;;, + 177;3; 0.000000, 1.279916,-0.000000;;, + 178;3;-0.000000, 1.279916,-0.000000;;, + 179;3; 0.000000, 1.279916, 0.000000;;, + 180;3;-0.000000, 1.279916, 0.000000;;, + 181;3;-0.000000, 1.279916, 0.000000;;, + 182;3; 0.000000, 1.279916, 0.000000;;, + 183;3;-0.000000, 1.279915, 0.000000;;, + 184;3; 0.000000, 1.279916,-0.000000;;, + 185;3; 0.000000, 1.279916,-0.000000;;, + 186;3;-0.000000, 1.279916, 0.000000;;, + 187;3;-0.000000, 1.279916, 0.000000;;, + 188;3;-0.000000, 1.279915,-0.000000;;, + 189;3; 0.000000, 1.279916,-0.000000;;, + 190;3; 0.000000, 1.279916, 0.000000;;, + 191;3; 0.000000, 1.279916, 0.000000;;, + 192;3;-0.000000, 1.279916,-0.000000;;, + 193;3;-0.000000, 1.279916, 0.000000;;, + 194;3;-0.000000, 1.279916, 0.000000;;, + 195;3; 0.000000, 1.279916,-0.000000;;, + 196;3;-0.000000, 1.279915,-0.000000;;, + 197;3; 0.000000, 1.279916,-0.000000;;, + 198;3; 0.000000, 1.279916,-0.000000;;, + 199;3; 0.000000, 1.279916, 0.000000;;, + 200;3; 0.000000, 1.279916, 0.000000;;, + 201;3; 0.000000, 1.279916, 0.000000;;, + 202;3; 0.000000, 1.279916, 0.000000;;, + 203;3; 0.000000, 1.279916, 0.000000;;, + 204;3; 0.000000, 1.279916, 0.000000;;, + 205;3; 0.000000, 1.279916, 0.000000;;, + 206;3; 0.000000, 1.279916, 0.000000;;, + 207;3; 0.000000, 1.279916, 0.000000;;, + 208;3; 0.000000, 1.279916, 0.000000;;, + 209;3; 0.000000, 1.279916, 0.000000;;, + 210;3; 0.000000, 1.279916, 0.000000;;, + 211;3; 0.000000, 1.279916,-0.000000;;, + 212;3;-0.000000, 1.279916, 0.000000;;, + 213;3; 0.000000, 1.279916, 0.000000;;, + 214;3;-0.000000, 1.279915,-0.000000;;, + 215;3; 0.000000, 1.279916,-0.000000;;, + 216;3;-0.000000, 1.279916, 0.000000;;, + 217;3;-0.000000, 1.279916, 0.000000;;, + 218;3; 0.000000, 1.279915,-0.000000;;, + 219;3;-0.000000, 1.279916,-0.000000;;, + 220;3;-0.000000, 1.279916, 0.000000;;, + 221;3;-0.000000, 1.279916, 0.000000;;, + 222;3; 0.000000, 1.279916,-0.000000;;, + 223;3;-0.000000, 1.279916,-0.000000;;, + 224;3;-0.000000, 1.279915,-0.000000;;, + 225;3; 0.000000, 1.279916, 0.000000;;, + 226;3;-0.000000, 1.279916,-0.000000;;, + 227;3; 0.000000, 1.279916,-0.000000;;, + 228;3;-0.000000, 1.279915, 0.000000;;, + 229;3; 0.000000, 1.279916, 0.000000;;, + 230;3;-0.000000, 1.279916, 0.000000;;, + 231;3;-0.000000, 1.279915,-0.000000;;, + 232;3; 0.000000, 1.279915, 0.000000;;, + 233;3;-0.000000, 1.279915, 0.000000;;, + 234;3;-0.000000, 1.279915, 0.000000;;, + 235;3;-0.000000, 1.279916,-0.000000;;, + 236;3; 0.000000, 1.279916,-0.000000;;, + 237;3;-0.000000, 1.279916,-0.000000;;, + 238;3;-0.000000, 1.279916, 0.000000;;, + 239;3; 0.000000, 1.279916, 0.000000;;, + 240;3; 0.000000, 1.279916, 0.000000;;, + 241;3; 0.000000, 1.279916, 0.000000;;, + 242;3; 0.000000, 1.279916, 0.000000;;, + 243;3; 0.000000, 1.279916, 0.000000;;, + 244;3; 0.000000, 1.279916, 0.000000;;, + 245;3; 0.000000, 1.279916, 0.000000;;, + 246;3; 0.000000, 1.279916, 0.000000;;, + 247;3; 0.000000, 1.279916, 0.000000;;, + 248;3; 0.000000, 1.279916, 0.000000;;, + 249;3; 0.000000, 1.279916, 0.000000;;; + } + } + Animation { + {Armature_Bone_039} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 1;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 2;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 3;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 4;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 5;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 6;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 7;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 8;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 9;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 10;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 11;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 12;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 13;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 14;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 15;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 16;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 17;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 18;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 19;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 20;4;-0.957694,-0.287562, 0.000415, 0.000224;;, + 21;4;-0.958119,-0.285459, 0.001668, 0.000901;;, + 22;4;-0.958830,-0.281944, 0.003764, 0.002032;;, + 23;4;-0.959821,-0.277039, 0.006688, 0.003611;;, + 24;4;-0.961082,-0.270805, 0.010404, 0.005618;;, + 25;4;-0.962590,-0.263348, 0.014850, 0.008018;;, + 26;4;-0.964313,-0.254824, 0.019932, 0.010762;;, + 27;4;-0.966210,-0.245441, 0.025526, 0.013783;;, + 28;4;-0.968230,-0.235453, 0.031480, 0.016998;;, + 29;4;-0.970312,-0.225154, 0.037620, 0.020313;;, + 30;4;-0.972394,-0.214855, 0.043759, 0.023628;;, + 31;4;-0.974414,-0.204868, 0.049713, 0.026843;;, + 32;4;-0.976311,-0.195485, 0.055307, 0.029864;;, + 33;4;-0.978034,-0.186961, 0.060389, 0.032608;;, + 34;4;-0.979542,-0.179504, 0.064835, 0.035008;;, + 35;4;-0.980802,-0.173270, 0.068551, 0.037015;;, + 36;4;-0.981794,-0.168365, 0.071475, 0.038594;;, + 37;4;-0.982505,-0.164850, 0.073571, 0.039726;;, + 38;4;-0.982930,-0.162747, 0.074824, 0.040402;;, + 39;4;-0.983071,-0.162052, 0.075239, 0.040626;;, + 40;4;-0.982930,-0.162747, 0.074824, 0.040402;;, + 41;4;-0.982505,-0.164850, 0.073571, 0.039726;;, + 42;4;-0.981794,-0.168365, 0.071475, 0.038594;;, + 43;4;-0.980803,-0.173270, 0.068551, 0.037015;;, + 44;4;-0.979542,-0.179504, 0.064835, 0.035008;;, + 45;4;-0.978034,-0.186961, 0.060389, 0.032608;;, + 46;4;-0.976311,-0.195485, 0.055307, 0.029864;;, + 47;4;-0.974414,-0.204868, 0.049713, 0.026843;;, + 48;4;-0.972394,-0.214856, 0.043759, 0.023628;;, + 49;4;-0.970312,-0.225154, 0.037620, 0.020313;;, + 50;4;-0.968230,-0.235453, 0.031480, 0.016998;;, + 51;4;-0.966210,-0.245441, 0.025526, 0.013783;;, + 52;4;-0.964313,-0.254824, 0.019932, 0.010762;;, + 53;4;-0.962590,-0.263348, 0.014850, 0.008018;;, + 54;4;-0.961082,-0.270805, 0.010404, 0.005618;;, + 55;4;-0.959821,-0.277039, 0.006688, 0.003611;;, + 56;4;-0.958830,-0.281944, 0.003764, 0.002032;;, + 57;4;-0.958119,-0.285459, 0.001668, 0.000901;;, + 58;4;-0.957694,-0.287562, 0.000415, 0.000224;;, + 59;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 60;4;-0.957573,-0.288177, 0.000048, 0.000026;;, + 61;4;-0.957635,-0.287937, 0.000194, 0.000105;;, + 62;4;-0.957737,-0.287534, 0.000437, 0.000236;;, + 63;4;-0.957881,-0.286969, 0.000779, 0.000421;;, + 64;4;-0.958066,-0.286241, 0.001220, 0.000659;;, + 65;4;-0.958292,-0.285351, 0.001758, 0.000949;;, + 66;4;-0.958560,-0.284301, 0.002394, 0.001293;;, + 67;4;-0.958867,-0.283093, 0.003124, 0.001687;;, + 68;4;-0.959213,-0.281732, 0.003948, 0.002132;;, + 69;4;-0.959597,-0.280223, 0.004861, 0.002625;;, + 70;4;-0.960017,-0.278573, 0.005859, 0.003164;;, + 71;4;-0.960470,-0.276790, 0.006938, 0.003746;;, + 72;4;-0.960955,-0.274884, 0.008091, 0.004369;;, + 73;4;-0.961468,-0.272866, 0.009312, 0.005028;;, + 74;4;-0.962007,-0.270749, 0.010592, 0.005720;;, + 75;4;-0.962567,-0.268546, 0.011925, 0.006439;;, + 76;4;-0.963145,-0.266274, 0.013300, 0.007181;;, + 77;4;-0.963737,-0.263949, 0.014706, 0.007941;;, + 78;4;-0.964338,-0.261587, 0.016135, 0.008712;;, + 79;4;-0.964943,-0.259208, 0.017575, 0.009490;;, + 80;4;-0.965548,-0.256828, 0.019014, 0.010267;;, + 81;4;-0.966149,-0.254467, 0.020443, 0.011039;;, + 82;4;-0.966741,-0.252141, 0.021850, 0.011798;;, + 83;4;-0.967319,-0.249869, 0.023225, 0.012540;;, + 84;4;-0.967879,-0.247667, 0.024557, 0.013260;;, + 85;4;-0.968418,-0.245549, 0.025838, 0.013952;;, + 86;4;-0.968931,-0.243531, 0.027059, 0.014611;;, + 87;4;-0.969416,-0.241625, 0.028212, 0.015233;;, + 88;4;-0.969869,-0.239842, 0.029291, 0.015816;;, + 89;4;-0.970289,-0.238192, 0.030289, 0.016355;;, + 90;4;-0.970673,-0.236683, 0.031202, 0.016848;;, + 91;4;-0.971019,-0.235323, 0.032025, 0.017292;;, + 92;4;-0.971327,-0.234115, 0.032756, 0.017687;;, + 93;4;-0.971594,-0.233064, 0.033391, 0.018030;;, + 94;4;-0.971820,-0.232174, 0.033930, 0.018321;;, + 95;4;-0.972005,-0.231446, 0.034370, 0.018559;;, + 96;4;-0.972149,-0.230881, 0.034712, 0.018743;;, + 97;4;-0.972252,-0.230478, 0.034956, 0.018875;;, + 98;4;-0.972313,-0.230238, 0.035101, 0.018953;;, + 99;4;-0.972333,-0.230158, 0.035150, 0.018979;;, + 100;4;-0.972043,-0.231075, 0.034585, 0.018675;;, + 101;4;-0.971141,-0.233922, 0.032833, 0.017729;;, + 102;4;-0.969610,-0.238758, 0.029856, 0.016121;;, + 103;4;-0.967487,-0.245461, 0.025730, 0.013893;;, + 104;4;-0.964889,-0.253668, 0.020679, 0.011166;;, + 105;4;-0.961998,-0.262797, 0.015059, 0.008132;;, + 106;4;-0.959027,-0.272176, 0.009286, 0.005014;;, + 107;4;-0.956170,-0.281201, 0.003731, 0.002015;;, + 108;4;-0.953561,-0.289439,-0.001339,-0.000723;;, + 109;4;-0.951279,-0.296645,-0.005775,-0.003118;;, + 110;4;-0.948997,-0.303851,-0.010210,-0.005513;;, + 111;4;-0.946389,-0.312088,-0.015281,-0.008251;;, + 112;4;-0.943531,-0.321113,-0.020836,-0.011251;;, + 113;4;-0.940561,-0.330493,-0.026609,-0.014368;;, + 114;4;-0.937670,-0.339622,-0.032229,-0.017402;;, + 115;4;-0.935071,-0.347828,-0.037280,-0.020130;;, + 116;4;-0.932949,-0.354531,-0.041406,-0.022357;;, + 117;4;-0.931417,-0.359368,-0.044383,-0.023965;;, + 118;4;-0.930516,-0.362215,-0.046135,-0.024911;;, + 119;4;-0.930225,-0.363131,-0.046699,-0.025216;;, + 120;4;-0.930516,-0.362215,-0.046135,-0.024911;;, + 121;4;-0.931417,-0.359368,-0.044383,-0.023965;;, + 122;4;-0.932949,-0.354531,-0.041406,-0.022357;;, + 123;4;-0.935071,-0.347828,-0.037280,-0.020130;;, + 124;4;-0.937670,-0.339622,-0.032229,-0.017402;;, + 125;4;-0.940561,-0.330493,-0.026609,-0.014368;;, + 126;4;-0.943531,-0.321113,-0.020836,-0.011251;;, + 127;4;-0.946389,-0.312088,-0.015281,-0.008251;;, + 128;4;-0.948997,-0.303851,-0.010210,-0.005513;;, + 129;4;-0.951279,-0.296645,-0.005775,-0.003118;;, + 130;4;-0.953561,-0.289439,-0.001339,-0.000723;;, + 131;4;-0.956170,-0.281201, 0.003731, 0.002015;;, + 132;4;-0.959027,-0.272176, 0.009286, 0.005014;;, + 133;4;-0.961998,-0.262797, 0.015059, 0.008132;;, + 134;4;-0.964889,-0.253668, 0.020679, 0.011166;;, + 135;4;-0.967487,-0.245461, 0.025730, 0.013893;;, + 136;4;-0.969610,-0.238758, 0.029856, 0.016121;;, + 137;4;-0.971141,-0.233922, 0.032833, 0.017729;;, + 138;4;-0.972043,-0.231075, 0.034585, 0.018675;;, + 139;4;-0.972333,-0.230158, 0.035150, 0.018979;;, + 140;4;-0.971141,-0.233922, 0.032833, 0.017729;;, + 141;4;-0.967487,-0.245461, 0.025730, 0.013893;;, + 142;4;-0.961998,-0.262797, 0.015059, 0.008132;;, + 143;4;-0.956170,-0.281201, 0.003731, 0.002015;;, + 144;4;-0.951279,-0.296645,-0.005775,-0.003118;;, + 145;4;-0.946389,-0.312088,-0.015281,-0.008251;;, + 146;4;-0.940561,-0.330493,-0.026609,-0.014368;;, + 147;4;-0.935071,-0.347828,-0.037280,-0.020130;;, + 148;4;-0.931417,-0.359368,-0.044383,-0.023965;;, + 149;4;-0.930225,-0.363131,-0.046699,-0.025216;;, + 150;4;-0.931417,-0.359368,-0.044383,-0.023965;;, + 151;4;-0.935071,-0.347828,-0.037280,-0.020130;;, + 152;4;-0.940561,-0.330493,-0.026609,-0.014368;;, + 153;4;-0.946389,-0.312088,-0.015281,-0.008251;;, + 154;4;-0.951279,-0.296645,-0.005775,-0.003118;;, + 155;4;-0.956170,-0.281201, 0.003731, 0.002015;;, + 156;4;-0.961998,-0.262797, 0.015059, 0.008132;;, + 157;4;-0.967487,-0.245461, 0.025730, 0.013893;;, + 158;4;-0.971141,-0.233922, 0.032833, 0.017729;;, + 159;4;-0.972333,-0.230158, 0.035150, 0.018979;;, + 160;4;-0.972252,-0.230478, 0.034956, 0.018875;;, + 161;4;-0.972005,-0.231446, 0.034370, 0.018559;;, + 162;4;-0.971594,-0.233064, 0.033391, 0.018030;;, + 163;4;-0.971019,-0.235323, 0.032025, 0.017292;;, + 164;4;-0.970289,-0.238192, 0.030289, 0.016355;;, + 165;4;-0.969416,-0.241625, 0.028212, 0.015233;;, + 166;4;-0.968418,-0.245549, 0.025838, 0.013952;;, + 167;4;-0.967319,-0.249869, 0.023225, 0.012540;;, + 168;4;-0.966149,-0.254466, 0.020443, 0.011039;;, + 169;4;-0.964943,-0.259208, 0.017575, 0.009490;;, + 170;4;-0.963737,-0.263949, 0.014706, 0.007941;;, + 171;4;-0.962567,-0.268546, 0.011925, 0.006439;;, + 172;4;-0.961469,-0.272866, 0.009312, 0.005028;;, + 173;4;-0.960470,-0.276790, 0.006938, 0.003746;;, + 174;4;-0.959597,-0.280223, 0.004861, 0.002625;;, + 175;4;-0.958867,-0.283093, 0.003124, 0.001687;;, + 176;4;-0.958292,-0.285351, 0.001758, 0.000949;;, + 177;4;-0.957881,-0.286969, 0.000779, 0.000421;;, + 178;4;-0.957635,-0.287937, 0.000194, 0.000105;;, + 179;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 180;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 181;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 182;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 183;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 184;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 185;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 186;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 187;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 188;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 189;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 190;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 191;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 192;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 193;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 194;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 195;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 196;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 197;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 198;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 199;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 200;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 201;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 202;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 203;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 204;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 205;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 206;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 207;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 208;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 209;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 210;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 211;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 212;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 213;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 214;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 215;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 216;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 217;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 218;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 219;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 220;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 221;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 222;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 223;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 224;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 225;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 226;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 227;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 228;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 229;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 230;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 231;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 232;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 233;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 234;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 235;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 236;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 237;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 238;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 239;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 240;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 241;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 242;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 243;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 244;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 245;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 246;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 247;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 248;4;-0.957553,-0.288257,-0.000000,-0.000000;;, + 249;4;-0.957553,-0.288257,-0.000000,-0.000000;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3;-0.000000, 1.228416,-0.000000;;, + 1;3;-0.000000, 1.228416,-0.000000;;, + 2;3;-0.000000, 1.228416,-0.000000;;, + 3;3;-0.000000, 1.228416,-0.000000;;, + 4;3;-0.000000, 1.228416,-0.000000;;, + 5;3;-0.000000, 1.228416,-0.000000;;, + 6;3;-0.000000, 1.228416,-0.000000;;, + 7;3;-0.000000, 1.228416,-0.000000;;, + 8;3;-0.000000, 1.228416,-0.000000;;, + 9;3;-0.000000, 1.228416,-0.000000;;, + 10;3;-0.000000, 1.228416,-0.000000;;, + 11;3;-0.000000, 1.228416,-0.000000;;, + 12;3;-0.000000, 1.228416,-0.000000;;, + 13;3;-0.000000, 1.228416,-0.000000;;, + 14;3;-0.000000, 1.228416,-0.000000;;, + 15;3;-0.000000, 1.228416,-0.000000;;, + 16;3;-0.000000, 1.228416,-0.000000;;, + 17;3;-0.000000, 1.228416,-0.000000;;, + 18;3;-0.000000, 1.228416,-0.000000;;, + 19;3;-0.000000, 1.228416,-0.000000;;, + 20;3;-0.000000, 1.228416,-0.000000;;, + 21;3;-0.000000, 1.228416,-0.000000;;, + 22;3;-0.000000, 1.228416,-0.000000;;, + 23;3;-0.000000, 1.228416,-0.000000;;, + 24;3;-0.000000, 1.228416,-0.000000;;, + 25;3;-0.000000, 1.228416,-0.000000;;, + 26;3;-0.000000, 1.228416,-0.000000;;, + 27;3;-0.000000, 1.228416,-0.000000;;, + 28;3;-0.000000, 1.228416,-0.000000;;, + 29;3;-0.000000, 1.228416,-0.000000;;, + 30;3;-0.000000, 1.228416,-0.000000;;, + 31;3;-0.000000, 1.228416,-0.000000;;, + 32;3;-0.000000, 1.228416,-0.000000;;, + 33;3;-0.000000, 1.228416,-0.000000;;, + 34;3;-0.000000, 1.228416,-0.000000;;, + 35;3;-0.000000, 1.228416,-0.000000;;, + 36;3;-0.000000, 1.228416,-0.000000;;, + 37;3;-0.000000, 1.228416,-0.000000;;, + 38;3;-0.000000, 1.228416,-0.000000;;, + 39;3;-0.000000, 1.228416,-0.000000;;, + 40;3;-0.000000, 1.228416,-0.000000;;, + 41;3;-0.000000, 1.228416,-0.000000;;, + 42;3;-0.000000, 1.228416,-0.000000;;, + 43;3;-0.000000, 1.228416,-0.000000;;, + 44;3;-0.000000, 1.228416,-0.000000;;, + 45;3;-0.000000, 1.228416,-0.000000;;, + 46;3;-0.000000, 1.228416,-0.000000;;, + 47;3;-0.000000, 1.228416,-0.000000;;, + 48;3;-0.000000, 1.228416,-0.000000;;, + 49;3;-0.000000, 1.228416,-0.000000;;, + 50;3;-0.000000, 1.228416,-0.000000;;, + 51;3;-0.000000, 1.228416,-0.000000;;, + 52;3;-0.000000, 1.228416,-0.000000;;, + 53;3;-0.000000, 1.228416,-0.000000;;, + 54;3;-0.000000, 1.228416,-0.000000;;, + 55;3;-0.000000, 1.228416,-0.000000;;, + 56;3;-0.000000, 1.228416,-0.000000;;, + 57;3;-0.000000, 1.228416,-0.000000;;, + 58;3;-0.000000, 1.228416,-0.000000;;, + 59;3;-0.000000, 1.228416,-0.000000;;, + 60;3; 0.000000, 1.228416,-0.000000;;, + 61;3; 0.000000, 1.228417,-0.000000;;, + 62;3; 0.000000, 1.228416, 0.000000;;, + 63;3;-0.000000, 1.228416, 0.000000;;, + 64;3; 0.000000, 1.228417,-0.000000;;, + 65;3; 0.000000, 1.228416, 0.000000;;, + 66;3; 0.000000, 1.228417,-0.000000;;, + 67;3;-0.000000, 1.228417, 0.000000;;, + 68;3;-0.000000, 1.228416,-0.000000;;, + 69;3; 0.000000, 1.228417, 0.000000;;, + 70;3;-0.000000, 1.228416,-0.000000;;, + 71;3;-0.000000, 1.228417,-0.000000;;, + 72;3;-0.000000, 1.228417, 0.000000;;, + 73;3;-0.000000, 1.228416,-0.000000;;, + 74;3;-0.000000, 1.228417,-0.000000;;, + 75;3; 0.000000, 1.228416,-0.000000;;, + 76;3; 0.000000, 1.228416,-0.000000;;, + 77;3; 0.000000, 1.228416, 0.000000;;, + 78;3; 0.000000, 1.228416,-0.000000;;, + 79;3; 0.000000, 1.228417,-0.000000;;, + 80;3;-0.000000, 1.228416, 0.000000;;, + 81;3;-0.000000, 1.228416, 0.000000;;, + 82;3; 0.000000, 1.228416, 0.000000;;, + 83;3; 0.000000, 1.228416,-0.000000;;, + 84;3;-0.000000, 1.228417,-0.000000;;, + 85;3;-0.000000, 1.228416, 0.000000;;, + 86;3; 0.000000, 1.228417, 0.000000;;, + 87;3; 0.000000, 1.228416, 0.000000;;, + 88;3;-0.000000, 1.228417,-0.000000;;, + 89;3; 0.000000, 1.228417,-0.000000;;, + 90;3; 0.000000, 1.228416,-0.000000;;, + 91;3; 0.000000, 1.228416, 0.000000;;, + 92;3;-0.000000, 1.228416,-0.000000;;, + 93;3;-0.000000, 1.228417, 0.000000;;, + 94;3; 0.000000, 1.228416,-0.000000;;, + 95;3; 0.000000, 1.228416,-0.000000;;, + 96;3;-0.000000, 1.228417, 0.000000;;, + 97;3;-0.000000, 1.228417, 0.000000;;, + 98;3;-0.000000, 1.228416,-0.000000;;, + 99;3; 0.000000, 1.228417,-0.000000;;, + 100;3;-0.000000, 1.228416, 0.000000;;, + 101;3;-0.000000, 1.228416,-0.000000;;, + 102;3; 0.000001, 1.228416,-0.000000;;, + 103;3;-0.000000, 1.228416,-0.000000;;, + 104;3; 0.000000, 1.228417,-0.000000;;, + 105;3;-0.000000, 1.228416, 0.000000;;, + 106;3;-0.000000, 1.228416, 0.000000;;, + 107;3;-0.000000, 1.228416, 0.000000;;, + 108;3; 0.000000, 1.228417, 0.000000;;, + 109;3;-0.000000, 1.228417,-0.000000;;, + 110;3;-0.000000, 1.228417, 0.000000;;, + 111;3;-0.000000, 1.228416,-0.000000;;, + 112;3;-0.000000, 1.228417,-0.000000;;, + 113;3; 0.000000, 1.228417,-0.000000;;, + 114;3;-0.000000, 1.228416, 0.000000;;, + 115;3; 0.000000, 1.228416,-0.000000;;, + 116;3;-0.000000, 1.228416, 0.000000;;, + 117;3; 0.000000, 1.228417, 0.000000;;, + 118;3;-0.000000, 1.228417,-0.000000;;, + 119;3; 0.000000, 1.228416, 0.000000;;, + 120;3;-0.000000, 1.228416, 0.000000;;, + 121;3; 0.000000, 1.228416,-0.000000;;, + 122;3; 0.000000, 1.228416, 0.000000;;, + 123;3;-0.000000, 1.228416,-0.000000;;, + 124;3; 0.000000, 1.228417,-0.000000;;, + 125;3;-0.000000, 1.228416, 0.000000;;, + 126;3; 0.000000, 1.228416,-0.000000;;, + 127;3; 0.000000, 1.228417,-0.000000;;, + 128;3; 0.000000, 1.228417, 0.000000;;, + 129;3;-0.000000, 1.228416, 0.000000;;, + 130;3; 0.000000, 1.228417,-0.000000;;, + 131;3;-0.000000, 1.228417,-0.000000;;, + 132;3;-0.000000, 1.228416,-0.000000;;, + 133;3; 0.000000, 1.228417,-0.000000;;, + 134;3; 0.000000, 1.228417,-0.000000;;, + 135;3; 0.000000, 1.228416,-0.000000;;, + 136;3;-0.000000, 1.228416, 0.000000;;, + 137;3; 0.000000, 1.228416, 0.000000;;, + 138;3; 0.000000, 1.228416, 0.000000;;, + 139;3; 0.000000, 1.228417,-0.000000;;, + 140;3;-0.000000, 1.228417,-0.000000;;, + 141;3;-0.000001, 1.228416,-0.000000;;, + 142;3;-0.000000, 1.228416, 0.000000;;, + 143;3; 0.000000, 1.228417, 0.000000;;, + 144;3;-0.000000, 1.228417,-0.000000;;, + 145;3;-0.000000, 1.228416,-0.000000;;, + 146;3; 0.000000, 1.228417,-0.000000;;, + 147;3; 0.000000, 1.228416,-0.000000;;, + 148;3; 0.000000, 1.228417, 0.000000;;, + 149;3; 0.000000, 1.228416, 0.000000;;, + 150;3; 0.000000, 1.228416,-0.000000;;, + 151;3;-0.000000, 1.228416,-0.000000;;, + 152;3;-0.000000, 1.228416, 0.000000;;, + 153;3; 0.000000, 1.228417,-0.000000;;, + 154;3;-0.000000, 1.228416, 0.000000;;, + 155;3;-0.000000, 1.228416,-0.000000;;, + 156;3; 0.000000, 1.228416,-0.000000;;, + 157;3; 0.000000, 1.228416, 0.000000;;, + 158;3;-0.000000, 1.228416, 0.000000;;, + 159;3; 0.000000, 1.228417,-0.000000;;, + 160;3; 0.000000, 1.228416,-0.000000;;, + 161;3; 0.000000, 1.228416, 0.000000;;, + 162;3;-0.000000, 1.228416,-0.000000;;, + 163;3;-0.000000, 1.228417, 0.000000;;, + 164;3; 0.000000, 1.228417, 0.000000;;, + 165;3; 0.000000, 1.228416, 0.000000;;, + 166;3;-0.000000, 1.228416, 0.000000;;, + 167;3; 0.000000, 1.228417,-0.000000;;, + 168;3;-0.000000, 1.228416,-0.000000;;, + 169;3;-0.000000, 1.228417,-0.000000;;, + 170;3;-0.000000, 1.228416,-0.000000;;, + 171;3;-0.000000, 1.228417,-0.000000;;, + 172;3;-0.000001, 1.228417, 0.000000;;, + 173;3;-0.000000, 1.228417,-0.000000;;, + 174;3;-0.000000, 1.228416, 0.000000;;, + 175;3;-0.000000, 1.228417,-0.000000;;, + 176;3; 0.000000, 1.228417,-0.000000;;, + 177;3;-0.000000, 1.228417,-0.000000;;, + 178;3;-0.000000, 1.228416, 0.000000;;, + 179;3;-0.000000, 1.228416,-0.000000;;, + 180;3; 0.000000, 1.228417,-0.000000;;, + 181;3;-0.000000, 1.228417, 0.000000;;, + 182;3;-0.000000, 1.228417, 0.000000;;, + 183;3; 0.000000, 1.228416, 0.000000;;, + 184;3; 0.000000, 1.228416,-0.000000;;, + 185;3; 0.000000, 1.228416, 0.000000;;, + 186;3;-0.000000, 1.228416,-0.000000;;, + 187;3; 0.000000, 1.228416, 0.000000;;, + 188;3;-0.000000, 1.228417, 0.000000;;, + 189;3; 0.000000, 1.228416, 0.000000;;, + 190;3; 0.000000, 1.228417,-0.000000;;, + 191;3;-0.000000, 1.228416, 0.000000;;, + 192;3;-0.000000, 1.228417, 0.000000;;, + 193;3;-0.000000, 1.228416,-0.000000;;, + 194;3;-0.000000, 1.228416,-0.000000;;, + 195;3; 0.000000, 1.228416,-0.000001;;, + 196;3; 0.000000, 1.228416, 0.000000;;, + 197;3; 0.000000, 1.228416,-0.000000;;, + 198;3; 0.000000, 1.228416, 0.000000;;, + 199;3;-0.000000, 1.228416,-0.000000;;, + 200;3;-0.000000, 1.228416,-0.000000;;, + 201;3;-0.000000, 1.228416,-0.000000;;, + 202;3;-0.000000, 1.228416,-0.000000;;, + 203;3;-0.000000, 1.228416,-0.000000;;, + 204;3;-0.000000, 1.228416,-0.000000;;, + 205;3;-0.000000, 1.228416,-0.000000;;, + 206;3;-0.000000, 1.228416,-0.000000;;, + 207;3;-0.000000, 1.228416,-0.000000;;, + 208;3;-0.000000, 1.228416,-0.000000;;, + 209;3;-0.000000, 1.228416,-0.000000;;, + 210;3; 0.000000, 1.228416, 0.000000;;, + 211;3;-0.000000, 1.228417, 0.000000;;, + 212;3; 0.000000, 1.228416,-0.000000;;, + 213;3; 0.000000, 1.228416,-0.000000;;, + 214;3; 0.000000, 1.228417, 0.000000;;, + 215;3; 0.000000, 1.228417,-0.000000;;, + 216;3;-0.000000, 1.228417, 0.000001;;, + 217;3;-0.000000, 1.228416,-0.000000;;, + 218;3; 0.000000, 1.228417, 0.000000;;, + 219;3;-0.000000, 1.228416,-0.000000;;, + 220;3;-0.000000, 1.228416,-0.000000;;, + 221;3; 0.000000, 1.228416, 0.000000;;, + 222;3;-0.000000, 1.228416, 0.000000;;, + 223;3;-0.000000, 1.228417,-0.000000;;, + 224;3;-0.000000, 1.228417, 0.000000;;, + 225;3;-0.000000, 1.228416, 0.000000;;, + 226;3;-0.000000, 1.228417, 0.000000;;, + 227;3;-0.000000, 1.228416,-0.000000;;, + 228;3;-0.000000, 1.228416,-0.000000;;, + 229;3;-0.000000, 1.228416, 0.000000;;, + 230;3;-0.000000, 1.228416, 0.000000;;, + 231;3;-0.000000, 1.228416,-0.000000;;, + 232;3;-0.000000, 1.228416, 0.000000;;, + 233;3; 0.000000, 1.228417, 0.000000;;, + 234;3; 0.000000, 1.228416,-0.000000;;, + 235;3;-0.000000, 1.228416,-0.000000;;, + 236;3;-0.000000, 1.228416, 0.000000;;, + 237;3;-0.000000, 1.228416, 0.000000;;, + 238;3;-0.000000, 1.228416,-0.000000;;, + 239;3;-0.000000, 1.228416,-0.000000;;, + 240;3;-0.000000, 1.228416,-0.000000;;, + 241;3;-0.000000, 1.228416,-0.000000;;, + 242;3;-0.000000, 1.228416,-0.000000;;, + 243;3;-0.000000, 1.228416,-0.000000;;, + 244;3;-0.000000, 1.228416,-0.000000;;, + 245;3;-0.000000, 1.228416,-0.000000;;, + 246;3;-0.000000, 1.228416,-0.000000;;, + 247;3;-0.000000, 1.228416,-0.000000;;, + 248;3;-0.000000, 1.228416,-0.000000;;, + 249;3;-0.000000, 1.228416,-0.000000;;; + } + } + Animation { + {Armature_Bone_012} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 1;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 2;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 3;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 4;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 5;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 6;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 7;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 8;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 9;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 10;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 11;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 12;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 13;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 14;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 15;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 16;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 17;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 18;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 19;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 20;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 21;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 22;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 23;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 24;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 25;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 26;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 27;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 28;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 29;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 30;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 31;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 32;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 33;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 34;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 35;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 36;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 37;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 38;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 39;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 40;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 41;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 42;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 43;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 44;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 45;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 46;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 47;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 48;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 49;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 50;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 51;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 52;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 53;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 54;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 55;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 56;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 57;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 58;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 59;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 60;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 61;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 62;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 63;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 64;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 65;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 66;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 67;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 68;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 69;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 70;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 71;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 72;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 73;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 74;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 75;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 76;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 77;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 78;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 79;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 80;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 81;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 82;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 83;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 84;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 85;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 86;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 87;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 88;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 89;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 90;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 91;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 92;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 93;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 94;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 95;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 96;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 97;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 98;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 99;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 100;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 101;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 102;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 103;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 104;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 105;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 106;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 107;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 108;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 109;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 110;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 111;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 112;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 113;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 114;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 115;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 116;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 117;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 118;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 119;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 120;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 121;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 122;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 123;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 124;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 125;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 126;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 127;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 128;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 129;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 130;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 131;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 132;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 133;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 134;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 135;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 136;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 137;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 138;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 139;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 140;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 141;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 142;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 143;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 144;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 145;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 146;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 147;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 148;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 149;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 150;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 151;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 152;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 153;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 154;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 155;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 156;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 157;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 158;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 159;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 160;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 161;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 162;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 163;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 164;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 165;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 166;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 167;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 168;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 169;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 170;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 171;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 172;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 173;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 174;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 175;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 176;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 177;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 178;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 179;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 180;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 181;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 182;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 183;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 184;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 185;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 186;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 187;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 188;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 189;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 190;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 191;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 192;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 193;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 194;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 195;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 196;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 197;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 198;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 199;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 200;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 201;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 202;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 203;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 204;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 205;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 206;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 207;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 208;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 209;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 210;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 211;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 212;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 213;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 214;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 215;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 216;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 217;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 218;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 219;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 220;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 221;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 222;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 223;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 224;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 225;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 226;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 227;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 228;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 229;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 230;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 231;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 232;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 233;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 234;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 235;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 236;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 237;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 238;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 239;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 240;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 241;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 242;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 243;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 244;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 245;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 246;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 247;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 248;4;-0.888173,-0.000000, 0.000000, 0.459508;;, + 249;4;-0.888173,-0.000000, 0.000000, 0.459508;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3; 0.000000, 0.826434, 0.000000;;, + 1;3; 0.000000, 0.826434, 0.000000;;, + 2;3; 0.000000, 0.826434, 0.000000;;, + 3;3; 0.000000, 0.826434, 0.000000;;, + 4;3; 0.000000, 0.826434, 0.000000;;, + 5;3; 0.000000, 0.826434, 0.000000;;, + 6;3; 0.000000, 0.826434, 0.000000;;, + 7;3; 0.000000, 0.826434, 0.000000;;, + 8;3; 0.000000, 0.826434, 0.000000;;, + 9;3; 0.000000, 0.826434, 0.000000;;, + 10;3; 0.000000, 0.826434, 0.000000;;, + 11;3; 0.000000, 0.826434, 0.000000;;, + 12;3; 0.000000, 0.826434, 0.000000;;, + 13;3; 0.000000, 0.826434, 0.000000;;, + 14;3; 0.000000, 0.826434, 0.000000;;, + 15;3; 0.000000, 0.826434, 0.000000;;, + 16;3; 0.000000, 0.826434, 0.000000;;, + 17;3; 0.000000, 0.826434, 0.000000;;, + 18;3; 0.000000, 0.826434, 0.000000;;, + 19;3; 0.000000, 0.826434, 0.000000;;, + 20;3; 0.000000, 0.826434, 0.000000;;, + 21;3; 0.000000, 0.826434, 0.000000;;, + 22;3; 0.000000, 0.826434, 0.000000;;, + 23;3; 0.000000, 0.826434, 0.000000;;, + 24;3; 0.000000, 0.826434, 0.000000;;, + 25;3; 0.000000, 0.826434, 0.000000;;, + 26;3; 0.000000, 0.826434, 0.000000;;, + 27;3; 0.000000, 0.826434, 0.000000;;, + 28;3; 0.000000, 0.826434, 0.000000;;, + 29;3; 0.000000, 0.826434, 0.000000;;, + 30;3; 0.000000, 0.826434, 0.000000;;, + 31;3; 0.000000, 0.826434, 0.000000;;, + 32;3; 0.000000, 0.826434, 0.000000;;, + 33;3; 0.000000, 0.826434, 0.000000;;, + 34;3; 0.000000, 0.826434, 0.000000;;, + 35;3; 0.000000, 0.826434, 0.000000;;, + 36;3; 0.000000, 0.826434, 0.000000;;, + 37;3; 0.000000, 0.826434, 0.000000;;, + 38;3; 0.000000, 0.826434, 0.000000;;, + 39;3; 0.000000, 0.826434, 0.000000;;, + 40;3; 0.000000, 0.826434, 0.000000;;, + 41;3; 0.000000, 0.826434, 0.000000;;, + 42;3; 0.000000, 0.826434, 0.000000;;, + 43;3; 0.000000, 0.826434, 0.000000;;, + 44;3; 0.000000, 0.826434, 0.000000;;, + 45;3; 0.000000, 0.826434, 0.000000;;, + 46;3; 0.000000, 0.826434, 0.000000;;, + 47;3; 0.000000, 0.826434, 0.000000;;, + 48;3; 0.000000, 0.826434, 0.000000;;, + 49;3; 0.000000, 0.826434, 0.000000;;, + 50;3; 0.000000, 0.826434, 0.000000;;, + 51;3; 0.000000, 0.826434, 0.000000;;, + 52;3; 0.000000, 0.826434, 0.000000;;, + 53;3; 0.000000, 0.826434, 0.000000;;, + 54;3; 0.000000, 0.826434, 0.000000;;, + 55;3; 0.000000, 0.826434, 0.000000;;, + 56;3; 0.000000, 0.826434, 0.000000;;, + 57;3; 0.000000, 0.826434, 0.000000;;, + 58;3; 0.000000, 0.826434, 0.000000;;, + 59;3; 0.000000, 0.826434, 0.000000;;, + 60;3; 0.000000, 0.826434, 0.000000;;, + 61;3; 0.000000, 0.826434, 0.000000;;, + 62;3; 0.000000, 0.826434, 0.000000;;, + 63;3; 0.000000, 0.826434, 0.000000;;, + 64;3; 0.000000, 0.826434, 0.000000;;, + 65;3; 0.000000, 0.826434, 0.000000;;, + 66;3; 0.000000, 0.826434, 0.000000;;, + 67;3; 0.000000, 0.826434, 0.000000;;, + 68;3; 0.000000, 0.826434, 0.000000;;, + 69;3; 0.000000, 0.826434, 0.000000;;, + 70;3; 0.000000, 0.826434, 0.000000;;, + 71;3; 0.000000, 0.826434, 0.000000;;, + 72;3; 0.000000, 0.826434, 0.000000;;, + 73;3; 0.000000, 0.826434, 0.000000;;, + 74;3; 0.000000, 0.826434, 0.000000;;, + 75;3; 0.000000, 0.826434, 0.000000;;, + 76;3; 0.000000, 0.826434, 0.000000;;, + 77;3; 0.000000, 0.826434, 0.000000;;, + 78;3; 0.000000, 0.826434, 0.000000;;, + 79;3; 0.000000, 0.826434, 0.000000;;, + 80;3; 0.000000, 0.826434, 0.000000;;, + 81;3; 0.000000, 0.826434, 0.000000;;, + 82;3; 0.000000, 0.826434, 0.000000;;, + 83;3; 0.000000, 0.826434, 0.000000;;, + 84;3; 0.000000, 0.826434, 0.000000;;, + 85;3; 0.000000, 0.826434, 0.000000;;, + 86;3; 0.000000, 0.826434, 0.000000;;, + 87;3; 0.000000, 0.826434, 0.000000;;, + 88;3; 0.000000, 0.826434, 0.000000;;, + 89;3; 0.000000, 0.826434, 0.000000;;, + 90;3; 0.000000, 0.826434, 0.000000;;, + 91;3; 0.000000, 0.826434, 0.000000;;, + 92;3; 0.000000, 0.826434, 0.000000;;, + 93;3; 0.000000, 0.826434, 0.000000;;, + 94;3; 0.000000, 0.826434, 0.000000;;, + 95;3; 0.000000, 0.826434, 0.000000;;, + 96;3; 0.000000, 0.826434, 0.000000;;, + 97;3; 0.000000, 0.826434, 0.000000;;, + 98;3; 0.000000, 0.826434, 0.000000;;, + 99;3; 0.000000, 0.826434, 0.000000;;, + 100;3; 0.000000, 0.826434, 0.000000;;, + 101;3; 0.000000, 0.826434, 0.000000;;, + 102;3; 0.000000, 0.826434, 0.000000;;, + 103;3; 0.000000, 0.826434, 0.000000;;, + 104;3; 0.000000, 0.826434, 0.000000;;, + 105;3; 0.000000, 0.826434, 0.000000;;, + 106;3; 0.000000, 0.826434, 0.000000;;, + 107;3; 0.000000, 0.826434, 0.000000;;, + 108;3; 0.000000, 0.826434, 0.000000;;, + 109;3; 0.000000, 0.826434, 0.000000;;, + 110;3; 0.000000, 0.826434, 0.000000;;, + 111;3; 0.000000, 0.826434, 0.000000;;, + 112;3; 0.000000, 0.826434, 0.000000;;, + 113;3; 0.000000, 0.826434, 0.000000;;, + 114;3; 0.000000, 0.826434, 0.000000;;, + 115;3; 0.000000, 0.826434, 0.000000;;, + 116;3; 0.000000, 0.826434, 0.000000;;, + 117;3; 0.000000, 0.826434, 0.000000;;, + 118;3; 0.000000, 0.826434, 0.000000;;, + 119;3; 0.000000, 0.826434, 0.000000;;, + 120;3; 0.000000, 0.826434, 0.000000;;, + 121;3; 0.000000, 0.826434, 0.000000;;, + 122;3; 0.000000, 0.826434, 0.000000;;, + 123;3; 0.000000, 0.826434, 0.000000;;, + 124;3; 0.000000, 0.826434, 0.000000;;, + 125;3; 0.000000, 0.826434, 0.000000;;, + 126;3; 0.000000, 0.826434, 0.000000;;, + 127;3; 0.000000, 0.826434, 0.000000;;, + 128;3; 0.000000, 0.826434, 0.000000;;, + 129;3; 0.000000, 0.826434, 0.000000;;, + 130;3; 0.000000, 0.826434, 0.000000;;, + 131;3; 0.000000, 0.826434, 0.000000;;, + 132;3; 0.000000, 0.826434, 0.000000;;, + 133;3; 0.000000, 0.826434, 0.000000;;, + 134;3; 0.000000, 0.826434, 0.000000;;, + 135;3; 0.000000, 0.826434, 0.000000;;, + 136;3; 0.000000, 0.826434, 0.000000;;, + 137;3; 0.000000, 0.826434, 0.000000;;, + 138;3; 0.000000, 0.826434, 0.000000;;, + 139;3; 0.000000, 0.826434, 0.000000;;, + 140;3; 0.000000, 0.826434, 0.000000;;, + 141;3; 0.000000, 0.826434, 0.000000;;, + 142;3; 0.000000, 0.826434, 0.000000;;, + 143;3; 0.000000, 0.826434, 0.000000;;, + 144;3; 0.000000, 0.826434, 0.000000;;, + 145;3; 0.000000, 0.826434, 0.000000;;, + 146;3; 0.000000, 0.826434, 0.000000;;, + 147;3; 0.000000, 0.826434, 0.000000;;, + 148;3; 0.000000, 0.826434, 0.000000;;, + 149;3; 0.000000, 0.826434, 0.000000;;, + 150;3; 0.000000, 0.826434, 0.000000;;, + 151;3; 0.000000, 0.826434, 0.000000;;, + 152;3; 0.000000, 0.826434, 0.000000;;, + 153;3; 0.000000, 0.826434, 0.000000;;, + 154;3; 0.000000, 0.826434, 0.000000;;, + 155;3; 0.000000, 0.826434, 0.000000;;, + 156;3; 0.000000, 0.826434, 0.000000;;, + 157;3; 0.000000, 0.826434, 0.000000;;, + 158;3; 0.000000, 0.826434, 0.000000;;, + 159;3; 0.000000, 0.826434, 0.000000;;, + 160;3; 0.000000, 0.826434, 0.000000;;, + 161;3; 0.000000, 0.826434, 0.000000;;, + 162;3; 0.000000, 0.826434, 0.000000;;, + 163;3; 0.000000, 0.826434, 0.000000;;, + 164;3; 0.000000, 0.826434, 0.000000;;, + 165;3; 0.000000, 0.826434, 0.000000;;, + 166;3; 0.000000, 0.826434, 0.000000;;, + 167;3; 0.000000, 0.826434, 0.000000;;, + 168;3; 0.000000, 0.826434, 0.000000;;, + 169;3; 0.000000, 0.826434, 0.000000;;, + 170;3; 0.000000, 0.826434, 0.000000;;, + 171;3; 0.000000, 0.826434, 0.000000;;, + 172;3; 0.000000, 0.826434, 0.000000;;, + 173;3; 0.000000, 0.826434, 0.000000;;, + 174;3; 0.000000, 0.826434, 0.000000;;, + 175;3; 0.000000, 0.826434, 0.000000;;, + 176;3; 0.000000, 0.826434, 0.000000;;, + 177;3; 0.000000, 0.826434, 0.000000;;, + 178;3; 0.000000, 0.826434, 0.000000;;, + 179;3; 0.000000, 0.826434, 0.000000;;, + 180;3; 0.000000, 0.826434, 0.000000;;, + 181;3; 0.000000, 0.826434, 0.000000;;, + 182;3; 0.000000, 0.826434, 0.000000;;, + 183;3; 0.000000, 0.826434, 0.000000;;, + 184;3; 0.000000, 0.826434, 0.000000;;, + 185;3; 0.000000, 0.826434, 0.000000;;, + 186;3;-0.000000, 0.826434,-0.000000;;, + 187;3;-0.000000, 0.826434,-0.000000;;, + 188;3;-0.000000, 0.826434, 0.000000;;, + 189;3;-0.000000, 0.826434, 0.000000;;, + 190;3;-0.000000, 0.826434,-0.000000;;, + 191;3; 0.000000, 0.826434, 0.000000;;, + 192;3; 0.000000, 0.826434, 0.000000;;, + 193;3; 0.000000, 0.826434, 0.000000;;, + 194;3; 0.000000, 0.826434,-0.000000;;, + 195;3; 0.000000, 0.826434,-0.000000;;, + 196;3; 0.000000, 0.826434, 0.000000;;, + 197;3; 0.000000, 0.826434,-0.000000;;, + 198;3; 0.000000, 0.826434,-0.000000;;, + 199;3; 0.000000, 0.826434, 0.000000;;, + 200;3; 0.000000, 0.826434, 0.000000;;, + 201;3; 0.000000, 0.826434, 0.000000;;, + 202;3; 0.000000, 0.826434, 0.000000;;, + 203;3; 0.000000, 0.826434, 0.000000;;, + 204;3; 0.000000, 0.826434, 0.000000;;, + 205;3; 0.000000, 0.826434, 0.000000;;, + 206;3; 0.000000, 0.826434, 0.000000;;, + 207;3; 0.000000, 0.826434, 0.000000;;, + 208;3; 0.000000, 0.826434, 0.000000;;, + 209;3; 0.000000, 0.826434, 0.000000;;, + 210;3;-0.000000, 0.826434, 0.000000;;, + 211;3;-0.000000, 0.826434, 0.000000;;, + 212;3; 0.000000, 0.826434,-0.000000;;, + 213;3; 0.000000, 0.826434, 0.000000;;, + 214;3; 0.000000, 0.826434, 0.000000;;, + 215;3;-0.000000, 0.826434,-0.000000;;, + 216;3;-0.000000, 0.826434,-0.000000;;, + 217;3;-0.000000, 0.826434,-0.000000;;, + 218;3;-0.000000, 0.826434, 0.000000;;, + 219;3;-0.000000, 0.826434,-0.000000;;, + 220;3;-0.000000, 0.826434, 0.000000;;, + 221;3; 0.000000, 0.826434, 0.000000;;, + 222;3;-0.000000, 0.826434, 0.000000;;, + 223;3; 0.000000, 0.826434,-0.000000;;, + 224;3; 0.000000, 0.826434,-0.000000;;, + 225;3; 0.000000, 0.826434, 0.000000;;, + 226;3; 0.000000, 0.826434, 0.000000;;, + 227;3; 0.000000, 0.826434, 0.000000;;, + 228;3;-0.000000, 0.826434, 0.000000;;, + 229;3; 0.000000, 0.826434, 0.000000;;, + 230;3; 0.000000, 0.826434, 0.000000;;, + 231;3; 0.000000, 0.826434,-0.000000;;, + 232;3;-0.000000, 0.826434,-0.000000;;, + 233;3; 0.000000, 0.826434, 0.000000;;, + 234;3; 0.000000, 0.826434, 0.000000;;, + 235;3; 0.000000, 0.826434, 0.000000;;, + 236;3; 0.000000, 0.826434, 0.000000;;, + 237;3; 0.000000, 0.826434, 0.000000;;, + 238;3; 0.000000, 0.826434, 0.000000;;, + 239;3; 0.000000, 0.826434, 0.000000;;, + 240;3; 0.000000, 0.826434, 0.000000;;, + 241;3; 0.000000, 0.826434, 0.000000;;, + 242;3; 0.000000, 0.826434, 0.000000;;, + 243;3; 0.000000, 0.826434, 0.000000;;, + 244;3; 0.000000, 0.826434, 0.000000;;, + 245;3; 0.000000, 0.826434, 0.000000;;, + 246;3; 0.000000, 0.826434, 0.000000;;, + 247;3; 0.000000, 0.826434, 0.000000;;, + 248;3; 0.000000, 0.826434, 0.000000;;, + 249;3; 0.000000, 0.826434, 0.000000;;; + } + } + Animation { + {Armature_Bone_032} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 1;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 2;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 3;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 4;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 5;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 6;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 7;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 8;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 9;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 10;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 11;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 12;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 13;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 14;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 15;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 16;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 17;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 18;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 19;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 20;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 21;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 22;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 23;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 24;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 25;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 26;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 27;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 28;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 29;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 30;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 31;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 32;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 33;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 34;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 35;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 36;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 37;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 38;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 39;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 40;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 41;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 42;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 43;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 44;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 45;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 46;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 47;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 48;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 49;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 50;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 51;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 52;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 53;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 54;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 55;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 56;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 57;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 58;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 59;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 60;4;-0.949096, 0.142195,-0.041751,-0.277852;;, + 61;4;-0.948920, 0.142900,-0.042317,-0.277727;;, + 62;4;-0.948624, 0.144079,-0.043263,-0.277519;;, + 63;4;-0.948207, 0.145735,-0.044593,-0.277227;;, + 64;4;-0.947669, 0.147867,-0.046306,-0.276852;;, + 65;4;-0.947010, 0.150475,-0.048399,-0.276393;;, + 66;4;-0.946229, 0.153552,-0.050870,-0.275853;;, + 67;4;-0.945329, 0.157089,-0.053711,-0.275232;;, + 68;4;-0.944312, 0.161076,-0.056912,-0.274534;;, + 69;4;-0.943180, 0.165496,-0.060461,-0.273761;;, + 70;4;-0.941937, 0.170329,-0.064342,-0.272917;;, + 71;4;-0.940589, 0.175552,-0.068535,-0.272007;;, + 72;4;-0.939141, 0.181135,-0.073018,-0.271036;;, + 73;4;-0.937601, 0.187046,-0.077765,-0.270011;;, + 74;4;-0.935977, 0.193248,-0.082745,-0.268937;;, + 75;4;-0.934278, 0.199699,-0.087925,-0.267824;;, + 76;4;-0.932514, 0.206355,-0.093269,-0.266679;;, + 77;4;-0.930696, 0.213167,-0.098739,-0.265511;;, + 78;4;-0.928837, 0.220084,-0.104293,-0.264329;;, + 79;4;-0.926947, 0.227055,-0.109891,-0.263143;;, + 80;4;-0.925041, 0.234026,-0.115488,-0.261963;;, + 81;4;-0.923130, 0.240943,-0.121042,-0.260797;;, + 82;4;-0.921227, 0.247755,-0.126512,-0.259656;;, + 83;4;-0.919344, 0.254411,-0.131856,-0.258549;;, + 84;4;-0.917494, 0.260862,-0.137036,-0.257484;;, + 85;4;-0.915687, 0.267064,-0.142016,-0.256469;;, + 86;4;-0.913934, 0.272975,-0.146763,-0.255511;;, + 87;4;-0.912243, 0.278558,-0.151246,-0.254618;;, + 88;4;-0.910624, 0.283781,-0.155440,-0.253794;;, + 89;4;-0.909085, 0.288614,-0.159321,-0.253044;;, + 90;4;-0.907630, 0.293034,-0.162870,-0.252374;;, + 91;4;-0.906267, 0.297021,-0.166071,-0.251786;;, + 92;4;-0.904999, 0.300558,-0.168911,-0.251282;;, + 93;4;-0.903830, 0.303635,-0.171382,-0.250865;;, + 94;4;-0.902762, 0.306243,-0.173476,-0.250536;;, + 95;4;-0.901798, 0.308376,-0.175188,-0.250296;;, + 96;4;-0.900939, 0.310031,-0.176518,-0.250145;;, + 97;4;-0.900186, 0.311210,-0.177465,-0.250082;;, + 98;4;-0.899538, 0.311915,-0.178030,-0.250108;;, + 99;4;-0.898995, 0.312148,-0.178218,-0.250221;;, + 100;4;-0.898529, 0.312129,-0.178203,-0.250369;;, + 101;4;-0.898123, 0.311974,-0.178083,-0.250505;;, + 102;4;-0.897787, 0.311500,-0.177714,-0.250629;;, + 103;4;-0.897530, 0.310471,-0.176914,-0.250749;;, + 104;4;-0.897357, 0.308645,-0.175495,-0.250872;;, + 105;4;-0.897262, 0.305821,-0.173300,-0.251008;;, + 106;4;-0.897234, 0.301902,-0.170254,-0.251163;;, + 107;4;-0.897256, 0.296905,-0.166370,-0.251343;;, + 108;4;-0.897310, 0.290929,-0.161726,-0.251548;;, + 109;4;-0.897382, 0.284118,-0.156432,-0.251780;;, + 110;4;-0.898747, 0.273071,-0.147731,-0.252739;;, + 111;4;-0.902699, 0.254348,-0.132832,-0.255133;;, + 112;4;-0.909075, 0.228623,-0.112274,-0.258866;;, + 113;4;-0.917385, 0.197595,-0.087420,-0.263660;;, + 114;4;-0.926782, 0.164061,-0.060520,-0.269037;;, + 115;4;-0.936168, 0.131524,-0.034396,-0.274379;;, + 116;4;-0.944448, 0.103387,-0.011788,-0.279075;;, + 117;4;-0.950774, 0.082185, 0.005254,-0.282655;;, + 118;4;-0.954664, 0.069283, 0.015629,-0.284852;;, + 119;4;-0.955956, 0.065028, 0.019051,-0.285581;;, + 120;4;-0.955563, 0.066732, 0.017692,-0.285338;;, + 121;4;-0.954344, 0.072023, 0.013468,-0.284581;;, + 122;4;-0.952272, 0.081011, 0.006293,-0.283294;;, + 123;4;-0.949401, 0.093468,-0.003651,-0.281512;;, + 124;4;-0.945885, 0.108719,-0.015825,-0.279330;;, + 125;4;-0.941975, 0.125685,-0.029369,-0.276902;;, + 126;4;-0.937957, 0.143116,-0.043284,-0.274408;;, + 127;4;-0.934091, 0.159888,-0.056672,-0.272008;;, + 128;4;-0.930562, 0.175196,-0.068893,-0.269817;;, + 129;4;-0.927475, 0.188588,-0.079583,-0.267901;;, + 130;4;-0.924471, 0.201980,-0.090274,-0.265959;;, + 131;4;-0.921176, 0.217289,-0.102494,-0.263694;;, + 132;4;-0.917661, 0.234061,-0.115883,-0.261182;;, + 133;4;-0.914046, 0.251492,-0.129797,-0.258560;;, + 134;4;-0.910502, 0.268458,-0.143341,-0.256016;;, + 135;4;-0.907216, 0.283709,-0.155515,-0.253760;;, + 136;4;-0.904353, 0.296166,-0.165459,-0.251975;;, + 137;4;-0.902014, 0.305154,-0.172634,-0.250774;;, + 138;4;-0.900233, 0.310445,-0.176858,-0.250195;;, + 139;4;-0.898995, 0.312148,-0.178218,-0.250221;;, + 140;4;-0.898123, 0.311974,-0.178083,-0.250505;;, + 141;4;-0.897530, 0.310471,-0.176914,-0.250749;;, + 142;4;-0.897262, 0.305821,-0.173300,-0.251008;;, + 143;4;-0.897256, 0.296905,-0.166370,-0.251343;;, + 144;4;-0.897382, 0.284118,-0.156432,-0.251780;;, + 145;4;-0.902699, 0.254348,-0.132832,-0.255133;;, + 146;4;-0.917385, 0.197595,-0.087420,-0.263660;;, + 147;4;-0.936168, 0.131524,-0.034396,-0.274379;;, + 148;4;-0.950774, 0.082185, 0.005254,-0.282655;;, + 149;4;-0.955956, 0.065028, 0.019051,-0.285581;;, + 150;4;-0.954344, 0.072023, 0.013468,-0.284581;;, + 151;4;-0.949401, 0.093468,-0.003651,-0.281512;;, + 152;4;-0.941975, 0.125685,-0.029369,-0.276902;;, + 153;4;-0.934091, 0.159888,-0.056672,-0.272008;;, + 154;4;-0.927475, 0.188588,-0.079583,-0.267901;;, + 155;4;-0.920860, 0.217289,-0.102494,-0.263794;;, + 156;4;-0.912976, 0.251492,-0.129797,-0.258900;;, + 157;4;-0.905550, 0.283709,-0.155515,-0.254290;;, + 158;4;-0.900607, 0.305154,-0.172634,-0.251222;;, + 159;4;-0.898995, 0.312148,-0.178218,-0.250221;;, + 160;4;-0.899067, 0.311331,-0.177426,-0.250438;;, + 161;4;-0.899300, 0.308853,-0.175036,-0.251091;;, + 162;4;-0.899718, 0.304693,-0.171046,-0.252173;;, + 163;4;-0.900348, 0.298860,-0.165486,-0.253668;;, + 164;4;-0.901216, 0.291407,-0.158432,-0.255547;;, + 165;4;-0.902351, 0.282435,-0.150013,-0.257764;;, + 166;4;-0.903778, 0.272102,-0.140414,-0.260257;;, + 167;4;-0.905517, 0.260628,-0.129879,-0.262947;;, + 168;4;-0.907585, 0.248287,-0.118706,-0.265742;;, + 169;4;-0.909990, 0.235399,-0.107237,-0.268537;;, + 170;4;-0.912732, 0.222312,-0.095830,-0.271225;;, + 171;4;-0.915799, 0.209379,-0.084846,-0.273702;;, + 172;4;-0.919176, 0.196934,-0.074620,-0.275871;;, + 173;4;-0.922838, 0.185277,-0.065442,-0.277653;;, + 174;4;-0.926757, 0.174656,-0.057547,-0.278984;;, + 175;4;-0.930901, 0.165262,-0.051111,-0.279821;;, + 176;4;-0.935242, 0.157231,-0.046250,-0.280136;;, + 177;4;-0.939749, 0.150648,-0.043030,-0.279918;;, + 178;4;-0.944395, 0.145556,-0.041472,-0.279167;;, + 179;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 180;4;-0.954518, 0.139515,-0.042405,-0.270968;;, + 181;4;-0.960866, 0.137907,-0.043202,-0.252919;;, + 182;4;-0.967873, 0.137142,-0.044137,-0.223867;;, + 183;4;-0.975010, 0.137137,-0.045453,-0.185135;;, + 184;4;-0.981564, 0.137702,-0.047429,-0.139501;;, + 185;4;-0.986775, 0.138557,-0.050318,-0.090916;;, + 186;4;-0.990019, 0.139394,-0.054279,-0.043627;;, + 187;4;-0.990935, 0.139945,-0.059354,-0.001187;;, + 188;4;-0.989443, 0.140032,-0.065480, 0.034094;;, + 189;4;-0.985659, 0.139563,-0.072538, 0.061125;;, + 190;4;-0.980508, 0.119290,-0.089264, 0.084006;;, + 191;4;-0.975169, 0.063621,-0.122264, 0.105452;;, + 192;4;-0.970614,-0.007498,-0.161096, 0.122203;;, + 193;4;-0.967784,-0.062775,-0.190236, 0.131887;;, + 194;4;-0.966901,-0.082381,-0.200394, 0.134754;;, + 195;4;-0.965323,-0.062440,-0.186275, 0.098075;;, + 196;4;-0.960880,-0.006270,-0.146509,-0.005241;;, + 197;4;-0.955175, 0.065851,-0.095448,-0.137898;;, + 198;4;-0.950732, 0.122020,-0.055682,-0.241213;;, + 199;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 200;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 201;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 202;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 203;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 204;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 205;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 206;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 207;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 208;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 209;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 210;4;-0.950140, 0.117902,-0.023048,-0.236905;;, + 211;4;-0.952917, 0.050135, 0.029104,-0.121455;;, + 212;4;-0.956481,-0.036878, 0.096066, 0.026782;;, + 213;4;-0.959257,-0.104645, 0.148218, 0.142232;;, + 214;4;-0.960243,-0.128704, 0.166733, 0.183220;;, + 215;4;-0.954031,-0.110732, 0.152406, 0.174908;;, + 216;4;-0.935179,-0.055631, 0.108478, 0.148819;;, + 217;4;-0.907333, 0.027147, 0.042486, 0.108131;;, + 218;4;-0.878560, 0.115028,-0.027574, 0.062451;;, + 219;4;-0.855470, 0.188772,-0.086363, 0.020805;;, + 220;4;-0.832827, 0.262515,-0.145153,-0.022245;;, + 221;4;-0.805794, 0.350396,-0.215213,-0.073392;;, + 222;4;-0.781470, 0.433174,-0.281205,-0.125154;;, + 223;4;-0.767871, 0.488276,-0.325132,-0.167760;;, + 224;4;-0.768086, 0.506247,-0.339459,-0.196277;;, + 225;4;-0.776053, 0.502670,-0.336535,-0.216535;;, + 226;4;-0.786327, 0.491858,-0.327692,-0.234363;;, + 227;4;-0.798824, 0.473866,-0.312980,-0.249568;;, + 228;4;-0.813340, 0.449070,-0.292703,-0.262010;;, + 229;4;-0.829521, 0.418253,-0.267502,-0.271631;;, + 230;4;-0.846859, 0.382659,-0.238395,-0.278491;;, + 231;4;-0.864697, 0.343979,-0.206764,-0.282793;;, + 232;4;-0.882287, 0.304230,-0.174259,-0.284885;;, + 233;4;-0.898866, 0.265550,-0.142628,-0.285229;;, + 234;4;-0.913742, 0.229956,-0.113521,-0.284352;;, + 235;4;-0.926365, 0.199138,-0.088320,-0.282783;;, + 236;4;-0.936356, 0.174343,-0.068043,-0.281002;;, + 237;4;-0.943509, 0.156351,-0.053330,-0.279406;;, + 238;4;-0.947760, 0.145538,-0.044488,-0.278298;;, + 239;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 240;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 241;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 242;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 243;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 244;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 245;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 246;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 247;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 248;4;-0.949155, 0.141962,-0.041563,-0.277893;;, + 249;4;-0.949155, 0.141962,-0.041563,-0.277893;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3;-0.000000, 0.690756,-0.000000;;, + 1;3;-0.000000, 0.690756,-0.000000;;, + 2;3;-0.000000, 0.690756,-0.000000;;, + 3;3;-0.000000, 0.690756,-0.000000;;, + 4;3;-0.000000, 0.690756,-0.000000;;, + 5;3;-0.000000, 0.690756,-0.000000;;, + 6;3;-0.000000, 0.690756,-0.000000;;, + 7;3;-0.000000, 0.690756,-0.000000;;, + 8;3;-0.000000, 0.690756,-0.000000;;, + 9;3;-0.000000, 0.690756,-0.000000;;, + 10;3;-0.000000, 0.690756,-0.000000;;, + 11;3;-0.000000, 0.690756,-0.000000;;, + 12;3;-0.000000, 0.690756,-0.000000;;, + 13;3;-0.000000, 0.690756,-0.000000;;, + 14;3;-0.000000, 0.690756,-0.000000;;, + 15;3;-0.000000, 0.690756,-0.000000;;, + 16;3;-0.000000, 0.690756,-0.000000;;, + 17;3;-0.000000, 0.690756,-0.000000;;, + 18;3;-0.000000, 0.690756,-0.000000;;, + 19;3;-0.000000, 0.690756,-0.000000;;, + 20;3;-0.000000, 0.690756,-0.000000;;, + 21;3;-0.000000, 0.690756,-0.000000;;, + 22;3;-0.000000, 0.690756,-0.000000;;, + 23;3;-0.000000, 0.690756,-0.000000;;, + 24;3;-0.000000, 0.690756,-0.000000;;, + 25;3;-0.000000, 0.690756,-0.000000;;, + 26;3;-0.000000, 0.690756,-0.000000;;, + 27;3;-0.000000, 0.690756,-0.000000;;, + 28;3;-0.000000, 0.690756,-0.000000;;, + 29;3;-0.000000, 0.690756,-0.000000;;, + 30;3;-0.000000, 0.690756,-0.000000;;, + 31;3;-0.000000, 0.690756,-0.000000;;, + 32;3;-0.000000, 0.690756,-0.000000;;, + 33;3;-0.000000, 0.690756,-0.000000;;, + 34;3;-0.000000, 0.690756,-0.000000;;, + 35;3;-0.000000, 0.690756,-0.000000;;, + 36;3;-0.000000, 0.690756,-0.000000;;, + 37;3;-0.000000, 0.690756,-0.000000;;, + 38;3;-0.000000, 0.690756,-0.000000;;, + 39;3;-0.000000, 0.690756,-0.000000;;, + 40;3;-0.000000, 0.690756,-0.000000;;, + 41;3;-0.000000, 0.690756,-0.000000;;, + 42;3;-0.000000, 0.690756,-0.000000;;, + 43;3;-0.000000, 0.690756,-0.000000;;, + 44;3;-0.000000, 0.690756,-0.000000;;, + 45;3;-0.000000, 0.690756,-0.000000;;, + 46;3;-0.000000, 0.690756,-0.000000;;, + 47;3;-0.000000, 0.690756,-0.000000;;, + 48;3;-0.000000, 0.690756,-0.000000;;, + 49;3;-0.000000, 0.690756,-0.000000;;, + 50;3;-0.000000, 0.690756,-0.000000;;, + 51;3;-0.000000, 0.690756,-0.000000;;, + 52;3;-0.000000, 0.690756,-0.000000;;, + 53;3;-0.000000, 0.690756,-0.000000;;, + 54;3;-0.000000, 0.690756,-0.000000;;, + 55;3;-0.000000, 0.690756,-0.000000;;, + 56;3;-0.000000, 0.690756,-0.000000;;, + 57;3;-0.000000, 0.690756,-0.000000;;, + 58;3;-0.000000, 0.690756,-0.000000;;, + 59;3;-0.000000, 0.690756,-0.000000;;, + 60;3;-0.000000, 0.690756,-0.000000;;, + 61;3;-0.000000, 0.690756,-0.000000;;, + 62;3;-0.000000, 0.690756,-0.000000;;, + 63;3;-0.000000, 0.690756,-0.000000;;, + 64;3;-0.000000, 0.690756,-0.000000;;, + 65;3;-0.000000, 0.690756,-0.000000;;, + 66;3;-0.000000, 0.690756,-0.000000;;, + 67;3;-0.000000, 0.690756,-0.000000;;, + 68;3;-0.000000, 0.690756,-0.000000;;, + 69;3;-0.000000, 0.690756,-0.000000;;, + 70;3;-0.000000, 0.690756,-0.000000;;, + 71;3;-0.000000, 0.690756,-0.000000;;, + 72;3;-0.000000, 0.690756,-0.000000;;, + 73;3;-0.000000, 0.690756,-0.000000;;, + 74;3;-0.000000, 0.690756,-0.000000;;, + 75;3;-0.000000, 0.690756,-0.000000;;, + 76;3;-0.000000, 0.690756,-0.000000;;, + 77;3;-0.000000, 0.690756,-0.000000;;, + 78;3;-0.000000, 0.690756,-0.000000;;, + 79;3;-0.000000, 0.690756,-0.000000;;, + 80;3;-0.000000, 0.690756,-0.000000;;, + 81;3;-0.000000, 0.690756,-0.000000;;, + 82;3;-0.000000, 0.690756,-0.000000;;, + 83;3;-0.000000, 0.690756,-0.000000;;, + 84;3;-0.000000, 0.690756,-0.000000;;, + 85;3;-0.000000, 0.690756,-0.000000;;, + 86;3;-0.000000, 0.690756,-0.000000;;, + 87;3;-0.000000, 0.690756,-0.000000;;, + 88;3;-0.000000, 0.690756,-0.000000;;, + 89;3;-0.000000, 0.690756,-0.000000;;, + 90;3;-0.000000, 0.690756,-0.000000;;, + 91;3;-0.000000, 0.690756,-0.000000;;, + 92;3;-0.000000, 0.690756,-0.000000;;, + 93;3;-0.000000, 0.690756,-0.000000;;, + 94;3;-0.000000, 0.690756,-0.000000;;, + 95;3;-0.000000, 0.690756,-0.000000;;, + 96;3;-0.000000, 0.690756,-0.000000;;, + 97;3;-0.000000, 0.690756,-0.000000;;, + 98;3;-0.000000, 0.690756,-0.000000;;, + 99;3;-0.000000, 0.690756,-0.000000;;, + 100;3;-0.000000, 0.690756,-0.000000;;, + 101;3;-0.000000, 0.690756,-0.000000;;, + 102;3;-0.000000, 0.690756,-0.000000;;, + 103;3;-0.000000, 0.690756,-0.000000;;, + 104;3;-0.000000, 0.690756,-0.000000;;, + 105;3;-0.000000, 0.690756,-0.000000;;, + 106;3;-0.000000, 0.690756,-0.000000;;, + 107;3;-0.000000, 0.690756,-0.000000;;, + 108;3;-0.000000, 0.690756,-0.000000;;, + 109;3;-0.000000, 0.690756,-0.000000;;, + 110;3;-0.000000, 0.690756,-0.000000;;, + 111;3;-0.000000, 0.690756,-0.000000;;, + 112;3;-0.000000, 0.690756,-0.000000;;, + 113;3;-0.000000, 0.690756,-0.000000;;, + 114;3;-0.000000, 0.690756,-0.000000;;, + 115;3;-0.000000, 0.690756,-0.000000;;, + 116;3;-0.000000, 0.690756,-0.000000;;, + 117;3;-0.000000, 0.690756,-0.000000;;, + 118;3;-0.000000, 0.690756,-0.000000;;, + 119;3;-0.000000, 0.690756,-0.000000;;, + 120;3;-0.000000, 0.690756,-0.000000;;, + 121;3;-0.000000, 0.690756,-0.000000;;, + 122;3;-0.000000, 0.690756,-0.000000;;, + 123;3;-0.000000, 0.690756,-0.000000;;, + 124;3;-0.000000, 0.690756,-0.000000;;, + 125;3;-0.000000, 0.690756,-0.000000;;, + 126;3;-0.000000, 0.690756,-0.000000;;, + 127;3;-0.000000, 0.690756,-0.000000;;, + 128;3;-0.000000, 0.690756,-0.000000;;, + 129;3;-0.000000, 0.690756,-0.000000;;, + 130;3;-0.000000, 0.690756,-0.000000;;, + 131;3;-0.000000, 0.690756,-0.000000;;, + 132;3;-0.000000, 0.690756,-0.000000;;, + 133;3;-0.000000, 0.690756,-0.000000;;, + 134;3;-0.000000, 0.690756,-0.000000;;, + 135;3;-0.000000, 0.690756,-0.000000;;, + 136;3;-0.000000, 0.690756,-0.000000;;, + 137;3;-0.000000, 0.690756,-0.000000;;, + 138;3;-0.000000, 0.690756,-0.000000;;, + 139;3;-0.000000, 0.690756,-0.000000;;, + 140;3;-0.000000, 0.690756,-0.000000;;, + 141;3;-0.000000, 0.690756,-0.000000;;, + 142;3;-0.000000, 0.690756,-0.000000;;, + 143;3;-0.000000, 0.690756,-0.000000;;, + 144;3;-0.000000, 0.690756,-0.000000;;, + 145;3;-0.000000, 0.690756,-0.000000;;, + 146;3;-0.000000, 0.690756,-0.000000;;, + 147;3;-0.000000, 0.690756,-0.000000;;, + 148;3;-0.000000, 0.690756,-0.000000;;, + 149;3;-0.000000, 0.690756,-0.000000;;, + 150;3;-0.000000, 0.690756,-0.000000;;, + 151;3;-0.000000, 0.690756,-0.000000;;, + 152;3;-0.000000, 0.690756,-0.000000;;, + 153;3;-0.000000, 0.690756,-0.000000;;, + 154;3;-0.000000, 0.690756,-0.000000;;, + 155;3;-0.000000, 0.690756,-0.000000;;, + 156;3;-0.000000, 0.690756,-0.000000;;, + 157;3;-0.000000, 0.690756,-0.000000;;, + 158;3;-0.000000, 0.690756,-0.000000;;, + 159;3;-0.000000, 0.690756,-0.000000;;, + 160;3;-0.000000, 0.690756,-0.000000;;, + 161;3;-0.000000, 0.690756,-0.000000;;, + 162;3;-0.000000, 0.690756,-0.000000;;, + 163;3;-0.000000, 0.690756,-0.000000;;, + 164;3;-0.000000, 0.690756,-0.000000;;, + 165;3;-0.000000, 0.690756,-0.000000;;, + 166;3;-0.000000, 0.690756,-0.000000;;, + 167;3;-0.000000, 0.690756,-0.000000;;, + 168;3;-0.000000, 0.690756,-0.000000;;, + 169;3;-0.000000, 0.690756,-0.000000;;, + 170;3;-0.000000, 0.690756,-0.000000;;, + 171;3;-0.000000, 0.690756,-0.000000;;, + 172;3;-0.000000, 0.690756,-0.000000;;, + 173;3;-0.000000, 0.690756,-0.000000;;, + 174;3;-0.000000, 0.690756,-0.000000;;, + 175;3;-0.000000, 0.690756,-0.000000;;, + 176;3;-0.000000, 0.690756,-0.000000;;, + 177;3;-0.000000, 0.690756,-0.000000;;, + 178;3;-0.000000, 0.690756,-0.000000;;, + 179;3;-0.000000, 0.690756,-0.000000;;, + 180;3; 0.000000, 0.690756, 0.000000;;, + 181;3; 0.000000, 0.690756, 0.000000;;, + 182;3; 0.000000, 0.690756,-0.000000;;, + 183;3; 0.000000, 0.690756, 0.000000;;, + 184;3; 0.000000, 0.690756, 0.000000;;, + 185;3; 0.000000, 0.690756, 0.000000;;, + 186;3; 0.000000, 0.690756, 0.000000;;, + 187;3; 0.000000, 0.690756, 0.000000;;, + 188;3; 0.000000, 0.690756, 0.000000;;, + 189;3; 0.000000, 0.690756, 0.000000;;, + 190;3; 0.000000, 0.690756,-0.000001;;, + 191;3;-0.000000, 0.690756,-0.000000;;, + 192;3;-0.000000, 0.690756, 0.000000;;, + 193;3; 0.000000, 0.690756,-0.000000;;, + 194;3; 0.000000, 0.690756, 0.000000;;, + 195;3; 0.000000, 0.690756,-0.000000;;, + 196;3; 0.000000, 0.690756,-0.000000;;, + 197;3;-0.000000, 0.690756, 0.000000;;, + 198;3;-0.000000, 0.690756,-0.000000;;, + 199;3;-0.000000, 0.690756,-0.000000;;, + 200;3;-0.000000, 0.690756,-0.000000;;, + 201;3;-0.000000, 0.690756,-0.000000;;, + 202;3;-0.000000, 0.690756,-0.000000;;, + 203;3;-0.000000, 0.690756,-0.000000;;, + 204;3;-0.000000, 0.690756,-0.000000;;, + 205;3;-0.000000, 0.690756,-0.000000;;, + 206;3;-0.000000, 0.690756,-0.000000;;, + 207;3;-0.000000, 0.690756,-0.000000;;, + 208;3;-0.000000, 0.690756,-0.000000;;, + 209;3;-0.000000, 0.690756,-0.000000;;, + 210;3; 0.000000, 0.690756,-0.000000;;, + 211;3; 0.000000, 0.690756,-0.000000;;, + 212;3;-0.000000, 0.690756, 0.000000;;, + 213;3; 0.000000, 0.690756, 0.000000;;, + 214;3; 0.000000, 0.690756, 0.000000;;, + 215;3; 0.000000, 0.690756,-0.000000;;, + 216;3; 0.000000, 0.690756, 0.000000;;, + 217;3; 0.000000, 0.690756, 0.000000;;, + 218;3; 0.000000, 0.690756, 0.000000;;, + 219;3; 0.000000, 0.690756,-0.000000;;, + 220;3; 0.000000, 0.690756, 0.000000;;, + 221;3; 0.000000, 0.690756, 0.000000;;, + 222;3;-0.000000, 0.690756,-0.000000;;, + 223;3;-0.000000, 0.690756,-0.000000;;, + 224;3;-0.000000, 0.690756,-0.000000;;, + 225;3;-0.000000, 0.690756,-0.000000;;, + 226;3; 0.000000, 0.690756,-0.000000;;, + 227;3;-0.000000, 0.690756,-0.000000;;, + 228;3; 0.000000, 0.690756, 0.000000;;, + 229;3;-0.000000, 0.690756,-0.000000;;, + 230;3; 0.000000, 0.690757, 0.000000;;, + 231;3;-0.000000, 0.690756,-0.000000;;, + 232;3; 0.000000, 0.690756,-0.000000;;, + 233;3; 0.000000, 0.690756,-0.000000;;, + 234;3;-0.000000, 0.690756,-0.000000;;, + 235;3;-0.000000, 0.690756,-0.000000;;, + 236;3;-0.000000, 0.690756, 0.000000;;, + 237;3; 0.000000, 0.690756, 0.000000;;, + 238;3; 0.000000, 0.690756,-0.000000;;, + 239;3;-0.000000, 0.690756,-0.000000;;, + 240;3;-0.000000, 0.690756,-0.000000;;, + 241;3;-0.000000, 0.690756,-0.000000;;, + 242;3;-0.000000, 0.690756,-0.000000;;, + 243;3;-0.000000, 0.690756,-0.000000;;, + 244;3;-0.000000, 0.690756,-0.000000;;, + 245;3;-0.000000, 0.690756,-0.000000;;, + 246;3;-0.000000, 0.690756,-0.000000;;, + 247;3;-0.000000, 0.690756,-0.000000;;, + 248;3;-0.000000, 0.690756,-0.000000;;, + 249;3;-0.000000, 0.690756,-0.000000;;; + } + } + Animation { + {Armature_Bone_036} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 1;4;-0.946895,-0.321507, 0.000140, 0.000004;;, + 2;4;-0.946528,-0.322483, 0.000562, 0.000017;;, + 3;4;-0.945914,-0.324114, 0.001268, 0.000038;;, + 4;4;-0.945059,-0.326387, 0.002252, 0.000068;;, + 5;4;-0.943975,-0.329269, 0.003499, 0.000105;;, + 6;4;-0.942684,-0.332700, 0.004985, 0.000150;;, + 7;4;-0.941217,-0.336599, 0.006672, 0.000201;;, + 8;4;-0.939615,-0.340856, 0.008515, 0.000256;;, + 9;4;-0.937930,-0.345337, 0.010454, 0.000314;;, + 10;4;-0.936215,-0.349894, 0.012427, 0.000373;;, + 11;4;-0.934529,-0.354375, 0.014366, 0.000432;;, + 12;4;-0.932927,-0.358632, 0.016209, 0.000487;;, + 13;4;-0.931460,-0.362531, 0.017896, 0.000538;;, + 14;4;-0.930169,-0.365962, 0.019382, 0.000583;;, + 15;4;-0.929085,-0.368844, 0.020629, 0.000620;;, + 16;4;-0.928230,-0.371117, 0.021612, 0.000650;;, + 17;4;-0.927616,-0.372748, 0.022319, 0.000671;;, + 18;4;-0.927249,-0.373724, 0.022741, 0.000684;;, + 19;4;-0.927127,-0.374047, 0.022881, 0.000688;;, + 20;4;-0.927161,-0.373958, 0.022842, 0.000687;;, + 21;4;-0.927264,-0.373683, 0.022723, 0.000683;;, + 22;4;-0.927440,-0.373216, 0.022521, 0.000677;;, + 23;4;-0.927690,-0.372551, 0.022233, 0.000668;;, + 24;4;-0.928015,-0.371687, 0.021859, 0.000657;;, + 25;4;-0.928414,-0.370628, 0.021401, 0.000643;;, + 26;4;-0.928883,-0.369382, 0.020862, 0.000627;;, + 27;4;-0.929416,-0.367963, 0.020248, 0.000609;;, + 28;4;-0.930007,-0.366394, 0.019568, 0.000588;;, + 29;4;-0.930644,-0.364701, 0.018836, 0.000566;;, + 30;4;-0.931315,-0.362916, 0.018063, 0.000543;;, + 31;4;-0.932009,-0.361072, 0.017265, 0.000519;;, + 32;4;-0.932712,-0.359203, 0.016456, 0.000495;;, + 33;4;-0.933412,-0.357343, 0.015651, 0.000470;;, + 34;4;-0.934099,-0.355519, 0.014861, 0.000447;;, + 35;4;-0.934762,-0.353755, 0.014098, 0.000424;;, + 36;4;-0.935396,-0.352071, 0.013369, 0.000402;;, + 37;4;-0.935994,-0.350480, 0.012680, 0.000381;;, + 38;4;-0.936554,-0.348993, 0.012037, 0.000362;;, + 39;4;-0.937072,-0.347615, 0.011440, 0.000344;;, + 40;4;-0.937590,-0.346238, 0.010844, 0.000326;;, + 41;4;-0.938150,-0.344751, 0.010200, 0.000307;;, + 42;4;-0.938748,-0.343160, 0.009512, 0.000286;;, + 43;4;-0.939382,-0.341476, 0.008783, 0.000264;;, + 44;4;-0.940046,-0.339712, 0.008020, 0.000241;;, + 45;4;-0.940732,-0.337888, 0.007230, 0.000217;;, + 46;4;-0.941432,-0.336028, 0.006425, 0.000193;;, + 47;4;-0.942135,-0.334159, 0.005616, 0.000169;;, + 48;4;-0.942829,-0.332315, 0.004818, 0.000145;;, + 49;4;-0.943501,-0.330530, 0.004045, 0.000122;;, + 50;4;-0.944138,-0.328837, 0.003312, 0.000100;;, + 51;4;-0.944728,-0.327267, 0.002633, 0.000079;;, + 52;4;-0.945262,-0.325849, 0.002019, 0.000061;;, + 53;4;-0.945731,-0.324603, 0.001480, 0.000044;;, + 54;4;-0.946129,-0.323543, 0.001021, 0.000031;;, + 55;4;-0.946454,-0.322680, 0.000648, 0.000019;;, + 56;4;-0.946704,-0.322015, 0.000360, 0.000011;;, + 57;4;-0.946880,-0.321548, 0.000158, 0.000005;;, + 58;4;-0.946983,-0.321273, 0.000039, 0.000001;;, + 59;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 60;4;-0.946872,-0.321473, 0.000130, 0.000004;;, + 61;4;-0.946436,-0.322344, 0.000521, 0.000016;;, + 62;4;-0.945706,-0.323803, 0.001176, 0.000035;;, + 63;4;-0.944680,-0.325852, 0.002096, 0.000063;;, + 64;4;-0.943358,-0.328492, 0.003281, 0.000099;;, + 65;4;-0.941743,-0.331718, 0.004730, 0.000142;;, + 66;4;-0.939837,-0.335526, 0.006440, 0.000194;;, + 67;4;-0.937645,-0.339903, 0.008405, 0.000253;;, + 68;4;-0.935175,-0.344836, 0.010621, 0.000319;;, + 69;4;-0.932437,-0.350305, 0.013076, 0.000393;;, + 70;4;-0.929443,-0.356286, 0.015762, 0.000474;;, + 71;4;-0.926208,-0.362749, 0.018664, 0.000561;;, + 72;4;-0.922749,-0.369658, 0.021766, 0.000654;;, + 73;4;-0.919087,-0.376973, 0.025051, 0.000753;;, + 74;4;-0.915244,-0.384647, 0.028496, 0.000857;;, + 75;4;-0.911248,-0.392630, 0.032081, 0.000964;;, + 76;4;-0.907124,-0.400866, 0.035779, 0.001075;;, + 77;4;-0.902904,-0.409295, 0.039564, 0.001189;;, + 78;4;-0.898619,-0.417855, 0.043408, 0.001305;;, + 79;4;-0.894301,-0.426480, 0.047281, 0.001421;;, + 80;4;-0.889982,-0.435106, 0.051154, 0.001538;;, + 81;4;-0.885697,-0.443666, 0.054997, 0.001653;;, + 82;4;-0.881477,-0.452095, 0.058782, 0.001767;;, + 83;4;-0.877353,-0.460331, 0.062480, 0.001878;;, + 84;4;-0.873357,-0.468314, 0.066065, 0.001986;;, + 85;4;-0.869515,-0.475988, 0.069511, 0.002089;;, + 86;4;-0.865853,-0.483303, 0.072795, 0.002188;;, + 87;4;-0.862394,-0.490212, 0.075898, 0.002281;;, + 88;4;-0.859158,-0.496674, 0.078799, 0.002368;;, + 89;4;-0.856164,-0.502655, 0.081485, 0.002449;;, + 90;4;-0.853426,-0.508124, 0.083941, 0.002523;;, + 91;4;-0.850956,-0.513057, 0.086156, 0.002590;;, + 92;4;-0.848764,-0.517435, 0.088122, 0.002649;;, + 93;4;-0.846858,-0.521242, 0.089831, 0.002700;;, + 94;4;-0.845243,-0.524469, 0.091280, 0.002744;;, + 95;4;-0.843921,-0.527108, 0.092465, 0.002779;;, + 96;4;-0.842896,-0.529157, 0.093385, 0.002807;;, + 97;4;-0.842165,-0.530616, 0.094040, 0.002827;;, + 98;4;-0.841729,-0.531488, 0.094432, 0.002838;;, + 99;4;-0.841584,-0.531777, 0.094561, 0.002842;;, + 100;4;-0.842588,-0.529085, 0.093397, 0.002807;;, + 101;4;-0.845705,-0.520721, 0.089781, 0.002699;;, + 102;4;-0.851001,-0.506515, 0.083639, 0.002514;;, + 103;4;-0.858341,-0.486826, 0.075126, 0.002258;;, + 104;4;-0.867326,-0.462721, 0.064703, 0.001945;;, + 105;4;-0.877323,-0.435904, 0.053108, 0.001596;;, + 106;4;-0.887593,-0.408353, 0.041196, 0.001238;;, + 107;4;-0.897475,-0.381844, 0.029734, 0.000894;;, + 108;4;-0.906495,-0.357647, 0.019272, 0.000579;;, + 109;4;-0.914386,-0.336481, 0.010120, 0.000304;;, + 110;4;-0.922276,-0.315314, 0.000968, 0.000029;;, + 111;4;-0.931296,-0.291117,-0.009494,-0.000285;;, + 112;4;-0.941178,-0.264608,-0.020956,-0.000630;;, + 113;4;-0.951448,-0.237057,-0.032869,-0.000988;;, + 114;4;-0.961445,-0.210240,-0.044464,-0.001336;;, + 115;4;-0.970431,-0.186135,-0.054886,-0.001650;;, + 116;4;-0.977770,-0.166446,-0.063399,-0.001906;;, + 117;4;-0.983066,-0.152240,-0.069542,-0.002090;;, + 118;4;-0.986184,-0.143877,-0.073158,-0.002199;;, + 119;4;-0.987187,-0.141184,-0.074322,-0.002234;;, + 120;4;-0.986184,-0.143877,-0.073158,-0.002199;;, + 121;4;-0.983066,-0.152240,-0.069542,-0.002090;;, + 122;4;-0.977770,-0.166446,-0.063399,-0.001906;;, + 123;4;-0.970431,-0.186135,-0.054886,-0.001650;;, + 124;4;-0.961445,-0.210240,-0.044464,-0.001336;;, + 125;4;-0.951448,-0.237057,-0.032869,-0.000988;;, + 126;4;-0.941178,-0.264608,-0.020956,-0.000630;;, + 127;4;-0.931296,-0.291117,-0.009494,-0.000285;;, + 128;4;-0.922276,-0.315314, 0.000968, 0.000029;;, + 129;4;-0.914386,-0.336481, 0.010120, 0.000304;;, + 130;4;-0.906495,-0.357647, 0.019272, 0.000579;;, + 131;4;-0.897475,-0.381844, 0.029734, 0.000894;;, + 132;4;-0.887593,-0.408353, 0.041196, 0.001238;;, + 133;4;-0.877323,-0.435904, 0.053108, 0.001596;;, + 134;4;-0.867326,-0.462721, 0.064703, 0.001945;;, + 135;4;-0.858341,-0.486826, 0.075126, 0.002258;;, + 136;4;-0.851001,-0.506515, 0.083639, 0.002514;;, + 137;4;-0.845705,-0.520721, 0.089781, 0.002699;;, + 138;4;-0.842588,-0.529085, 0.093397, 0.002807;;, + 139;4;-0.841584,-0.531777, 0.094561, 0.002842;;, + 140;4;-0.845705,-0.520721, 0.089781, 0.002699;;, + 141;4;-0.858341,-0.486826, 0.075126, 0.002258;;, + 142;4;-0.877323,-0.435904, 0.053108, 0.001596;;, + 143;4;-0.897475,-0.381844, 0.029734, 0.000894;;, + 144;4;-0.914386,-0.336481, 0.010120, 0.000304;;, + 145;4;-0.931296,-0.291117,-0.009494,-0.000285;;, + 146;4;-0.951448,-0.237057,-0.032869,-0.000988;;, + 147;4;-0.970431,-0.186135,-0.054886,-0.001650;;, + 148;4;-0.983066,-0.152240,-0.069542,-0.002090;;, + 149;4;-0.987187,-0.141184,-0.074322,-0.002234;;, + 150;4;-0.983066,-0.152240,-0.069542,-0.002090;;, + 151;4;-0.970431,-0.186135,-0.054886,-0.001650;;, + 152;4;-0.951448,-0.237057,-0.032869,-0.000988;;, + 153;4;-0.931296,-0.291117,-0.009494,-0.000285;;, + 154;4;-0.914386,-0.336481, 0.010120, 0.000304;;, + 155;4;-0.897475,-0.381844, 0.029734, 0.000894;;, + 156;4;-0.877323,-0.435904, 0.053108, 0.001596;;, + 157;4;-0.858341,-0.486826, 0.075126, 0.002258;;, + 158;4;-0.845705,-0.520721, 0.089781, 0.002699;;, + 159;4;-0.841584,-0.531777, 0.094561, 0.002842;;, + 160;4;-0.842165,-0.530616, 0.094040, 0.002827;;, + 161;4;-0.843921,-0.527108, 0.092465, 0.002779;;, + 162;4;-0.846858,-0.521242, 0.089831, 0.002700;;, + 163;4;-0.850956,-0.513057, 0.086156, 0.002590;;, + 164;4;-0.856164,-0.502655, 0.081485, 0.002449;;, + 165;4;-0.862394,-0.490212, 0.075898, 0.002281;;, + 166;4;-0.869515,-0.475988, 0.069511, 0.002089;;, + 167;4;-0.877353,-0.460331, 0.062480, 0.001878;;, + 168;4;-0.885697,-0.443666, 0.054997, 0.001653;;, + 169;4;-0.894301,-0.426480, 0.047281, 0.001421;;, + 170;4;-0.902904,-0.409295, 0.039564, 0.001189;;, + 171;4;-0.911248,-0.392630, 0.032081, 0.000964;;, + 172;4;-0.919087,-0.376973, 0.025051, 0.000753;;, + 173;4;-0.926208,-0.362749, 0.018664, 0.000561;;, + 174;4;-0.932437,-0.350305, 0.013076, 0.000393;;, + 175;4;-0.937645,-0.339903, 0.008405, 0.000253;;, + 176;4;-0.941743,-0.331718, 0.004730, 0.000142;;, + 177;4;-0.944680,-0.325852, 0.002096, 0.000063;;, + 178;4;-0.946436,-0.322344, 0.000521, 0.000016;;, + 179;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 180;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 181;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 182;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 183;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 184;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 185;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 186;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 187;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 188;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 189;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 190;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 191;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 192;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 193;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 194;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 195;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 196;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 197;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 198;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 199;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 200;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 201;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 202;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 203;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 204;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 205;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 206;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 207;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 208;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 209;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 210;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 211;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 212;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 213;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 214;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 215;4;-0.947920,-0.317686,-0.001460,-0.000044;;, + 216;4;-0.950689,-0.306963,-0.005937,-0.000178;;, + 217;4;-0.954848,-0.290854,-0.012662,-0.000381;;, + 218;4;-0.959263,-0.273751,-0.019801,-0.000595;;, + 219;4;-0.962969,-0.259400,-0.025792,-0.000775;;, + 220;4;-0.966674,-0.245049,-0.031783,-0.000955;;, + 221;4;-0.971089,-0.227947,-0.038923,-0.001170;;, + 222;4;-0.975249,-0.211837,-0.045648,-0.001372;;, + 223;4;-0.978017,-0.201114,-0.050124,-0.001507;;, + 224;4;-0.978920,-0.197616,-0.051584,-0.001550;;, + 225;4;-0.978607,-0.198830,-0.051078,-0.001535;;, + 226;4;-0.977660,-0.202497,-0.049547,-0.001489;;, + 227;4;-0.976084,-0.208600,-0.046999,-0.001413;;, + 228;4;-0.973913,-0.217011,-0.043488,-0.001307;;, + 229;4;-0.971214,-0.227465,-0.039124,-0.001176;;, + 230;4;-0.968097,-0.239538,-0.034084,-0.001024;;, + 231;4;-0.964709,-0.252659,-0.028606,-0.000860;;, + 232;4;-0.961228,-0.266142,-0.022978,-0.000691;;, + 233;4;-0.957841,-0.279262,-0.017501,-0.000526;;, + 234;4;-0.954723,-0.291336,-0.012460,-0.000375;;, + 235;4;-0.952024,-0.301789,-0.008096,-0.000243;;, + 236;4;-0.949853,-0.310200,-0.004585,-0.000138;;, + 237;4;-0.948277,-0.316303,-0.002038,-0.000061;;, + 238;4;-0.947330,-0.319970,-0.000507,-0.000015;;, + 239;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 240;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 241;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 242;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 243;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 244;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 245;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 246;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 247;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 248;4;-0.947017,-0.321184,-0.000000,-0.000000;;, + 249;4;-0.947017,-0.321184,-0.000000,-0.000000;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3;-0.000000, 1.279915,-0.000000;;, + 1;3;-0.000000, 1.279915,-0.000000;;, + 2;3;-0.000000, 1.279915,-0.000000;;, + 3;3;-0.000000, 1.279915,-0.000000;;, + 4;3;-0.000000, 1.279915,-0.000000;;, + 5;3;-0.000000, 1.279915,-0.000000;;, + 6;3;-0.000000, 1.279915,-0.000000;;, + 7;3;-0.000000, 1.279915,-0.000000;;, + 8;3;-0.000000, 1.279915,-0.000000;;, + 9;3;-0.000000, 1.279915,-0.000000;;, + 10;3;-0.000000, 1.279915,-0.000000;;, + 11;3;-0.000000, 1.279915,-0.000000;;, + 12;3;-0.000000, 1.279915,-0.000000;;, + 13;3;-0.000000, 1.279915,-0.000000;;, + 14;3;-0.000000, 1.279915,-0.000000;;, + 15;3;-0.000000, 1.279915,-0.000000;;, + 16;3;-0.000000, 1.279915,-0.000000;;, + 17;3;-0.000000, 1.279915,-0.000000;;, + 18;3;-0.000000, 1.279915,-0.000000;;, + 19;3;-0.000000, 1.279915,-0.000000;;, + 20;3;-0.000000, 1.279915,-0.000000;;, + 21;3;-0.000000, 1.279915,-0.000000;;, + 22;3;-0.000000, 1.279915,-0.000000;;, + 23;3;-0.000000, 1.279915,-0.000000;;, + 24;3;-0.000000, 1.279915,-0.000000;;, + 25;3;-0.000000, 1.279915,-0.000000;;, + 26;3;-0.000000, 1.279915,-0.000000;;, + 27;3;-0.000000, 1.279915,-0.000000;;, + 28;3;-0.000000, 1.279915,-0.000000;;, + 29;3;-0.000000, 1.279915,-0.000000;;, + 30;3;-0.000000, 1.279915,-0.000000;;, + 31;3;-0.000000, 1.279915,-0.000000;;, + 32;3;-0.000000, 1.279915,-0.000000;;, + 33;3;-0.000000, 1.279915,-0.000000;;, + 34;3;-0.000000, 1.279915,-0.000000;;, + 35;3;-0.000000, 1.279915,-0.000000;;, + 36;3;-0.000000, 1.279915,-0.000000;;, + 37;3;-0.000000, 1.279915,-0.000000;;, + 38;3;-0.000000, 1.279915,-0.000000;;, + 39;3;-0.000000, 1.279915,-0.000000;;, + 40;3;-0.000000, 1.279915,-0.000000;;, + 41;3;-0.000000, 1.279915,-0.000000;;, + 42;3;-0.000000, 1.279915,-0.000000;;, + 43;3;-0.000000, 1.279915,-0.000000;;, + 44;3;-0.000000, 1.279915,-0.000000;;, + 45;3;-0.000000, 1.279915,-0.000000;;, + 46;3;-0.000000, 1.279915,-0.000000;;, + 47;3;-0.000000, 1.279915,-0.000000;;, + 48;3;-0.000000, 1.279915,-0.000000;;, + 49;3;-0.000000, 1.279915,-0.000000;;, + 50;3;-0.000000, 1.279915,-0.000000;;, + 51;3;-0.000000, 1.279915,-0.000000;;, + 52;3;-0.000000, 1.279915,-0.000000;;, + 53;3;-0.000000, 1.279915,-0.000000;;, + 54;3;-0.000000, 1.279915,-0.000000;;, + 55;3;-0.000000, 1.279915,-0.000000;;, + 56;3;-0.000000, 1.279915,-0.000000;;, + 57;3;-0.000000, 1.279915,-0.000000;;, + 58;3;-0.000000, 1.279915,-0.000000;;, + 59;3;-0.000000, 1.279915,-0.000000;;, + 60;3;-0.000000, 1.279916,-0.000000;;, + 61;3;-0.000000, 1.279916,-0.000000;;, + 62;3; 0.000000, 1.279916, 0.000000;;, + 63;3;-0.000000, 1.279915, 0.000000;;, + 64;3;-0.000000, 1.279916, 0.000000;;, + 65;3;-0.000000, 1.279916,-0.000000;;, + 66;3; 0.000000, 1.279916,-0.000000;;, + 67;3;-0.000000, 1.279916,-0.000000;;, + 68;3; 0.000000, 1.279916,-0.000000;;, + 69;3; 0.000000, 1.279916, 0.000000;;, + 70;3; 0.000000, 1.279915,-0.000000;;, + 71;3; 0.000000, 1.279916,-0.000000;;, + 72;3;-0.000000, 1.279916,-0.000000;;, + 73;3;-0.000000, 1.279916,-0.000000;;, + 74;3;-0.000000, 1.279915, 0.000000;;, + 75;3;-0.000000, 1.279916, 0.000000;;, + 76;3;-0.000000, 1.279916,-0.000000;;, + 77;3;-0.000000, 1.279916, 0.000000;;, + 78;3;-0.000000, 1.279916,-0.000000;;, + 79;3; 0.000000, 1.279916, 0.000000;;, + 80;3;-0.000000, 1.279916, 0.000000;;, + 81;3;-0.000000, 1.279915, 0.000000;;, + 82;3;-0.000000, 1.279916,-0.000000;;, + 83;3; 0.000000, 1.279915,-0.000000;;, + 84;3; 0.000000, 1.279916,-0.000000;;, + 85;3;-0.000000, 1.279915, 0.000000;;, + 86;3; 0.000000, 1.279916, 0.000000;;, + 87;3; 0.000000, 1.279916, 0.000000;;, + 88;3; 0.000000, 1.279916,-0.000000;;, + 89;3; 0.000000, 1.279916, 0.000000;;, + 90;3;-0.000000, 1.279916, 0.000000;;, + 91;3; 0.000000, 1.279915,-0.000000;;, + 92;3;-0.000000, 1.279916,-0.000000;;, + 93;3;-0.000000, 1.279916, 0.000000;;, + 94;3; 0.000000, 1.279916,-0.000000;;, + 95;3; 0.000000, 1.279916, 0.000000;;, + 96;3;-0.000000, 1.279916,-0.000000;;, + 97;3; 0.000000, 1.279916, 0.000000;;, + 98;3; 0.000000, 1.279915, 0.000000;;, + 99;3; 0.000000, 1.279916, 0.000000;;, + 100;3; 0.000000, 1.279916,-0.000000;;, + 101;3; 0.000000, 1.279916, 0.000000;;, + 102;3; 0.000000, 1.279916,-0.000000;;, + 103;3; 0.000000, 1.279916, 0.000000;;, + 104;3;-0.000000, 1.279916,-0.000000;;, + 105;3;-0.000000, 1.279916,-0.000000;;, + 106;3; 0.000000, 1.279916,-0.000000;;, + 107;3; 0.000000, 1.279916, 0.000000;;, + 108;3;-0.000000, 1.279916, 0.000000;;, + 109;3; 0.000000, 1.279916,-0.000000;;, + 110;3; 0.000000, 1.279916, 0.000000;;, + 111;3;-0.000000, 1.279916, 0.000000;;, + 112;3; 0.000000, 1.279916,-0.000000;;, + 113;3;-0.000000, 1.279915,-0.000000;;, + 114;3;-0.000000, 1.279916, 0.000000;;, + 115;3;-0.000000, 1.279915,-0.000000;;, + 116;3;-0.000000, 1.279916, 0.000000;;, + 117;3;-0.000000, 1.279916, 0.000000;;, + 118;3; 0.000000, 1.279916,-0.000000;;, + 119;3; 0.000000, 1.279916, 0.000000;;, + 120;3; 0.000000, 1.279916, 0.000000;;, + 121;3; 0.000000, 1.279915, 0.000000;;, + 122;3; 0.000000, 1.279916,-0.000000;;, + 123;3; 0.000000, 1.279916, 0.000000;;, + 124;3;-0.000000, 1.279916, 0.000000;;, + 125;3; 0.000000, 1.279915,-0.000000;;, + 126;3;-0.000000, 1.279916, 0.000000;;, + 127;3;-0.000000, 1.279915, 0.000000;;, + 128;3; 0.000000, 1.279916,-0.000000;;, + 129;3; 0.000000, 1.279916, 0.000000;;, + 130;3;-0.000000, 1.279916,-0.000000;;, + 131;3; 0.000000, 1.279916, 0.000000;;, + 132;3; 0.000000, 1.279916, 0.000000;;, + 133;3; 0.000000, 1.279916,-0.000000;;, + 134;3; 0.000000, 1.279916,-0.000000;;, + 135;3; 0.000000, 1.279916,-0.000000;;, + 136;3;-0.000000, 1.279915,-0.000000;;, + 137;3; 0.000000, 1.279916, 0.000000;;, + 138;3;-0.000000, 1.279916, 0.000000;;, + 139;3; 0.000000, 1.279916, 0.000000;;, + 140;3; 0.000000, 1.279916, 0.000000;;, + 141;3; 0.000000, 1.279916, 0.000000;;, + 142;3;-0.000000, 1.279916,-0.000000;;, + 143;3; 0.000000, 1.279916, 0.000000;;, + 144;3; 0.000000, 1.279916,-0.000000;;, + 145;3;-0.000000, 1.279916, 0.000000;;, + 146;3;-0.000000, 1.279915,-0.000000;;, + 147;3;-0.000000, 1.279915,-0.000000;;, + 148;3;-0.000000, 1.279916, 0.000000;;, + 149;3; 0.000000, 1.279916, 0.000000;;, + 150;3; 0.000000, 1.279915, 0.000000;;, + 151;3; 0.000000, 1.279916, 0.000000;;, + 152;3; 0.000000, 1.279915,-0.000000;;, + 153;3;-0.000000, 1.279915, 0.000000;;, + 154;3; 0.000000, 1.279916, 0.000000;;, + 155;3; 0.000000, 1.279916,-0.000000;;, + 156;3; 0.000000, 1.279916,-0.000000;;, + 157;3; 0.000000, 1.279916, 0.000000;;, + 158;3; 0.000000, 1.279916, 0.000000;;, + 159;3; 0.000000, 1.279916, 0.000000;;, + 160;3; 0.000000, 1.279916,-0.000000;;, + 161;3; 0.000000, 1.279915, 0.000000;;, + 162;3; 0.000000, 1.279916,-0.000000;;, + 163;3; 0.000000, 1.279915,-0.000000;;, + 164;3; 0.000000, 1.279915, 0.000000;;, + 165;3; 0.000000, 1.279916, 0.000000;;, + 166;3;-0.000000, 1.279916,-0.000000;;, + 167;3; 0.000000, 1.279915, 0.000000;;, + 168;3; 0.000000, 1.279916,-0.000000;;, + 169;3;-0.000000, 1.279915, 0.000000;;, + 170;3; 0.000000, 1.279916, 0.000000;;, + 171;3; 0.000000, 1.279916, 0.000000;;, + 172;3; 0.000000, 1.279915, 0.000000;;, + 173;3; 0.000000, 1.279915,-0.000000;;, + 174;3; 0.000000, 1.279916,-0.000000;;, + 175;3; 0.000000, 1.279916,-0.000000;;, + 176;3; 0.000000, 1.279915, 0.000000;;, + 177;3;-0.000000, 1.279916,-0.000000;;, + 178;3; 0.000000, 1.279915, 0.000000;;, + 179;3;-0.000000, 1.279915,-0.000000;;, + 180;3; 0.000000, 1.279916,-0.000000;;, + 181;3; 0.000000, 1.279916, 0.000000;;, + 182;3; 0.000000, 1.279915, 0.000000;;, + 183;3; 0.000000, 1.279916,-0.000000;;, + 184;3;-0.000000, 1.279916, 0.000000;;, + 185;3; 0.000000, 1.279915, 0.000000;;, + 186;3;-0.000000, 1.279916, 0.000001;;, + 187;3; 0.000000, 1.279915, 0.000000;;, + 188;3;-0.000000, 1.279916, 0.000000;;, + 189;3;-0.000000, 1.279916, 0.000000;;, + 190;3;-0.000000, 1.279916,-0.000000;;, + 191;3; 0.000000, 1.279916, 0.000000;;, + 192;3; 0.000000, 1.279915, 0.000000;;, + 193;3;-0.000000, 1.279916, 0.000000;;, + 194;3;-0.000000, 1.279915, 0.000000;;, + 195;3; 0.000000, 1.279916, 0.000000;;, + 196;3; 0.000000, 1.279916,-0.000000;;, + 197;3; 0.000000, 1.279916,-0.000000;;, + 198;3; 0.000000, 1.279916, 0.000000;;, + 199;3;-0.000000, 1.279915,-0.000000;;, + 200;3;-0.000000, 1.279915,-0.000000;;, + 201;3;-0.000000, 1.279915,-0.000000;;, + 202;3;-0.000000, 1.279915,-0.000000;;, + 203;3;-0.000000, 1.279915,-0.000000;;, + 204;3;-0.000000, 1.279915,-0.000000;;, + 205;3;-0.000000, 1.279915,-0.000000;;, + 206;3;-0.000000, 1.279915,-0.000000;;, + 207;3;-0.000000, 1.279915,-0.000000;;, + 208;3;-0.000000, 1.279915,-0.000000;;, + 209;3;-0.000000, 1.279915,-0.000000;;, + 210;3;-0.000000, 1.279916,-0.000000;;, + 211;3; 0.000000, 1.279916, 0.000000;;, + 212;3;-0.000000, 1.279916, 0.000000;;, + 213;3; 0.000000, 1.279916,-0.000000;;, + 214;3;-0.000000, 1.279916,-0.000000;;, + 215;3;-0.000000, 1.279915, 0.000000;;, + 216;3; 0.000000, 1.279916,-0.000000;;, + 217;3;-0.000000, 1.279915,-0.000000;;, + 218;3;-0.000000, 1.279916,-0.000000;;, + 219;3;-0.000000, 1.279916,-0.000000;;, + 220;3; 0.000000, 1.279916,-0.000000;;, + 221;3;-0.000000, 1.279915, 0.000000;;, + 222;3; 0.000000, 1.279916, 0.000000;;, + 223;3;-0.000000, 1.279916,-0.000000;;, + 224;3;-0.000000, 1.279915, 0.000000;;, + 225;3;-0.000000, 1.279915,-0.000000;;, + 226;3;-0.000000, 1.279915, 0.000000;;, + 227;3;-0.000000, 1.279915,-0.000000;;, + 228;3; 0.000000, 1.279916,-0.000000;;, + 229;3; 0.000000, 1.279916, 0.000000;;, + 230;3;-0.000000, 1.279916, 0.000000;;, + 231;3; 0.000000, 1.279916, 0.000000;;, + 232;3; 0.000000, 1.279916, 0.000001;;, + 233;3; 0.000000, 1.279916,-0.000000;;, + 234;3; 0.000000, 1.279916,-0.000000;;, + 235;3; 0.000000, 1.279915,-0.000000;;, + 236;3; 0.000000, 1.279916,-0.000000;;, + 237;3;-0.000000, 1.279915, 0.000000;;, + 238;3; 0.000000, 1.279916,-0.000000;;, + 239;3;-0.000000, 1.279915,-0.000000;;, + 240;3;-0.000000, 1.279915,-0.000000;;, + 241;3;-0.000000, 1.279915,-0.000000;;, + 242;3;-0.000000, 1.279915,-0.000000;;, + 243;3;-0.000000, 1.279915,-0.000000;;, + 244;3;-0.000000, 1.279915,-0.000000;;, + 245;3;-0.000000, 1.279915,-0.000000;;, + 246;3;-0.000000, 1.279915,-0.000000;;, + 247;3;-0.000000, 1.279915,-0.000000;;, + 248;3;-0.000000, 1.279915,-0.000000;;, + 249;3;-0.000000, 1.279915,-0.000000;;; + } + } + Animation { + {Armature_Bone_040} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 1;4;-0.968777,-0.247868, 0.000138, 0.000096;;, + 2;4;-0.968419,-0.249070, 0.000555, 0.000386;;, + 3;4;-0.967820,-0.251078, 0.001253, 0.000870;;, + 4;4;-0.966987,-0.253876, 0.002224, 0.001545;;, + 5;4;-0.965930,-0.257423, 0.003456, 0.002400;;, + 6;4;-0.964671,-0.261647, 0.004923, 0.003419;;, + 7;4;-0.963241,-0.266447, 0.006589, 0.004577;;, + 8;4;-0.961680,-0.271686, 0.008409, 0.005841;;, + 9;4;-0.960036,-0.277202, 0.010324, 0.007171;;, + 10;4;-0.958364,-0.282813, 0.012272, 0.008524;;, + 11;4;-0.956721,-0.288329, 0.014188, 0.009855;;, + 12;4;-0.955159,-0.293568, 0.016007, 0.011119;;, + 13;4;-0.953729,-0.298367, 0.017674, 0.012276;;, + 14;4;-0.952470,-0.302592, 0.019141, 0.013295;;, + 15;4;-0.951414,-0.306139, 0.020372, 0.014151;;, + 16;4;-0.950580,-0.308937, 0.021344, 0.014826;;, + 17;4;-0.949981,-0.310945, 0.022041, 0.015310;;, + 18;4;-0.949623,-0.312147, 0.022458, 0.015600;;, + 19;4;-0.949505,-0.312544, 0.022597, 0.015696;;, + 20;4;-0.949538,-0.312434, 0.022558, 0.015669;;, + 21;4;-0.949638,-0.312096, 0.022441, 0.015587;;, + 22;4;-0.949810,-0.311520, 0.022241, 0.015449;;, + 23;4;-0.950054,-0.310702, 0.021957, 0.015251;;, + 24;4;-0.950370,-0.309639, 0.021588, 0.014995;;, + 25;4;-0.950759,-0.308335, 0.021135, 0.014681;;, + 26;4;-0.951216,-0.306801, 0.020602, 0.014310;;, + 27;4;-0.951736,-0.305055, 0.019996, 0.013889;;, + 28;4;-0.952312,-0.303123, 0.019325, 0.013423;;, + 29;4;-0.952933,-0.301039, 0.018601, 0.012921;;, + 30;4;-0.953588,-0.298841, 0.017838, 0.012391;;, + 31;4;-0.954264,-0.296572, 0.017050, 0.011843;;, + 32;4;-0.954950,-0.294272, 0.016251, 0.011288;;, + 33;4;-0.955632,-0.291982, 0.015456, 0.010736;;, + 34;4;-0.956301,-0.289736, 0.014676, 0.010194;;, + 35;4;-0.956948,-0.287565, 0.013923, 0.009671;;, + 36;4;-0.957566,-0.285492, 0.013203, 0.009171;;, + 37;4;-0.958149,-0.283534, 0.012523, 0.008698;;, + 38;4;-0.958695,-0.281703, 0.011887, 0.008257;;, + 39;4;-0.959200,-0.280007, 0.011298, 0.007848;;, + 40;4;-0.959705,-0.278312, 0.010709, 0.007439;;, + 41;4;-0.960251,-0.276481, 0.010074, 0.006997;;, + 42;4;-0.960834,-0.274523, 0.009394, 0.006525;;, + 43;4;-0.961452,-0.272450, 0.008674, 0.006025;;, + 44;4;-0.962099,-0.270279, 0.007920, 0.005501;;, + 45;4;-0.962768,-0.268033, 0.007140, 0.004960;;, + 46;4;-0.963451,-0.265743, 0.006345, 0.004407;;, + 47;4;-0.964136,-0.263443, 0.005546, 0.003853;;, + 48;4;-0.964812,-0.261173, 0.004758, 0.003305;;, + 49;4;-0.965467,-0.258975, 0.003995, 0.002775;;, + 50;4;-0.966088,-0.256891, 0.003271, 0.002272;;, + 51;4;-0.966664,-0.254960, 0.002600, 0.001806;;, + 52;4;-0.967184,-0.253213, 0.001994, 0.001385;;, + 53;4;-0.967641,-0.251679, 0.001461, 0.001015;;, + 54;4;-0.968030,-0.250375, 0.001009, 0.000701;;, + 55;4;-0.968347,-0.249312, 0.000640, 0.000444;;, + 56;4;-0.968590,-0.248494, 0.000355, 0.000247;;, + 57;4;-0.968762,-0.247919, 0.000156, 0.000108;;, + 58;4;-0.968863,-0.247581, 0.000038, 0.000027;;, + 59;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 60;4;-0.968822,-0.247676, 0.000072, 0.000050;;, + 61;4;-0.968602,-0.248293, 0.000290, 0.000201;;, + 62;4;-0.968233,-0.249328, 0.000654, 0.000454;;, + 63;4;-0.967716,-0.250781, 0.001165, 0.000809;;, + 64;4;-0.967049,-0.252652, 0.001824, 0.001267;;, + 65;4;-0.966233,-0.254940, 0.002630, 0.001827;;, + 66;4;-0.965271,-0.257639, 0.003580, 0.002487;;, + 67;4;-0.964165,-0.260743, 0.004673, 0.003246;;, + 68;4;-0.962918,-0.264241, 0.005904, 0.004101;;, + 69;4;-0.961536,-0.268119, 0.007269, 0.005049;;, + 70;4;-0.960025,-0.272359, 0.008762, 0.006086;;, + 71;4;-0.958392,-0.276941, 0.010375, 0.007207;;, + 72;4;-0.956646,-0.281840, 0.012100, 0.008405;;, + 73;4;-0.954797,-0.287026, 0.013926, 0.009673;;, + 74;4;-0.952858,-0.292467, 0.015842, 0.011004;;, + 75;4;-0.950841,-0.298128, 0.017834, 0.012388;;, + 76;4;-0.948759,-0.303967, 0.019890, 0.013816;;, + 77;4;-0.946629,-0.309943, 0.021994, 0.015277;;, + 78;4;-0.944466,-0.316012, 0.024131, 0.016761;;, + 79;4;-0.942286,-0.322128, 0.026284, 0.018257;;, + 80;4;-0.940107,-0.328244, 0.028437, 0.019753;;, + 81;4;-0.937943,-0.334313, 0.030574, 0.021237;;, + 82;4;-0.935813,-0.340290, 0.032678, 0.022698;;, + 83;4;-0.933732,-0.346129, 0.034734, 0.024126;;, + 84;4;-0.931715,-0.351789, 0.036727, 0.025510;;, + 85;4;-0.929775,-0.357230, 0.038642, 0.026841;;, + 86;4;-0.927927,-0.362417, 0.040468, 0.028109;;, + 87;4;-0.926181,-0.367315, 0.042193, 0.029307;;, + 88;4;-0.924548,-0.371897, 0.043806, 0.030428;;, + 89;4;-0.923036,-0.376138, 0.045299, 0.031465;;, + 90;4;-0.921654,-0.380016, 0.046664, 0.032413;;, + 91;4;-0.920408,-0.383513, 0.047895, 0.033268;;, + 92;4;-0.919301,-0.386617, 0.048988, 0.034027;;, + 93;4;-0.918339,-0.389317, 0.049939, 0.034688;;, + 94;4;-0.917524,-0.391604, 0.050744, 0.035247;;, + 95;4;-0.916857,-0.393476, 0.051403, 0.035705;;, + 96;4;-0.916339,-0.394928, 0.051914, 0.036060;;, + 97;4;-0.915970,-0.395963, 0.052278, 0.036313;;, + 98;4;-0.915750,-0.396581, 0.052496, 0.036464;;, + 99;4;-0.915677,-0.396786, 0.052568, 0.036514;;, + 100;4;-0.916214,-0.394701, 0.051851, 0.036016;;, + 101;4;-0.917882,-0.388223, 0.049624, 0.034469;;, + 102;4;-0.920715,-0.377220, 0.045839, 0.031840;;, + 103;4;-0.924642,-0.361971, 0.040595, 0.028198;;, + 104;4;-0.929449,-0.343302, 0.034175, 0.023738;;, + 105;4;-0.934797,-0.322533, 0.027032, 0.018777;;, + 106;4;-0.940291,-0.301195, 0.019694, 0.013679;;, + 107;4;-0.945578,-0.280664, 0.012633, 0.008775;;, + 108;4;-0.950403,-0.261923, 0.006188, 0.004298;;, + 109;4;-0.954625,-0.245530, 0.000550, 0.000382;;, + 110;4;-0.958846,-0.229136,-0.005088,-0.003534;;, + 111;4;-0.963671,-0.210396,-0.011533,-0.008011;;, + 112;4;-0.968958,-0.189865,-0.018594,-0.012915;;, + 113;4;-0.974452,-0.168526,-0.025932,-0.018013;;, + 114;4;-0.979800,-0.147757,-0.033075,-0.022974;;, + 115;4;-0.984608,-0.129088,-0.039495,-0.027434;;, + 116;4;-0.988534,-0.113839,-0.044740,-0.031076;;, + 117;4;-0.991367,-0.102836,-0.048524,-0.033705;;, + 118;4;-0.993035,-0.096359,-0.050751,-0.035252;;, + 119;4;-0.993572,-0.094274,-0.051468,-0.035750;;, + 120;4;-0.993035,-0.096359,-0.050751,-0.035252;;, + 121;4;-0.991367,-0.102836,-0.048524,-0.033705;;, + 122;4;-0.988534,-0.113839,-0.044740,-0.031076;;, + 123;4;-0.984608,-0.129088,-0.039495,-0.027434;;, + 124;4;-0.979800,-0.147757,-0.033075,-0.022974;;, + 125;4;-0.974452,-0.168526,-0.025932,-0.018013;;, + 126;4;-0.968958,-0.189865,-0.018594,-0.012915;;, + 127;4;-0.963671,-0.210396,-0.011533,-0.008011;;, + 128;4;-0.958846,-0.229136,-0.005088,-0.003534;;, + 129;4;-0.954625,-0.245530, 0.000550, 0.000382;;, + 130;4;-0.950403,-0.261923, 0.006188, 0.004298;;, + 131;4;-0.945578,-0.280664, 0.012633, 0.008775;;, + 132;4;-0.940291,-0.301195, 0.019694, 0.013679;;, + 133;4;-0.934797,-0.322533, 0.027032, 0.018777;;, + 134;4;-0.929449,-0.343302, 0.034175, 0.023738;;, + 135;4;-0.924642,-0.361971, 0.040595, 0.028198;;, + 136;4;-0.920715,-0.377220, 0.045839, 0.031840;;, + 137;4;-0.917882,-0.388223, 0.049624, 0.034469;;, + 138;4;-0.916214,-0.394701, 0.051851, 0.036016;;, + 139;4;-0.915677,-0.396786, 0.052568, 0.036514;;, + 140;4;-0.917882,-0.388223, 0.049624, 0.034469;;, + 141;4;-0.924642,-0.361971, 0.040595, 0.028198;;, + 142;4;-0.934797,-0.322533, 0.027032, 0.018777;;, + 143;4;-0.945578,-0.280664, 0.012633, 0.008775;;, + 144;4;-0.954625,-0.245530, 0.000550, 0.000382;;, + 145;4;-0.963671,-0.210396,-0.011533,-0.008011;;, + 146;4;-0.974452,-0.168526,-0.025932,-0.018013;;, + 147;4;-0.984608,-0.129088,-0.039495,-0.027434;;, + 148;4;-0.991367,-0.102836,-0.048524,-0.033705;;, + 149;4;-0.993572,-0.094274,-0.051468,-0.035750;;, + 150;4;-0.991367,-0.102836,-0.048524,-0.033705;;, + 151;4;-0.984608,-0.129088,-0.039495,-0.027434;;, + 152;4;-0.974452,-0.168526,-0.025932,-0.018013;;, + 153;4;-0.963671,-0.210396,-0.011533,-0.008011;;, + 154;4;-0.954625,-0.245530, 0.000550, 0.000382;;, + 155;4;-0.945578,-0.280664, 0.012633, 0.008775;;, + 156;4;-0.934797,-0.322533, 0.027032, 0.018777;;, + 157;4;-0.924642,-0.361971, 0.040595, 0.028198;;, + 158;4;-0.917882,-0.388223, 0.049624, 0.034469;;, + 159;4;-0.915677,-0.396786, 0.052568, 0.036514;;, + 160;4;-0.915970,-0.395963, 0.052278, 0.036313;;, + 161;4;-0.916857,-0.393476, 0.051403, 0.035705;;, + 162;4;-0.918339,-0.389317, 0.049939, 0.034688;;, + 163;4;-0.920408,-0.383513, 0.047895, 0.033268;;, + 164;4;-0.923036,-0.376138, 0.045299, 0.031465;;, + 165;4;-0.926181,-0.367315, 0.042193, 0.029307;;, + 166;4;-0.929775,-0.357230, 0.038642, 0.026841;;, + 167;4;-0.933732,-0.346129, 0.034734, 0.024126;;, + 168;4;-0.937943,-0.334313, 0.030574, 0.021237;;, + 169;4;-0.942286,-0.322128, 0.026284, 0.018257;;, + 170;4;-0.946629,-0.309943, 0.021994, 0.015277;;, + 171;4;-0.950840,-0.298128, 0.017834, 0.012388;;, + 172;4;-0.954797,-0.287026, 0.013926, 0.009673;;, + 173;4;-0.958392,-0.276941, 0.010375, 0.007207;;, + 174;4;-0.961536,-0.268119, 0.007269, 0.005049;;, + 175;4;-0.964165,-0.260743, 0.004673, 0.003246;;, + 176;4;-0.966233,-0.254940, 0.002630, 0.001827;;, + 177;4;-0.967716,-0.250781, 0.001165, 0.000809;;, + 178;4;-0.968602,-0.248293, 0.000290, 0.000201;;, + 179;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 180;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 181;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 182;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 183;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 184;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 185;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 186;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 187;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 188;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 189;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 190;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 191;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 192;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 193;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 194;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 195;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 196;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 197;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 198;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 199;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 200;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 201;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 202;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 203;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 204;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 205;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 206;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 207;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 208;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 209;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 210;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 211;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 212;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 213;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 214;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 215;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 216;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 217;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 218;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 219;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 220;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 221;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 222;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 223;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 224;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 225;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 226;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 227;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 228;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 229;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 230;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 231;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 232;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 233;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 234;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 235;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 236;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 237;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 238;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 239;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 240;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 241;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 242;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 243;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 244;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 245;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 246;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 247;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 248;4;-0.968895,-0.247471,-0.000000,-0.000000;;, + 249;4;-0.968895,-0.247471,-0.000000,-0.000000;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3; 0.000000, 1.228416, 0.000000;;, + 1;3; 0.000000, 1.228416,-0.000000;;, + 2;3;-0.000000, 1.228417, 0.000000;;, + 3;3;-0.000000, 1.228416, 0.000000;;, + 4;3; 0.000000, 1.228417,-0.000000;;, + 5;3;-0.000000, 1.228416,-0.000000;;, + 6;3;-0.000000, 1.228416, 0.000000;;, + 7;3; 0.000000, 1.228417, 0.000000;;, + 8;3;-0.000000, 1.228416,-0.000000;;, + 9;3;-0.000000, 1.228416, 0.000000;;, + 10;3;-0.000000, 1.228417,-0.000000;;, + 11;3;-0.000000, 1.228416,-0.000000;;, + 12;3; 0.000000, 1.228417, 0.000000;;, + 13;3; 0.000000, 1.228416,-0.000000;;, + 14;3; 0.000000, 1.228416,-0.000000;;, + 15;3;-0.000000, 1.228416,-0.000000;;, + 16;3; 0.000000, 1.228416, 0.000000;;, + 17;3; 0.000000, 1.228416, 0.000000;;, + 18;3; 0.000000, 1.228416, 0.000000;;, + 19;3;-0.000000, 1.228416, 0.000000;;, + 20;3;-0.000000, 1.228417, 0.000000;;, + 21;3; 0.000000, 1.228416, 0.000000;;, + 22;3; 0.000000, 1.228417, 0.000000;;, + 23;3;-0.000000, 1.228416,-0.000000;;, + 24;3;-0.000000, 1.228416,-0.000000;;, + 25;3;-0.000000, 1.228417, 0.000000;;, + 26;3; 0.000000, 1.228417, 0.000000;;, + 27;3; 0.000000, 1.228416,-0.000000;;, + 28;3;-0.000000, 1.228416,-0.000000;;, + 29;3;-0.000000, 1.228416,-0.000000;;, + 30;3;-0.000000, 1.228416, 0.000000;;, + 31;3; 0.000000, 1.228417, 0.000000;;, + 32;3;-0.000000, 1.228416,-0.000001;;, + 33;3;-0.000001, 1.228416,-0.000000;;, + 34;3;-0.000000, 1.228416,-0.000000;;, + 35;3; 0.000000, 1.228416, 0.000000;;, + 36;3;-0.000000, 1.228416, 0.000000;;, + 37;3;-0.000000, 1.228416, 0.000000;;, + 38;3;-0.000000, 1.228416,-0.000000;;, + 39;3; 0.000000, 1.228416, 0.000000;;, + 40;3;-0.000000, 1.228417, 0.000001;;, + 41;3;-0.000000, 1.228416,-0.000000;;, + 42;3; 0.000000, 1.228416, 0.000000;;, + 43;3; 0.000000, 1.228416,-0.000000;;, + 44;3;-0.000000, 1.228416, 0.000000;;, + 45;3;-0.000000, 1.228417,-0.000000;;, + 46;3; 0.000000, 1.228416, 0.000000;;, + 47;3; 0.000000, 1.228416, 0.000000;;, + 48;3; 0.000000, 1.228416, 0.000000;;, + 49;3;-0.000000, 1.228416, 0.000000;;, + 50;3;-0.000000, 1.228416, 0.000000;;, + 51;3;-0.000000, 1.228416, 0.000000;;, + 52;3; 0.000000, 1.228416,-0.000000;;, + 53;3;-0.000000, 1.228416,-0.000000;;, + 54;3; 0.000000, 1.228417, 0.000000;;, + 55;3;-0.000000, 1.228417,-0.000000;;, + 56;3; 0.000000, 1.228416,-0.000000;;, + 57;3;-0.000000, 1.228416, 0.000000;;, + 58;3; 0.000000, 1.228416, 0.000000;;, + 59;3; 0.000000, 1.228416, 0.000000;;, + 60;3; 0.000000, 1.228416,-0.000000;;, + 61;3; 0.000000, 1.228417, 0.000000;;, + 62;3; 0.000000, 1.228417,-0.000000;;, + 63;3; 0.000000, 1.228416, 0.000000;;, + 64;3;-0.000000, 1.228417,-0.000000;;, + 65;3; 0.000000, 1.228417,-0.000000;;, + 66;3; 0.000000, 1.228416, 0.000000;;, + 67;3;-0.000000, 1.228416, 0.000000;;, + 68;3;-0.000000, 1.228416, 0.000000;;, + 69;3; 0.000000, 1.228417, 0.000000;;, + 70;3; 0.000000, 1.228416,-0.000000;;, + 71;3;-0.000000, 1.228417, 0.000000;;, + 72;3;-0.000000, 1.228416, 0.000000;;, + 73;3; 0.000000, 1.228416,-0.000000;;, + 74;3; 0.000000, 1.228416,-0.000000;;, + 75;3;-0.000000, 1.228416,-0.000000;;, + 76;3;-0.000000, 1.228416,-0.000000;;, + 77;3;-0.000000, 1.228416, 0.000000;;, + 78;3;-0.000000, 1.228416,-0.000000;;, + 79;3; 0.000000, 1.228416,-0.000000;;, + 80;3;-0.000000, 1.228416, 0.000000;;, + 81;3;-0.000000, 1.228416, 0.000000;;, + 82;3;-0.000000, 1.228417, 0.000000;;, + 83;3; 0.000000, 1.228416, 0.000000;;, + 84;3;-0.000000, 1.228416, 0.000000;;, + 85;3;-0.000000, 1.228417, 0.000000;;, + 86;3; 0.000000, 1.228416, 0.000000;;, + 87;3;-0.000000, 1.228416,-0.000000;;, + 88;3;-0.000000, 1.228416, 0.000000;;, + 89;3;-0.000000, 1.228417, 0.000000;;, + 90;3; 0.000000, 1.228416, 0.000000;;, + 91;3;-0.000000, 1.228416, 0.000000;;, + 92;3;-0.000000, 1.228416, 0.000000;;, + 93;3; 0.000000, 1.228417, 0.000000;;, + 94;3; 0.000000, 1.228416,-0.000000;;, + 95;3; 0.000000, 1.228416,-0.000000;;, + 96;3; 0.000000, 1.228417,-0.000000;;, + 97;3; 0.000000, 1.228416,-0.000000;;, + 98;3; 0.000000, 1.228417,-0.000000;;, + 99;3; 0.000000, 1.228416,-0.000000;;, + 100;3; 0.000000, 1.228416,-0.000000;;, + 101;3;-0.000000, 1.228416,-0.000000;;, + 102;3;-0.000000, 1.228416,-0.000000;;, + 103;3;-0.000000, 1.228416,-0.000000;;, + 104;3;-0.000000, 1.228416,-0.000000;;, + 105;3; 0.000000, 1.228417,-0.000001;;, + 106;3; 0.000000, 1.228417, 0.000000;;, + 107;3;-0.000000, 1.228416,-0.000000;;, + 108;3; 0.000000, 1.228416,-0.000000;;, + 109;3;-0.000000, 1.228417,-0.000000;;, + 110;3; 0.000000, 1.228417,-0.000000;;, + 111;3;-0.000000, 1.228416,-0.000000;;, + 112;3;-0.000000, 1.228417,-0.000000;;, + 113;3; 0.000000, 1.228416,-0.000000;;, + 114;3; 0.000000, 1.228416,-0.000000;;, + 115;3; 0.000000, 1.228417, 0.000000;;, + 116;3; 0.000000, 1.228417,-0.000000;;, + 117;3;-0.000000, 1.228416,-0.000000;;, + 118;3;-0.000000, 1.228417,-0.000000;;, + 119;3; 0.000000, 1.228416,-0.000000;;, + 120;3; 0.000000, 1.228417, 0.000000;;, + 121;3; 0.000000, 1.228416, 0.000000;;, + 122;3; 0.000000, 1.228416,-0.000000;;, + 123;3; 0.000000, 1.228416, 0.000000;;, + 124;3;-0.000000, 1.228416,-0.000000;;, + 125;3; 0.000000, 1.228416, 0.000000;;, + 126;3; 0.000001, 1.228416,-0.000000;;, + 127;3; 0.000000, 1.228416,-0.000000;;, + 128;3;-0.000000, 1.228416, 0.000000;;, + 129;3; 0.000000, 1.228416, 0.000000;;, + 130;3; 0.000000, 1.228417, 0.000000;;, + 131;3; 0.000000, 1.228417,-0.000000;;, + 132;3;-0.000000, 1.228417,-0.000000;;, + 133;3;-0.000000, 1.228417,-0.000000;;, + 134;3; 0.000000, 1.228417,-0.000000;;, + 135;3;-0.000000, 1.228416, 0.000000;;, + 136;3;-0.000000, 1.228417,-0.000000;;, + 137;3; 0.000000, 1.228416,-0.000000;;, + 138;3;-0.000000, 1.228416, 0.000000;;, + 139;3; 0.000000, 1.228416,-0.000000;;, + 140;3;-0.000000, 1.228416,-0.000000;;, + 141;3;-0.000000, 1.228416,-0.000000;;, + 142;3; 0.000000, 1.228417,-0.000001;;, + 143;3;-0.000000, 1.228416,-0.000000;;, + 144;3;-0.000000, 1.228417,-0.000000;;, + 145;3;-0.000000, 1.228416,-0.000000;;, + 146;3; 0.000000, 1.228416,-0.000000;;, + 147;3; 0.000000, 1.228417, 0.000000;;, + 148;3;-0.000000, 1.228416,-0.000000;;, + 149;3; 0.000000, 1.228416,-0.000000;;, + 150;3; 0.000000, 1.228416, 0.000000;;, + 151;3; 0.000000, 1.228416, 0.000000;;, + 152;3; 0.000000, 1.228416, 0.000000;;, + 153;3; 0.000000, 1.228416,-0.000000;;, + 154;3; 0.000000, 1.228416, 0.000000;;, + 155;3;-0.000000, 1.228416,-0.000000;;, + 156;3;-0.000000, 1.228416,-0.000000;;, + 157;3; 0.000000, 1.228416,-0.000000;;, + 158;3; 0.000000, 1.228416,-0.000000;;, + 159;3; 0.000000, 1.228416,-0.000000;;, + 160;3;-0.000000, 1.228416, 0.000000;;, + 161;3; 0.000000, 1.228416, 0.000000;;, + 162;3; 0.000000, 1.228417, 0.000000;;, + 163;3;-0.000000, 1.228416,-0.000000;;, + 164;3;-0.000000, 1.228417,-0.000000;;, + 165;3; 0.000000, 1.228416,-0.000000;;, + 166;3; 0.000000, 1.228417, 0.000000;;, + 167;3;-0.000000, 1.228417,-0.000000;;, + 168;3; 0.000000, 1.228416, 0.000000;;, + 169;3;-0.000000, 1.228416, 0.000000;;, + 170;3;-0.000000, 1.228417, 0.000000;;, + 171;3; 0.000000, 1.228416, 0.000000;;, + 172;3; 0.000000, 1.228416,-0.000000;;, + 173;3; 0.000000, 1.228416,-0.000000;;, + 174;3;-0.000000, 1.228416, 0.000000;;, + 175;3; 0.000000, 1.228417,-0.000000;;, + 176;3;-0.000000, 1.228416, 0.000000;;, + 177;3; 0.000000, 1.228416, 0.000000;;, + 178;3;-0.000000, 1.228416, 0.000000;;, + 179;3; 0.000000, 1.228416, 0.000000;;, + 180;3;-0.000000, 1.228416,-0.000001;;, + 181;3;-0.000000, 1.228417, 0.000000;;, + 182;3;-0.000000, 1.228416,-0.000000;;, + 183;3; 0.000000, 1.228417,-0.000000;;, + 184;3; 0.000000, 1.228417,-0.000000;;, + 185;3; 0.000000, 1.228416, 0.000000;;, + 186;3; 0.000000, 1.228417,-0.000000;;, + 187;3; 0.000000, 1.228417, 0.000000;;, + 188;3;-0.000000, 1.228416,-0.000000;;, + 189;3; 0.000000, 1.228416, 0.000000;;, + 190;3; 0.000000, 1.228416, 0.000000;;, + 191;3; 0.000000, 1.228416,-0.000000;;, + 192;3; 0.000000, 1.228416,-0.000001;;, + 193;3; 0.000000, 1.228416, 0.000000;;, + 194;3;-0.000000, 1.228417, 0.000000;;, + 195;3; 0.000001, 1.228417, 0.000000;;, + 196;3; 0.000000, 1.228416, 0.000000;;, + 197;3; 0.000000, 1.228417,-0.000000;;, + 198;3;-0.000000, 1.228417, 0.000000;;, + 199;3; 0.000000, 1.228416, 0.000000;;, + 200;3; 0.000000, 1.228416, 0.000000;;, + 201;3; 0.000000, 1.228416, 0.000000;;, + 202;3; 0.000000, 1.228416, 0.000000;;, + 203;3; 0.000000, 1.228416, 0.000000;;, + 204;3; 0.000000, 1.228416, 0.000000;;, + 205;3; 0.000000, 1.228416, 0.000000;;, + 206;3; 0.000000, 1.228416, 0.000000;;, + 207;3; 0.000000, 1.228416, 0.000000;;, + 208;3; 0.000000, 1.228416, 0.000000;;, + 209;3; 0.000000, 1.228416, 0.000000;;, + 210;3; 0.000000, 1.228416, 0.000000;;, + 211;3; 0.000000, 1.228416, 0.000000;;, + 212;3;-0.000000, 1.228417, 0.000000;;, + 213;3; 0.000000, 1.228417, 0.000000;;, + 214;3; 0.000000, 1.228416, 0.000000;;, + 215;3;-0.000000, 1.228416,-0.000000;;, + 216;3; 0.000000, 1.228416, 0.000000;;, + 217;3; 0.000000, 1.228417,-0.000001;;, + 218;3; 0.000000, 1.228416,-0.000000;;, + 219;3; 0.000000, 1.228416,-0.000000;;, + 220;3;-0.000000, 1.228416, 0.000000;;, + 221;3; 0.000000, 1.228416, 0.000000;;, + 222;3; 0.000000, 1.228417, 0.000000;;, + 223;3;-0.000000, 1.228416,-0.000000;;, + 224;3;-0.000000, 1.228416,-0.000000;;, + 225;3; 0.000000, 1.228416, 0.000000;;, + 226;3;-0.000000, 1.228416, 0.000000;;, + 227;3; 0.000000, 1.228416, 0.000000;;, + 228;3;-0.000000, 1.228417, 0.000000;;, + 229;3;-0.000000, 1.228417, 0.000001;;, + 230;3;-0.000000, 1.228416,-0.000000;;, + 231;3; 0.000000, 1.228417, 0.000000;;, + 232;3; 0.000000, 1.228417,-0.000000;;, + 233;3; 0.000000, 1.228416, 0.000000;;, + 234;3; 0.000000, 1.228417, 0.000000;;, + 235;3;-0.000000, 1.228416,-0.000000;;, + 236;3; 0.000000, 1.228416,-0.000000;;, + 237;3;-0.000000, 1.228416,-0.000000;;, + 238;3;-0.000000, 1.228416, 0.000000;;, + 239;3; 0.000000, 1.228416, 0.000000;;, + 240;3; 0.000000, 1.228416, 0.000000;;, + 241;3; 0.000000, 1.228416, 0.000000;;, + 242;3; 0.000000, 1.228416, 0.000000;;, + 243;3; 0.000000, 1.228416, 0.000000;;, + 244;3; 0.000000, 1.228416, 0.000000;;, + 245;3; 0.000000, 1.228416, 0.000000;;, + 246;3; 0.000000, 1.228416, 0.000000;;, + 247;3; 0.000000, 1.228416, 0.000000;;, + 248;3; 0.000000, 1.228416, 0.000000;;, + 249;3; 0.000000, 1.228416, 0.000000;;; + } + } + Animation { + {Armature_Bone_013} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 1;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 2;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 3;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 4;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 5;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 6;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 7;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 8;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 9;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 10;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 11;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 12;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 13;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 14;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 15;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 16;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 17;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 18;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 19;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 20;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 21;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 22;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 23;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 24;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 25;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 26;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 27;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 28;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 29;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 30;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 31;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 32;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 33;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 34;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 35;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 36;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 37;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 38;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 39;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 40;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 41;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 42;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 43;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 44;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 45;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 46;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 47;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 48;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 49;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 50;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 51;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 52;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 53;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 54;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 55;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 56;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 57;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 58;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 59;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 60;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 61;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 62;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 63;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 64;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 65;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 66;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 67;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 68;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 69;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 70;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 71;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 72;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 73;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 74;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 75;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 76;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 77;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 78;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 79;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 80;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 81;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 82;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 83;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 84;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 85;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 86;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 87;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 88;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 89;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 90;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 91;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 92;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 93;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 94;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 95;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 96;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 97;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 98;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 99;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 100;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 101;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 102;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 103;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 104;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 105;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 106;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 107;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 108;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 109;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 110;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 111;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 112;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 113;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 114;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 115;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 116;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 117;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 118;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 119;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 120;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 121;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 122;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 123;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 124;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 125;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 126;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 127;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 128;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 129;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 130;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 131;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 132;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 133;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 134;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 135;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 136;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 137;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 138;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 139;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 140;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 141;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 142;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 143;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 144;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 145;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 146;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 147;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 148;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 149;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 150;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 151;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 152;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 153;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 154;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 155;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 156;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 157;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 158;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 159;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 160;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 161;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 162;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 163;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 164;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 165;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 166;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 167;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 168;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 169;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 170;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 171;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 172;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 173;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 174;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 175;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 176;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 177;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 178;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 179;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 180;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 181;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 182;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 183;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 184;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 185;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 186;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 187;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 188;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 189;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 190;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 191;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 192;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 193;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 194;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 195;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 196;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 197;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 198;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 199;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 200;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 201;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 202;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 203;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 204;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 205;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 206;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 207;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 208;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 209;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 210;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 211;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 212;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 213;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 214;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 215;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 216;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 217;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 218;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 219;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 220;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 221;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 222;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 223;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 224;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 225;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 226;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 227;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 228;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 229;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 230;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 231;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 232;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 233;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 234;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 235;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 236;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 237;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 238;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 239;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 240;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 241;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 242;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 243;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 244;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 245;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 246;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 247;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 248;4;-0.370899,-0.000000,-0.000000,-0.928673;;, + 249;4;-0.370899,-0.000000,-0.000000,-0.928673;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3; 0.000000, 0.826434, 0.000000;;, + 1;3; 0.000000, 0.826434, 0.000000;;, + 2;3; 0.000000, 0.826434, 0.000000;;, + 3;3; 0.000000, 0.826434, 0.000000;;, + 4;3; 0.000000, 0.826434, 0.000000;;, + 5;3; 0.000000, 0.826434, 0.000000;;, + 6;3; 0.000000, 0.826434, 0.000000;;, + 7;3; 0.000000, 0.826434, 0.000000;;, + 8;3; 0.000000, 0.826434, 0.000000;;, + 9;3; 0.000000, 0.826434, 0.000000;;, + 10;3; 0.000000, 0.826434, 0.000000;;, + 11;3; 0.000000, 0.826434, 0.000000;;, + 12;3; 0.000000, 0.826434, 0.000000;;, + 13;3; 0.000000, 0.826434, 0.000000;;, + 14;3; 0.000000, 0.826434, 0.000000;;, + 15;3; 0.000000, 0.826434, 0.000000;;, + 16;3; 0.000000, 0.826434, 0.000000;;, + 17;3; 0.000000, 0.826434, 0.000000;;, + 18;3; 0.000000, 0.826434, 0.000000;;, + 19;3; 0.000000, 0.826434, 0.000000;;, + 20;3; 0.000000, 0.826434, 0.000000;;, + 21;3; 0.000000, 0.826434, 0.000000;;, + 22;3; 0.000000, 0.826434, 0.000000;;, + 23;3; 0.000000, 0.826434, 0.000000;;, + 24;3; 0.000000, 0.826434, 0.000000;;, + 25;3; 0.000000, 0.826434, 0.000000;;, + 26;3; 0.000000, 0.826434, 0.000000;;, + 27;3; 0.000000, 0.826434, 0.000000;;, + 28;3; 0.000000, 0.826434, 0.000000;;, + 29;3; 0.000000, 0.826434, 0.000000;;, + 30;3; 0.000000, 0.826434, 0.000000;;, + 31;3; 0.000000, 0.826434, 0.000000;;, + 32;3; 0.000000, 0.826434, 0.000000;;, + 33;3; 0.000000, 0.826434, 0.000000;;, + 34;3; 0.000000, 0.826434, 0.000000;;, + 35;3; 0.000000, 0.826434, 0.000000;;, + 36;3; 0.000000, 0.826434, 0.000000;;, + 37;3; 0.000000, 0.826434, 0.000000;;, + 38;3; 0.000000, 0.826434, 0.000000;;, + 39;3; 0.000000, 0.826434, 0.000000;;, + 40;3; 0.000000, 0.826434, 0.000000;;, + 41;3; 0.000000, 0.826434, 0.000000;;, + 42;3; 0.000000, 0.826434, 0.000000;;, + 43;3; 0.000000, 0.826434, 0.000000;;, + 44;3; 0.000000, 0.826434, 0.000000;;, + 45;3; 0.000000, 0.826434, 0.000000;;, + 46;3; 0.000000, 0.826434, 0.000000;;, + 47;3; 0.000000, 0.826434, 0.000000;;, + 48;3; 0.000000, 0.826434, 0.000000;;, + 49;3; 0.000000, 0.826434, 0.000000;;, + 50;3; 0.000000, 0.826434, 0.000000;;, + 51;3; 0.000000, 0.826434, 0.000000;;, + 52;3; 0.000000, 0.826434, 0.000000;;, + 53;3; 0.000000, 0.826434, 0.000000;;, + 54;3; 0.000000, 0.826434, 0.000000;;, + 55;3; 0.000000, 0.826434, 0.000000;;, + 56;3; 0.000000, 0.826434, 0.000000;;, + 57;3; 0.000000, 0.826434, 0.000000;;, + 58;3; 0.000000, 0.826434, 0.000000;;, + 59;3; 0.000000, 0.826434, 0.000000;;, + 60;3; 0.000000, 0.826434, 0.000000;;, + 61;3; 0.000000, 0.826434, 0.000000;;, + 62;3; 0.000000, 0.826434, 0.000000;;, + 63;3; 0.000000, 0.826434, 0.000000;;, + 64;3; 0.000000, 0.826434, 0.000000;;, + 65;3; 0.000000, 0.826434, 0.000000;;, + 66;3; 0.000000, 0.826434, 0.000000;;, + 67;3; 0.000000, 0.826434, 0.000000;;, + 68;3; 0.000000, 0.826434, 0.000000;;, + 69;3; 0.000000, 0.826434, 0.000000;;, + 70;3; 0.000000, 0.826434, 0.000000;;, + 71;3; 0.000000, 0.826434, 0.000000;;, + 72;3; 0.000000, 0.826434, 0.000000;;, + 73;3; 0.000000, 0.826434, 0.000000;;, + 74;3; 0.000000, 0.826434, 0.000000;;, + 75;3; 0.000000, 0.826434, 0.000000;;, + 76;3; 0.000000, 0.826434, 0.000000;;, + 77;3; 0.000000, 0.826434, 0.000000;;, + 78;3; 0.000000, 0.826434, 0.000000;;, + 79;3; 0.000000, 0.826434, 0.000000;;, + 80;3; 0.000000, 0.826434, 0.000000;;, + 81;3; 0.000000, 0.826434, 0.000000;;, + 82;3; 0.000000, 0.826434, 0.000000;;, + 83;3; 0.000000, 0.826434, 0.000000;;, + 84;3; 0.000000, 0.826434, 0.000000;;, + 85;3; 0.000000, 0.826434, 0.000000;;, + 86;3; 0.000000, 0.826434, 0.000000;;, + 87;3; 0.000000, 0.826434, 0.000000;;, + 88;3; 0.000000, 0.826434, 0.000000;;, + 89;3; 0.000000, 0.826434, 0.000000;;, + 90;3; 0.000000, 0.826434, 0.000000;;, + 91;3; 0.000000, 0.826434, 0.000000;;, + 92;3; 0.000000, 0.826434, 0.000000;;, + 93;3; 0.000000, 0.826434, 0.000000;;, + 94;3; 0.000000, 0.826434, 0.000000;;, + 95;3; 0.000000, 0.826434, 0.000000;;, + 96;3; 0.000000, 0.826434, 0.000000;;, + 97;3; 0.000000, 0.826434, 0.000000;;, + 98;3; 0.000000, 0.826434, 0.000000;;, + 99;3; 0.000000, 0.826434, 0.000000;;, + 100;3; 0.000000, 0.826434, 0.000000;;, + 101;3; 0.000000, 0.826434, 0.000000;;, + 102;3; 0.000000, 0.826434, 0.000000;;, + 103;3; 0.000000, 0.826434, 0.000000;;, + 104;3; 0.000000, 0.826434, 0.000000;;, + 105;3; 0.000000, 0.826434, 0.000000;;, + 106;3; 0.000000, 0.826434, 0.000000;;, + 107;3; 0.000000, 0.826434, 0.000000;;, + 108;3; 0.000000, 0.826434, 0.000000;;, + 109;3; 0.000000, 0.826434, 0.000000;;, + 110;3; 0.000000, 0.826434, 0.000000;;, + 111;3; 0.000000, 0.826434, 0.000000;;, + 112;3; 0.000000, 0.826434, 0.000000;;, + 113;3; 0.000000, 0.826434, 0.000000;;, + 114;3; 0.000000, 0.826434, 0.000000;;, + 115;3; 0.000000, 0.826434, 0.000000;;, + 116;3; 0.000000, 0.826434, 0.000000;;, + 117;3; 0.000000, 0.826434, 0.000000;;, + 118;3; 0.000000, 0.826434, 0.000000;;, + 119;3; 0.000000, 0.826434, 0.000000;;, + 120;3; 0.000000, 0.826434, 0.000000;;, + 121;3; 0.000000, 0.826434, 0.000000;;, + 122;3; 0.000000, 0.826434, 0.000000;;, + 123;3; 0.000000, 0.826434, 0.000000;;, + 124;3; 0.000000, 0.826434, 0.000000;;, + 125;3; 0.000000, 0.826434, 0.000000;;, + 126;3; 0.000000, 0.826434, 0.000000;;, + 127;3; 0.000000, 0.826434, 0.000000;;, + 128;3; 0.000000, 0.826434, 0.000000;;, + 129;3; 0.000000, 0.826434, 0.000000;;, + 130;3; 0.000000, 0.826434, 0.000000;;, + 131;3; 0.000000, 0.826434, 0.000000;;, + 132;3; 0.000000, 0.826434, 0.000000;;, + 133;3; 0.000000, 0.826434, 0.000000;;, + 134;3; 0.000000, 0.826434, 0.000000;;, + 135;3; 0.000000, 0.826434, 0.000000;;, + 136;3; 0.000000, 0.826434, 0.000000;;, + 137;3; 0.000000, 0.826434, 0.000000;;, + 138;3; 0.000000, 0.826434, 0.000000;;, + 139;3; 0.000000, 0.826434, 0.000000;;, + 140;3; 0.000000, 0.826434, 0.000000;;, + 141;3; 0.000000, 0.826434, 0.000000;;, + 142;3; 0.000000, 0.826434, 0.000000;;, + 143;3; 0.000000, 0.826434, 0.000000;;, + 144;3; 0.000000, 0.826434, 0.000000;;, + 145;3; 0.000000, 0.826434, 0.000000;;, + 146;3; 0.000000, 0.826434, 0.000000;;, + 147;3; 0.000000, 0.826434, 0.000000;;, + 148;3; 0.000000, 0.826434, 0.000000;;, + 149;3; 0.000000, 0.826434, 0.000000;;, + 150;3; 0.000000, 0.826434, 0.000000;;, + 151;3; 0.000000, 0.826434, 0.000000;;, + 152;3; 0.000000, 0.826434, 0.000000;;, + 153;3; 0.000000, 0.826434, 0.000000;;, + 154;3; 0.000000, 0.826434, 0.000000;;, + 155;3; 0.000000, 0.826434, 0.000000;;, + 156;3; 0.000000, 0.826434, 0.000000;;, + 157;3; 0.000000, 0.826434, 0.000000;;, + 158;3; 0.000000, 0.826434, 0.000000;;, + 159;3; 0.000000, 0.826434, 0.000000;;, + 160;3; 0.000000, 0.826434, 0.000000;;, + 161;3; 0.000000, 0.826434, 0.000000;;, + 162;3; 0.000000, 0.826434, 0.000000;;, + 163;3; 0.000000, 0.826434, 0.000000;;, + 164;3; 0.000000, 0.826434, 0.000000;;, + 165;3; 0.000000, 0.826434, 0.000000;;, + 166;3; 0.000000, 0.826434, 0.000000;;, + 167;3; 0.000000, 0.826434, 0.000000;;, + 168;3; 0.000000, 0.826434, 0.000000;;, + 169;3; 0.000000, 0.826434, 0.000000;;, + 170;3; 0.000000, 0.826434, 0.000000;;, + 171;3; 0.000000, 0.826434, 0.000000;;, + 172;3; 0.000000, 0.826434, 0.000000;;, + 173;3; 0.000000, 0.826434, 0.000000;;, + 174;3; 0.000000, 0.826434, 0.000000;;, + 175;3; 0.000000, 0.826434, 0.000000;;, + 176;3; 0.000000, 0.826434, 0.000000;;, + 177;3; 0.000000, 0.826434, 0.000000;;, + 178;3; 0.000000, 0.826434, 0.000000;;, + 179;3; 0.000000, 0.826434, 0.000000;;, + 180;3; 0.000000, 0.826434, 0.000000;;, + 181;3; 0.000000, 0.826434, 0.000000;;, + 182;3; 0.000000, 0.826434, 0.000000;;, + 183;3; 0.000000, 0.826434, 0.000000;;, + 184;3; 0.000000, 0.826434, 0.000000;;, + 185;3; 0.000000, 0.826434, 0.000000;;, + 186;3;-0.000000, 0.826434,-0.000000;;, + 187;3;-0.000000, 0.826434,-0.000000;;, + 188;3;-0.000000, 0.826434, 0.000000;;, + 189;3;-0.000000, 0.826434, 0.000000;;, + 190;3;-0.000000, 0.826434,-0.000000;;, + 191;3; 0.000000, 0.826434, 0.000000;;, + 192;3; 0.000000, 0.826434, 0.000000;;, + 193;3; 0.000000, 0.826434, 0.000000;;, + 194;3; 0.000000, 0.826434,-0.000000;;, + 195;3; 0.000000, 0.826434,-0.000000;;, + 196;3; 0.000000, 0.826434, 0.000000;;, + 197;3; 0.000000, 0.826434,-0.000000;;, + 198;3; 0.000000, 0.826434,-0.000000;;, + 199;3; 0.000000, 0.826434, 0.000000;;, + 200;3; 0.000000, 0.826434, 0.000000;;, + 201;3; 0.000000, 0.826434, 0.000000;;, + 202;3; 0.000000, 0.826434, 0.000000;;, + 203;3; 0.000000, 0.826434, 0.000000;;, + 204;3; 0.000000, 0.826434, 0.000000;;, + 205;3; 0.000000, 0.826434, 0.000000;;, + 206;3; 0.000000, 0.826434, 0.000000;;, + 207;3; 0.000000, 0.826434, 0.000000;;, + 208;3; 0.000000, 0.826434, 0.000000;;, + 209;3; 0.000000, 0.826434, 0.000000;;, + 210;3;-0.000000, 0.826434, 0.000000;;, + 211;3;-0.000000, 0.826434, 0.000000;;, + 212;3; 0.000000, 0.826434,-0.000000;;, + 213;3; 0.000000, 0.826434, 0.000000;;, + 214;3; 0.000000, 0.826434, 0.000000;;, + 215;3;-0.000000, 0.826434,-0.000000;;, + 216;3;-0.000000, 0.826434,-0.000000;;, + 217;3;-0.000000, 0.826434,-0.000000;;, + 218;3;-0.000000, 0.826434, 0.000000;;, + 219;3;-0.000000, 0.826434,-0.000000;;, + 220;3;-0.000000, 0.826434, 0.000000;;, + 221;3; 0.000000, 0.826434, 0.000000;;, + 222;3;-0.000000, 0.826434, 0.000000;;, + 223;3; 0.000000, 0.826434,-0.000000;;, + 224;3; 0.000000, 0.826434,-0.000000;;, + 225;3; 0.000000, 0.826434, 0.000000;;, + 226;3; 0.000000, 0.826434, 0.000000;;, + 227;3; 0.000000, 0.826434, 0.000000;;, + 228;3;-0.000000, 0.826434, 0.000000;;, + 229;3; 0.000000, 0.826434, 0.000000;;, + 230;3; 0.000000, 0.826434, 0.000000;;, + 231;3; 0.000000, 0.826434,-0.000000;;, + 232;3;-0.000000, 0.826434,-0.000000;;, + 233;3; 0.000000, 0.826434, 0.000000;;, + 234;3; 0.000000, 0.826434, 0.000000;;, + 235;3; 0.000000, 0.826434, 0.000000;;, + 236;3; 0.000000, 0.826434, 0.000000;;, + 237;3; 0.000000, 0.826434, 0.000000;;, + 238;3; 0.000000, 0.826434, 0.000000;;, + 239;3; 0.000000, 0.826434, 0.000000;;, + 240;3; 0.000000, 0.826434, 0.000000;;, + 241;3; 0.000000, 0.826434, 0.000000;;, + 242;3; 0.000000, 0.826434, 0.000000;;, + 243;3; 0.000000, 0.826434, 0.000000;;, + 244;3; 0.000000, 0.826434, 0.000000;;, + 245;3; 0.000000, 0.826434, 0.000000;;, + 246;3; 0.000000, 0.826434, 0.000000;;, + 247;3; 0.000000, 0.826434, 0.000000;;, + 248;3; 0.000000, 0.826434, 0.000000;;, + 249;3; 0.000000, 0.826434, 0.000000;;; + } + } + Animation { + {Armature_Bone_017} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 1;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 2;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 3;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 4;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 5;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 6;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 7;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 8;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 9;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 10;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 11;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 12;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 13;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 14;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 15;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 16;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 17;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 18;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 19;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 20;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 21;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 22;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 23;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 24;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 25;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 26;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 27;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 28;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 29;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 30;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 31;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 32;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 33;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 34;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 35;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 36;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 37;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 38;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 39;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 40;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 41;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 42;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 43;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 44;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 45;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 46;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 47;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 48;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 49;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 50;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 51;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 52;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 53;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 54;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 55;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 56;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 57;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 58;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 59;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 60;4;-0.979875, 0.161874, 0.019150, 0.115206;;, + 61;4;-0.979789, 0.162353, 0.019554, 0.115152;;, + 62;4;-0.979645, 0.163155, 0.020231, 0.115062;;, + 63;4;-0.979441, 0.164282, 0.021181, 0.114934;;, + 64;4;-0.979176, 0.165732, 0.022406, 0.114769;;, + 65;4;-0.978851, 0.167506, 0.023902, 0.114566;;, + 66;4;-0.978463, 0.169599, 0.025669, 0.114325;;, + 67;4;-0.978013, 0.172006, 0.027699, 0.114046;;, + 68;4;-0.977502, 0.174718, 0.029988, 0.113730;;, + 69;4;-0.976930, 0.177724, 0.032525, 0.113377;;, + 70;4;-0.976297, 0.181012, 0.035299, 0.112989;;, + 71;4;-0.975606, 0.184565, 0.038297, 0.112566;;, + 72;4;-0.974858, 0.188363, 0.041502, 0.112110;;, + 73;4;-0.974056, 0.192385, 0.044895, 0.111622;;, + 74;4;-0.973202, 0.196604, 0.048455, 0.111105;;, + 75;4;-0.972300, 0.200992, 0.052158, 0.110562;;, + 76;4;-0.971355, 0.205520, 0.055979, 0.109995;;, + 77;4;-0.970370, 0.210154, 0.059889, 0.109408;;, + 78;4;-0.969350, 0.214859, 0.063860, 0.108802;;, + 79;4;-0.968301, 0.219601, 0.067861, 0.108183;;, + 80;4;-0.967227, 0.224343, 0.071862, 0.107554;;, + 81;4;-0.966135, 0.229049, 0.075833, 0.106917;;, + 82;4;-0.965029, 0.233683, 0.079743, 0.106278;;, + 83;4;-0.963917, 0.238210, 0.083564, 0.105639;;, + 84;4;-0.962802, 0.242599, 0.087267, 0.105005;;, + 85;4;-0.961691, 0.246818, 0.090827, 0.104377;;, + 86;4;-0.960588, 0.250839, 0.094220, 0.103761;;, + 87;4;-0.959498, 0.254637, 0.097425, 0.103158;;, + 88;4;-0.958425, 0.258190, 0.100423, 0.102571;;, + 89;4;-0.957374, 0.261478, 0.103198, 0.102003;;, + 90;4;-0.956347, 0.264484, 0.105735, 0.101455;;, + 91;4;-0.955348, 0.267196, 0.108023, 0.100930;;, + 92;4;-0.954380, 0.269603, 0.110054, 0.100429;;, + 93;4;-0.953444, 0.271696, 0.111820, 0.099952;;, + 94;4;-0.952543, 0.273470, 0.113317, 0.099503;;, + 95;4;-0.951678, 0.274921, 0.114541, 0.099080;;, + 96;4;-0.950851, 0.276047, 0.115492, 0.098685;;, + 97;4;-0.950061, 0.276849, 0.116168, 0.098317;;, + 98;4;-0.949311, 0.277328, 0.116573, 0.097978;;, + 99;4;-0.948600, 0.277487, 0.116707, 0.097667;;, + 100;4;-0.947606, 0.278352, 0.114680, 0.097994;;, + 101;4;-0.946013, 0.280934, 0.108572, 0.099579;;, + 102;4;-0.943877, 0.285084, 0.098621, 0.102351;;, + 103;4;-0.941335, 0.290425, 0.085567, 0.106085;;, + 104;4;-0.938612, 0.296333, 0.070718, 0.110381;;, + 105;4;-0.935984, 0.302027, 0.055777, 0.114719;;, + 106;4;-0.933721, 0.306746, 0.042457, 0.118572;;, + 107;4;-0.932020, 0.309924, 0.032088, 0.121530;;, + 108;4;-0.930988, 0.311254, 0.025443, 0.123356;;, + 109;4;-0.930648, 0.310658, 0.022790, 0.123964;;, + 110;4;-0.931874, 0.303766, 0.019976, 0.124160;;, + 111;4;-0.935570, 0.286129, 0.012883, 0.124734;;, + 112;4;-0.941596, 0.258433, 0.001869, 0.125633;;, + 113;4;-0.949505, 0.222706,-0.012143, 0.126744;;, + 114;4;-0.958509, 0.182474,-0.027621, 0.127898;;, + 115;4;-0.967582, 0.142297,-0.042635, 0.128893;;, + 116;4;-0.975687, 0.106729,-0.055304, 0.129545;;, + 117;4;-0.982021, 0.079283,-0.064216, 0.129726;;, + 118;4;-0.986114, 0.061968,-0.068604, 0.129376;;, + 119;4;-0.987803, 0.055451,-0.068262, 0.128494;;, + 120;4;-0.987955, 0.055992,-0.064683, 0.127299;;, + 121;4;-0.987395, 0.060090,-0.059194, 0.125987;;, + 122;4;-0.986102, 0.067853,-0.051737, 0.124555;;, + 123;4;-0.984122, 0.079055,-0.042435, 0.123010;;, + 124;4;-0.981588, 0.093026,-0.031646, 0.121375;;, + 125;4;-0.978714, 0.108699,-0.019945, 0.119684;;, + 126;4;-0.975748, 0.124832,-0.007995, 0.117978;;, + 127;4;-0.972912, 0.140311, 0.003603, 0.116293;;, + 128;4;-0.970367, 0.154340, 0.014422, 0.114656;;, + 129;4;-0.968201, 0.166469, 0.024222, 0.113081;;, + 130;4;-0.966217, 0.178502, 0.034246, 0.111470;;, + 131;4;-0.964188, 0.192256, 0.045705, 0.109732;;, + 132;4;-0.962124, 0.207326, 0.058258, 0.107896;;, + 133;4;-0.960044, 0.222988, 0.071305, 0.106016;;, + 134;4;-0.957976, 0.238232, 0.084005, 0.104167;;, + 135;4;-0.955948, 0.251934, 0.095420, 0.102432;;, + 136;4;-0.953985, 0.263127, 0.104744, 0.100884;;, + 137;4;-0.952104, 0.271203, 0.111471, 0.099567;;, + 138;4;-0.950310, 0.275957, 0.115432, 0.098498;;, + 139;4;-0.948600, 0.277487, 0.116707, 0.097667;;, + 140;4;-0.945807, 0.280934, 0.108572, 0.099491;;, + 141;4;-0.941092, 0.290425, 0.085567, 0.105980;;, + 142;4;-0.935828, 0.302027, 0.055777, 0.114651;;, + 143;4;-0.931974, 0.309924, 0.032088, 0.121510;;, + 144;4;-0.930648, 0.310658, 0.022790, 0.123964;;, + 145;4;-0.935570, 0.286129, 0.012883, 0.124734;;, + 146;4;-0.949505, 0.222706,-0.012143, 0.126744;;, + 147;4;-0.967582, 0.142297,-0.042635, 0.128893;;, + 148;4;-0.982021, 0.079283,-0.064216, 0.129726;;, + 149;4;-0.987803, 0.055451,-0.068262, 0.128494;;, + 150;4;-0.987395, 0.060090,-0.059194, 0.125987;;, + 151;4;-0.984122, 0.079055,-0.042435, 0.123010;;, + 152;4;-0.978714, 0.108699,-0.019945, 0.119684;;, + 153;4;-0.972912, 0.140311, 0.003603, 0.116293;;, + 154;4;-0.968201, 0.166469, 0.024222, 0.113081;;, + 155;4;-0.963648, 0.192256, 0.045705, 0.109500;;, + 156;4;-0.958223, 0.222988, 0.071305, 0.105234;;, + 157;4;-0.953112, 0.251934, 0.095420, 0.101215;;, + 158;4;-0.949710, 0.271203, 0.111471, 0.098540;;, + 159;4;-0.948600, 0.277487, 0.116707, 0.097667;;, + 160;4;-0.948772, 0.277181, 0.116571, 0.097764;;, + 161;4;-0.949294, 0.276233, 0.116135, 0.098056;;, + 162;4;-0.950166, 0.274601, 0.115349, 0.098545;;, + 163;4;-0.951382, 0.272249, 0.114161, 0.099228;;, + 164;4;-0.952929, 0.269148, 0.112515, 0.100095;;, + 165;4;-0.954778, 0.265283, 0.110357, 0.101132;;, + 166;4;-0.956893, 0.260654, 0.107636, 0.102318;;, + 167;4;-0.959220, 0.255284, 0.104305, 0.103623;;, + 168;4;-0.961697, 0.249216, 0.100332, 0.105013;;, + 169;4;-0.964252, 0.242515, 0.095696, 0.106445;;, + 170;4;-0.966806, 0.235267, 0.090397, 0.107878;;, + 171;4;-0.969283, 0.227572, 0.084448, 0.109267;;, + 172;4;-0.971611, 0.219538, 0.077881, 0.110573;;, + 173;4;-0.973725, 0.211273, 0.070741, 0.111758;;, + 174;4;-0.975574, 0.202879, 0.063082, 0.112796;;, + 175;4;-0.977121, 0.194448, 0.054962, 0.113663;;, + 176;4;-0.978337, 0.186059, 0.046439, 0.114345;;, + 177;4;-0.979209, 0.177775, 0.037573, 0.114834;;, + 178;4;-0.979731, 0.169648, 0.028415, 0.115127;;, + 179;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 180;4;-0.977330, 0.157257, 0.000801, 0.113483;;, + 181;4;-0.969586, 0.159468,-0.034876, 0.108245;;, + 182;4;-0.956995, 0.167728,-0.086843, 0.099729;;, + 183;4;-0.940526, 0.180516,-0.151718, 0.088589;;, + 184;4;-0.921869, 0.195354,-0.223678, 0.075970;;, + 185;4;-0.903212, 0.209153,-0.295231, 0.063351;;, + 186;4;-0.886743, 0.218930,-0.358924, 0.052212;;, + 187;4;-0.874152, 0.222478,-0.409040, 0.043696;;, + 188;4;-0.866408, 0.218624,-0.442335, 0.038458;;, + 189;4;-0.863835, 0.207091,-0.457772, 0.036717;;, + 190;4;-0.874577, 0.175955,-0.436552, 0.043943;;, + 191;4;-0.904835, 0.116414,-0.362687, 0.064296;;, + 192;4;-0.943686, 0.045256,-0.260185, 0.090428;;, + 193;4;-0.973943,-0.011707,-0.170527, 0.110781;;, + 194;4;-0.984686,-0.038456,-0.122434, 0.118006;;, + 195;4;-0.984260,-0.028056,-0.092636, 0.117759;;, + 196;4;-0.983063, 0.020698,-0.054045, 0.117062;;, + 197;4;-0.981526, 0.088180,-0.015868, 0.116168;;, + 198;4;-0.980328, 0.142258, 0.010320, 0.115471;;, + 199;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 200;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 201;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 202;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 203;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 204;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 205;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 206;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 207;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 208;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 209;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 210;4;-0.982290, 0.150695, 0.019335, 0.097645;;, + 211;4;-0.988519, 0.119221, 0.021241, 0.047681;;, + 212;4;-0.995187, 0.077648, 0.026395,-0.017679;;, + 213;4;-0.997795, 0.043010, 0.035674,-0.070931;;, + 214;4;-0.994022, 0.026605, 0.048538,-0.094105;;, + 215;4;-0.987763, 0.021736, 0.063892,-0.099706;;, + 216;4;-0.983282, 0.019796, 0.081120,-0.103531;;, + 217;4;-0.980629, 0.020761, 0.098990,-0.105613;;, + 218;4;-0.979165, 0.023495, 0.115690,-0.106656;;, + 219;4;-0.978037, 0.026579, 0.130145,-0.107525;;, + 220;4;-0.976996, 0.030434, 0.143821,-0.108399;;, + 221;4;-0.976269, 0.036140, 0.157476,-0.109009;;, + 222;4;-0.975891, 0.043073, 0.169157,-0.109327;;, + 223;4;-0.975768, 0.049971, 0.177127,-0.109430;;, + 224;4;-0.975754, 0.055852, 0.181129,-0.109442;;, + 225;4;-0.975795, 0.061648, 0.181578,-0.107236;;, + 226;4;-0.975918, 0.068556, 0.178383,-0.100568;;, + 227;4;-0.976123, 0.076516, 0.171549,-0.089472;;, + 228;4;-0.976405, 0.085405, 0.161237,-0.074179;;, + 229;4;-0.976756, 0.095025, 0.147807,-0.055173;;, + 230;4;-0.977162, 0.105096, 0.131851,-0.033222;;, + 231;4;-0.977602, 0.115270, 0.114179,-0.009366;;, + 232;4;-0.978055, 0.125155, 0.095775, 0.015148;;, + 233;4;-0.978495, 0.134361, 0.077689, 0.039003;;, + 234;4;-0.978901, 0.142541, 0.060921, 0.060955;;, + 235;4;-0.979252, 0.149426, 0.046317, 0.079961;;, + 236;4;-0.979534, 0.154838, 0.034513, 0.095253;;, + 237;4;-0.979739, 0.158691, 0.025916, 0.106349;;, + 238;4;-0.979863, 0.160970, 0.020734, 0.113018;;, + 239;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 240;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 241;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 242;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 243;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 244;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 245;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 246;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 247;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 248;4;-0.979903, 0.161715, 0.019016, 0.115224;;, + 249;4;-0.979903, 0.161715, 0.019016, 0.115224;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3;-0.000000, 0.893468, 0.000000;;, + 1;3;-0.000000, 0.893468, 0.000000;;, + 2;3;-0.000000, 0.893468, 0.000000;;, + 3;3;-0.000000, 0.893468, 0.000000;;, + 4;3;-0.000000, 0.893468, 0.000000;;, + 5;3;-0.000000, 0.893468, 0.000000;;, + 6;3;-0.000000, 0.893468, 0.000000;;, + 7;3;-0.000000, 0.893468, 0.000000;;, + 8;3;-0.000000, 0.893468, 0.000000;;, + 9;3;-0.000000, 0.893468, 0.000000;;, + 10;3;-0.000000, 0.893468, 0.000000;;, + 11;3;-0.000000, 0.893468, 0.000000;;, + 12;3;-0.000000, 0.893468, 0.000000;;, + 13;3;-0.000000, 0.893468, 0.000000;;, + 14;3;-0.000000, 0.893468, 0.000000;;, + 15;3;-0.000000, 0.893468, 0.000000;;, + 16;3;-0.000000, 0.893468, 0.000000;;, + 17;3;-0.000000, 0.893468, 0.000000;;, + 18;3;-0.000000, 0.893468, 0.000000;;, + 19;3;-0.000000, 0.893468, 0.000000;;, + 20;3;-0.000000, 0.893468, 0.000000;;, + 21;3;-0.000000, 0.893468, 0.000000;;, + 22;3;-0.000000, 0.893468, 0.000000;;, + 23;3;-0.000000, 0.893468, 0.000000;;, + 24;3;-0.000000, 0.893468, 0.000000;;, + 25;3;-0.000000, 0.893468, 0.000000;;, + 26;3;-0.000000, 0.893468, 0.000000;;, + 27;3;-0.000000, 0.893468, 0.000000;;, + 28;3;-0.000000, 0.893468, 0.000000;;, + 29;3;-0.000000, 0.893468, 0.000000;;, + 30;3;-0.000000, 0.893468, 0.000000;;, + 31;3;-0.000000, 0.893468, 0.000000;;, + 32;3;-0.000000, 0.893468, 0.000000;;, + 33;3;-0.000000, 0.893468, 0.000000;;, + 34;3;-0.000000, 0.893468, 0.000000;;, + 35;3;-0.000000, 0.893468, 0.000000;;, + 36;3;-0.000000, 0.893468, 0.000000;;, + 37;3;-0.000000, 0.893468, 0.000000;;, + 38;3;-0.000000, 0.893468, 0.000000;;, + 39;3;-0.000000, 0.893468, 0.000000;;, + 40;3;-0.000000, 0.893468, 0.000000;;, + 41;3;-0.000000, 0.893468, 0.000000;;, + 42;3;-0.000000, 0.893468, 0.000000;;, + 43;3;-0.000000, 0.893468, 0.000000;;, + 44;3;-0.000000, 0.893468, 0.000000;;, + 45;3;-0.000000, 0.893468, 0.000000;;, + 46;3;-0.000000, 0.893468, 0.000000;;, + 47;3;-0.000000, 0.893468, 0.000000;;, + 48;3;-0.000000, 0.893468, 0.000000;;, + 49;3;-0.000000, 0.893468, 0.000000;;, + 50;3;-0.000000, 0.893468, 0.000000;;, + 51;3;-0.000000, 0.893468, 0.000000;;, + 52;3;-0.000000, 0.893468, 0.000000;;, + 53;3;-0.000000, 0.893468, 0.000000;;, + 54;3;-0.000000, 0.893468, 0.000000;;, + 55;3;-0.000000, 0.893468, 0.000000;;, + 56;3;-0.000000, 0.893468, 0.000000;;, + 57;3;-0.000000, 0.893468, 0.000000;;, + 58;3;-0.000000, 0.893468, 0.000000;;, + 59;3;-0.000000, 0.893468, 0.000000;;, + 60;3;-0.000000, 0.893468, 0.000000;;, + 61;3;-0.000000, 0.893468, 0.000000;;, + 62;3;-0.000000, 0.893468, 0.000000;;, + 63;3;-0.000000, 0.893468, 0.000000;;, + 64;3;-0.000000, 0.893468, 0.000000;;, + 65;3;-0.000000, 0.893468, 0.000000;;, + 66;3;-0.000000, 0.893468, 0.000000;;, + 67;3;-0.000000, 0.893468, 0.000000;;, + 68;3;-0.000000, 0.893468, 0.000000;;, + 69;3;-0.000000, 0.893468, 0.000000;;, + 70;3;-0.000000, 0.893468, 0.000000;;, + 71;3;-0.000000, 0.893468, 0.000000;;, + 72;3;-0.000000, 0.893468, 0.000000;;, + 73;3;-0.000000, 0.893468, 0.000000;;, + 74;3;-0.000000, 0.893468, 0.000000;;, + 75;3;-0.000000, 0.893468, 0.000000;;, + 76;3;-0.000000, 0.893468, 0.000000;;, + 77;3;-0.000000, 0.893468, 0.000000;;, + 78;3;-0.000000, 0.893468, 0.000000;;, + 79;3;-0.000000, 0.893468, 0.000000;;, + 80;3;-0.000000, 0.893468, 0.000000;;, + 81;3;-0.000000, 0.893468, 0.000000;;, + 82;3;-0.000000, 0.893468, 0.000000;;, + 83;3;-0.000000, 0.893468, 0.000000;;, + 84;3;-0.000000, 0.893468, 0.000000;;, + 85;3;-0.000000, 0.893468, 0.000000;;, + 86;3;-0.000000, 0.893468, 0.000000;;, + 87;3;-0.000000, 0.893468, 0.000000;;, + 88;3;-0.000000, 0.893468, 0.000000;;, + 89;3;-0.000000, 0.893468, 0.000000;;, + 90;3;-0.000000, 0.893468, 0.000000;;, + 91;3;-0.000000, 0.893468, 0.000000;;, + 92;3;-0.000000, 0.893468, 0.000000;;, + 93;3;-0.000000, 0.893468, 0.000000;;, + 94;3;-0.000000, 0.893468, 0.000000;;, + 95;3;-0.000000, 0.893468, 0.000000;;, + 96;3;-0.000000, 0.893468, 0.000000;;, + 97;3;-0.000000, 0.893468, 0.000000;;, + 98;3;-0.000000, 0.893468, 0.000000;;, + 99;3;-0.000000, 0.893468, 0.000000;;, + 100;3;-0.000000, 0.893468, 0.000000;;, + 101;3;-0.000000, 0.893468, 0.000000;;, + 102;3;-0.000000, 0.893468, 0.000000;;, + 103;3;-0.000000, 0.893468, 0.000000;;, + 104;3;-0.000000, 0.893468, 0.000000;;, + 105;3;-0.000000, 0.893468, 0.000000;;, + 106;3;-0.000000, 0.893468, 0.000000;;, + 107;3;-0.000000, 0.893468, 0.000000;;, + 108;3;-0.000000, 0.893468, 0.000000;;, + 109;3;-0.000000, 0.893468, 0.000000;;, + 110;3;-0.000000, 0.893468, 0.000000;;, + 111;3;-0.000000, 0.893468, 0.000000;;, + 112;3;-0.000000, 0.893468, 0.000000;;, + 113;3;-0.000000, 0.893468, 0.000000;;, + 114;3;-0.000000, 0.893468, 0.000000;;, + 115;3;-0.000000, 0.893468, 0.000000;;, + 116;3;-0.000000, 0.893468, 0.000000;;, + 117;3;-0.000000, 0.893468, 0.000000;;, + 118;3;-0.000000, 0.893468, 0.000000;;, + 119;3;-0.000000, 0.893468, 0.000000;;, + 120;3;-0.000000, 0.893468, 0.000000;;, + 121;3;-0.000000, 0.893468, 0.000000;;, + 122;3;-0.000000, 0.893468, 0.000000;;, + 123;3;-0.000000, 0.893468, 0.000000;;, + 124;3;-0.000000, 0.893468, 0.000000;;, + 125;3;-0.000000, 0.893468, 0.000000;;, + 126;3;-0.000000, 0.893468, 0.000000;;, + 127;3;-0.000000, 0.893468, 0.000000;;, + 128;3;-0.000000, 0.893468, 0.000000;;, + 129;3;-0.000000, 0.893468, 0.000000;;, + 130;3;-0.000000, 0.893468, 0.000000;;, + 131;3;-0.000000, 0.893468, 0.000000;;, + 132;3;-0.000000, 0.893468, 0.000000;;, + 133;3;-0.000000, 0.893468, 0.000000;;, + 134;3;-0.000000, 0.893468, 0.000000;;, + 135;3;-0.000000, 0.893468, 0.000000;;, + 136;3;-0.000000, 0.893468, 0.000000;;, + 137;3;-0.000000, 0.893468, 0.000000;;, + 138;3;-0.000000, 0.893468, 0.000000;;, + 139;3;-0.000000, 0.893468, 0.000000;;, + 140;3;-0.000000, 0.893468, 0.000000;;, + 141;3;-0.000000, 0.893468, 0.000000;;, + 142;3;-0.000000, 0.893468, 0.000000;;, + 143;3;-0.000000, 0.893468, 0.000000;;, + 144;3;-0.000000, 0.893468, 0.000000;;, + 145;3;-0.000000, 0.893468, 0.000000;;, + 146;3;-0.000000, 0.893468, 0.000000;;, + 147;3;-0.000000, 0.893468, 0.000000;;, + 148;3;-0.000000, 0.893468, 0.000000;;, + 149;3;-0.000000, 0.893468, 0.000000;;, + 150;3;-0.000000, 0.893468, 0.000000;;, + 151;3;-0.000000, 0.893468, 0.000000;;, + 152;3;-0.000000, 0.893468, 0.000000;;, + 153;3;-0.000000, 0.893468, 0.000000;;, + 154;3;-0.000000, 0.893468, 0.000000;;, + 155;3;-0.000000, 0.893468, 0.000000;;, + 156;3;-0.000000, 0.893468, 0.000000;;, + 157;3;-0.000000, 0.893468, 0.000000;;, + 158;3;-0.000000, 0.893468, 0.000000;;, + 159;3;-0.000000, 0.893468, 0.000000;;, + 160;3;-0.000000, 0.893468, 0.000000;;, + 161;3;-0.000000, 0.893468, 0.000000;;, + 162;3;-0.000000, 0.893468, 0.000000;;, + 163;3;-0.000000, 0.893468, 0.000000;;, + 164;3;-0.000000, 0.893468, 0.000000;;, + 165;3;-0.000000, 0.893468, 0.000000;;, + 166;3;-0.000000, 0.893468, 0.000000;;, + 167;3;-0.000000, 0.893468, 0.000000;;, + 168;3;-0.000000, 0.893468, 0.000000;;, + 169;3;-0.000000, 0.893468, 0.000000;;, + 170;3;-0.000000, 0.893468, 0.000000;;, + 171;3;-0.000000, 0.893468, 0.000000;;, + 172;3;-0.000000, 0.893468, 0.000000;;, + 173;3;-0.000000, 0.893468, 0.000000;;, + 174;3;-0.000000, 0.893468, 0.000000;;, + 175;3;-0.000000, 0.893468, 0.000000;;, + 176;3;-0.000000, 0.893468, 0.000000;;, + 177;3;-0.000000, 0.893468, 0.000000;;, + 178;3;-0.000000, 0.893468, 0.000000;;, + 179;3;-0.000000, 0.893468, 0.000000;;, + 180;3;-0.000000, 0.893468, 0.000000;;, + 181;3; 0.000000, 0.893468, 0.000000;;, + 182;3; 0.000000, 0.893468,-0.000000;;, + 183;3; 0.000000, 0.893468,-0.000000;;, + 184;3; 0.000000, 0.893468,-0.000000;;, + 185;3;-0.000000, 0.893468, 0.000000;;, + 186;3;-0.000000, 0.893467, 0.000000;;, + 187;3;-0.000000, 0.893468, 0.000000;;, + 188;3;-0.000000, 0.893468, 0.000000;;, + 189;3;-0.000000, 0.893468, 0.000000;;, + 190;3;-0.000000, 0.893467, 0.000000;;, + 191;3;-0.000000, 0.893468, 0.000000;;, + 192;3; 0.000000, 0.893468,-0.000000;;, + 193;3; 0.000000, 0.893468, 0.000000;;, + 194;3;-0.000000, 0.893468, 0.000000;;, + 195;3; 0.000000, 0.893468, 0.000000;;, + 196;3;-0.000000, 0.893468,-0.000000;;, + 197;3;-0.000000, 0.893468,-0.000000;;, + 198;3; 0.000000, 0.893468, 0.000000;;, + 199;3;-0.000000, 0.893468, 0.000000;;, + 200;3;-0.000000, 0.893468, 0.000000;;, + 201;3;-0.000000, 0.893468, 0.000000;;, + 202;3;-0.000000, 0.893468, 0.000000;;, + 203;3;-0.000000, 0.893468, 0.000000;;, + 204;3;-0.000000, 0.893468, 0.000000;;, + 205;3;-0.000000, 0.893468, 0.000000;;, + 206;3;-0.000000, 0.893468, 0.000000;;, + 207;3;-0.000000, 0.893468, 0.000000;;, + 208;3;-0.000000, 0.893468, 0.000000;;, + 209;3;-0.000000, 0.893468, 0.000000;;, + 210;3;-0.000000, 0.893468, 0.000000;;, + 211;3;-0.000000, 0.893468, 0.000000;;, + 212;3; 0.000000, 0.893468,-0.000000;;, + 213;3;-0.000000, 0.893468, 0.000000;;, + 214;3;-0.000000, 0.893468,-0.000000;;, + 215;3; 0.000000, 0.893467, 0.000000;;, + 216;3;-0.000000, 0.893468, 0.000000;;, + 217;3;-0.000000, 0.893468, 0.000000;;, + 218;3;-0.000000, 0.893468,-0.000000;;, + 219;3;-0.000000, 0.893468,-0.000000;;, + 220;3;-0.000000, 0.893468, 0.000000;;, + 221;3;-0.000000, 0.893468,-0.000000;;, + 222;3; 0.000000, 0.893468, 0.000000;;, + 223;3; 0.000000, 0.893468, 0.000000;;, + 224;3; 0.000000, 0.893468,-0.000000;;, + 225;3; 0.000000, 0.893468, 0.000000;;, + 226;3; 0.000000, 0.893468, 0.000000;;, + 227;3;-0.000000, 0.893468,-0.000000;;, + 228;3; 0.000000, 0.893468, 0.000000;;, + 229;3; 0.000000, 0.893468, 0.000000;;, + 230;3; 0.000000, 0.893468, 0.000000;;, + 231;3; 0.000000, 0.893468,-0.000000;;, + 232;3;-0.000000, 0.893468,-0.000000;;, + 233;3; 0.000000, 0.893468,-0.000000;;, + 234;3; 0.000000, 0.893468, 0.000000;;, + 235;3; 0.000000, 0.893468, 0.000000;;, + 236;3; 0.000000, 0.893468, 0.000000;;, + 237;3;-0.000000, 0.893468, 0.000000;;, + 238;3;-0.000000, 0.893468,-0.000000;;, + 239;3;-0.000000, 0.893468, 0.000000;;, + 240;3;-0.000000, 0.893468, 0.000000;;, + 241;3;-0.000000, 0.893468, 0.000000;;, + 242;3;-0.000000, 0.893468, 0.000000;;, + 243;3;-0.000000, 0.893468, 0.000000;;, + 244;3;-0.000000, 0.893468, 0.000000;;, + 245;3;-0.000000, 0.893468, 0.000000;;, + 246;3;-0.000000, 0.893468, 0.000000;;, + 247;3;-0.000000, 0.893468, 0.000000;;, + 248;3;-0.000000, 0.893468, 0.000000;;, + 249;3;-0.000000, 0.893468, 0.000000;;; + } + } + Animation { + {Armature_Bone_021} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 1;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 2;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 3;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 4;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 5;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 6;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 7;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 8;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 9;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 10;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 11;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 12;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 13;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 14;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 15;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 16;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 17;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 18;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 19;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 20;4;-0.973485,-0.228703,-0.000191, 0.000019;;, + 21;4;-0.973248,-0.229564,-0.000769, 0.000075;;, + 22;4;-0.972851,-0.231004,-0.001735, 0.000168;;, + 23;4;-0.972299,-0.233013,-0.003083, 0.000299;;, + 24;4;-0.971596,-0.235566,-0.004797, 0.000465;;, + 25;4;-0.970755,-0.238620,-0.006846, 0.000664;;, + 26;4;-0.969794,-0.242111,-0.009189, 0.000891;;, + 27;4;-0.968736,-0.245954,-0.011768, 0.001141;;, + 28;4;-0.967611,-0.250044,-0.014513, 0.001407;;, + 29;4;-0.966450,-0.254263,-0.017344, 0.001682;;, + 30;4;-0.965289,-0.258481,-0.020174, 0.001956;;, + 31;4;-0.964163,-0.262571,-0.022919, 0.002222;;, + 32;4;-0.963105,-0.266414,-0.025498, 0.002472;;, + 33;4;-0.962144,-0.269905,-0.027841, 0.002700;;, + 34;4;-0.961303,-0.272959,-0.029891, 0.002898;;, + 35;4;-0.960601,-0.275512,-0.031604, 0.003064;;, + 36;4;-0.960048,-0.277521,-0.032952, 0.003195;;, + 37;4;-0.959651,-0.278961,-0.033918, 0.003289;;, + 38;4;-0.959414,-0.279822,-0.034496, 0.003345;;, + 39;4;-0.959336,-0.280107,-0.034687, 0.003363;;, + 40;4;-0.959414,-0.279822,-0.034496, 0.003345;;, + 41;4;-0.959651,-0.278961,-0.033918, 0.003289;;, + 42;4;-0.960048,-0.277521,-0.032952, 0.003195;;, + 43;4;-0.960601,-0.275512,-0.031604, 0.003064;;, + 44;4;-0.961303,-0.272959,-0.029891, 0.002898;;, + 45;4;-0.962144,-0.269905,-0.027841, 0.002700;;, + 46;4;-0.963105,-0.266414,-0.025498, 0.002472;;, + 47;4;-0.964163,-0.262571,-0.022919, 0.002222;;, + 48;4;-0.965289,-0.258481,-0.020174, 0.001956;;, + 49;4;-0.966450,-0.254263,-0.017344, 0.001682;;, + 50;4;-0.967611,-0.250045,-0.014513, 0.001407;;, + 51;4;-0.968736,-0.245954,-0.011768, 0.001141;;, + 52;4;-0.969794,-0.242111,-0.009189, 0.000891;;, + 53;4;-0.970755,-0.238620,-0.006846, 0.000664;;, + 54;4;-0.971596,-0.235566,-0.004797, 0.000465;;, + 55;4;-0.972299,-0.233013,-0.003083, 0.000299;;, + 56;4;-0.972851,-0.231004,-0.001735, 0.000168;;, + 57;4;-0.973248,-0.229564,-0.000769, 0.000075;;, + 58;4;-0.973485,-0.228703,-0.000191, 0.000019;;, + 59;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 60;4;-0.973404,-0.228767,-0.000244, 0.000024;;, + 61;4;-0.972923,-0.229820,-0.000978, 0.000095;;, + 62;4;-0.972118,-0.231582,-0.002208, 0.000214;;, + 63;4;-0.970988,-0.234057,-0.003935, 0.000382;;, + 64;4;-0.969532,-0.237244,-0.006160, 0.000597;;, + 65;4;-0.967753,-0.241141,-0.008879, 0.000861;;, + 66;4;-0.965653,-0.245739,-0.012088, 0.001172;;, + 67;4;-0.963238,-0.251026,-0.015778, 0.001530;;, + 68;4;-0.960517,-0.256983,-0.019936, 0.001933;;, + 69;4;-0.957501,-0.263589,-0.024546, 0.002380;;, + 70;4;-0.954202,-0.270812,-0.029587, 0.002869;;, + 71;4;-0.950637,-0.278617,-0.035034, 0.003397;;, + 72;4;-0.946826,-0.286961,-0.040858, 0.003962;;, + 73;4;-0.942792,-0.295795,-0.047023, 0.004560;;, + 74;4;-0.938559,-0.305063,-0.053492, 0.005187;;, + 75;4;-0.934156,-0.314704,-0.060220, 0.005839;;, + 76;4;-0.929613,-0.324650,-0.067162, 0.006512;;, + 77;4;-0.924964,-0.334830,-0.074267, 0.007201;;, + 78;4;-0.920243,-0.345168,-0.081482, 0.007901;;, + 79;4;-0.915485,-0.355585,-0.088752, 0.008606;;, + 80;4;-0.910727,-0.366003,-0.096022, 0.009311;;, + 81;4;-0.906006,-0.376340,-0.103237, 0.010010;;, + 82;4;-0.901357,-0.386520,-0.110342, 0.010699;;, + 83;4;-0.896814,-0.396466,-0.117284, 0.011372;;, + 84;4;-0.892411,-0.406108,-0.124012, 0.012025;;, + 85;4;-0.888178,-0.415376,-0.130481, 0.012652;;, + 86;4;-0.884144,-0.424210,-0.136646, 0.013250;;, + 87;4;-0.880333,-0.432554,-0.142470, 0.013815;;, + 88;4;-0.876768,-0.440359,-0.147917, 0.014343;;, + 89;4;-0.873469,-0.447582,-0.152958, 0.014832;;, + 90;4;-0.870453,-0.454187,-0.157568, 0.015278;;, + 91;4;-0.867732,-0.460145,-0.161726, 0.015682;;, + 92;4;-0.865317,-0.465432,-0.165416, 0.016039;;, + 93;4;-0.863217,-0.470030,-0.168625, 0.016351;;, + 94;4;-0.861438,-0.473926,-0.171344, 0.016614;;, + 95;4;-0.859982,-0.477114,-0.173569, 0.016830;;, + 96;4;-0.858852,-0.479589,-0.175296, 0.016998;;, + 97;4;-0.858047,-0.481351,-0.176526, 0.017117;;, + 98;4;-0.857566,-0.482403,-0.177260, 0.017188;;, + 99;4;-0.857407,-0.482752,-0.177504, 0.017212;;, + 100;4;-0.858309,-0.480401,-0.175889, 0.017055;;, + 101;4;-0.861111,-0.473098,-0.170870, 0.016568;;, + 102;4;-0.865870,-0.460691,-0.162346, 0.015742;;, + 103;4;-0.872467,-0.443497,-0.150531, 0.014596;;, + 104;4;-0.880543,-0.422446,-0.136067, 0.013194;;, + 105;4;-0.889527,-0.399027,-0.119976, 0.011633;;, + 106;4;-0.898757,-0.374967,-0.103443, 0.010030;;, + 107;4;-0.907639,-0.351816,-0.087537, 0.008488;;, + 108;4;-0.915745,-0.330685,-0.073017, 0.007080;;, + 109;4;-0.922837,-0.312200,-0.060316, 0.005849;;, + 110;4;-0.929928,-0.293715,-0.047615, 0.004617;;, + 111;4;-0.938035,-0.272584,-0.033096, 0.003209;;, + 112;4;-0.946916,-0.249434,-0.017189, 0.001667;;, + 113;4;-0.956147,-0.225373,-0.000656, 0.000064;;, + 114;4;-0.965131,-0.201955, 0.015435,-0.001497;;, + 115;4;-0.973207,-0.180904, 0.029899,-0.002899;;, + 116;4;-0.979803,-0.163709, 0.041713,-0.004045;;, + 117;4;-0.984563,-0.151303, 0.050238,-0.004871;;, + 118;4;-0.987365,-0.143999, 0.055256,-0.005358;;, + 119;4;-0.988267,-0.141648, 0.056872,-0.005515;;, + 120;4;-0.987365,-0.143999, 0.055256,-0.005358;;, + 121;4;-0.984563,-0.151303, 0.050238,-0.004871;;, + 122;4;-0.979803,-0.163709, 0.041713,-0.004045;;, + 123;4;-0.973207,-0.180904, 0.029899,-0.002899;;, + 124;4;-0.965131,-0.201955, 0.015435,-0.001497;;, + 125;4;-0.956147,-0.225373,-0.000656, 0.000064;;, + 126;4;-0.946916,-0.249434,-0.017189, 0.001667;;, + 127;4;-0.938035,-0.272584,-0.033096, 0.003209;;, + 128;4;-0.929928,-0.293715,-0.047615, 0.004617;;, + 129;4;-0.922837,-0.312200,-0.060316, 0.005849;;, + 130;4;-0.915745,-0.330685,-0.073017, 0.007080;;, + 131;4;-0.907639,-0.351816,-0.087537, 0.008488;;, + 132;4;-0.898757,-0.374967,-0.103443, 0.010030;;, + 133;4;-0.889527,-0.399027,-0.119976, 0.011633;;, + 134;4;-0.880543,-0.422446,-0.136067, 0.013194;;, + 135;4;-0.872467,-0.443497,-0.150531, 0.014596;;, + 136;4;-0.865870,-0.460691,-0.162346, 0.015742;;, + 137;4;-0.861111,-0.473098,-0.170870, 0.016568;;, + 138;4;-0.858309,-0.480401,-0.175889, 0.017055;;, + 139;4;-0.857407,-0.482752,-0.177504, 0.017212;;, + 140;4;-0.861111,-0.473098,-0.170870, 0.016568;;, + 141;4;-0.872467,-0.443497,-0.150531, 0.014596;;, + 142;4;-0.889527,-0.399027,-0.119976, 0.011633;;, + 143;4;-0.907639,-0.351816,-0.087537, 0.008488;;, + 144;4;-0.922837,-0.312200,-0.060316, 0.005849;;, + 145;4;-0.938035,-0.272584,-0.033096, 0.003209;;, + 146;4;-0.956147,-0.225373,-0.000656, 0.000064;;, + 147;4;-0.973207,-0.180904, 0.029899,-0.002899;;, + 148;4;-0.984563,-0.151303, 0.050238,-0.004871;;, + 149;4;-0.988267,-0.141648, 0.056872,-0.005515;;, + 150;4;-0.984563,-0.151303, 0.050238,-0.004871;;, + 151;4;-0.973207,-0.180904, 0.029899,-0.002899;;, + 152;4;-0.956147,-0.225373,-0.000656, 0.000064;;, + 153;4;-0.938035,-0.272584,-0.033096, 0.003209;;, + 154;4;-0.922837,-0.312200,-0.060316, 0.005849;;, + 155;4;-0.907639,-0.351816,-0.087537, 0.008488;;, + 156;4;-0.889527,-0.399027,-0.119976, 0.011633;;, + 157;4;-0.872467,-0.443497,-0.150531, 0.014596;;, + 158;4;-0.861111,-0.473098,-0.170870, 0.016568;;, + 159;4;-0.857407,-0.482752,-0.177504, 0.017212;;, + 160;4;-0.858047,-0.481351,-0.176526, 0.017117;;, + 161;4;-0.859982,-0.477114,-0.173569, 0.016830;;, + 162;4;-0.863217,-0.470030,-0.168625, 0.016351;;, + 163;4;-0.867732,-0.460145,-0.161726, 0.015682;;, + 164;4;-0.873470,-0.447582,-0.152958, 0.014832;;, + 165;4;-0.880333,-0.432554,-0.142470, 0.013815;;, + 166;4;-0.888178,-0.415376,-0.130481, 0.012652;;, + 167;4;-0.896814,-0.396466,-0.117284, 0.011372;;, + 168;4;-0.906006,-0.376340,-0.103237, 0.010010;;, + 169;4;-0.915485,-0.355585,-0.088752, 0.008606;;, + 170;4;-0.924964,-0.334830,-0.074267, 0.007201;;, + 171;4;-0.934156,-0.314704,-0.060220, 0.005839;;, + 172;4;-0.942792,-0.295795,-0.047023, 0.004560;;, + 173;4;-0.950637,-0.278617,-0.035034, 0.003397;;, + 174;4;-0.957501,-0.263589,-0.024546, 0.002380;;, + 175;4;-0.963238,-0.251026,-0.015778, 0.001530;;, + 176;4;-0.967753,-0.241141,-0.008879, 0.000861;;, + 177;4;-0.970988,-0.234057,-0.003935, 0.000382;;, + 178;4;-0.972923,-0.229820,-0.000978, 0.000095;;, + 179;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 180;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 181;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 182;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 183;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 184;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 185;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 186;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 187;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 188;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 189;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 190;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 191;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 192;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 193;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 194;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 195;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 196;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 197;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 198;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 199;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 200;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 201;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 202;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 203;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 204;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 205;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 206;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 207;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 208;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 209;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 210;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 211;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 212;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 213;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 214;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 215;4;-0.975093,-0.217561,-0.007319, 0.001530;;, + 216;4;-0.979402,-0.186979,-0.027934, 0.005840;;, + 217;4;-0.984934,-0.147712,-0.054404, 0.011374;;, + 218;4;-0.989243,-0.117130,-0.075019, 0.015685;;, + 219;4;-0.990773,-0.106273,-0.082338, 0.017215;;, + 220;4;-0.989243,-0.117130,-0.075019, 0.015685;;, + 221;4;-0.984934,-0.147712,-0.054404, 0.011374;;, + 222;4;-0.979402,-0.186979,-0.027934, 0.005840;;, + 223;4;-0.975093,-0.217561,-0.007319, 0.001530;;, + 224;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 225;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 226;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 227;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 228;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 229;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 230;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 231;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 232;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 233;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 234;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 235;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 236;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 237;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 238;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 239;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 240;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 241;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 242;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 243;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 244;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 245;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 246;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 247;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 248;4;-0.973563,-0.228418,-0.000000, 0.000000;;, + 249;4;-0.973563,-0.228418,-0.000000, 0.000000;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3;-0.000000, 1.294482,-0.000000;;, + 1;3;-0.000000, 1.294482,-0.000000;;, + 2;3;-0.000000, 1.294482,-0.000000;;, + 3;3;-0.000000, 1.294482,-0.000000;;, + 4;3;-0.000000, 1.294482,-0.000000;;, + 5;3;-0.000000, 1.294482,-0.000000;;, + 6;3;-0.000000, 1.294482,-0.000000;;, + 7;3;-0.000000, 1.294482,-0.000000;;, + 8;3;-0.000000, 1.294482,-0.000000;;, + 9;3;-0.000000, 1.294482,-0.000000;;, + 10;3;-0.000000, 1.294482,-0.000000;;, + 11;3;-0.000000, 1.294482,-0.000000;;, + 12;3;-0.000000, 1.294482,-0.000000;;, + 13;3;-0.000000, 1.294482,-0.000000;;, + 14;3;-0.000000, 1.294482,-0.000000;;, + 15;3;-0.000000, 1.294482,-0.000000;;, + 16;3;-0.000000, 1.294482,-0.000000;;, + 17;3;-0.000000, 1.294482,-0.000000;;, + 18;3;-0.000000, 1.294482,-0.000000;;, + 19;3;-0.000000, 1.294482,-0.000000;;, + 20;3;-0.000000, 1.294482,-0.000000;;, + 21;3;-0.000000, 1.294482,-0.000000;;, + 22;3;-0.000000, 1.294482,-0.000000;;, + 23;3;-0.000000, 1.294482,-0.000000;;, + 24;3;-0.000000, 1.294482,-0.000000;;, + 25;3;-0.000000, 1.294482,-0.000000;;, + 26;3;-0.000000, 1.294482,-0.000000;;, + 27;3;-0.000000, 1.294482,-0.000000;;, + 28;3;-0.000000, 1.294482,-0.000000;;, + 29;3;-0.000000, 1.294482,-0.000000;;, + 30;3;-0.000000, 1.294482,-0.000000;;, + 31;3;-0.000000, 1.294482,-0.000000;;, + 32;3;-0.000000, 1.294482,-0.000000;;, + 33;3;-0.000000, 1.294482,-0.000000;;, + 34;3;-0.000000, 1.294482,-0.000000;;, + 35;3;-0.000000, 1.294482,-0.000000;;, + 36;3;-0.000000, 1.294482,-0.000000;;, + 37;3;-0.000000, 1.294482,-0.000000;;, + 38;3;-0.000000, 1.294482,-0.000000;;, + 39;3;-0.000000, 1.294482,-0.000000;;, + 40;3;-0.000000, 1.294482,-0.000000;;, + 41;3;-0.000000, 1.294482,-0.000000;;, + 42;3;-0.000000, 1.294482,-0.000000;;, + 43;3;-0.000000, 1.294482,-0.000000;;, + 44;3;-0.000000, 1.294482,-0.000000;;, + 45;3;-0.000000, 1.294482,-0.000000;;, + 46;3;-0.000000, 1.294482,-0.000000;;, + 47;3;-0.000000, 1.294482,-0.000000;;, + 48;3;-0.000000, 1.294482,-0.000000;;, + 49;3;-0.000000, 1.294482,-0.000000;;, + 50;3;-0.000000, 1.294482,-0.000000;;, + 51;3;-0.000000, 1.294482,-0.000000;;, + 52;3;-0.000000, 1.294482,-0.000000;;, + 53;3;-0.000000, 1.294482,-0.000000;;, + 54;3;-0.000000, 1.294482,-0.000000;;, + 55;3;-0.000000, 1.294482,-0.000000;;, + 56;3;-0.000000, 1.294482,-0.000000;;, + 57;3;-0.000000, 1.294482,-0.000000;;, + 58;3;-0.000000, 1.294482,-0.000000;;, + 59;3;-0.000000, 1.294482,-0.000000;;, + 60;3;-0.000000, 1.294482, 0.000000;;, + 61;3; 0.000000, 1.294482,-0.000000;;, + 62;3; 0.000000, 1.294481,-0.000000;;, + 63;3;-0.000000, 1.294482, 0.000000;;, + 64;3; 0.000000, 1.294482, 0.000000;;, + 65;3; 0.000000, 1.294482, 0.000000;;, + 66;3;-0.000000, 1.294482, 0.000000;;, + 67;3;-0.000000, 1.294482,-0.000000;;, + 68;3;-0.000000, 1.294482,-0.000000;;, + 69;3;-0.000000, 1.294482,-0.000000;;, + 70;3; 0.000000, 1.294481, 0.000000;;, + 71;3;-0.000000, 1.294481, 0.000000;;, + 72;3;-0.000000, 1.294482,-0.000000;;, + 73;3; 0.000000, 1.294481, 0.000000;;, + 74;3; 0.000000, 1.294482, 0.000000;;, + 75;3; 0.000000, 1.294481, 0.000000;;, + 76;3;-0.000000, 1.294482,-0.000000;;, + 77;3;-0.000000, 1.294482, 0.000000;;, + 78;3; 0.000000, 1.294482,-0.000000;;, + 79;3; 0.000000, 1.294482, 0.000000;;, + 80;3;-0.000000, 1.294482,-0.000000;;, + 81;3; 0.000000, 1.294482, 0.000000;;, + 82;3; 0.000000, 1.294481, 0.000000;;, + 83;3;-0.000000, 1.294482, 0.000000;;, + 84;3;-0.000000, 1.294482, 0.000000;;, + 85;3;-0.000000, 1.294482, 0.000000;;, + 86;3;-0.000000, 1.294482, 0.000000;;, + 87;3;-0.000000, 1.294481, 0.000000;;, + 88;3; 0.000000, 1.294482,-0.000000;;, + 89;3; 0.000000, 1.294482, 0.000000;;, + 90;3; 0.000000, 1.294482, 0.000000;;, + 91;3;-0.000000, 1.294482, 0.000000;;, + 92;3;-0.000000, 1.294482,-0.000000;;, + 93;3;-0.000000, 1.294481, 0.000000;;, + 94;3;-0.000000, 1.294482, 0.000000;;, + 95;3; 0.000000, 1.294482, 0.000000;;, + 96;3; 0.000000, 1.294482,-0.000000;;, + 97;3; 0.000000, 1.294482, 0.000000;;, + 98;3;-0.000000, 1.294482, 0.000000;;, + 99;3; 0.000000, 1.294482,-0.000000;;, + 100;3; 0.000000, 1.294481, 0.000000;;, + 101;3; 0.000000, 1.294481,-0.000000;;, + 102;3; 0.000000, 1.294482,-0.000000;;, + 103;3; 0.000000, 1.294482,-0.000000;;, + 104;3; 0.000000, 1.294482,-0.000000;;, + 105;3; 0.000000, 1.294481, 0.000000;;, + 106;3; 0.000000, 1.294481,-0.000000;;, + 107;3;-0.000000, 1.294482, 0.000000;;, + 108;3; 0.000000, 1.294482,-0.000000;;, + 109;3; 0.000000, 1.294481,-0.000000;;, + 110;3; 0.000000, 1.294482, 0.000000;;, + 111;3;-0.000000, 1.294482,-0.000000;;, + 112;3; 0.000000, 1.294482,-0.000000;;, + 113;3; 0.000000, 1.294482,-0.000000;;, + 114;3;-0.000000, 1.294482,-0.000000;;, + 115;3;-0.000000, 1.294482, 0.000000;;, + 116;3; 0.000000, 1.294482,-0.000000;;, + 117;3; 0.000000, 1.294482,-0.000000;;, + 118;3; 0.000000, 1.294482,-0.000000;;, + 119;3;-0.000000, 1.294482, 0.000000;;, + 120;3; 0.000000, 1.294481,-0.000000;;, + 121;3;-0.000000, 1.294482,-0.000000;;, + 122;3;-0.000000, 1.294482,-0.000000;;, + 123;3;-0.000000, 1.294482, 0.000000;;, + 124;3; 0.000000, 1.294482,-0.000000;;, + 125;3; 0.000000, 1.294481, 0.000000;;, + 126;3; 0.000000, 1.294481,-0.000000;;, + 127;3; 0.000000, 1.294482, 0.000000;;, + 128;3; 0.000000, 1.294481, 0.000000;;, + 129;3;-0.000000, 1.294482, 0.000000;;, + 130;3; 0.000000, 1.294482, 0.000000;;, + 131;3; 0.000000, 1.294482,-0.000000;;, + 132;3;-0.000000, 1.294482, 0.000000;;, + 133;3;-0.000000, 1.294482,-0.000000;;, + 134;3;-0.000000, 1.294482, 0.000000;;, + 135;3; 0.000000, 1.294482, 0.000000;;, + 136;3; 0.000000, 1.294481,-0.000000;;, + 137;3;-0.000000, 1.294482,-0.000000;;, + 138;3;-0.000000, 1.294482, 0.000000;;, + 139;3; 0.000000, 1.294482,-0.000000;;, + 140;3;-0.000000, 1.294482,-0.000000;;, + 141;3; 0.000000, 1.294482, 0.000000;;, + 142;3; 0.000000, 1.294482, 0.000000;;, + 143;3;-0.000000, 1.294482, 0.000000;;, + 144;3; 0.000000, 1.294481,-0.000000;;, + 145;3;-0.000000, 1.294482,-0.000000;;, + 146;3; 0.000000, 1.294482,-0.000000;;, + 147;3;-0.000000, 1.294482, 0.000000;;, + 148;3; 0.000000, 1.294482,-0.000000;;, + 149;3;-0.000000, 1.294482, 0.000000;;, + 150;3;-0.000000, 1.294482,-0.000000;;, + 151;3;-0.000000, 1.294482, 0.000000;;, + 152;3; 0.000000, 1.294481, 0.000000;;, + 153;3; 0.000000, 1.294482, 0.000000;;, + 154;3;-0.000000, 1.294482, 0.000000;;, + 155;3;-0.000000, 1.294482,-0.000000;;, + 156;3; 0.000000, 1.294482,-0.000000;;, + 157;3; 0.000000, 1.294482,-0.000000;;, + 158;3; 0.000000, 1.294482,-0.000000;;, + 159;3; 0.000000, 1.294482,-0.000000;;, + 160;3; 0.000000, 1.294482,-0.000000;;, + 161;3;-0.000000, 1.294482, 0.000000;;, + 162;3;-0.000000, 1.294481, 0.000000;;, + 163;3; 0.000000, 1.294482, 0.000000;;, + 164;3;-0.000000, 1.294482,-0.000000;;, + 165;3; 0.000000, 1.294482, 0.000000;;, + 166;3;-0.000000, 1.294482, 0.000000;;, + 167;3; 0.000000, 1.294482, 0.000000;;, + 168;3; 0.000000, 1.294482, 0.000000;;, + 169;3; 0.000000, 1.294482,-0.000000;;, + 170;3; 0.000000, 1.294482, 0.000000;;, + 171;3;-0.000000, 1.294482, 0.000000;;, + 172;3;-0.000000, 1.294481,-0.000000;;, + 173;3;-0.000000, 1.294482, 0.000000;;, + 174;3;-0.000000, 1.294482,-0.000000;;, + 175;3; 0.000000, 1.294482, 0.000000;;, + 176;3;-0.000000, 1.294482, 0.000000;;, + 177;3; 0.000000, 1.294481, 0.000000;;, + 178;3;-0.000000, 1.294481,-0.000000;;, + 179;3;-0.000000, 1.294482,-0.000000;;, + 180;3; 0.000000, 1.294481, 0.000000;;, + 181;3; 0.000000, 1.294482,-0.000000;;, + 182;3; 0.000000, 1.294482, 0.000000;;, + 183;3; 0.000000, 1.294482, 0.000000;;, + 184;3;-0.000000, 1.294482,-0.000000;;, + 185;3; 0.000000, 1.294482,-0.000000;;, + 186;3;-0.000000, 1.294482,-0.000000;;, + 187;3; 0.000000, 1.294482,-0.000000;;, + 188;3;-0.000000, 1.294482, 0.000000;;, + 189;3;-0.000000, 1.294482,-0.000000;;, + 190;3; 0.000000, 1.294482,-0.000000;;, + 191;3; 0.000000, 1.294482,-0.000000;;, + 192;3; 0.000000, 1.294482,-0.000000;;, + 193;3; 0.000000, 1.294481,-0.000000;;, + 194;3; 0.000000, 1.294482,-0.000000;;, + 195;3; 0.000000, 1.294482,-0.000000;;, + 196;3; 0.000000, 1.294481,-0.000000;;, + 197;3;-0.000000, 1.294481, 0.000000;;, + 198;3; 0.000000, 1.294482,-0.000000;;, + 199;3;-0.000000, 1.294482,-0.000000;;, + 200;3;-0.000000, 1.294482,-0.000000;;, + 201;3;-0.000000, 1.294482,-0.000000;;, + 202;3;-0.000000, 1.294482,-0.000000;;, + 203;3;-0.000000, 1.294482,-0.000000;;, + 204;3;-0.000000, 1.294482,-0.000000;;, + 205;3;-0.000000, 1.294482,-0.000000;;, + 206;3;-0.000000, 1.294482,-0.000000;;, + 207;3;-0.000000, 1.294482,-0.000000;;, + 208;3;-0.000000, 1.294482,-0.000000;;, + 209;3;-0.000000, 1.294482,-0.000000;;, + 210;3; 0.000000, 1.294482, 0.000000;;, + 211;3;-0.000000, 1.294482, 0.000000;;, + 212;3;-0.000000, 1.294481, 0.000000;;, + 213;3;-0.000000, 1.294482,-0.000000;;, + 214;3; 0.000000, 1.294482,-0.000000;;, + 215;3; 0.000000, 1.294482,-0.000000;;, + 216;3;-0.000000, 1.294482,-0.000000;;, + 217;3; 0.000000, 1.294482,-0.000000;;, + 218;3; 0.000000, 1.294482,-0.000000;;, + 219;3;-0.000000, 1.294482, 0.000000;;, + 220;3; 0.000000, 1.294482,-0.000000;;, + 221;3; 0.000000, 1.294482, 0.000000;;, + 222;3; 0.000000, 1.294482,-0.000000;;, + 223;3;-0.000000, 1.294482, 0.000000;;, + 224;3;-0.000000, 1.294482,-0.000000;;, + 225;3; 0.000000, 1.294482, 0.000000;;, + 226;3; 0.000000, 1.294482,-0.000000;;, + 227;3; 0.000000, 1.294482,-0.000000;;, + 228;3;-0.000000, 1.294481,-0.000000;;, + 229;3;-0.000000, 1.294482, 0.000000;;, + 230;3;-0.000000, 1.294481, 0.000000;;, + 231;3;-0.000000, 1.294481, 0.000000;;, + 232;3; 0.000000, 1.294482,-0.000000;;, + 233;3; 0.000000, 1.294482,-0.000000;;, + 234;3;-0.000000, 1.294482,-0.000000;;, + 235;3;-0.000000, 1.294482,-0.000000;;, + 236;3;-0.000000, 1.294481,-0.000000;;, + 237;3;-0.000000, 1.294481, 0.000000;;, + 238;3;-0.000000, 1.294481, 0.000000;;, + 239;3;-0.000000, 1.294482,-0.000000;;, + 240;3;-0.000000, 1.294482,-0.000000;;, + 241;3;-0.000000, 1.294482,-0.000000;;, + 242;3;-0.000000, 1.294482,-0.000000;;, + 243;3;-0.000000, 1.294482,-0.000000;;, + 244;3;-0.000000, 1.294482,-0.000000;;, + 245;3;-0.000000, 1.294482,-0.000000;;, + 246;3;-0.000000, 1.294482,-0.000000;;, + 247;3;-0.000000, 1.294482,-0.000000;;, + 248;3;-0.000000, 1.294482,-0.000000;;, + 249;3;-0.000000, 1.294482,-0.000000;;; + } + } + Animation { + {Armature_Bone_025} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 1;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 2;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 3;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 4;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 5;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 6;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 7;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 8;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 9;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 10;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 11;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 12;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 13;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 14;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 15;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 16;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 17;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 18;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 19;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 20;4;-0.945928,-0.324372, 0.000064, 0.000032;;, + 21;4;-0.946031,-0.324057, 0.000256, 0.000128;;, + 22;4;-0.946203,-0.323531, 0.000578, 0.000290;;, + 23;4;-0.946444,-0.322797, 0.001027, 0.000514;;, + 24;4;-0.946749,-0.321864, 0.001598, 0.000800;;, + 25;4;-0.947114,-0.320748, 0.002281, 0.001142;;, + 26;4;-0.947532,-0.319472, 0.003062, 0.001533;;, + 27;4;-0.947991,-0.318068, 0.003921, 0.001964;;, + 28;4;-0.948480,-0.316574, 0.004836, 0.002422;;, + 29;4;-0.948985,-0.315033, 0.005779, 0.002894;;, + 30;4;-0.949489,-0.313491, 0.006722, 0.003366;;, + 31;4;-0.949979,-0.311997, 0.007637, 0.003824;;, + 32;4;-0.950438,-0.310593, 0.008496, 0.004254;;, + 33;4;-0.950856,-0.309317, 0.009277, 0.004645;;, + 34;4;-0.951221,-0.308201, 0.009960, 0.004987;;, + 35;4;-0.951526,-0.307268, 0.010531, 0.005273;;, + 36;4;-0.951766,-0.306534, 0.010980, 0.005498;;, + 37;4;-0.951939,-0.306008, 0.011302, 0.005659;;, + 38;4;-0.952042,-0.305694, 0.011494, 0.005756;;, + 39;4;-0.952076,-0.305589, 0.011558, 0.005788;;, + 40;4;-0.952075,-0.305611, 0.011546, 0.005782;;, + 41;4;-0.952071,-0.305681, 0.011508, 0.005763;;, + 42;4;-0.952060,-0.305809, 0.011436, 0.005727;;, + 43;4;-0.952037,-0.306007, 0.011325, 0.005671;;, + 44;4;-0.951997,-0.306286, 0.011165, 0.005591;;, + 45;4;-0.951933,-0.306659, 0.010950, 0.005483;;, + 46;4;-0.951838,-0.307138, 0.010671, 0.005344;;, + 47;4;-0.951706,-0.307734, 0.010321, 0.005168;;, + 48;4;-0.951530,-0.308456, 0.009892, 0.004953;;, + 49;4;-0.951303,-0.309311, 0.009381, 0.004697;;, + 50;4;-0.951021,-0.310303, 0.008783, 0.004398;;, + 51;4;-0.950680,-0.311432, 0.008099, 0.004056;;, + 52;4;-0.950279,-0.312693, 0.007330, 0.003671;;, + 53;4;-0.949816,-0.314079, 0.006479, 0.003245;;, + 54;4;-0.949294,-0.315583, 0.005552, 0.002780;;, + 55;4;-0.948714,-0.317193, 0.004555, 0.002281;;, + 56;4;-0.948080,-0.318899, 0.003494, 0.001750;;, + 57;4;-0.947396,-0.320688, 0.002377, 0.001190;;, + 58;4;-0.946666,-0.322550, 0.001210, 0.000606;;, + 59;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 60;4;-0.945056,-0.326527,-0.001292,-0.000647;;, + 61;4;-0.944124,-0.328772,-0.002708,-0.001356;;, + 62;4;-0.943099,-0.331211,-0.004248,-0.002127;;, + 63;4;-0.941981,-0.333842,-0.005911,-0.002960;;, + 64;4;-0.940772,-0.336663,-0.007695,-0.003853;;, + 65;4;-0.939472,-0.339670,-0.009599,-0.004806;;, + 66;4;-0.938084,-0.342858,-0.011617,-0.005817;;, + 67;4;-0.936612,-0.346220,-0.013748,-0.006884;;, + 68;4;-0.935058,-0.349747,-0.015984,-0.008004;;, + 69;4;-0.933428,-0.353429,-0.018319,-0.009173;;, + 70;4;-0.931727,-0.357255,-0.020746,-0.010389;;, + 71;4;-0.929962,-0.361209,-0.023256,-0.011646;;, + 72;4;-0.928139,-0.365276,-0.025838,-0.012939;;, + 73;4;-0.926269,-0.369438,-0.028481,-0.014262;;, + 74;4;-0.924358,-0.373675,-0.031173,-0.015610;;, + 75;4;-0.922419,-0.377965,-0.033899,-0.016975;;, + 76;4;-0.920460,-0.382286,-0.036645,-0.018350;;, + 77;4;-0.918494,-0.386613,-0.039396,-0.019727;;, + 78;4;-0.916532,-0.390923,-0.042135,-0.021099;;, + 79;4;-0.914586,-0.395188,-0.044848,-0.022458;;, + 80;4;-0.912668,-0.399386,-0.047518,-0.023794;;, + 81;4;-0.910789,-0.403490,-0.050128,-0.025102;;, + 82;4;-0.908961,-0.407478,-0.052665,-0.026372;;, + 83;4;-0.907194,-0.411326,-0.055114,-0.027598;;, + 84;4;-0.905498,-0.415014,-0.057461,-0.028774;;, + 85;4;-0.903883,-0.418523,-0.059694,-0.029892;;, + 86;4;-0.902356,-0.421835,-0.061802,-0.030947;;, + 87;4;-0.900925,-0.424936,-0.063776,-0.031936;;, + 88;4;-0.899597,-0.427812,-0.065607,-0.032853;;, + 89;4;-0.898376,-0.430454,-0.067289,-0.033695;;, + 90;4;-0.897266,-0.432853,-0.068816,-0.034460;;, + 91;4;-0.896270,-0.435002,-0.070185,-0.035145;;, + 92;4;-0.895392,-0.436898,-0.071392,-0.035750;;, + 93;4;-0.894632,-0.438537,-0.072436,-0.036272;;, + 94;4;-0.893990,-0.439919,-0.073316,-0.036713;;, + 95;4;-0.893468,-0.441043,-0.074032,-0.037072;;, + 96;4;-0.893064,-0.441913,-0.074586,-0.037349;;, + 97;4;-0.892778,-0.442529,-0.074978,-0.037545;;, + 98;4;-0.892607,-0.442895,-0.075212,-0.037662;;, + 99;4;-0.892551,-0.443016,-0.075289,-0.037701;;, + 100;4;-0.893183,-0.440632,-0.073858,-0.036985;;, + 101;4;-0.895145,-0.433228,-0.069414,-0.034759;;, + 102;4;-0.898479,-0.420648,-0.061863,-0.030978;;, + 103;4;-0.903099,-0.403215,-0.051400,-0.025738;;, + 104;4;-0.908756,-0.381872,-0.038589,-0.019323;;, + 105;4;-0.915049,-0.358128,-0.024337,-0.012187;;, + 106;4;-0.921514,-0.333734,-0.009695,-0.004855;;, + 107;4;-0.927735,-0.310262, 0.004393, 0.002200;;, + 108;4;-0.933413,-0.288837, 0.017253, 0.008639;;, + 109;4;-0.938380,-0.270095, 0.028502, 0.014272;;, + 110;4;-0.943347,-0.251354, 0.039751, 0.019905;;, + 111;4;-0.949025,-0.229929, 0.052610, 0.026345;;, + 112;4;-0.955246,-0.206457, 0.066699, 0.033399;;, + 113;4;-0.961711,-0.182063, 0.081341, 0.040732;;, + 114;4;-0.968004,-0.158319, 0.095593, 0.047868;;, + 115;4;-0.973661,-0.136976, 0.108403, 0.054283;;, + 116;4;-0.978281,-0.119542, 0.118867, 0.059523;;, + 117;4;-0.981615,-0.106963, 0.126417, 0.063304;;, + 118;4;-0.983577,-0.099559, 0.130862, 0.065529;;, + 119;4;-0.984209,-0.097175, 0.132293, 0.066246;;, + 120;4;-0.983577,-0.099559, 0.130862, 0.065529;;, + 121;4;-0.981615,-0.106963, 0.126417, 0.063304;;, + 122;4;-0.978281,-0.119542, 0.118867, 0.059523;;, + 123;4;-0.973661,-0.136976, 0.108403, 0.054283;;, + 124;4;-0.968004,-0.158319, 0.095593, 0.047868;;, + 125;4;-0.961711,-0.182063, 0.081341, 0.040732;;, + 126;4;-0.955246,-0.206457, 0.066699, 0.033399;;, + 127;4;-0.949025,-0.229929, 0.052610, 0.026345;;, + 128;4;-0.943347,-0.251354, 0.039751, 0.019905;;, + 129;4;-0.938380,-0.270095, 0.028502, 0.014272;;, + 130;4;-0.933413,-0.288837, 0.017253, 0.008639;;, + 131;4;-0.927735,-0.310262, 0.004393, 0.002200;;, + 132;4;-0.921514,-0.333734,-0.009695,-0.004855;;, + 133;4;-0.915049,-0.358128,-0.024337,-0.012187;;, + 134;4;-0.908756,-0.381872,-0.038589,-0.019323;;, + 135;4;-0.903099,-0.403215,-0.051400,-0.025738;;, + 136;4;-0.898479,-0.420648,-0.061863,-0.030978;;, + 137;4;-0.895145,-0.433228,-0.069414,-0.034759;;, + 138;4;-0.893183,-0.440632,-0.073858,-0.036985;;, + 139;4;-0.892551,-0.443016,-0.075289,-0.037701;;, + 140;4;-0.895145,-0.433228,-0.069414,-0.034759;;, + 141;4;-0.903099,-0.403215,-0.051400,-0.025738;;, + 142;4;-0.915049,-0.358128,-0.024337,-0.012187;;, + 143;4;-0.927735,-0.310262, 0.004393, 0.002200;;, + 144;4;-0.938380,-0.270095, 0.028502, 0.014272;;, + 145;4;-0.949025,-0.229929, 0.052610, 0.026345;;, + 146;4;-0.961711,-0.182063, 0.081341, 0.040732;;, + 147;4;-0.973661,-0.136976, 0.108403, 0.054283;;, + 148;4;-0.981615,-0.106963, 0.126417, 0.063304;;, + 149;4;-0.984209,-0.097175, 0.132293, 0.066246;;, + 150;4;-0.981615,-0.106963, 0.126417, 0.063304;;, + 151;4;-0.973661,-0.136976, 0.108403, 0.054283;;, + 152;4;-0.961711,-0.182063, 0.081341, 0.040732;;, + 153;4;-0.949025,-0.229929, 0.052610, 0.026345;;, + 154;4;-0.938380,-0.270095, 0.028502, 0.014272;;, + 155;4;-0.927735,-0.310262, 0.004393, 0.002200;;, + 156;4;-0.915049,-0.358128,-0.024337,-0.012187;;, + 157;4;-0.903099,-0.403215,-0.051400,-0.025738;;, + 158;4;-0.895145,-0.433228,-0.069414,-0.034759;;, + 159;4;-0.892551,-0.443016,-0.075289,-0.037701;;, + 160;4;-0.892845,-0.442363,-0.074874,-0.037493;;, + 161;4;-0.893733,-0.440388,-0.073620,-0.036865;;, + 162;4;-0.895219,-0.437086,-0.071523,-0.035815;;, + 163;4;-0.897292,-0.432479,-0.068597,-0.034350;;, + 164;4;-0.899927,-0.426624,-0.064878,-0.032488;;, + 165;4;-0.903079,-0.419620,-0.060429,-0.030260;;, + 166;4;-0.906682,-0.411613,-0.055344,-0.027714;;, + 167;4;-0.910648,-0.402800,-0.049746,-0.024911;;, + 168;4;-0.914869,-0.393419,-0.043789,-0.021927;;, + 169;4;-0.919222,-0.383746,-0.037645,-0.018850;;, + 170;4;-0.923576,-0.374072,-0.031501,-0.015774;;, + 171;4;-0.927797,-0.364692,-0.025543,-0.012791;;, + 172;4;-0.931763,-0.355879,-0.019945,-0.009987;;, + 173;4;-0.935366,-0.347872,-0.014860,-0.007441;;, + 174;4;-0.938518,-0.340868,-0.010411,-0.005213;;, + 175;4;-0.941152,-0.335013,-0.006692,-0.003351;;, + 176;4;-0.943226,-0.330405,-0.003766,-0.001886;;, + 177;4;-0.944712,-0.327104,-0.001669,-0.000836;;, + 178;4;-0.945600,-0.325129,-0.000415,-0.000208;;, + 179;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 180;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 181;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 182;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 183;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 184;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 185;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 186;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 187;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 188;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 189;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 190;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 191;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 192;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 193;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 194;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 195;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 196;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 197;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 198;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 199;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 200;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 201;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 202;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 203;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 204;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 205;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 206;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 207;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 208;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 209;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 210;4;-0.946913,-0.316831,-0.004430,-0.015878;;, + 211;4;-0.949972,-0.293471,-0.017893,-0.060600;;, + 212;4;-0.954403,-0.258567,-0.037817,-0.118023;;, + 213;4;-0.958834,-0.221826,-0.058470,-0.162745;;, + 214;4;-0.962189,-0.191416,-0.075136,-0.178623;;, + 215;4;-0.965012,-0.161622,-0.090827,-0.177121;;, + 216;4;-0.967942,-0.126617,-0.108734,-0.171631;;, + 217;4;-0.970445,-0.093942,-0.125132,-0.161197;;, + 218;4;-0.972003,-0.072318,-0.135847,-0.146484;;, + 219;4;-0.972489,-0.065290,-0.139302,-0.129293;;, + 220;4;-0.970125,-0.088329,-0.126920,-0.104994;;, + 221;4;-0.963466,-0.153222,-0.092042,-0.070261;;, + 222;4;-0.954917,-0.236544,-0.047260,-0.034121;;, + 223;4;-0.948258,-0.301437,-0.012382,-0.008610;;, + 224;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 225;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 226;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 227;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 228;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 229;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 230;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 231;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 232;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 233;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 234;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 235;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 236;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 237;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 238;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 239;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 240;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 241;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 242;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 243;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 244;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 245;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 246;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 247;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 248;4;-0.945894,-0.324476,-0.000000, 0.000000;;, + 249;4;-0.945894,-0.324476,-0.000000, 0.000000;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3;-0.000000, 1.228822,-0.000000;;, + 1;3;-0.000000, 1.228822,-0.000000;;, + 2;3;-0.000000, 1.228822,-0.000000;;, + 3;3;-0.000000, 1.228822,-0.000000;;, + 4;3;-0.000000, 1.228822,-0.000000;;, + 5;3;-0.000000, 1.228822,-0.000000;;, + 6;3;-0.000000, 1.228822,-0.000000;;, + 7;3;-0.000000, 1.228822,-0.000000;;, + 8;3;-0.000000, 1.228822,-0.000000;;, + 9;3;-0.000000, 1.228822,-0.000000;;, + 10;3;-0.000000, 1.228822,-0.000000;;, + 11;3;-0.000000, 1.228822,-0.000000;;, + 12;3;-0.000000, 1.228822,-0.000000;;, + 13;3;-0.000000, 1.228822,-0.000000;;, + 14;3;-0.000000, 1.228822,-0.000000;;, + 15;3;-0.000000, 1.228822,-0.000000;;, + 16;3;-0.000000, 1.228822,-0.000000;;, + 17;3;-0.000000, 1.228822,-0.000000;;, + 18;3;-0.000000, 1.228822,-0.000000;;, + 19;3;-0.000000, 1.228822,-0.000000;;, + 20;3;-0.000000, 1.228822,-0.000000;;, + 21;3; 0.000000, 1.228822, 0.000000;;, + 22;3; 0.000000, 1.228822,-0.000000;;, + 23;3;-0.000000, 1.228822,-0.000000;;, + 24;3; 0.000000, 1.228822, 0.000000;;, + 25;3;-0.000000, 1.228822,-0.000000;;, + 26;3; 0.000000, 1.228822, 0.000000;;, + 27;3; 0.000000, 1.228822, 0.000000;;, + 28;3;-0.000000, 1.228822,-0.000000;;, + 29;3; 0.000000, 1.228822, 0.000000;;, + 30;3; 0.000000, 1.228822,-0.000000;;, + 31;3; 0.000000, 1.228822, 0.000000;;, + 32;3; 0.000000, 1.228822, 0.000000;;, + 33;3;-0.000000, 1.228822,-0.000000;;, + 34;3;-0.000000, 1.228822, 0.000000;;, + 35;3; 0.000000, 1.228822,-0.000000;;, + 36;3; 0.000000, 1.228822, 0.000000;;, + 37;3; 0.000000, 1.228822,-0.000000;;, + 38;3;-0.000000, 1.228822, 0.000000;;, + 39;3; 0.000000, 1.228822,-0.000000;;, + 40;3; 0.000000, 1.228822, 0.000000;;, + 41;3; 0.000000, 1.228822,-0.000000;;, + 42;3; 0.000000, 1.228822, 0.000000;;, + 43;3; 0.000000, 1.228822,-0.000000;;, + 44;3; 0.000000, 1.228822,-0.000000;;, + 45;3; 0.000000, 1.228822,-0.000000;;, + 46;3; 0.000000, 1.228822, 0.000000;;, + 47;3; 0.000000, 1.228822, 0.000000;;, + 48;3; 0.000000, 1.228822,-0.000000;;, + 49;3; 0.000000, 1.228822,-0.000000;;, + 50;3; 0.000000, 1.228822,-0.000000;;, + 51;3; 0.000000, 1.228822, 0.000000;;, + 52;3; 0.000000, 1.228822, 0.000000;;, + 53;3; 0.000000, 1.228822, 0.000000;;, + 54;3; 0.000000, 1.228822, 0.000000;;, + 55;3;-0.000000, 1.228822,-0.000000;;, + 56;3; 0.000000, 1.228822,-0.000000;;, + 57;3; 0.000000, 1.228822, 0.000000;;, + 58;3;-0.000000, 1.228822, 0.000000;;, + 59;3;-0.000000, 1.228822,-0.000000;;, + 60;3; 0.000000, 1.228822,-0.000000;;, + 61;3;-0.000000, 1.228822, 0.000000;;, + 62;3;-0.000000, 1.228822, 0.000000;;, + 63;3;-0.000000, 1.228822,-0.000000;;, + 64;3; 0.000000, 1.228822,-0.000000;;, + 65;3;-0.000000, 1.228822, 0.000000;;, + 66;3;-0.000000, 1.228822, 0.000000;;, + 67;3;-0.000000, 1.228822,-0.000000;;, + 68;3; 0.000000, 1.228822,-0.000000;;, + 69;3;-0.000000, 1.228822,-0.000000;;, + 70;3;-0.000000, 1.228822,-0.000000;;, + 71;3;-0.000000, 1.228822,-0.000000;;, + 72;3; 0.000000, 1.228822, 0.000000;;, + 73;3;-0.000000, 1.228822,-0.000000;;, + 74;3; 0.000000, 1.228822,-0.000000;;, + 75;3; 0.000000, 1.228822,-0.000000;;, + 76;3; 0.000000, 1.228822, 0.000000;;, + 77;3; 0.000000, 1.228822, 0.000000;;, + 78;3;-0.000000, 1.228822, 0.000000;;, + 79;3;-0.000000, 1.228822,-0.000000;;, + 80;3; 0.000000, 1.228822, 0.000000;;, + 81;3; 0.000000, 1.228822,-0.000000;;, + 82;3;-0.000000, 1.228822, 0.000000;;, + 83;3;-0.000000, 1.228822, 0.000000;;, + 84;3; 0.000000, 1.228822,-0.000000;;, + 85;3;-0.000000, 1.228822, 0.000000;;, + 86;3;-0.000000, 1.228822,-0.000000;;, + 87;3;-0.000000, 1.228822,-0.000000;;, + 88;3;-0.000000, 1.228822,-0.000000;;, + 89;3;-0.000000, 1.228822, 0.000000;;, + 90;3; 0.000000, 1.228822, 0.000000;;, + 91;3;-0.000000, 1.228822,-0.000000;;, + 92;3;-0.000000, 1.228822, 0.000000;;, + 93;3;-0.000000, 1.228822,-0.000000;;, + 94;3;-0.000000, 1.228822, 0.000000;;, + 95;3; 0.000000, 1.228822,-0.000000;;, + 96;3;-0.000000, 1.228822,-0.000000;;, + 97;3;-0.000000, 1.228822,-0.000000;;, + 98;3;-0.000000, 1.228822, 0.000000;;, + 99;3; 0.000000, 1.228822, 0.000000;;, + 100;3; 0.000000, 1.228822,-0.000000;;, + 101;3;-0.000000, 1.228822,-0.000000;;, + 102;3;-0.000000, 1.228822,-0.000000;;, + 103;3;-0.000000, 1.228822,-0.000000;;, + 104;3; 0.000000, 1.228822, 0.000000;;, + 105;3;-0.000000, 1.228822,-0.000000;;, + 106;3;-0.000000, 1.228822,-0.000000;;, + 107;3; 0.000000, 1.228822,-0.000000;;, + 108;3; 0.000000, 1.228822,-0.000000;;, + 109;3; 0.000000, 1.228822,-0.000000;;, + 110;3;-0.000000, 1.228822,-0.000000;;, + 111;3; 0.000000, 1.228822, 0.000000;;, + 112;3;-0.000000, 1.228822,-0.000000;;, + 113;3;-0.000000, 1.228822,-0.000000;;, + 114;3; 0.000000, 1.228822, 0.000000;;, + 115;3; 0.000000, 1.228822,-0.000000;;, + 116;3;-0.000000, 1.228822, 0.000000;;, + 117;3;-0.000000, 1.228822,-0.000000;;, + 118;3;-0.000000, 1.228822,-0.000000;;, + 119;3; 0.000000, 1.228822,-0.000000;;, + 120;3; 0.000000, 1.228822, 0.000000;;, + 121;3;-0.000000, 1.228822,-0.000000;;, + 122;3;-0.000000, 1.228822, 0.000000;;, + 123;3; 0.000000, 1.228822,-0.000000;;, + 124;3; 0.000000, 1.228822,-0.000000;;, + 125;3; 0.000000, 1.228822,-0.000000;;, + 126;3;-0.000000, 1.228822,-0.000000;;, + 127;3;-0.000000, 1.228822,-0.000000;;, + 128;3;-0.000000, 1.228822,-0.000000;;, + 129;3;-0.000000, 1.228822,-0.000000;;, + 130;3; 0.000000, 1.228822, 0.000000;;, + 131;3; 0.000000, 1.228822,-0.000000;;, + 132;3; 0.000000, 1.228822, 0.000000;;, + 133;3; 0.000000, 1.228822,-0.000000;;, + 134;3;-0.000000, 1.228822, 0.000000;;, + 135;3; 0.000000, 1.228822,-0.000000;;, + 136;3;-0.000000, 1.228822, 0.000000;;, + 137;3; 0.000000, 1.228822, 0.000000;;, + 138;3; 0.000000, 1.228822,-0.000000;;, + 139;3; 0.000000, 1.228822, 0.000000;;, + 140;3; 0.000000, 1.228822,-0.000000;;, + 141;3;-0.000000, 1.228822,-0.000000;;, + 142;3; 0.000000, 1.228822,-0.000000;;, + 143;3;-0.000000, 1.228822, 0.000000;;, + 144;3; 0.000000, 1.228822,-0.000000;;, + 145;3; 0.000000, 1.228822, 0.000000;;, + 146;3;-0.000000, 1.228822,-0.000000;;, + 147;3; 0.000000, 1.228822,-0.000000;;, + 148;3;-0.000000, 1.228822,-0.000000;;, + 149;3; 0.000000, 1.228822,-0.000000;;, + 150;3;-0.000000, 1.228822,-0.000000;;, + 151;3; 0.000000, 1.228822,-0.000000;;, + 152;3; 0.000000, 1.228822,-0.000000;;, + 153;3;-0.000000, 1.228822,-0.000000;;, + 154;3;-0.000000, 1.228822,-0.000000;;, + 155;3; 0.000000, 1.228822, 0.000000;;, + 156;3;-0.000000, 1.228822, 0.000000;;, + 157;3;-0.000000, 1.228822,-0.000000;;, + 158;3;-0.000000, 1.228822,-0.000000;;, + 159;3; 0.000000, 1.228822, 0.000000;;, + 160;3; 0.000000, 1.228822, 0.000000;;, + 161;3;-0.000000, 1.228822,-0.000000;;, + 162;3;-0.000000, 1.228822,-0.000000;;, + 163;3;-0.000000, 1.228822, 0.000000;;, + 164;3;-0.000000, 1.228822,-0.000000;;, + 165;3; 0.000000, 1.228822,-0.000000;;, + 166;3;-0.000000, 1.228822,-0.000000;;, + 167;3; 0.000000, 1.228822,-0.000000;;, + 168;3;-0.000000, 1.228822,-0.000000;;, + 169;3; 0.000000, 1.228822,-0.000000;;, + 170;3; 0.000000, 1.228822, 0.000000;;, + 171;3; 0.000000, 1.228822, 0.000000;;, + 172;3;-0.000000, 1.228822,-0.000000;;, + 173;3;-0.000000, 1.228822,-0.000000;;, + 174;3; 0.000000, 1.228822, 0.000000;;, + 175;3; 0.000000, 1.228822, 0.000000;;, + 176;3;-0.000000, 1.228822,-0.000000;;, + 177;3; 0.000000, 1.228822,-0.000000;;, + 178;3; 0.000000, 1.228822,-0.000000;;, + 179;3;-0.000000, 1.228822,-0.000000;;, + 180;3; 0.000000, 1.228822,-0.000000;;, + 181;3; 0.000000, 1.228822,-0.000000;;, + 182;3;-0.000000, 1.228822, 0.000000;;, + 183;3;-0.000000, 1.228822,-0.000000;;, + 184;3;-0.000000, 1.228822, 0.000000;;, + 185;3;-0.000000, 1.228822,-0.000000;;, + 186;3; 0.000000, 1.228822, 0.000000;;, + 187;3;-0.000000, 1.228822,-0.000000;;, + 188;3; 0.000000, 1.228822,-0.000000;;, + 189;3; 0.000000, 1.228822, 0.000000;;, + 190;3; 0.000000, 1.228822, 0.000000;;, + 191;3;-0.000000, 1.228822,-0.000000;;, + 192;3;-0.000000, 1.228822,-0.000000;;, + 193;3; 0.000000, 1.228822,-0.000000;;, + 194;3;-0.000000, 1.228822, 0.000000;;, + 195;3;-0.000000, 1.228822, 0.000000;;, + 196;3;-0.000000, 1.228822,-0.000000;;, + 197;3;-0.000000, 1.228822,-0.000000;;, + 198;3;-0.000000, 1.228822, 0.000000;;, + 199;3;-0.000000, 1.228822,-0.000000;;, + 200;3;-0.000000, 1.228822,-0.000000;;, + 201;3;-0.000000, 1.228822,-0.000000;;, + 202;3;-0.000000, 1.228822,-0.000000;;, + 203;3;-0.000000, 1.228822,-0.000000;;, + 204;3;-0.000000, 1.228822,-0.000000;;, + 205;3;-0.000000, 1.228822,-0.000000;;, + 206;3;-0.000000, 1.228822,-0.000000;;, + 207;3;-0.000000, 1.228822,-0.000000;;, + 208;3;-0.000000, 1.228822,-0.000000;;, + 209;3;-0.000000, 1.228822,-0.000000;;, + 210;3;-0.000000, 1.228822,-0.000000;;, + 211;3; 0.000000, 1.228822,-0.000000;;, + 212;3; 0.000000, 1.228822, 0.000000;;, + 213;3;-0.000000, 1.228822,-0.000000;;, + 214;3;-0.000000, 1.228822, 0.000000;;, + 215;3; 0.000000, 1.228822,-0.000000;;, + 216;3;-0.000000, 1.228822,-0.000000;;, + 217;3; 0.000000, 1.228822,-0.000000;;, + 218;3;-0.000000, 1.228822,-0.000000;;, + 219;3; 0.000000, 1.228822,-0.000000;;, + 220;3; 0.000000, 1.228822,-0.000000;;, + 221;3; 0.000000, 1.228822, 0.000000;;, + 222;3; 0.000000, 1.228822,-0.000000;;, + 223;3;-0.000000, 1.228822, 0.000000;;, + 224;3; 0.000000, 1.228822, 0.000000;;, + 225;3;-0.000000, 1.228822,-0.000000;;, + 226;3; 0.000000, 1.228822,-0.000000;;, + 227;3; 0.000000, 1.228822, 0.000000;;, + 228;3;-0.000000, 1.228822, 0.000000;;, + 229;3; 0.000000, 1.228822, 0.000000;;, + 230;3; 0.000000, 1.228822,-0.000000;;, + 231;3; 0.000000, 1.228822,-0.000000;;, + 232;3; 0.000000, 1.228822, 0.000000;;, + 233;3; 0.000000, 1.228822,-0.000000;;, + 234;3;-0.000000, 1.228822,-0.000000;;, + 235;3; 0.000000, 1.228822, 0.000000;;, + 236;3;-0.000000, 1.228822,-0.000000;;, + 237;3;-0.000000, 1.228822,-0.000000;;, + 238;3; 0.000000, 1.228822, 0.000000;;, + 239;3;-0.000000, 1.228822,-0.000000;;, + 240;3;-0.000000, 1.228822,-0.000000;;, + 241;3;-0.000000, 1.228822,-0.000000;;, + 242;3;-0.000000, 1.228822,-0.000000;;, + 243;3;-0.000000, 1.228822,-0.000000;;, + 244;3;-0.000000, 1.228822,-0.000000;;, + 245;3;-0.000000, 1.228822,-0.000000;;, + 246;3;-0.000000, 1.228822,-0.000000;;, + 247;3;-0.000000, 1.228822,-0.000000;;, + 248;3;-0.000000, 1.228822,-0.000000;;, + 249;3;-0.000000, 1.228822,-0.000000;;; + } + } + Animation { + {Armature_Bone_014} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 1;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 2;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 3;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 4;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 5;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 6;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 7;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 8;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 9;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 10;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 11;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 12;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 13;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 14;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 15;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 16;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 17;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 18;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 19;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 20;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 21;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 22;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 23;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 24;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 25;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 26;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 27;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 28;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 29;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 30;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 31;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 32;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 33;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 34;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 35;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 36;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 37;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 38;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 39;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 40;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 41;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 42;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 43;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 44;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 45;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 46;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 47;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 48;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 49;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 50;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 51;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 52;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 53;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 54;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 55;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 56;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 57;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 58;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 59;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 60;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 61;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 62;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 63;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 64;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 65;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 66;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 67;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 68;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 69;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 70;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 71;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 72;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 73;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 74;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 75;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 76;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 77;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 78;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 79;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 80;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 81;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 82;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 83;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 84;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 85;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 86;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 87;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 88;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 89;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 90;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 91;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 92;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 93;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 94;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 95;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 96;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 97;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 98;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 99;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 100;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 101;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 102;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 103;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 104;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 105;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 106;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 107;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 108;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 109;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 110;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 111;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 112;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 113;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 114;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 115;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 116;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 117;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 118;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 119;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 120;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 121;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 122;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 123;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 124;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 125;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 126;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 127;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 128;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 129;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 130;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 131;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 132;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 133;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 134;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 135;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 136;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 137;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 138;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 139;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 140;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 141;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 142;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 143;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 144;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 145;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 146;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 147;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 148;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 149;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 150;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 151;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 152;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 153;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 154;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 155;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 156;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 157;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 158;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 159;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 160;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 161;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 162;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 163;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 164;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 165;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 166;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 167;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 168;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 169;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 170;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 171;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 172;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 173;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 174;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 175;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 176;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 177;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 178;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 179;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 180;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 181;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 182;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 183;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 184;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 185;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 186;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 187;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 188;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 189;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 190;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 191;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 192;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 193;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 194;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 195;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 196;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 197;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 198;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 199;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 200;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 201;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 202;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 203;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 204;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 205;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 206;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 207;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 208;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 209;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 210;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 211;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 212;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 213;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 214;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 215;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 216;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 217;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 218;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 219;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 220;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 221;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 222;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 223;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 224;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 225;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 226;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 227;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 228;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 229;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 230;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 231;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 232;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 233;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 234;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 235;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 236;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 237;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 238;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 239;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 240;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 241;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 242;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 243;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 244;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 245;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 246;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 247;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 248;4;-0.873438, 0.000000, 0.000000,-0.486935;;, + 249;4;-0.873438, 0.000000, 0.000000,-0.486935;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3; 0.000000, 0.826434, 0.000000;;, + 1;3; 0.000000, 0.826434, 0.000000;;, + 2;3; 0.000000, 0.826434, 0.000000;;, + 3;3; 0.000000, 0.826434, 0.000000;;, + 4;3; 0.000000, 0.826434, 0.000000;;, + 5;3; 0.000000, 0.826434, 0.000000;;, + 6;3; 0.000000, 0.826434, 0.000000;;, + 7;3; 0.000000, 0.826434, 0.000000;;, + 8;3; 0.000000, 0.826434, 0.000000;;, + 9;3; 0.000000, 0.826434, 0.000000;;, + 10;3; 0.000000, 0.826434, 0.000000;;, + 11;3; 0.000000, 0.826434, 0.000000;;, + 12;3; 0.000000, 0.826434, 0.000000;;, + 13;3; 0.000000, 0.826434, 0.000000;;, + 14;3; 0.000000, 0.826434, 0.000000;;, + 15;3; 0.000000, 0.826434, 0.000000;;, + 16;3; 0.000000, 0.826434, 0.000000;;, + 17;3; 0.000000, 0.826434, 0.000000;;, + 18;3; 0.000000, 0.826434, 0.000000;;, + 19;3; 0.000000, 0.826434, 0.000000;;, + 20;3; 0.000000, 0.826434, 0.000000;;, + 21;3; 0.000000, 0.826434, 0.000000;;, + 22;3; 0.000000, 0.826434, 0.000000;;, + 23;3; 0.000000, 0.826434, 0.000000;;, + 24;3; 0.000000, 0.826434, 0.000000;;, + 25;3; 0.000000, 0.826434, 0.000000;;, + 26;3; 0.000000, 0.826434, 0.000000;;, + 27;3; 0.000000, 0.826434, 0.000000;;, + 28;3; 0.000000, 0.826434, 0.000000;;, + 29;3; 0.000000, 0.826434, 0.000000;;, + 30;3; 0.000000, 0.826434, 0.000000;;, + 31;3; 0.000000, 0.826434, 0.000000;;, + 32;3; 0.000000, 0.826434, 0.000000;;, + 33;3; 0.000000, 0.826434, 0.000000;;, + 34;3; 0.000000, 0.826434, 0.000000;;, + 35;3; 0.000000, 0.826434, 0.000000;;, + 36;3; 0.000000, 0.826434, 0.000000;;, + 37;3; 0.000000, 0.826434, 0.000000;;, + 38;3; 0.000000, 0.826434, 0.000000;;, + 39;3; 0.000000, 0.826434, 0.000000;;, + 40;3; 0.000000, 0.826434, 0.000000;;, + 41;3; 0.000000, 0.826434, 0.000000;;, + 42;3; 0.000000, 0.826434, 0.000000;;, + 43;3; 0.000000, 0.826434, 0.000000;;, + 44;3; 0.000000, 0.826434, 0.000000;;, + 45;3; 0.000000, 0.826434, 0.000000;;, + 46;3; 0.000000, 0.826434, 0.000000;;, + 47;3; 0.000000, 0.826434, 0.000000;;, + 48;3; 0.000000, 0.826434, 0.000000;;, + 49;3; 0.000000, 0.826434, 0.000000;;, + 50;3; 0.000000, 0.826434, 0.000000;;, + 51;3; 0.000000, 0.826434, 0.000000;;, + 52;3; 0.000000, 0.826434, 0.000000;;, + 53;3; 0.000000, 0.826434, 0.000000;;, + 54;3; 0.000000, 0.826434, 0.000000;;, + 55;3; 0.000000, 0.826434, 0.000000;;, + 56;3; 0.000000, 0.826434, 0.000000;;, + 57;3; 0.000000, 0.826434, 0.000000;;, + 58;3; 0.000000, 0.826434, 0.000000;;, + 59;3; 0.000000, 0.826434, 0.000000;;, + 60;3; 0.000000, 0.826434, 0.000000;;, + 61;3; 0.000000, 0.826434, 0.000000;;, + 62;3; 0.000000, 0.826434, 0.000000;;, + 63;3; 0.000000, 0.826434, 0.000000;;, + 64;3; 0.000000, 0.826434, 0.000000;;, + 65;3; 0.000000, 0.826434, 0.000000;;, + 66;3; 0.000000, 0.826434, 0.000000;;, + 67;3; 0.000000, 0.826434, 0.000000;;, + 68;3; 0.000000, 0.826434, 0.000000;;, + 69;3; 0.000000, 0.826434, 0.000000;;, + 70;3; 0.000000, 0.826434, 0.000000;;, + 71;3; 0.000000, 0.826434, 0.000000;;, + 72;3; 0.000000, 0.826434, 0.000000;;, + 73;3; 0.000000, 0.826434, 0.000000;;, + 74;3; 0.000000, 0.826434, 0.000000;;, + 75;3; 0.000000, 0.826434, 0.000000;;, + 76;3; 0.000000, 0.826434, 0.000000;;, + 77;3; 0.000000, 0.826434, 0.000000;;, + 78;3; 0.000000, 0.826434, 0.000000;;, + 79;3; 0.000000, 0.826434, 0.000000;;, + 80;3; 0.000000, 0.826434, 0.000000;;, + 81;3; 0.000000, 0.826434, 0.000000;;, + 82;3; 0.000000, 0.826434, 0.000000;;, + 83;3; 0.000000, 0.826434, 0.000000;;, + 84;3; 0.000000, 0.826434, 0.000000;;, + 85;3; 0.000000, 0.826434, 0.000000;;, + 86;3; 0.000000, 0.826434, 0.000000;;, + 87;3; 0.000000, 0.826434, 0.000000;;, + 88;3; 0.000000, 0.826434, 0.000000;;, + 89;3; 0.000000, 0.826434, 0.000000;;, + 90;3; 0.000000, 0.826434, 0.000000;;, + 91;3; 0.000000, 0.826434, 0.000000;;, + 92;3; 0.000000, 0.826434, 0.000000;;, + 93;3; 0.000000, 0.826434, 0.000000;;, + 94;3; 0.000000, 0.826434, 0.000000;;, + 95;3; 0.000000, 0.826434, 0.000000;;, + 96;3; 0.000000, 0.826434, 0.000000;;, + 97;3; 0.000000, 0.826434, 0.000000;;, + 98;3; 0.000000, 0.826434, 0.000000;;, + 99;3; 0.000000, 0.826434, 0.000000;;, + 100;3; 0.000000, 0.826434, 0.000000;;, + 101;3; 0.000000, 0.826434, 0.000000;;, + 102;3; 0.000000, 0.826434, 0.000000;;, + 103;3; 0.000000, 0.826434, 0.000000;;, + 104;3; 0.000000, 0.826434, 0.000000;;, + 105;3; 0.000000, 0.826434, 0.000000;;, + 106;3; 0.000000, 0.826434, 0.000000;;, + 107;3; 0.000000, 0.826434, 0.000000;;, + 108;3; 0.000000, 0.826434, 0.000000;;, + 109;3; 0.000000, 0.826434, 0.000000;;, + 110;3; 0.000000, 0.826434, 0.000000;;, + 111;3; 0.000000, 0.826434, 0.000000;;, + 112;3; 0.000000, 0.826434, 0.000000;;, + 113;3; 0.000000, 0.826434, 0.000000;;, + 114;3; 0.000000, 0.826434, 0.000000;;, + 115;3; 0.000000, 0.826434, 0.000000;;, + 116;3; 0.000000, 0.826434, 0.000000;;, + 117;3; 0.000000, 0.826434, 0.000000;;, + 118;3; 0.000000, 0.826434, 0.000000;;, + 119;3; 0.000000, 0.826434, 0.000000;;, + 120;3; 0.000000, 0.826434, 0.000000;;, + 121;3; 0.000000, 0.826434, 0.000000;;, + 122;3; 0.000000, 0.826434, 0.000000;;, + 123;3; 0.000000, 0.826434, 0.000000;;, + 124;3; 0.000000, 0.826434, 0.000000;;, + 125;3; 0.000000, 0.826434, 0.000000;;, + 126;3; 0.000000, 0.826434, 0.000000;;, + 127;3; 0.000000, 0.826434, 0.000000;;, + 128;3; 0.000000, 0.826434, 0.000000;;, + 129;3; 0.000000, 0.826434, 0.000000;;, + 130;3; 0.000000, 0.826434, 0.000000;;, + 131;3; 0.000000, 0.826434, 0.000000;;, + 132;3; 0.000000, 0.826434, 0.000000;;, + 133;3; 0.000000, 0.826434, 0.000000;;, + 134;3; 0.000000, 0.826434, 0.000000;;, + 135;3; 0.000000, 0.826434, 0.000000;;, + 136;3; 0.000000, 0.826434, 0.000000;;, + 137;3; 0.000000, 0.826434, 0.000000;;, + 138;3; 0.000000, 0.826434, 0.000000;;, + 139;3; 0.000000, 0.826434, 0.000000;;, + 140;3; 0.000000, 0.826434, 0.000000;;, + 141;3; 0.000000, 0.826434, 0.000000;;, + 142;3; 0.000000, 0.826434, 0.000000;;, + 143;3; 0.000000, 0.826434, 0.000000;;, + 144;3; 0.000000, 0.826434, 0.000000;;, + 145;3; 0.000000, 0.826434, 0.000000;;, + 146;3; 0.000000, 0.826434, 0.000000;;, + 147;3; 0.000000, 0.826434, 0.000000;;, + 148;3; 0.000000, 0.826434, 0.000000;;, + 149;3; 0.000000, 0.826434, 0.000000;;, + 150;3; 0.000000, 0.826434, 0.000000;;, + 151;3; 0.000000, 0.826434, 0.000000;;, + 152;3; 0.000000, 0.826434, 0.000000;;, + 153;3; 0.000000, 0.826434, 0.000000;;, + 154;3; 0.000000, 0.826434, 0.000000;;, + 155;3; 0.000000, 0.826434, 0.000000;;, + 156;3; 0.000000, 0.826434, 0.000000;;, + 157;3; 0.000000, 0.826434, 0.000000;;, + 158;3; 0.000000, 0.826434, 0.000000;;, + 159;3; 0.000000, 0.826434, 0.000000;;, + 160;3; 0.000000, 0.826434, 0.000000;;, + 161;3; 0.000000, 0.826434, 0.000000;;, + 162;3; 0.000000, 0.826434, 0.000000;;, + 163;3; 0.000000, 0.826434, 0.000000;;, + 164;3; 0.000000, 0.826434, 0.000000;;, + 165;3; 0.000000, 0.826434, 0.000000;;, + 166;3; 0.000000, 0.826434, 0.000000;;, + 167;3; 0.000000, 0.826434, 0.000000;;, + 168;3; 0.000000, 0.826434, 0.000000;;, + 169;3; 0.000000, 0.826434, 0.000000;;, + 170;3; 0.000000, 0.826434, 0.000000;;, + 171;3; 0.000000, 0.826434, 0.000000;;, + 172;3; 0.000000, 0.826434, 0.000000;;, + 173;3; 0.000000, 0.826434, 0.000000;;, + 174;3; 0.000000, 0.826434, 0.000000;;, + 175;3; 0.000000, 0.826434, 0.000000;;, + 176;3; 0.000000, 0.826434, 0.000000;;, + 177;3; 0.000000, 0.826434, 0.000000;;, + 178;3; 0.000000, 0.826434, 0.000000;;, + 179;3; 0.000000, 0.826434, 0.000000;;, + 180;3; 0.000000, 0.826434, 0.000000;;, + 181;3; 0.000000, 0.826434, 0.000000;;, + 182;3; 0.000000, 0.826434, 0.000000;;, + 183;3; 0.000000, 0.826434, 0.000000;;, + 184;3; 0.000000, 0.826434, 0.000000;;, + 185;3; 0.000000, 0.826434, 0.000000;;, + 186;3;-0.000000, 0.826434,-0.000000;;, + 187;3;-0.000000, 0.826434,-0.000000;;, + 188;3;-0.000000, 0.826434, 0.000000;;, + 189;3;-0.000000, 0.826434, 0.000000;;, + 190;3;-0.000000, 0.826434,-0.000000;;, + 191;3; 0.000000, 0.826434, 0.000000;;, + 192;3; 0.000000, 0.826434, 0.000000;;, + 193;3; 0.000000, 0.826434, 0.000000;;, + 194;3; 0.000000, 0.826434,-0.000000;;, + 195;3; 0.000000, 0.826434,-0.000000;;, + 196;3; 0.000000, 0.826434, 0.000000;;, + 197;3; 0.000000, 0.826434,-0.000000;;, + 198;3; 0.000000, 0.826434,-0.000000;;, + 199;3; 0.000000, 0.826434, 0.000000;;, + 200;3; 0.000000, 0.826434, 0.000000;;, + 201;3; 0.000000, 0.826434, 0.000000;;, + 202;3; 0.000000, 0.826434, 0.000000;;, + 203;3; 0.000000, 0.826434, 0.000000;;, + 204;3; 0.000000, 0.826434, 0.000000;;, + 205;3; 0.000000, 0.826434, 0.000000;;, + 206;3; 0.000000, 0.826434, 0.000000;;, + 207;3; 0.000000, 0.826434, 0.000000;;, + 208;3; 0.000000, 0.826434, 0.000000;;, + 209;3; 0.000000, 0.826434, 0.000000;;, + 210;3;-0.000000, 0.826434, 0.000000;;, + 211;3;-0.000000, 0.826434, 0.000000;;, + 212;3; 0.000000, 0.826434,-0.000000;;, + 213;3; 0.000000, 0.826434, 0.000000;;, + 214;3; 0.000000, 0.826434, 0.000000;;, + 215;3;-0.000000, 0.826434,-0.000000;;, + 216;3;-0.000000, 0.826434,-0.000000;;, + 217;3;-0.000000, 0.826434,-0.000000;;, + 218;3;-0.000000, 0.826434, 0.000000;;, + 219;3;-0.000000, 0.826434,-0.000000;;, + 220;3;-0.000000, 0.826434, 0.000000;;, + 221;3; 0.000000, 0.826434, 0.000000;;, + 222;3;-0.000000, 0.826434, 0.000000;;, + 223;3; 0.000000, 0.826434,-0.000000;;, + 224;3; 0.000000, 0.826434,-0.000000;;, + 225;3; 0.000000, 0.826434, 0.000000;;, + 226;3; 0.000000, 0.826434, 0.000000;;, + 227;3; 0.000000, 0.826434, 0.000000;;, + 228;3;-0.000000, 0.826434, 0.000000;;, + 229;3; 0.000000, 0.826434, 0.000000;;, + 230;3; 0.000000, 0.826434, 0.000000;;, + 231;3; 0.000000, 0.826434,-0.000000;;, + 232;3;-0.000000, 0.826434,-0.000000;;, + 233;3; 0.000000, 0.826434, 0.000000;;, + 234;3; 0.000000, 0.826434, 0.000000;;, + 235;3; 0.000000, 0.826434, 0.000000;;, + 236;3; 0.000000, 0.826434, 0.000000;;, + 237;3; 0.000000, 0.826434, 0.000000;;, + 238;3; 0.000000, 0.826434, 0.000000;;, + 239;3; 0.000000, 0.826434, 0.000000;;, + 240;3; 0.000000, 0.826434, 0.000000;;, + 241;3; 0.000000, 0.826434, 0.000000;;, + 242;3; 0.000000, 0.826434, 0.000000;;, + 243;3; 0.000000, 0.826434, 0.000000;;, + 244;3; 0.000000, 0.826434, 0.000000;;, + 245;3; 0.000000, 0.826434, 0.000000;;, + 246;3; 0.000000, 0.826434, 0.000000;;, + 247;3; 0.000000, 0.826434, 0.000000;;, + 248;3; 0.000000, 0.826434, 0.000000;;, + 249;3; 0.000000, 0.826434, 0.000000;;; + } + } + Animation { + {Armature_Bone_018} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 1;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 2;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 3;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 4;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 5;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 6;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 7;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 8;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 9;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 10;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 11;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 12;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 13;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 14;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 15;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 16;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 17;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 18;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 19;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 20;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 21;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 22;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 23;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 24;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 25;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 26;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 27;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 28;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 29;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 30;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 31;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 32;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 33;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 34;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 35;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 36;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 37;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 38;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 39;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 40;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 41;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 42;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 43;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 44;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 45;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 46;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 47;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 48;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 49;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 50;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 51;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 52;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 53;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 54;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 55;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 56;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 57;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 58;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 59;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 60;4;-0.941928, 0.110942, 0.038431, 0.314618;;, + 61;4;-0.941940, 0.110822, 0.038332, 0.314629;;, + 62;4;-0.941959, 0.110622, 0.038166, 0.314647;;, + 63;4;-0.941986, 0.110341, 0.037932, 0.314672;;, + 64;4;-0.942020, 0.109980, 0.037631, 0.314704;;, + 65;4;-0.942063, 0.109538, 0.037263, 0.314744;;, + 66;4;-0.942113, 0.109016, 0.036829, 0.314790;;, + 67;4;-0.942170, 0.108416, 0.036330, 0.314844;;, + 68;4;-0.942235, 0.107740, 0.035767, 0.314904;;, + 69;4;-0.942307, 0.106990, 0.035144, 0.314971;;, + 70;4;-0.942385, 0.106171, 0.034462, 0.315044;;, + 71;4;-0.942470, 0.105285, 0.033725, 0.315123;;, + 72;4;-0.942561, 0.104338, 0.032937, 0.315207;;, + 73;4;-0.942657, 0.103336, 0.032103, 0.315297;;, + 74;4;-0.942758, 0.102284, 0.031228, 0.315391;;, + 75;4;-0.942862, 0.101190, 0.030317, 0.315488;;, + 76;4;-0.942971, 0.100062, 0.029378, 0.315589;;, + 77;4;-0.943081, 0.098907, 0.028417, 0.315692;;, + 78;4;-0.943194, 0.097733, 0.027441, 0.315797;;, + 79;4;-0.943307, 0.096551, 0.026457, 0.315902;;, + 80;4;-0.943420, 0.095369, 0.025474, 0.316008;;, + 81;4;-0.943533, 0.094196, 0.024498, 0.316112;;, + 82;4;-0.943643, 0.093041, 0.023537, 0.316215;;, + 83;4;-0.943751, 0.091913, 0.022598, 0.316316;;, + 84;4;-0.943856, 0.090819, 0.021687, 0.316414;;, + 85;4;-0.943957, 0.089767, 0.020812, 0.316507;;, + 86;4;-0.944053, 0.088764, 0.019978, 0.316597;;, + 87;4;-0.944144, 0.087818, 0.019190, 0.316681;;, + 88;4;-0.944229, 0.086932, 0.018453, 0.316760;;, + 89;4;-0.944307, 0.086112, 0.017771, 0.316833;;, + 90;4;-0.944379, 0.085363, 0.017148, 0.316900;;, + 91;4;-0.944444, 0.084687, 0.016585, 0.316961;;, + 92;4;-0.944501, 0.084087, 0.016086, 0.317014;;, + 93;4;-0.944551, 0.083565, 0.015652, 0.317061;;, + 94;4;-0.944594, 0.083123, 0.015284, 0.317100;;, + 95;4;-0.944628, 0.082761, 0.014983, 0.317132;;, + 96;4;-0.944655, 0.082481, 0.014749, 0.317157;;, + 97;4;-0.944674, 0.082281, 0.014583, 0.317175;;, + 98;4;-0.944686, 0.082161, 0.014484, 0.317186;;, + 99;4;-0.944690, 0.082122, 0.014451, 0.317189;;, + 100;4;-0.944432, 0.083307, 0.015445, 0.317035;;, + 101;4;-0.943634, 0.086989, 0.018534, 0.316554;;, + 102;4;-0.942277, 0.093244, 0.023782, 0.315738;;, + 103;4;-0.940398, 0.101913, 0.031054, 0.314608;;, + 104;4;-0.938096, 0.112526, 0.039958, 0.313223;;, + 105;4;-0.935535, 0.124332, 0.049863, 0.311683;;, + 106;4;-0.932904, 0.136463, 0.060039, 0.310101;;, + 107;4;-0.930373, 0.148134, 0.069831, 0.308578;;, + 108;4;-0.928063, 0.158788, 0.078769, 0.307188;;, + 109;4;-0.926042, 0.168107, 0.086587, 0.305973;;, + 110;4;-0.924160, 0.176978, 0.094533, 0.304717;;, + 111;4;-0.922248, 0.186352, 0.103834, 0.303215;;, + 112;4;-0.920311, 0.196111, 0.114169, 0.301523;;, + 113;4;-0.918365, 0.206043, 0.124970, 0.299746;;, + 114;4;-0.916425, 0.215853, 0.135442, 0.298029;;, + 115;4;-0.914514, 0.225212, 0.144702, 0.296534;;, + 116;4;-0.912647, 0.233837, 0.151987, 0.295400;;, + 117;4;-0.910837, 0.241551, 0.156820, 0.294712;;, + 118;4;-0.909086, 0.248293, 0.159040, 0.294503;;, + 119;4;-0.907394, 0.254092, 0.158723, 0.294756;;, + 120;4;-0.905553, 0.259730, 0.157099, 0.295339;;, + 121;4;-0.903387, 0.265840, 0.155180, 0.296157;;, + 122;4;-0.900973, 0.272188, 0.152815, 0.297224;;, + 123;4;-0.898447, 0.278414, 0.149831, 0.298534;;, + 124;4;-0.896001, 0.284057, 0.146068, 0.300052;;, + 125;4;-0.893846, 0.288647, 0.141426, 0.301716;;, + 126;4;-0.892165, 0.291820, 0.135893, 0.303451;;, + 127;4;-0.891073, 0.293391, 0.129539, 0.305183;;, + 128;4;-0.890609, 0.293354, 0.122486, 0.306856;;, + 129;4;-0.890754, 0.291818, 0.114871, 0.308437;;, + 130;4;-0.892324, 0.285246, 0.105875, 0.309949;;, + 131;4;-0.896171, 0.269979, 0.094684, 0.311406;;, + 132;4;-0.902140, 0.246623, 0.081650, 0.312772;;, + 133;4;-0.909790, 0.216887, 0.067466, 0.314002;;, + 134;4;-0.918357, 0.183703, 0.053164, 0.315051;;, + 135;4;-0.926865, 0.150830, 0.039952, 0.315887;;, + 136;4;-0.934340, 0.121992, 0.028929, 0.316501;;, + 137;4;-0.940035, 0.100041, 0.020842, 0.316905;;, + 138;4;-0.943530, 0.086583, 0.016018, 0.317123;;, + 139;4;-0.944690, 0.082122, 0.014451, 0.317189;;, + 140;4;-0.943634, 0.086989, 0.018534, 0.316554;;, + 141;4;-0.940398, 0.101913, 0.031054, 0.314608;;, + 142;4;-0.935535, 0.124332, 0.049863, 0.311683;;, + 143;4;-0.930373, 0.148134, 0.069831, 0.308578;;, + 144;4;-0.926042, 0.168107, 0.086587, 0.305973;;, + 145;4;-0.922248, 0.186352, 0.103834, 0.303215;;, + 146;4;-0.918365, 0.206043, 0.124970, 0.299746;;, + 147;4;-0.914514, 0.225212, 0.144702, 0.296534;;, + 148;4;-0.910837, 0.241551, 0.156820, 0.294712;;, + 149;4;-0.907394, 0.254092, 0.158723, 0.294756;;, + 150;4;-0.903387, 0.265840, 0.155180, 0.296157;;, + 151;4;-0.898447, 0.278414, 0.149831, 0.298534;;, + 152;4;-0.893846, 0.288647, 0.141426, 0.301716;;, + 153;4;-0.891073, 0.293391, 0.129539, 0.305183;;, + 154;4;-0.890754, 0.291818, 0.114871, 0.308437;;, + 155;4;-0.896171, 0.269979, 0.094684, 0.311406;;, + 156;4;-0.909790, 0.216887, 0.067466, 0.314002;;, + 157;4;-0.926865, 0.150830, 0.039952, 0.315887;;, + 158;4;-0.940035, 0.100041, 0.020842, 0.316905;;, + 159;4;-0.944690, 0.082122, 0.014451, 0.317189;;, + 160;4;-0.944679, 0.082151, 0.014546, 0.317192;;, + 161;4;-0.944647, 0.082247, 0.014837, 0.317199;;, + 162;4;-0.944593, 0.082426, 0.015330, 0.317208;;, + 163;4;-0.944517, 0.082706, 0.016025, 0.317218;;, + 164;4;-0.944418, 0.083105, 0.016921, 0.317224;;, + 165;4;-0.944298, 0.083643, 0.018010, 0.317223;;, + 166;4;-0.944157, 0.084341, 0.019278, 0.317211;;, + 167;4;-0.943998, 0.085217, 0.020705, 0.317185;;, + 168;4;-0.943824, 0.086288, 0.022262, 0.317138;;, + 169;4;-0.943638, 0.087566, 0.023917, 0.317068;;, + 170;4;-0.943444, 0.089058, 0.025633, 0.316970;;, + 171;4;-0.943247, 0.090767, 0.027370, 0.316841;;, + 172;4;-0.943049, 0.092688, 0.029092, 0.316679;;, + 173;4;-0.942856, 0.094812, 0.030764, 0.316482;;, + 174;4;-0.942670, 0.097126, 0.032355, 0.316251;;, + 175;4;-0.942495, 0.099615, 0.033842, 0.315986;;, + 176;4;-0.942331, 0.102262, 0.035206, 0.315688;;, + 177;4;-0.942181, 0.105050, 0.036436, 0.315359;;, + 178;4;-0.942045, 0.107962, 0.037523, 0.315000;;, + 179;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 180;4;-0.943177, 0.114691, 0.038923, 0.308242;;, + 181;4;-0.947108, 0.119663, 0.038608, 0.289529;;, + 182;4;-0.953421, 0.125770, 0.037664, 0.258565;;, + 183;4;-0.961440, 0.132711, 0.036363, 0.216762;;, + 184;4;-0.970093, 0.139998, 0.035102, 0.167139;;, + 185;4;-0.978076, 0.147035, 0.034336, 0.114020;;, + 186;4;-0.984151, 0.153246, 0.034469, 0.062082;;, + 187;4;-0.987422, 0.158213, 0.035767, 0.015261;;, + 188;4;-0.987439, 0.161717, 0.038339,-0.023862;;, + 189;4;-0.984123, 0.163713, 0.042166,-0.054048;;, + 190;4;-0.978817, 0.138808, 0.058118,-0.080008;;, + 191;4;-0.973197, 0.066281, 0.094695,-0.104867;;, + 192;4;-0.968320,-0.027438, 0.139563,-0.124679;;, + 193;4;-0.965252,-0.100614, 0.173854,-0.136337;;, + 194;4;-0.964286,-0.126625, 0.185918,-0.139835;;, + 195;4;-0.962298,-0.105504, 0.172811,-0.099439;;, + 196;4;-0.956699,-0.046014, 0.135892, 0.014343;;, + 197;4;-0.949511, 0.030371, 0.088490, 0.160437;;, + 198;4;-0.943912, 0.089861, 0.051571, 0.274219;;, + 199;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 200;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 201;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 202;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 203;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 204;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 205;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 206;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 207;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 208;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 209;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 210;4;-0.943197, 0.087583, 0.020889, 0.269537;;, + 211;4;-0.946781, 0.021676,-0.028617, 0.142567;;, + 212;4;-0.951383,-0.062947,-0.092181,-0.020463;;, + 213;4;-0.954967,-0.128853,-0.141687,-0.147433;;, + 214;4;-0.956240,-0.152252,-0.159263,-0.192511;;, + 215;4;-0.950377,-0.134573,-0.144943,-0.182913;;, + 216;4;-0.932584,-0.080369,-0.101040,-0.152847;;, + 217;4;-0.906301, 0.001061,-0.035084,-0.106100;;, + 218;4;-0.879144, 0.087510, 0.034938,-0.053846;;, + 219;4;-0.857350, 0.160052, 0.093695,-0.006499;;, + 220;4;-0.836110, 0.232595, 0.152452, 0.042798;;, + 221;4;-0.810909, 0.319044, 0.222474, 0.101936;;, + 222;4;-0.788199, 0.400474, 0.288430, 0.161258;;, + 223;4;-0.775254, 0.454678, 0.332333, 0.208390;;, + 224;4;-0.774867, 0.472357, 0.346653, 0.237261;;, + 225;4;-0.781601, 0.468808, 0.343627, 0.255948;;, + 226;4;-0.790592, 0.458082, 0.334479, 0.272439;;, + 227;4;-0.801769, 0.440234, 0.319258, 0.286556;;, + 228;4;-0.814942, 0.415637, 0.298281, 0.298167;;, + 229;4;-0.829786, 0.385065, 0.272209, 0.307214;;, + 230;4;-0.845817, 0.349756, 0.242096, 0.313745;;, + 231;4;-0.862413, 0.311385, 0.209373, 0.317937;;, + 232;4;-0.878858, 0.271953, 0.175745, 0.320099;;, + 233;4;-0.894417, 0.233582, 0.143021, 0.320644;;, + 234;4;-0.908423, 0.198273, 0.112908, 0.320046;;, + 235;4;-0.920337, 0.167701, 0.086836, 0.318783;;, + 236;4;-0.929788, 0.143104, 0.065859, 0.317288;;, + 237;4;-0.936566, 0.125256, 0.050638, 0.315924;;, + 238;4;-0.940600, 0.114529, 0.041490, 0.314966;;, + 239;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 240;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 241;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 242;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 243;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 244;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 245;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 246;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 247;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 248;4;-0.941924, 0.110981, 0.038464, 0.314615;;, + 249;4;-0.941924, 0.110981, 0.038464, 0.314615;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3;-0.000000, 0.680634,-0.000000;;, + 1;3;-0.000000, 0.680634,-0.000000;;, + 2;3;-0.000000, 0.680634,-0.000000;;, + 3;3;-0.000000, 0.680634,-0.000000;;, + 4;3;-0.000000, 0.680634,-0.000000;;, + 5;3;-0.000000, 0.680634,-0.000000;;, + 6;3;-0.000000, 0.680634,-0.000000;;, + 7;3;-0.000000, 0.680634,-0.000000;;, + 8;3;-0.000000, 0.680634,-0.000000;;, + 9;3;-0.000000, 0.680634,-0.000000;;, + 10;3;-0.000000, 0.680634,-0.000000;;, + 11;3;-0.000000, 0.680634,-0.000000;;, + 12;3;-0.000000, 0.680634,-0.000000;;, + 13;3;-0.000000, 0.680634,-0.000000;;, + 14;3;-0.000000, 0.680634,-0.000000;;, + 15;3;-0.000000, 0.680634,-0.000000;;, + 16;3;-0.000000, 0.680634,-0.000000;;, + 17;3;-0.000000, 0.680634,-0.000000;;, + 18;3;-0.000000, 0.680634,-0.000000;;, + 19;3;-0.000000, 0.680634,-0.000000;;, + 20;3;-0.000000, 0.680634,-0.000000;;, + 21;3;-0.000000, 0.680634,-0.000000;;, + 22;3;-0.000000, 0.680634,-0.000000;;, + 23;3;-0.000000, 0.680634,-0.000000;;, + 24;3;-0.000000, 0.680634,-0.000000;;, + 25;3;-0.000000, 0.680634,-0.000000;;, + 26;3;-0.000000, 0.680634,-0.000000;;, + 27;3;-0.000000, 0.680634,-0.000000;;, + 28;3;-0.000000, 0.680634,-0.000000;;, + 29;3;-0.000000, 0.680634,-0.000000;;, + 30;3;-0.000000, 0.680634,-0.000000;;, + 31;3;-0.000000, 0.680634,-0.000000;;, + 32;3;-0.000000, 0.680634,-0.000000;;, + 33;3;-0.000000, 0.680634,-0.000000;;, + 34;3;-0.000000, 0.680634,-0.000000;;, + 35;3;-0.000000, 0.680634,-0.000000;;, + 36;3;-0.000000, 0.680634,-0.000000;;, + 37;3;-0.000000, 0.680634,-0.000000;;, + 38;3;-0.000000, 0.680634,-0.000000;;, + 39;3;-0.000000, 0.680634,-0.000000;;, + 40;3;-0.000000, 0.680634,-0.000000;;, + 41;3;-0.000000, 0.680634,-0.000000;;, + 42;3;-0.000000, 0.680634,-0.000000;;, + 43;3;-0.000000, 0.680634,-0.000000;;, + 44;3;-0.000000, 0.680634,-0.000000;;, + 45;3;-0.000000, 0.680634,-0.000000;;, + 46;3;-0.000000, 0.680634,-0.000000;;, + 47;3;-0.000000, 0.680634,-0.000000;;, + 48;3;-0.000000, 0.680634,-0.000000;;, + 49;3;-0.000000, 0.680634,-0.000000;;, + 50;3;-0.000000, 0.680634,-0.000000;;, + 51;3;-0.000000, 0.680634,-0.000000;;, + 52;3;-0.000000, 0.680634,-0.000000;;, + 53;3;-0.000000, 0.680634,-0.000000;;, + 54;3;-0.000000, 0.680634,-0.000000;;, + 55;3;-0.000000, 0.680634,-0.000000;;, + 56;3;-0.000000, 0.680634,-0.000000;;, + 57;3;-0.000000, 0.680634,-0.000000;;, + 58;3;-0.000000, 0.680634,-0.000000;;, + 59;3;-0.000000, 0.680634,-0.000000;;, + 60;3;-0.000000, 0.680634,-0.000000;;, + 61;3;-0.000000, 0.680634,-0.000000;;, + 62;3;-0.000000, 0.680634,-0.000000;;, + 63;3;-0.000000, 0.680634,-0.000000;;, + 64;3;-0.000000, 0.680634,-0.000000;;, + 65;3;-0.000000, 0.680634,-0.000000;;, + 66;3;-0.000000, 0.680634,-0.000000;;, + 67;3;-0.000000, 0.680634,-0.000000;;, + 68;3;-0.000000, 0.680634,-0.000000;;, + 69;3;-0.000000, 0.680634,-0.000000;;, + 70;3;-0.000000, 0.680634,-0.000000;;, + 71;3;-0.000000, 0.680634,-0.000000;;, + 72;3;-0.000000, 0.680634,-0.000000;;, + 73;3;-0.000000, 0.680634,-0.000000;;, + 74;3;-0.000000, 0.680634,-0.000000;;, + 75;3;-0.000000, 0.680634,-0.000000;;, + 76;3;-0.000000, 0.680634,-0.000000;;, + 77;3;-0.000000, 0.680634,-0.000000;;, + 78;3;-0.000000, 0.680634,-0.000000;;, + 79;3;-0.000000, 0.680634,-0.000000;;, + 80;3;-0.000000, 0.680634,-0.000000;;, + 81;3;-0.000000, 0.680634,-0.000000;;, + 82;3;-0.000000, 0.680634,-0.000000;;, + 83;3;-0.000000, 0.680634,-0.000000;;, + 84;3;-0.000000, 0.680634,-0.000000;;, + 85;3;-0.000000, 0.680634,-0.000000;;, + 86;3;-0.000000, 0.680634,-0.000000;;, + 87;3;-0.000000, 0.680634,-0.000000;;, + 88;3;-0.000000, 0.680634,-0.000000;;, + 89;3;-0.000000, 0.680634,-0.000000;;, + 90;3;-0.000000, 0.680634,-0.000000;;, + 91;3;-0.000000, 0.680634,-0.000000;;, + 92;3;-0.000000, 0.680634,-0.000000;;, + 93;3;-0.000000, 0.680634,-0.000000;;, + 94;3;-0.000000, 0.680634,-0.000000;;, + 95;3;-0.000000, 0.680634,-0.000000;;, + 96;3;-0.000000, 0.680634,-0.000000;;, + 97;3;-0.000000, 0.680634,-0.000000;;, + 98;3;-0.000000, 0.680634,-0.000000;;, + 99;3;-0.000000, 0.680634,-0.000000;;, + 100;3;-0.000000, 0.680634,-0.000000;;, + 101;3;-0.000000, 0.680634,-0.000000;;, + 102;3;-0.000000, 0.680634,-0.000000;;, + 103;3;-0.000000, 0.680634,-0.000000;;, + 104;3;-0.000000, 0.680634,-0.000000;;, + 105;3;-0.000000, 0.680634,-0.000000;;, + 106;3;-0.000000, 0.680634,-0.000000;;, + 107;3;-0.000000, 0.680634,-0.000000;;, + 108;3;-0.000000, 0.680634,-0.000000;;, + 109;3;-0.000000, 0.680634,-0.000000;;, + 110;3;-0.000000, 0.680634,-0.000000;;, + 111;3;-0.000000, 0.680634,-0.000000;;, + 112;3;-0.000000, 0.680634,-0.000000;;, + 113;3;-0.000000, 0.680634,-0.000000;;, + 114;3;-0.000000, 0.680634,-0.000000;;, + 115;3;-0.000000, 0.680634,-0.000000;;, + 116;3;-0.000000, 0.680634,-0.000000;;, + 117;3;-0.000000, 0.680634,-0.000000;;, + 118;3;-0.000000, 0.680634,-0.000000;;, + 119;3;-0.000000, 0.680634,-0.000000;;, + 120;3;-0.000000, 0.680634,-0.000000;;, + 121;3;-0.000000, 0.680634,-0.000000;;, + 122;3;-0.000000, 0.680634,-0.000000;;, + 123;3;-0.000000, 0.680634,-0.000000;;, + 124;3;-0.000000, 0.680634,-0.000000;;, + 125;3;-0.000000, 0.680634,-0.000000;;, + 126;3;-0.000000, 0.680634,-0.000000;;, + 127;3;-0.000000, 0.680634,-0.000000;;, + 128;3;-0.000000, 0.680634,-0.000000;;, + 129;3;-0.000000, 0.680634,-0.000000;;, + 130;3;-0.000000, 0.680634,-0.000000;;, + 131;3;-0.000000, 0.680634,-0.000000;;, + 132;3;-0.000000, 0.680634,-0.000000;;, + 133;3;-0.000000, 0.680634,-0.000000;;, + 134;3;-0.000000, 0.680634,-0.000000;;, + 135;3;-0.000000, 0.680634,-0.000000;;, + 136;3;-0.000000, 0.680634,-0.000000;;, + 137;3;-0.000000, 0.680634,-0.000000;;, + 138;3;-0.000000, 0.680634,-0.000000;;, + 139;3;-0.000000, 0.680634,-0.000000;;, + 140;3;-0.000000, 0.680634,-0.000000;;, + 141;3;-0.000000, 0.680634,-0.000000;;, + 142;3;-0.000000, 0.680634,-0.000000;;, + 143;3;-0.000000, 0.680634,-0.000000;;, + 144;3;-0.000000, 0.680634,-0.000000;;, + 145;3;-0.000000, 0.680634,-0.000000;;, + 146;3;-0.000000, 0.680634,-0.000000;;, + 147;3;-0.000000, 0.680634,-0.000000;;, + 148;3;-0.000000, 0.680634,-0.000000;;, + 149;3;-0.000000, 0.680634,-0.000000;;, + 150;3;-0.000000, 0.680634,-0.000000;;, + 151;3;-0.000000, 0.680634,-0.000000;;, + 152;3;-0.000000, 0.680634,-0.000000;;, + 153;3;-0.000000, 0.680634,-0.000000;;, + 154;3;-0.000000, 0.680634,-0.000000;;, + 155;3;-0.000000, 0.680634,-0.000000;;, + 156;3;-0.000000, 0.680634,-0.000000;;, + 157;3;-0.000000, 0.680634,-0.000000;;, + 158;3;-0.000000, 0.680634,-0.000000;;, + 159;3;-0.000000, 0.680634,-0.000000;;, + 160;3;-0.000000, 0.680634,-0.000000;;, + 161;3;-0.000000, 0.680634,-0.000000;;, + 162;3;-0.000000, 0.680634,-0.000000;;, + 163;3;-0.000000, 0.680634,-0.000000;;, + 164;3;-0.000000, 0.680634,-0.000000;;, + 165;3;-0.000000, 0.680634,-0.000000;;, + 166;3;-0.000000, 0.680634,-0.000000;;, + 167;3;-0.000000, 0.680634,-0.000000;;, + 168;3;-0.000000, 0.680634,-0.000000;;, + 169;3;-0.000000, 0.680634,-0.000000;;, + 170;3;-0.000000, 0.680634,-0.000000;;, + 171;3;-0.000000, 0.680634,-0.000000;;, + 172;3;-0.000000, 0.680634,-0.000000;;, + 173;3;-0.000000, 0.680634,-0.000000;;, + 174;3;-0.000000, 0.680634,-0.000000;;, + 175;3;-0.000000, 0.680634,-0.000000;;, + 176;3;-0.000000, 0.680634,-0.000000;;, + 177;3;-0.000000, 0.680634,-0.000000;;, + 178;3;-0.000000, 0.680634,-0.000000;;, + 179;3;-0.000000, 0.680634,-0.000000;;, + 180;3;-0.000000, 0.680634,-0.000000;;, + 181;3; 0.000000, 0.680634,-0.000000;;, + 182;3;-0.000000, 0.680634,-0.000000;;, + 183;3;-0.000000, 0.680634,-0.000000;;, + 184;3;-0.000000, 0.680634,-0.000000;;, + 185;3;-0.000000, 0.680634, 0.000000;;, + 186;3; 0.000000, 0.680634,-0.000000;;, + 187;3; 0.000000, 0.680634,-0.000000;;, + 188;3;-0.000000, 0.680634, 0.000000;;, + 189;3; 0.000000, 0.680634,-0.000000;;, + 190;3;-0.000000, 0.680634,-0.000000;;, + 191;3; 0.000001, 0.680634, 0.000000;;, + 192;3; 0.000000, 0.680634,-0.000000;;, + 193;3; 0.000000, 0.680634,-0.000000;;, + 194;3; 0.000000, 0.680634,-0.000000;;, + 195;3;-0.000000, 0.680634, 0.000000;;, + 196;3; 0.000000, 0.680634,-0.000000;;, + 197;3; 0.000000, 0.680634,-0.000000;;, + 198;3;-0.000000, 0.680634,-0.000000;;, + 199;3;-0.000000, 0.680634,-0.000000;;, + 200;3;-0.000000, 0.680634,-0.000000;;, + 201;3;-0.000000, 0.680634,-0.000000;;, + 202;3;-0.000000, 0.680634,-0.000000;;, + 203;3;-0.000000, 0.680634,-0.000000;;, + 204;3;-0.000000, 0.680634,-0.000000;;, + 205;3;-0.000000, 0.680634,-0.000000;;, + 206;3;-0.000000, 0.680634,-0.000000;;, + 207;3;-0.000000, 0.680634,-0.000000;;, + 208;3;-0.000000, 0.680634,-0.000000;;, + 209;3;-0.000000, 0.680634,-0.000000;;, + 210;3;-0.000000, 0.680634, 0.000000;;, + 211;3; 0.000000, 0.680634, 0.000000;;, + 212;3; 0.000000, 0.680634,-0.000000;;, + 213;3; 0.000000, 0.680634,-0.000000;;, + 214;3; 0.000000, 0.680634, 0.000000;;, + 215;3; 0.000000, 0.680634, 0.000000;;, + 216;3; 0.000000, 0.680634,-0.000000;;, + 217;3; 0.000000, 0.680634, 0.000000;;, + 218;3; 0.000000, 0.680634, 0.000000;;, + 219;3; 0.000000, 0.680634,-0.000000;;, + 220;3; 0.000000, 0.680634,-0.000000;;, + 221;3; 0.000000, 0.680634,-0.000000;;, + 222;3; 0.000000, 0.680634, 0.000000;;, + 223;3; 0.000000, 0.680634,-0.000000;;, + 224;3; 0.000000, 0.680634,-0.000000;;, + 225;3;-0.000000, 0.680634,-0.000000;;, + 226;3; 0.000000, 0.680634, 0.000000;;, + 227;3;-0.000000, 0.680634,-0.000000;;, + 228;3; 0.000000, 0.680634, 0.000000;;, + 229;3; 0.000000, 0.680634, 0.000000;;, + 230;3;-0.000000, 0.680634,-0.000000;;, + 231;3; 0.000000, 0.680633,-0.000000;;, + 232;3; 0.000000, 0.680634,-0.000000;;, + 233;3;-0.000000, 0.680633, 0.000000;;, + 234;3; 0.000000, 0.680634,-0.000000;;, + 235;3; 0.000000, 0.680633, 0.000000;;, + 236;3;-0.000000, 0.680634, 0.000000;;, + 237;3; 0.000000, 0.680634,-0.000000;;, + 238;3;-0.000000, 0.680633,-0.000000;;, + 239;3;-0.000000, 0.680634,-0.000000;;, + 240;3;-0.000000, 0.680634,-0.000000;;, + 241;3;-0.000000, 0.680634,-0.000000;;, + 242;3;-0.000000, 0.680634,-0.000000;;, + 243;3;-0.000000, 0.680634,-0.000000;;, + 244;3;-0.000000, 0.680634,-0.000000;;, + 245;3;-0.000000, 0.680634,-0.000000;;, + 246;3;-0.000000, 0.680634,-0.000000;;, + 247;3;-0.000000, 0.680634,-0.000000;;, + 248;3;-0.000000, 0.680634,-0.000000;;, + 249;3;-0.000000, 0.680634,-0.000000;;; + } + } + Animation { + {Armature_Bone_022} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 1;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 2;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 3;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 4;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 5;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 6;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 7;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 8;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 9;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 10;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 11;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 12;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 13;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 14;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 15;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 16;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 17;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 18;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 19;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 20;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 21;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 22;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 23;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 24;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 25;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 26;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 27;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 28;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 29;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 30;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 31;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 32;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 33;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 34;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 35;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 36;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 37;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 38;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 39;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 40;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 41;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 42;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 43;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 44;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 45;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 46;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 47;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 48;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 49;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 50;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 51;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 52;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 53;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 54;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 55;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 56;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 57;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 58;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 59;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 60;4;-0.971886,-0.235439, 0.000032, 0.000000;;, + 61;4;-0.971936,-0.235196, 0.000129, 0.000001;;, + 62;4;-0.972020,-0.234788, 0.000292, 0.000003;;, + 63;4;-0.972138,-0.234216, 0.000520, 0.000005;;, + 64;4;-0.972290,-0.233478, 0.000813, 0.000007;;, + 65;4;-0.972476,-0.232577, 0.001172, 0.000011;;, + 66;4;-0.972695,-0.231513, 0.001596, 0.000014;;, + 67;4;-0.972947,-0.230290, 0.002083, 0.000019;;, + 68;4;-0.973231,-0.228911, 0.002632, 0.000024;;, + 69;4;-0.973545,-0.227383, 0.003241, 0.000029;;, + 70;4;-0.973890,-0.225712, 0.003906, 0.000035;;, + 71;4;-0.974262,-0.223906, 0.004625, 0.000042;;, + 72;4;-0.974659,-0.221976, 0.005394, 0.000049;;, + 73;4;-0.975080,-0.219932, 0.006208, 0.000056;;, + 74;4;-0.975522,-0.217788, 0.007062, 0.000064;;, + 75;4;-0.975981,-0.215557, 0.007950, 0.000072;;, + 76;4;-0.976455,-0.213256, 0.008867, 0.000080;;, + 77;4;-0.976940,-0.210901, 0.009805, 0.000089;;, + 78;4;-0.977433,-0.208509, 0.010757, 0.000097;;, + 79;4;-0.977929,-0.206099, 0.011717, 0.000106;;, + 80;4;-0.978426,-0.203689, 0.012677, 0.000115;;, + 81;4;-0.978919,-0.201298, 0.013629, 0.000123;;, + 82;4;-0.979404,-0.198942, 0.014567, 0.000132;;, + 83;4;-0.979878,-0.196641, 0.015484, 0.000140;;, + 84;4;-0.980337,-0.194411, 0.016372, 0.000148;;, + 85;4;-0.980779,-0.192266, 0.017226, 0.000156;;, + 86;4;-0.981200,-0.190223, 0.018040, 0.000163;;, + 87;4;-0.981597,-0.188292, 0.018809, 0.000170;;, + 88;4;-0.981969,-0.186486, 0.019528, 0.000177;;, + 89;4;-0.982314,-0.184815, 0.020193, 0.000183;;, + 90;4;-0.982628,-0.183287, 0.020802, 0.000188;;, + 91;4;-0.982912,-0.181909, 0.021351, 0.000193;;, + 92;4;-0.983164,-0.180686, 0.021838, 0.000197;;, + 93;4;-0.983383,-0.179622, 0.022262, 0.000201;;, + 94;4;-0.983569,-0.178720, 0.022621, 0.000205;;, + 95;4;-0.983721,-0.177983, 0.022914, 0.000207;;, + 96;4;-0.983839,-0.177410, 0.023142, 0.000209;;, + 97;4;-0.983923,-0.177003, 0.023305, 0.000211;;, + 98;4;-0.983973,-0.176759, 0.023402, 0.000212;;, + 99;4;-0.983990,-0.176678, 0.023434, 0.000212;;, + 100;4;-0.983267,-0.178677, 0.022609, 0.000204;;, + 101;4;-0.981024,-0.184884, 0.020049, 0.000181;;, + 102;4;-0.977214,-0.195430, 0.015698, 0.000142;;, + 103;4;-0.971933,-0.210044, 0.009669, 0.000087;;, + 104;4;-0.965467,-0.227936, 0.002288, 0.000021;;, + 105;4;-0.958274,-0.247841,-0.005923,-0.000054;;, + 106;4;-0.950885,-0.268291,-0.014360,-0.000130;;, + 107;4;-0.943774,-0.287968,-0.022477,-0.000203;;, + 108;4;-0.937284,-0.305928,-0.029886,-0.000270;;, + 109;4;-0.931607,-0.321640,-0.036368,-0.000329;;, + 110;4;-0.925929,-0.337351,-0.042849,-0.000388;;, + 111;4;-0.919439,-0.355312,-0.050259,-0.000455;;, + 112;4;-0.912329,-0.374988,-0.058376,-0.000528;;, + 113;4;-0.904939,-0.395439,-0.066812,-0.000604;;, + 114;4;-0.897746,-0.415344,-0.075024,-0.000678;;, + 115;4;-0.891281,-0.433236,-0.082405,-0.000745;;, + 116;4;-0.885999,-0.447850,-0.088434,-0.000800;;, + 117;4;-0.882189,-0.458395,-0.092784,-0.000839;;, + 118;4;-0.879946,-0.464603,-0.095345,-0.000862;;, + 119;4;-0.879224,-0.466601,-0.096169,-0.000870;;, + 120;4;-0.879946,-0.464603,-0.095345,-0.000862;;, + 121;4;-0.882189,-0.458395,-0.092784,-0.000839;;, + 122;4;-0.885999,-0.447850,-0.088434,-0.000800;;, + 123;4;-0.891280,-0.433236,-0.082405,-0.000745;;, + 124;4;-0.897746,-0.415344,-0.075024,-0.000678;;, + 125;4;-0.904939,-0.395439,-0.066812,-0.000604;;, + 126;4;-0.912329,-0.374988,-0.058376,-0.000528;;, + 127;4;-0.919439,-0.355312,-0.050259,-0.000455;;, + 128;4;-0.925929,-0.337351,-0.042849,-0.000388;;, + 129;4;-0.931607,-0.321640,-0.036368,-0.000329;;, + 130;4;-0.937284,-0.305928,-0.029886,-0.000270;;, + 131;4;-0.943774,-0.287968,-0.022477,-0.000203;;, + 132;4;-0.950885,-0.268291,-0.014360,-0.000130;;, + 133;4;-0.958274,-0.247841,-0.005923,-0.000054;;, + 134;4;-0.965467,-0.227936, 0.002288, 0.000021;;, + 135;4;-0.971933,-0.210044, 0.009669, 0.000087;;, + 136;4;-0.977214,-0.195430, 0.015698, 0.000142;;, + 137;4;-0.981024,-0.184884, 0.020049, 0.000181;;, + 138;4;-0.983267,-0.178677, 0.022609, 0.000204;;, + 139;4;-0.983990,-0.176678, 0.023434, 0.000212;;, + 140;4;-0.981024,-0.184884, 0.020049, 0.000181;;, + 141;4;-0.971933,-0.210044, 0.009669, 0.000087;;, + 142;4;-0.958274,-0.247841,-0.005923,-0.000054;;, + 143;4;-0.943774,-0.287968,-0.022477,-0.000203;;, + 144;4;-0.931607,-0.321640,-0.036368,-0.000329;;, + 145;4;-0.919439,-0.355312,-0.050259,-0.000455;;, + 146;4;-0.904939,-0.395439,-0.066812,-0.000604;;, + 147;4;-0.891281,-0.433236,-0.082405,-0.000745;;, + 148;4;-0.882189,-0.458395,-0.092784,-0.000839;;, + 149;4;-0.879224,-0.466601,-0.096169,-0.000870;;, + 150;4;-0.882189,-0.458395,-0.092784,-0.000839;;, + 151;4;-0.891280,-0.433236,-0.082405,-0.000745;;, + 152;4;-0.904939,-0.395439,-0.066812,-0.000604;;, + 153;4;-0.919439,-0.355312,-0.050259,-0.000455;;, + 154;4;-0.931607,-0.321640,-0.036368,-0.000329;;, + 155;4;-0.943774,-0.287968,-0.022477,-0.000203;;, + 156;4;-0.958274,-0.247841,-0.005923,-0.000054;;, + 157;4;-0.971933,-0.210044, 0.009669, 0.000087;;, + 158;4;-0.981024,-0.184884, 0.020049, 0.000181;;, + 159;4;-0.983990,-0.176678, 0.023434, 0.000212;;, + 160;4;-0.983923,-0.177003, 0.023305, 0.000211;;, + 161;4;-0.983721,-0.177983, 0.022914, 0.000207;;, + 162;4;-0.983383,-0.179622, 0.022262, 0.000201;;, + 163;4;-0.982912,-0.181909, 0.021351, 0.000193;;, + 164;4;-0.982314,-0.184815, 0.020193, 0.000183;;, + 165;4;-0.981597,-0.188292, 0.018809, 0.000170;;, + 166;4;-0.980779,-0.192266, 0.017226, 0.000156;;, + 167;4;-0.979878,-0.196641, 0.015484, 0.000140;;, + 168;4;-0.978919,-0.201298, 0.013629, 0.000123;;, + 169;4;-0.977930,-0.206099, 0.011717, 0.000106;;, + 170;4;-0.976941,-0.210901, 0.009805, 0.000089;;, + 171;4;-0.975981,-0.215557, 0.007950, 0.000072;;, + 172;4;-0.975080,-0.219932, 0.006208, 0.000056;;, + 173;4;-0.974262,-0.223907, 0.004625, 0.000042;;, + 174;4;-0.973545,-0.227383, 0.003241, 0.000029;;, + 175;4;-0.972947,-0.230290, 0.002083, 0.000019;;, + 176;4;-0.972476,-0.232577, 0.001172, 0.000011;;, + 177;4;-0.972138,-0.234216, 0.000520, 0.000005;;, + 178;4;-0.971936,-0.235196, 0.000129, 0.000001;;, + 179;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 180;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 181;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 182;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 183;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 184;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 185;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 186;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 187;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 188;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 189;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 190;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 191;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 192;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 193;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 194;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 195;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 196;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 197;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 198;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 199;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 200;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 201;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 202;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 203;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 204;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 205;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 206;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 207;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 208;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 209;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 210;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 211;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 212;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 213;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 214;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 215;4;-0.972409,-0.232455, 0.001212, 0.000011;;, + 216;4;-0.974065,-0.223057, 0.004929, 0.000045;;, + 217;4;-0.976552,-0.208940, 0.010513, 0.000095;;, + 218;4;-0.979193,-0.193951, 0.016441, 0.000149;;, + 219;4;-0.981409,-0.181374, 0.021415, 0.000194;;, + 220;4;-0.983625,-0.168797, 0.026390, 0.000239;;, + 221;4;-0.986265,-0.153809, 0.032318, 0.000292;;, + 222;4;-0.988753,-0.139691, 0.037902, 0.000343;;, + 223;4;-0.990408,-0.130294, 0.041618, 0.000376;;, + 224;4;-0.990948,-0.127228, 0.042831, 0.000387;;, + 225;4;-0.990761,-0.128292, 0.042410, 0.000384;;, + 226;4;-0.990195,-0.131506, 0.041139, 0.000372;;, + 227;4;-0.989252,-0.136854, 0.039024, 0.000353;;, + 228;4;-0.987954,-0.144225, 0.036108, 0.000327;;, + 229;4;-0.986340,-0.153387, 0.032485, 0.000294;;, + 230;4;-0.984476,-0.163968, 0.028300, 0.000256;;, + 231;4;-0.982450,-0.175466, 0.023752, 0.000215;;, + 232;4;-0.980368,-0.187282, 0.019079, 0.000173;;, + 233;4;-0.978342,-0.198781, 0.014531, 0.000131;;, + 234;4;-0.976478,-0.209362, 0.010346, 0.000094;;, + 235;4;-0.974864,-0.218523, 0.006723, 0.000061;;, + 236;4;-0.973565,-0.225894, 0.003807, 0.000034;;, + 237;4;-0.972623,-0.231243, 0.001692, 0.000015;;, + 238;4;-0.972057,-0.234457, 0.000421, 0.000004;;, + 239;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 240;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 241;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 242;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 243;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 244;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 245;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 246;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 247;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 248;4;-0.971869,-0.235520, 0.000000,-0.000000;;, + 249;4;-0.971869,-0.235520, 0.000000,-0.000000;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3;-0.000000, 1.294481, 0.000000;;, + 1;3;-0.000000, 1.294481, 0.000000;;, + 2;3;-0.000000, 1.294481, 0.000000;;, + 3;3;-0.000000, 1.294481, 0.000000;;, + 4;3;-0.000000, 1.294481, 0.000000;;, + 5;3;-0.000000, 1.294481, 0.000000;;, + 6;3;-0.000000, 1.294481, 0.000000;;, + 7;3;-0.000000, 1.294481, 0.000000;;, + 8;3;-0.000000, 1.294481, 0.000000;;, + 9;3;-0.000000, 1.294481, 0.000000;;, + 10;3;-0.000000, 1.294481, 0.000000;;, + 11;3;-0.000000, 1.294481, 0.000000;;, + 12;3;-0.000000, 1.294481, 0.000000;;, + 13;3;-0.000000, 1.294481, 0.000000;;, + 14;3;-0.000000, 1.294481, 0.000000;;, + 15;3;-0.000000, 1.294481, 0.000000;;, + 16;3;-0.000000, 1.294481, 0.000000;;, + 17;3;-0.000000, 1.294481, 0.000000;;, + 18;3;-0.000000, 1.294481, 0.000000;;, + 19;3;-0.000000, 1.294481, 0.000000;;, + 20;3;-0.000000, 1.294481, 0.000000;;, + 21;3;-0.000000, 1.294481, 0.000000;;, + 22;3;-0.000000, 1.294481, 0.000000;;, + 23;3;-0.000000, 1.294481, 0.000000;;, + 24;3;-0.000000, 1.294481, 0.000000;;, + 25;3;-0.000000, 1.294481, 0.000000;;, + 26;3;-0.000000, 1.294481, 0.000000;;, + 27;3;-0.000000, 1.294481, 0.000000;;, + 28;3;-0.000000, 1.294481, 0.000000;;, + 29;3;-0.000000, 1.294481, 0.000000;;, + 30;3;-0.000000, 1.294481, 0.000000;;, + 31;3;-0.000000, 1.294481, 0.000000;;, + 32;3;-0.000000, 1.294481, 0.000000;;, + 33;3;-0.000000, 1.294481, 0.000000;;, + 34;3;-0.000000, 1.294481, 0.000000;;, + 35;3;-0.000000, 1.294481, 0.000000;;, + 36;3;-0.000000, 1.294481, 0.000000;;, + 37;3;-0.000000, 1.294481, 0.000000;;, + 38;3;-0.000000, 1.294481, 0.000000;;, + 39;3;-0.000000, 1.294481, 0.000000;;, + 40;3;-0.000000, 1.294481, 0.000000;;, + 41;3;-0.000000, 1.294481, 0.000000;;, + 42;3;-0.000000, 1.294481, 0.000000;;, + 43;3;-0.000000, 1.294481, 0.000000;;, + 44;3;-0.000000, 1.294481, 0.000000;;, + 45;3;-0.000000, 1.294481, 0.000000;;, + 46;3;-0.000000, 1.294481, 0.000000;;, + 47;3;-0.000000, 1.294481, 0.000000;;, + 48;3;-0.000000, 1.294481, 0.000000;;, + 49;3;-0.000000, 1.294481, 0.000000;;, + 50;3;-0.000000, 1.294481, 0.000000;;, + 51;3;-0.000000, 1.294481, 0.000000;;, + 52;3;-0.000000, 1.294481, 0.000000;;, + 53;3;-0.000000, 1.294481, 0.000000;;, + 54;3;-0.000000, 1.294481, 0.000000;;, + 55;3;-0.000000, 1.294481, 0.000000;;, + 56;3;-0.000000, 1.294481, 0.000000;;, + 57;3;-0.000000, 1.294481, 0.000000;;, + 58;3;-0.000000, 1.294481, 0.000000;;, + 59;3;-0.000000, 1.294481, 0.000000;;, + 60;3;-0.000000, 1.294482,-0.000000;;, + 61;3;-0.000000, 1.294482, 0.000000;;, + 62;3; 0.000000, 1.294481, 0.000000;;, + 63;3;-0.000000, 1.294481, 0.000000;;, + 64;3;-0.000000, 1.294482, 0.000000;;, + 65;3;-0.000000, 1.294482,-0.000000;;, + 66;3;-0.000000, 1.294482, 0.000000;;, + 67;3;-0.000000, 1.294481, 0.000000;;, + 68;3; 0.000000, 1.294482,-0.000000;;, + 69;3; 0.000000, 1.294481, 0.000000;;, + 70;3;-0.000000, 1.294481, 0.000000;;, + 71;3; 0.000000, 1.294482,-0.000000;;, + 72;3; 0.000000, 1.294482, 0.000000;;, + 73;3;-0.000000, 1.294481, 0.000000;;, + 74;3;-0.000000, 1.294482, 0.000000;;, + 75;3; 0.000000, 1.294481, 0.000000;;, + 76;3; 0.000000, 1.294482, 0.000000;;, + 77;3;-0.000000, 1.294481,-0.000000;;, + 78;3;-0.000000, 1.294482, 0.000000;;, + 79;3;-0.000000, 1.294481, 0.000000;;, + 80;3;-0.000000, 1.294482, 0.000000;;, + 81;3;-0.000000, 1.294481, 0.000000;;, + 82;3;-0.000000, 1.294482,-0.000000;;, + 83;3; 0.000000, 1.294482,-0.000000;;, + 84;3;-0.000000, 1.294481, 0.000000;;, + 85;3;-0.000000, 1.294482, 0.000000;;, + 86;3;-0.000000, 1.294481, 0.000000;;, + 87;3; 0.000000, 1.294482, 0.000000;;, + 88;3; 0.000000, 1.294482, 0.000000;;, + 89;3;-0.000000, 1.294482, 0.000000;;, + 90;3;-0.000000, 1.294482,-0.000000;;, + 91;3;-0.000000, 1.294481, 0.000000;;, + 92;3; 0.000000, 1.294481, 0.000000;;, + 93;3; 0.000000, 1.294481, 0.000000;;, + 94;3;-0.000000, 1.294481,-0.000000;;, + 95;3; 0.000000, 1.294481,-0.000000;;, + 96;3;-0.000000, 1.294482,-0.000000;;, + 97;3; 0.000000, 1.294482, 0.000000;;, + 98;3; 0.000000, 1.294482,-0.000000;;, + 99;3;-0.000000, 1.294481, 0.000000;;, + 100;3; 0.000000, 1.294481, 0.000000;;, + 101;3;-0.000000, 1.294481, 0.000000;;, + 102;3;-0.000000, 1.294481,-0.000000;;, + 103;3;-0.000000, 1.294481,-0.000000;;, + 104;3;-0.000000, 1.294482, 0.000000;;, + 105;3;-0.000000, 1.294482,-0.000000;;, + 106;3; 0.000000, 1.294481, 0.000000;;, + 107;3; 0.000000, 1.294482, 0.000000;;, + 108;3;-0.000000, 1.294481,-0.000000;;, + 109;3; 0.000000, 1.294482,-0.000000;;, + 110;3; 0.000000, 1.294482, 0.000000;;, + 111;3; 0.000000, 1.294481, 0.000000;;, + 112;3;-0.000000, 1.294482, 0.000000;;, + 113;3; 0.000000, 1.294481, 0.000000;;, + 114;3; 0.000000, 1.294482, 0.000000;;, + 115;3; 0.000000, 1.294481,-0.000000;;, + 116;3; 0.000000, 1.294481, 0.000000;;, + 117;3; 0.000000, 1.294482,-0.000000;;, + 118;3; 0.000000, 1.294481,-0.000000;;, + 119;3; 0.000000, 1.294481,-0.000000;;, + 120;3;-0.000000, 1.294481,-0.000000;;, + 121;3;-0.000000, 1.294482, 0.000000;;, + 122;3; 0.000000, 1.294481,-0.000000;;, + 123;3; 0.000000, 1.294481,-0.000000;;, + 124;3;-0.000000, 1.294482,-0.000000;;, + 125;3;-0.000000, 1.294482, 0.000000;;, + 126;3;-0.000000, 1.294481,-0.000000;;, + 127;3;-0.000000, 1.294482,-0.000000;;, + 128;3; 0.000000, 1.294481,-0.000000;;, + 129;3;-0.000000, 1.294481, 0.000000;;, + 130;3;-0.000000, 1.294481,-0.000000;;, + 131;3; 0.000000, 1.294481,-0.000000;;, + 132;3; 0.000000, 1.294481,-0.000000;;, + 133;3; 0.000000, 1.294481, 0.000000;;, + 134;3; 0.000000, 1.294481,-0.000000;;, + 135;3; 0.000000, 1.294481, 0.000000;;, + 136;3;-0.000000, 1.294482,-0.000000;;, + 137;3; 0.000000, 1.294481,-0.000000;;, + 138;3;-0.000000, 1.294481,-0.000000;;, + 139;3;-0.000000, 1.294481, 0.000000;;, + 140;3;-0.000000, 1.294481, 0.000000;;, + 141;3;-0.000000, 1.294481,-0.000000;;, + 142;3;-0.000000, 1.294482,-0.000000;;, + 143;3; 0.000000, 1.294482, 0.000000;;, + 144;3; 0.000000, 1.294482,-0.000000;;, + 145;3; 0.000000, 1.294481, 0.000000;;, + 146;3; 0.000000, 1.294481, 0.000000;;, + 147;3; 0.000000, 1.294481,-0.000000;;, + 148;3; 0.000000, 1.294482,-0.000000;;, + 149;3; 0.000000, 1.294481,-0.000000;;, + 150;3;-0.000000, 1.294482, 0.000000;;, + 151;3; 0.000000, 1.294481,-0.000000;;, + 152;3;-0.000000, 1.294482, 0.000000;;, + 153;3;-0.000000, 1.294482,-0.000000;;, + 154;3;-0.000000, 1.294481, 0.000000;;, + 155;3; 0.000000, 1.294481,-0.000000;;, + 156;3; 0.000000, 1.294481, 0.000000;;, + 157;3; 0.000000, 1.294481, 0.000000;;, + 158;3; 0.000000, 1.294481,-0.000000;;, + 159;3;-0.000000, 1.294481, 0.000000;;, + 160;3;-0.000000, 1.294481,-0.000000;;, + 161;3;-0.000000, 1.294481,-0.000000;;, + 162;3; 0.000000, 1.294482,-0.000000;;, + 163;3; 0.000000, 1.294481,-0.000000;;, + 164;3;-0.000000, 1.294481, 0.000000;;, + 165;3; 0.000000, 1.294482, 0.000000;;, + 166;3;-0.000000, 1.294482,-0.000000;;, + 167;3;-0.000000, 1.294482,-0.000000;;, + 168;3; 0.000000, 1.294481,-0.000000;;, + 169;3;-0.000000, 1.294482, 0.000000;;, + 170;3;-0.000000, 1.294481,-0.000000;;, + 171;3;-0.000000, 1.294482,-0.000000;;, + 172;3;-0.000000, 1.294481, 0.000000;;, + 173;3;-0.000000, 1.294482,-0.000000;;, + 174;3;-0.000000, 1.294481, 0.000000;;, + 175;3; 0.000000, 1.294481,-0.000000;;, + 176;3; 0.000000, 1.294481, 0.000000;;, + 177;3;-0.000000, 1.294482, 0.000000;;, + 178;3;-0.000000, 1.294482, 0.000000;;, + 179;3;-0.000000, 1.294481, 0.000000;;, + 180;3; 0.000000, 1.294481,-0.000000;;, + 181;3; 0.000000, 1.294481, 0.000000;;, + 182;3;-0.000000, 1.294481,-0.000000;;, + 183;3; 0.000000, 1.294481, 0.000000;;, + 184;3; 0.000000, 1.294481,-0.000000;;, + 185;3; 0.000000, 1.294481,-0.000000;;, + 186;3; 0.000000, 1.294482,-0.000000;;, + 187;3;-0.000000, 1.294482,-0.000000;;, + 188;3; 0.000000, 1.294481,-0.000000;;, + 189;3; 0.000000, 1.294481,-0.000000;;, + 190;3; 0.000000, 1.294481, 0.000000;;, + 191;3;-0.000000, 1.294481, 0.000000;;, + 192;3; 0.000000, 1.294482,-0.000000;;, + 193;3;-0.000000, 1.294481, 0.000000;;, + 194;3; 0.000000, 1.294481, 0.000000;;, + 195;3;-0.000000, 1.294481, 0.000000;;, + 196;3;-0.000000, 1.294481,-0.000000;;, + 197;3;-0.000000, 1.294481,-0.000000;;, + 198;3;-0.000000, 1.294481,-0.000000;;, + 199;3;-0.000000, 1.294481, 0.000000;;, + 200;3;-0.000000, 1.294481, 0.000000;;, + 201;3;-0.000000, 1.294481, 0.000000;;, + 202;3;-0.000000, 1.294481, 0.000000;;, + 203;3;-0.000000, 1.294481, 0.000000;;, + 204;3;-0.000000, 1.294481, 0.000000;;, + 205;3;-0.000000, 1.294481, 0.000000;;, + 206;3;-0.000000, 1.294481, 0.000000;;, + 207;3;-0.000000, 1.294481, 0.000000;;, + 208;3;-0.000000, 1.294481, 0.000000;;, + 209;3;-0.000000, 1.294481, 0.000000;;, + 210;3; 0.000000, 1.294481, 0.000000;;, + 211;3; 0.000000, 1.294481, 0.000000;;, + 212;3; 0.000000, 1.294481, 0.000000;;, + 213;3; 0.000000, 1.294482,-0.000000;;, + 214;3;-0.000000, 1.294481, 0.000000;;, + 215;3; 0.000000, 1.294482, 0.000000;;, + 216;3;-0.000000, 1.294481, 0.000000;;, + 217;3; 0.000000, 1.294482,-0.000000;;, + 218;3; 0.000000, 1.294482, 0.000000;;, + 219;3;-0.000000, 1.294482,-0.000000;;, + 220;3;-0.000000, 1.294482, 0.000000;;, + 221;3;-0.000000, 1.294482, 0.000000;;, + 222;3; 0.000000, 1.294482,-0.000000;;, + 223;3;-0.000000, 1.294482, 0.000000;;, + 224;3; 0.000000, 1.294481, 0.000000;;, + 225;3;-0.000000, 1.294481, 0.000000;;, + 226;3; 0.000000, 1.294481, 0.000000;;, + 227;3; 0.000000, 1.294482, 0.000000;;, + 228;3;-0.000000, 1.294482, 0.000000;;, + 229;3; 0.000000, 1.294482, 0.000000;;, + 230;3; 0.000000, 1.294481,-0.000000;;, + 231;3;-0.000000, 1.294481, 0.000000;;, + 232;3;-0.000000, 1.294482,-0.000000;;, + 233;3; 0.000000, 1.294481,-0.000000;;, + 234;3; 0.000000, 1.294482,-0.000000;;, + 235;3;-0.000000, 1.294481, 0.000000;;, + 236;3; 0.000000, 1.294481, 0.000000;;, + 237;3; 0.000000, 1.294481,-0.000000;;, + 238;3;-0.000000, 1.294481,-0.000000;;, + 239;3;-0.000000, 1.294481, 0.000000;;, + 240;3;-0.000000, 1.294481, 0.000000;;, + 241;3;-0.000000, 1.294481, 0.000000;;, + 242;3;-0.000000, 1.294481, 0.000000;;, + 243;3;-0.000000, 1.294481, 0.000000;;, + 244;3;-0.000000, 1.294481, 0.000000;;, + 245;3;-0.000000, 1.294481, 0.000000;;, + 246;3;-0.000000, 1.294481, 0.000000;;, + 247;3;-0.000000, 1.294481, 0.000000;;, + 248;3;-0.000000, 1.294481, 0.000000;;, + 249;3;-0.000000, 1.294481, 0.000000;;; + } + } + Animation { + {Armature_Bone_026} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 1;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 2;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 3;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 4;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 5;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 6;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 7;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 8;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 9;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 10;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 11;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 12;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 13;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 14;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 15;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 16;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 17;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 18;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 19;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 20;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 21;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 22;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 23;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 24;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 25;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 26;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 27;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 28;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 29;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 30;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 31;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 32;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 33;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 34;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 35;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 36;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 37;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 38;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 39;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 40;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 41;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 42;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 43;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 44;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 45;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 46;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 47;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 48;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 49;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 50;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 51;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 52;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 53;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 54;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 55;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 56;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 57;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 58;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 59;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 60;4;-0.990507,-0.137464,-0.000000,-0.000000;;, + 61;4;-0.990507,-0.137465,-0.000000,-0.000000;;, + 62;4;-0.990506,-0.137468,-0.000001,-0.000001;;, + 63;4;-0.990506,-0.137473,-0.000003,-0.000001;;, + 64;4;-0.990504,-0.137481,-0.000006,-0.000002;;, + 65;4;-0.990503,-0.137494,-0.000011,-0.000004;;, + 66;4;-0.990500,-0.137512,-0.000018,-0.000007;;, + 67;4;-0.990496,-0.137538,-0.000027,-0.000011;;, + 68;4;-0.990491,-0.137572,-0.000039,-0.000016;;, + 69;4;-0.990485,-0.137615,-0.000055,-0.000022;;, + 70;4;-0.990477,-0.137670,-0.000075,-0.000030;;, + 71;4;-0.990467,-0.137738,-0.000100,-0.000041;;, + 72;4;-0.990455,-0.137821,-0.000130,-0.000053;;, + 73;4;-0.990440,-0.137920,-0.000166,-0.000067;;, + 74;4;-0.990423,-0.138036,-0.000209,-0.000085;;, + 75;4;-0.990404,-0.138173,-0.000259,-0.000105;;, + 76;4;-0.990381,-0.138330,-0.000316,-0.000128;;, + 77;4;-0.990354,-0.138510,-0.000382,-0.000155;;, + 78;4;-0.990325,-0.138714,-0.000457,-0.000185;;, + 79;4;-0.990291,-0.138944,-0.000541,-0.000219;;, + 80;4;-0.990254,-0.139200,-0.000635,-0.000257;;, + 81;4;-0.990212,-0.139484,-0.000738,-0.000299;;, + 82;4;-0.990167,-0.139796,-0.000852,-0.000345;;, + 83;4;-0.990117,-0.140136,-0.000977,-0.000396;;, + 84;4;-0.990063,-0.140506,-0.001112,-0.000450;;, + 85;4;-0.990005,-0.140905,-0.001258,-0.000509;;, + 86;4;-0.989943,-0.141334,-0.001415,-0.000573;;, + 87;4;-0.989876,-0.141791,-0.001582,-0.000640;;, + 88;4;-0.989805,-0.142277,-0.001760,-0.000712;;, + 89;4;-0.989730,-0.142791,-0.001948,-0.000789;;, + 90;4;-0.989651,-0.143333,-0.002146,-0.000869;;, + 91;4;-0.989568,-0.143902,-0.002353,-0.000953;;, + 92;4;-0.989482,-0.144496,-0.002571,-0.001041;;, + 93;4;-0.989391,-0.145115,-0.002797,-0.001132;;, + 94;4;-0.989297,-0.145759,-0.003032,-0.001228;;, + 95;4;-0.989200,-0.146425,-0.003276,-0.001326;;, + 96;4;-0.989100,-0.147113,-0.003528,-0.001428;;, + 97;4;-0.988996,-0.147823,-0.003787,-0.001533;;, + 98;4;-0.988890,-0.148553,-0.004054,-0.001641;;, + 99;4;-0.988781,-0.149301,-0.004328,-0.001752;;, + 100;4;-0.988479,-0.150854,-0.004899,-0.001983;;, + 101;4;-0.987776,-0.154079,-0.006090,-0.002466;;, + 102;4;-0.986660,-0.159023,-0.007917,-0.003205;;, + 103;4;-0.985156,-0.165575,-0.010339,-0.004186;;, + 104;4;-0.983341,-0.173414,-0.013239,-0.005360;;, + 105;4;-0.981337,-0.182034,-0.016428,-0.006651;;, + 106;4;-0.979284,-0.190849,-0.019688,-0.007971;;, + 107;4;-0.977309,-0.199333,-0.022827,-0.009242;;, + 108;4;-0.975500,-0.207115,-0.025706,-0.010408;;, + 109;4;-0.973909,-0.213985,-0.028247,-0.011436;;, + 110;4;-0.972314,-0.220879,-0.030796,-0.012469;;, + 111;4;-0.970496,-0.228722,-0.033697,-0.013643;;, + 112;4;-0.968509,-0.237283,-0.036864,-0.014925;;, + 113;4;-0.966448,-0.246154,-0.040146,-0.016254;;, + 114;4;-0.964445,-0.254769,-0.043332,-0.017544;;, + 115;4;-0.962646,-0.262498,-0.046191,-0.018702;;, + 116;4;-0.961179,-0.268801,-0.048523,-0.019646;;, + 117;4;-0.960121,-0.273344,-0.050204,-0.020326;;, + 118;4;-0.959498,-0.276016,-0.051192,-0.020726;;, + 119;4;-0.959298,-0.276875,-0.051510,-0.020855;;, + 120;4;-0.959498,-0.276016,-0.051192,-0.020726;;, + 121;4;-0.960121,-0.273344,-0.050204,-0.020326;;, + 122;4;-0.961179,-0.268801,-0.048523,-0.019646;;, + 123;4;-0.962646,-0.262498,-0.046191,-0.018702;;, + 124;4;-0.964445,-0.254769,-0.043332,-0.017544;;, + 125;4;-0.966448,-0.246154,-0.040146,-0.016254;;, + 126;4;-0.968509,-0.237283,-0.036864,-0.014925;;, + 127;4;-0.970496,-0.228722,-0.033697,-0.013643;;, + 128;4;-0.972314,-0.220879,-0.030796,-0.012469;;, + 129;4;-0.973909,-0.213985,-0.028247,-0.011436;;, + 130;4;-0.975509,-0.207052,-0.025683,-0.010398;;, + 131;4;-0.977344,-0.199089,-0.022738,-0.009206;;, + 132;4;-0.979360,-0.190333,-0.019500,-0.007895;;, + 133;4;-0.981458,-0.181207,-0.016125,-0.006529;;, + 134;4;-0.983503,-0.172304,-0.012833,-0.005196;;, + 135;4;-0.985343,-0.164287,-0.009869,-0.003996;;, + 136;4;-0.986848,-0.157729,-0.007444,-0.003014;;, + 137;4;-0.987935,-0.152992,-0.005692,-0.002305;;, + 138;4;-0.988575,-0.150200,-0.004660,-0.001887;;, + 139;4;-0.988781,-0.149301,-0.004328,-0.001752;;, + 140;4;-0.987935,-0.152992,-0.005692,-0.002305;;, + 141;4;-0.985343,-0.164287,-0.009869,-0.003996;;, + 142;4;-0.981458,-0.181207,-0.016125,-0.006529;;, + 143;4;-0.977344,-0.199089,-0.022738,-0.009206;;, + 144;4;-0.973909,-0.213985,-0.028247,-0.011436;;, + 145;4;-0.970496,-0.228722,-0.033697,-0.013643;;, + 146;4;-0.966448,-0.246154,-0.040146,-0.016254;;, + 147;4;-0.962646,-0.262498,-0.046191,-0.018702;;, + 148;4;-0.960121,-0.273344,-0.050204,-0.020326;;, + 149;4;-0.959298,-0.276875,-0.051510,-0.020855;;, + 150;4;-0.960121,-0.273344,-0.050204,-0.020326;;, + 151;4;-0.962646,-0.262498,-0.046191,-0.018702;;, + 152;4;-0.966448,-0.246154,-0.040146,-0.016254;;, + 153;4;-0.970496,-0.228722,-0.033697,-0.013643;;, + 154;4;-0.973909,-0.213985,-0.028247,-0.011436;;, + 155;4;-0.977309,-0.199333,-0.022827,-0.009242;;, + 156;4;-0.981337,-0.182034,-0.016428,-0.006651;;, + 157;4;-0.985156,-0.165575,-0.010339,-0.004186;;, + 158;4;-0.987776,-0.154079,-0.006090,-0.002466;;, + 159;4;-0.988781,-0.149301,-0.004328,-0.001752;;, + 160;4;-0.988996,-0.147823,-0.003787,-0.001533;;, + 161;4;-0.989200,-0.146425,-0.003276,-0.001326;;, + 162;4;-0.989391,-0.145115,-0.002797,-0.001132;;, + 163;4;-0.989568,-0.143902,-0.002353,-0.000953;;, + 164;4;-0.989730,-0.142791,-0.001948,-0.000789;;, + 165;4;-0.989876,-0.141791,-0.001582,-0.000640;;, + 166;4;-0.990005,-0.140905,-0.001258,-0.000509;;, + 167;4;-0.990117,-0.140136,-0.000977,-0.000396;;, + 168;4;-0.990212,-0.139484,-0.000738,-0.000299;;, + 169;4;-0.990291,-0.138944,-0.000541,-0.000219;;, + 170;4;-0.990354,-0.138510,-0.000382,-0.000155;;, + 171;4;-0.990404,-0.138173,-0.000259,-0.000105;;, + 172;4;-0.990440,-0.137920,-0.000166,-0.000067;;, + 173;4;-0.990467,-0.137738,-0.000100,-0.000041;;, + 174;4;-0.990485,-0.137615,-0.000055,-0.000022;;, + 175;4;-0.990496,-0.137538,-0.000027,-0.000011;;, + 176;4;-0.990503,-0.137494,-0.000011,-0.000004;;, + 177;4;-0.990506,-0.137473,-0.000003,-0.000001;;, + 178;4;-0.990507,-0.137465,-0.000000,-0.000000;;, + 179;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 180;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 181;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 182;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 183;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 184;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 185;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 186;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 187;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 188;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 189;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 190;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 191;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 192;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 193;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 194;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 195;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 196;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 197;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 198;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 199;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 200;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 201;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 202;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 203;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 204;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 205;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 206;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 207;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 208;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 209;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 210;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 211;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 212;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 213;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 214;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 215;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 216;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 217;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 218;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 219;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 220;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 221;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 222;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 223;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 224;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 225;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 226;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 227;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 228;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 229;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 230;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 231;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 232;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 233;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 234;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 235;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 236;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 237;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 238;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 239;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 240;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 241;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 242;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 243;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 244;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 245;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 246;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 247;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 248;4;-0.990507,-0.137464, 0.000000,-0.000000;;, + 249;4;-0.990507,-0.137464, 0.000000,-0.000000;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3; 0.000000, 1.228822,-0.000000;;, + 1;3; 0.000000, 1.228822,-0.000000;;, + 2;3; 0.000000, 1.228822,-0.000000;;, + 3;3; 0.000000, 1.228822,-0.000000;;, + 4;3; 0.000000, 1.228822,-0.000000;;, + 5;3; 0.000000, 1.228822,-0.000000;;, + 6;3; 0.000000, 1.228822,-0.000000;;, + 7;3; 0.000000, 1.228822,-0.000000;;, + 8;3; 0.000000, 1.228822,-0.000000;;, + 9;3; 0.000000, 1.228822,-0.000000;;, + 10;3; 0.000000, 1.228822,-0.000000;;, + 11;3; 0.000000, 1.228822,-0.000000;;, + 12;3; 0.000000, 1.228822,-0.000000;;, + 13;3; 0.000000, 1.228822,-0.000000;;, + 14;3; 0.000000, 1.228822,-0.000000;;, + 15;3; 0.000000, 1.228822,-0.000000;;, + 16;3; 0.000000, 1.228822,-0.000000;;, + 17;3; 0.000000, 1.228822,-0.000000;;, + 18;3; 0.000000, 1.228822,-0.000000;;, + 19;3; 0.000000, 1.228822,-0.000000;;, + 20;3; 0.000000, 1.228822,-0.000000;;, + 21;3; 0.000000, 1.228822,-0.000000;;, + 22;3; 0.000000, 1.228822,-0.000000;;, + 23;3; 0.000000, 1.228822,-0.000000;;, + 24;3; 0.000000, 1.228822,-0.000000;;, + 25;3; 0.000000, 1.228822,-0.000000;;, + 26;3; 0.000000, 1.228822,-0.000000;;, + 27;3; 0.000000, 1.228822,-0.000000;;, + 28;3; 0.000000, 1.228822,-0.000000;;, + 29;3; 0.000000, 1.228822,-0.000000;;, + 30;3; 0.000000, 1.228822,-0.000000;;, + 31;3; 0.000000, 1.228822,-0.000000;;, + 32;3; 0.000000, 1.228822,-0.000000;;, + 33;3; 0.000000, 1.228822,-0.000000;;, + 34;3; 0.000000, 1.228822,-0.000000;;, + 35;3; 0.000000, 1.228822,-0.000000;;, + 36;3; 0.000000, 1.228822,-0.000000;;, + 37;3; 0.000000, 1.228822,-0.000000;;, + 38;3; 0.000000, 1.228822,-0.000000;;, + 39;3; 0.000000, 1.228822,-0.000000;;, + 40;3; 0.000000, 1.228822,-0.000000;;, + 41;3; 0.000000, 1.228822,-0.000000;;, + 42;3; 0.000000, 1.228822,-0.000000;;, + 43;3; 0.000000, 1.228822,-0.000000;;, + 44;3; 0.000000, 1.228822,-0.000000;;, + 45;3; 0.000000, 1.228822,-0.000000;;, + 46;3; 0.000000, 1.228822,-0.000000;;, + 47;3; 0.000000, 1.228822,-0.000000;;, + 48;3; 0.000000, 1.228822,-0.000000;;, + 49;3; 0.000000, 1.228822,-0.000000;;, + 50;3; 0.000000, 1.228822,-0.000000;;, + 51;3; 0.000000, 1.228822,-0.000000;;, + 52;3; 0.000000, 1.228822,-0.000000;;, + 53;3; 0.000000, 1.228822,-0.000000;;, + 54;3; 0.000000, 1.228822,-0.000000;;, + 55;3; 0.000000, 1.228822,-0.000000;;, + 56;3; 0.000000, 1.228822,-0.000000;;, + 57;3; 0.000000, 1.228822,-0.000000;;, + 58;3; 0.000000, 1.228822,-0.000000;;, + 59;3; 0.000000, 1.228822,-0.000000;;, + 60;3; 0.000000, 1.228822,-0.000000;;, + 61;3;-0.000000, 1.228822, 0.000000;;, + 62;3;-0.000000, 1.228822, 0.000000;;, + 63;3; 0.000000, 1.228822,-0.000000;;, + 64;3;-0.000000, 1.228822, 0.000000;;, + 65;3;-0.000000, 1.228822,-0.000000;;, + 66;3;-0.000000, 1.228822, 0.000000;;, + 67;3;-0.000000, 1.228822, 0.000000;;, + 68;3;-0.000000, 1.228822, 0.000000;;, + 69;3; 0.000000, 1.228822,-0.000000;;, + 70;3; 0.000000, 1.228822,-0.000000;;, + 71;3; 0.000000, 1.228822,-0.000000;;, + 72;3; 0.000000, 1.228822,-0.000000;;, + 73;3; 0.000000, 1.228822,-0.000000;;, + 74;3;-0.000000, 1.228822, 0.000000;;, + 75;3;-0.000000, 1.228822,-0.000000;;, + 76;3;-0.000000, 1.228822,-0.000000;;, + 77;3; 0.000000, 1.228822,-0.000000;;, + 78;3;-0.000000, 1.228822,-0.000000;;, + 79;3; 0.000000, 1.228822,-0.000000;;, + 80;3; 0.000000, 1.228822, 0.000000;;, + 81;3;-0.000000, 1.228822, 0.000000;;, + 82;3;-0.000000, 1.228822,-0.000000;;, + 83;3; 0.000000, 1.228822,-0.000000;;, + 84;3;-0.000000, 1.228822,-0.000000;;, + 85;3;-0.000000, 1.228822,-0.000000;;, + 86;3; 0.000000, 1.228822, 0.000000;;, + 87;3; 0.000000, 1.228821, 0.000000;;, + 88;3;-0.000000, 1.228822,-0.000000;;, + 89;3;-0.000000, 1.228822, 0.000000;;, + 90;3; 0.000000, 1.228822, 0.000000;;, + 91;3; 0.000000, 1.228822, 0.000000;;, + 92;3; 0.000000, 1.228822, 0.000000;;, + 93;3;-0.000000, 1.228822,-0.000000;;, + 94;3;-0.000000, 1.228822, 0.000000;;, + 95;3;-0.000000, 1.228822, 0.000000;;, + 96;3; 0.000000, 1.228822,-0.000000;;, + 97;3; 0.000000, 1.228822,-0.000000;;, + 98;3; 0.000000, 1.228822,-0.000000;;, + 99;3;-0.000000, 1.228821, 0.000000;;, + 100;3;-0.000000, 1.228822,-0.000000;;, + 101;3; 0.000000, 1.228821,-0.000000;;, + 102;3;-0.000000, 1.228822, 0.000000;;, + 103;3; 0.000000, 1.228822, 0.000000;;, + 104;3;-0.000000, 1.228822,-0.000000;;, + 105;3;-0.000000, 1.228822, 0.000000;;, + 106;3; 0.000000, 1.228822,-0.000000;;, + 107;3; 0.000000, 1.228822, 0.000000;;, + 108;3;-0.000000, 1.228822,-0.000000;;, + 109;3;-0.000000, 1.228822, 0.000000;;, + 110;3; 0.000000, 1.228822,-0.000000;;, + 111;3;-0.000000, 1.228822,-0.000000;;, + 112;3; 0.000000, 1.228822, 0.000000;;, + 113;3;-0.000000, 1.228822,-0.000000;;, + 114;3; 0.000000, 1.228822,-0.000000;;, + 115;3; 0.000000, 1.228821, 0.000000;;, + 116;3; 0.000000, 1.228822,-0.000000;;, + 117;3; 0.000000, 1.228822,-0.000000;;, + 118;3;-0.000000, 1.228822, 0.000000;;, + 119;3;-0.000000, 1.228822, 0.000000;;, + 120;3;-0.000000, 1.228822, 0.000000;;, + 121;3; 0.000000, 1.228821,-0.000000;;, + 122;3;-0.000000, 1.228822, 0.000000;;, + 123;3; 0.000000, 1.228822, 0.000000;;, + 124;3;-0.000000, 1.228822,-0.000000;;, + 125;3; 0.000000, 1.228822, 0.000000;;, + 126;3;-0.000000, 1.228822,-0.000000;;, + 127;3;-0.000000, 1.228822,-0.000000;;, + 128;3;-0.000000, 1.228822, 0.000000;;, + 129;3;-0.000000, 1.228822,-0.000000;;, + 130;3;-0.000000, 1.228822, 0.000000;;, + 131;3;-0.000000, 1.228821,-0.000000;;, + 132;3; 0.000000, 1.228822, 0.000000;;, + 133;3; 0.000000, 1.228822, 0.000000;;, + 134;3;-0.000000, 1.228822,-0.000000;;, + 135;3;-0.000000, 1.228822,-0.000000;;, + 136;3;-0.000000, 1.228823,-0.000000;;, + 137;3; 0.000000, 1.228821,-0.000000;;, + 138;3; 0.000000, 1.228822,-0.000000;;, + 139;3;-0.000000, 1.228821, 0.000000;;, + 140;3; 0.000000, 1.228821,-0.000000;;, + 141;3; 0.000000, 1.228822, 0.000000;;, + 142;3;-0.000000, 1.228822, 0.000000;;, + 143;3; 0.000000, 1.228822, 0.000000;;, + 144;3;-0.000000, 1.228822, 0.000000;;, + 145;3;-0.000000, 1.228822,-0.000000;;, + 146;3;-0.000000, 1.228822,-0.000000;;, + 147;3; 0.000000, 1.228821, 0.000000;;, + 148;3; 0.000000, 1.228822,-0.000000;;, + 149;3;-0.000000, 1.228822, 0.000000;;, + 150;3; 0.000000, 1.228821,-0.000000;;, + 151;3; 0.000000, 1.228822, 0.000000;;, + 152;3; 0.000000, 1.228822, 0.000000;;, + 153;3;-0.000000, 1.228822,-0.000000;;, + 154;3;-0.000000, 1.228822,-0.000000;;, + 155;3;-0.000000, 1.228821,-0.000000;;, + 156;3; 0.000000, 1.228822, 0.000000;;, + 157;3;-0.000000, 1.228822,-0.000000;;, + 158;3; 0.000000, 1.228821,-0.000000;;, + 159;3;-0.000000, 1.228821, 0.000000;;, + 160;3; 0.000000, 1.228822, 0.000000;;, + 161;3; 0.000000, 1.228821,-0.000000;;, + 162;3; 0.000000, 1.228822,-0.000000;;, + 163;3; 0.000000, 1.228822,-0.000000;;, + 164;3;-0.000000, 1.228822,-0.000000;;, + 165;3;-0.000000, 1.228822,-0.000000;;, + 166;3;-0.000000, 1.228821, 0.000000;;, + 167;3; 0.000000, 1.228821, 0.000000;;, + 168;3; 0.000000, 1.228822,-0.000000;;, + 169;3; 0.000000, 1.228822,-0.000000;;, + 170;3; 0.000000, 1.228822,-0.000000;;, + 171;3; 0.000000, 1.228822,-0.000000;;, + 172;3; 0.000000, 1.228822,-0.000000;;, + 173;3;-0.000000, 1.228822,-0.000000;;, + 174;3; 0.000000, 1.228822, 0.000000;;, + 175;3;-0.000000, 1.228822, 0.000000;;, + 176;3; 0.000000, 1.228822,-0.000000;;, + 177;3;-0.000000, 1.228822,-0.000000;;, + 178;3; 0.000000, 1.228822,-0.000000;;, + 179;3; 0.000000, 1.228822,-0.000000;;, + 180;3;-0.000000, 1.228822,-0.000000;;, + 181;3;-0.000000, 1.228822,-0.000000;;, + 182;3;-0.000000, 1.228822, 0.000000;;, + 183;3;-0.000000, 1.228822, 0.000000;;, + 184;3;-0.000000, 1.228822,-0.000000;;, + 185;3;-0.000000, 1.228822, 0.000000;;, + 186;3; 0.000000, 1.228822,-0.000000;;, + 187;3;-0.000000, 1.228822, 0.000000;;, + 188;3; 0.000000, 1.228821, 0.000000;;, + 189;3; 0.000000, 1.228822, 0.000000;;, + 190;3; 0.000000, 1.228822,-0.000000;;, + 191;3;-0.000000, 1.228822, 0.000000;;, + 192;3; 0.000000, 1.228822,-0.000000;;, + 193;3;-0.000000, 1.228822, 0.000000;;, + 194;3; 0.000000, 1.228822, 0.000000;;, + 195;3;-0.000000, 1.228822, 0.000000;;, + 196;3;-0.000000, 1.228822,-0.000000;;, + 197;3;-0.000000, 1.228822,-0.000000;;, + 198;3;-0.000000, 1.228822, 0.000000;;, + 199;3; 0.000000, 1.228822,-0.000000;;, + 200;3; 0.000000, 1.228822,-0.000000;;, + 201;3; 0.000000, 1.228822,-0.000000;;, + 202;3; 0.000000, 1.228822,-0.000000;;, + 203;3; 0.000000, 1.228822,-0.000000;;, + 204;3; 0.000000, 1.228822,-0.000000;;, + 205;3; 0.000000, 1.228822,-0.000000;;, + 206;3; 0.000000, 1.228822,-0.000000;;, + 207;3; 0.000000, 1.228822,-0.000000;;, + 208;3; 0.000000, 1.228822,-0.000000;;, + 209;3; 0.000000, 1.228822,-0.000000;;, + 210;3;-0.000000, 1.228822, 0.000000;;, + 211;3;-0.000000, 1.228822, 0.000000;;, + 212;3;-0.000000, 1.228822,-0.000000;;, + 213;3;-0.000000, 1.228822,-0.000000;;, + 214;3;-0.000000, 1.228822, 0.000000;;, + 215;3; 0.000000, 1.228822, 0.000000;;, + 216;3;-0.000000, 1.228822,-0.000000;;, + 217;3; 0.000000, 1.228822, 0.000000;;, + 218;3; 0.000000, 1.228822, 0.000000;;, + 219;3; 0.000000, 1.228822,-0.000000;;, + 220;3; 0.000000, 1.228821, 0.000000;;, + 221;3;-0.000000, 1.228821,-0.000000;;, + 222;3; 0.000000, 1.228822, 0.000000;;, + 223;3;-0.000000, 1.228821, 0.000000;;, + 224;3; 0.000000, 1.228821, 0.000000;;, + 225;3; 0.000000, 1.228822, 0.000000;;, + 226;3; 0.000000, 1.228822, 0.000000;;, + 227;3; 0.000000, 1.228822, 0.000000;;, + 228;3; 0.000000, 1.228823, 0.000000;;, + 229;3; 0.000000, 1.228822, 0.000000;;, + 230;3; 0.000000, 1.228822, 0.000000;;, + 231;3;-0.000000, 1.228822,-0.000000;;, + 232;3;-0.000000, 1.228821,-0.000001;;, + 233;3; 0.000000, 1.228822, 0.000000;;, + 234;3; 0.000000, 1.228822,-0.000000;;, + 235;3;-0.000000, 1.228822, 0.000000;;, + 236;3; 0.000000, 1.228822,-0.000000;;, + 237;3;-0.000000, 1.228822,-0.000000;;, + 238;3;-0.000000, 1.228822,-0.000000;;, + 239;3; 0.000000, 1.228822,-0.000000;;, + 240;3; 0.000000, 1.228822,-0.000000;;, + 241;3; 0.000000, 1.228822,-0.000000;;, + 242;3; 0.000000, 1.228822,-0.000000;;, + 243;3; 0.000000, 1.228822,-0.000000;;, + 244;3; 0.000000, 1.228822,-0.000000;;, + 245;3; 0.000000, 1.228822,-0.000000;;, + 246;3; 0.000000, 1.228822,-0.000000;;, + 247;3; 0.000000, 1.228822,-0.000000;;, + 248;3; 0.000000, 1.228822,-0.000000;;, + 249;3; 0.000000, 1.228822,-0.000000;;; + } + } + Animation { + {Armature_Bone_015} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 1;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 2;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 3;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 4;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 5;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 6;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 7;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 8;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 9;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 10;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 11;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 12;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 13;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 14;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 15;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 16;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 17;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 18;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 19;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 20;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 21;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 22;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 23;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 24;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 25;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 26;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 27;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 28;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 29;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 30;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 31;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 32;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 33;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 34;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 35;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 36;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 37;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 38;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 39;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 40;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 41;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 42;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 43;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 44;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 45;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 46;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 47;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 48;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 49;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 50;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 51;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 52;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 53;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 54;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 55;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 56;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 57;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 58;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 59;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 60;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 61;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 62;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 63;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 64;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 65;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 66;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 67;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 68;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 69;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 70;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 71;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 72;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 73;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 74;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 75;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 76;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 77;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 78;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 79;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 80;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 81;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 82;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 83;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 84;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 85;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 86;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 87;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 88;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 89;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 90;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 91;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 92;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 93;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 94;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 95;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 96;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 97;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 98;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 99;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 100;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 101;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 102;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 103;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 104;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 105;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 106;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 107;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 108;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 109;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 110;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 111;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 112;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 113;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 114;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 115;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 116;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 117;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 118;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 119;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 120;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 121;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 122;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 123;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 124;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 125;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 126;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 127;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 128;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 129;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 130;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 131;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 132;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 133;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 134;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 135;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 136;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 137;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 138;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 139;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 140;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 141;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 142;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 143;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 144;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 145;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 146;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 147;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 148;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 149;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 150;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 151;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 152;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 153;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 154;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 155;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 156;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 157;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 158;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 159;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 160;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 161;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 162;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 163;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 164;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 165;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 166;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 167;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 168;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 169;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 170;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 171;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 172;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 173;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 174;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 175;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 176;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 177;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 178;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 179;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 180;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 181;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 182;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 183;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 184;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 185;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 186;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 187;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 188;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 189;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 190;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 191;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 192;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 193;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 194;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 195;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 196;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 197;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 198;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 199;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 200;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 201;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 202;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 203;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 204;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 205;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 206;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 207;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 208;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 209;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 210;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 211;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 212;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 213;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 214;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 215;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 216;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 217;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 218;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 219;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 220;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 221;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 222;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 223;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 224;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 225;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 226;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 227;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 228;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 229;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 230;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 231;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 232;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 233;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 234;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 235;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 236;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 237;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 238;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 239;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 240;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 241;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 242;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 243;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 244;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 245;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 246;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 247;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 248;4;-0.734154, 0.000000, 0.000000,-0.678983;;, + 249;4;-0.734154, 0.000000, 0.000000,-0.678983;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3; 0.000000, 0.826434, 0.000000;;, + 1;3; 0.000000, 0.826434, 0.000000;;, + 2;3; 0.000000, 0.826434, 0.000000;;, + 3;3; 0.000000, 0.826434, 0.000000;;, + 4;3; 0.000000, 0.826434, 0.000000;;, + 5;3; 0.000000, 0.826434, 0.000000;;, + 6;3; 0.000000, 0.826434, 0.000000;;, + 7;3; 0.000000, 0.826434, 0.000000;;, + 8;3; 0.000000, 0.826434, 0.000000;;, + 9;3; 0.000000, 0.826434, 0.000000;;, + 10;3; 0.000000, 0.826434, 0.000000;;, + 11;3; 0.000000, 0.826434, 0.000000;;, + 12;3; 0.000000, 0.826434, 0.000000;;, + 13;3; 0.000000, 0.826434, 0.000000;;, + 14;3; 0.000000, 0.826434, 0.000000;;, + 15;3; 0.000000, 0.826434, 0.000000;;, + 16;3; 0.000000, 0.826434, 0.000000;;, + 17;3; 0.000000, 0.826434, 0.000000;;, + 18;3; 0.000000, 0.826434, 0.000000;;, + 19;3; 0.000000, 0.826434, 0.000000;;, + 20;3; 0.000000, 0.826434, 0.000000;;, + 21;3; 0.000000, 0.826434, 0.000000;;, + 22;3; 0.000000, 0.826434, 0.000000;;, + 23;3; 0.000000, 0.826434, 0.000000;;, + 24;3; 0.000000, 0.826434, 0.000000;;, + 25;3; 0.000000, 0.826434, 0.000000;;, + 26;3; 0.000000, 0.826434, 0.000000;;, + 27;3; 0.000000, 0.826434, 0.000000;;, + 28;3; 0.000000, 0.826434, 0.000000;;, + 29;3; 0.000000, 0.826434, 0.000000;;, + 30;3; 0.000000, 0.826434, 0.000000;;, + 31;3; 0.000000, 0.826434, 0.000000;;, + 32;3; 0.000000, 0.826434, 0.000000;;, + 33;3; 0.000000, 0.826434, 0.000000;;, + 34;3; 0.000000, 0.826434, 0.000000;;, + 35;3; 0.000000, 0.826434, 0.000000;;, + 36;3; 0.000000, 0.826434, 0.000000;;, + 37;3; 0.000000, 0.826434, 0.000000;;, + 38;3; 0.000000, 0.826434, 0.000000;;, + 39;3; 0.000000, 0.826434, 0.000000;;, + 40;3; 0.000000, 0.826434, 0.000000;;, + 41;3; 0.000000, 0.826434, 0.000000;;, + 42;3; 0.000000, 0.826434, 0.000000;;, + 43;3; 0.000000, 0.826434, 0.000000;;, + 44;3; 0.000000, 0.826434, 0.000000;;, + 45;3; 0.000000, 0.826434, 0.000000;;, + 46;3; 0.000000, 0.826434, 0.000000;;, + 47;3; 0.000000, 0.826434, 0.000000;;, + 48;3; 0.000000, 0.826434, 0.000000;;, + 49;3; 0.000000, 0.826434, 0.000000;;, + 50;3; 0.000000, 0.826434, 0.000000;;, + 51;3; 0.000000, 0.826434, 0.000000;;, + 52;3; 0.000000, 0.826434, 0.000000;;, + 53;3; 0.000000, 0.826434, 0.000000;;, + 54;3; 0.000000, 0.826434, 0.000000;;, + 55;3; 0.000000, 0.826434, 0.000000;;, + 56;3; 0.000000, 0.826434, 0.000000;;, + 57;3; 0.000000, 0.826434, 0.000000;;, + 58;3; 0.000000, 0.826434, 0.000000;;, + 59;3; 0.000000, 0.826434, 0.000000;;, + 60;3; 0.000000, 0.826434, 0.000000;;, + 61;3; 0.000000, 0.826434, 0.000000;;, + 62;3; 0.000000, 0.826434, 0.000000;;, + 63;3; 0.000000, 0.826434, 0.000000;;, + 64;3; 0.000000, 0.826434, 0.000000;;, + 65;3; 0.000000, 0.826434, 0.000000;;, + 66;3; 0.000000, 0.826434, 0.000000;;, + 67;3; 0.000000, 0.826434, 0.000000;;, + 68;3; 0.000000, 0.826434, 0.000000;;, + 69;3; 0.000000, 0.826434, 0.000000;;, + 70;3; 0.000000, 0.826434, 0.000000;;, + 71;3; 0.000000, 0.826434, 0.000000;;, + 72;3; 0.000000, 0.826434, 0.000000;;, + 73;3; 0.000000, 0.826434, 0.000000;;, + 74;3; 0.000000, 0.826434, 0.000000;;, + 75;3; 0.000000, 0.826434, 0.000000;;, + 76;3; 0.000000, 0.826434, 0.000000;;, + 77;3; 0.000000, 0.826434, 0.000000;;, + 78;3; 0.000000, 0.826434, 0.000000;;, + 79;3; 0.000000, 0.826434, 0.000000;;, + 80;3; 0.000000, 0.826434, 0.000000;;, + 81;3; 0.000000, 0.826434, 0.000000;;, + 82;3; 0.000000, 0.826434, 0.000000;;, + 83;3; 0.000000, 0.826434, 0.000000;;, + 84;3; 0.000000, 0.826434, 0.000000;;, + 85;3; 0.000000, 0.826434, 0.000000;;, + 86;3; 0.000000, 0.826434, 0.000000;;, + 87;3; 0.000000, 0.826434, 0.000000;;, + 88;3; 0.000000, 0.826434, 0.000000;;, + 89;3; 0.000000, 0.826434, 0.000000;;, + 90;3; 0.000000, 0.826434, 0.000000;;, + 91;3; 0.000000, 0.826434, 0.000000;;, + 92;3; 0.000000, 0.826434, 0.000000;;, + 93;3; 0.000000, 0.826434, 0.000000;;, + 94;3; 0.000000, 0.826434, 0.000000;;, + 95;3; 0.000000, 0.826434, 0.000000;;, + 96;3; 0.000000, 0.826434, 0.000000;;, + 97;3; 0.000000, 0.826434, 0.000000;;, + 98;3; 0.000000, 0.826434, 0.000000;;, + 99;3; 0.000000, 0.826434, 0.000000;;, + 100;3; 0.000000, 0.826434, 0.000000;;, + 101;3; 0.000000, 0.826434, 0.000000;;, + 102;3; 0.000000, 0.826434, 0.000000;;, + 103;3; 0.000000, 0.826434, 0.000000;;, + 104;3; 0.000000, 0.826434, 0.000000;;, + 105;3; 0.000000, 0.826434, 0.000000;;, + 106;3; 0.000000, 0.826434, 0.000000;;, + 107;3; 0.000000, 0.826434, 0.000000;;, + 108;3; 0.000000, 0.826434, 0.000000;;, + 109;3; 0.000000, 0.826434, 0.000000;;, + 110;3; 0.000000, 0.826434, 0.000000;;, + 111;3; 0.000000, 0.826434, 0.000000;;, + 112;3; 0.000000, 0.826434, 0.000000;;, + 113;3; 0.000000, 0.826434, 0.000000;;, + 114;3; 0.000000, 0.826434, 0.000000;;, + 115;3; 0.000000, 0.826434, 0.000000;;, + 116;3; 0.000000, 0.826434, 0.000000;;, + 117;3; 0.000000, 0.826434, 0.000000;;, + 118;3; 0.000000, 0.826434, 0.000000;;, + 119;3; 0.000000, 0.826434, 0.000000;;, + 120;3; 0.000000, 0.826434, 0.000000;;, + 121;3; 0.000000, 0.826434, 0.000000;;, + 122;3; 0.000000, 0.826434, 0.000000;;, + 123;3; 0.000000, 0.826434, 0.000000;;, + 124;3; 0.000000, 0.826434, 0.000000;;, + 125;3; 0.000000, 0.826434, 0.000000;;, + 126;3; 0.000000, 0.826434, 0.000000;;, + 127;3; 0.000000, 0.826434, 0.000000;;, + 128;3; 0.000000, 0.826434, 0.000000;;, + 129;3; 0.000000, 0.826434, 0.000000;;, + 130;3; 0.000000, 0.826434, 0.000000;;, + 131;3; 0.000000, 0.826434, 0.000000;;, + 132;3; 0.000000, 0.826434, 0.000000;;, + 133;3; 0.000000, 0.826434, 0.000000;;, + 134;3; 0.000000, 0.826434, 0.000000;;, + 135;3; 0.000000, 0.826434, 0.000000;;, + 136;3; 0.000000, 0.826434, 0.000000;;, + 137;3; 0.000000, 0.826434, 0.000000;;, + 138;3; 0.000000, 0.826434, 0.000000;;, + 139;3; 0.000000, 0.826434, 0.000000;;, + 140;3; 0.000000, 0.826434, 0.000000;;, + 141;3; 0.000000, 0.826434, 0.000000;;, + 142;3; 0.000000, 0.826434, 0.000000;;, + 143;3; 0.000000, 0.826434, 0.000000;;, + 144;3; 0.000000, 0.826434, 0.000000;;, + 145;3; 0.000000, 0.826434, 0.000000;;, + 146;3; 0.000000, 0.826434, 0.000000;;, + 147;3; 0.000000, 0.826434, 0.000000;;, + 148;3; 0.000000, 0.826434, 0.000000;;, + 149;3; 0.000000, 0.826434, 0.000000;;, + 150;3; 0.000000, 0.826434, 0.000000;;, + 151;3; 0.000000, 0.826434, 0.000000;;, + 152;3; 0.000000, 0.826434, 0.000000;;, + 153;3; 0.000000, 0.826434, 0.000000;;, + 154;3; 0.000000, 0.826434, 0.000000;;, + 155;3; 0.000000, 0.826434, 0.000000;;, + 156;3; 0.000000, 0.826434, 0.000000;;, + 157;3; 0.000000, 0.826434, 0.000000;;, + 158;3; 0.000000, 0.826434, 0.000000;;, + 159;3; 0.000000, 0.826434, 0.000000;;, + 160;3; 0.000000, 0.826434, 0.000000;;, + 161;3; 0.000000, 0.826434, 0.000000;;, + 162;3; 0.000000, 0.826434, 0.000000;;, + 163;3; 0.000000, 0.826434, 0.000000;;, + 164;3; 0.000000, 0.826434, 0.000000;;, + 165;3; 0.000000, 0.826434, 0.000000;;, + 166;3; 0.000000, 0.826434, 0.000000;;, + 167;3; 0.000000, 0.826434, 0.000000;;, + 168;3; 0.000000, 0.826434, 0.000000;;, + 169;3; 0.000000, 0.826434, 0.000000;;, + 170;3; 0.000000, 0.826434, 0.000000;;, + 171;3; 0.000000, 0.826434, 0.000000;;, + 172;3; 0.000000, 0.826434, 0.000000;;, + 173;3; 0.000000, 0.826434, 0.000000;;, + 174;3; 0.000000, 0.826434, 0.000000;;, + 175;3; 0.000000, 0.826434, 0.000000;;, + 176;3; 0.000000, 0.826434, 0.000000;;, + 177;3; 0.000000, 0.826434, 0.000000;;, + 178;3; 0.000000, 0.826434, 0.000000;;, + 179;3; 0.000000, 0.826434, 0.000000;;, + 180;3; 0.000000, 0.826434, 0.000000;;, + 181;3; 0.000000, 0.826434, 0.000000;;, + 182;3; 0.000000, 0.826434, 0.000000;;, + 183;3; 0.000000, 0.826434, 0.000000;;, + 184;3; 0.000000, 0.826434, 0.000000;;, + 185;3; 0.000000, 0.826434, 0.000000;;, + 186;3;-0.000000, 0.826434,-0.000000;;, + 187;3;-0.000000, 0.826434,-0.000000;;, + 188;3;-0.000000, 0.826434, 0.000000;;, + 189;3;-0.000000, 0.826434, 0.000000;;, + 190;3;-0.000000, 0.826434,-0.000000;;, + 191;3; 0.000000, 0.826434, 0.000000;;, + 192;3; 0.000000, 0.826434, 0.000000;;, + 193;3; 0.000000, 0.826434, 0.000000;;, + 194;3; 0.000000, 0.826434,-0.000000;;, + 195;3; 0.000000, 0.826434,-0.000000;;, + 196;3; 0.000000, 0.826434, 0.000000;;, + 197;3; 0.000000, 0.826434,-0.000000;;, + 198;3; 0.000000, 0.826434,-0.000000;;, + 199;3; 0.000000, 0.826434, 0.000000;;, + 200;3; 0.000000, 0.826434, 0.000000;;, + 201;3; 0.000000, 0.826434, 0.000000;;, + 202;3; 0.000000, 0.826434, 0.000000;;, + 203;3; 0.000000, 0.826434, 0.000000;;, + 204;3; 0.000000, 0.826434, 0.000000;;, + 205;3; 0.000000, 0.826434, 0.000000;;, + 206;3; 0.000000, 0.826434, 0.000000;;, + 207;3; 0.000000, 0.826434, 0.000000;;, + 208;3; 0.000000, 0.826434, 0.000000;;, + 209;3; 0.000000, 0.826434, 0.000000;;, + 210;3;-0.000000, 0.826434, 0.000000;;, + 211;3;-0.000000, 0.826434, 0.000000;;, + 212;3; 0.000000, 0.826434,-0.000000;;, + 213;3; 0.000000, 0.826434, 0.000000;;, + 214;3; 0.000000, 0.826434, 0.000000;;, + 215;3;-0.000000, 0.826434,-0.000000;;, + 216;3;-0.000000, 0.826434,-0.000000;;, + 217;3;-0.000000, 0.826434,-0.000000;;, + 218;3;-0.000000, 0.826434, 0.000000;;, + 219;3;-0.000000, 0.826434,-0.000000;;, + 220;3;-0.000000, 0.826434, 0.000000;;, + 221;3; 0.000000, 0.826434, 0.000000;;, + 222;3;-0.000000, 0.826434, 0.000000;;, + 223;3; 0.000000, 0.826434,-0.000000;;, + 224;3; 0.000000, 0.826434,-0.000000;;, + 225;3; 0.000000, 0.826434, 0.000000;;, + 226;3; 0.000000, 0.826434, 0.000000;;, + 227;3; 0.000000, 0.826434, 0.000000;;, + 228;3;-0.000000, 0.826434, 0.000000;;, + 229;3; 0.000000, 0.826434, 0.000000;;, + 230;3; 0.000000, 0.826434, 0.000000;;, + 231;3; 0.000000, 0.826434,-0.000000;;, + 232;3;-0.000000, 0.826434,-0.000000;;, + 233;3; 0.000000, 0.826434, 0.000000;;, + 234;3; 0.000000, 0.826434, 0.000000;;, + 235;3; 0.000000, 0.826434, 0.000000;;, + 236;3; 0.000000, 0.826434, 0.000000;;, + 237;3; 0.000000, 0.826434, 0.000000;;, + 238;3; 0.000000, 0.826434, 0.000000;;, + 239;3; 0.000000, 0.826434, 0.000000;;, + 240;3; 0.000000, 0.826434, 0.000000;;, + 241;3; 0.000000, 0.826434, 0.000000;;, + 242;3; 0.000000, 0.826434, 0.000000;;, + 243;3; 0.000000, 0.826434, 0.000000;;, + 244;3; 0.000000, 0.826434, 0.000000;;, + 245;3; 0.000000, 0.826434, 0.000000;;, + 246;3; 0.000000, 0.826434, 0.000000;;, + 247;3; 0.000000, 0.826434, 0.000000;;, + 248;3; 0.000000, 0.826434, 0.000000;;, + 249;3; 0.000000, 0.826434, 0.000000;;; + } + } + Animation { + {Armature_Bone_019} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.945309, 0.122931, 0.038961, 0.299601;;, + 1;4;-0.945411, 0.122945, 0.038914, 0.299240;;, + 2;4;-0.945721, 0.122985, 0.038772, 0.298147;;, + 3;4;-0.946238, 0.123052, 0.038535, 0.296319;;, + 4;4;-0.946959, 0.123146, 0.038203, 0.293774;;, + 5;4;-0.947872, 0.123265, 0.037784, 0.290547;;, + 6;4;-0.948960, 0.123406, 0.037284, 0.286703;;, + 7;4;-0.950197, 0.123567, 0.036716, 0.282337;;, + 8;4;-0.951546, 0.123743, 0.036096, 0.277570;;, + 9;4;-0.952967, 0.123927, 0.035444, 0.272552;;, + 10;4;-0.954412, 0.124115, 0.034780, 0.267447;;, + 11;4;-0.955833, 0.124300, 0.034127, 0.262429;;, + 12;4;-0.957182, 0.124476, 0.033507, 0.257662;;, + 13;4;-0.958419, 0.124636, 0.032940, 0.253295;;, + 14;4;-0.959507, 0.124778, 0.032440, 0.249452;;, + 15;4;-0.960420, 0.124897, 0.032020, 0.246225;;, + 16;4;-0.961141, 0.124990, 0.031689, 0.243679;;, + 17;4;-0.961658, 0.125058, 0.031451, 0.241852;;, + 18;4;-0.961968, 0.125098, 0.031309, 0.240759;;, + 19;4;-0.962070, 0.125111, 0.031262, 0.240397;;, + 20;4;-0.962066, 0.125107, 0.031275, 0.240492;;, + 21;4;-0.962050, 0.125096, 0.031315, 0.240784;;, + 22;4;-0.962022, 0.125077, 0.031383, 0.241279;;, + 23;4;-0.961978, 0.125049, 0.031480, 0.241986;;, + 24;4;-0.961916, 0.125014, 0.031606, 0.242904;;, + 25;4;-0.961834, 0.124970, 0.031760, 0.244032;;, + 26;4;-0.961730, 0.124919, 0.031942, 0.245361;;, + 27;4;-0.961599, 0.124860, 0.032148, 0.246877;;, + 28;4;-0.961442, 0.124796, 0.032377, 0.248556;;, + 29;4;-0.961256, 0.124726, 0.032623, 0.250372;;, + 30;4;-0.961040, 0.124652, 0.032883, 0.252291;;, + 31;4;-0.960796, 0.124576, 0.033152, 0.254279;;, + 32;4;-0.960523, 0.124499, 0.033424, 0.256298;;, + 33;4;-0.960223, 0.124422, 0.033695, 0.258315;;, + 34;4;-0.959899, 0.124347, 0.033961, 0.260300;;, + 35;4;-0.959552, 0.124274, 0.034218, 0.262226;;, + 36;4;-0.959185, 0.124205, 0.034463, 0.264074;;, + 37;4;-0.958800, 0.124139, 0.034695, 0.265828;;, + 38;4;-0.958400, 0.124078, 0.034911, 0.267477;;, + 39;4;-0.957987, 0.124021, 0.035112, 0.269015;;, + 40;4;-0.957562, 0.123964, 0.035312, 0.270556;;, + 41;4;-0.957125, 0.123903, 0.035529, 0.272216;;, + 42;4;-0.956672, 0.123838, 0.035761, 0.273990;;, + 43;4;-0.956202, 0.123768, 0.036006, 0.275867;;, + 44;4;-0.955712, 0.123695, 0.036263, 0.277833;;, + 45;4;-0.955200, 0.123620, 0.036528, 0.279869;;, + 46;4;-0.954664, 0.123543, 0.036799, 0.281949;;, + 47;4;-0.954100, 0.123466, 0.037072, 0.284043;;, + 48;4;-0.953508, 0.123390, 0.037340, 0.286118;;, + 49;4;-0.952887, 0.123317, 0.037600, 0.288137;;, + 50;4;-0.952236, 0.123247, 0.037847, 0.290065;;, + 51;4;-0.951556, 0.123182, 0.038075, 0.291868;;, + 52;4;-0.950849, 0.123124, 0.038282, 0.293518;;, + 53;4;-0.950115, 0.123072, 0.038463, 0.294990;;, + 54;4;-0.949358, 0.123029, 0.038618, 0.296268;;, + 55;4;-0.948580, 0.122993, 0.038743, 0.297344;;, + 56;4;-0.947784, 0.122966, 0.038840, 0.298212;;, + 57;4;-0.946972, 0.122946, 0.038908, 0.298874;;, + 58;4;-0.946146, 0.122935, 0.038948, 0.299335;;, + 59;4;-0.945309, 0.122931, 0.038961, 0.299601;;, + 60;4;-0.944454, 0.123130, 0.038865, 0.299773;;, + 61;4;-0.943573, 0.123730, 0.038573, 0.299941;;, + 62;4;-0.942667, 0.124736, 0.038084, 0.300107;;, + 63;4;-0.941735, 0.126152, 0.037398, 0.300270;;, + 64;4;-0.940778, 0.127982, 0.036514, 0.300430;;, + 65;4;-0.939796, 0.130225, 0.035433, 0.300587;;, + 66;4;-0.938789, 0.132880, 0.034158, 0.300740;;, + 67;4;-0.937759, 0.135942, 0.032690, 0.300890;;, + 68;4;-0.936707, 0.139406, 0.031037, 0.301036;;, + 69;4;-0.935633, 0.143260, 0.029202, 0.301177;;, + 70;4;-0.934539, 0.147493, 0.027196, 0.301315;;, + 71;4;-0.933428, 0.152086, 0.025027, 0.301448;;, + 72;4;-0.932300, 0.157021, 0.022707, 0.301576;;, + 73;4;-0.931158, 0.162272, 0.020250, 0.301699;;, + 74;4;-0.930005, 0.167812, 0.017671, 0.301818;;, + 75;4;-0.928843, 0.173611, 0.014987, 0.301931;;, + 76;4;-0.927675, 0.179634, 0.012217, 0.302039;;, + 77;4;-0.926505, 0.185844, 0.009379, 0.302143;;, + 78;4;-0.925335, 0.192200, 0.006496, 0.302240;;, + 79;4;-0.924168, 0.198663, 0.003588, 0.302333;;, + 80;4;-0.923008, 0.205189, 0.000678, 0.302421;;, + 81;4;-0.921858, 0.211735,-0.002213, 0.302503;;, + 82;4;-0.920722, 0.218259,-0.005062, 0.302581;;, + 83;4;-0.919601, 0.224719,-0.007850, 0.302653;;, + 84;4;-0.918498, 0.231075,-0.010556, 0.302722;;, + 85;4;-0.917417, 0.237289,-0.013161, 0.302785;;, + 86;4;-0.916360, 0.243327,-0.015649, 0.302845;;, + 87;4;-0.915328, 0.249156,-0.018003, 0.302900;;, + 88;4;-0.914322, 0.254747,-0.020211, 0.302952;;, + 89;4;-0.913346, 0.260075,-0.022260, 0.303000;;, + 90;4;-0.912399, 0.265117,-0.024141, 0.303045;;, + 91;4;-0.911483, 0.269856,-0.025845, 0.303087;;, + 92;4;-0.910599, 0.274275,-0.027365, 0.303126;;, + 93;4;-0.909745, 0.278363,-0.028697, 0.303163;;, + 94;4;-0.908924, 0.282111,-0.029836, 0.303198;;, + 95;4;-0.908135, 0.285510,-0.030781, 0.303230;;, + 96;4;-0.907378, 0.288558,-0.031531, 0.303260;;, + 97;4;-0.906652, 0.291251,-0.032086, 0.303289;;, + 98;4;-0.905957, 0.293589,-0.032445, 0.303316;;, + 99;4;-0.905294, 0.295574,-0.032612, 0.303342;;, + 100;4;-0.904634, 0.297353,-0.031031, 0.302463;;, + 101;4;-0.903960, 0.299054,-0.026082, 0.299766;;, + 102;4;-0.903291, 0.300635,-0.017876, 0.295363;;, + 103;4;-0.902653, 0.302051,-0.006912, 0.289596;;, + 104;4;-0.902075, 0.303262, 0.005858, 0.283057;;, + 105;4;-0.901587, 0.304242, 0.019140, 0.276514;;, + 106;4;-0.901210, 0.304987, 0.031590, 0.270737;;, + 107;4;-0.900950, 0.305518, 0.042121, 0.266318;;, + 108;4;-0.900802, 0.305867, 0.050062, 0.263601;;, + 109;4;-0.900756, 0.306070, 0.055135, 0.262697;;, + 110;4;-0.901904, 0.299828, 0.058819, 0.263254;;, + 111;4;-0.905362, 0.280758, 0.062582, 0.264946;;, + 112;4;-0.910987, 0.249658, 0.066320, 0.267734;;, + 113;4;-0.918345, 0.208929, 0.069889, 0.271447;;, + 114;4;-0.926686, 0.162758, 0.073118, 0.275762;;, + 115;4;-0.935032, 0.116567, 0.075844, 0.280240;;, + 116;4;-0.942409, 0.075781, 0.077956, 0.284427;;, + 117;4;-0.948062, 0.044592, 0.079413, 0.287957;;, + 118;4;-0.951558, 0.025407, 0.080240, 0.290604;;, + 119;4;-0.952750, 0.019031, 0.080499, 0.292276;;, + 120;4;-0.952463, 0.020937, 0.079719, 0.293368;;, + 121;4;-0.951473, 0.026859, 0.077297, 0.294279;;, + 122;4;-0.949759, 0.036917, 0.073183, 0.295002;;, + 123;4;-0.947367, 0.050857, 0.067482, 0.295550;;, + 124;4;-0.944427, 0.067923, 0.060501, 0.295957;;, + 125;4;-0.941152, 0.086910, 0.052736, 0.296277;;, + 126;4;-0.937786, 0.106416, 0.044757, 0.296574;;, + 127;4;-0.934548, 0.125185, 0.037080, 0.296904;;, + 128;4;-0.931597, 0.142316, 0.030073, 0.297308;;, + 129;4;-0.929022, 0.157302, 0.023944, 0.297809;;, + 130;4;-0.926575, 0.171986, 0.017826, 0.298404;;, + 131;4;-0.923991, 0.188253, 0.010853, 0.299076;;, + 132;4;-0.921303, 0.205729, 0.003226, 0.299806;;, + 133;4;-0.918568, 0.223750,-0.004694, 0.300563;;, + 134;4;-0.915865, 0.241387,-0.012407, 0.301301;;, + 135;4;-0.913286, 0.257606,-0.019355, 0.301970;;, + 136;4;-0.910906, 0.271516,-0.025055, 0.302527;;, + 137;4;-0.908773, 0.282560,-0.029208, 0.302946;;, + 138;4;-0.906905, 0.290549,-0.031710, 0.303216;;, + 139;4;-0.905294, 0.295574,-0.032612, 0.303342;;, + 140;4;-0.903822, 0.299054,-0.026082, 0.299771;;, + 141;4;-0.902489, 0.302051,-0.006912, 0.289602;;, + 142;4;-0.901482, 0.304242, 0.019140, 0.276518;;, + 143;4;-0.900918, 0.305518, 0.042121, 0.266320;;, + 144;4;-0.900756, 0.306070, 0.055135, 0.262697;;, + 145;4;-0.905362, 0.280758, 0.062582, 0.264946;;, + 146;4;-0.918345, 0.208929, 0.069889, 0.271447;;, + 147;4;-0.935032, 0.116567, 0.075844, 0.280240;;, + 148;4;-0.948062, 0.044592, 0.079413, 0.287957;;, + 149;4;-0.952750, 0.019031, 0.080499, 0.292276;;, + 150;4;-0.951473, 0.026859, 0.077297, 0.294279;;, + 151;4;-0.947367, 0.050857, 0.067482, 0.295550;;, + 152;4;-0.941152, 0.086910, 0.052736, 0.296277;;, + 153;4;-0.934548, 0.125185, 0.037080, 0.296904;;, + 154;4;-0.929022, 0.157302, 0.023944, 0.297809;;, + 155;4;-0.923510, 0.189420, 0.010807, 0.299094;;, + 156;4;-0.916942, 0.227695,-0.004848, 0.300626;;, + 157;4;-0.910755, 0.263748,-0.019594, 0.302069;;, + 158;4;-0.906637, 0.287746,-0.029410, 0.303029;;, + 159;4;-0.905294, 0.295574,-0.032612, 0.303342;;, + 160;4;-0.905515, 0.295573,-0.032254, 0.303334;;, + 161;4;-0.906183, 0.295508,-0.031172, 0.303306;;, + 162;4;-0.907299, 0.295265,-0.029356, 0.303259;;, + 163;4;-0.908858, 0.294711,-0.026815, 0.303190;;, + 164;4;-0.910838, 0.293688,-0.023573, 0.303098;;, + 165;4;-0.913206, 0.292018,-0.019677, 0.302983;;, + 166;4;-0.915913, 0.289505,-0.015200, 0.302844;;, + 167;4;-0.918893, 0.285950,-0.010241, 0.302681;;, + 168;4;-0.922064, 0.281155,-0.004923, 0.302495;;, + 169;4;-0.925333, 0.274941, 0.000610, 0.302288;;, + 170;4;-0.928602, 0.267159, 0.006205, 0.302061;;, + 171;4;-0.931770, 0.257702, 0.011704, 0.301817;;, + 172;4;-0.934746, 0.246510, 0.016962, 0.301559;;, + 173;4;-0.937448, 0.233572, 0.021846, 0.301291;;, + 174;4;-0.939810, 0.218918, 0.026249, 0.301014;;, + 175;4;-0.941783, 0.202614, 0.030087, 0.300733;;, + 176;4;-0.943333, 0.184753, 0.033305, 0.300449;;, + 177;4;-0.944441, 0.165441, 0.035864, 0.300165;;, + 178;4;-0.945099, 0.144795, 0.037750, 0.299882;;, + 179;4;-0.945309, 0.122931, 0.038961, 0.299601;;, + 180;4;-0.943852, 0.094790, 0.030556, 0.290457;;, + 181;4;-0.939490, 0.055477, 0.003488, 0.263499;;, + 182;4;-0.932404, 0.006299,-0.041099, 0.219851;;, + 183;4;-0.923140,-0.049843,-0.099735, 0.162863;;, + 184;4;-0.912648,-0.108395,-0.166358, 0.098367;;, + 185;4;-0.902158,-0.163831,-0.233103, 0.033910;;, + 186;4;-0.892899,-0.210942,-0.292092,-0.022967;;, + 187;4;-0.885820,-0.245988,-0.337230,-0.066439;;, + 188;4;-0.881466,-0.267112,-0.365009,-0.093171;;, + 189;4;-0.880020,-0.274032,-0.374242,-0.102052;;, + 190;4;-0.889364,-0.269311,-0.351268,-0.099030;;, + 191;4;-0.915797,-0.253212,-0.283640,-0.087668;;, + 192;4;-0.950033,-0.225022,-0.188979,-0.065435;;, + 193;4;-0.977279,-0.188430,-0.100020,-0.033238;;, + 194;4;-0.988008,-0.148841,-0.040751, 0.005235;;, + 195;4;-0.985342,-0.096222,-0.004041, 0.060336;;, + 196;4;-0.974860,-0.022930, 0.021380, 0.139373;;, + 197;4;-0.960654, 0.052382, 0.034457, 0.221748;;, + 198;4;-0.949359, 0.105181, 0.038545, 0.279950;;, + 199;4;-0.945309, 0.122931, 0.038961, 0.299601;;, + 200;4;-0.945309, 0.122931, 0.038961, 0.299601;;, + 201;4;-0.945309, 0.122931, 0.038961, 0.299601;;, + 202;4;-0.945309, 0.122931, 0.038961, 0.299601;;, + 203;4;-0.945309, 0.122931, 0.038961, 0.299601;;, + 204;4;-0.945309, 0.122931, 0.038961, 0.299601;;, + 205;4;-0.945309, 0.122931, 0.038961, 0.299601;;, + 206;4;-0.945309, 0.122931, 0.038961, 0.299601;;, + 207;4;-0.945309, 0.122931, 0.038961, 0.299601;;, + 208;4;-0.945309, 0.122931, 0.038961, 0.299601;;, + 209;4;-0.945309, 0.122931, 0.038961, 0.299601;;, + 210;4;-0.945465, 0.107369, 0.010811, 0.265085;;, + 211;4;-0.945905, 0.060065,-0.068344, 0.167862;;, + 212;4;-0.946469,-0.009981,-0.169615, 0.043029;;, + 213;4;-0.946909,-0.082653,-0.247780,-0.054193;;, + 214;4;-0.947065,-0.141378,-0.274245,-0.088710;;, + 215;4;-0.941994,-0.195997,-0.222898,-0.075110;;, + 216;4;-0.927709,-0.257101,-0.081890,-0.036802;;, + 217;4;-0.909367,-0.312295, 0.098255, 0.012384;;, + 218;4;-0.895082,-0.348032, 0.238273, 0.050691;;, + 219;4;-0.890010,-0.359488, 0.287935, 0.064292;;, + 220;4;-0.897110,-0.350085, 0.260848, 0.046817;;, + 221;4;-0.917105,-0.321656, 0.184477,-0.002405;;, + 222;4;-0.942780,-0.279935, 0.086214,-0.065605;;, + 223;4;-0.962776,-0.237284, 0.009288,-0.114826;;, + 224;4;-0.969875,-0.203684,-0.018743,-0.132301;;, + 225;4;-0.969634,-0.175435,-0.019154,-0.128061;;, + 226;4;-0.968905,-0.145913,-0.018215,-0.115241;;, + 227;4;-0.967692,-0.115400,-0.015927,-0.093910;;, + 228;4;-0.966019,-0.084305,-0.012345,-0.064512;;, + 229;4;-0.963941,-0.053178,-0.007600,-0.027974;;, + 230;4;-0.961541,-0.022699,-0.001906, 0.014227;;, + 231;4;-0.958932, 0.006365, 0.004440, 0.060086;;, + 232;4;-0.956252, 0.033233, 0.011079, 0.107214;;, + 233;4;-0.953643, 0.057202, 0.017625, 0.153073;;, + 234;4;-0.951243, 0.077723, 0.023708, 0.195274;;, + 235;4;-0.949165, 0.094448, 0.029015, 0.231812;;, + 236;4;-0.947493, 0.107238, 0.033311, 0.261210;;, + 237;4;-0.946279, 0.116126, 0.036444, 0.282541;;, + 238;4;-0.945550, 0.121276, 0.038334, 0.295361;;, + 239;4;-0.945309, 0.122931, 0.038961, 0.299601;;, + 240;4;-0.945309, 0.122931, 0.038961, 0.299601;;, + 241;4;-0.945309, 0.122931, 0.038961, 0.299601;;, + 242;4;-0.945309, 0.122931, 0.038961, 0.299601;;, + 243;4;-0.945309, 0.122931, 0.038961, 0.299601;;, + 244;4;-0.945309, 0.122931, 0.038961, 0.299601;;, + 245;4;-0.945309, 0.122931, 0.038961, 0.299601;;, + 246;4;-0.945309, 0.122931, 0.038961, 0.299601;;, + 247;4;-0.945309, 0.122931, 0.038961, 0.299601;;, + 248;4;-0.945309, 0.122931, 0.038961, 0.299601;;, + 249;4;-0.945309, 0.122931, 0.038961, 0.299601;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3;-0.000000, 0.592826,-0.000000;;, + 1;3;-0.000000, 0.592826,-0.000000;;, + 2;3;-0.000000, 0.592826,-0.000000;;, + 3;3;-0.000000, 0.592826,-0.000000;;, + 4;3;-0.000000, 0.592826,-0.000000;;, + 5;3;-0.000000, 0.592826,-0.000000;;, + 6;3;-0.000000, 0.592826,-0.000000;;, + 7;3;-0.000000, 0.592826,-0.000000;;, + 8;3;-0.000000, 0.592826,-0.000000;;, + 9;3;-0.000000, 0.592826,-0.000000;;, + 10;3;-0.000000, 0.592826,-0.000000;;, + 11;3;-0.000000, 0.592826,-0.000000;;, + 12;3;-0.000000, 0.592826,-0.000000;;, + 13;3;-0.000000, 0.592826,-0.000000;;, + 14;3;-0.000000, 0.592826,-0.000000;;, + 15;3;-0.000000, 0.592826,-0.000000;;, + 16;3;-0.000000, 0.592826,-0.000000;;, + 17;3;-0.000000, 0.592826,-0.000000;;, + 18;3;-0.000000, 0.592826,-0.000000;;, + 19;3;-0.000000, 0.592826,-0.000000;;, + 20;3;-0.000000, 0.592826,-0.000000;;, + 21;3;-0.000000, 0.592826,-0.000000;;, + 22;3;-0.000000, 0.592826,-0.000000;;, + 23;3;-0.000000, 0.592826,-0.000000;;, + 24;3;-0.000000, 0.592826,-0.000000;;, + 25;3;-0.000000, 0.592826,-0.000000;;, + 26;3;-0.000000, 0.592826,-0.000000;;, + 27;3;-0.000000, 0.592826,-0.000000;;, + 28;3;-0.000000, 0.592826,-0.000000;;, + 29;3;-0.000000, 0.592826,-0.000000;;, + 30;3;-0.000000, 0.592826,-0.000000;;, + 31;3;-0.000000, 0.592826,-0.000000;;, + 32;3;-0.000000, 0.592826,-0.000000;;, + 33;3;-0.000000, 0.592826,-0.000000;;, + 34;3;-0.000000, 0.592826,-0.000000;;, + 35;3;-0.000000, 0.592826,-0.000000;;, + 36;3;-0.000000, 0.592826,-0.000000;;, + 37;3;-0.000000, 0.592826,-0.000000;;, + 38;3;-0.000000, 0.592826,-0.000000;;, + 39;3;-0.000000, 0.592826,-0.000000;;, + 40;3;-0.000000, 0.592826,-0.000000;;, + 41;3;-0.000000, 0.592826,-0.000000;;, + 42;3;-0.000000, 0.592826,-0.000000;;, + 43;3;-0.000000, 0.592826,-0.000000;;, + 44;3;-0.000000, 0.592826,-0.000000;;, + 45;3;-0.000000, 0.592826,-0.000000;;, + 46;3;-0.000000, 0.592826,-0.000000;;, + 47;3;-0.000000, 0.592826,-0.000000;;, + 48;3;-0.000000, 0.592826,-0.000000;;, + 49;3;-0.000000, 0.592826,-0.000000;;, + 50;3;-0.000000, 0.592826,-0.000000;;, + 51;3;-0.000000, 0.592826,-0.000000;;, + 52;3;-0.000000, 0.592826,-0.000000;;, + 53;3;-0.000000, 0.592826,-0.000000;;, + 54;3;-0.000000, 0.592826,-0.000000;;, + 55;3;-0.000000, 0.592826,-0.000000;;, + 56;3;-0.000000, 0.592826,-0.000000;;, + 57;3;-0.000000, 0.592826,-0.000000;;, + 58;3;-0.000000, 0.592826,-0.000000;;, + 59;3;-0.000000, 0.592826,-0.000000;;, + 60;3;-0.000000, 0.592826,-0.000000;;, + 61;3;-0.000000, 0.592826,-0.000000;;, + 62;3;-0.000000, 0.592826,-0.000000;;, + 63;3;-0.000000, 0.592826,-0.000000;;, + 64;3;-0.000000, 0.592826,-0.000000;;, + 65;3;-0.000000, 0.592826,-0.000000;;, + 66;3;-0.000000, 0.592826,-0.000000;;, + 67;3;-0.000000, 0.592826,-0.000000;;, + 68;3;-0.000000, 0.592826,-0.000000;;, + 69;3;-0.000000, 0.592826,-0.000000;;, + 70;3;-0.000000, 0.592826,-0.000000;;, + 71;3;-0.000000, 0.592826,-0.000000;;, + 72;3;-0.000000, 0.592826,-0.000000;;, + 73;3;-0.000000, 0.592826,-0.000000;;, + 74;3;-0.000000, 0.592826,-0.000000;;, + 75;3;-0.000000, 0.592826,-0.000000;;, + 76;3;-0.000000, 0.592826,-0.000000;;, + 77;3;-0.000000, 0.592826,-0.000000;;, + 78;3;-0.000000, 0.592826,-0.000000;;, + 79;3;-0.000000, 0.592826,-0.000000;;, + 80;3;-0.000000, 0.592826,-0.000000;;, + 81;3;-0.000000, 0.592826,-0.000000;;, + 82;3;-0.000000, 0.592826,-0.000000;;, + 83;3;-0.000000, 0.592826,-0.000000;;, + 84;3;-0.000000, 0.592826,-0.000000;;, + 85;3;-0.000000, 0.592826,-0.000000;;, + 86;3;-0.000000, 0.592826,-0.000000;;, + 87;3;-0.000000, 0.592826,-0.000000;;, + 88;3;-0.000000, 0.592826,-0.000000;;, + 89;3;-0.000000, 0.592826,-0.000000;;, + 90;3;-0.000000, 0.592826,-0.000000;;, + 91;3;-0.000000, 0.592826,-0.000000;;, + 92;3;-0.000000, 0.592826,-0.000000;;, + 93;3;-0.000000, 0.592826,-0.000000;;, + 94;3;-0.000000, 0.592826,-0.000000;;, + 95;3;-0.000000, 0.592826,-0.000000;;, + 96;3;-0.000000, 0.592826,-0.000000;;, + 97;3;-0.000000, 0.592826,-0.000000;;, + 98;3;-0.000000, 0.592826,-0.000000;;, + 99;3;-0.000000, 0.592826,-0.000000;;, + 100;3;-0.000000, 0.592826,-0.000000;;, + 101;3;-0.000000, 0.592826,-0.000000;;, + 102;3;-0.000000, 0.592826,-0.000000;;, + 103;3;-0.000000, 0.592826,-0.000000;;, + 104;3;-0.000000, 0.592826,-0.000000;;, + 105;3;-0.000000, 0.592826,-0.000000;;, + 106;3;-0.000000, 0.592826,-0.000000;;, + 107;3;-0.000000, 0.592826,-0.000000;;, + 108;3;-0.000000, 0.592826,-0.000000;;, + 109;3;-0.000000, 0.592826,-0.000000;;, + 110;3;-0.000000, 0.592826,-0.000000;;, + 111;3;-0.000000, 0.592826,-0.000000;;, + 112;3;-0.000000, 0.592826,-0.000000;;, + 113;3;-0.000000, 0.592826,-0.000000;;, + 114;3;-0.000000, 0.592826,-0.000000;;, + 115;3;-0.000000, 0.592826,-0.000000;;, + 116;3;-0.000000, 0.592826,-0.000000;;, + 117;3;-0.000000, 0.592826,-0.000000;;, + 118;3;-0.000000, 0.592826,-0.000000;;, + 119;3;-0.000000, 0.592826,-0.000000;;, + 120;3;-0.000000, 0.592826,-0.000000;;, + 121;3;-0.000000, 0.592826,-0.000000;;, + 122;3;-0.000000, 0.592826,-0.000000;;, + 123;3;-0.000000, 0.592826,-0.000000;;, + 124;3;-0.000000, 0.592826,-0.000000;;, + 125;3;-0.000000, 0.592826,-0.000000;;, + 126;3;-0.000000, 0.592826,-0.000000;;, + 127;3;-0.000000, 0.592826,-0.000000;;, + 128;3;-0.000000, 0.592826,-0.000000;;, + 129;3;-0.000000, 0.592826,-0.000000;;, + 130;3;-0.000000, 0.592826,-0.000000;;, + 131;3;-0.000000, 0.592826,-0.000000;;, + 132;3;-0.000000, 0.592826,-0.000000;;, + 133;3;-0.000000, 0.592826,-0.000000;;, + 134;3;-0.000000, 0.592826,-0.000000;;, + 135;3;-0.000000, 0.592826,-0.000000;;, + 136;3;-0.000000, 0.592826,-0.000000;;, + 137;3;-0.000000, 0.592826,-0.000000;;, + 138;3;-0.000000, 0.592826,-0.000000;;, + 139;3;-0.000000, 0.592826,-0.000000;;, + 140;3;-0.000000, 0.592826,-0.000000;;, + 141;3;-0.000000, 0.592826,-0.000000;;, + 142;3;-0.000000, 0.592826,-0.000000;;, + 143;3;-0.000000, 0.592826,-0.000000;;, + 144;3;-0.000000, 0.592826,-0.000000;;, + 145;3;-0.000000, 0.592826,-0.000000;;, + 146;3;-0.000000, 0.592826,-0.000000;;, + 147;3;-0.000000, 0.592826,-0.000000;;, + 148;3;-0.000000, 0.592826,-0.000000;;, + 149;3;-0.000000, 0.592826,-0.000000;;, + 150;3;-0.000000, 0.592826,-0.000000;;, + 151;3;-0.000000, 0.592826,-0.000000;;, + 152;3;-0.000000, 0.592826,-0.000000;;, + 153;3;-0.000000, 0.592826,-0.000000;;, + 154;3;-0.000000, 0.592826,-0.000000;;, + 155;3;-0.000000, 0.592826,-0.000000;;, + 156;3;-0.000000, 0.592826,-0.000000;;, + 157;3;-0.000000, 0.592826,-0.000000;;, + 158;3;-0.000000, 0.592826,-0.000000;;, + 159;3;-0.000000, 0.592826,-0.000000;;, + 160;3;-0.000000, 0.592826,-0.000000;;, + 161;3;-0.000000, 0.592826,-0.000000;;, + 162;3;-0.000000, 0.592826,-0.000000;;, + 163;3;-0.000000, 0.592826,-0.000000;;, + 164;3;-0.000000, 0.592826,-0.000000;;, + 165;3;-0.000000, 0.592826,-0.000000;;, + 166;3;-0.000000, 0.592826,-0.000000;;, + 167;3;-0.000000, 0.592826,-0.000000;;, + 168;3;-0.000000, 0.592826,-0.000000;;, + 169;3;-0.000000, 0.592826,-0.000000;;, + 170;3;-0.000000, 0.592826,-0.000000;;, + 171;3;-0.000000, 0.592826,-0.000000;;, + 172;3;-0.000000, 0.592826,-0.000000;;, + 173;3;-0.000000, 0.592826,-0.000000;;, + 174;3;-0.000000, 0.592826,-0.000000;;, + 175;3;-0.000000, 0.592826,-0.000000;;, + 176;3;-0.000000, 0.592826,-0.000000;;, + 177;3;-0.000000, 0.592826,-0.000000;;, + 178;3;-0.000000, 0.592826,-0.000000;;, + 179;3;-0.000000, 0.592826,-0.000000;;, + 180;3;-0.000000, 0.592826, 0.000000;;, + 181;3;-0.000000, 0.592826, 0.000000;;, + 182;3;-0.000000, 0.592826,-0.000000;;, + 183;3;-0.000000, 0.592826, 0.000000;;, + 184;3; 0.000000, 0.592826,-0.000000;;, + 185;3;-0.000000, 0.592826, 0.000000;;, + 186;3; 0.000000, 0.592826,-0.000000;;, + 187;3;-0.000000, 0.592826, 0.000000;;, + 188;3; 0.000000, 0.592826, 0.000000;;, + 189;3; 0.000000, 0.592826, 0.000000;;, + 190;3;-0.000000, 0.592826,-0.000000;;, + 191;3; 0.000000, 0.592826,-0.000000;;, + 192;3; 0.000000, 0.592826,-0.000000;;, + 193;3;-0.000000, 0.592826, 0.000000;;, + 194;3;-0.000000, 0.592826,-0.000000;;, + 195;3; 0.000000, 0.592826,-0.000000;;, + 196;3;-0.000000, 0.592826,-0.000000;;, + 197;3; 0.000000, 0.592826, 0.000000;;, + 198;3; 0.000000, 0.592826,-0.000000;;, + 199;3;-0.000000, 0.592826,-0.000000;;, + 200;3;-0.000000, 0.592826,-0.000000;;, + 201;3;-0.000000, 0.592826,-0.000000;;, + 202;3;-0.000000, 0.592826,-0.000000;;, + 203;3;-0.000000, 0.592826,-0.000000;;, + 204;3;-0.000000, 0.592826,-0.000000;;, + 205;3;-0.000000, 0.592826,-0.000000;;, + 206;3;-0.000000, 0.592826,-0.000000;;, + 207;3;-0.000000, 0.592826,-0.000000;;, + 208;3;-0.000000, 0.592826,-0.000000;;, + 209;3;-0.000000, 0.592826,-0.000000;;, + 210;3;-0.000000, 0.592826, 0.000000;;, + 211;3;-0.000000, 0.592826, 0.000000;;, + 212;3;-0.000000, 0.592826, 0.000000;;, + 213;3;-0.000000, 0.592826,-0.000000;;, + 214;3;-0.000000, 0.592826, 0.000000;;, + 215;3;-0.000000, 0.592826,-0.000000;;, + 216;3;-0.000000, 0.592826, 0.000000;;, + 217;3;-0.000000, 0.592826, 0.000000;;, + 218;3;-0.000000, 0.592826, 0.000000;;, + 219;3;-0.000000, 0.592826,-0.000000;;, + 220;3;-0.000000, 0.592826, 0.000000;;, + 221;3;-0.000000, 0.592826, 0.000000;;, + 222;3; 0.000000, 0.592826,-0.000000;;, + 223;3;-0.000000, 0.592826,-0.000000;;, + 224;3; 0.000000, 0.592826, 0.000000;;, + 225;3; 0.000000, 0.592826,-0.000000;;, + 226;3;-0.000000, 0.592826,-0.000000;;, + 227;3;-0.000000, 0.592826, 0.000000;;, + 228;3; 0.000000, 0.592826, 0.000000;;, + 229;3; 0.000000, 0.592826,-0.000000;;, + 230;3;-0.000000, 0.592826,-0.000000;;, + 231;3; 0.000000, 0.592826,-0.000000;;, + 232;3; 0.000000, 0.592826, 0.000000;;, + 233;3;-0.000000, 0.592826, 0.000000;;, + 234;3; 0.000000, 0.592826, 0.000000;;, + 235;3; 0.000000, 0.592826,-0.000000;;, + 236;3; 0.000000, 0.592826,-0.000000;;, + 237;3;-0.000000, 0.592826,-0.000000;;, + 238;3; 0.000000, 0.592826, 0.000000;;, + 239;3;-0.000000, 0.592826,-0.000000;;, + 240;3;-0.000000, 0.592826,-0.000000;;, + 241;3;-0.000000, 0.592826,-0.000000;;, + 242;3;-0.000000, 0.592826,-0.000000;;, + 243;3;-0.000000, 0.592826,-0.000000;;, + 244;3;-0.000000, 0.592826,-0.000000;;, + 245;3;-0.000000, 0.592826,-0.000000;;, + 246;3;-0.000000, 0.592826,-0.000000;;, + 247;3;-0.000000, 0.592826,-0.000000;;, + 248;3;-0.000000, 0.592826,-0.000000;;, + 249;3;-0.000000, 0.592826,-0.000000;;; + } + } + Animation { + {Armature_Bone_023} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 1;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 2;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 3;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 4;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 5;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 6;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 7;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 8;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 9;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 10;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 11;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 12;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 13;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 14;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 15;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 16;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 17;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 18;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 19;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 20;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 21;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 22;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 23;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 24;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 25;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 26;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 27;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 28;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 29;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 30;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 31;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 32;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 33;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 34;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 35;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 36;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 37;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 38;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 39;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 40;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 41;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 42;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 43;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 44;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 45;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 46;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 47;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 48;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 49;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 50;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 51;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 52;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 53;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 54;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 55;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 56;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 57;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 58;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 59;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 60;4;-0.987429,-0.157259, 0.000184,-0.000183;;, + 61;4;-0.986807,-0.158733, 0.000741,-0.000734;;, + 62;4;-0.985765,-0.161200, 0.001672,-0.001656;;, + 63;4;-0.984303,-0.164666, 0.002980,-0.002952;;, + 64;4;-0.982419,-0.169130, 0.004664,-0.004621;;, + 65;4;-0.980116,-0.174587, 0.006723,-0.006661;;, + 66;4;-0.977398,-0.181026, 0.009153,-0.009068;;, + 67;4;-0.974273,-0.188429, 0.011947,-0.011836;;, + 68;4;-0.970752,-0.196773, 0.015096,-0.014955;;, + 69;4;-0.966848,-0.206023, 0.018587,-0.018414;;, + 70;4;-0.962579,-0.216138, 0.022404,-0.022195;;, + 71;4;-0.957966,-0.227068, 0.026528,-0.026282;;, + 72;4;-0.953034,-0.238753, 0.030938,-0.030650;;, + 73;4;-0.947813,-0.251124, 0.035606,-0.035275;;, + 74;4;-0.942335,-0.264104, 0.040505,-0.040128;;, + 75;4;-0.936637,-0.277605, 0.045600,-0.045175;;, + 76;4;-0.930758,-0.291534, 0.050856,-0.050383;;, + 77;4;-0.924742,-0.305790, 0.056236,-0.055712;;, + 78;4;-0.918632,-0.320267, 0.061699,-0.061125;;, + 79;4;-0.912475,-0.334855, 0.067204,-0.066579;;, + 80;4;-0.906318,-0.349444, 0.072709,-0.072033;;, + 81;4;-0.900208,-0.363921, 0.078173,-0.077445;;, + 82;4;-0.894191,-0.378177, 0.083552,-0.082775;;, + 83;4;-0.888312,-0.392106, 0.088809,-0.087982;;, + 84;4;-0.882614,-0.405607, 0.093904,-0.093030;;, + 85;4;-0.877136,-0.418587, 0.098802,-0.097882;;, + 86;4;-0.871915,-0.430958, 0.103470,-0.102507;;, + 87;4;-0.866983,-0.442643, 0.107880,-0.106876;;, + 88;4;-0.862370,-0.453573, 0.112005,-0.110962;;, + 89;4;-0.858101,-0.463688, 0.115822,-0.114744;;, + 90;4;-0.854197,-0.472938, 0.119312,-0.118202;;, + 91;4;-0.850676,-0.481282, 0.122461,-0.121321;;, + 92;4;-0.847551,-0.488685, 0.125255,-0.124089;;, + 93;4;-0.844834,-0.495124, 0.127685,-0.126497;;, + 94;4;-0.842531,-0.500581, 0.129744,-0.128537;;, + 95;4;-0.840647,-0.505045, 0.131429,-0.130206;;, + 96;4;-0.839184,-0.508511, 0.132736,-0.131501;;, + 97;4;-0.838143,-0.510978, 0.133668,-0.132424;;, + 98;4;-0.837521,-0.512452, 0.134224,-0.132975;;, + 99;4;-0.837314,-0.512941, 0.134408,-0.133158;;, + 100;4;-0.838389,-0.510157, 0.133209,-0.132212;;, + 101;4;-0.841728,-0.501509, 0.129484,-0.129275;;, + 102;4;-0.847399,-0.486818, 0.123155,-0.124285;;, + 103;4;-0.855259,-0.466458, 0.114385,-0.117371;;, + 104;4;-0.864882,-0.441532, 0.103647,-0.108905;;, + 105;4;-0.875587,-0.413802, 0.091702,-0.099487;;, + 106;4;-0.886586,-0.385312, 0.079429,-0.089811;;, + 107;4;-0.897168,-0.357900, 0.067621,-0.080501;;, + 108;4;-0.906828,-0.332878, 0.056843,-0.072003;;, + 109;4;-0.915278,-0.310990, 0.047414,-0.064569;;, + 110;4;-0.923728,-0.289102, 0.037985,-0.057135;;, + 111;4;-0.933387,-0.264081, 0.027207,-0.048637;;, + 112;4;-0.943970,-0.236668, 0.015398,-0.039327;;, + 113;4;-0.954968,-0.208178, 0.003126,-0.029651;;, + 114;4;-0.965673,-0.180448,-0.008820,-0.020233;;, + 115;4;-0.975296,-0.155522,-0.019557,-0.011767;;, + 116;4;-0.983156,-0.135162,-0.028328,-0.004852;;, + 117;4;-0.988828,-0.120471,-0.034656, 0.000137;;, + 118;4;-0.992166,-0.111823,-0.038381, 0.003074;;, + 119;4;-0.993241,-0.109039,-0.039581, 0.004020;;, + 120;4;-0.992166,-0.111823,-0.038381, 0.003074;;, + 121;4;-0.988828,-0.120471,-0.034656, 0.000137;;, + 122;4;-0.983156,-0.135162,-0.028328,-0.004852;;, + 123;4;-0.975296,-0.155522,-0.019557,-0.011767;;, + 124;4;-0.965674,-0.180448,-0.008820,-0.020233;;, + 125;4;-0.954968,-0.208178, 0.003126,-0.029651;;, + 126;4;-0.943970,-0.236668, 0.015398,-0.039327;;, + 127;4;-0.933387,-0.264081, 0.027207,-0.048637;;, + 128;4;-0.923728,-0.289102, 0.037985,-0.057135;;, + 129;4;-0.915278,-0.310990, 0.047414,-0.064569;;, + 130;4;-0.906828,-0.332878, 0.056843,-0.072003;;, + 131;4;-0.897168,-0.357900, 0.067621,-0.080501;;, + 132;4;-0.886586,-0.385312, 0.079429,-0.089811;;, + 133;4;-0.875587,-0.413802, 0.091702,-0.099487;;, + 134;4;-0.864882,-0.441532, 0.103647,-0.108905;;, + 135;4;-0.855259,-0.466458, 0.114385,-0.117371;;, + 136;4;-0.847399,-0.486818, 0.123155,-0.124285;;, + 137;4;-0.841728,-0.501509, 0.129484,-0.129275;;, + 138;4;-0.838389,-0.510157, 0.133209,-0.132212;;, + 139;4;-0.837314,-0.512941, 0.134408,-0.133158;;, + 140;4;-0.841728,-0.501509, 0.129484,-0.129275;;, + 141;4;-0.855259,-0.466458, 0.114385,-0.117371;;, + 142;4;-0.875587,-0.413802, 0.091702,-0.099487;;, + 143;4;-0.897168,-0.357900, 0.067621,-0.080501;;, + 144;4;-0.915278,-0.310990, 0.047414,-0.064569;;, + 145;4;-0.933387,-0.264081, 0.027207,-0.048637;;, + 146;4;-0.954968,-0.208178, 0.003126,-0.029651;;, + 147;4;-0.975296,-0.155522,-0.019557,-0.011767;;, + 148;4;-0.988828,-0.120471,-0.034656, 0.000137;;, + 149;4;-0.993241,-0.109039,-0.039581, 0.004020;;, + 150;4;-0.988828,-0.120471,-0.034656, 0.000137;;, + 151;4;-0.975296,-0.155522,-0.019557,-0.011767;;, + 152;4;-0.954968,-0.208178, 0.003126,-0.029651;;, + 153;4;-0.933387,-0.264081, 0.027207,-0.048637;;, + 154;4;-0.915278,-0.310990, 0.047414,-0.064569;;, + 155;4;-0.897168,-0.357900, 0.067621,-0.080501;;, + 156;4;-0.875587,-0.413802, 0.091702,-0.099487;;, + 157;4;-0.855259,-0.466458, 0.114385,-0.117371;;, + 158;4;-0.841728,-0.501509, 0.129484,-0.129275;;, + 159;4;-0.837314,-0.512941, 0.134408,-0.133158;;, + 160;4;-0.838143,-0.510978, 0.133668,-0.132424;;, + 161;4;-0.840647,-0.505045, 0.131429,-0.130206;;, + 162;4;-0.844834,-0.495124, 0.127685,-0.126497;;, + 163;4;-0.850676,-0.481282, 0.122461,-0.121321;;, + 164;4;-0.858101,-0.463688, 0.115822,-0.114744;;, + 165;4;-0.866983,-0.442643, 0.107880,-0.106876;;, + 166;4;-0.877136,-0.418587, 0.098802,-0.097882;;, + 167;4;-0.888312,-0.392106, 0.088809,-0.087982;;, + 168;4;-0.900208,-0.363921, 0.078173,-0.077445;;, + 169;4;-0.912475,-0.334855, 0.067204,-0.066579;;, + 170;4;-0.924742,-0.305790, 0.056236,-0.055712;;, + 171;4;-0.936637,-0.277605, 0.045600,-0.045175;;, + 172;4;-0.947813,-0.251124, 0.035606,-0.035275;;, + 173;4;-0.957966,-0.227068, 0.026528,-0.026281;;, + 174;4;-0.966848,-0.206023, 0.018587,-0.018414;;, + 175;4;-0.974273,-0.188429, 0.011947,-0.011836;;, + 176;4;-0.980116,-0.174587, 0.006723,-0.006661;;, + 177;4;-0.984303,-0.164666, 0.002980,-0.002952;;, + 178;4;-0.986807,-0.158733, 0.000741,-0.000734;;, + 179;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 180;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 181;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 182;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 183;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 184;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 185;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 186;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 187;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 188;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 189;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 190;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 191;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 192;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 193;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 194;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 195;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 196;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 197;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 198;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 199;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 200;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 201;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 202;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 203;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 204;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 205;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 206;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 207;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 208;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 209;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 210;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 211;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 212;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 213;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 214;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 215;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 216;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 217;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 218;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 219;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 220;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 221;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 222;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 223;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 224;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 225;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 226;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 227;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 228;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 229;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 230;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 231;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 232;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 233;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 234;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 235;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 236;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 237;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 238;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 239;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 240;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 241;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 242;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 243;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 244;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 245;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 246;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 247;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 248;4;-0.987635,-0.156770,-0.000000,-0.000000;;, + 249;4;-0.987635,-0.156770,-0.000000,-0.000000;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3;-0.000000, 1.294481,-0.000000;;, + 1;3; 0.000000, 1.294481,-0.000000;;, + 2;3; 0.000000, 1.294482,-0.000000;;, + 3;3;-0.000000, 1.294482,-0.000000;;, + 4;3; 0.000000, 1.294481, 0.000000;;, + 5;3; 0.000000, 1.294482,-0.000000;;, + 6;3;-0.000000, 1.294482, 0.000000;;, + 7;3; 0.000000, 1.294482,-0.000000;;, + 8;3;-0.000000, 1.294482,-0.000000;;, + 9;3;-0.000000, 1.294482,-0.000000;;, + 10;3; 0.000000, 1.294482,-0.000000;;, + 11;3;-0.000000, 1.294482, 0.000000;;, + 12;3;-0.000000, 1.294482,-0.000000;;, + 13;3; 0.000000, 1.294482,-0.000000;;, + 14;3;-0.000000, 1.294482,-0.000000;;, + 15;3;-0.000000, 1.294482,-0.000000;;, + 16;3;-0.000000, 1.294482,-0.000000;;, + 17;3;-0.000000, 1.294482, 0.000000;;, + 18;3;-0.000000, 1.294482, 0.000000;;, + 19;3; 0.000000, 1.294482,-0.000000;;, + 20;3;-0.000000, 1.294482,-0.000000;;, + 21;3; 0.000000, 1.294481, 0.000000;;, + 22;3; 0.000000, 1.294481, 0.000000;;, + 23;3;-0.000000, 1.294482,-0.000000;;, + 24;3; 0.000000, 1.294482, 0.000000;;, + 25;3;-0.000000, 1.294482, 0.000000;;, + 26;3; 0.000000, 1.294482,-0.000000;;, + 27;3;-0.000000, 1.294482, 0.000000;;, + 28;3; 0.000000, 1.294481, 0.000000;;, + 29;3;-0.000000, 1.294482,-0.000000;;, + 30;3; 0.000000, 1.294481,-0.000000;;, + 31;3; 0.000000, 1.294482,-0.000000;;, + 32;3; 0.000000, 1.294482,-0.000000;;, + 33;3; 0.000000, 1.294482, 0.000000;;, + 34;3;-0.000000, 1.294482, 0.000000;;, + 35;3;-0.000000, 1.294481, 0.000000;;, + 36;3;-0.000000, 1.294482,-0.000000;;, + 37;3;-0.000000, 1.294482,-0.000000;;, + 38;3;-0.000000, 1.294482,-0.000000;;, + 39;3;-0.000000, 1.294482, 0.000000;;, + 40;3; 0.000000, 1.294481,-0.000000;;, + 41;3; 0.000000, 1.294481, 0.000000;;, + 42;3; 0.000000, 1.294481,-0.000000;;, + 43;3; 0.000000, 1.294481, 0.000000;;, + 44;3; 0.000000, 1.294482,-0.000000;;, + 45;3;-0.000000, 1.294482,-0.000000;;, + 46;3;-0.000000, 1.294481,-0.000000;;, + 47;3;-0.000000, 1.294482,-0.000000;;, + 48;3; 0.000000, 1.294482,-0.000000;;, + 49;3;-0.000000, 1.294482, 0.000000;;, + 50;3; 0.000000, 1.294481,-0.000000;;, + 51;3;-0.000000, 1.294482,-0.000000;;, + 52;3;-0.000000, 1.294482, 0.000000;;, + 53;3; 0.000000, 1.294481,-0.000000;;, + 54;3; 0.000000, 1.294482,-0.000000;;, + 55;3; 0.000000, 1.294482, 0.000000;;, + 56;3;-0.000000, 1.294482,-0.000000;;, + 57;3; 0.000000, 1.294481,-0.000000;;, + 58;3;-0.000000, 1.294482,-0.000000;;, + 59;3;-0.000000, 1.294481,-0.000000;;, + 60;3;-0.000000, 1.294481,-0.000000;;, + 61;3;-0.000000, 1.294482, 0.000000;;, + 62;3; 0.000000, 1.294481,-0.000000;;, + 63;3;-0.000000, 1.294482,-0.000000;;, + 64;3;-0.000000, 1.294482,-0.000000;;, + 65;3; 0.000000, 1.294482,-0.000000;;, + 66;3; 0.000000, 1.294482,-0.000000;;, + 67;3;-0.000000, 1.294482,-0.000000;;, + 68;3;-0.000000, 1.294482, 0.000000;;, + 69;3;-0.000000, 1.294482,-0.000000;;, + 70;3; 0.000000, 1.294482, 0.000000;;, + 71;3; 0.000000, 1.294481, 0.000000;;, + 72;3; 0.000000, 1.294481,-0.000000;;, + 73;3;-0.000000, 1.294482, 0.000000;;, + 74;3;-0.000000, 1.294481, 0.000000;;, + 75;3;-0.000000, 1.294482,-0.000000;;, + 76;3;-0.000000, 1.294482, 0.000000;;, + 77;3; 0.000000, 1.294482,-0.000000;;, + 78;3; 0.000000, 1.294481,-0.000000;;, + 79;3; 0.000000, 1.294482, 0.000000;;, + 80;3;-0.000000, 1.294482,-0.000000;;, + 81;3;-0.000000, 1.294481,-0.000000;;, + 82;3;-0.000000, 1.294482,-0.000000;;, + 83;3;-0.000000, 1.294481,-0.000000;;, + 84;3;-0.000000, 1.294482, 0.000000;;, + 85;3;-0.000000, 1.294482,-0.000000;;, + 86;3;-0.000000, 1.294482,-0.000000;;, + 87;3;-0.000000, 1.294482,-0.000000;;, + 88;3; 0.000000, 1.294482,-0.000000;;, + 89;3;-0.000000, 1.294481,-0.000000;;, + 90;3;-0.000000, 1.294481,-0.000000;;, + 91;3; 0.000000, 1.294482,-0.000000;;, + 92;3;-0.000000, 1.294481,-0.000000;;, + 93;3;-0.000000, 1.294482,-0.000000;;, + 94;3; 0.000000, 1.294482, 0.000000;;, + 95;3;-0.000000, 1.294482, 0.000000;;, + 96;3;-0.000000, 1.294482,-0.000000;;, + 97;3;-0.000000, 1.294481,-0.000000;;, + 98;3;-0.000000, 1.294482,-0.000000;;, + 99;3; 0.000000, 1.294481,-0.000000;;, + 100;3;-0.000000, 1.294482,-0.000000;;, + 101;3; 0.000000, 1.294482,-0.000000;;, + 102;3; 0.000000, 1.294481, 0.000000;;, + 103;3;-0.000000, 1.294482,-0.000000;;, + 104;3;-0.000000, 1.294482,-0.000000;;, + 105;3; 0.000000, 1.294481, 0.000000;;, + 106;3; 0.000000, 1.294482, 0.000000;;, + 107;3; 0.000000, 1.294482,-0.000000;;, + 108;3;-0.000000, 1.294482, 0.000000;;, + 109;3; 0.000000, 1.294481, 0.000000;;, + 110;3; 0.000000, 1.294482,-0.000000;;, + 111;3; 0.000000, 1.294482, 0.000000;;, + 112;3;-0.000000, 1.294482, 0.000000;;, + 113;3;-0.000000, 1.294481, 0.000000;;, + 114;3; 0.000000, 1.294481,-0.000000;;, + 115;3;-0.000000, 1.294481, 0.000000;;, + 116;3; 0.000000, 1.294482,-0.000000;;, + 117;3;-0.000000, 1.294482, 0.000000;;, + 118;3; 0.000000, 1.294482,-0.000000;;, + 119;3;-0.000000, 1.294481, 0.000000;;, + 120;3; 0.000000, 1.294482, 0.000000;;, + 121;3; 0.000000, 1.294482, 0.000000;;, + 122;3;-0.000000, 1.294482, 0.000000;;, + 123;3; 0.000000, 1.294482,-0.000000;;, + 124;3;-0.000000, 1.294482,-0.000000;;, + 125;3; 0.000000, 1.294482,-0.000000;;, + 126;3;-0.000000, 1.294482,-0.000000;;, + 127;3;-0.000000, 1.294482,-0.000000;;, + 128;3; 0.000000, 1.294482, 0.000000;;, + 129;3; 0.000000, 1.294481,-0.000000;;, + 130;3; 0.000000, 1.294482,-0.000000;;, + 131;3;-0.000000, 1.294482, 0.000000;;, + 132;3; 0.000000, 1.294482,-0.000000;;, + 133;3;-0.000000, 1.294482, 0.000000;;, + 134;3;-0.000000, 1.294481, 0.000000;;, + 135;3;-0.000000, 1.294482, 0.000000;;, + 136;3;-0.000000, 1.294481,-0.000000;;, + 137;3;-0.000000, 1.294482, 0.000000;;, + 138;3; 0.000000, 1.294482, 0.000000;;, + 139;3; 0.000000, 1.294481,-0.000000;;, + 140;3;-0.000000, 1.294481,-0.000000;;, + 141;3;-0.000000, 1.294482, 0.000000;;, + 142;3; 0.000000, 1.294482, 0.000000;;, + 143;3;-0.000000, 1.294482,-0.000000;;, + 144;3; 0.000000, 1.294481, 0.000000;;, + 145;3; 0.000000, 1.294482, 0.000000;;, + 146;3;-0.000000, 1.294481, 0.000000;;, + 147;3;-0.000000, 1.294481, 0.000000;;, + 148;3;-0.000000, 1.294482, 0.000000;;, + 149;3;-0.000000, 1.294481, 0.000000;;, + 150;3; 0.000000, 1.294482, 0.000000;;, + 151;3; 0.000000, 1.294482,-0.000000;;, + 152;3; 0.000000, 1.294482,-0.000000;;, + 153;3;-0.000000, 1.294482,-0.000000;;, + 154;3; 0.000000, 1.294481,-0.000000;;, + 155;3; 0.000000, 1.294482, 0.000000;;, + 156;3; 0.000000, 1.294481,-0.000000;;, + 157;3;-0.000000, 1.294482,-0.000000;;, + 158;3; 0.000000, 1.294482, 0.000000;;, + 159;3; 0.000000, 1.294481,-0.000000;;, + 160;3;-0.000000, 1.294482,-0.000000;;, + 161;3;-0.000000, 1.294482,-0.000000;;, + 162;3; 0.000000, 1.294482,-0.000000;;, + 163;3;-0.000000, 1.294482, 0.000000;;, + 164;3;-0.000000, 1.294482, 0.000000;;, + 165;3; 0.000000, 1.294482,-0.000000;;, + 166;3; 0.000000, 1.294482,-0.000000;;, + 167;3; 0.000000, 1.294481,-0.000000;;, + 168;3;-0.000000, 1.294482,-0.000000;;, + 169;3;-0.000000, 1.294481, 0.000000;;, + 170;3;-0.000000, 1.294481,-0.000000;;, + 171;3;-0.000000, 1.294481, 0.000000;;, + 172;3;-0.000000, 1.294481,-0.000000;;, + 173;3;-0.000000, 1.294482, 0.000000;;, + 174;3;-0.000000, 1.294482,-0.000000;;, + 175;3; 0.000000, 1.294481,-0.000000;;, + 176;3; 0.000000, 1.294481,-0.000000;;, + 177;3; 0.000000, 1.294482, 0.000000;;, + 178;3; 0.000000, 1.294482, 0.000000;;, + 179;3;-0.000000, 1.294481,-0.000000;;, + 180;3;-0.000000, 1.294482,-0.000000;;, + 181;3; 0.000000, 1.294482,-0.000000;;, + 182;3;-0.000000, 1.294482,-0.000000;;, + 183;3;-0.000000, 1.294481,-0.000000;;, + 184;3; 0.000000, 1.294482,-0.000000;;, + 185;3; 0.000000, 1.294482, 0.000000;;, + 186;3; 0.000000, 1.294481, 0.000000;;, + 187;3; 0.000000, 1.294481, 0.000000;;, + 188;3; 0.000000, 1.294482,-0.000000;;, + 189;3; 0.000000, 1.294482,-0.000000;;, + 190;3; 0.000000, 1.294482, 0.000000;;, + 191;3;-0.000000, 1.294481, 0.000000;;, + 192;3;-0.000000, 1.294482, 0.000000;;, + 193;3; 0.000000, 1.294481,-0.000000;;, + 194;3;-0.000000, 1.294482, 0.000000;;, + 195;3; 0.000000, 1.294481,-0.000000;;, + 196;3;-0.000000, 1.294482, 0.000000;;, + 197;3;-0.000000, 1.294482, 0.000000;;, + 198;3; 0.000000, 1.294481, 0.000000;;, + 199;3;-0.000000, 1.294481,-0.000000;;, + 200;3;-0.000000, 1.294481,-0.000000;;, + 201;3;-0.000000, 1.294481,-0.000000;;, + 202;3;-0.000000, 1.294481,-0.000000;;, + 203;3;-0.000000, 1.294481,-0.000000;;, + 204;3;-0.000000, 1.294481,-0.000000;;, + 205;3;-0.000000, 1.294481,-0.000000;;, + 206;3;-0.000000, 1.294481,-0.000000;;, + 207;3;-0.000000, 1.294481,-0.000000;;, + 208;3;-0.000000, 1.294481,-0.000000;;, + 209;3;-0.000000, 1.294481,-0.000000;;, + 210;3; 0.000000, 1.294482, 0.000000;;, + 211;3;-0.000000, 1.294482,-0.000000;;, + 212;3;-0.000000, 1.294482, 0.000000;;, + 213;3;-0.000000, 1.294481,-0.000000;;, + 214;3;-0.000000, 1.294482,-0.000000;;, + 215;3; 0.000000, 1.294481,-0.000000;;, + 216;3;-0.000000, 1.294481,-0.000000;;, + 217;3;-0.000000, 1.294481,-0.000000;;, + 218;3;-0.000000, 1.294482, 0.000000;;, + 219;3; 0.000000, 1.294481,-0.000000;;, + 220;3; 0.000000, 1.294482, 0.000000;;, + 221;3; 0.000000, 1.294482,-0.000000;;, + 222;3;-0.000000, 1.294481,-0.000000;;, + 223;3;-0.000000, 1.294482,-0.000000;;, + 224;3; 0.000000, 1.294482,-0.000000;;, + 225;3;-0.000000, 1.294482, 0.000000;;, + 226;3;-0.000000, 1.294482,-0.000000;;, + 227;3;-0.000000, 1.294482,-0.000000;;, + 228;3;-0.000000, 1.294482, 0.000000;;, + 229;3;-0.000000, 1.294481,-0.000000;;, + 230;3;-0.000000, 1.294482,-0.000000;;, + 231;3;-0.000000, 1.294481,-0.000000;;, + 232;3; 0.000000, 1.294481, 0.000000;;, + 233;3; 0.000000, 1.294482,-0.000000;;, + 234;3;-0.000000, 1.294482,-0.000000;;, + 235;3;-0.000000, 1.294482, 0.000000;;, + 236;3; 0.000000, 1.294482, 0.000000;;, + 237;3;-0.000000, 1.294482,-0.000000;;, + 238;3;-0.000000, 1.294482,-0.000000;;, + 239;3;-0.000000, 1.294481,-0.000000;;, + 240;3;-0.000000, 1.294481,-0.000000;;, + 241;3;-0.000000, 1.294481,-0.000000;;, + 242;3;-0.000000, 1.294481,-0.000000;;, + 243;3;-0.000000, 1.294481,-0.000000;;, + 244;3;-0.000000, 1.294481,-0.000000;;, + 245;3;-0.000000, 1.294481,-0.000000;;, + 246;3;-0.000000, 1.294481,-0.000000;;, + 247;3;-0.000000, 1.294481,-0.000000;;, + 248;3;-0.000000, 1.294481,-0.000000;;, + 249;3;-0.000000, 1.294481,-0.000000;;; + } + } + Animation { + {Armature_Bone_027} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 1;4;-0.967903,-0.251025, 0.000767, 0.000246;;, + 2;4;-0.968074,-0.249465, 0.003085, 0.000990;;, + 3;4;-0.968359,-0.246858, 0.006959, 0.002233;;, + 4;4;-0.968757,-0.243225, 0.012357, 0.003965;;, + 5;4;-0.969261,-0.238621, 0.019200, 0.006160;;, + 6;4;-0.969861,-0.233136, 0.027349, 0.008775;;, + 7;4;-0.970543,-0.226905, 0.036609, 0.011746;;, + 8;4;-0.971287,-0.220103, 0.046716, 0.014989;;, + 9;4;-0.972071,-0.212942, 0.057358, 0.018403;;, + 10;4;-0.972868,-0.205658, 0.068181, 0.021876;;, + 11;4;-0.973652,-0.198497, 0.078823, 0.025290;;, + 12;4;-0.974396,-0.191695, 0.088930, 0.028533;;, + 13;4;-0.975078,-0.185464, 0.098189, 0.031504;;, + 14;4;-0.975678,-0.179979, 0.106339, 0.034119;;, + 15;4;-0.976182,-0.175375, 0.113181, 0.036314;;, + 16;4;-0.976580,-0.171742, 0.118579, 0.038046;;, + 17;4;-0.976865,-0.169135, 0.122454, 0.039289;;, + 18;4;-0.977036,-0.167575, 0.124772, 0.040033;;, + 19;4;-0.977092,-0.167059, 0.125539, 0.040279;;, + 20;4;-0.977082,-0.167170, 0.125326, 0.040211;;, + 21;4;-0.977050,-0.167511, 0.124674, 0.040002;;, + 22;4;-0.976996,-0.168095, 0.123564, 0.039646;;, + 23;4;-0.976919,-0.168931, 0.121986, 0.039139;;, + 24;4;-0.976816,-0.170022, 0.119935, 0.038481;;, + 25;4;-0.976690,-0.171370, 0.117420, 0.037674;;, + 26;4;-0.976538,-0.172967, 0.114460, 0.036725;;, + 27;4;-0.976364,-0.174800, 0.111091, 0.035644;;, + 28;4;-0.976168,-0.176846, 0.107365, 0.034448;;, + 29;4;-0.975953,-0.179075, 0.103344, 0.033158;;, + 30;4;-0.975721,-0.181452, 0.099104, 0.031798;;, + 31;4;-0.975477,-0.183936, 0.094725, 0.030393;;, + 32;4;-0.975224,-0.186488, 0.090288, 0.028969;;, + 33;4;-0.974965,-0.189067, 0.085870, 0.027551;;, + 34;4;-0.974705,-0.191637, 0.081538, 0.026162;;, + 35;4;-0.974445,-0.194167, 0.077350, 0.024818;;, + 36;4;-0.974189,-0.196632, 0.073350, 0.023534;;, + 37;4;-0.973938,-0.199011, 0.069573, 0.022322;;, + 38;4;-0.973695,-0.201290, 0.066041, 0.021189;;, + 39;4;-0.973459,-0.203460, 0.062769, 0.020140;;, + 40;4;-0.973221,-0.205651, 0.059498, 0.019090;;, + 41;4;-0.972969,-0.208000, 0.055966, 0.017957;;, + 42;4;-0.972702,-0.210502, 0.052189, 0.016745;;, + 43;4;-0.972422,-0.213147, 0.048189, 0.015462;;, + 44;4;-0.972130,-0.215920, 0.044001, 0.014118;;, + 45;4;-0.971826,-0.218801, 0.039669, 0.012728;;, + 46;4;-0.971513,-0.221762, 0.035251, 0.011310;;, + 47;4;-0.971193,-0.224770, 0.030814, 0.009887;;, + 48;4;-0.970868,-0.227785, 0.026435, 0.008482;;, + 49;4;-0.970543,-0.230765, 0.022195, 0.007121;;, + 50;4;-0.970221,-0.233667, 0.018174, 0.005831;;, + 51;4;-0.969904,-0.236450, 0.014447, 0.004636;;, + 52;4;-0.969597,-0.239078, 0.011079, 0.003555;;, + 53;4;-0.969301,-0.241521, 0.008119, 0.002605;;, + 54;4;-0.969019,-0.243757, 0.005604, 0.001798;;, + 55;4;-0.968752,-0.245771, 0.003553, 0.001140;;, + 56;4;-0.968501,-0.247556, 0.001975, 0.000634;;, + 57;4;-0.968266,-0.249110, 0.000865, 0.000278;;, + 58;4;-0.968048,-0.250436, 0.000213, 0.000068;;, + 59;4;-0.967847,-0.251541,-0.000000, 0.000000;;, + 60;4;-0.967654,-0.252526, 0.000017, 0.000006;;, + 61;4;-0.967462,-0.253486, 0.000070, 0.000023;;, + 62;4;-0.967272,-0.254420, 0.000158, 0.000051;;, + 63;4;-0.967084,-0.255326, 0.000282, 0.000091;;, + 64;4;-0.966898,-0.256202, 0.000442, 0.000142;;, + 65;4;-0.966714,-0.257049, 0.000637, 0.000204;;, + 66;4;-0.966533,-0.257864, 0.000867, 0.000278;;, + 67;4;-0.966355,-0.258645, 0.001132, 0.000363;;, + 68;4;-0.966181,-0.259393, 0.001431, 0.000459;;, + 69;4;-0.966010,-0.260106, 0.001762, 0.000565;;, + 70;4;-0.965843,-0.260783, 0.002123, 0.000681;;, + 71;4;-0.965680,-0.261422, 0.002514, 0.000807;;, + 72;4;-0.965523,-0.262024, 0.002932, 0.000941;;, + 73;4;-0.965370,-0.262588, 0.003375, 0.001083;;, + 74;4;-0.965222,-0.263113, 0.003839, 0.001232;;, + 75;4;-0.965080,-0.263599, 0.004322, 0.001387;;, + 76;4;-0.964944,-0.264048, 0.004820, 0.001547;;, + 77;4;-0.964815,-0.264458, 0.005330, 0.001710;;, + 78;4;-0.964691,-0.264831, 0.005848, 0.001876;;, + 79;4;-0.964575,-0.265168, 0.006370, 0.002044;;, + 80;4;-0.964465,-0.265470, 0.006891, 0.002211;;, + 81;4;-0.964362,-0.265739, 0.007409, 0.002377;;, + 82;4;-0.964266,-0.265976, 0.007919, 0.002541;;, + 83;4;-0.964177,-0.266183, 0.008417, 0.002701;;, + 84;4;-0.964095,-0.266362, 0.008900, 0.002856;;, + 85;4;-0.964019,-0.266516, 0.009364, 0.003005;;, + 86;4;-0.963951,-0.266646, 0.009807, 0.003147;;, + 87;4;-0.963889,-0.266754, 0.010225, 0.003281;;, + 88;4;-0.963833,-0.266844, 0.010616, 0.003406;;, + 89;4;-0.963783,-0.266916, 0.010978, 0.003522;;, + 90;4;-0.963740,-0.266974, 0.011308, 0.003628;;, + 91;4;-0.963702,-0.267018, 0.011607, 0.003724;;, + 92;4;-0.963669,-0.267052, 0.011872, 0.003809;;, + 93;4;-0.963642,-0.267076, 0.012102, 0.003883;;, + 94;4;-0.963619,-0.267093, 0.012297, 0.003946;;, + 95;4;-0.963602,-0.267104, 0.012457, 0.003997;;, + 96;4;-0.963588,-0.267111, 0.012581, 0.004037;;, + 97;4;-0.963579,-0.267114, 0.012669, 0.004065;;, + 98;4;-0.963574,-0.267115, 0.012722, 0.004082;;, + 99;4;-0.963572,-0.267115, 0.012739, 0.004087;;, + 100;4;-0.963730,-0.266134, 0.011959, 0.003837;;, + 101;4;-0.964222,-0.263088, 0.009536, 0.003060;;, + 102;4;-0.965058,-0.257914, 0.005419, 0.001739;;, + 103;4;-0.966217,-0.250742,-0.000286,-0.000092;;, + 104;4;-0.967635,-0.241963,-0.007271,-0.002333;;, + 105;4;-0.969212,-0.232195,-0.015042,-0.004826;;, + 106;4;-0.970833,-0.222160,-0.023026,-0.007388;;, + 107;4;-0.972393,-0.212505,-0.030708,-0.009853;;, + 108;4;-0.973817,-0.203692,-0.037719,-0.012102;;, + 109;4;-0.975062,-0.195982,-0.043853,-0.014070;;, + 110;4;-0.976307,-0.188272,-0.049987,-0.016038;;, + 111;4;-0.977731,-0.179459,-0.056998,-0.018288;;, + 112;4;-0.979291,-0.169804,-0.064680,-0.020753;;, + 113;4;-0.980911,-0.159769,-0.072664,-0.023314;;, + 114;4;-0.982489,-0.150002,-0.080434,-0.025807;;, + 115;4;-0.983907,-0.141222,-0.087419,-0.028049;;, + 116;4;-0.985066,-0.134050,-0.093125,-0.029879;;, + 117;4;-0.985902,-0.128876,-0.097241,-0.031200;;, + 118;4;-0.986394,-0.125830,-0.099665,-0.031978;;, + 119;4;-0.986552,-0.124849,-0.100445,-0.032228;;, + 120;4;-0.986394,-0.125830,-0.099665,-0.031978;;, + 121;4;-0.985902,-0.128876,-0.097241,-0.031200;;, + 122;4;-0.985066,-0.134050,-0.093125,-0.029879;;, + 123;4;-0.983907,-0.141222,-0.087419,-0.028049;;, + 124;4;-0.982489,-0.150002,-0.080434,-0.025807;;, + 125;4;-0.980911,-0.159769,-0.072664,-0.023314;;, + 126;4;-0.979291,-0.169804,-0.064680,-0.020753;;, + 127;4;-0.977731,-0.179459,-0.056998,-0.018288;;, + 128;4;-0.976307,-0.188272,-0.049987,-0.016038;;, + 129;4;-0.975062,-0.195982,-0.043853,-0.014070;;, + 130;4;-0.973817,-0.203692,-0.037719,-0.012102;;, + 131;4;-0.972393,-0.212505,-0.030708,-0.009853;;, + 132;4;-0.970833,-0.222160,-0.023026,-0.007388;;, + 133;4;-0.969213,-0.232195,-0.015042,-0.004826;;, + 134;4;-0.967635,-0.241963,-0.007271,-0.002333;;, + 135;4;-0.966217,-0.250742,-0.000286,-0.000092;;, + 136;4;-0.965058,-0.257914, 0.005419, 0.001739;;, + 137;4;-0.964222,-0.263088, 0.009536, 0.003060;;, + 138;4;-0.963730,-0.266134, 0.011959, 0.003837;;, + 139;4;-0.963572,-0.267115, 0.012739, 0.004087;;, + 140;4;-0.964222,-0.263088, 0.009536, 0.003060;;, + 141;4;-0.966217,-0.250742,-0.000286,-0.000092;;, + 142;4;-0.969212,-0.232195,-0.015042,-0.004826;;, + 143;4;-0.972393,-0.212505,-0.030708,-0.009853;;, + 144;4;-0.975062,-0.195982,-0.043853,-0.014070;;, + 145;4;-0.977731,-0.179459,-0.056998,-0.018288;;, + 146;4;-0.980911,-0.159769,-0.072664,-0.023314;;, + 147;4;-0.983907,-0.141222,-0.087419,-0.028049;;, + 148;4;-0.985902,-0.128876,-0.097241,-0.031200;;, + 149;4;-0.986552,-0.124849,-0.100445,-0.032228;;, + 150;4;-0.985902,-0.128876,-0.097241,-0.031200;;, + 151;4;-0.983907,-0.141222,-0.087419,-0.028049;;, + 152;4;-0.980911,-0.159769,-0.072664,-0.023314;;, + 153;4;-0.977731,-0.179459,-0.056998,-0.018288;;, + 154;4;-0.975062,-0.195982,-0.043853,-0.014070;;, + 155;4;-0.972393,-0.212505,-0.030708,-0.009853;;, + 156;4;-0.969213,-0.232195,-0.015042,-0.004826;;, + 157;4;-0.966217,-0.250742,-0.000286,-0.000092;;, + 158;4;-0.964222,-0.263088, 0.009536, 0.003060;;, + 159;4;-0.963572,-0.267115, 0.012739, 0.004087;;, + 160;4;-0.963596,-0.267029, 0.012669, 0.004065;;, + 161;4;-0.963667,-0.266770, 0.012457, 0.003997;;, + 162;4;-0.963786,-0.266336, 0.012102, 0.003883;;, + 163;4;-0.963952,-0.265731, 0.011607, 0.003724;;, + 164;4;-0.964163,-0.264961, 0.010978, 0.003522;;, + 165;4;-0.964416,-0.264041, 0.010225, 0.003281;;, + 166;4;-0.964704,-0.262989, 0.009364, 0.003005;;, + 167;4;-0.965022,-0.261831, 0.008417, 0.002701;;, + 168;4;-0.965360,-0.260599, 0.007409, 0.002377;;, + 169;4;-0.965709,-0.259328, 0.006370, 0.002044;;, + 170;4;-0.966058,-0.258057, 0.005330, 0.001710;;, + 171;4;-0.966396,-0.256825, 0.004322, 0.001387;;, + 172;4;-0.966714,-0.255667, 0.003375, 0.001083;;, + 173;4;-0.967003,-0.254615, 0.002514, 0.000807;;, + 174;4;-0.967256,-0.253695, 0.001762, 0.000565;;, + 175;4;-0.967467,-0.252925, 0.001132, 0.000363;;, + 176;4;-0.967633,-0.252320, 0.000637, 0.000204;;, + 177;4;-0.967752,-0.251886, 0.000282, 0.000091;;, + 178;4;-0.967823,-0.251627, 0.000070, 0.000023;;, + 179;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 180;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 181;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 182;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 183;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 184;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 185;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 186;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 187;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 188;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 189;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 190;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 191;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 192;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 193;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 194;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 195;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 196;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 197;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 198;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 199;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 200;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 201;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 202;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 203;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 204;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 205;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 206;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 207;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 208;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 209;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 210;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 211;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 212;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 213;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 214;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 215;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 216;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 217;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 218;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 219;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 220;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 221;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 222;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 223;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 224;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 225;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 226;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 227;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 228;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 229;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 230;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 231;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 232;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 233;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 234;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 235;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 236;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 237;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 238;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 239;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 240;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 241;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 242;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 243;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 244;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 245;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 246;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 247;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 248;4;-0.967847,-0.251541,-0.000000,-0.000000;;, + 249;4;-0.967847,-0.251541,-0.000000,-0.000000;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3;-0.000000, 1.228822,-0.000000;;, + 1;3;-0.000000, 1.228822,-0.000000;;, + 2;3; 0.000000, 1.228822,-0.000000;;, + 3;3;-0.000000, 1.228822,-0.000000;;, + 4;3; 0.000000, 1.228822, 0.000000;;, + 5;3;-0.000000, 1.228822,-0.000000;;, + 6;3;-0.000000, 1.228822,-0.000000;;, + 7;3; 0.000000, 1.228822,-0.000000;;, + 8;3; 0.000000, 1.228822, 0.000000;;, + 9;3; 0.000000, 1.228822,-0.000000;;, + 10;3; 0.000000, 1.228822,-0.000000;;, + 11;3;-0.000000, 1.228822, 0.000000;;, + 12;3; 0.000000, 1.228822,-0.000000;;, + 13;3; 0.000000, 1.228822, 0.000000;;, + 14;3; 0.000000, 1.228822,-0.000000;;, + 15;3;-0.000000, 1.228822,-0.000000;;, + 16;3; 0.000000, 1.228822,-0.000000;;, + 17;3; 0.000000, 1.228822,-0.000000;;, + 18;3; 0.000000, 1.228822,-0.000000;;, + 19;3;-0.000000, 1.228822, 0.000000;;, + 20;3;-0.000000, 1.228822, 0.000000;;, + 21;3;-0.000000, 1.228822, 0.000000;;, + 22;3;-0.000000, 1.228822,-0.000000;;, + 23;3;-0.000000, 1.228822, 0.000000;;, + 24;3;-0.000000, 1.228822,-0.000000;;, + 25;3;-0.000000, 1.228822,-0.000000;;, + 26;3; 0.000000, 1.228822, 0.000000;;, + 27;3; 0.000000, 1.228822,-0.000000;;, + 28;3; 0.000000, 1.228822, 0.000000;;, + 29;3;-0.000000, 1.228822, 0.000000;;, + 30;3; 0.000000, 1.228822, 0.000000;;, + 31;3; 0.000000, 1.228822, 0.000000;;, + 32;3; 0.000000, 1.228822,-0.000000;;, + 33;3; 0.000000, 1.228822,-0.000000;;, + 34;3; 0.000000, 1.228822,-0.000000;;, + 35;3;-0.000000, 1.228822, 0.000000;;, + 36;3;-0.000000, 1.228822, 0.000000;;, + 37;3; 0.000000, 1.228822, 0.000000;;, + 38;3;-0.000000, 1.228822,-0.000000;;, + 39;3; 0.000000, 1.228822, 0.000000;;, + 40;3;-0.000000, 1.228822, 0.000000;;, + 41;3; 0.000000, 1.228822,-0.000000;;, + 42;3; 0.000000, 1.228822, 0.000000;;, + 43;3; 0.000000, 1.228822, 0.000000;;, + 44;3; 0.000000, 1.228822, 0.000000;;, + 45;3; 0.000000, 1.228822, 0.000000;;, + 46;3;-0.000000, 1.228822,-0.000000;;, + 47;3; 0.000000, 1.228822, 0.000000;;, + 48;3; 0.000000, 1.228822, 0.000000;;, + 49;3;-0.000000, 1.228822, 0.000000;;, + 50;3; 0.000000, 1.228822, 0.000000;;, + 51;3;-0.000000, 1.228822,-0.000000;;, + 52;3; 0.000000, 1.228822, 0.000000;;, + 53;3;-0.000000, 1.228822, 0.000000;;, + 54;3;-0.000000, 1.228822,-0.000000;;, + 55;3;-0.000000, 1.228822,-0.000000;;, + 56;3; 0.000000, 1.228822,-0.000000;;, + 57;3; 0.000000, 1.228822,-0.000000;;, + 58;3; 0.000000, 1.228822,-0.000000;;, + 59;3;-0.000000, 1.228822,-0.000000;;, + 60;3; 0.000000, 1.228822, 0.000000;;, + 61;3;-0.000000, 1.228822, 0.000000;;, + 62;3; 0.000000, 1.228822,-0.000000;;, + 63;3; 0.000000, 1.228822,-0.000000;;, + 64;3;-0.000000, 1.228822, 0.000000;;, + 65;3; 0.000000, 1.228822,-0.000000;;, + 66;3;-0.000000, 1.228822, 0.000000;;, + 67;3; 0.000000, 1.228822, 0.000000;;, + 68;3; 0.000000, 1.228822, 0.000000;;, + 69;3; 0.000000, 1.228822,-0.000000;;, + 70;3; 0.000000, 1.228821, 0.000000;;, + 71;3; 0.000000, 1.228822, 0.000000;;, + 72;3;-0.000000, 1.228822,-0.000000;;, + 73;3;-0.000000, 1.228822,-0.000000;;, + 74;3; 0.000000, 1.228822,-0.000000;;, + 75;3; 0.000000, 1.228822,-0.000000;;, + 76;3; 0.000000, 1.228822, 0.000000;;, + 77;3;-0.000000, 1.228822,-0.000000;;, + 78;3; 0.000000, 1.228822, 0.000000;;, + 79;3; 0.000000, 1.228822,-0.000000;;, + 80;3; 0.000000, 1.228822,-0.000000;;, + 81;3; 0.000000, 1.228822,-0.000000;;, + 82;3; 0.000000, 1.228822, 0.000000;;, + 83;3;-0.000000, 1.228822, 0.000000;;, + 84;3; 0.000000, 1.228822,-0.000000;;, + 85;3; 0.000000, 1.228822,-0.000000;;, + 86;3;-0.000000, 1.228822,-0.000000;;, + 87;3; 0.000000, 1.228822, 0.000000;;, + 88;3;-0.000000, 1.228822, 0.000000;;, + 89;3;-0.000000, 1.228822,-0.000000;;, + 90;3;-0.000000, 1.228822, 0.000000;;, + 91;3; 0.000000, 1.228822, 0.000000;;, + 92;3; 0.000000, 1.228822, 0.000000;;, + 93;3; 0.000000, 1.228822,-0.000000;;, + 94;3;-0.000000, 1.228822, 0.000000;;, + 95;3; 0.000000, 1.228822,-0.000000;;, + 96;3;-0.000000, 1.228822, 0.000000;;, + 97;3;-0.000000, 1.228822,-0.000000;;, + 98;3; 0.000000, 1.228822,-0.000000;;, + 99;3;-0.000000, 1.228822,-0.000000;;, + 100;3;-0.000000, 1.228822, 0.000000;;, + 101;3; 0.000000, 1.228822,-0.000000;;, + 102;3;-0.000000, 1.228822, 0.000000;;, + 103;3;-0.000000, 1.228822, 0.000000;;, + 104;3;-0.000000, 1.228822, 0.000000;;, + 105;3; 0.000000, 1.228822,-0.000000;;, + 106;3; 0.000000, 1.228822, 0.000000;;, + 107;3; 0.000000, 1.228822,-0.000000;;, + 108;3;-0.000000, 1.228822, 0.000000;;, + 109;3; 0.000000, 1.228822, 0.000000;;, + 110;3; 0.000000, 1.228822,-0.000000;;, + 111;3; 0.000000, 1.228822,-0.000000;;, + 112;3;-0.000000, 1.228822,-0.000000;;, + 113;3;-0.000000, 1.228822,-0.000000;;, + 114;3; 0.000000, 1.228822,-0.000000;;, + 115;3;-0.000000, 1.228822,-0.000000;;, + 116;3;-0.000000, 1.228822, 0.000000;;, + 117;3; 0.000000, 1.228822,-0.000000;;, + 118;3;-0.000000, 1.228822, 0.000000;;, + 119;3;-0.000000, 1.228822,-0.000000;;, + 120;3;-0.000000, 1.228822, 0.000000;;, + 121;3; 0.000000, 1.228822, 0.000000;;, + 122;3;-0.000000, 1.228822, 0.000000;;, + 123;3; 0.000000, 1.228822,-0.000000;;, + 124;3; 0.000000, 1.228822, 0.000000;;, + 125;3;-0.000000, 1.228822,-0.000000;;, + 126;3; 0.000000, 1.228822, 0.000000;;, + 127;3; 0.000000, 1.228822,-0.000000;;, + 128;3; 0.000000, 1.228822,-0.000000;;, + 129;3; 0.000000, 1.228822, 0.000000;;, + 130;3; 0.000000, 1.228822, 0.000000;;, + 131;3; 0.000000, 1.228822,-0.000000;;, + 132;3; 0.000000, 1.228822, 0.000000;;, + 133;3; 0.000000, 1.228822, 0.000000;;, + 134;3;-0.000000, 1.228822, 0.000000;;, + 135;3; 0.000000, 1.228822,-0.000000;;, + 136;3;-0.000000, 1.228822,-0.000000;;, + 137;3; 0.000000, 1.228822, 0.000000;;, + 138;3; 0.000000, 1.228822,-0.000000;;, + 139;3;-0.000000, 1.228822,-0.000000;;, + 140;3; 0.000000, 1.228822, 0.000000;;, + 141;3;-0.000000, 1.228822, 0.000000;;, + 142;3; 0.000000, 1.228822,-0.000000;;, + 143;3; 0.000000, 1.228822, 0.000000;;, + 144;3; 0.000000, 1.228822, 0.000000;;, + 145;3; 0.000000, 1.228822,-0.000000;;, + 146;3;-0.000000, 1.228822,-0.000000;;, + 147;3;-0.000000, 1.228822,-0.000000;;, + 148;3; 0.000000, 1.228822,-0.000000;;, + 149;3;-0.000000, 1.228822,-0.000000;;, + 150;3; 0.000000, 1.228822, 0.000000;;, + 151;3; 0.000000, 1.228822,-0.000000;;, + 152;3;-0.000000, 1.228822,-0.000000;;, + 153;3; 0.000000, 1.228822,-0.000000;;, + 154;3; 0.000000, 1.228822, 0.000000;;, + 155;3; 0.000000, 1.228822, 0.000000;;, + 156;3; 0.000000, 1.228822, 0.000000;;, + 157;3; 0.000000, 1.228822,-0.000000;;, + 158;3;-0.000000, 1.228822, 0.000000;;, + 159;3;-0.000000, 1.228822,-0.000000;;, + 160;3;-0.000000, 1.228822,-0.000000;;, + 161;3; 0.000000, 1.228822, 0.000000;;, + 162;3; 0.000000, 1.228822,-0.000000;;, + 163;3; 0.000000, 1.228822,-0.000000;;, + 164;3; 0.000000, 1.228822,-0.000000;;, + 165;3; 0.000000, 1.228822, 0.000000;;, + 166;3; 0.000000, 1.228822, 0.000000;;, + 167;3;-0.000000, 1.228822, 0.000000;;, + 168;3; 0.000000, 1.228822, 0.000000;;, + 169;3;-0.000000, 1.228822, 0.000000;;, + 170;3; 0.000000, 1.228822, 0.000000;;, + 171;3; 0.000000, 1.228822, 0.000000;;, + 172;3;-0.000000, 1.228822,-0.000000;;, + 173;3;-0.000000, 1.228822, 0.000000;;, + 174;3;-0.000000, 1.228822,-0.000000;;, + 175;3; 0.000000, 1.228822, 0.000000;;, + 176;3;-0.000000, 1.228822, 0.000000;;, + 177;3; 0.000000, 1.228822, 0.000000;;, + 178;3;-0.000000, 1.228822, 0.000000;;, + 179;3;-0.000000, 1.228822,-0.000000;;, + 180;3;-0.000000, 1.228822,-0.000000;;, + 181;3; 0.000000, 1.228822,-0.000000;;, + 182;3; 0.000000, 1.228822,-0.000000;;, + 183;3;-0.000000, 1.228822,-0.000000;;, + 184;3;-0.000000, 1.228822,-0.000000;;, + 185;3; 0.000000, 1.228822, 0.000000;;, + 186;3;-0.000000, 1.228822, 0.000000;;, + 187;3; 0.000000, 1.228822, 0.000000;;, + 188;3;-0.000000, 1.228822,-0.000000;;, + 189;3; 0.000000, 1.228822,-0.000000;;, + 190;3;-0.000000, 1.228822,-0.000000;;, + 191;3; 0.000000, 1.228822, 0.000000;;, + 192;3;-0.000000, 1.228822,-0.000000;;, + 193;3; 0.000000, 1.228822,-0.000000;;, + 194;3;-0.000000, 1.228822,-0.000000;;, + 195;3;-0.000000, 1.228822,-0.000000;;, + 196;3;-0.000000, 1.228822,-0.000000;;, + 197;3; 0.000000, 1.228822,-0.000000;;, + 198;3;-0.000000, 1.228822, 0.000000;;, + 199;3;-0.000000, 1.228822,-0.000000;;, + 200;3;-0.000000, 1.228822,-0.000000;;, + 201;3;-0.000000, 1.228822,-0.000000;;, + 202;3;-0.000000, 1.228822,-0.000000;;, + 203;3;-0.000000, 1.228822,-0.000000;;, + 204;3;-0.000000, 1.228822,-0.000000;;, + 205;3;-0.000000, 1.228822,-0.000000;;, + 206;3;-0.000000, 1.228822,-0.000000;;, + 207;3;-0.000000, 1.228822,-0.000000;;, + 208;3;-0.000000, 1.228822,-0.000000;;, + 209;3;-0.000000, 1.228822,-0.000000;;, + 210;3; 0.000000, 1.228822,-0.000000;;, + 211;3; 0.000000, 1.228822,-0.000000;;, + 212;3;-0.000000, 1.228822,-0.000000;;, + 213;3;-0.000000, 1.228822,-0.000000;;, + 214;3;-0.000000, 1.228822, 0.000000;;, + 215;3;-0.000000, 1.228822, 0.000000;;, + 216;3;-0.000000, 1.228822,-0.000000;;, + 217;3; 0.000000, 1.228822, 0.000000;;, + 218;3;-0.000000, 1.228822,-0.000000;;, + 219;3;-0.000000, 1.228822, 0.000000;;, + 220;3;-0.000000, 1.228822,-0.000000;;, + 221;3;-0.000000, 1.228822, 0.000000;;, + 222;3; 0.000000, 1.228821, 0.000000;;, + 223;3; 0.000000, 1.228822,-0.000000;;, + 224;3; 0.000000, 1.228822,-0.000000;;, + 225;3; 0.000000, 1.228822, 0.000000;;, + 226;3; 0.000000, 1.228822, 0.000000;;, + 227;3;-0.000000, 1.228822,-0.000000;;, + 228;3; 0.000000, 1.228822, 0.000000;;, + 229;3; 0.000000, 1.228822,-0.000000;;, + 230;3; 0.000000, 1.228822,-0.000000;;, + 231;3;-0.000000, 1.228822, 0.000000;;, + 232;3; 0.000000, 1.228822,-0.000000;;, + 233;3;-0.000000, 1.228822,-0.000000;;, + 234;3; 0.000000, 1.228822,-0.000000;;, + 235;3;-0.000000, 1.228822,-0.000000;;, + 236;3; 0.000000, 1.228822, 0.000000;;, + 237;3; 0.000000, 1.228822, 0.000000;;, + 238;3;-0.000000, 1.228822,-0.000000;;, + 239;3;-0.000000, 1.228822,-0.000000;;, + 240;3;-0.000000, 1.228822,-0.000000;;, + 241;3;-0.000000, 1.228822,-0.000000;;, + 242;3;-0.000000, 1.228822,-0.000000;;, + 243;3;-0.000000, 1.228822,-0.000000;;, + 244;3;-0.000000, 1.228822,-0.000000;;, + 245;3;-0.000000, 1.228822,-0.000000;;, + 246;3;-0.000000, 1.228822,-0.000000;;, + 247;3;-0.000000, 1.228822,-0.000000;;, + 248;3;-0.000000, 1.228822,-0.000000;;, + 249;3;-0.000000, 1.228822,-0.000000;;; + } + } + Animation { + {Armature_Bone_016} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 1;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 2;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 3;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 4;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 5;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 6;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 7;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 8;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 9;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 10;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 11;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 12;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 13;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 14;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 15;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 16;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 17;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 18;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 19;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 20;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 21;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 22;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 23;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 24;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 25;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 26;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 27;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 28;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 29;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 30;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 31;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 32;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 33;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 34;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 35;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 36;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 37;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 38;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 39;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 40;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 41;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 42;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 43;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 44;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 45;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 46;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 47;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 48;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 49;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 50;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 51;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 52;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 53;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 54;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 55;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 56;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 57;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 58;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 59;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 60;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 61;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 62;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 63;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 64;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 65;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 66;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 67;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 68;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 69;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 70;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 71;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 72;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 73;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 74;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 75;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 76;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 77;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 78;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 79;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 80;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 81;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 82;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 83;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 84;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 85;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 86;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 87;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 88;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 89;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 90;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 91;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 92;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 93;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 94;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 95;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 96;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 97;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 98;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 99;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 100;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 101;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 102;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 103;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 104;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 105;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 106;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 107;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 108;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 109;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 110;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 111;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 112;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 113;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 114;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 115;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 116;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 117;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 118;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 119;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 120;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 121;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 122;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 123;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 124;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 125;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 126;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 127;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 128;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 129;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 130;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 131;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 132;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 133;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 134;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 135;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 136;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 137;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 138;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 139;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 140;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 141;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 142;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 143;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 144;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 145;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 146;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 147;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 148;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 149;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 150;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 151;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 152;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 153;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 154;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 155;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 156;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 157;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 158;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 159;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 160;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 161;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 162;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 163;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 164;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 165;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 166;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 167;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 168;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 169;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 170;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 171;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 172;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 173;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 174;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 175;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 176;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 177;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 178;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 179;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 180;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 181;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 182;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 183;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 184;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 185;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 186;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 187;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 188;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 189;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 190;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 191;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 192;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 193;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 194;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 195;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 196;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 197;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 198;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 199;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 200;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 201;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 202;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 203;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 204;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 205;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 206;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 207;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 208;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 209;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 210;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 211;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 212;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 213;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 214;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 215;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 216;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 217;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 218;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 219;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 220;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 221;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 222;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 223;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 224;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 225;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 226;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 227;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 228;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 229;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 230;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 231;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 232;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 233;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 234;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 235;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 236;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 237;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 238;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 239;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 240;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 241;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 242;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 243;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 244;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 245;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 246;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 247;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 248;4;-0.524827,-0.000000,-0.000000,-0.851209;;, + 249;4;-0.524827,-0.000000,-0.000000,-0.851209;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3; 0.000000, 0.826434, 0.000000;;, + 1;3; 0.000000, 0.826434, 0.000000;;, + 2;3; 0.000000, 0.826434, 0.000000;;, + 3;3; 0.000000, 0.826434, 0.000000;;, + 4;3; 0.000000, 0.826434, 0.000000;;, + 5;3; 0.000000, 0.826434, 0.000000;;, + 6;3; 0.000000, 0.826434, 0.000000;;, + 7;3; 0.000000, 0.826434, 0.000000;;, + 8;3; 0.000000, 0.826434, 0.000000;;, + 9;3; 0.000000, 0.826434, 0.000000;;, + 10;3; 0.000000, 0.826434, 0.000000;;, + 11;3; 0.000000, 0.826434, 0.000000;;, + 12;3; 0.000000, 0.826434, 0.000000;;, + 13;3; 0.000000, 0.826434, 0.000000;;, + 14;3; 0.000000, 0.826434, 0.000000;;, + 15;3; 0.000000, 0.826434, 0.000000;;, + 16;3; 0.000000, 0.826434, 0.000000;;, + 17;3; 0.000000, 0.826434, 0.000000;;, + 18;3; 0.000000, 0.826434, 0.000000;;, + 19;3; 0.000000, 0.826434, 0.000000;;, + 20;3; 0.000000, 0.826434, 0.000000;;, + 21;3; 0.000000, 0.826434, 0.000000;;, + 22;3; 0.000000, 0.826434, 0.000000;;, + 23;3; 0.000000, 0.826434, 0.000000;;, + 24;3; 0.000000, 0.826434, 0.000000;;, + 25;3; 0.000000, 0.826434, 0.000000;;, + 26;3; 0.000000, 0.826434, 0.000000;;, + 27;3; 0.000000, 0.826434, 0.000000;;, + 28;3; 0.000000, 0.826434, 0.000000;;, + 29;3; 0.000000, 0.826434, 0.000000;;, + 30;3; 0.000000, 0.826434, 0.000000;;, + 31;3; 0.000000, 0.826434, 0.000000;;, + 32;3; 0.000000, 0.826434, 0.000000;;, + 33;3; 0.000000, 0.826434, 0.000000;;, + 34;3; 0.000000, 0.826434, 0.000000;;, + 35;3; 0.000000, 0.826434, 0.000000;;, + 36;3; 0.000000, 0.826434, 0.000000;;, + 37;3; 0.000000, 0.826434, 0.000000;;, + 38;3; 0.000000, 0.826434, 0.000000;;, + 39;3; 0.000000, 0.826434, 0.000000;;, + 40;3; 0.000000, 0.826434, 0.000000;;, + 41;3; 0.000000, 0.826434, 0.000000;;, + 42;3; 0.000000, 0.826434, 0.000000;;, + 43;3; 0.000000, 0.826434, 0.000000;;, + 44;3; 0.000000, 0.826434, 0.000000;;, + 45;3; 0.000000, 0.826434, 0.000000;;, + 46;3; 0.000000, 0.826434, 0.000000;;, + 47;3; 0.000000, 0.826434, 0.000000;;, + 48;3; 0.000000, 0.826434, 0.000000;;, + 49;3; 0.000000, 0.826434, 0.000000;;, + 50;3; 0.000000, 0.826434, 0.000000;;, + 51;3; 0.000000, 0.826434, 0.000000;;, + 52;3; 0.000000, 0.826434, 0.000000;;, + 53;3; 0.000000, 0.826434, 0.000000;;, + 54;3; 0.000000, 0.826434, 0.000000;;, + 55;3; 0.000000, 0.826434, 0.000000;;, + 56;3; 0.000000, 0.826434, 0.000000;;, + 57;3; 0.000000, 0.826434, 0.000000;;, + 58;3; 0.000000, 0.826434, 0.000000;;, + 59;3; 0.000000, 0.826434, 0.000000;;, + 60;3; 0.000000, 0.826434, 0.000000;;, + 61;3; 0.000000, 0.826434, 0.000000;;, + 62;3; 0.000000, 0.826434, 0.000000;;, + 63;3; 0.000000, 0.826434, 0.000000;;, + 64;3; 0.000000, 0.826434, 0.000000;;, + 65;3; 0.000000, 0.826434, 0.000000;;, + 66;3; 0.000000, 0.826434, 0.000000;;, + 67;3; 0.000000, 0.826434, 0.000000;;, + 68;3; 0.000000, 0.826434, 0.000000;;, + 69;3; 0.000000, 0.826434, 0.000000;;, + 70;3; 0.000000, 0.826434, 0.000000;;, + 71;3; 0.000000, 0.826434, 0.000000;;, + 72;3; 0.000000, 0.826434, 0.000000;;, + 73;3; 0.000000, 0.826434, 0.000000;;, + 74;3; 0.000000, 0.826434, 0.000000;;, + 75;3; 0.000000, 0.826434, 0.000000;;, + 76;3; 0.000000, 0.826434, 0.000000;;, + 77;3; 0.000000, 0.826434, 0.000000;;, + 78;3; 0.000000, 0.826434, 0.000000;;, + 79;3; 0.000000, 0.826434, 0.000000;;, + 80;3; 0.000000, 0.826434, 0.000000;;, + 81;3; 0.000000, 0.826434, 0.000000;;, + 82;3; 0.000000, 0.826434, 0.000000;;, + 83;3; 0.000000, 0.826434, 0.000000;;, + 84;3; 0.000000, 0.826434, 0.000000;;, + 85;3; 0.000000, 0.826434, 0.000000;;, + 86;3; 0.000000, 0.826434, 0.000000;;, + 87;3; 0.000000, 0.826434, 0.000000;;, + 88;3; 0.000000, 0.826434, 0.000000;;, + 89;3; 0.000000, 0.826434, 0.000000;;, + 90;3; 0.000000, 0.826434, 0.000000;;, + 91;3; 0.000000, 0.826434, 0.000000;;, + 92;3; 0.000000, 0.826434, 0.000000;;, + 93;3; 0.000000, 0.826434, 0.000000;;, + 94;3; 0.000000, 0.826434, 0.000000;;, + 95;3; 0.000000, 0.826434, 0.000000;;, + 96;3; 0.000000, 0.826434, 0.000000;;, + 97;3; 0.000000, 0.826434, 0.000000;;, + 98;3; 0.000000, 0.826434, 0.000000;;, + 99;3; 0.000000, 0.826434, 0.000000;;, + 100;3; 0.000000, 0.826434, 0.000000;;, + 101;3; 0.000000, 0.826434, 0.000000;;, + 102;3; 0.000000, 0.826434, 0.000000;;, + 103;3; 0.000000, 0.826434, 0.000000;;, + 104;3; 0.000000, 0.826434, 0.000000;;, + 105;3; 0.000000, 0.826434, 0.000000;;, + 106;3; 0.000000, 0.826434, 0.000000;;, + 107;3; 0.000000, 0.826434, 0.000000;;, + 108;3; 0.000000, 0.826434, 0.000000;;, + 109;3; 0.000000, 0.826434, 0.000000;;, + 110;3; 0.000000, 0.826434, 0.000000;;, + 111;3; 0.000000, 0.826434, 0.000000;;, + 112;3; 0.000000, 0.826434, 0.000000;;, + 113;3; 0.000000, 0.826434, 0.000000;;, + 114;3; 0.000000, 0.826434, 0.000000;;, + 115;3; 0.000000, 0.826434, 0.000000;;, + 116;3; 0.000000, 0.826434, 0.000000;;, + 117;3; 0.000000, 0.826434, 0.000000;;, + 118;3; 0.000000, 0.826434, 0.000000;;, + 119;3; 0.000000, 0.826434, 0.000000;;, + 120;3; 0.000000, 0.826434, 0.000000;;, + 121;3; 0.000000, 0.826434, 0.000000;;, + 122;3; 0.000000, 0.826434, 0.000000;;, + 123;3; 0.000000, 0.826434, 0.000000;;, + 124;3; 0.000000, 0.826434, 0.000000;;, + 125;3; 0.000000, 0.826434, 0.000000;;, + 126;3; 0.000000, 0.826434, 0.000000;;, + 127;3; 0.000000, 0.826434, 0.000000;;, + 128;3; 0.000000, 0.826434, 0.000000;;, + 129;3; 0.000000, 0.826434, 0.000000;;, + 130;3; 0.000000, 0.826434, 0.000000;;, + 131;3; 0.000000, 0.826434, 0.000000;;, + 132;3; 0.000000, 0.826434, 0.000000;;, + 133;3; 0.000000, 0.826434, 0.000000;;, + 134;3; 0.000000, 0.826434, 0.000000;;, + 135;3; 0.000000, 0.826434, 0.000000;;, + 136;3; 0.000000, 0.826434, 0.000000;;, + 137;3; 0.000000, 0.826434, 0.000000;;, + 138;3; 0.000000, 0.826434, 0.000000;;, + 139;3; 0.000000, 0.826434, 0.000000;;, + 140;3; 0.000000, 0.826434, 0.000000;;, + 141;3; 0.000000, 0.826434, 0.000000;;, + 142;3; 0.000000, 0.826434, 0.000000;;, + 143;3; 0.000000, 0.826434, 0.000000;;, + 144;3; 0.000000, 0.826434, 0.000000;;, + 145;3; 0.000000, 0.826434, 0.000000;;, + 146;3; 0.000000, 0.826434, 0.000000;;, + 147;3; 0.000000, 0.826434, 0.000000;;, + 148;3; 0.000000, 0.826434, 0.000000;;, + 149;3; 0.000000, 0.826434, 0.000000;;, + 150;3; 0.000000, 0.826434, 0.000000;;, + 151;3; 0.000000, 0.826434, 0.000000;;, + 152;3; 0.000000, 0.826434, 0.000000;;, + 153;3; 0.000000, 0.826434, 0.000000;;, + 154;3; 0.000000, 0.826434, 0.000000;;, + 155;3; 0.000000, 0.826434, 0.000000;;, + 156;3; 0.000000, 0.826434, 0.000000;;, + 157;3; 0.000000, 0.826434, 0.000000;;, + 158;3; 0.000000, 0.826434, 0.000000;;, + 159;3; 0.000000, 0.826434, 0.000000;;, + 160;3; 0.000000, 0.826434, 0.000000;;, + 161;3; 0.000000, 0.826434, 0.000000;;, + 162;3; 0.000000, 0.826434, 0.000000;;, + 163;3; 0.000000, 0.826434, 0.000000;;, + 164;3; 0.000000, 0.826434, 0.000000;;, + 165;3; 0.000000, 0.826434, 0.000000;;, + 166;3; 0.000000, 0.826434, 0.000000;;, + 167;3; 0.000000, 0.826434, 0.000000;;, + 168;3; 0.000000, 0.826434, 0.000000;;, + 169;3; 0.000000, 0.826434, 0.000000;;, + 170;3; 0.000000, 0.826434, 0.000000;;, + 171;3; 0.000000, 0.826434, 0.000000;;, + 172;3; 0.000000, 0.826434, 0.000000;;, + 173;3; 0.000000, 0.826434, 0.000000;;, + 174;3; 0.000000, 0.826434, 0.000000;;, + 175;3; 0.000000, 0.826434, 0.000000;;, + 176;3; 0.000000, 0.826434, 0.000000;;, + 177;3; 0.000000, 0.826434, 0.000000;;, + 178;3; 0.000000, 0.826434, 0.000000;;, + 179;3; 0.000000, 0.826434, 0.000000;;, + 180;3; 0.000000, 0.826434, 0.000000;;, + 181;3; 0.000000, 0.826434, 0.000000;;, + 182;3; 0.000000, 0.826434, 0.000000;;, + 183;3; 0.000000, 0.826434, 0.000000;;, + 184;3; 0.000000, 0.826434, 0.000000;;, + 185;3; 0.000000, 0.826434, 0.000000;;, + 186;3;-0.000000, 0.826434,-0.000000;;, + 187;3;-0.000000, 0.826434,-0.000000;;, + 188;3;-0.000000, 0.826434, 0.000000;;, + 189;3;-0.000000, 0.826434, 0.000000;;, + 190;3;-0.000000, 0.826434,-0.000000;;, + 191;3; 0.000000, 0.826434, 0.000000;;, + 192;3; 0.000000, 0.826434, 0.000000;;, + 193;3; 0.000000, 0.826434, 0.000000;;, + 194;3; 0.000000, 0.826434,-0.000000;;, + 195;3; 0.000000, 0.826434,-0.000000;;, + 196;3; 0.000000, 0.826434, 0.000000;;, + 197;3; 0.000000, 0.826434,-0.000000;;, + 198;3; 0.000000, 0.826434,-0.000000;;, + 199;3; 0.000000, 0.826434, 0.000000;;, + 200;3; 0.000000, 0.826434, 0.000000;;, + 201;3; 0.000000, 0.826434, 0.000000;;, + 202;3; 0.000000, 0.826434, 0.000000;;, + 203;3; 0.000000, 0.826434, 0.000000;;, + 204;3; 0.000000, 0.826434, 0.000000;;, + 205;3; 0.000000, 0.826434, 0.000000;;, + 206;3; 0.000000, 0.826434, 0.000000;;, + 207;3; 0.000000, 0.826434, 0.000000;;, + 208;3; 0.000000, 0.826434, 0.000000;;, + 209;3; 0.000000, 0.826434, 0.000000;;, + 210;3;-0.000000, 0.826434, 0.000000;;, + 211;3;-0.000000, 0.826434, 0.000000;;, + 212;3; 0.000000, 0.826434,-0.000000;;, + 213;3; 0.000000, 0.826434, 0.000000;;, + 214;3; 0.000000, 0.826434, 0.000000;;, + 215;3;-0.000000, 0.826434,-0.000000;;, + 216;3;-0.000000, 0.826434,-0.000000;;, + 217;3;-0.000000, 0.826434,-0.000000;;, + 218;3;-0.000000, 0.826434, 0.000000;;, + 219;3;-0.000000, 0.826434,-0.000000;;, + 220;3;-0.000000, 0.826434, 0.000000;;, + 221;3; 0.000000, 0.826434, 0.000000;;, + 222;3;-0.000000, 0.826434, 0.000000;;, + 223;3; 0.000000, 0.826434,-0.000000;;, + 224;3; 0.000000, 0.826434,-0.000000;;, + 225;3; 0.000000, 0.826434, 0.000000;;, + 226;3; 0.000000, 0.826434, 0.000000;;, + 227;3; 0.000000, 0.826434, 0.000000;;, + 228;3;-0.000000, 0.826434, 0.000000;;, + 229;3; 0.000000, 0.826434, 0.000000;;, + 230;3; 0.000000, 0.826434, 0.000000;;, + 231;3; 0.000000, 0.826434,-0.000000;;, + 232;3;-0.000000, 0.826434,-0.000000;;, + 233;3; 0.000000, 0.826434, 0.000000;;, + 234;3; 0.000000, 0.826434, 0.000000;;, + 235;3; 0.000000, 0.826434, 0.000000;;, + 236;3; 0.000000, 0.826434, 0.000000;;, + 237;3; 0.000000, 0.826434, 0.000000;;, + 238;3; 0.000000, 0.826434, 0.000000;;, + 239;3; 0.000000, 0.826434, 0.000000;;, + 240;3; 0.000000, 0.826434, 0.000000;;, + 241;3; 0.000000, 0.826434, 0.000000;;, + 242;3; 0.000000, 0.826434, 0.000000;;, + 243;3; 0.000000, 0.826434, 0.000000;;, + 244;3; 0.000000, 0.826434, 0.000000;;, + 245;3; 0.000000, 0.826434, 0.000000;;, + 246;3; 0.000000, 0.826434, 0.000000;;, + 247;3; 0.000000, 0.826434, 0.000000;;, + 248;3; 0.000000, 0.826434, 0.000000;;, + 249;3; 0.000000, 0.826434, 0.000000;;; + } + } + Animation { + {Armature_Bone_020} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 1;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 2;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 3;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 4;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 5;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 6;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 7;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 8;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 9;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 10;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 11;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 12;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 13;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 14;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 15;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 16;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 17;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 18;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 19;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 20;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 21;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 22;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 23;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 24;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 25;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 26;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 27;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 28;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 29;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 30;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 31;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 32;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 33;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 34;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 35;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 36;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 37;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 38;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 39;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 40;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 41;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 42;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 43;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 44;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 45;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 46;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 47;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 48;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 49;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 50;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 51;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 52;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 53;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 54;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 55;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 56;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 57;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 58;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 59;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 60;4;-0.969660, 0.172274, 0.032946, 0.170275;;, + 61;4;-0.969685, 0.172117, 0.032898, 0.170282;;, + 62;4;-0.969726, 0.171854, 0.032820, 0.170295;;, + 63;4;-0.969784, 0.171485, 0.032709, 0.170312;;, + 64;4;-0.969860, 0.171010, 0.032566, 0.170335;;, + 65;4;-0.969951, 0.170429, 0.032392, 0.170362;;, + 66;4;-0.970059, 0.169743, 0.032186, 0.170394;;, + 67;4;-0.970184, 0.168955, 0.031949, 0.170431;;, + 68;4;-0.970324, 0.168067, 0.031683, 0.170473;;, + 69;4;-0.970479, 0.167082, 0.031387, 0.170519;;, + 70;4;-0.970649, 0.166005, 0.031064, 0.170570;;, + 71;4;-0.970833, 0.164841, 0.030715, 0.170625;;, + 72;4;-0.971029, 0.163597, 0.030341, 0.170683;;, + 73;4;-0.971237, 0.162280, 0.029946, 0.170745;;, + 74;4;-0.971455, 0.160898, 0.029531, 0.170810;;, + 75;4;-0.971682, 0.159460, 0.029100, 0.170878;;, + 76;4;-0.971916, 0.157977, 0.028655, 0.170948;;, + 77;4;-0.972156, 0.156459, 0.028199, 0.171019;;, + 78;4;-0.972399, 0.154918, 0.027736, 0.171092;;, + 79;4;-0.972644, 0.153364, 0.027270, 0.171165;;, + 80;4;-0.972889, 0.151811, 0.026804, 0.171238;;, + 81;4;-0.973133, 0.150270, 0.026341, 0.171311;;, + 82;4;-0.973372, 0.148752, 0.025886, 0.171382;;, + 83;4;-0.973606, 0.147268, 0.025441, 0.171452;;, + 84;4;-0.973833, 0.145831, 0.025009, 0.171519;;, + 85;4;-0.974051, 0.144449, 0.024594, 0.171584;;, + 86;4;-0.974259, 0.143132, 0.024199, 0.171646;;, + 87;4;-0.974455, 0.141887, 0.023826, 0.171705;;, + 88;4;-0.974639, 0.140724, 0.023476, 0.171760;;, + 89;4;-0.974809, 0.139647, 0.023153, 0.171810;;, + 90;4;-0.974964, 0.138662, 0.022857, 0.171857;;, + 91;4;-0.975105, 0.137773, 0.022591, 0.171899;;, + 92;4;-0.975229, 0.136985, 0.022354, 0.171936;;, + 93;4;-0.975337, 0.136299, 0.022148, 0.171968;;, + 94;4;-0.975429, 0.135718, 0.021974, 0.171995;;, + 95;4;-0.975504, 0.135243, 0.021831, 0.172018;;, + 96;4;-0.975562, 0.134874, 0.021721, 0.172035;;, + 97;4;-0.975604, 0.134611, 0.021642, 0.172047;;, + 98;4;-0.975628, 0.134454, 0.021595, 0.172055;;, + 99;4;-0.975637, 0.134402, 0.021579, 0.172057;;, + 100;4;-0.975372, 0.135547, 0.021924, 0.171988;;, + 101;4;-0.974549, 0.139101, 0.022996, 0.171774;;, + 102;4;-0.973151, 0.145140, 0.024817, 0.171410;;, + 103;4;-0.971214, 0.153508, 0.027340, 0.170906;;, + 104;4;-0.968842, 0.163754, 0.030429, 0.170289;;, + 105;4;-0.966204, 0.175152, 0.033866, 0.169602;;, + 106;4;-0.963493, 0.186862, 0.037397, 0.168897;;, + 107;4;-0.960885, 0.198129, 0.040794, 0.168218;;, + 108;4;-0.958504, 0.208414, 0.043895, 0.167599;;, + 109;4;-0.956421, 0.217410, 0.046607, 0.167057;;, + 110;4;-0.954474, 0.225951, 0.049182, 0.166547;;, + 111;4;-0.952480, 0.234935, 0.051889, 0.166019;;, + 112;4;-0.950450, 0.244258, 0.054698, 0.165477;;, + 113;4;-0.948403, 0.253734, 0.057552, 0.164929;;, + 114;4;-0.946368, 0.263102, 0.060374, 0.164386;;, + 115;4;-0.944376, 0.272073, 0.063078, 0.163858;;, + 116;4;-0.942451, 0.280397, 0.065587, 0.163357;;, + 117;4;-0.940613, 0.287918, 0.067857, 0.162889;;, + 118;4;-0.938865, 0.294583, 0.069871, 0.162456;;, + 119;4;-0.937206, 0.300418, 0.071636, 0.162056;;, + 120;4;-0.935522, 0.305681, 0.073231, 0.161659;;, + 121;4;-0.933726, 0.310514, 0.074701, 0.161241;;, + 122;4;-0.931869, 0.314796, 0.076009, 0.160815;;, + 123;4;-0.930028, 0.318414, 0.077118, 0.160399;;, + 124;4;-0.928306, 0.321287, 0.078005, 0.160019;;, + 125;4;-0.926808, 0.323405, 0.078663, 0.159697;;, + 126;4;-0.925614, 0.324832, 0.079109, 0.159453;;, + 127;4;-0.924769, 0.325687, 0.079379, 0.159295;;, + 128;4;-0.924276, 0.326109, 0.079513, 0.159222;;, + 129;4;-0.924113, 0.326225, 0.079551, 0.159227;;, + 130;4;-0.925247, 0.321972, 0.078266, 0.159548;;, + 131;4;-0.928679, 0.309174, 0.074398, 0.160428;;, + 132;4;-0.934265, 0.288365, 0.068109, 0.161831;;, + 133;4;-0.941576, 0.261147, 0.059883, 0.163651;;, + 134;4;-0.949860, 0.230314, 0.050565, 0.165704;;, + 135;4;-0.958146, 0.199480, 0.041247, 0.167750;;, + 136;4;-0.965461, 0.172263, 0.033021, 0.169554;;, + 137;4;-0.971053, 0.151453, 0.026732, 0.170930;;, + 138;4;-0.974494, 0.138655, 0.022864, 0.171776;;, + 139;4;-0.975637, 0.134402, 0.021579, 0.172057;;, + 140;4;-0.974549, 0.139101, 0.022996, 0.171774;;, + 141;4;-0.971214, 0.153508, 0.027340, 0.170906;;, + 142;4;-0.966204, 0.175152, 0.033866, 0.169602;;, + 143;4;-0.960885, 0.198129, 0.040794, 0.168218;;, + 144;4;-0.956421, 0.217410, 0.046607, 0.167057;;, + 145;4;-0.952480, 0.234935, 0.051889, 0.166019;;, + 146;4;-0.948403, 0.253734, 0.057552, 0.164929;;, + 147;4;-0.944376, 0.272073, 0.063078, 0.163858;;, + 148;4;-0.940613, 0.287918, 0.067857, 0.162889;;, + 149;4;-0.937206, 0.300418, 0.071636, 0.162056;;, + 150;4;-0.933726, 0.310514, 0.074701, 0.161241;;, + 151;4;-0.930028, 0.318414, 0.077118, 0.160399;;, + 152;4;-0.926808, 0.323405, 0.078663, 0.159697;;, + 153;4;-0.924769, 0.325687, 0.079379, 0.159295;;, + 154;4;-0.924113, 0.326225, 0.079551, 0.159227;;, + 155;4;-0.928679, 0.309174, 0.074398, 0.160428;;, + 156;4;-0.941576, 0.261147, 0.059883, 0.163651;;, + 157;4;-0.958146, 0.199480, 0.041247, 0.167750;;, + 158;4;-0.971053, 0.151453, 0.026732, 0.170930;;, + 159;4;-0.975637, 0.134402, 0.021579, 0.172057;;, + 160;4;-0.975636, 0.134611, 0.021642, 0.172057;;, + 161;4;-0.975632, 0.135243, 0.021831, 0.172056;;, + 162;4;-0.975622, 0.136299, 0.022149, 0.172053;;, + 163;4;-0.975600, 0.137773, 0.022591, 0.172046;;, + 164;4;-0.975560, 0.139647, 0.023153, 0.172034;;, + 165;4;-0.975498, 0.141887, 0.023826, 0.172016;;, + 166;4;-0.975406, 0.144449, 0.024594, 0.171989;;, + 167;4;-0.975279, 0.147268, 0.025441, 0.171950;;, + 168;4;-0.975108, 0.150270, 0.026341, 0.171900;;, + 169;4;-0.974889, 0.153364, 0.027270, 0.171834;;, + 170;4;-0.974616, 0.156459, 0.028199, 0.171753;;, + 171;4;-0.974286, 0.159460, 0.029100, 0.171654;;, + 172;4;-0.973897, 0.162280, 0.029946, 0.171538;;, + 173;4;-0.973449, 0.164841, 0.030715, 0.171405;;, + 174;4;-0.972943, 0.167082, 0.031387, 0.171254;;, + 175;4;-0.972382, 0.168955, 0.031949, 0.171087;;, + 176;4;-0.971768, 0.170429, 0.032392, 0.170904;;, + 177;4;-0.971106, 0.171485, 0.032709, 0.170706;;, + 178;4;-0.970399, 0.172117, 0.032898, 0.170495;;, + 179;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 180;4;-0.965531, 0.168065, 0.019598, 0.168830;;, + 181;4;-0.954679, 0.155242,-0.020619, 0.164950;;, + 182;4;-0.937538, 0.134391,-0.086010, 0.158793;;, + 183;4;-0.915398, 0.107120,-0.171538, 0.150822;;, + 184;4;-0.890490, 0.076225,-0.268428, 0.141844;;, + 185;4;-0.865687, 0.045331,-0.365317, 0.132897;;, + 186;4;-0.843856, 0.018060,-0.450846, 0.125019;;, + 187;4;-0.827198,-0.002791,-0.516237, 0.119005;;, + 188;4;-0.816967,-0.015614,-0.556454, 0.115311;;, + 189;4;-0.813572,-0.019875,-0.569817, 0.114084;;, + 190;4;-0.827046,-0.023230,-0.534655, 0.125702;;, + 191;4;-0.865000,-0.031081,-0.432377, 0.158428;;, + 192;4;-0.913733,-0.036874,-0.292359, 0.200447;;, + 193;4;-0.951687,-0.033040,-0.166392, 0.233173;;, + 194;4;-0.965162,-0.016514,-0.090924, 0.244791;;, + 195;4;-0.965561, 0.016499,-0.047013, 0.238167;;, + 196;4;-0.966685, 0.066771,-0.009930, 0.219510;;, + 197;4;-0.968129, 0.120606, 0.015961, 0.195554;;, + 198;4;-0.969253, 0.159193, 0.029356, 0.176896;;, + 199;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 200;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 201;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 202;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 203;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 204;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 205;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 206;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 207;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 208;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 209;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 210;4;-0.970723, 0.158536, 0.015007, 0.162588;;, + 211;4;-0.973864, 0.119692,-0.035566, 0.139040;;, + 212;4;-0.978223, 0.069818,-0.100501, 0.103692;;, + 213;4;-0.982256, 0.030974,-0.151073, 0.066213;;, + 214;4;-0.984846, 0.017184,-0.169028, 0.034825;;, + 215;4;-0.986276, 0.017107,-0.163674, 0.006756;;, + 216;4;-0.987037, 0.017119,-0.147202,-0.022787;;, + 217;4;-0.987192, 0.017750,-0.122311,-0.051730;;, + 218;4;-0.987050, 0.019440,-0.095644,-0.077662;;, + 219;4;-0.986941, 0.022217,-0.072944,-0.099585;;, + 220;4;-0.986718, 0.025571,-0.050107,-0.119738;;, + 221;4;-0.986134, 0.029503,-0.022908,-0.138776;;, + 222;4;-0.985394, 0.034678, 0.003061,-0.153757;;, + 223;4;-0.984822, 0.041467, 0.021141,-0.162475;;, + 224;4;-0.984619, 0.049679, 0.028460,-0.165070;;, + 225;4;-0.984472, 0.058866, 0.030398,-0.161777;;, + 226;4;-0.984028, 0.068826, 0.032030,-0.151824;;, + 227;4;-0.983289, 0.079468, 0.033340,-0.135262;;, + 228;4;-0.982270, 0.090642, 0.034316,-0.112436;;, + 229;4;-0.981004, 0.102132, 0.034962,-0.084067;;, + 230;4;-0.979541, 0.113658, 0.035293,-0.051301;;, + 231;4;-0.977952, 0.124891, 0.035346,-0.015694;;, + 232;4;-0.976319, 0.135478, 0.035174, 0.020897;;, + 233;4;-0.974730, 0.145086, 0.034842, 0.056504;;, + 234;4;-0.973267, 0.153438, 0.034421, 0.089270;;, + 235;4;-0.972001, 0.160338, 0.033977, 0.117639;;, + 236;4;-0.970982, 0.165676, 0.033570, 0.140464;;, + 237;4;-0.970243, 0.169425, 0.033244, 0.157026;;, + 238;4;-0.969799, 0.171617, 0.033034, 0.166980;;, + 239;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 240;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 241;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 242;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 243;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 244;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 245;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 246;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 247;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 248;4;-0.969652, 0.172326, 0.032961, 0.170273;;, + 249;4;-0.969652, 0.172326, 0.032961, 0.170273;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3; 0.000000, 0.683319, 0.000000;;, + 1;3; 0.000000, 0.683319, 0.000000;;, + 2;3; 0.000000, 0.683319, 0.000000;;, + 3;3; 0.000000, 0.683319, 0.000000;;, + 4;3; 0.000000, 0.683319, 0.000000;;, + 5;3; 0.000000, 0.683319, 0.000000;;, + 6;3; 0.000000, 0.683319, 0.000000;;, + 7;3; 0.000000, 0.683319, 0.000000;;, + 8;3; 0.000000, 0.683319, 0.000000;;, + 9;3; 0.000000, 0.683319, 0.000000;;, + 10;3; 0.000000, 0.683319, 0.000000;;, + 11;3; 0.000000, 0.683319, 0.000000;;, + 12;3; 0.000000, 0.683319, 0.000000;;, + 13;3; 0.000000, 0.683319, 0.000000;;, + 14;3; 0.000000, 0.683319, 0.000000;;, + 15;3; 0.000000, 0.683319, 0.000000;;, + 16;3; 0.000000, 0.683319, 0.000000;;, + 17;3; 0.000000, 0.683319, 0.000000;;, + 18;3; 0.000000, 0.683319, 0.000000;;, + 19;3; 0.000000, 0.683319, 0.000000;;, + 20;3; 0.000000, 0.683319, 0.000000;;, + 21;3; 0.000000, 0.683319, 0.000000;;, + 22;3; 0.000000, 0.683319, 0.000000;;, + 23;3; 0.000000, 0.683319, 0.000000;;, + 24;3; 0.000000, 0.683319, 0.000000;;, + 25;3; 0.000000, 0.683319, 0.000000;;, + 26;3; 0.000000, 0.683319, 0.000000;;, + 27;3; 0.000000, 0.683319, 0.000000;;, + 28;3; 0.000000, 0.683319, 0.000000;;, + 29;3; 0.000000, 0.683319, 0.000000;;, + 30;3; 0.000000, 0.683319, 0.000000;;, + 31;3; 0.000000, 0.683319, 0.000000;;, + 32;3; 0.000000, 0.683319, 0.000000;;, + 33;3; 0.000000, 0.683319, 0.000000;;, + 34;3; 0.000000, 0.683319, 0.000000;;, + 35;3; 0.000000, 0.683319, 0.000000;;, + 36;3; 0.000000, 0.683319, 0.000000;;, + 37;3; 0.000000, 0.683319, 0.000000;;, + 38;3; 0.000000, 0.683319, 0.000000;;, + 39;3; 0.000000, 0.683319, 0.000000;;, + 40;3; 0.000000, 0.683319, 0.000000;;, + 41;3; 0.000000, 0.683319, 0.000000;;, + 42;3; 0.000000, 0.683319, 0.000000;;, + 43;3; 0.000000, 0.683319, 0.000000;;, + 44;3; 0.000000, 0.683319, 0.000000;;, + 45;3; 0.000000, 0.683319, 0.000000;;, + 46;3; 0.000000, 0.683319, 0.000000;;, + 47;3; 0.000000, 0.683319, 0.000000;;, + 48;3; 0.000000, 0.683319, 0.000000;;, + 49;3; 0.000000, 0.683319, 0.000000;;, + 50;3; 0.000000, 0.683319, 0.000000;;, + 51;3; 0.000000, 0.683319, 0.000000;;, + 52;3; 0.000000, 0.683319, 0.000000;;, + 53;3; 0.000000, 0.683319, 0.000000;;, + 54;3; 0.000000, 0.683319, 0.000000;;, + 55;3; 0.000000, 0.683319, 0.000000;;, + 56;3; 0.000000, 0.683319, 0.000000;;, + 57;3; 0.000000, 0.683319, 0.000000;;, + 58;3; 0.000000, 0.683319, 0.000000;;, + 59;3; 0.000000, 0.683319, 0.000000;;, + 60;3; 0.000000, 0.683319, 0.000000;;, + 61;3; 0.000000, 0.683319, 0.000000;;, + 62;3; 0.000000, 0.683319, 0.000000;;, + 63;3; 0.000000, 0.683319, 0.000000;;, + 64;3; 0.000000, 0.683319, 0.000000;;, + 65;3; 0.000000, 0.683319, 0.000000;;, + 66;3; 0.000000, 0.683319, 0.000000;;, + 67;3; 0.000000, 0.683319, 0.000000;;, + 68;3; 0.000000, 0.683319, 0.000000;;, + 69;3; 0.000000, 0.683319, 0.000000;;, + 70;3; 0.000000, 0.683319, 0.000000;;, + 71;3; 0.000000, 0.683319, 0.000000;;, + 72;3; 0.000000, 0.683319, 0.000000;;, + 73;3; 0.000000, 0.683319, 0.000000;;, + 74;3; 0.000000, 0.683319, 0.000000;;, + 75;3; 0.000000, 0.683319, 0.000000;;, + 76;3; 0.000000, 0.683319, 0.000000;;, + 77;3; 0.000000, 0.683319, 0.000000;;, + 78;3; 0.000000, 0.683319, 0.000000;;, + 79;3; 0.000000, 0.683319, 0.000000;;, + 80;3; 0.000000, 0.683319, 0.000000;;, + 81;3; 0.000000, 0.683319, 0.000000;;, + 82;3; 0.000000, 0.683319, 0.000000;;, + 83;3; 0.000000, 0.683319, 0.000000;;, + 84;3; 0.000000, 0.683319, 0.000000;;, + 85;3; 0.000000, 0.683319, 0.000000;;, + 86;3; 0.000000, 0.683319, 0.000000;;, + 87;3; 0.000000, 0.683319, 0.000000;;, + 88;3; 0.000000, 0.683319, 0.000000;;, + 89;3; 0.000000, 0.683319, 0.000000;;, + 90;3; 0.000000, 0.683319, 0.000000;;, + 91;3; 0.000000, 0.683319, 0.000000;;, + 92;3; 0.000000, 0.683319, 0.000000;;, + 93;3; 0.000000, 0.683319, 0.000000;;, + 94;3; 0.000000, 0.683319, 0.000000;;, + 95;3; 0.000000, 0.683319, 0.000000;;, + 96;3; 0.000000, 0.683319, 0.000000;;, + 97;3; 0.000000, 0.683319, 0.000000;;, + 98;3; 0.000000, 0.683319, 0.000000;;, + 99;3; 0.000000, 0.683319, 0.000000;;, + 100;3; 0.000000, 0.683319, 0.000000;;, + 101;3; 0.000000, 0.683319, 0.000000;;, + 102;3; 0.000000, 0.683319, 0.000000;;, + 103;3; 0.000000, 0.683319, 0.000000;;, + 104;3; 0.000000, 0.683319, 0.000000;;, + 105;3; 0.000000, 0.683319, 0.000000;;, + 106;3; 0.000000, 0.683319, 0.000000;;, + 107;3; 0.000000, 0.683319, 0.000000;;, + 108;3; 0.000000, 0.683319, 0.000000;;, + 109;3; 0.000000, 0.683319, 0.000000;;, + 110;3; 0.000000, 0.683319, 0.000000;;, + 111;3; 0.000000, 0.683319, 0.000000;;, + 112;3; 0.000000, 0.683319, 0.000000;;, + 113;3; 0.000000, 0.683319, 0.000000;;, + 114;3; 0.000000, 0.683319, 0.000000;;, + 115;3; 0.000000, 0.683319, 0.000000;;, + 116;3; 0.000000, 0.683319, 0.000000;;, + 117;3; 0.000000, 0.683319, 0.000000;;, + 118;3; 0.000000, 0.683319, 0.000000;;, + 119;3; 0.000000, 0.683319, 0.000000;;, + 120;3; 0.000000, 0.683319, 0.000000;;, + 121;3; 0.000000, 0.683319, 0.000000;;, + 122;3; 0.000000, 0.683319, 0.000000;;, + 123;3; 0.000000, 0.683319, 0.000000;;, + 124;3; 0.000000, 0.683319, 0.000000;;, + 125;3; 0.000000, 0.683319, 0.000000;;, + 126;3; 0.000000, 0.683319, 0.000000;;, + 127;3; 0.000000, 0.683319, 0.000000;;, + 128;3; 0.000000, 0.683319, 0.000000;;, + 129;3; 0.000000, 0.683319, 0.000000;;, + 130;3; 0.000000, 0.683319, 0.000000;;, + 131;3; 0.000000, 0.683319, 0.000000;;, + 132;3; 0.000000, 0.683319, 0.000000;;, + 133;3; 0.000000, 0.683319, 0.000000;;, + 134;3; 0.000000, 0.683319, 0.000000;;, + 135;3; 0.000000, 0.683319, 0.000000;;, + 136;3; 0.000000, 0.683319, 0.000000;;, + 137;3; 0.000000, 0.683319, 0.000000;;, + 138;3; 0.000000, 0.683319, 0.000000;;, + 139;3; 0.000000, 0.683319, 0.000000;;, + 140;3; 0.000000, 0.683319, 0.000000;;, + 141;3; 0.000000, 0.683319, 0.000000;;, + 142;3; 0.000000, 0.683319, 0.000000;;, + 143;3; 0.000000, 0.683319, 0.000000;;, + 144;3; 0.000000, 0.683319, 0.000000;;, + 145;3; 0.000000, 0.683319, 0.000000;;, + 146;3; 0.000000, 0.683319, 0.000000;;, + 147;3; 0.000000, 0.683319, 0.000000;;, + 148;3; 0.000000, 0.683319, 0.000000;;, + 149;3; 0.000000, 0.683319, 0.000000;;, + 150;3; 0.000000, 0.683319, 0.000000;;, + 151;3; 0.000000, 0.683319, 0.000000;;, + 152;3; 0.000000, 0.683319, 0.000000;;, + 153;3; 0.000000, 0.683319, 0.000000;;, + 154;3; 0.000000, 0.683319, 0.000000;;, + 155;3; 0.000000, 0.683319, 0.000000;;, + 156;3; 0.000000, 0.683319, 0.000000;;, + 157;3; 0.000000, 0.683319, 0.000000;;, + 158;3; 0.000000, 0.683319, 0.000000;;, + 159;3; 0.000000, 0.683319, 0.000000;;, + 160;3; 0.000000, 0.683319, 0.000000;;, + 161;3; 0.000000, 0.683319, 0.000000;;, + 162;3; 0.000000, 0.683319, 0.000000;;, + 163;3; 0.000000, 0.683319, 0.000000;;, + 164;3; 0.000000, 0.683319, 0.000000;;, + 165;3; 0.000000, 0.683319, 0.000000;;, + 166;3; 0.000000, 0.683319, 0.000000;;, + 167;3; 0.000000, 0.683319, 0.000000;;, + 168;3; 0.000000, 0.683319, 0.000000;;, + 169;3; 0.000000, 0.683319, 0.000000;;, + 170;3; 0.000000, 0.683319, 0.000000;;, + 171;3; 0.000000, 0.683319, 0.000000;;, + 172;3; 0.000000, 0.683319, 0.000000;;, + 173;3; 0.000000, 0.683319, 0.000000;;, + 174;3; 0.000000, 0.683319, 0.000000;;, + 175;3; 0.000000, 0.683319, 0.000000;;, + 176;3; 0.000000, 0.683319, 0.000000;;, + 177;3; 0.000000, 0.683319, 0.000000;;, + 178;3; 0.000000, 0.683319, 0.000000;;, + 179;3; 0.000000, 0.683319, 0.000000;;, + 180;3;-0.000000, 0.683319, 0.000000;;, + 181;3;-0.000000, 0.683319,-0.000000;;, + 182;3;-0.000000, 0.683319, 0.000000;;, + 183;3;-0.000000, 0.683319, 0.000000;;, + 184;3; 0.000000, 0.683319, 0.000000;;, + 185;3; 0.000000, 0.683319, 0.000000;;, + 186;3;-0.000000, 0.683319, 0.000000;;, + 187;3; 0.000000, 0.683319, 0.000000;;, + 188;3; 0.000000, 0.683319, 0.000000;;, + 189;3;-0.000000, 0.683319,-0.000000;;, + 190;3; 0.000000, 0.683319, 0.000000;;, + 191;3;-0.000000, 0.683319,-0.000000;;, + 192;3; 0.000000, 0.683319,-0.000000;;, + 193;3; 0.000000, 0.683320,-0.000000;;, + 194;3;-0.000000, 0.683319,-0.000000;;, + 195;3; 0.000000, 0.683319, 0.000000;;, + 196;3;-0.000000, 0.683319, 0.000000;;, + 197;3; 0.000000, 0.683319, 0.000000;;, + 198;3; 0.000000, 0.683319,-0.000000;;, + 199;3; 0.000000, 0.683319, 0.000000;;, + 200;3; 0.000000, 0.683319, 0.000000;;, + 201;3; 0.000000, 0.683319, 0.000000;;, + 202;3; 0.000000, 0.683319, 0.000000;;, + 203;3; 0.000000, 0.683319, 0.000000;;, + 204;3; 0.000000, 0.683319, 0.000000;;, + 205;3; 0.000000, 0.683319, 0.000000;;, + 206;3; 0.000000, 0.683319, 0.000000;;, + 207;3; 0.000000, 0.683319, 0.000000;;, + 208;3; 0.000000, 0.683319, 0.000000;;, + 209;3; 0.000000, 0.683319, 0.000000;;, + 210;3; 0.000000, 0.683319, 0.000000;;, + 211;3;-0.000000, 0.683319,-0.000000;;, + 212;3;-0.000000, 0.683319,-0.000000;;, + 213;3; 0.000000, 0.683319,-0.000000;;, + 214;3;-0.000000, 0.683319, 0.000000;;, + 215;3; 0.000000, 0.683319, 0.000000;;, + 216;3;-0.000000, 0.683319, 0.000000;;, + 217;3;-0.000000, 0.683319, 0.000000;;, + 218;3;-0.000000, 0.683319,-0.000000;;, + 219;3;-0.000000, 0.683319,-0.000000;;, + 220;3;-0.000000, 0.683320,-0.000000;;, + 221;3;-0.000000, 0.683319, 0.000000;;, + 222;3; 0.000000, 0.683319, 0.000000;;, + 223;3; 0.000000, 0.683319,-0.000000;;, + 224;3; 0.000000, 0.683319, 0.000000;;, + 225;3; 0.000000, 0.683319, 0.000000;;, + 226;3;-0.000000, 0.683319,-0.000000;;, + 227;3; 0.000000, 0.683319,-0.000000;;, + 228;3; 0.000000, 0.683319, 0.000000;;, + 229;3;-0.000000, 0.683319, 0.000000;;, + 230;3;-0.000000, 0.683319,-0.000000;;, + 231;3; 0.000000, 0.683319, 0.000000;;, + 232;3;-0.000000, 0.683319, 0.000000;;, + 233;3;-0.000000, 0.683319,-0.000000;;, + 234;3; 0.000000, 0.683319,-0.000000;;, + 235;3; 0.000000, 0.683319,-0.000000;;, + 236;3;-0.000000, 0.683319,-0.000000;;, + 237;3; 0.000000, 0.683319, 0.000000;;, + 238;3;-0.000000, 0.683319,-0.000000;;, + 239;3; 0.000000, 0.683319, 0.000000;;, + 240;3; 0.000000, 0.683319, 0.000000;;, + 241;3; 0.000000, 0.683319, 0.000000;;, + 242;3; 0.000000, 0.683319, 0.000000;;, + 243;3; 0.000000, 0.683319, 0.000000;;, + 244;3; 0.000000, 0.683319, 0.000000;;, + 245;3; 0.000000, 0.683319, 0.000000;;, + 246;3; 0.000000, 0.683319, 0.000000;;, + 247;3; 0.000000, 0.683319, 0.000000;;, + 248;3; 0.000000, 0.683319, 0.000000;;, + 249;3; 0.000000, 0.683319, 0.000000;;; + } + } + Animation { + {Armature_Bone_024} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 1;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 2;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 3;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 4;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 5;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 6;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 7;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 8;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 9;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 10;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 11;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 12;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 13;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 14;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 15;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 16;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 17;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 18;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 19;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 20;4;-0.946563,-0.322516,-0.000012,-0.000000;;, + 21;4;-0.946459,-0.322813,-0.000049,-0.000001;;, + 22;4;-0.946284,-0.323309,-0.000111,-0.000002;;, + 23;4;-0.946041,-0.324002,-0.000198,-0.000004;;, + 24;4;-0.945731,-0.324883,-0.000308,-0.000006;;, + 25;4;-0.945361,-0.325937,-0.000440,-0.000009;;, + 26;4;-0.944938,-0.327141,-0.000590,-0.000012;;, + 27;4;-0.944472,-0.328467,-0.000755,-0.000015;;, + 28;4;-0.943976,-0.329878,-0.000932,-0.000019;;, + 29;4;-0.943465,-0.331333,-0.001113,-0.000022;;, + 30;4;-0.942954,-0.332789,-0.001295,-0.000026;;, + 31;4;-0.942458,-0.334200,-0.001471,-0.000030;;, + 32;4;-0.941992,-0.335525,-0.001637,-0.000033;;, + 33;4;-0.941569,-0.336730,-0.001787,-0.000036;;, + 34;4;-0.941199,-0.337784,-0.001919,-0.000038;;, + 35;4;-0.940889,-0.338664,-0.002029,-0.000041;;, + 36;4;-0.940646,-0.339357,-0.002115,-0.000042;;, + 37;4;-0.940471,-0.339854,-0.002177,-0.000044;;, + 38;4;-0.940367,-0.340151,-0.002214,-0.000044;;, + 39;4;-0.940333,-0.340249,-0.002227,-0.000045;;, + 40;4;-0.940343,-0.340233,-0.002224,-0.000045;;, + 41;4;-0.940378,-0.340176,-0.002217,-0.000044;;, + 42;4;-0.940438,-0.340071,-0.002203,-0.000044;;, + 43;4;-0.940529,-0.339905,-0.002181,-0.000044;;, + 44;4;-0.940651,-0.339667,-0.002150,-0.000043;;, + 45;4;-0.940808,-0.339345,-0.002108,-0.000042;;, + 46;4;-0.941004,-0.338924,-0.002053,-0.000041;;, + 47;4;-0.941238,-0.338393,-0.001985,-0.000040;;, + 48;4;-0.941513,-0.337742,-0.001902,-0.000038;;, + 49;4;-0.941828,-0.336961,-0.001803,-0.000036;;, + 50;4;-0.942182,-0.336046,-0.001688,-0.000034;;, + 51;4;-0.942573,-0.334995,-0.001556,-0.000031;;, + 52;4;-0.942998,-0.333810,-0.001407,-0.000028;;, + 53;4;-0.943453,-0.332497,-0.001244,-0.000025;;, + 54;4;-0.943934,-0.331061,-0.001065,-0.000021;;, + 55;4;-0.944437,-0.329514,-0.000874,-0.000018;;, + 56;4;-0.944959,-0.327866,-0.000670,-0.000013;;, + 57;4;-0.945495,-0.326127,-0.000456,-0.000009;;, + 58;4;-0.946042,-0.324307,-0.000232,-0.000005;;, + 59;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 60;4;-0.947182,-0.320398, 0.000247, 0.000005;;, + 61;4;-0.947817,-0.318183, 0.000518, 0.000010;;, + 62;4;-0.948503,-0.315774, 0.000813, 0.000016;;, + 63;4;-0.949240,-0.313171, 0.001131, 0.000023;;, + 64;4;-0.950025,-0.310377, 0.001473, 0.000030;;, + 65;4;-0.950859,-0.307397, 0.001837, 0.000037;;, + 66;4;-0.951741,-0.304234, 0.002223, 0.000045;;, + 67;4;-0.952667,-0.300896, 0.002631, 0.000053;;, + 68;4;-0.953636,-0.297391, 0.003058, 0.000061;;, + 69;4;-0.954645,-0.293730, 0.003505, 0.000070;;, + 70;4;-0.955691,-0.289925, 0.003969, 0.000080;;, + 71;4;-0.956770,-0.285989, 0.004449, 0.000089;;, + 72;4;-0.957877,-0.281940, 0.004943, 0.000099;;, + 73;4;-0.959008,-0.277794, 0.005448, 0.000109;;, + 74;4;-0.960158,-0.273572, 0.005962, 0.000120;;, + 75;4;-0.961320,-0.269296, 0.006483, 0.000130;;, + 76;4;-0.962489,-0.264987, 0.007008, 0.000141;;, + 77;4;-0.963659,-0.260671, 0.007534, 0.000151;;, + 78;4;-0.964822,-0.256372, 0.008058, 0.000162;;, + 79;4;-0.965972,-0.252114, 0.008576, 0.000172;;, + 80;4;-0.967103,-0.247924, 0.009086, 0.000182;;, + 81;4;-0.968207,-0.243826, 0.009585, 0.000192;;, + 82;4;-0.969279,-0.239844, 0.010070, 0.000202;;, + 83;4;-0.970313,-0.236001, 0.010538, 0.000211;;, + 84;4;-0.971303,-0.232316, 0.010987, 0.000220;;, + 85;4;-0.972245,-0.228811, 0.011413, 0.000229;;, + 86;4;-0.973133,-0.225501, 0.011816, 0.000237;;, + 87;4;-0.973964,-0.222402, 0.012193, 0.000245;;, + 88;4;-0.974734,-0.219526, 0.012543, 0.000252;;, + 89;4;-0.975441,-0.216886, 0.012865, 0.000258;;, + 90;4;-0.976083,-0.214487, 0.013156, 0.000264;;, + 91;4;-0.976658,-0.212338, 0.013418, 0.000269;;, + 92;4;-0.977164,-0.210442, 0.013649, 0.000274;;, + 93;4;-0.977602,-0.208803, 0.013848, 0.000278;;, + 94;4;-0.977971,-0.207421, 0.014016, 0.000281;;, + 95;4;-0.978271,-0.206296, 0.014153, 0.000284;;, + 96;4;-0.978503,-0.205427, 0.014259, 0.000286;;, + 97;4;-0.978668,-0.204810, 0.014334, 0.000287;;, + 98;4;-0.978765,-0.204444, 0.014378, 0.000288;;, + 99;4;-0.978798,-0.204322, 0.014393, 0.000289;;, + 100;4;-0.977917,-0.206530, 0.014114, 0.000283;;, + 101;4;-0.975180,-0.213386, 0.013245, 0.000266;;, + 102;4;-0.970531,-0.225034, 0.011769, 0.000236;;, + 103;4;-0.964087,-0.241176, 0.009724, 0.000195;;, + 104;4;-0.956199,-0.260939, 0.007221, 0.000145;;, + 105;4;-0.947423,-0.282925, 0.004436, 0.000089;;, + 106;4;-0.938406,-0.305513, 0.001574, 0.000032;;, + 107;4;-0.929731,-0.327247,-0.001179,-0.000024;;, + 108;4;-0.921813,-0.347085,-0.003693,-0.000074;;, + 109;4;-0.914886,-0.364439,-0.005891,-0.000118;;, + 110;4;-0.907959,-0.381793,-0.008089,-0.000162;;, + 111;4;-0.900040,-0.401631,-0.010603,-0.000213;;, + 112;4;-0.891365,-0.423365,-0.013356,-0.000268;;, + 113;4;-0.882348,-0.445954,-0.016218,-0.000325;;, + 114;4;-0.873572,-0.467939,-0.019003,-0.000381;;, + 115;4;-0.865684,-0.487702,-0.021506,-0.000431;;, + 116;4;-0.859241,-0.503845,-0.023551,-0.000472;;, + 117;4;-0.854591,-0.515492,-0.025027,-0.000502;;, + 118;4;-0.851854,-0.522349,-0.025896,-0.000519;;, + 119;4;-0.850973,-0.524556,-0.026175,-0.000525;;, + 120;4;-0.851854,-0.522349,-0.025896,-0.000519;;, + 121;4;-0.854591,-0.515492,-0.025027,-0.000502;;, + 122;4;-0.859240,-0.503845,-0.023551,-0.000472;;, + 123;4;-0.865684,-0.487702,-0.021506,-0.000431;;, + 124;4;-0.873572,-0.467939,-0.019003,-0.000381;;, + 125;4;-0.882348,-0.445954,-0.016218,-0.000325;;, + 126;4;-0.891365,-0.423365,-0.013356,-0.000268;;, + 127;4;-0.900040,-0.401631,-0.010603,-0.000213;;, + 128;4;-0.907959,-0.381793,-0.008089,-0.000162;;, + 129;4;-0.914886,-0.364439,-0.005891,-0.000118;;, + 130;4;-0.921813,-0.347085,-0.003693,-0.000074;;, + 131;4;-0.929731,-0.327247,-0.001179,-0.000024;;, + 132;4;-0.938406,-0.305513, 0.001574, 0.000032;;, + 133;4;-0.947423,-0.282925, 0.004436, 0.000089;;, + 134;4;-0.956199,-0.260939, 0.007221, 0.000145;;, + 135;4;-0.964087,-0.241176, 0.009724, 0.000195;;, + 136;4;-0.970531,-0.225034, 0.011769, 0.000236;;, + 137;4;-0.975180,-0.213386, 0.013245, 0.000266;;, + 138;4;-0.977917,-0.206530, 0.014114, 0.000283;;, + 139;4;-0.978798,-0.204322, 0.014393, 0.000289;;, + 140;4;-0.975180,-0.213386, 0.013245, 0.000266;;, + 141;4;-0.964087,-0.241176, 0.009724, 0.000195;;, + 142;4;-0.947423,-0.282925, 0.004436, 0.000089;;, + 143;4;-0.929731,-0.327247,-0.001179,-0.000024;;, + 144;4;-0.914886,-0.364439,-0.005891,-0.000118;;, + 145;4;-0.900040,-0.401631,-0.010603,-0.000213;;, + 146;4;-0.882348,-0.445954,-0.016218,-0.000325;;, + 147;4;-0.865684,-0.487702,-0.021506,-0.000431;;, + 148;4;-0.854591,-0.515492,-0.025027,-0.000502;;, + 149;4;-0.850973,-0.524556,-0.026175,-0.000525;;, + 150;4;-0.854591,-0.515492,-0.025027,-0.000502;;, + 151;4;-0.865684,-0.487702,-0.021506,-0.000431;;, + 152;4;-0.882348,-0.445954,-0.016218,-0.000325;;, + 153;4;-0.900040,-0.401631,-0.010603,-0.000213;;, + 154;4;-0.914886,-0.364439,-0.005891,-0.000118;;, + 155;4;-0.929731,-0.327247,-0.001179,-0.000024;;, + 156;4;-0.947423,-0.282925, 0.004436, 0.000089;;, + 157;4;-0.964087,-0.241176, 0.009724, 0.000195;;, + 158;4;-0.975180,-0.213386, 0.013245, 0.000266;;, + 159;4;-0.978798,-0.204322, 0.014393, 0.000289;;, + 160;4;-0.978620,-0.204973, 0.014314, 0.000287;;, + 161;4;-0.978084,-0.206941, 0.014074, 0.000282;;, + 162;4;-0.977187,-0.210230, 0.013673, 0.000274;;, + 163;4;-0.975936,-0.214820, 0.013114, 0.000263;;, + 164;4;-0.974345,-0.220653, 0.012403, 0.000249;;, + 165;4;-0.972442,-0.227631, 0.011552, 0.000232;;, + 166;4;-0.970268,-0.235607, 0.010580, 0.000212;;, + 167;4;-0.967874,-0.244388, 0.009510, 0.000191;;, + 168;4;-0.965325,-0.253733, 0.008371, 0.000168;;, + 169;4;-0.962698,-0.263370, 0.007197, 0.000144;;, + 170;4;-0.960070,-0.273007, 0.006022, 0.000121;;, + 171;4;-0.957522,-0.282352, 0.004883, 0.000098;;, + 172;4;-0.955128,-0.291132, 0.003813, 0.000076;;, + 173;4;-0.952953,-0.299109, 0.002841, 0.000057;;, + 174;4;-0.951050,-0.306087, 0.001990, 0.000040;;, + 175;4;-0.949460,-0.311920, 0.001279, 0.000026;;, + 176;4;-0.948208,-0.316510, 0.000720, 0.000014;;, + 177;4;-0.947312,-0.319799, 0.000319, 0.000006;;, + 178;4;-0.946775,-0.321766, 0.000079, 0.000002;;, + 179;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 180;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 181;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 182;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 183;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 184;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 185;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 186;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 187;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 188;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 189;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 190;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 191;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 192;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 193;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 194;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 195;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 196;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 197;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 198;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 199;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 200;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 201;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 202;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 203;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 204;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 205;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 206;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 207;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 208;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 209;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 210;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 211;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 212;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 213;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 214;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 215;4;-0.948108,-0.306233,-0.018788,-0.007508;;, + 216;4;-0.952361,-0.260647,-0.071707,-0.028655;;, + 217;4;-0.957822,-0.202115,-0.139655,-0.055807;;, + 218;4;-0.962075,-0.156528,-0.192575,-0.076954;;, + 219;4;-0.963585,-0.140344,-0.211363,-0.084462;;, + 220;4;-0.962075,-0.156528,-0.192575,-0.076954;;, + 221;4;-0.957822,-0.202115,-0.139655,-0.055807;;, + 222;4;-0.952361,-0.260647,-0.071707,-0.028655;;, + 223;4;-0.948108,-0.306233,-0.018788,-0.007508;;, + 224;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 225;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 226;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 227;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 228;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 229;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 230;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 231;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 232;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 233;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 234;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 235;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 236;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 237;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 238;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 239;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 240;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 241;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 242;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 243;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 244;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 245;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 246;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 247;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 248;4;-0.946598,-0.322417,-0.000000,-0.000000;;, + 249;4;-0.946598,-0.322417,-0.000000,-0.000000;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3; 0.000000, 1.294482, 0.000000;;, + 1;3; 0.000000, 1.294482, 0.000000;;, + 2;3; 0.000000, 1.294482, 0.000000;;, + 3;3; 0.000000, 1.294482, 0.000000;;, + 4;3; 0.000000, 1.294482, 0.000000;;, + 5;3; 0.000000, 1.294482, 0.000000;;, + 6;3; 0.000000, 1.294482, 0.000000;;, + 7;3; 0.000000, 1.294482, 0.000000;;, + 8;3; 0.000000, 1.294482, 0.000000;;, + 9;3; 0.000000, 1.294482, 0.000000;;, + 10;3; 0.000000, 1.294482, 0.000000;;, + 11;3; 0.000000, 1.294482, 0.000000;;, + 12;3; 0.000000, 1.294482, 0.000000;;, + 13;3; 0.000000, 1.294482, 0.000000;;, + 14;3; 0.000000, 1.294482, 0.000000;;, + 15;3; 0.000000, 1.294482, 0.000000;;, + 16;3; 0.000000, 1.294482, 0.000000;;, + 17;3; 0.000000, 1.294482, 0.000000;;, + 18;3; 0.000000, 1.294482, 0.000000;;, + 19;3; 0.000000, 1.294482, 0.000000;;, + 20;3; 0.000000, 1.294482, 0.000000;;, + 21;3; 0.000000, 1.294482, 0.000000;;, + 22;3; 0.000000, 1.294482, 0.000000;;, + 23;3; 0.000000, 1.294482, 0.000000;;, + 24;3; 0.000000, 1.294482, 0.000000;;, + 25;3; 0.000000, 1.294482, 0.000000;;, + 26;3; 0.000000, 1.294482, 0.000000;;, + 27;3; 0.000000, 1.294482, 0.000000;;, + 28;3; 0.000000, 1.294482, 0.000000;;, + 29;3; 0.000000, 1.294482, 0.000000;;, + 30;3; 0.000000, 1.294482, 0.000000;;, + 31;3; 0.000000, 1.294482, 0.000000;;, + 32;3; 0.000000, 1.294482, 0.000000;;, + 33;3; 0.000000, 1.294482, 0.000000;;, + 34;3; 0.000000, 1.294482, 0.000000;;, + 35;3; 0.000000, 1.294482, 0.000000;;, + 36;3; 0.000000, 1.294482, 0.000000;;, + 37;3; 0.000000, 1.294482, 0.000000;;, + 38;3; 0.000000, 1.294482, 0.000000;;, + 39;3; 0.000000, 1.294482, 0.000000;;, + 40;3; 0.000000, 1.294482, 0.000000;;, + 41;3; 0.000000, 1.294482, 0.000000;;, + 42;3; 0.000000, 1.294482, 0.000000;;, + 43;3; 0.000000, 1.294482, 0.000000;;, + 44;3; 0.000000, 1.294482, 0.000000;;, + 45;3; 0.000000, 1.294482, 0.000000;;, + 46;3; 0.000000, 1.294482, 0.000000;;, + 47;3; 0.000000, 1.294482, 0.000000;;, + 48;3; 0.000000, 1.294482, 0.000000;;, + 49;3; 0.000000, 1.294482, 0.000000;;, + 50;3; 0.000000, 1.294482, 0.000000;;, + 51;3; 0.000000, 1.294482, 0.000000;;, + 52;3; 0.000000, 1.294482, 0.000000;;, + 53;3; 0.000000, 1.294482, 0.000000;;, + 54;3; 0.000000, 1.294482, 0.000000;;, + 55;3; 0.000000, 1.294482, 0.000000;;, + 56;3; 0.000000, 1.294482, 0.000000;;, + 57;3; 0.000000, 1.294482, 0.000000;;, + 58;3; 0.000000, 1.294482, 0.000000;;, + 59;3; 0.000000, 1.294482, 0.000000;;, + 60;3; 0.000000, 1.294482, 0.000000;;, + 61;3; 0.000000, 1.294482, 0.000000;;, + 62;3; 0.000000, 1.294481,-0.000000;;, + 63;3;-0.000000, 1.294482, 0.000000;;, + 64;3;-0.000000, 1.294482,-0.000000;;, + 65;3; 0.000000, 1.294482,-0.000000;;, + 66;3; 0.000000, 1.294482, 0.000000;;, + 67;3; 0.000000, 1.294482, 0.000000;;, + 68;3; 0.000000, 1.294482, 0.000000;;, + 69;3; 0.000000, 1.294482, 0.000000;;, + 70;3; 0.000000, 1.294482, 0.000000;;, + 71;3;-0.000000, 1.294482,-0.000000;;, + 72;3; 0.000000, 1.294481,-0.000000;;, + 73;3;-0.000000, 1.294482, 0.000000;;, + 74;3;-0.000000, 1.294482, 0.000000;;, + 75;3; 0.000000, 1.294482, 0.000000;;, + 76;3; 0.000000, 1.294482, 0.000000;;, + 77;3; 0.000000, 1.294482,-0.000000;;, + 78;3; 0.000000, 1.294481, 0.000000;;, + 79;3; 0.000000, 1.294482, 0.000000;;, + 80;3;-0.000000, 1.294482, 0.000000;;, + 81;3; 0.000000, 1.294482, 0.000000;;, + 82;3; 0.000000, 1.294482, 0.000000;;, + 83;3; 0.000000, 1.294482, 0.000000;;, + 84;3;-0.000000, 1.294482, 0.000000;;, + 85;3; 0.000000, 1.294482, 0.000000;;, + 86;3; 0.000000, 1.294482, 0.000000;;, + 87;3; 0.000000, 1.294482,-0.000000;;, + 88;3; 0.000000, 1.294482,-0.000000;;, + 89;3; 0.000000, 1.294482,-0.000000;;, + 90;3; 0.000000, 1.294482, 0.000000;;, + 91;3; 0.000000, 1.294482, 0.000000;;, + 92;3; 0.000000, 1.294482, 0.000000;;, + 93;3; 0.000000, 1.294482, 0.000000;;, + 94;3; 0.000000, 1.294481, 0.000000;;, + 95;3; 0.000000, 1.294482, 0.000000;;, + 96;3;-0.000000, 1.294482,-0.000000;;, + 97;3; 0.000000, 1.294482, 0.000000;;, + 98;3; 0.000000, 1.294482, 0.000000;;, + 99;3; 0.000000, 1.294482, 0.000000;;, + 100;3; 0.000000, 1.294482,-0.000000;;, + 101;3; 0.000000, 1.294481, 0.000000;;, + 102;3; 0.000000, 1.294482, 0.000000;;, + 103;3; 0.000000, 1.294482, 0.000000;;, + 104;3; 0.000000, 1.294482,-0.000000;;, + 105;3; 0.000000, 1.294482, 0.000000;;, + 106;3; 0.000000, 1.294482,-0.000000;;, + 107;3; 0.000000, 1.294482, 0.000000;;, + 108;3; 0.000000, 1.294481,-0.000000;;, + 109;3; 0.000000, 1.294482, 0.000000;;, + 110;3;-0.000000, 1.294482,-0.000000;;, + 111;3;-0.000000, 1.294482,-0.000000;;, + 112;3;-0.000000, 1.294482, 0.000000;;, + 113;3;-0.000000, 1.294482,-0.000000;;, + 114;3; 0.000000, 1.294482,-0.000000;;, + 115;3;-0.000000, 1.294482,-0.000000;;, + 116;3; 0.000000, 1.294482, 0.000000;;, + 117;3;-0.000000, 1.294482, 0.000000;;, + 118;3;-0.000000, 1.294481, 0.000000;;, + 119;3;-0.000000, 1.294482,-0.000000;;, + 120;3;-0.000000, 1.294482, 0.000000;;, + 121;3;-0.000000, 1.294482,-0.000000;;, + 122;3; 0.000000, 1.294482,-0.000000;;, + 123;3;-0.000000, 1.294481,-0.000000;;, + 124;3; 0.000000, 1.294482,-0.000000;;, + 125;3; 0.000000, 1.294482,-0.000000;;, + 126;3; 0.000000, 1.294482,-0.000000;;, + 127;3; 0.000000, 1.294482, 0.000000;;, + 128;3; 0.000000, 1.294482, 0.000000;;, + 129;3;-0.000000, 1.294482, 0.000000;;, + 130;3; 0.000000, 1.294482, 0.000000;;, + 131;3; 0.000000, 1.294482, 0.000000;;, + 132;3; 0.000000, 1.294481, 0.000000;;, + 133;3; 0.000000, 1.294482,-0.000000;;, + 134;3;-0.000000, 1.294482, 0.000000;;, + 135;3; 0.000000, 1.294482,-0.000000;;, + 136;3; 0.000000, 1.294482, 0.000000;;, + 137;3;-0.000000, 1.294482,-0.000000;;, + 138;3;-0.000000, 1.294482,-0.000000;;, + 139;3; 0.000000, 1.294482, 0.000000;;, + 140;3; 0.000000, 1.294481, 0.000000;;, + 141;3; 0.000000, 1.294482, 0.000000;;, + 142;3; 0.000000, 1.294482, 0.000000;;, + 143;3; 0.000000, 1.294482, 0.000000;;, + 144;3; 0.000000, 1.294482, 0.000000;;, + 145;3;-0.000000, 1.294482,-0.000000;;, + 146;3;-0.000000, 1.294482,-0.000000;;, + 147;3;-0.000000, 1.294482,-0.000000;;, + 148;3;-0.000000, 1.294482, 0.000000;;, + 149;3;-0.000000, 1.294482,-0.000000;;, + 150;3;-0.000000, 1.294482,-0.000000;;, + 151;3;-0.000000, 1.294481,-0.000000;;, + 152;3; 0.000000, 1.294482,-0.000000;;, + 153;3; 0.000000, 1.294482, 0.000000;;, + 154;3;-0.000000, 1.294482, 0.000000;;, + 155;3; 0.000000, 1.294482, 0.000000;;, + 156;3; 0.000000, 1.294482,-0.000000;;, + 157;3; 0.000000, 1.294482,-0.000000;;, + 158;3;-0.000000, 1.294482,-0.000000;;, + 159;3; 0.000000, 1.294482, 0.000000;;, + 160;3;-0.000000, 1.294482, 0.000000;;, + 161;3;-0.000000, 1.294482, 0.000000;;, + 162;3; 0.000000, 1.294482,-0.000000;;, + 163;3; 0.000000, 1.294482, 0.000000;;, + 164;3;-0.000000, 1.294482, 0.000000;;, + 165;3;-0.000000, 1.294481,-0.000000;;, + 166;3;-0.000000, 1.294482, 0.000000;;, + 167;3;-0.000000, 1.294482, 0.000000;;, + 168;3; 0.000000, 1.294482, 0.000000;;, + 169;3; 0.000000, 1.294482, 0.000000;;, + 170;3; 0.000000, 1.294482,-0.000000;;, + 171;3; 0.000000, 1.294481, 0.000000;;, + 172;3;-0.000000, 1.294482, 0.000000;;, + 173;3;-0.000000, 1.294481, 0.000000;;, + 174;3; 0.000000, 1.294482, 0.000000;;, + 175;3;-0.000000, 1.294482, 0.000000;;, + 176;3; 0.000000, 1.294482,-0.000000;;, + 177;3; 0.000000, 1.294482, 0.000000;;, + 178;3;-0.000000, 1.294482, 0.000000;;, + 179;3; 0.000000, 1.294482, 0.000000;;, + 180;3; 0.000000, 1.294482, 0.000000;;, + 181;3;-0.000000, 1.294482, 0.000000;;, + 182;3;-0.000000, 1.294482,-0.000000;;, + 183;3;-0.000000, 1.294481,-0.000000;;, + 184;3;-0.000000, 1.294482, 0.000000;;, + 185;3;-0.000000, 1.294481,-0.000000;;, + 186;3; 0.000000, 1.294482,-0.000000;;, + 187;3; 0.000000, 1.294482,-0.000000;;, + 188;3; 0.000000, 1.294482,-0.000000;;, + 189;3;-0.000000, 1.294481, 0.000000;;, + 190;3;-0.000000, 1.294482, 0.000000;;, + 191;3;-0.000000, 1.294482,-0.000000;;, + 192;3;-0.000000, 1.294482, 0.000000;;, + 193;3;-0.000000, 1.294482, 0.000000;;, + 194;3; 0.000000, 1.294482, 0.000000;;, + 195;3;-0.000000, 1.294481,-0.000000;;, + 196;3; 0.000000, 1.294481, 0.000000;;, + 197;3;-0.000000, 1.294482,-0.000000;;, + 198;3;-0.000000, 1.294482, 0.000000;;, + 199;3; 0.000000, 1.294482, 0.000000;;, + 200;3; 0.000000, 1.294482, 0.000000;;, + 201;3; 0.000000, 1.294482, 0.000000;;, + 202;3; 0.000000, 1.294482, 0.000000;;, + 203;3; 0.000000, 1.294482, 0.000000;;, + 204;3; 0.000000, 1.294482, 0.000000;;, + 205;3; 0.000000, 1.294482, 0.000000;;, + 206;3; 0.000000, 1.294482, 0.000000;;, + 207;3; 0.000000, 1.294482, 0.000000;;, + 208;3; 0.000000, 1.294482, 0.000000;;, + 209;3; 0.000000, 1.294482, 0.000000;;, + 210;3; 0.000000, 1.294482,-0.000000;;, + 211;3; 0.000000, 1.294481, 0.000000;;, + 212;3;-0.000000, 1.294482, 0.000000;;, + 213;3; 0.000000, 1.294482,-0.000000;;, + 214;3;-0.000000, 1.294482, 0.000000;;, + 215;3; 0.000000, 1.294482,-0.000000;;, + 216;3;-0.000000, 1.294482, 0.000000;;, + 217;3;-0.000000, 1.294481,-0.000000;;, + 218;3;-0.000000, 1.294482, 0.000000;;, + 219;3; 0.000000, 1.294482,-0.000000;;, + 220;3;-0.000000, 1.294482,-0.000000;;, + 221;3; 0.000000, 1.294482, 0.000000;;, + 222;3;-0.000000, 1.294482,-0.000000;;, + 223;3;-0.000000, 1.294481,-0.000000;;, + 224;3;-0.000000, 1.294481, 0.000000;;, + 225;3; 0.000000, 1.294481,-0.000000;;, + 226;3; 0.000000, 1.294482,-0.000000;;, + 227;3;-0.000000, 1.294481, 0.000000;;, + 228;3; 0.000000, 1.294482, 0.000000;;, + 229;3; 0.000000, 1.294482, 0.000000;;, + 230;3; 0.000000, 1.294482, 0.000000;;, + 231;3;-0.000000, 1.294482,-0.000000;;, + 232;3; 0.000000, 1.294482,-0.000000;;, + 233;3; 0.000000, 1.294482,-0.000000;;, + 234;3;-0.000000, 1.294481, 0.000000;;, + 235;3; 0.000000, 1.294482, 0.000000;;, + 236;3; 0.000000, 1.294482, 0.000000;;, + 237;3;-0.000000, 1.294482, 0.000000;;, + 238;3; 0.000000, 1.294482, 0.000000;;, + 239;3; 0.000000, 1.294482, 0.000000;;, + 240;3; 0.000000, 1.294482, 0.000000;;, + 241;3; 0.000000, 1.294482, 0.000000;;, + 242;3; 0.000000, 1.294482, 0.000000;;, + 243;3; 0.000000, 1.294482, 0.000000;;, + 244;3; 0.000000, 1.294482, 0.000000;;, + 245;3; 0.000000, 1.294482, 0.000000;;, + 246;3; 0.000000, 1.294482, 0.000000;;, + 247;3; 0.000000, 1.294482, 0.000000;;, + 248;3; 0.000000, 1.294482, 0.000000;;, + 249;3; 0.000000, 1.294482, 0.000000;;; + } + } + Animation { + {Armature_Bone_028} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 1;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 2;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 3;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 4;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 5;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 6;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 7;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 8;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 9;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 10;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 11;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 12;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 13;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 14;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 15;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 16;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 17;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 18;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 19;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 20;4;-0.979305,-0.202173, 0.000069, 0.000043;;, + 21;4;-0.979598,-0.200095, 0.000280, 0.000172;;, + 22;4;-0.980089,-0.196620, 0.000631, 0.000389;;, + 23;4;-0.980774,-0.191771, 0.001121, 0.000691;;, + 24;4;-0.981645,-0.185609, 0.001744, 0.001076;;, + 25;4;-0.982687,-0.178237, 0.002489, 0.001535;;, + 26;4;-0.983877,-0.169811, 0.003341, 0.002060;;, + 27;4;-0.985188,-0.160535, 0.004279, 0.002639;;, + 28;4;-0.986583,-0.150663, 0.005277, 0.003254;;, + 29;4;-0.988021,-0.140482, 0.006306, 0.003889;;, + 30;4;-0.989460,-0.130301, 0.007335, 0.004523;;, + 31;4;-0.990855,-0.120429, 0.008333, 0.005139;;, + 32;4;-0.992165,-0.111153, 0.009270, 0.005717;;, + 33;4;-0.993356,-0.102727, 0.010122, 0.006242;;, + 34;4;-0.994398,-0.095355, 0.010867, 0.006702;;, + 35;4;-0.995268,-0.089193, 0.011490, 0.007086;;, + 36;4;-0.995953,-0.084344, 0.011981, 0.007388;;, + 37;4;-0.996444,-0.080869, 0.012332, 0.007605;;, + 38;4;-0.996738,-0.078791, 0.012542, 0.007735;;, + 39;4;-0.996835,-0.078103, 0.012611, 0.007777;;, + 40;4;-0.996738,-0.078791, 0.012542, 0.007735;;, + 41;4;-0.996444,-0.080869, 0.012332, 0.007605;;, + 42;4;-0.995953,-0.084344, 0.011981, 0.007388;;, + 43;4;-0.995268,-0.089193, 0.011490, 0.007086;;, + 44;4;-0.994398,-0.095355, 0.010867, 0.006702;;, + 45;4;-0.993356,-0.102727, 0.010122, 0.006242;;, + 46;4;-0.992165,-0.111153, 0.009270, 0.005717;;, + 47;4;-0.990855,-0.120429, 0.008333, 0.005139;;, + 48;4;-0.989460,-0.130301, 0.007335, 0.004523;;, + 49;4;-0.988021,-0.140482, 0.006306, 0.003889;;, + 50;4;-0.986583,-0.150663, 0.005277, 0.003254;;, + 51;4;-0.985188,-0.160535, 0.004279, 0.002639;;, + 52;4;-0.983877,-0.169811, 0.003341, 0.002060;;, + 53;4;-0.982687,-0.178237, 0.002489, 0.001535;;, + 54;4;-0.981645,-0.185609, 0.001744, 0.001075;;, + 55;4;-0.980774,-0.191771, 0.001121, 0.000691;;, + 56;4;-0.980089,-0.196620, 0.000631, 0.000389;;, + 57;4;-0.979598,-0.200095, 0.000280, 0.000172;;, + 58;4;-0.979305,-0.202173, 0.000069, 0.000043;;, + 59;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 60;4;-0.979226,-0.202749, 0.000011, 0.000007;;, + 61;4;-0.979281,-0.202412, 0.000046, 0.000028;;, + 62;4;-0.979374,-0.201848, 0.000103, 0.000063;;, + 63;4;-0.979503,-0.201056, 0.000183, 0.000113;;, + 64;4;-0.979671,-0.200036, 0.000287, 0.000177;;, + 65;4;-0.979875,-0.198789, 0.000413, 0.000255;;, + 66;4;-0.980116,-0.197317, 0.000563, 0.000347;;, + 67;4;-0.980393,-0.195625, 0.000735, 0.000453;;, + 68;4;-0.980706,-0.193718, 0.000928, 0.000573;;, + 69;4;-0.981052,-0.191604, 0.001143, 0.000705;;, + 70;4;-0.981431,-0.189293, 0.001378, 0.000850;;, + 71;4;-0.981841,-0.186795, 0.001631, 0.001006;;, + 72;4;-0.982278,-0.184124, 0.001903, 0.001173;;, + 73;4;-0.982742,-0.181297, 0.002190, 0.001350;;, + 74;4;-0.983228,-0.178331, 0.002491, 0.001536;;, + 75;4;-0.983734,-0.175245, 0.002804, 0.001729;;, + 76;4;-0.984255,-0.172062, 0.003128, 0.001929;;, + 77;4;-0.984789,-0.168804, 0.003458, 0.002133;;, + 78;4;-0.985332,-0.165495, 0.003794, 0.002340;;, + 79;4;-0.985878,-0.162161, 0.004133, 0.002549;;, + 80;4;-0.986425,-0.158827, 0.004471, 0.002758;;, + 81;4;-0.986967,-0.155518, 0.004807, 0.002965;;, + 82;4;-0.987501,-0.152260, 0.005138, 0.003169;;, + 83;4;-0.988023,-0.149077, 0.005462, 0.003368;;, + 84;4;-0.988528,-0.145991, 0.005775, 0.003561;;, + 85;4;-0.989015,-0.143025, 0.006076, 0.003747;;, + 86;4;-0.989478,-0.140198, 0.006363, 0.003924;;, + 87;4;-0.989916,-0.137527, 0.006634, 0.004091;;, + 88;4;-0.990325,-0.135029, 0.006888, 0.004248;;, + 89;4;-0.990704,-0.132717, 0.007123, 0.004393;;, + 90;4;-0.991050,-0.130603, 0.007338, 0.004525;;, + 91;4;-0.991363,-0.128697, 0.007531, 0.004644;;, + 92;4;-0.991640,-0.127004, 0.007703, 0.004750;;, + 93;4;-0.991881,-0.125533, 0.007852, 0.004843;;, + 94;4;-0.992086,-0.124286, 0.007979, 0.004921;;, + 95;4;-0.992253,-0.123266, 0.008083, 0.004985;;, + 96;4;-0.992383,-0.122474, 0.008163, 0.005034;;, + 97;4;-0.992475,-0.121910, 0.008220, 0.005070;;, + 98;4;-0.992530,-0.121573, 0.008255, 0.005091;;, + 99;4;-0.992549,-0.121461, 0.008266, 0.005098;;, + 100;4;-0.992340,-0.122500, 0.008160, 0.005032;;, + 101;4;-0.991690,-0.125726, 0.007830, 0.004829;;, + 102;4;-0.990587,-0.131207, 0.007269, 0.004483;;, + 103;4;-0.989058,-0.138803, 0.006492, 0.004003;;, + 104;4;-0.987186,-0.148103, 0.005540, 0.003417;;, + 105;4;-0.985104,-0.158448, 0.004482, 0.002764;;, + 106;4;-0.982965,-0.169078, 0.003394, 0.002093;;, + 107;4;-0.980906,-0.179305, 0.002348, 0.001448;;, + 108;4;-0.979027,-0.188640, 0.001393, 0.000859;;, + 109;4;-0.977383,-0.196806, 0.000557, 0.000344;;, + 110;4;-0.975740,-0.204972,-0.000278,-0.000171;;, + 111;4;-0.973861,-0.214307,-0.001233,-0.000760;;, + 112;4;-0.971802,-0.224535,-0.002279,-0.001406;;, + 113;4;-0.969663,-0.235164,-0.003367,-0.002076;;, + 114;4;-0.967580,-0.245510,-0.004425,-0.002729;;, + 115;4;-0.965708,-0.254809,-0.005377,-0.003316;;, + 116;4;-0.964180,-0.262405,-0.006154,-0.003795;;, + 117;4;-0.963076,-0.267886,-0.006715,-0.004141;;, + 118;4;-0.962427,-0.271113,-0.007045,-0.004344;;, + 119;4;-0.962218,-0.272151,-0.007151,-0.004410;;, + 120;4;-0.962427,-0.271113,-0.007045,-0.004344;;, + 121;4;-0.963076,-0.267886,-0.006715,-0.004141;;, + 122;4;-0.964180,-0.262405,-0.006154,-0.003795;;, + 123;4;-0.965708,-0.254809,-0.005377,-0.003316;;, + 124;4;-0.967580,-0.245510,-0.004425,-0.002729;;, + 125;4;-0.969663,-0.235164,-0.003367,-0.002076;;, + 126;4;-0.971802,-0.224535,-0.002279,-0.001406;;, + 127;4;-0.973861,-0.214307,-0.001233,-0.000760;;, + 128;4;-0.975740,-0.204972,-0.000278,-0.000171;;, + 129;4;-0.977383,-0.196806, 0.000557, 0.000344;;, + 130;4;-0.979027,-0.188640, 0.001393, 0.000859;;, + 131;4;-0.980906,-0.179305, 0.002348, 0.001448;;, + 132;4;-0.982964,-0.169078, 0.003394, 0.002093;;, + 133;4;-0.985104,-0.158448, 0.004482, 0.002764;;, + 134;4;-0.987186,-0.148103, 0.005540, 0.003417;;, + 135;4;-0.989058,-0.138803, 0.006492, 0.004003;;, + 136;4;-0.990587,-0.131207, 0.007269, 0.004483;;, + 137;4;-0.991690,-0.125726, 0.007830, 0.004829;;, + 138;4;-0.992340,-0.122500, 0.008160, 0.005032;;, + 139;4;-0.992549,-0.121461, 0.008266, 0.005098;;, + 140;4;-0.991690,-0.125726, 0.007830, 0.004829;;, + 141;4;-0.989058,-0.138803, 0.006492, 0.004003;;, + 142;4;-0.985104,-0.158448, 0.004482, 0.002764;;, + 143;4;-0.980906,-0.179305, 0.002348, 0.001448;;, + 144;4;-0.977383,-0.196806, 0.000557, 0.000344;;, + 145;4;-0.973861,-0.214307,-0.001233,-0.000760;;, + 146;4;-0.969663,-0.235164,-0.003367,-0.002076;;, + 147;4;-0.965708,-0.254809,-0.005377,-0.003316;;, + 148;4;-0.963076,-0.267886,-0.006715,-0.004141;;, + 149;4;-0.962218,-0.272151,-0.007151,-0.004410;;, + 150;4;-0.963076,-0.267886,-0.006715,-0.004141;;, + 151;4;-0.965708,-0.254809,-0.005377,-0.003316;;, + 152;4;-0.969663,-0.235164,-0.003367,-0.002076;;, + 153;4;-0.973861,-0.214307,-0.001233,-0.000760;;, + 154;4;-0.977383,-0.196806, 0.000557, 0.000344;;, + 155;4;-0.980906,-0.179305, 0.002348, 0.001448;;, + 156;4;-0.985104,-0.158448, 0.004482, 0.002764;;, + 157;4;-0.989058,-0.138803, 0.006492, 0.004003;;, + 158;4;-0.991690,-0.125726, 0.007830, 0.004829;;, + 159;4;-0.992549,-0.121461, 0.008266, 0.005098;;, + 160;4;-0.992475,-0.121910, 0.008220, 0.005070;;, + 161;4;-0.992253,-0.123266, 0.008083, 0.004985;;, + 162;4;-0.991881,-0.125533, 0.007852, 0.004843;;, + 163;4;-0.991363,-0.128697, 0.007531, 0.004644;;, + 164;4;-0.990704,-0.132717, 0.007123, 0.004393;;, + 165;4;-0.989916,-0.137527, 0.006634, 0.004091;;, + 166;4;-0.989015,-0.143025, 0.006076, 0.003747;;, + 167;4;-0.988023,-0.149077, 0.005462, 0.003368;;, + 168;4;-0.986967,-0.155518, 0.004807, 0.002965;;, + 169;4;-0.985878,-0.162161, 0.004133, 0.002549;;, + 170;4;-0.984789,-0.168804, 0.003458, 0.002133;;, + 171;4;-0.983734,-0.175245, 0.002804, 0.001729;;, + 172;4;-0.982742,-0.181297, 0.002190, 0.001350;;, + 173;4;-0.981841,-0.186795, 0.001631, 0.001006;;, + 174;4;-0.981052,-0.191604, 0.001143, 0.000705;;, + 175;4;-0.980393,-0.195625, 0.000735, 0.000453;;, + 176;4;-0.979875,-0.198789, 0.000413, 0.000255;;, + 177;4;-0.979503,-0.201056, 0.000183, 0.000113;;, + 178;4;-0.979281,-0.202412, 0.000046, 0.000028;;, + 179;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 180;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 181;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 182;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 183;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 184;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 185;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 186;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 187;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 188;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 189;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 190;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 191;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 192;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 193;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 194;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 195;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 196;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 197;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 198;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 199;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 200;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 201;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 202;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 203;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 204;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 205;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 206;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 207;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 208;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 209;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 210;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 211;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 212;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 213;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 214;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 215;4;-0.978537,-0.185986,-0.012829,-0.016596;;, + 216;4;-0.976650,-0.138453,-0.048965,-0.063343;;, + 217;4;-0.974227,-0.077422,-0.095363,-0.123365;;, + 218;4;-0.972339,-0.029890,-0.131499,-0.170111;;, + 219;4;-0.971669,-0.013015,-0.144328,-0.186707;;, + 220;4;-0.972339,-0.029890,-0.131499,-0.170111;;, + 221;4;-0.974226,-0.077422,-0.095363,-0.123365;;, + 222;4;-0.976650,-0.138453,-0.048965,-0.063343;;, + 223;4;-0.978537,-0.185986,-0.012829,-0.016596;;, + 224;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 225;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 226;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 227;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 228;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 229;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 230;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 231;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 232;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 233;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 234;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 235;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 236;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 237;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 238;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 239;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 240;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 241;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 242;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 243;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 244;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 245;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 246;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 247;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 248;4;-0.979208,-0.202861,-0.000000,-0.000000;;, + 249;4;-0.979208,-0.202861,-0.000000,-0.000000;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3;-0.000000, 1.228822, 0.000000;;, + 1;3;-0.000000, 1.228822, 0.000000;;, + 2;3;-0.000000, 1.228822, 0.000000;;, + 3;3;-0.000000, 1.228822, 0.000000;;, + 4;3;-0.000000, 1.228822, 0.000000;;, + 5;3;-0.000000, 1.228822, 0.000000;;, + 6;3;-0.000000, 1.228822, 0.000000;;, + 7;3;-0.000000, 1.228822, 0.000000;;, + 8;3;-0.000000, 1.228822, 0.000000;;, + 9;3;-0.000000, 1.228822, 0.000000;;, + 10;3;-0.000000, 1.228822, 0.000000;;, + 11;3;-0.000000, 1.228822, 0.000000;;, + 12;3;-0.000000, 1.228822, 0.000000;;, + 13;3;-0.000000, 1.228822, 0.000000;;, + 14;3;-0.000000, 1.228822, 0.000000;;, + 15;3;-0.000000, 1.228822, 0.000000;;, + 16;3;-0.000000, 1.228822, 0.000000;;, + 17;3;-0.000000, 1.228822, 0.000000;;, + 18;3;-0.000000, 1.228822, 0.000000;;, + 19;3;-0.000000, 1.228822, 0.000000;;, + 20;3;-0.000000, 1.228822,-0.000000;;, + 21;3;-0.000000, 1.228822,-0.000000;;, + 22;3;-0.000000, 1.228822, 0.000000;;, + 23;3;-0.000000, 1.228822, 0.000000;;, + 24;3;-0.000000, 1.228822,-0.000000;;, + 25;3; 0.000000, 1.228822, 0.000000;;, + 26;3; 0.000000, 1.228822, 0.000000;;, + 27;3;-0.000000, 1.228822, 0.000000;;, + 28;3;-0.000000, 1.228822, 0.000000;;, + 29;3;-0.000000, 1.228822,-0.000000;;, + 30;3; 0.000000, 1.228822, 0.000000;;, + 31;3; 0.000000, 1.228822, 0.000000;;, + 32;3; 0.000000, 1.228822, 0.000000;;, + 33;3; 0.000000, 1.228822, 0.000000;;, + 34;3;-0.000000, 1.228822,-0.000000;;, + 35;3;-0.000000, 1.228822,-0.000000;;, + 36;3; 0.000000, 1.228822,-0.000000;;, + 37;3; 0.000000, 1.228822, 0.000000;;, + 38;3;-0.000000, 1.228822, 0.000000;;, + 39;3;-0.000000, 1.228822, 0.000000;;, + 40;3; 0.000000, 1.228822,-0.000000;;, + 41;3; 0.000000, 1.228822,-0.000000;;, + 42;3;-0.000000, 1.228822,-0.000000;;, + 43;3;-0.000000, 1.228822, 0.000000;;, + 44;3;-0.000000, 1.228822, 0.000000;;, + 45;3;-0.000000, 1.228822, 0.000000;;, + 46;3;-0.000000, 1.228822, 0.000000;;, + 47;3;-0.000000, 1.228822, 0.000000;;, + 48;3;-0.000000, 1.228822,-0.000000;;, + 49;3; 0.000000, 1.228822, 0.000000;;, + 50;3;-0.000000, 1.228822,-0.000000;;, + 51;3; 0.000000, 1.228822, 0.000000;;, + 52;3;-0.000000, 1.228822,-0.000000;;, + 53;3; 0.000000, 1.228822, 0.000000;;, + 54;3;-0.000000, 1.228822,-0.000000;;, + 55;3; 0.000000, 1.228822, 0.000000;;, + 56;3; 0.000000, 1.228822, 0.000000;;, + 57;3;-0.000000, 1.228822,-0.000000;;, + 58;3;-0.000000, 1.228822, 0.000000;;, + 59;3;-0.000000, 1.228822, 0.000000;;, + 60;3;-0.000000, 1.228822, 0.000000;;, + 61;3; 0.000000, 1.228822,-0.000000;;, + 62;3;-0.000000, 1.228822,-0.000000;;, + 63;3;-0.000000, 1.228822, 0.000000;;, + 64;3; 0.000000, 1.228822, 0.000000;;, + 65;3;-0.000000, 1.228822,-0.000000;;, + 66;3;-0.000000, 1.228822, 0.000000;;, + 67;3;-0.000000, 1.228822,-0.000000;;, + 68;3; 0.000000, 1.228822, 0.000000;;, + 69;3;-0.000000, 1.228822,-0.000000;;, + 70;3;-0.000000, 1.228822,-0.000000;;, + 71;3;-0.000000, 1.228822, 0.000000;;, + 72;3;-0.000000, 1.228822, 0.000000;;, + 73;3; 0.000000, 1.228822,-0.000000;;, + 74;3;-0.000000, 1.228822,-0.000000;;, + 75;3;-0.000000, 1.228822,-0.000000;;, + 76;3;-0.000000, 1.228822, 0.000000;;, + 77;3;-0.000000, 1.228822, 0.000000;;, + 78;3;-0.000000, 1.228822, 0.000000;;, + 79;3;-0.000000, 1.228822, 0.000000;;, + 80;3;-0.000000, 1.228822,-0.000000;;, + 81;3;-0.000000, 1.228822, 0.000000;;, + 82;3; 0.000000, 1.228822, 0.000000;;, + 83;3; 0.000000, 1.228822,-0.000000;;, + 84;3; 0.000000, 1.228822, 0.000000;;, + 85;3; 0.000000, 1.228822, 0.000000;;, + 86;3; 0.000000, 1.228822,-0.000000;;, + 87;3; 0.000000, 1.228822, 0.000000;;, + 88;3;-0.000000, 1.228822,-0.000000;;, + 89;3; 0.000000, 1.228822,-0.000000;;, + 90;3;-0.000000, 1.228822, 0.000000;;, + 91;3;-0.000000, 1.228822, 0.000000;;, + 92;3; 0.000000, 1.228822, 0.000000;;, + 93;3; 0.000000, 1.228822,-0.000000;;, + 94;3;-0.000000, 1.228822,-0.000000;;, + 95;3;-0.000000, 1.228822,-0.000000;;, + 96;3;-0.000000, 1.228822, 0.000000;;, + 97;3;-0.000000, 1.228822,-0.000000;;, + 98;3;-0.000000, 1.228822, 0.000000;;, + 99;3;-0.000000, 1.228822,-0.000000;;, + 100;3;-0.000000, 1.228822,-0.000000;;, + 101;3; 0.000000, 1.228822, 0.000000;;, + 102;3; 0.000000, 1.228822,-0.000000;;, + 103;3;-0.000000, 1.228822,-0.000000;;, + 104;3;-0.000000, 1.228822, 0.000000;;, + 105;3;-0.000000, 1.228822,-0.000000;;, + 106;3;-0.000000, 1.228822,-0.000000;;, + 107;3; 0.000000, 1.228822, 0.000000;;, + 108;3; 0.000000, 1.228822, 0.000000;;, + 109;3;-0.000000, 1.228822, 0.000000;;, + 110;3; 0.000000, 1.228822,-0.000000;;, + 111;3; 0.000000, 1.228822, 0.000000;;, + 112;3;-0.000000, 1.228822,-0.000000;;, + 113;3; 0.000000, 1.228822, 0.000000;;, + 114;3;-0.000000, 1.228822, 0.000000;;, + 115;3; 0.000000, 1.228822,-0.000000;;, + 116;3;-0.000000, 1.228822, 0.000000;;, + 117;3;-0.000000, 1.228822, 0.000000;;, + 118;3; 0.000000, 1.228822, 0.000000;;, + 119;3; 0.000000, 1.228822,-0.000000;;, + 120;3; 0.000000, 1.228822, 0.000000;;, + 121;3;-0.000000, 1.228822, 0.000000;;, + 122;3; 0.000000, 1.228822, 0.000000;;, + 123;3; 0.000000, 1.228822, 0.000000;;, + 124;3;-0.000000, 1.228822,-0.000000;;, + 125;3; 0.000000, 1.228822, 0.000000;;, + 126;3; 0.000000, 1.228822, 0.000000;;, + 127;3;-0.000000, 1.228822,-0.000000;;, + 128;3;-0.000000, 1.228822, 0.000000;;, + 129;3;-0.000000, 1.228822, 0.000000;;, + 130;3; 0.000000, 1.228822,-0.000000;;, + 131;3;-0.000000, 1.228822, 0.000000;;, + 132;3;-0.000000, 1.228822,-0.000000;;, + 133;3; 0.000000, 1.228822,-0.000000;;, + 134;3;-0.000000, 1.228822, 0.000000;;, + 135;3;-0.000000, 1.228822,-0.000000;;, + 136;3;-0.000000, 1.228822, 0.000000;;, + 137;3;-0.000000, 1.228822,-0.000000;;, + 138;3;-0.000000, 1.228822, 0.000000;;, + 139;3;-0.000000, 1.228822,-0.000000;;, + 140;3; 0.000000, 1.228822, 0.000000;;, + 141;3;-0.000000, 1.228822,-0.000000;;, + 142;3;-0.000000, 1.228822,-0.000000;;, + 143;3; 0.000000, 1.228822, 0.000000;;, + 144;3;-0.000000, 1.228822, 0.000000;;, + 145;3; 0.000000, 1.228822, 0.000000;;, + 146;3; 0.000000, 1.228822, 0.000000;;, + 147;3; 0.000000, 1.228822,-0.000000;;, + 148;3;-0.000000, 1.228822, 0.000000;;, + 149;3; 0.000000, 1.228822,-0.000000;;, + 150;3;-0.000000, 1.228822, 0.000000;;, + 151;3; 0.000000, 1.228822, 0.000000;;, + 152;3; 0.000000, 1.228822, 0.000000;;, + 153;3;-0.000000, 1.228822,-0.000000;;, + 154;3;-0.000000, 1.228822, 0.000000;;, + 155;3;-0.000000, 1.228822, 0.000000;;, + 156;3; 0.000000, 1.228822,-0.000000;;, + 157;3;-0.000000, 1.228822,-0.000000;;, + 158;3;-0.000000, 1.228822,-0.000000;;, + 159;3;-0.000000, 1.228822,-0.000000;;, + 160;3;-0.000000, 1.228822,-0.000000;;, + 161;3; 0.000000, 1.228822,-0.000000;;, + 162;3; 0.000000, 1.228822,-0.000000;;, + 163;3; 0.000000, 1.228822, 0.000000;;, + 164;3; 0.000000, 1.228822, 0.000000;;, + 165;3;-0.000000, 1.228822, 0.000000;;, + 166;3;-0.000000, 1.228822, 0.000000;;, + 167;3; 0.000000, 1.228822,-0.000000;;, + 168;3; 0.000000, 1.228822, 0.000000;;, + 169;3; 0.000000, 1.228822, 0.000000;;, + 170;3; 0.000000, 1.228822, 0.000000;;, + 171;3;-0.000000, 1.228822, 0.000000;;, + 172;3;-0.000000, 1.228822,-0.000000;;, + 173;3; 0.000000, 1.228822, 0.000000;;, + 174;3; 0.000000, 1.228822,-0.000000;;, + 175;3; 0.000000, 1.228822, 0.000000;;, + 176;3;-0.000000, 1.228822,-0.000000;;, + 177;3;-0.000000, 1.228822, 0.000000;;, + 178;3;-0.000000, 1.228822,-0.000000;;, + 179;3;-0.000000, 1.228822, 0.000000;;, + 180;3;-0.000000, 1.228822, 0.000000;;, + 181;3; 0.000000, 1.228822,-0.000000;;, + 182;3; 0.000000, 1.228822, 0.000000;;, + 183;3; 0.000000, 1.228822, 0.000000;;, + 184;3;-0.000000, 1.228822,-0.000000;;, + 185;3;-0.000000, 1.228822, 0.000000;;, + 186;3; 0.000000, 1.228822,-0.000000;;, + 187;3;-0.000000, 1.228822, 0.000000;;, + 188;3;-0.000000, 1.228822, 0.000000;;, + 189;3;-0.000000, 1.228822,-0.000000;;, + 190;3;-0.000000, 1.228822,-0.000000;;, + 191;3; 0.000000, 1.228822,-0.000000;;, + 192;3;-0.000000, 1.228822, 0.000000;;, + 193;3;-0.000000, 1.228822, 0.000000;;, + 194;3;-0.000000, 1.228822,-0.000000;;, + 195;3;-0.000000, 1.228822,-0.000000;;, + 196;3; 0.000000, 1.228822, 0.000000;;, + 197;3;-0.000000, 1.228822,-0.000000;;, + 198;3;-0.000000, 1.228822,-0.000000;;, + 199;3;-0.000000, 1.228822, 0.000000;;, + 200;3;-0.000000, 1.228822, 0.000000;;, + 201;3;-0.000000, 1.228822, 0.000000;;, + 202;3;-0.000000, 1.228822, 0.000000;;, + 203;3;-0.000000, 1.228822, 0.000000;;, + 204;3;-0.000000, 1.228822, 0.000000;;, + 205;3;-0.000000, 1.228822, 0.000000;;, + 206;3;-0.000000, 1.228822, 0.000000;;, + 207;3;-0.000000, 1.228822, 0.000000;;, + 208;3;-0.000000, 1.228822, 0.000000;;, + 209;3;-0.000000, 1.228822, 0.000000;;, + 210;3; 0.000000, 1.228822, 0.000000;;, + 211;3;-0.000000, 1.228822, 0.000000;;, + 212;3; 0.000000, 1.228822,-0.000000;;, + 213;3; 0.000000, 1.228822,-0.000000;;, + 214;3; 0.000000, 1.228822,-0.000000;;, + 215;3; 0.000000, 1.228822, 0.000000;;, + 216;3; 0.000000, 1.228822,-0.000000;;, + 217;3;-0.000000, 1.228822,-0.000000;;, + 218;3; 0.000000, 1.228822, 0.000000;;, + 219;3; 0.000000, 1.228822,-0.000000;;, + 220;3; 0.000000, 1.228822, 0.000000;;, + 221;3;-0.000000, 1.228822,-0.000000;;, + 222;3; 0.000000, 1.228822,-0.000000;;, + 223;3;-0.000000, 1.228822, 0.000000;;, + 224;3; 0.000000, 1.228822,-0.000000;;, + 225;3;-0.000000, 1.228822, 0.000000;;, + 226;3; 0.000000, 1.228822, 0.000000;;, + 227;3;-0.000000, 1.228822,-0.000000;;, + 228;3;-0.000000, 1.228822,-0.000000;;, + 229;3;-0.000000, 1.228822,-0.000000;;, + 230;3;-0.000000, 1.228822,-0.000000;;, + 231;3;-0.000000, 1.228822,-0.000000;;, + 232;3;-0.000000, 1.228822, 0.000000;;, + 233;3;-0.000000, 1.228822, 0.000000;;, + 234;3;-0.000000, 1.228822, 0.000000;;, + 235;3;-0.000000, 1.228822,-0.000000;;, + 236;3;-0.000000, 1.228822, 0.000000;;, + 237;3;-0.000000, 1.228822,-0.000000;;, + 238;3;-0.000000, 1.228822,-0.000000;;, + 239;3;-0.000000, 1.228822, 0.000000;;, + 240;3;-0.000000, 1.228822, 0.000000;;, + 241;3;-0.000000, 1.228822, 0.000000;;, + 242;3;-0.000000, 1.228822, 0.000000;;, + 243;3;-0.000000, 1.228822, 0.000000;;, + 244;3;-0.000000, 1.228822, 0.000000;;, + 245;3;-0.000000, 1.228822, 0.000000;;, + 246;3;-0.000000, 1.228822, 0.000000;;, + 247;3;-0.000000, 1.228822, 0.000000;;, + 248;3;-0.000000, 1.228822, 0.000000;;, + 249;3;-0.000000, 1.228822, 0.000000;;; + } + } + Animation { + {Armature_Bone_001} + AnimationKey { // Rotation + 0; + 250; + 0;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 1;4;-0.707099,-0.000262,-0.000262, 0.707099;;, + 2;4;-0.707075,-0.001053,-0.001053, 0.707075;;, + 3;4;-0.707035,-0.002376,-0.002376, 0.707035;;, + 4;4;-0.706979,-0.004219,-0.004219, 0.706979;;, + 5;4;-0.706908,-0.006555,-0.006555, 0.706908;;, + 6;4;-0.706824,-0.009338,-0.009338, 0.706824;;, + 7;4;-0.706728,-0.012499,-0.012499, 0.706728;;, + 8;4;-0.706623,-0.015950,-0.015950, 0.706623;;, + 9;4;-0.706513,-0.019583,-0.019583, 0.706513;;, + 10;4;-0.706401,-0.023279,-0.023279, 0.706401;;, + 11;4;-0.706290,-0.026912,-0.026912, 0.706290;;, + 12;4;-0.706186,-0.030363,-0.030363, 0.706186;;, + 13;4;-0.706090,-0.033524,-0.033524, 0.706090;;, + 14;4;-0.706005,-0.036307,-0.036307, 0.706005;;, + 15;4;-0.705935,-0.038643,-0.038643, 0.705935;;, + 16;4;-0.705879,-0.040486,-0.040486, 0.705879;;, + 17;4;-0.705839,-0.041808,-0.041808, 0.705839;;, + 18;4;-0.705815,-0.042600,-0.042600, 0.705815;;, + 19;4;-0.705807,-0.042862,-0.042862, 0.705807;;, + 20;4;-0.705808,-0.042476,-0.042476, 0.705808;;, + 21;4;-0.705811,-0.041309,-0.041309, 0.705811;;, + 22;4;-0.705817,-0.039359,-0.039359, 0.705817;;, + 23;4;-0.705826,-0.036638,-0.036638, 0.705826;;, + 24;4;-0.705837,-0.033179,-0.033179, 0.705837;;, + 25;4;-0.705852,-0.029042,-0.029042, 0.705852;;, + 26;4;-0.705869,-0.024313,-0.024313, 0.705869;;, + 27;4;-0.705889,-0.019107,-0.019107, 0.705889;;, + 28;4;-0.705912,-0.013566,-0.013566, 0.705912;;, + 29;4;-0.705938,-0.007852,-0.007852, 0.705938;;, + 30;4;-0.705966,-0.002138,-0.002138, 0.705966;;, + 31;4;-0.705996, 0.003403, 0.003403, 0.705996;;, + 32;4;-0.706027, 0.008609, 0.008609, 0.706027;;, + 33;4;-0.706059, 0.013338, 0.013338, 0.706059;;, + 34;4;-0.706093, 0.017475, 0.017475, 0.706093;;, + 35;4;-0.706126, 0.020934, 0.020934, 0.706126;;, + 36;4;-0.706160, 0.023655, 0.023655, 0.706160;;, + 37;4;-0.706194, 0.025605, 0.025605, 0.706194;;, + 38;4;-0.706227, 0.026772, 0.026772, 0.706227;;, + 39;4;-0.706260, 0.027158, 0.027158, 0.706260;;, + 40;4;-0.706295, 0.027008, 0.027008, 0.706295;;, + 41;4;-0.706335, 0.026556, 0.026556, 0.706335;;, + 42;4;-0.706379, 0.025799, 0.025799, 0.706379;;, + 43;4;-0.706428, 0.024744, 0.024744, 0.706428;;, + 44;4;-0.706481, 0.023402, 0.023402, 0.706481;;, + 45;4;-0.706538, 0.021798, 0.021798, 0.706538;;, + 46;4;-0.706597, 0.019963, 0.019963, 0.706597;;, + 47;4;-0.706658, 0.017944, 0.017944, 0.706658;;, + 48;4;-0.706719, 0.015795, 0.015795, 0.706719;;, + 49;4;-0.706779, 0.013579, 0.013579, 0.706779;;, + 50;4;-0.706836, 0.011363, 0.011363, 0.706836;;, + 51;4;-0.706890, 0.009214, 0.009214, 0.706890;;, + 52;4;-0.706940, 0.007194, 0.007194, 0.706940;;, + 53;4;-0.706984, 0.005360, 0.005360, 0.706984;;, + 54;4;-0.707022, 0.003755, 0.003755, 0.707022;;, + 55;4;-0.707053, 0.002414, 0.002414, 0.707053;;, + 56;4;-0.707077, 0.001359, 0.001359, 0.707077;;, + 57;4;-0.707093, 0.000602, 0.000602, 0.707093;;, + 58;4;-0.707104, 0.000150, 0.000150, 0.707104;;, + 59;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 60;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 61;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 62;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 63;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 64;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 65;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 66;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 67;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 68;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 69;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 70;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 71;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 72;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 73;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 74;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 75;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 76;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 77;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 78;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 79;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 80;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 81;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 82;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 83;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 84;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 85;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 86;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 87;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 88;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 89;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 90;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 91;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 92;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 93;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 94;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 95;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 96;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 97;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 98;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 99;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 100;4;-0.707095,-0.000610,-0.000610, 0.707095;;, + 101;4;-0.707059,-0.002445,-0.002445, 0.707059;;, + 102;4;-0.707001,-0.005428,-0.005428, 0.707001;;, + 103;4;-0.706925,-0.009330,-0.009330, 0.706925;;, + 104;4;-0.706839,-0.013751,-0.013751, 0.706839;;, + 105;4;-0.706753,-0.018172,-0.018172, 0.706753;;, + 106;4;-0.706677,-0.022074,-0.022074, 0.706677;;, + 107;4;-0.706619,-0.025057,-0.025057, 0.706619;;, + 108;4;-0.706584,-0.026892,-0.026892, 0.706584;;, + 109;4;-0.706572,-0.027502,-0.027502, 0.706572;;, + 110;4;-0.706584,-0.026892,-0.026892, 0.706584;;, + 111;4;-0.706619,-0.025057,-0.025057, 0.706619;;, + 112;4;-0.706677,-0.022074,-0.022074, 0.706677;;, + 113;4;-0.706753,-0.018172,-0.018172, 0.706753;;, + 114;4;-0.706839,-0.013751,-0.013751, 0.706839;;, + 115;4;-0.706925,-0.009330,-0.009330, 0.706925;;, + 116;4;-0.707001,-0.005428,-0.005428, 0.707001;;, + 117;4;-0.707059,-0.002445,-0.002445, 0.707059;;, + 118;4;-0.707095,-0.000610,-0.000610, 0.707095;;, + 119;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 120;4;-0.707095,-0.000610,-0.000610, 0.707095;;, + 121;4;-0.707059,-0.002445,-0.002445, 0.707059;;, + 122;4;-0.707001,-0.005428,-0.005428, 0.707001;;, + 123;4;-0.706925,-0.009330,-0.009330, 0.706925;;, + 124;4;-0.706839,-0.013751,-0.013751, 0.706839;;, + 125;4;-0.706753,-0.018172,-0.018172, 0.706753;;, + 126;4;-0.706677,-0.022074,-0.022074, 0.706677;;, + 127;4;-0.706619,-0.025057,-0.025057, 0.706619;;, + 128;4;-0.706584,-0.026892,-0.026892, 0.706584;;, + 129;4;-0.706572,-0.027502,-0.027502, 0.706572;;, + 130;4;-0.706584,-0.026892,-0.026892, 0.706584;;, + 131;4;-0.706619,-0.025057,-0.025057, 0.706619;;, + 132;4;-0.706677,-0.022074,-0.022074, 0.706677;;, + 133;4;-0.706753,-0.018172,-0.018172, 0.706753;;, + 134;4;-0.706839,-0.013751,-0.013751, 0.706839;;, + 135;4;-0.706925,-0.009330,-0.009330, 0.706925;;, + 136;4;-0.707001,-0.005428,-0.005428, 0.707001;;, + 137;4;-0.707059,-0.002445,-0.002445, 0.707059;;, + 138;4;-0.707095,-0.000610,-0.000610, 0.707095;;, + 139;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 140;4;-0.707059,-0.002445,-0.002445, 0.707059;;, + 141;4;-0.706925,-0.009330,-0.009330, 0.706925;;, + 142;4;-0.706753,-0.018172,-0.018172, 0.706753;;, + 143;4;-0.706619,-0.025057,-0.025057, 0.706619;;, + 144;4;-0.706572,-0.027502,-0.027502, 0.706572;;, + 145;4;-0.706619,-0.025057,-0.025057, 0.706619;;, + 146;4;-0.706753,-0.018172,-0.018172, 0.706753;;, + 147;4;-0.706925,-0.009330,-0.009330, 0.706925;;, + 148;4;-0.707059,-0.002445,-0.002445, 0.707059;;, + 149;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 150;4;-0.707059,-0.002445,-0.002445, 0.707059;;, + 151;4;-0.706925,-0.009330,-0.009330, 0.706925;;, + 152;4;-0.706753,-0.018172,-0.018172, 0.706753;;, + 153;4;-0.706619,-0.025057,-0.025057, 0.706619;;, + 154;4;-0.706572,-0.027502,-0.027502, 0.706572;;, + 155;4;-0.706619,-0.025057,-0.025057, 0.706619;;, + 156;4;-0.706753,-0.018172,-0.018172, 0.706753;;, + 157;4;-0.706925,-0.009330,-0.009330, 0.706925;;, + 158;4;-0.707059,-0.002445,-0.002445, 0.707059;;, + 159;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 160;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 161;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 162;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 163;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 164;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 165;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 166;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 167;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 168;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 169;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 170;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 171;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 172;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 173;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 174;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 175;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 176;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 177;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 178;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 179;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 180;4;-0.706883,-0.002637,-0.002637, 0.706883;;, + 181;4;-0.706211,-0.010574,-0.010574, 0.706211;;, + 182;4;-0.705118,-0.023479,-0.023479, 0.705118;;, + 183;4;-0.703688,-0.040358,-0.040358, 0.703688;;, + 184;4;-0.702068,-0.059479,-0.059479, 0.702068;;, + 185;4;-0.700448,-0.078600,-0.078600, 0.700448;;, + 186;4;-0.699018,-0.095479,-0.095479, 0.699018;;, + 187;4;-0.697925,-0.108384,-0.108384, 0.697925;;, + 188;4;-0.697252,-0.116321,-0.116321, 0.697252;;, + 189;4;-0.697029,-0.118958,-0.118958, 0.697029;;, + 190;4;-0.697029,-0.118958,-0.118958, 0.697029;;, + 191;4;-0.697029,-0.118958,-0.118958, 0.697029;;, + 192;4;-0.697029,-0.118958,-0.118958, 0.697029;;, + 193;4;-0.697029,-0.118958,-0.118958, 0.697029;;, + 194;4;-0.697029,-0.118958,-0.118958, 0.697029;;, + 195;4;-0.697925,-0.108384,-0.108384, 0.697925;;, + 196;4;-0.700448,-0.078600,-0.078600, 0.700448;;, + 197;4;-0.703688,-0.040358,-0.040358, 0.703688;;, + 198;4;-0.706211,-0.010574,-0.010574, 0.706211;;, + 199;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 200;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 201;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 202;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 203;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 204;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 205;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 206;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 207;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 208;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 209;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 210;4;-0.705892,-0.011284,-0.011284, 0.705892;;, + 211;4;-0.702163,-0.044864,-0.044864, 0.702163;;, + 212;4;-0.696555,-0.092804,-0.092804, 0.696555;;, + 213;4;-0.690591,-0.139529,-0.139529, 0.690591;;, + 214;4;-0.685572,-0.173179,-0.173179, 0.685572;;, + 215;4;-0.681057,-0.197318,-0.197318, 0.681057;;, + 216;4;-0.676281,-0.217848,-0.217848, 0.676281;;, + 217;4;-0.671585,-0.233746,-0.233746, 0.671585;;, + 218;4;-0.667368,-0.245471,-0.245471, 0.667368;;, + 219;4;-0.663804,-0.254631,-0.254631, 0.663804;;, + 220;4;-0.660524,-0.262119,-0.262119, 0.660524;;, + 221;4;-0.657413,-0.267340,-0.267340, 0.657413;;, + 222;4;-0.654957,-0.270064,-0.270064, 0.654957;;, + 223;4;-0.653524,-0.270944,-0.270944, 0.653524;;, + 224;4;-0.653096,-0.271046,-0.271046, 0.653096;;, + 225;4;-0.653626,-0.268385,-0.268385, 0.653626;;, + 226;4;-0.655229,-0.260339,-0.260339, 0.655229;;, + 227;4;-0.657897,-0.246953,-0.246953, 0.657897;;, + 228;4;-0.661573,-0.228504,-0.228504, 0.661573;;, + 229;4;-0.666142,-0.205574,-0.205574, 0.666142;;, + 230;4;-0.671420,-0.179090,-0.179090, 0.671420;;, + 231;4;-0.677155,-0.150311,-0.150311, 0.677155;;, + 232;4;-0.683048,-0.120735,-0.120735, 0.683048;;, + 233;4;-0.688783,-0.091955,-0.091955, 0.688783;;, + 234;4;-0.694060,-0.065472,-0.065472, 0.694060;;, + 235;4;-0.698629,-0.042542,-0.042542, 0.698629;;, + 236;4;-0.702306,-0.024093,-0.024093, 0.702306;;, + 237;4;-0.704973,-0.010706,-0.010706, 0.704973;;, + 238;4;-0.706576,-0.002661,-0.002661, 0.706576;;, + 239;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 240;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 241;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 242;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 243;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 244;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 245;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 246;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 247;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 248;4;-0.707107, 0.000000, 0.000000, 0.707107;;, + 249;4;-0.707107, 0.000000, 0.000000, 0.707107;;; + } + AnimationKey { // Scale + 1; + 250; + 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;;, + 189;3; 1.000000, 1.000000, 1.000000;;, + 190;3; 1.000000, 1.000000, 1.000000;;, + 191;3; 1.000000, 1.000000, 1.000000;;, + 192;3; 1.000000, 1.000000, 1.000000;;, + 193;3; 1.000000, 1.000000, 1.000000;;, + 194;3; 1.000000, 1.000000, 1.000000;;, + 195;3; 1.000000, 1.000000, 1.000000;;, + 196;3; 1.000000, 1.000000, 1.000000;;, + 197;3; 1.000000, 1.000000, 1.000000;;, + 198;3; 1.000000, 1.000000, 1.000000;;, + 199;3; 1.000000, 1.000000, 1.000000;;, + 200;3; 1.000000, 1.000000, 1.000000;;, + 201;3; 1.000000, 1.000000, 1.000000;;, + 202;3; 1.000000, 1.000000, 1.000000;;, + 203;3; 1.000000, 1.000000, 1.000000;;, + 204;3; 1.000000, 1.000000, 1.000000;;, + 205;3; 1.000000, 1.000000, 1.000000;;, + 206;3; 1.000000, 1.000000, 1.000000;;, + 207;3; 1.000000, 1.000000, 1.000000;;, + 208;3; 1.000000, 1.000000, 1.000000;;, + 209;3; 1.000000, 1.000000, 1.000000;;, + 210;3; 1.000000, 1.000000, 1.000000;;, + 211;3; 1.000000, 1.000000, 1.000000;;, + 212;3; 1.000000, 1.000000, 1.000000;;, + 213;3; 1.000000, 1.000000, 1.000000;;, + 214;3; 1.000000, 1.000000, 1.000000;;, + 215;3; 1.000000, 1.000000, 1.000000;;, + 216;3; 1.000000, 1.000000, 1.000000;;, + 217;3; 1.000000, 1.000000, 1.000000;;, + 218;3; 1.000000, 1.000000, 1.000000;;, + 219;3; 1.000000, 1.000000, 1.000000;;, + 220;3; 1.000000, 1.000000, 1.000000;;, + 221;3; 1.000000, 1.000000, 1.000000;;, + 222;3; 1.000000, 1.000000, 1.000000;;, + 223;3; 1.000000, 1.000000, 1.000000;;, + 224;3; 1.000000, 1.000000, 1.000000;;, + 225;3; 1.000000, 1.000000, 1.000000;;, + 226;3; 1.000000, 1.000000, 1.000000;;, + 227;3; 1.000000, 1.000000, 1.000000;;, + 228;3; 1.000000, 1.000000, 1.000000;;, + 229;3; 1.000000, 1.000000, 1.000000;;, + 230;3; 1.000000, 1.000000, 1.000000;;, + 231;3; 1.000000, 1.000000, 1.000000;;, + 232;3; 1.000000, 1.000000, 1.000000;;, + 233;3; 1.000000, 1.000000, 1.000000;;, + 234;3; 1.000000, 1.000000, 1.000000;;, + 235;3; 1.000000, 1.000000, 1.000000;;, + 236;3; 1.000000, 1.000000, 1.000000;;, + 237;3; 1.000000, 1.000000, 1.000000;;, + 238;3; 1.000000, 1.000000, 1.000000;;, + 239;3; 1.000000, 1.000000, 1.000000;;, + 240;3; 1.000000, 1.000000, 1.000000;;, + 241;3; 1.000000, 1.000000, 1.000000;;, + 242;3; 1.000000, 1.000000, 1.000000;;, + 243;3; 1.000000, 1.000000, 1.000000;;, + 244;3; 1.000000, 1.000000, 1.000000;;, + 245;3; 1.000000, 1.000000, 1.000000;;, + 246;3; 1.000000, 1.000000, 1.000000;;, + 247;3; 1.000000, 1.000000, 1.000000;;, + 248;3; 1.000000, 1.000000, 1.000000;;, + 249;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 250; + 0;3; 0.506179, 1.550838, 1.183012;;, + 1;3; 0.506179, 1.550838, 1.183012;;, + 2;3; 0.506179, 1.550838, 1.183012;;, + 3;3; 0.506179, 1.550838, 1.183012;;, + 4;3; 0.506179, 1.550838, 1.183012;;, + 5;3; 0.506179, 1.550838, 1.183012;;, + 6;3; 0.506179, 1.550838, 1.183012;;, + 7;3; 0.506179, 1.550838, 1.183012;;, + 8;3; 0.506179, 1.550838, 1.183012;;, + 9;3; 0.506179, 1.550838, 1.183012;;, + 10;3; 0.506179, 1.550838, 1.183012;;, + 11;3; 0.506179, 1.550838, 1.183012;;, + 12;3; 0.506179, 1.550838, 1.183012;;, + 13;3; 0.506179, 1.550838, 1.183012;;, + 14;3; 0.506179, 1.550838, 1.183012;;, + 15;3; 0.506179, 1.550838, 1.183012;;, + 16;3; 0.506179, 1.550838, 1.183012;;, + 17;3; 0.506179, 1.550838, 1.183012;;, + 18;3; 0.506179, 1.550838, 1.183012;;, + 19;3; 0.506179, 1.550838, 1.183012;;, + 20;3; 0.506179, 1.550838, 1.183012;;, + 21;3; 0.506179, 1.550838, 1.183012;;, + 22;3; 0.506179, 1.550838, 1.183012;;, + 23;3; 0.506179, 1.550838, 1.183012;;, + 24;3; 0.506179, 1.550838, 1.183012;;, + 25;3; 0.506179, 1.550838, 1.183012;;, + 26;3; 0.506179, 1.550838, 1.183012;;, + 27;3; 0.506179, 1.550838, 1.183012;;, + 28;3; 0.506179, 1.550838, 1.183012;;, + 29;3; 0.506179, 1.550838, 1.183012;;, + 30;3; 0.506179, 1.550838, 1.183012;;, + 31;3; 0.506179, 1.550838, 1.183012;;, + 32;3; 0.506179, 1.550838, 1.183012;;, + 33;3; 0.506179, 1.550838, 1.183012;;, + 34;3; 0.506179, 1.550838, 1.183012;;, + 35;3; 0.506179, 1.550838, 1.183012;;, + 36;3; 0.506179, 1.550838, 1.183012;;, + 37;3; 0.506179, 1.550838, 1.183012;;, + 38;3; 0.506179, 1.550838, 1.183012;;, + 39;3; 0.506179, 1.550838, 1.183012;;, + 40;3; 0.506179, 1.550838, 1.183012;;, + 41;3; 0.506179, 1.550838, 1.183012;;, + 42;3; 0.506179, 1.550838, 1.183012;;, + 43;3; 0.506179, 1.550838, 1.183012;;, + 44;3; 0.506179, 1.550838, 1.183012;;, + 45;3; 0.506179, 1.550838, 1.183012;;, + 46;3; 0.506179, 1.550838, 1.183012;;, + 47;3; 0.506179, 1.550838, 1.183012;;, + 48;3; 0.506179, 1.550838, 1.183012;;, + 49;3; 0.506179, 1.550838, 1.183012;;, + 50;3; 0.506179, 1.550838, 1.183012;;, + 51;3; 0.506179, 1.550838, 1.183012;;, + 52;3; 0.506179, 1.550838, 1.183012;;, + 53;3; 0.506179, 1.550838, 1.183012;;, + 54;3; 0.506179, 1.550838, 1.183012;;, + 55;3; 0.506179, 1.550838, 1.183012;;, + 56;3; 0.506179, 1.550838, 1.183012;;, + 57;3; 0.506179, 1.550838, 1.183012;;, + 58;3; 0.506179, 1.550838, 1.183012;;, + 59;3; 0.506179, 1.550838, 1.183012;;, + 60;3; 0.506179, 1.550838, 1.183012;;, + 61;3; 0.506179, 1.550838, 1.183012;;, + 62;3; 0.506179, 1.550838, 1.183012;;, + 63;3; 0.506179, 1.550838, 1.183012;;, + 64;3; 0.506179, 1.550838, 1.183012;;, + 65;3; 0.506179, 1.550838, 1.183012;;, + 66;3; 0.506179, 1.550838, 1.183012;;, + 67;3; 0.506179, 1.550838, 1.183012;;, + 68;3; 0.506179, 1.550838, 1.183012;;, + 69;3; 0.506179, 1.550838, 1.183012;;, + 70;3; 0.506179, 1.550838, 1.183012;;, + 71;3; 0.506179, 1.550838, 1.183012;;, + 72;3; 0.506179, 1.550838, 1.183012;;, + 73;3; 0.506179, 1.550838, 1.183012;;, + 74;3; 0.506179, 1.550838, 1.183012;;, + 75;3; 0.506179, 1.550838, 1.183012;;, + 76;3; 0.506179, 1.550838, 1.183012;;, + 77;3; 0.506179, 1.550838, 1.183012;;, + 78;3; 0.506179, 1.550838, 1.183012;;, + 79;3; 0.506179, 1.550838, 1.183012;;, + 80;3; 0.506179, 1.550838, 1.183012;;, + 81;3; 0.506179, 1.550838, 1.183012;;, + 82;3; 0.506179, 1.550838, 1.183012;;, + 83;3; 0.506179, 1.550838, 1.183012;;, + 84;3; 0.506179, 1.550838, 1.183012;;, + 85;3; 0.506179, 1.550838, 1.183012;;, + 86;3; 0.506179, 1.550838, 1.183012;;, + 87;3; 0.506179, 1.550838, 1.183012;;, + 88;3; 0.506179, 1.550838, 1.183012;;, + 89;3; 0.506179, 1.550838, 1.183012;;, + 90;3; 0.506179, 1.550838, 1.183012;;, + 91;3; 0.506179, 1.550838, 1.183012;;, + 92;3; 0.506179, 1.550838, 1.183012;;, + 93;3; 0.506179, 1.550838, 1.183012;;, + 94;3; 0.506179, 1.550838, 1.183012;;, + 95;3; 0.506179, 1.550838, 1.183012;;, + 96;3; 0.506179, 1.550838, 1.183012;;, + 97;3; 0.506179, 1.550838, 1.183012;;, + 98;3; 0.506179, 1.550838, 1.183012;;, + 99;3; 0.506179, 1.550838, 1.183012;;, + 100;3; 0.506179, 1.550838, 1.183012;;, + 101;3; 0.506179, 1.550838, 1.183012;;, + 102;3; 0.506179, 1.550838, 1.183012;;, + 103;3; 0.506179, 1.550838, 1.183012;;, + 104;3; 0.506179, 1.550838, 1.183012;;, + 105;3; 0.506179, 1.550838, 1.183012;;, + 106;3; 0.506179, 1.550838, 1.183012;;, + 107;3; 0.506179, 1.550838, 1.183012;;, + 108;3; 0.506179, 1.550838, 1.183012;;, + 109;3; 0.506179, 1.550838, 1.183012;;, + 110;3; 0.506179, 1.550838, 1.183012;;, + 111;3; 0.506179, 1.550838, 1.183012;;, + 112;3; 0.506179, 1.550838, 1.183012;;, + 113;3; 0.506179, 1.550838, 1.183012;;, + 114;3; 0.506179, 1.550838, 1.183012;;, + 115;3; 0.506179, 1.550838, 1.183012;;, + 116;3; 0.506179, 1.550838, 1.183012;;, + 117;3; 0.506179, 1.550838, 1.183012;;, + 118;3; 0.506179, 1.550838, 1.183012;;, + 119;3; 0.506179, 1.550838, 1.183012;;, + 120;3; 0.506179, 1.550838, 1.183012;;, + 121;3; 0.506179, 1.550838, 1.183012;;, + 122;3; 0.506179, 1.550838, 1.183012;;, + 123;3; 0.506179, 1.550838, 1.183012;;, + 124;3; 0.506179, 1.550838, 1.183012;;, + 125;3; 0.506179, 1.550838, 1.183012;;, + 126;3; 0.506179, 1.550838, 1.183012;;, + 127;3; 0.506179, 1.550838, 1.183012;;, + 128;3; 0.506179, 1.550838, 1.183012;;, + 129;3; 0.506179, 1.550838, 1.183012;;, + 130;3; 0.506179, 1.550838, 1.183012;;, + 131;3; 0.506179, 1.550838, 1.183012;;, + 132;3; 0.506179, 1.550838, 1.183012;;, + 133;3; 0.506179, 1.550838, 1.183012;;, + 134;3; 0.506179, 1.550838, 1.183012;;, + 135;3; 0.506179, 1.550838, 1.183012;;, + 136;3; 0.506179, 1.550838, 1.183012;;, + 137;3; 0.506179, 1.550838, 1.183012;;, + 138;3; 0.506179, 1.550838, 1.183012;;, + 139;3; 0.506179, 1.550838, 1.183012;;, + 140;3; 0.506179, 1.550838, 1.183012;;, + 141;3; 0.506179, 1.550838, 1.183012;;, + 142;3; 0.506179, 1.550838, 1.183012;;, + 143;3; 0.506179, 1.550838, 1.183012;;, + 144;3; 0.506179, 1.550838, 1.183012;;, + 145;3; 0.506179, 1.550838, 1.183012;;, + 146;3; 0.506179, 1.550838, 1.183012;;, + 147;3; 0.506179, 1.550838, 1.183012;;, + 148;3; 0.506179, 1.550838, 1.183012;;, + 149;3; 0.506179, 1.550838, 1.183012;;, + 150;3; 0.506179, 1.550838, 1.183012;;, + 151;3; 0.506179, 1.550838, 1.183012;;, + 152;3; 0.506179, 1.550838, 1.183012;;, + 153;3; 0.506179, 1.550838, 1.183012;;, + 154;3; 0.506179, 1.550838, 1.183012;;, + 155;3; 0.506179, 1.550838, 1.183012;;, + 156;3; 0.506179, 1.550838, 1.183012;;, + 157;3; 0.506179, 1.550838, 1.183012;;, + 158;3; 0.506179, 1.550838, 1.183012;;, + 159;3; 0.506179, 1.550838, 1.183012;;, + 160;3; 0.506179, 1.550838, 1.183012;;, + 161;3; 0.506179, 1.550838, 1.183012;;, + 162;3; 0.506179, 1.550838, 1.183012;;, + 163;3; 0.506179, 1.550838, 1.183012;;, + 164;3; 0.506179, 1.550838, 1.183012;;, + 165;3; 0.506179, 1.550838, 1.183012;;, + 166;3; 0.506179, 1.550838, 1.183012;;, + 167;3; 0.506179, 1.550838, 1.183012;;, + 168;3; 0.506179, 1.550838, 1.183012;;, + 169;3; 0.506179, 1.550838, 1.183012;;, + 170;3; 0.506179, 1.550838, 1.183012;;, + 171;3; 0.506179, 1.550838, 1.183012;;, + 172;3; 0.506179, 1.550838, 1.183012;;, + 173;3; 0.506179, 1.550838, 1.183012;;, + 174;3; 0.506179, 1.550838, 1.183012;;, + 175;3; 0.506179, 1.550838, 1.183012;;, + 176;3; 0.506179, 1.550838, 1.183012;;, + 177;3; 0.506179, 1.550838, 1.183012;;, + 178;3; 0.506179, 1.550838, 1.183012;;, + 179;3; 0.506179, 1.550838, 1.183012;;, + 180;3; 0.534224, 1.550838, 1.200614;;, + 181;3; 0.618629, 1.550838, 1.253590;;, + 182;3; 0.755866, 1.550838, 1.339727;;, + 183;3; 0.935366, 1.550838, 1.452389;;, + 184;3; 1.138711, 1.550838, 1.580017;;, + 185;3; 1.342055, 1.550838, 1.707644;;, + 186;3; 1.521555, 1.550838, 1.820307;;, + 187;3; 1.658792, 1.550838, 1.906443;;, + 188;3; 1.743197, 1.550838, 1.959419;;, + 189;3; 1.771243, 1.550838, 1.977021;;, + 190;3; 1.771243, 1.550838, 1.977021;;, + 191;3; 1.771243, 1.550838, 1.977021;;, + 192;3; 1.771243, 1.550838, 1.977021;;, + 193;3; 1.771243, 1.550838, 1.977021;;, + 194;3; 1.771243, 1.550838, 1.977021;;, + 195;3; 1.658792, 1.550838, 1.906443;;, + 196;3; 1.342055, 1.550838, 1.707644;;, + 197;3; 0.935367, 1.550838, 1.452389;;, + 198;3; 0.618629, 1.550838, 1.253590;;, + 199;3; 0.506179, 1.550838, 1.183012;;, + 200;3; 0.506179, 1.550838, 1.183012;;, + 201;3; 0.506179, 1.550838, 1.183012;;, + 202;3; 0.506179, 1.550838, 1.183012;;, + 203;3; 0.506179, 1.550838, 1.183012;;, + 204;3; 0.506179, 1.550838, 1.183012;;, + 205;3; 0.506179, 1.550838, 1.183012;;, + 206;3; 0.506179, 1.550838, 1.183012;;, + 207;3; 0.506179, 1.550838, 1.183012;;, + 208;3; 0.506179, 1.550838, 1.183012;;, + 209;3; 0.506179, 1.550838, 1.183012;;, + 210;3; 0.364384, 1.550838, 1.221339;;, + 211;3;-0.035009, 1.550838, 1.343248;;, + 212;3;-0.547827, 1.550838, 1.537230;;, + 213;3;-0.947220, 1.550838, 1.761204;;, + 214;3;-1.089015, 1.550838, 1.973187;;, + 215;3;-0.991725, 1.550838, 2.220431;;, + 216;3;-0.693433, 1.550838, 2.543723;;, + 217;3;-0.245312, 1.550838, 2.865229;;, + 218;3; 0.230433, 1.550838, 3.086455;;, + 219;3; 0.629645, 1.550838, 3.160043;;, + 220;3; 1.028857, 1.550838, 3.102752;;, + 221;3; 1.504603, 1.550838, 2.932638;;, + 222;3; 1.952723, 1.550838, 2.690748;;, + 223;3; 2.251016, 1.550838, 2.456688;;, + 224;3; 2.348306, 1.550838, 2.290599;;, + 225;3; 2.330218, 1.550838, 2.167124;;, + 226;3; 2.275541, 1.550838, 2.045100;;, + 227;3; 2.184561, 1.550838, 1.925730;;, + 228;3; 2.059173, 1.550838, 1.810486;;, + 229;3; 1.903334, 1.550838, 1.701068;;, + 230;3; 1.723343, 1.550838, 1.599297;;, + 231;3; 1.527745, 1.550838, 1.506947;;, + 232;3; 1.326740, 1.550838, 1.425526;;, + 233;3; 1.131142, 1.550838, 1.356084;;, + 234;3; 0.951150, 1.550838, 1.299088;;, + 235;3; 0.795312, 1.550838, 1.254423;;, + 236;3; 0.669923, 1.550838, 1.221487;;, + 237;3; 0.578943, 1.550838, 1.199351;;, + 238;3; 0.524266, 1.550838, 1.186909;;, + 239;3; 0.506179, 1.550838, 1.183012;;, + 240;3; 0.506179, 1.550838, 1.183012;;, + 241;3; 0.506179, 1.550838, 1.183012;;, + 242;3; 0.506179, 1.550838, 1.183012;;, + 243;3; 0.506179, 1.550838, 1.183012;;, + 244;3; 0.506179, 1.550838, 1.183012;;, + 245;3; 0.506179, 1.550838, 1.183012;;, + 246;3; 0.506179, 1.550838, 1.183012;;, + 247;3; 0.506179, 1.550838, 1.183012;;, + 248;3; 0.506179, 1.550838, 1.183012;;, + 249;3; 0.506179, 1.550838, 1.183012;;; + } + } + Animation { + {Cube_001} + AnimationKey { // Rotation + 0; + 250; + 0;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 1;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 2;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 3;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 4;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 5;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 6;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 7;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 8;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 9;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 10;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 11;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 12;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 13;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 14;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 15;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 16;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 17;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 18;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 19;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 20;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 21;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 22;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 23;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 24;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 25;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 26;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 27;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 28;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 29;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 30;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 31;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 32;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 33;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 34;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 35;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 36;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 37;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 38;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 39;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 40;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 41;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 42;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 43;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 44;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 45;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 46;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 47;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 48;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 49;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 50;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 51;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 52;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 53;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 54;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 55;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 56;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 57;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 58;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 59;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 60;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 61;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 62;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 63;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 64;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 65;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 66;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 67;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 68;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 69;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 70;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 71;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 72;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 73;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 74;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 75;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 76;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 77;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 78;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 79;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 80;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 81;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 82;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 83;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 84;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 85;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 86;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 87;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 88;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 89;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 90;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 91;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 92;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 93;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 94;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 95;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 96;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 97;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 98;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 99;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 100;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 101;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 102;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 103;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 104;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 105;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 106;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 107;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 108;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 109;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 110;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 111;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 112;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 113;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 114;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 115;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 116;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 117;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 118;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 119;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 120;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 121;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 122;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 123;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 124;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 125;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 126;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 127;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 128;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 129;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 130;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 131;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 132;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 133;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 134;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 135;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 136;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 137;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 138;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 139;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 140;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 141;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 142;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 143;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 144;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 145;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 146;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 147;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 148;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 149;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 150;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 151;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 152;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 153;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 154;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 155;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 156;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 157;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 158;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 159;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 160;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 161;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 162;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 163;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 164;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 165;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 166;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 167;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 168;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 169;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 170;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 171;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 172;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 173;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 174;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 175;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 176;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 177;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 178;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 179;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 180;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 181;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 182;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 183;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 184;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 185;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 186;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 187;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 188;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 189;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 190;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 191;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 192;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 193;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 194;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 195;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 196;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 197;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 198;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 199;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 200;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 201;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 202;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 203;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 204;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 205;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 206;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 207;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 208;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 209;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 210;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 211;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 212;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 213;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 214;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 215;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 216;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 217;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 218;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 219;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 220;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 221;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 222;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 223;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 224;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 225;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 226;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 227;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 228;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 229;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 230;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 231;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 232;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 233;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 234;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 235;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 236;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 237;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 238;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 239;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 240;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 241;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 242;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 243;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 244;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 245;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 246;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 247;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 248;4; 0.000000,-0.000000, 0.000000, 1.000000;;, + 249;4; 0.000000,-0.000000, 0.000000, 1.000000;;; + } + AnimationKey { // Scale + 1; + 250; + 0;3; 0.165085, 0.348037, 0.189174;;, + 1;3; 0.165085, 0.348037, 0.189174;;, + 2;3; 0.165085, 0.348037, 0.189174;;, + 3;3; 0.165085, 0.348037, 0.189174;;, + 4;3; 0.165085, 0.348037, 0.189174;;, + 5;3; 0.165085, 0.348037, 0.189174;;, + 6;3; 0.165085, 0.348037, 0.189174;;, + 7;3; 0.165085, 0.348037, 0.189174;;, + 8;3; 0.165085, 0.348037, 0.189174;;, + 9;3; 0.165085, 0.348037, 0.189174;;, + 10;3; 0.165085, 0.348037, 0.189174;;, + 11;3; 0.165085, 0.348037, 0.189174;;, + 12;3; 0.165085, 0.348037, 0.189174;;, + 13;3; 0.165085, 0.348037, 0.189174;;, + 14;3; 0.165085, 0.348037, 0.189174;;, + 15;3; 0.165085, 0.348037, 0.189174;;, + 16;3; 0.165085, 0.348037, 0.189174;;, + 17;3; 0.165085, 0.348037, 0.189174;;, + 18;3; 0.165085, 0.348037, 0.189174;;, + 19;3; 0.165085, 0.348037, 0.189174;;, + 20;3; 0.165085, 0.348037, 0.189174;;, + 21;3; 0.165085, 0.348037, 0.189174;;, + 22;3; 0.165085, 0.348037, 0.189174;;, + 23;3; 0.165085, 0.348037, 0.189174;;, + 24;3; 0.165085, 0.348037, 0.189174;;, + 25;3; 0.165085, 0.348037, 0.189174;;, + 26;3; 0.165085, 0.348037, 0.189174;;, + 27;3; 0.165085, 0.348037, 0.189174;;, + 28;3; 0.165085, 0.348037, 0.189174;;, + 29;3; 0.165085, 0.348037, 0.189174;;, + 30;3; 0.165085, 0.348037, 0.189174;;, + 31;3; 0.165085, 0.348037, 0.189174;;, + 32;3; 0.165085, 0.348037, 0.189174;;, + 33;3; 0.165085, 0.348037, 0.189174;;, + 34;3; 0.165085, 0.348037, 0.189174;;, + 35;3; 0.165085, 0.348037, 0.189174;;, + 36;3; 0.165085, 0.348037, 0.189174;;, + 37;3; 0.165085, 0.348037, 0.189174;;, + 38;3; 0.165085, 0.348037, 0.189174;;, + 39;3; 0.165085, 0.348037, 0.189174;;, + 40;3; 0.165085, 0.348037, 0.189174;;, + 41;3; 0.165085, 0.348037, 0.189174;;, + 42;3; 0.165085, 0.348037, 0.189174;;, + 43;3; 0.165085, 0.348037, 0.189174;;, + 44;3; 0.165085, 0.348037, 0.189174;;, + 45;3; 0.165085, 0.348037, 0.189174;;, + 46;3; 0.165085, 0.348037, 0.189174;;, + 47;3; 0.165085, 0.348037, 0.189174;;, + 48;3; 0.165085, 0.348037, 0.189174;;, + 49;3; 0.165085, 0.348037, 0.189174;;, + 50;3; 0.165085, 0.348037, 0.189174;;, + 51;3; 0.165085, 0.348037, 0.189174;;, + 52;3; 0.165085, 0.348037, 0.189174;;, + 53;3; 0.165085, 0.348037, 0.189174;;, + 54;3; 0.165085, 0.348037, 0.189174;;, + 55;3; 0.165085, 0.348037, 0.189174;;, + 56;3; 0.165085, 0.348037, 0.189174;;, + 57;3; 0.165085, 0.348037, 0.189174;;, + 58;3; 0.165085, 0.348037, 0.189174;;, + 59;3; 0.165085, 0.348037, 0.189174;;, + 60;3; 0.165085, 0.348037, 0.189174;;, + 61;3; 0.165085, 0.348037, 0.189174;;, + 62;3; 0.165085, 0.348037, 0.189174;;, + 63;3; 0.165085, 0.348037, 0.189174;;, + 64;3; 0.165085, 0.348037, 0.189174;;, + 65;3; 0.165085, 0.348037, 0.189174;;, + 66;3; 0.165085, 0.348037, 0.189174;;, + 67;3; 0.165085, 0.348037, 0.189174;;, + 68;3; 0.165085, 0.348037, 0.189174;;, + 69;3; 0.165085, 0.348037, 0.189174;;, + 70;3; 0.165085, 0.348037, 0.189174;;, + 71;3; 0.165085, 0.348037, 0.189174;;, + 72;3; 0.165085, 0.348037, 0.189174;;, + 73;3; 0.165085, 0.348037, 0.189174;;, + 74;3; 0.165085, 0.348037, 0.189174;;, + 75;3; 0.165085, 0.348037, 0.189174;;, + 76;3; 0.165085, 0.348037, 0.189174;;, + 77;3; 0.165085, 0.348037, 0.189174;;, + 78;3; 0.165085, 0.348037, 0.189174;;, + 79;3; 0.165085, 0.348037, 0.189174;;, + 80;3; 0.165085, 0.348037, 0.189174;;, + 81;3; 0.165085, 0.348037, 0.189174;;, + 82;3; 0.165085, 0.348037, 0.189174;;, + 83;3; 0.165085, 0.348037, 0.189174;;, + 84;3; 0.165085, 0.348037, 0.189174;;, + 85;3; 0.165085, 0.348037, 0.189174;;, + 86;3; 0.165085, 0.348037, 0.189174;;, + 87;3; 0.165085, 0.348037, 0.189174;;, + 88;3; 0.165085, 0.348037, 0.189174;;, + 89;3; 0.165085, 0.348037, 0.189174;;, + 90;3; 0.165085, 0.348037, 0.189174;;, + 91;3; 0.165085, 0.348037, 0.189174;;, + 92;3; 0.165085, 0.348037, 0.189174;;, + 93;3; 0.165085, 0.348037, 0.189174;;, + 94;3; 0.165085, 0.348037, 0.189174;;, + 95;3; 0.165085, 0.348037, 0.189174;;, + 96;3; 0.165085, 0.348037, 0.189174;;, + 97;3; 0.165085, 0.348037, 0.189174;;, + 98;3; 0.165085, 0.348037, 0.189174;;, + 99;3; 0.165085, 0.348037, 0.189174;;, + 100;3; 0.165085, 0.348037, 0.189174;;, + 101;3; 0.165085, 0.348037, 0.189174;;, + 102;3; 0.165085, 0.348037, 0.189174;;, + 103;3; 0.165085, 0.348037, 0.189174;;, + 104;3; 0.165085, 0.348037, 0.189174;;, + 105;3; 0.165085, 0.348037, 0.189174;;, + 106;3; 0.165085, 0.348037, 0.189174;;, + 107;3; 0.165085, 0.348037, 0.189174;;, + 108;3; 0.165085, 0.348037, 0.189174;;, + 109;3; 0.165085, 0.348037, 0.189174;;, + 110;3; 0.165085, 0.348037, 0.189174;;, + 111;3; 0.165085, 0.348037, 0.189174;;, + 112;3; 0.165085, 0.348037, 0.189174;;, + 113;3; 0.165085, 0.348037, 0.189174;;, + 114;3; 0.165085, 0.348037, 0.189174;;, + 115;3; 0.165085, 0.348037, 0.189174;;, + 116;3; 0.165085, 0.348037, 0.189174;;, + 117;3; 0.165085, 0.348037, 0.189174;;, + 118;3; 0.165085, 0.348037, 0.189174;;, + 119;3; 0.165085, 0.348037, 0.189174;;, + 120;3; 0.165085, 0.348037, 0.189174;;, + 121;3; 0.165085, 0.348037, 0.189174;;, + 122;3; 0.165085, 0.348037, 0.189174;;, + 123;3; 0.165085, 0.348037, 0.189174;;, + 124;3; 0.165085, 0.348037, 0.189174;;, + 125;3; 0.165085, 0.348037, 0.189174;;, + 126;3; 0.165085, 0.348037, 0.189174;;, + 127;3; 0.165085, 0.348037, 0.189174;;, + 128;3; 0.165085, 0.348037, 0.189174;;, + 129;3; 0.165085, 0.348037, 0.189174;;, + 130;3; 0.165085, 0.348037, 0.189174;;, + 131;3; 0.165085, 0.348037, 0.189174;;, + 132;3; 0.165085, 0.348037, 0.189174;;, + 133;3; 0.165085, 0.348037, 0.189174;;, + 134;3; 0.165085, 0.348037, 0.189174;;, + 135;3; 0.165085, 0.348037, 0.189174;;, + 136;3; 0.165085, 0.348037, 0.189174;;, + 137;3; 0.165085, 0.348037, 0.189174;;, + 138;3; 0.165085, 0.348037, 0.189174;;, + 139;3; 0.165085, 0.348037, 0.189174;;, + 140;3; 0.165085, 0.348037, 0.189174;;, + 141;3; 0.165085, 0.348037, 0.189174;;, + 142;3; 0.165085, 0.348037, 0.189174;;, + 143;3; 0.165085, 0.348037, 0.189174;;, + 144;3; 0.165085, 0.348037, 0.189174;;, + 145;3; 0.165085, 0.348037, 0.189174;;, + 146;3; 0.165085, 0.348037, 0.189174;;, + 147;3; 0.165085, 0.348037, 0.189174;;, + 148;3; 0.165085, 0.348037, 0.189174;;, + 149;3; 0.165085, 0.348037, 0.189174;;, + 150;3; 0.165085, 0.348037, 0.189174;;, + 151;3; 0.165085, 0.348037, 0.189174;;, + 152;3; 0.165085, 0.348037, 0.189174;;, + 153;3; 0.165085, 0.348037, 0.189174;;, + 154;3; 0.165085, 0.348037, 0.189174;;, + 155;3; 0.165085, 0.348037, 0.189174;;, + 156;3; 0.165085, 0.348037, 0.189174;;, + 157;3; 0.165085, 0.348037, 0.189174;;, + 158;3; 0.165085, 0.348037, 0.189174;;, + 159;3; 0.165085, 0.348037, 0.189174;;, + 160;3; 0.165085, 0.348037, 0.189174;;, + 161;3; 0.165085, 0.348037, 0.189174;;, + 162;3; 0.165085, 0.348037, 0.189174;;, + 163;3; 0.165085, 0.348037, 0.189174;;, + 164;3; 0.165085, 0.348037, 0.189174;;, + 165;3; 0.165085, 0.348037, 0.189174;;, + 166;3; 0.165085, 0.348037, 0.189174;;, + 167;3; 0.165085, 0.348037, 0.189174;;, + 168;3; 0.165085, 0.348037, 0.189174;;, + 169;3; 0.165085, 0.348037, 0.189174;;, + 170;3; 0.165085, 0.348037, 0.189174;;, + 171;3; 0.165085, 0.348037, 0.189174;;, + 172;3; 0.165085, 0.348037, 0.189174;;, + 173;3; 0.165085, 0.348037, 0.189174;;, + 174;3; 0.165085, 0.348037, 0.189174;;, + 175;3; 0.165085, 0.348037, 0.189174;;, + 176;3; 0.165085, 0.348037, 0.189174;;, + 177;3; 0.165085, 0.348037, 0.189174;;, + 178;3; 0.165085, 0.348037, 0.189174;;, + 179;3; 0.165085, 0.348037, 0.189174;;, + 180;3; 0.165085, 0.348037, 0.189174;;, + 181;3; 0.165085, 0.348037, 0.189174;;, + 182;3; 0.165085, 0.348037, 0.189174;;, + 183;3; 0.165085, 0.348037, 0.189174;;, + 184;3; 0.165085, 0.348037, 0.189174;;, + 185;3; 0.165085, 0.348037, 0.189174;;, + 186;3; 0.165085, 0.348037, 0.189174;;, + 187;3; 0.165085, 0.348037, 0.189174;;, + 188;3; 0.165085, 0.348037, 0.189174;;, + 189;3; 0.165085, 0.348037, 0.189174;;, + 190;3; 0.165085, 0.348037, 0.189174;;, + 191;3; 0.165085, 0.348037, 0.189174;;, + 192;3; 0.165085, 0.348037, 0.189174;;, + 193;3; 0.165085, 0.348037, 0.189174;;, + 194;3; 0.165085, 0.348037, 0.189174;;, + 195;3; 0.165085, 0.348037, 0.189174;;, + 196;3; 0.165085, 0.348037, 0.189174;;, + 197;3; 0.165085, 0.348037, 0.189174;;, + 198;3; 0.165085, 0.348037, 0.189174;;, + 199;3; 0.165085, 0.348037, 0.189174;;, + 200;3; 0.165085, 0.348037, 0.189174;;, + 201;3; 0.165085, 0.348037, 0.189174;;, + 202;3; 0.165085, 0.348037, 0.189174;;, + 203;3; 0.165085, 0.348037, 0.189174;;, + 204;3; 0.165085, 0.348037, 0.189174;;, + 205;3; 0.165085, 0.348037, 0.189174;;, + 206;3; 0.165085, 0.348037, 0.189174;;, + 207;3; 0.165085, 0.348037, 0.189174;;, + 208;3; 0.165085, 0.348037, 0.189174;;, + 209;3; 0.165085, 0.348037, 0.189174;;, + 210;3; 0.165085, 0.348037, 0.189174;;, + 211;3; 0.165085, 0.348037, 0.189174;;, + 212;3; 0.165085, 0.348037, 0.189174;;, + 213;3; 0.165085, 0.348037, 0.189174;;, + 214;3; 0.165085, 0.348037, 0.189174;;, + 215;3; 0.165085, 0.348037, 0.189174;;, + 216;3; 0.165085, 0.348037, 0.189174;;, + 217;3; 0.165085, 0.348037, 0.189174;;, + 218;3; 0.165085, 0.348037, 0.189174;;, + 219;3; 0.165085, 0.348037, 0.189174;;, + 220;3; 0.165085, 0.348037, 0.189174;;, + 221;3; 0.165085, 0.348037, 0.189174;;, + 222;3; 0.165085, 0.348037, 0.189174;;, + 223;3; 0.165085, 0.348037, 0.189174;;, + 224;3; 0.165085, 0.348037, 0.189174;;, + 225;3; 0.165085, 0.348037, 0.189174;;, + 226;3; 0.165085, 0.348037, 0.189174;;, + 227;3; 0.165085, 0.348037, 0.189174;;, + 228;3; 0.165085, 0.348037, 0.189174;;, + 229;3; 0.165085, 0.348037, 0.189174;;, + 230;3; 0.165085, 0.348037, 0.189174;;, + 231;3; 0.165085, 0.348037, 0.189174;;, + 232;3; 0.165085, 0.348037, 0.189174;;, + 233;3; 0.165085, 0.348037, 0.189174;;, + 234;3; 0.165085, 0.348037, 0.189174;;, + 235;3; 0.165085, 0.348037, 0.189174;;, + 236;3; 0.165085, 0.348037, 0.189174;;, + 237;3; 0.165085, 0.348037, 0.189174;;, + 238;3; 0.165085, 0.348037, 0.189174;;, + 239;3; 0.165085, 0.348037, 0.189174;;, + 240;3; 0.165085, 0.348037, 0.189174;;, + 241;3; 0.165085, 0.348037, 0.189174;;, + 242;3; 0.165085, 0.348037, 0.189174;;, + 243;3; 0.165085, 0.348037, 0.189174;;, + 244;3; 0.165085, 0.348037, 0.189174;;, + 245;3; 0.165085, 0.348037, 0.189174;;, + 246;3; 0.165085, 0.348037, 0.189174;;, + 247;3; 0.165085, 0.348037, 0.189174;;, + 248;3; 0.165085, 0.348037, 0.189174;;, + 249;3; 0.165085, 0.348037, 0.189174;;; + } + AnimationKey { // Position + 2; + 250; + 0;3; 0.672467, 1.528196, 1.101588;;, + 1;3; 0.672467, 1.528196, 1.101588;;, + 2;3; 0.672467, 1.528196, 1.101588;;, + 3;3; 0.672467, 1.528196, 1.101588;;, + 4;3; 0.672467, 1.528196, 1.101588;;, + 5;3; 0.672467, 1.528196, 1.101588;;, + 6;3; 0.672467, 1.528196, 1.101588;;, + 7;3; 0.672467, 1.528196, 1.101588;;, + 8;3; 0.672467, 1.528196, 1.101588;;, + 9;3; 0.672467, 1.528196, 1.101588;;, + 10;3; 0.672467, 1.528196, 1.101588;;, + 11;3; 0.672467, 1.528196, 1.101588;;, + 12;3; 0.672467, 1.528196, 1.101588;;, + 13;3; 0.672467, 1.528196, 1.101588;;, + 14;3; 0.672467, 1.528196, 1.101588;;, + 15;3; 0.672467, 1.528196, 1.101588;;, + 16;3; 0.672467, 1.528196, 1.101588;;, + 17;3; 0.672467, 1.528196, 1.101588;;, + 18;3; 0.672467, 1.528196, 1.101588;;, + 19;3; 0.672467, 1.528196, 1.101588;;, + 20;3; 0.672467, 1.528196, 1.101588;;, + 21;3; 0.672467, 1.528196, 1.101588;;, + 22;3; 0.672467, 1.528196, 1.101588;;, + 23;3; 0.672467, 1.528196, 1.101588;;, + 24;3; 0.672467, 1.528196, 1.101588;;, + 25;3; 0.672467, 1.528196, 1.101588;;, + 26;3; 0.672467, 1.528196, 1.101588;;, + 27;3; 0.672467, 1.528196, 1.101588;;, + 28;3; 0.672467, 1.528196, 1.101588;;, + 29;3; 0.672467, 1.528196, 1.101588;;, + 30;3; 0.672467, 1.528196, 1.101588;;, + 31;3; 0.672467, 1.528196, 1.101588;;, + 32;3; 0.672467, 1.528196, 1.101588;;, + 33;3; 0.672467, 1.528196, 1.101588;;, + 34;3; 0.672467, 1.528196, 1.101588;;, + 35;3; 0.672467, 1.528196, 1.101588;;, + 36;3; 0.672467, 1.528196, 1.101588;;, + 37;3; 0.672467, 1.528196, 1.101588;;, + 38;3; 0.672467, 1.528196, 1.101588;;, + 39;3; 0.672467, 1.528196, 1.101588;;, + 40;3; 0.672467, 1.528196, 1.101588;;, + 41;3; 0.672467, 1.528196, 1.101588;;, + 42;3; 0.672467, 1.528196, 1.101588;;, + 43;3; 0.672467, 1.528196, 1.101588;;, + 44;3; 0.672467, 1.528196, 1.101588;;, + 45;3; 0.672467, 1.528196, 1.101588;;, + 46;3; 0.672467, 1.528196, 1.101588;;, + 47;3; 0.672467, 1.528196, 1.101588;;, + 48;3; 0.672467, 1.528196, 1.101588;;, + 49;3; 0.672467, 1.528196, 1.101588;;, + 50;3; 0.672467, 1.528196, 1.101588;;, + 51;3; 0.672467, 1.528196, 1.101588;;, + 52;3; 0.672467, 1.528196, 1.101588;;, + 53;3; 0.672467, 1.528196, 1.101588;;, + 54;3; 0.672467, 1.528196, 1.101588;;, + 55;3; 0.672467, 1.528196, 1.101588;;, + 56;3; 0.672467, 1.528196, 1.101588;;, + 57;3; 0.672467, 1.528196, 1.101588;;, + 58;3; 0.672467, 1.528196, 1.101588;;, + 59;3; 0.672467, 1.528196, 1.101588;;, + 60;3; 0.672467, 1.528196, 1.101588;;, + 61;3; 0.672467, 1.528196, 1.101588;;, + 62;3; 0.672467, 1.528196, 1.101588;;, + 63;3; 0.672467, 1.528196, 1.101588;;, + 64;3; 0.672467, 1.528196, 1.101588;;, + 65;3; 0.672467, 1.528196, 1.101588;;, + 66;3; 0.672467, 1.528196, 1.101588;;, + 67;3; 0.672467, 1.528196, 1.101588;;, + 68;3; 0.672467, 1.528196, 1.101588;;, + 69;3; 0.672467, 1.528196, 1.101588;;, + 70;3; 0.672467, 1.528196, 1.101588;;, + 71;3; 0.672467, 1.528196, 1.101588;;, + 72;3; 0.672467, 1.528196, 1.101588;;, + 73;3; 0.672467, 1.528196, 1.101588;;, + 74;3; 0.672467, 1.528196, 1.101588;;, + 75;3; 0.672467, 1.528196, 1.101588;;, + 76;3; 0.672467, 1.528196, 1.101588;;, + 77;3; 0.672467, 1.528196, 1.101588;;, + 78;3; 0.672467, 1.528196, 1.101588;;, + 79;3; 0.672467, 1.528196, 1.101588;;, + 80;3; 0.672467, 1.528196, 1.101588;;, + 81;3; 0.672467, 1.528196, 1.101588;;, + 82;3; 0.672467, 1.528196, 1.101588;;, + 83;3; 0.672467, 1.528196, 1.101588;;, + 84;3; 0.672467, 1.528196, 1.101588;;, + 85;3; 0.672467, 1.528196, 1.101588;;, + 86;3; 0.672467, 1.528196, 1.101588;;, + 87;3; 0.672467, 1.528196, 1.101588;;, + 88;3; 0.672467, 1.528196, 1.101588;;, + 89;3; 0.672467, 1.528196, 1.101588;;, + 90;3; 0.672467, 1.528196, 1.101588;;, + 91;3; 0.672467, 1.528196, 1.101588;;, + 92;3; 0.672467, 1.528196, 1.101588;;, + 93;3; 0.672467, 1.528196, 1.101588;;, + 94;3; 0.672467, 1.528196, 1.101588;;, + 95;3; 0.672467, 1.528196, 1.101588;;, + 96;3; 0.672467, 1.528196, 1.101588;;, + 97;3; 0.672467, 1.528196, 1.101588;;, + 98;3; 0.672467, 1.528196, 1.101588;;, + 99;3; 0.672467, 1.528196, 1.101588;;, + 100;3; 0.672467, 1.528196, 1.101588;;, + 101;3; 0.672467, 1.528196, 1.101588;;, + 102;3; 0.672467, 1.528196, 1.101588;;, + 103;3; 0.672467, 1.528196, 1.101588;;, + 104;3; 0.672467, 1.528196, 1.101588;;, + 105;3; 0.672467, 1.528196, 1.101588;;, + 106;3; 0.672467, 1.528196, 1.101588;;, + 107;3; 0.672467, 1.528196, 1.101588;;, + 108;3; 0.672467, 1.528196, 1.101588;;, + 109;3; 0.672467, 1.528196, 1.101588;;, + 110;3; 0.672467, 1.528196, 1.101588;;, + 111;3; 0.672467, 1.528196, 1.101588;;, + 112;3; 0.672467, 1.528196, 1.101588;;, + 113;3; 0.672467, 1.528196, 1.101588;;, + 114;3; 0.672467, 1.528196, 1.101588;;, + 115;3; 0.672467, 1.528196, 1.101588;;, + 116;3; 0.672467, 1.528196, 1.101588;;, + 117;3; 0.672467, 1.528196, 1.101588;;, + 118;3; 0.672467, 1.528196, 1.101588;;, + 119;3; 0.672467, 1.528196, 1.101588;;, + 120;3; 0.672467, 1.528196, 1.101588;;, + 121;3; 0.672467, 1.528196, 1.101588;;, + 122;3; 0.672467, 1.528196, 1.101588;;, + 123;3; 0.672467, 1.528196, 1.101588;;, + 124;3; 0.672467, 1.528196, 1.101588;;, + 125;3; 0.672467, 1.528196, 1.101588;;, + 126;3; 0.672467, 1.528196, 1.101588;;, + 127;3; 0.672467, 1.528196, 1.101588;;, + 128;3; 0.672467, 1.528196, 1.101588;;, + 129;3; 0.672467, 1.528196, 1.101588;;, + 130;3; 0.672467, 1.528196, 1.101588;;, + 131;3; 0.672467, 1.528196, 1.101588;;, + 132;3; 0.672467, 1.528196, 1.101588;;, + 133;3; 0.672467, 1.528196, 1.101588;;, + 134;3; 0.672467, 1.528196, 1.101588;;, + 135;3; 0.672467, 1.528196, 1.101588;;, + 136;3; 0.672467, 1.528196, 1.101588;;, + 137;3; 0.672467, 1.528196, 1.101588;;, + 138;3; 0.672467, 1.528196, 1.101588;;, + 139;3; 0.672467, 1.528196, 1.101588;;, + 140;3; 0.672467, 1.528196, 1.101588;;, + 141;3; 0.672467, 1.528196, 1.101588;;, + 142;3; 0.672467, 1.528196, 1.101588;;, + 143;3; 0.672467, 1.528196, 1.101588;;, + 144;3; 0.672467, 1.528196, 1.101588;;, + 145;3; 0.672467, 1.528196, 1.101588;;, + 146;3; 0.672467, 1.528196, 1.101588;;, + 147;3; 0.672467, 1.528196, 1.101588;;, + 148;3; 0.672467, 1.528196, 1.101588;;, + 149;3; 0.672467, 1.528196, 1.101588;;, + 150;3; 0.672467, 1.528196, 1.101588;;, + 151;3; 0.672467, 1.528196, 1.101588;;, + 152;3; 0.672467, 1.528196, 1.101588;;, + 153;3; 0.672467, 1.528196, 1.101588;;, + 154;3; 0.672467, 1.528196, 1.101588;;, + 155;3; 0.672467, 1.528196, 1.101588;;, + 156;3; 0.672467, 1.528196, 1.101588;;, + 157;3; 0.672467, 1.528196, 1.101588;;, + 158;3; 0.672467, 1.528196, 1.101588;;, + 159;3; 0.672467, 1.528196, 1.101588;;, + 160;3; 0.672467, 1.528196, 1.101588;;, + 161;3; 0.672467, 1.528196, 1.101588;;, + 162;3; 0.672467, 1.528196, 1.101588;;, + 163;3; 0.672467, 1.528196, 1.101588;;, + 164;3; 0.672467, 1.528196, 1.101588;;, + 165;3; 0.672467, 1.528196, 1.101588;;, + 166;3; 0.672467, 1.528196, 1.101588;;, + 167;3; 0.672467, 1.528196, 1.101588;;, + 168;3; 0.672467, 1.528196, 1.101588;;, + 169;3; 0.672467, 1.528196, 1.101588;;, + 170;3; 0.672467, 1.528196, 1.101588;;, + 171;3; 0.672467, 1.528196, 1.101588;;, + 172;3; 0.672467, 1.528196, 1.101588;;, + 173;3; 0.672467, 1.528196, 1.101588;;, + 174;3; 0.672467, 1.528196, 1.101588;;, + 175;3; 0.672467, 1.528196, 1.101588;;, + 176;3; 0.672467, 1.528196, 1.101588;;, + 177;3; 0.672467, 1.528196, 1.101588;;, + 178;3; 0.672467, 1.528196, 1.101588;;, + 179;3; 0.672467, 1.528196, 1.101588;;, + 180;3; 0.672467, 1.528196, 1.101588;;, + 181;3; 0.672467, 1.528196, 1.101588;;, + 182;3; 0.672467, 1.528196, 1.101588;;, + 183;3; 0.672467, 1.528196, 1.101588;;, + 184;3; 0.672467, 1.528196, 1.101588;;, + 185;3; 0.672467, 1.528196, 1.101588;;, + 186;3; 0.672467, 1.528196, 1.101588;;, + 187;3; 0.672467, 1.528196, 1.101588;;, + 188;3; 0.672467, 1.528196, 1.101588;;, + 189;3; 0.672467, 1.528196, 1.101588;;, + 190;3; 0.672467, 1.528196, 1.101588;;, + 191;3; 0.672467, 1.528196, 1.101588;;, + 192;3; 0.672467, 1.528196, 1.101588;;, + 193;3; 0.672467, 1.528196, 1.101588;;, + 194;3; 0.672467, 1.528196, 1.101588;;, + 195;3; 0.672467, 1.528196, 1.101588;;, + 196;3; 0.672467, 1.528196, 1.101588;;, + 197;3; 0.672467, 1.528196, 1.101588;;, + 198;3; 0.672467, 1.528196, 1.101588;;, + 199;3; 0.672467, 1.528196, 1.101588;;, + 200;3; 0.672467, 1.528196, 1.101588;;, + 201;3; 0.672467, 1.528196, 1.101588;;, + 202;3; 0.672467, 1.528196, 1.101588;;, + 203;3; 0.672467, 1.528196, 1.101588;;, + 204;3; 0.672467, 1.528196, 1.101588;;, + 205;3; 0.672467, 1.528196, 1.101588;;, + 206;3; 0.672467, 1.528196, 1.101588;;, + 207;3; 0.672467, 1.528196, 1.101588;;, + 208;3; 0.672467, 1.528196, 1.101588;;, + 209;3; 0.672467, 1.528196, 1.101588;;, + 210;3; 0.672467, 1.528196, 1.101588;;, + 211;3; 0.672467, 1.528196, 1.101588;;, + 212;3; 0.672467, 1.528196, 1.101588;;, + 213;3; 0.672467, 1.528196, 1.101588;;, + 214;3; 0.672467, 1.528196, 1.101588;;, + 215;3; 0.672467, 1.528196, 1.101588;;, + 216;3; 0.672467, 1.528196, 1.101588;;, + 217;3; 0.672467, 1.528196, 1.101588;;, + 218;3; 0.672467, 1.528196, 1.101588;;, + 219;3; 0.672467, 1.528196, 1.101588;;, + 220;3; 0.672467, 1.528196, 1.101588;;, + 221;3; 0.672467, 1.528196, 1.101588;;, + 222;3; 0.672467, 1.528196, 1.101588;;, + 223;3; 0.672467, 1.528196, 1.101588;;, + 224;3; 0.672467, 1.528196, 1.101588;;, + 225;3; 0.672467, 1.528196, 1.101588;;, + 226;3; 0.672467, 1.528196, 1.101588;;, + 227;3; 0.672467, 1.528196, 1.101588;;, + 228;3; 0.672467, 1.528196, 1.101588;;, + 229;3; 0.672467, 1.528196, 1.101588;;, + 230;3; 0.672467, 1.528196, 1.101588;;, + 231;3; 0.672467, 1.528196, 1.101588;;, + 232;3; 0.672467, 1.528196, 1.101588;;, + 233;3; 0.672467, 1.528196, 1.101588;;, + 234;3; 0.672467, 1.528196, 1.101588;;, + 235;3; 0.672467, 1.528196, 1.101588;;, + 236;3; 0.672467, 1.528196, 1.101588;;, + 237;3; 0.672467, 1.528196, 1.101588;;, + 238;3; 0.672467, 1.528196, 1.101588;;, + 239;3; 0.672467, 1.528196, 1.101588;;, + 240;3; 0.672467, 1.528196, 1.101588;;, + 241;3; 0.672467, 1.528196, 1.101588;;, + 242;3; 0.672467, 1.528196, 1.101588;;, + 243;3; 0.672467, 1.528196, 1.101588;;, + 244;3; 0.672467, 1.528196, 1.101588;;, + 245;3; 0.672467, 1.528196, 1.101588;;, + 246;3; 0.672467, 1.528196, 1.101588;;, + 247;3; 0.672467, 1.528196, 1.101588;;, + 248;3; 0.672467, 1.528196, 1.101588;;, + 249;3; 0.672467, 1.528196, 1.101588;;; + } + } +} // End of AnimationSet Global diff --git a/mods/_various/mobs/models/zmobs_lava_flan.x b/mods/_various/legacy_mobs/models/zmobs_lava_flan.x similarity index 100% rename from mods/_various/mobs/models/zmobs_lava_flan.x rename to mods/_various/legacy_mobs/models/zmobs_lava_flan.x diff --git a/mods/_various/mobs/models/zmobs_mese_monster.x b/mods/_various/legacy_mobs/models/zmobs_mese_monster.x similarity index 100% rename from mods/_various/mobs/models/zmobs_mese_monster.x rename to mods/_various/legacy_mobs/models/zmobs_mese_monster.x diff --git a/mods/_various/mobs/sounds/default_punch.ogg b/mods/_various/legacy_mobs/sounds/default_punch.ogg similarity index 100% rename from mods/_various/mobs/sounds/default_punch.ogg rename to mods/_various/legacy_mobs/sounds/default_punch.ogg diff --git a/mods/_various/mobs/sounds/mobs_bee.ogg b/mods/_various/legacy_mobs/sounds/mobs_bee.ogg similarity index 100% rename from mods/_various/mobs/sounds/mobs_bee.ogg rename to mods/_various/legacy_mobs/sounds/mobs_bee.ogg diff --git a/mods/_various/mobs/sounds/mobs_chicken.ogg b/mods/_various/legacy_mobs/sounds/mobs_chicken.ogg similarity index 100% rename from mods/_various/mobs/sounds/mobs_chicken.ogg rename to mods/_various/legacy_mobs/sounds/mobs_chicken.ogg diff --git a/mods/_various/mobs/sounds/mobs_cow.ogg b/mods/_various/legacy_mobs/sounds/mobs_cow.ogg similarity index 100% rename from mods/_various/mobs/sounds/mobs_cow.ogg rename to mods/_various/legacy_mobs/sounds/mobs_cow.ogg diff --git a/mods/_various/mobs/sounds/mobs_dirtmonster.ogg b/mods/_various/legacy_mobs/sounds/mobs_dirtmonster.ogg similarity index 100% rename from mods/_various/mobs/sounds/mobs_dirtmonster.ogg rename to mods/_various/legacy_mobs/sounds/mobs_dirtmonster.ogg diff --git a/mods/_various/mobs/sounds/mobs_dungeonmaster.ogg b/mods/_various/legacy_mobs/sounds/mobs_dungeonmaster.ogg similarity index 100% rename from mods/_various/mobs/sounds/mobs_dungeonmaster.ogg rename to mods/_various/legacy_mobs/sounds/mobs_dungeonmaster.ogg diff --git a/mods/_various/mobs/sounds/mobs_fireball.ogg b/mods/_various/legacy_mobs/sounds/mobs_fireball.ogg similarity index 100% rename from mods/_various/mobs/sounds/mobs_fireball.ogg rename to mods/_various/legacy_mobs/sounds/mobs_fireball.ogg diff --git a/mods/_various/mobs/sounds/mobs_kitten.ogg b/mods/_various/legacy_mobs/sounds/mobs_kitten.ogg similarity index 100% rename from mods/_various/mobs/sounds/mobs_kitten.ogg rename to mods/_various/legacy_mobs/sounds/mobs_kitten.ogg diff --git a/mods/_various/mobs/sounds/mobs_lavaflan.ogg b/mods/_various/legacy_mobs/sounds/mobs_lavaflan.ogg similarity index 100% rename from mods/_various/mobs/sounds/mobs_lavaflan.ogg rename to mods/_various/legacy_mobs/sounds/mobs_lavaflan.ogg diff --git a/mods/_various/mobs/sounds/mobs_mesemonster.ogg b/mods/_various/legacy_mobs/sounds/mobs_mesemonster.ogg similarity index 100% rename from mods/_various/mobs/sounds/mobs_mesemonster.ogg rename to mods/_various/legacy_mobs/sounds/mobs_mesemonster.ogg diff --git a/mods/_various/mobs/sounds/mobs_oerkki.ogg b/mods/_various/legacy_mobs/sounds/mobs_oerkki.ogg similarity index 100% rename from mods/_various/mobs/sounds/mobs_oerkki.ogg rename to mods/_various/legacy_mobs/sounds/mobs_oerkki.ogg diff --git a/mods/_various/mobs/sounds/mobs_pig.ogg b/mods/_various/legacy_mobs/sounds/mobs_pig.ogg similarity index 100% rename from mods/_various/mobs/sounds/mobs_pig.ogg rename to mods/_various/legacy_mobs/sounds/mobs_pig.ogg diff --git a/mods/_various/mobs/sounds/mobs_pig_angry.ogg b/mods/_various/legacy_mobs/sounds/mobs_pig_angry.ogg similarity index 100% rename from mods/_various/mobs/sounds/mobs_pig_angry.ogg rename to mods/_various/legacy_mobs/sounds/mobs_pig_angry.ogg diff --git a/mods/_various/mobs/sounds/mobs_rat.ogg b/mods/_various/legacy_mobs/sounds/mobs_rat.ogg similarity index 100% rename from mods/_various/mobs/sounds/mobs_rat.ogg rename to mods/_various/legacy_mobs/sounds/mobs_rat.ogg diff --git a/mods/_various/mobs/sounds/mobs_sandmonster.ogg b/mods/_various/legacy_mobs/sounds/mobs_sandmonster.ogg similarity index 100% rename from mods/_various/mobs/sounds/mobs_sandmonster.ogg rename to mods/_various/legacy_mobs/sounds/mobs_sandmonster.ogg diff --git a/mods/_various/mobs/sounds/mobs_sheep.ogg b/mods/_various/legacy_mobs/sounds/mobs_sheep.ogg similarity index 100% rename from mods/_various/mobs/sounds/mobs_sheep.ogg rename to mods/_various/legacy_mobs/sounds/mobs_sheep.ogg diff --git a/mods/_various/mobs/sounds/mobs_spider.ogg b/mods/_various/legacy_mobs/sounds/mobs_spider.ogg similarity index 100% rename from mods/_various/mobs/sounds/mobs_spider.ogg rename to mods/_various/legacy_mobs/sounds/mobs_spider.ogg diff --git a/mods/_various/mobs/sounds/mobs_stonemonster.ogg b/mods/_various/legacy_mobs/sounds/mobs_stonemonster.ogg similarity index 100% rename from mods/_various/mobs/sounds/mobs_stonemonster.ogg rename to mods/_various/legacy_mobs/sounds/mobs_stonemonster.ogg diff --git a/mods/_various/mobs/sounds/mobs_treemonster.ogg b/mods/_various/legacy_mobs/sounds/mobs_treemonster.ogg similarity index 100% rename from mods/_various/mobs/sounds/mobs_treemonster.ogg rename to mods/_various/legacy_mobs/sounds/mobs_treemonster.ogg diff --git a/mods/_various/mobs/textures/bees_hive_artificial.png b/mods/_various/legacy_mobs/textures/bees_hive_artificial.png similarity index 100% rename from mods/_various/mobs/textures/bees_hive_artificial.png rename to mods/_various/legacy_mobs/textures/bees_hive_artificial.png diff --git a/mods/_various/mobs/textures/bees_hive_wild_s.png b/mods/_various/legacy_mobs/textures/bees_hive_wild_s.png similarity index 100% rename from mods/_various/mobs/textures/bees_hive_wild_s.png rename to mods/_various/legacy_mobs/textures/bees_hive_wild_s.png diff --git a/mods/_various/mobs/textures/mobs_blood.png b/mods/_various/legacy_mobs/textures/mobs_blood.png similarity index 100% rename from mods/_various/mobs/textures/mobs_blood.png rename to mods/_various/legacy_mobs/textures/mobs_blood.png diff --git a/mods/_various/mobs/textures/mobs_bucket_milk.png b/mods/_various/legacy_mobs/textures/mobs_bucket_milk.png similarity index 100% rename from mods/_various/mobs/textures/mobs_bucket_milk.png rename to mods/_various/legacy_mobs/textures/mobs_bucket_milk.png diff --git a/mods/_various/mobs/textures/mobs_bunny_brown.png b/mods/_various/legacy_mobs/textures/mobs_bunny_brown.png similarity index 100% rename from mods/_various/mobs/textures/mobs_bunny_brown.png rename to mods/_various/legacy_mobs/textures/mobs_bunny_brown.png diff --git a/mods/_various/mobs/textures/mobs_bunny_evil.png b/mods/_various/legacy_mobs/textures/mobs_bunny_evil.png similarity index 100% rename from mods/_various/mobs/textures/mobs_bunny_evil.png rename to mods/_various/legacy_mobs/textures/mobs_bunny_evil.png diff --git a/mods/_various/mobs/textures/mobs_bunny_grey.png b/mods/_various/legacy_mobs/textures/mobs_bunny_grey.png similarity index 100% rename from mods/_various/mobs/textures/mobs_bunny_grey.png rename to mods/_various/legacy_mobs/textures/mobs_bunny_grey.png diff --git a/mods/_various/mobs/textures/mobs_bunny_inv.png b/mods/_various/legacy_mobs/textures/mobs_bunny_inv.png similarity index 100% rename from mods/_various/mobs/textures/mobs_bunny_inv.png rename to mods/_various/legacy_mobs/textures/mobs_bunny_inv.png diff --git a/mods/_various/mobs/textures/mobs_bunny_white.png b/mods/_various/legacy_mobs/textures/mobs_bunny_white.png similarity index 100% rename from mods/_various/mobs/textures/mobs_bunny_white.png rename to mods/_various/legacy_mobs/textures/mobs_bunny_white.png diff --git a/mods/_various/mobs/textures/mobs_cheese.png b/mods/_various/legacy_mobs/textures/mobs_cheese.png similarity index 100% rename from mods/_various/mobs/textures/mobs_cheese.png rename to mods/_various/legacy_mobs/textures/mobs_cheese.png diff --git a/mods/_various/mobs/textures/mobs_cheeseblock.png b/mods/_various/legacy_mobs/textures/mobs_cheeseblock.png similarity index 100% rename from mods/_various/mobs/textures/mobs_cheeseblock.png rename to mods/_various/legacy_mobs/textures/mobs_cheeseblock.png diff --git a/mods/_various/mobs/textures/mobs_chick.png b/mods/_various/legacy_mobs/textures/mobs_chick.png similarity index 100% rename from mods/_various/mobs/textures/mobs_chick.png rename to mods/_various/legacy_mobs/textures/mobs_chick.png diff --git a/mods/_various/mobs/textures/mobs_chicken.png b/mods/_various/legacy_mobs/textures/mobs_chicken.png similarity index 100% rename from mods/_various/mobs/textures/mobs_chicken.png rename to mods/_various/legacy_mobs/textures/mobs_chicken.png diff --git a/mods/_various/mobs/textures/mobs_chicken_black.png b/mods/_various/legacy_mobs/textures/mobs_chicken_black.png similarity index 100% rename from mods/_various/mobs/textures/mobs_chicken_black.png rename to mods/_various/legacy_mobs/textures/mobs_chicken_black.png diff --git a/mods/_various/mobs/textures/mobs_chicken_cooked.png b/mods/_various/legacy_mobs/textures/mobs_chicken_cooked.png similarity index 100% rename from mods/_various/mobs/textures/mobs_chicken_cooked.png rename to mods/_various/legacy_mobs/textures/mobs_chicken_cooked.png diff --git a/mods/_various/mobs/textures/mobs_chicken_egg.png b/mods/_various/legacy_mobs/textures/mobs_chicken_egg.png similarity index 100% rename from mods/_various/mobs/textures/mobs_chicken_egg.png rename to mods/_various/legacy_mobs/textures/mobs_chicken_egg.png diff --git a/mods/_various/mobs/textures/mobs_chicken_egg_fried.png b/mods/_various/legacy_mobs/textures/mobs_chicken_egg_fried.png similarity index 100% rename from mods/_various/mobs/textures/mobs_chicken_egg_fried.png rename to mods/_various/legacy_mobs/textures/mobs_chicken_egg_fried.png diff --git a/mods/_various/mobs/textures/mobs_chicken_egg_overlay.png b/mods/_various/legacy_mobs/textures/mobs_chicken_egg_overlay.png similarity index 100% rename from mods/_various/mobs/textures/mobs_chicken_egg_overlay.png rename to mods/_various/legacy_mobs/textures/mobs_chicken_egg_overlay.png diff --git a/mods/_various/mobs/textures/mobs_chicken_inv.png b/mods/_various/legacy_mobs/textures/mobs_chicken_inv.png similarity index 100% rename from mods/_various/mobs/textures/mobs_chicken_inv.png rename to mods/_various/legacy_mobs/textures/mobs_chicken_inv.png diff --git a/mods/_various/mobs/textures/mobs_chicken_raw.png b/mods/_various/legacy_mobs/textures/mobs_chicken_raw.png similarity index 100% rename from mods/_various/mobs/textures/mobs_chicken_raw.png rename to mods/_various/legacy_mobs/textures/mobs_chicken_raw.png diff --git a/mods/_various/mobs/textures/mobs_cobweb.png b/mods/_various/legacy_mobs/textures/mobs_cobweb.png similarity index 100% rename from mods/_various/mobs/textures/mobs_cobweb.png rename to mods/_various/legacy_mobs/textures/mobs_cobweb.png diff --git a/mods/_various/mobs/textures/mobs_cooked_rat.png b/mods/_various/legacy_mobs/textures/mobs_cooked_rat.png similarity index 100% rename from mods/_various/mobs/textures/mobs_cooked_rat.png rename to mods/_various/legacy_mobs/textures/mobs_cooked_rat.png diff --git a/mods/_various/mobs/textures/mobs_cow.png b/mods/_various/legacy_mobs/textures/mobs_cow.png similarity index 100% rename from mods/_various/mobs/textures/mobs_cow.png rename to mods/_various/legacy_mobs/textures/mobs_cow.png diff --git a/mods/_various/mobs/textures/mobs_dirt_monster.png b/mods/_various/legacy_mobs/textures/mobs_dirt_monster.png similarity index 100% rename from mods/_various/mobs/textures/mobs_dirt_monster.png rename to mods/_various/legacy_mobs/textures/mobs_dirt_monster.png diff --git a/mods/_various/mobs/textures/mobs_dungeon_master.png b/mods/_various/legacy_mobs/textures/mobs_dungeon_master.png similarity index 100% rename from mods/_various/mobs/textures/mobs_dungeon_master.png rename to mods/_various/legacy_mobs/textures/mobs_dungeon_master.png diff --git a/mods/_various/mobs/textures/mobs_dungeon_master2.png b/mods/_various/legacy_mobs/textures/mobs_dungeon_master2.png similarity index 100% rename from mods/_various/mobs/textures/mobs_dungeon_master2.png rename to mods/_various/legacy_mobs/textures/mobs_dungeon_master2.png diff --git a/mods/_various/mobs/textures/mobs_dungeon_master3.png b/mods/_various/legacy_mobs/textures/mobs_dungeon_master3.png similarity index 100% rename from mods/_various/mobs/textures/mobs_dungeon_master3.png rename to mods/_various/legacy_mobs/textures/mobs_dungeon_master3.png diff --git a/mods/_various/mobs/textures/mobs_fireball.png b/mods/_various/legacy_mobs/textures/mobs_fireball.png similarity index 100% rename from mods/_various/mobs/textures/mobs_fireball.png rename to mods/_various/legacy_mobs/textures/mobs_fireball.png diff --git a/mods/_various/mobs/textures/mobs_leather.png b/mods/_various/legacy_mobs/textures/mobs_leather.png similarity index 100% rename from mods/_various/mobs/textures/mobs_leather.png rename to mods/_various/legacy_mobs/textures/mobs_leather.png diff --git a/mods/_various/mobs/textures/mobs_magic_lasso.png b/mods/_various/legacy_mobs/textures/mobs_magic_lasso.png similarity index 100% rename from mods/_various/mobs/textures/mobs_magic_lasso.png rename to mods/_various/legacy_mobs/textures/mobs_magic_lasso.png diff --git a/mods/_various/mobs/textures/mobs_meat.png b/mods/_various/legacy_mobs/textures/mobs_meat.png similarity index 100% rename from mods/_various/mobs/textures/mobs_meat.png rename to mods/_various/legacy_mobs/textures/mobs_meat.png diff --git a/mods/_various/mobs/textures/mobs_meat_raw.png b/mods/_various/legacy_mobs/textures/mobs_meat_raw.png similarity index 100% rename from mods/_various/mobs/textures/mobs_meat_raw.png rename to mods/_various/legacy_mobs/textures/mobs_meat_raw.png diff --git a/mods/_various/mobs/textures/mobs_net.png b/mods/_various/legacy_mobs/textures/mobs_net.png similarity index 100% rename from mods/_various/mobs/textures/mobs_net.png rename to mods/_various/legacy_mobs/textures/mobs_net.png diff --git a/mods/_various/mobs/textures/mobs_npc.png b/mods/_various/legacy_mobs/textures/mobs_npc.png similarity index 100% rename from mods/_various/mobs/textures/mobs_npc.png rename to mods/_various/legacy_mobs/textures/mobs_npc.png diff --git a/mods/_various/mobs/textures/mobs_npc2.png b/mods/_various/legacy_mobs/textures/mobs_npc2.png similarity index 100% rename from mods/_various/mobs/textures/mobs_npc2.png rename to mods/_various/legacy_mobs/textures/mobs_npc2.png diff --git a/mods/_various/mobs/textures/mobs_npc_baby.png b/mods/_various/legacy_mobs/textures/mobs_npc_baby.png similarity index 100% rename from mods/_various/mobs/textures/mobs_npc_baby.png rename to mods/_various/legacy_mobs/textures/mobs_npc_baby.png diff --git a/mods/_various/mobs/textures/mobs_oerkki.png b/mods/_various/legacy_mobs/textures/mobs_oerkki.png similarity index 100% rename from mods/_various/mobs/textures/mobs_oerkki.png rename to mods/_various/legacy_mobs/textures/mobs_oerkki.png diff --git a/mods/_various/mobs/textures/mobs_oerkki2.png b/mods/_various/legacy_mobs/textures/mobs_oerkki2.png similarity index 100% rename from mods/_various/mobs/textures/mobs_oerkki2.png rename to mods/_various/legacy_mobs/textures/mobs_oerkki2.png diff --git a/mods/_various/mobs/textures/mobs_pork_cooked.png b/mods/_various/legacy_mobs/textures/mobs_pork_cooked.png similarity index 100% rename from mods/_various/mobs/textures/mobs_pork_cooked.png rename to mods/_various/legacy_mobs/textures/mobs_pork_cooked.png diff --git a/mods/_various/mobs/textures/mobs_pork_raw.png b/mods/_various/legacy_mobs/textures/mobs_pork_raw.png similarity index 100% rename from mods/_various/mobs/textures/mobs_pork_raw.png rename to mods/_various/legacy_mobs/textures/mobs_pork_raw.png diff --git a/mods/_various/mobs/textures/mobs_pumba.png b/mods/_various/legacy_mobs/textures/mobs_pumba.png similarity index 100% rename from mods/_various/mobs/textures/mobs_pumba.png rename to mods/_various/legacy_mobs/textures/mobs_pumba.png diff --git a/mods/_various/mobs/textures/mobs_rat.png b/mods/_various/legacy_mobs/textures/mobs_rat.png similarity index 100% rename from mods/_various/mobs/textures/mobs_rat.png rename to mods/_various/legacy_mobs/textures/mobs_rat.png diff --git a/mods/_various/mobs/textures/mobs_rat2.png b/mods/_various/legacy_mobs/textures/mobs_rat2.png similarity index 100% rename from mods/_various/mobs/textures/mobs_rat2.png rename to mods/_various/legacy_mobs/textures/mobs_rat2.png diff --git a/mods/_various/mobs/textures/mobs_rat_inventory.png b/mods/_various/legacy_mobs/textures/mobs_rat_inventory.png similarity index 100% rename from mods/_various/mobs/textures/mobs_rat_inventory.png rename to mods/_various/legacy_mobs/textures/mobs_rat_inventory.png diff --git a/mods/_various/mobs/textures/mobs_sand_monster.png b/mods/_various/legacy_mobs/textures/mobs_sand_monster.png similarity index 100% rename from mods/_various/mobs/textures/mobs_sand_monster.png rename to mods/_various/legacy_mobs/textures/mobs_sand_monster.png diff --git a/mods/_various/mobs/textures/mobs_shears.png b/mods/_various/legacy_mobs/textures/mobs_shears.png similarity index 100% rename from mods/_various/mobs/textures/mobs_shears.png rename to mods/_various/legacy_mobs/textures/mobs_shears.png diff --git a/mods/_various/mobs/textures/mobs_sheep.png b/mods/_various/legacy_mobs/textures/mobs_sheep.png similarity index 100% rename from mods/_various/mobs/textures/mobs_sheep.png rename to mods/_various/legacy_mobs/textures/mobs_sheep.png diff --git a/mods/_various/mobs/textures/mobs_sheep_black.png b/mods/_various/legacy_mobs/textures/mobs_sheep_black.png similarity index 100% rename from mods/_various/mobs/textures/mobs_sheep_black.png rename to mods/_various/legacy_mobs/textures/mobs_sheep_black.png diff --git a/mods/_various/mobs/textures/mobs_sheep_blue.png b/mods/_various/legacy_mobs/textures/mobs_sheep_blue.png similarity index 100% rename from mods/_various/mobs/textures/mobs_sheep_blue.png rename to mods/_various/legacy_mobs/textures/mobs_sheep_blue.png diff --git a/mods/_various/mobs/textures/mobs_sheep_brown.png b/mods/_various/legacy_mobs/textures/mobs_sheep_brown.png similarity index 100% rename from mods/_various/mobs/textures/mobs_sheep_brown.png rename to mods/_various/legacy_mobs/textures/mobs_sheep_brown.png diff --git a/mods/_various/mobs/textures/mobs_sheep_cyan.png b/mods/_various/legacy_mobs/textures/mobs_sheep_cyan.png similarity index 100% rename from mods/_various/mobs/textures/mobs_sheep_cyan.png rename to mods/_various/legacy_mobs/textures/mobs_sheep_cyan.png diff --git a/mods/_various/mobs/textures/mobs_sheep_dark_green.png b/mods/_various/legacy_mobs/textures/mobs_sheep_dark_green.png similarity index 100% rename from mods/_various/mobs/textures/mobs_sheep_dark_green.png rename to mods/_various/legacy_mobs/textures/mobs_sheep_dark_green.png diff --git a/mods/_various/mobs/textures/mobs_sheep_dark_grey.png b/mods/_various/legacy_mobs/textures/mobs_sheep_dark_grey.png similarity index 100% rename from mods/_various/mobs/textures/mobs_sheep_dark_grey.png rename to mods/_various/legacy_mobs/textures/mobs_sheep_dark_grey.png diff --git a/mods/_various/mobs/textures/mobs_sheep_green.png b/mods/_various/legacy_mobs/textures/mobs_sheep_green.png similarity index 100% rename from mods/_various/mobs/textures/mobs_sheep_green.png rename to mods/_various/legacy_mobs/textures/mobs_sheep_green.png diff --git a/mods/_various/mobs/textures/mobs_sheep_grey.png b/mods/_various/legacy_mobs/textures/mobs_sheep_grey.png similarity index 100% rename from mods/_various/mobs/textures/mobs_sheep_grey.png rename to mods/_various/legacy_mobs/textures/mobs_sheep_grey.png diff --git a/mods/_various/mobs/textures/mobs_sheep_magenta.png b/mods/_various/legacy_mobs/textures/mobs_sheep_magenta.png similarity index 100% rename from mods/_various/mobs/textures/mobs_sheep_magenta.png rename to mods/_various/legacy_mobs/textures/mobs_sheep_magenta.png diff --git a/mods/_various/mobs/textures/mobs_sheep_orange.png b/mods/_various/legacy_mobs/textures/mobs_sheep_orange.png similarity index 100% rename from mods/_various/mobs/textures/mobs_sheep_orange.png rename to mods/_various/legacy_mobs/textures/mobs_sheep_orange.png diff --git a/mods/_various/mobs/textures/mobs_sheep_pink.png b/mods/_various/legacy_mobs/textures/mobs_sheep_pink.png similarity index 100% rename from mods/_various/mobs/textures/mobs_sheep_pink.png rename to mods/_various/legacy_mobs/textures/mobs_sheep_pink.png diff --git a/mods/_various/mobs/textures/mobs_sheep_red.png b/mods/_various/legacy_mobs/textures/mobs_sheep_red.png similarity index 100% rename from mods/_various/mobs/textures/mobs_sheep_red.png rename to mods/_various/legacy_mobs/textures/mobs_sheep_red.png diff --git a/mods/_various/mobs/textures/mobs_sheep_shaved.png b/mods/_various/legacy_mobs/textures/mobs_sheep_shaved.png similarity index 100% rename from mods/_various/mobs/textures/mobs_sheep_shaved.png rename to mods/_various/legacy_mobs/textures/mobs_sheep_shaved.png diff --git a/mods/_various/mobs/textures/mobs_sheep_violet.png b/mods/_various/legacy_mobs/textures/mobs_sheep_violet.png similarity index 100% rename from mods/_various/mobs/textures/mobs_sheep_violet.png rename to mods/_various/legacy_mobs/textures/mobs_sheep_violet.png diff --git a/mods/_various/mobs/textures/mobs_sheep_white.png b/mods/_various/legacy_mobs/textures/mobs_sheep_white.png similarity index 100% rename from mods/_various/mobs/textures/mobs_sheep_white.png rename to mods/_various/legacy_mobs/textures/mobs_sheep_white.png diff --git a/mods/_various/mobs/textures/mobs_sheep_yellow.png b/mods/_various/legacy_mobs/textures/mobs_sheep_yellow.png similarity index 100% rename from mods/_various/mobs/textures/mobs_sheep_yellow.png rename to mods/_various/legacy_mobs/textures/mobs_sheep_yellow.png diff --git a/mods/_various/mobs/textures/mobs_spider.png b/mods/_various/legacy_mobs/textures/mobs_spider.png similarity index 100% rename from mods/_various/mobs/textures/mobs_spider.png rename to mods/_various/legacy_mobs/textures/mobs_spider.png diff --git a/mods/_various/mobs/textures/mobs_stone_monster.png b/mods/_various/legacy_mobs/textures/mobs_stone_monster.png similarity index 100% rename from mods/_various/mobs/textures/mobs_stone_monster.png rename to mods/_various/legacy_mobs/textures/mobs_stone_monster.png diff --git a/mods/_various/mobs/textures/mobs_tree_monster.png b/mods/_various/legacy_mobs/textures/mobs_tree_monster.png similarity index 100% rename from mods/_various/mobs/textures/mobs_tree_monster.png rename to mods/_various/legacy_mobs/textures/mobs_tree_monster.png diff --git a/mods/_various/mobs/textures/tnt_smoke.png b/mods/_various/legacy_mobs/textures/tnt_smoke.png similarity index 100% rename from mods/_various/mobs/textures/tnt_smoke.png rename to mods/_various/legacy_mobs/textures/tnt_smoke.png diff --git a/mods/_various/mobs/textures/zmobs_lava_flan.png b/mods/_various/legacy_mobs/textures/zmobs_lava_flan.png similarity index 100% rename from mods/_various/mobs/textures/zmobs_lava_flan.png rename to mods/_various/legacy_mobs/textures/zmobs_lava_flan.png diff --git a/mods/_various/mobs/textures/zmobs_lava_orb.png b/mods/_various/legacy_mobs/textures/zmobs_lava_orb.png similarity index 100% rename from mods/_various/mobs/textures/zmobs_lava_orb.png rename to mods/_various/legacy_mobs/textures/zmobs_lava_orb.png diff --git a/mods/_various/mobs/textures/zmobs_mese_monster.png b/mods/_various/legacy_mobs/textures/zmobs_mese_monster.png similarity index 100% rename from mods/_various/mobs/textures/zmobs_mese_monster.png rename to mods/_various/legacy_mobs/textures/zmobs_mese_monster.png diff --git a/mods/_various/mobs/init.lua b/mods/_various/mobs/init.lua deleted file mode 100644 index de04493b8..000000000 --- a/mods/_various/mobs/init.lua +++ /dev/null @@ -1,3 +0,0 @@ --- Mob Api - -dofile(minetest.get_modpath("mobs").."/api.lua") diff --git a/mods/_various/mobs_fish/init.lua b/mods/_various/mobs_fish/init.lua index e2d9901d5..5e9be3392 100644 --- a/mods/_various/mobs_fish/init.lua +++ b/mods/_various/mobs_fish/init.lua @@ -1,5 +1,5 @@ local S = minetest.get_mod_translator() -if mobs.mod and mobs.mod == "redo" then +if legacy_mobs.mod and legacy_mobs.mod == "redo" then local SPRITE_VERSION = false -- set to true to use upright sprites instead of meshes @@ -40,7 +40,7 @@ local SPRITE_VERSION = false -- set to true to use upright sprites instead of me end -- Clownfish - mobs:register_mob("mobs_fish:clownfish", { + legacy_mobs:register_mob("mobs_fish:clownfish", { type = "animal", passive = true, hp_min = 1, @@ -66,15 +66,15 @@ local SPRITE_VERSION = false -- set to true to use upright sprites instead of me light_damage = 0, animation = l_anims, on_rightclick = function(self, clicker) - mobs:capture_mob(self, clicker, l_cc_hand, l_cc_net, 0, true, nil) + legacy_mobs:capture_mob(self, clicker, l_cc_hand, l_cc_net, 0, true, nil) end }) --name, nodes, neighbours, minlight, maxlight, interval, chance, active_object_count, min_height, max_height - --mobs:spawn_specific("mobs_fish:clownfish", l_spawn_in, l_spawn_near, 5, 20, 30, l_spawn_chance, 1, -31000, l_water_level) - mobs:register_egg("mobs_fish:clownfish", S("Clownfish"), "animal_clownfish_clownfish_item.png", 0) + --legacy_mobs:spawn_specific("mobs_fish:clownfish", l_spawn_in, l_spawn_near, 5, 20, 30, l_spawn_chance, 1, -31000, l_water_level) + legacy_mobs:register_egg("mobs_fish:clownfish", S("Clownfish"), "animal_clownfish_clownfish_item.png", 0) -- Tropical fish - mobs:register_mob("mobs_fish:tropical", { + legacy_mobs:register_mob("mobs_fish:tropical", { type = "animal", passive = true, hp_min = 1, @@ -100,11 +100,11 @@ local SPRITE_VERSION = false -- set to true to use upright sprites instead of me light_damage = 0, animation = l_anims, on_rightclick = function(self, clicker) - mobs:capture_mob(self, clicker, l_cc_hand, l_cc_net, 0, true, nil) + legacy_mobs:capture_mob(self, clicker, l_cc_hand, l_cc_net, 0, true, nil) end }) --name, nodes, neighbours, minlight, maxlight, interval, chance, active_object_count, min_height, max_height - --mobs:spawn_specific("mobs_fish:tropical", l_spawn_in, l_spawn_near, 5, 20, 30, l_spawn_chance, 1, -31000, l_water_level) - mobs:register_egg("mobs_fish:tropical", S("Tropical fish"), "animal_fish_blue_white_fish_blue_white_item.png", 0) + --legacy_mobs:spawn_specific("mobs_fish:tropical", l_spawn_in, l_spawn_near, 5, 20, 30, l_spawn_chance, 1, -31000, l_water_level) + legacy_mobs:register_egg("mobs_fish:tropical", S("Tropical fish"), "animal_fish_blue_white_fish_blue_white_item.png", 0) end diff --git a/mods/_various/mobs_fish/mod.conf b/mods/_various/mobs_fish/mod.conf index 825fdda90..3c3be8a7b 100644 --- a/mods/_various/mobs_fish/mod.conf +++ b/mods/_various/mobs_fish/mod.conf @@ -1,2 +1,2 @@ name = mobs_fish -depends = default, mobs +depends = default, legacy_mobs diff --git a/mods/lord/Blocks/protector_lott/init.lua b/mods/lord/Blocks/protector_lott/init.lua index dd03e6722..9994d2f3d 100644 --- a/mods/lord/Blocks/protector_lott/init.lua +++ b/mods/lord/Blocks/protector_lott/init.lua @@ -358,7 +358,7 @@ minetest.register_entity("protector_lott:display", { visual_size = {x = 1.0 / 1.5, y = 1.0 / 1.5}, textures = {"protector_lott:display_node"}, on_activate = function(self, staticdata) - if mobs and mobs.entity == false then self.object:remove() end + if legacy_mobs and legacy_mobs.entity == false then self.object:remove() end end, on_step = function(self, dtime) self.timer = (self.timer or 0) + dtime diff --git a/mods/lord/Entities/bees/bee.lua b/mods/lord/Entities/bees/bee.lua index 13239c3a2..817386cea 100644 --- a/mods/lord/Entities/bees/bee.lua +++ b/mods/lord/Entities/bees/bee.lua @@ -2,7 +2,7 @@ local S = minetest.get_mod_translator() -- Bee by KrupnoPavel -mobs:register_mob('bees:bee', { +legacy_mobs:register_mob('bees:bee', { type = "animal", passive = true, hp_min = 1, @@ -23,6 +23,7 @@ mobs:register_mob('bees:bee', { drop = {""}, --drops = { --{name = "bees:honey", + --{name = "legacy_mobs:honey", --chance = 1, min = 1, max = 2}, --}, water_damage = 1, @@ -38,17 +39,13 @@ mobs:register_mob('bees:bee', { walk_end = 65, }, on_rightclick = function(self, clicker) - mobs:capture_mob(self, clicker, 25, 80, 0, true, nil) + legacy_mobs:capture_mob(self, clicker, 25, 80, 0, true, nil) end, }) -mobs:alias_mob('mobs:bee', 'bees:bee') - ---name, nodes, neighbors, min_light, max_light, interval, chance, active_object_count, min_height, max_height ---mobs:spawn_specific(name, nodes, {"air"}, min_light, max_light, 30, chance, active_object_count, -31000, max_height) -mobs:spawn_specific("bees:bee", {"group:flower"}, {"air"}, 10, 20, 30, 5000, 1, 0, 1000) - -mobs:register_egg("bees:bee", S("Bee"), "mobs_bee_inv.png", 0) +legacy_mobs:alias_mob('mobs:bee', 'bees:bee') +legacy_mobs:spawn_specific("bees:bee", {"group:flower"}, {"air"}, 10, 20, 30, 5000, 1, 0, 1000) +legacy_mobs:register_egg("bees:bee", S("Bee"), "mobs_bee_inv.png", 0) -- honey minetest.register_craftitem("bees:honey", { diff --git a/mods/lord/Entities/bees/hive_artificial.lua b/mods/lord/Entities/bees/hive_artificial.lua index d79720494..61fe46bb9 100644 --- a/mods/lord/Entities/bees/hive_artificial.lua +++ b/mods/lord/Entities/bees/hive_artificial.lua @@ -25,7 +25,7 @@ local S = minetest.get_mod_translator() ) local meta = minetest.get_meta(pos) local inv = meta:get_inventory() - if meta:get_int('agressive') == 1 and inv:contains_item('queen', 'mobs:bee') then + if meta:get_int('agressive') == 1 and inv:contains_item('queen', 'bees:bee') then local health = clicker:get_hp() if health <= 4 then clicker:set_wielded_item("") @@ -87,7 +87,7 @@ local S = minetest.get_mod_translator() local meta = minetest.get_meta(pos) local inv = meta:get_inventory() local timer = minetest.get_node_timer(pos) - if inv:contains_item('queen', 'mobs:bee') then + if inv:contains_item('queen', 'bees:bee') then if inv:contains_item('frames', 'bees:frame_empty') then timer:start(30) local rad = 10 @@ -175,7 +175,7 @@ local S = minetest.get_mod_translator() allow_metadata_inventory_put = function(pos, listname, index, stack, player) if not minetest.get_meta(pos):get_inventory():get_stack(listname, index):is_empty() then return 0 end if listname == 'queen' then - if stack:get_name():match('mobs:bee*') then + if stack:get_name():match('bees:bee*') then return 1 end elseif listname == 'frames' then @@ -221,7 +221,7 @@ local S = minetest.get_mod_translator() inv:set_size('queen', 1) inv:set_size('frames', 8) meta:set_string('infotext',S('does not have empty frame(s)')) - inv:set_stack('queen', 1, 'mobs:bee') + inv:set_stack('queen', 1, 'bees:bee') for i=1, inv:get_size('frames') do inv:set_stack('frames', i, 'bees:frame_full') end @@ -257,7 +257,7 @@ local S = minetest.get_mod_translator() allow_metadata_inventory_put = function(pos, listname, index, stack, player) if not minetest.get_meta(pos):get_inventory():get_stack(listname, index):is_empty() then return 0 end if listname == 'queen' then - if stack:get_name():match('mobs:bee*') then + if stack:get_name():match('bees:bee*') then return 1 end elseif listname == 'frames' then diff --git a/mods/lord/Entities/bees/hive_wild.lua b/mods/lord/Entities/bees/hive_wild.lua index 176627687..1141cb55e 100644 --- a/mods/lord/Entities/bees/hive_wild.lua +++ b/mods/lord/Entities/bees/hive_wild.lua @@ -22,7 +22,7 @@ local S = minetest.get_mod_translator() local function hive_wild_on_punch(pos, node, puncher) local meta = minetest.get_meta(pos) local inv = meta:get_inventory() - if inv:contains_item('queen','mobs:bee') then + if inv:contains_item('queen','bees:bee') then local health = puncher:get_hp() puncher:set_hp(health-4) end @@ -36,7 +36,7 @@ local S = minetest.get_mod_translator() ) local meta = minetest.get_meta(pos) local inv = meta:get_inventory() - if meta:get_int('agressive') == 1 and inv:contains_item('queen', 'mobs:bee') then + if meta:get_int('agressive') == 1 and inv:contains_item('queen', 'bees:bee') then local health = clicker:get_hp() if health <= 4 then clicker:set_wielded_item("") @@ -129,7 +129,7 @@ local S = minetest.get_mod_translator() timer:start(5) inv:set_size('queen', 1) inv:set_size('combs', 5) - inv:set_stack('queen', 1, 'mobs:bee') + inv:set_stack('queen', 1, 'bees:bee') for i=1,math.random(3) do inv:set_stack('combs', i, 'bees:honey_comb') end @@ -141,7 +141,7 @@ local S = minetest.get_mod_translator() local meta = minetest.get_meta(pos) local inv = meta:get_inventory() local timer= minetest.get_node_timer(pos) - if listname == 'combs' and inv:contains_item('queen', 'mobs:bee') then + if listname == 'combs' and inv:contains_item('queen', 'bees:bee') then local health = taker:get_hp() timer:start(30) taker:set_hp(health-2) @@ -159,7 +159,7 @@ local S = minetest.get_mod_translator() end, allow_metadata_inventory_put = function(pos, listname, index, stack, player) - if listname == 'queen' and stack:get_name() == 'mobs:bee' then + if listname == 'queen' and stack:get_name() == 'bees:bee' then return 1 else return 0 @@ -183,7 +183,7 @@ local S = minetest.get_mod_translator() if 'bees:grafting_tool' == wielded:get_name() then local inv = user:get_inventory() if inv then - inv:add_item('main', ItemStack('mobs:bee')) + inv:add_item('main', ItemStack('bees:bee')) end end end @@ -230,7 +230,7 @@ local S = minetest.get_mod_translator() timer:start(5) inv:set_size('queen', 1) inv:set_size('combs', 5) - inv:set_stack('queen', 1, 'mobs:bee') + inv:set_stack('queen', 1, 'bees:bee') for i=1, inv:get_size('combs') do inv:set_stack('combs', i, 'bees:honey_comb') end @@ -245,7 +245,7 @@ local S = minetest.get_mod_translator() if listname == 'combs' then local health = taker:get_hp() timer:start(30) - if inv:contains_item('queen', 'mobs:bee') then + if inv:contains_item('queen', 'bees:bee') then taker:set_hp(health-2) end minetest.swap_node_if_not_same(pos, 'bees:hive_wild') diff --git a/mods/lord/Entities/bees/init.lua b/mods/lord/Entities/bees/init.lua index 3befb0667..f31d49da7 100644 --- a/mods/lord/Entities/bees/init.lua +++ b/mods/lord/Entities/bees/init.lua @@ -223,7 +223,7 @@ local S = minetest.get_mod_translator() end, }) - --minetest.register_alias("mobs:beehive",'bees:hive_wild') + --minetest.register_alias("bees:beehive",'bees:hive_wild') diff --git a/mods/lord/Entities/bees/mod.conf b/mods/lord/Entities/bees/mod.conf index dc2cfdc75..f27057fd1 100644 --- a/mods/lord/Entities/bees/mod.conf +++ b/mods/lord/Entities/bees/mod.conf @@ -1,2 +1,2 @@ name = bees -depends = default, mobs +depends = default, legacy_mobs diff --git a/mods/lord/Entities/lord_traders/mod.conf b/mods/lord/Entities/lord_traders/mod.conf index ea1a9ae53..1adf0a72e 100644 --- a/mods/lord/Entities/lord_traders/mod.conf +++ b/mods/lord/Entities/lord_traders/mod.conf @@ -1,6 +1,6 @@ name = lord_traders description = Traders mobs for LORD. (Builtin game mod) -depends = builtin_ext, mobs, lottmobs, appearance, lord_classes, lottother, lord_money, lord_wooden_stuff +depends = builtin_ext, legacy_mobs, lottmobs, appearance, lord_classes, lottother, lord_money, lord_wooden_stuff optional_depends = default, farming, boats, tools, lottblocks, lottplants, lord_trees, lord_planks, lottores, lottfarming, lord_alcohol, lord_books # mobs -- uses common engine 'mobs redo' diff --git a/mods/lord/Entities/lord_traders/src/traders.lua b/mods/lord/Entities/lord_traders/src/traders.lua index 1ad32eca9..af794cd6d 100644 --- a/mods/lord/Entities/lord_traders/src/traders.lua +++ b/mods/lord/Entities/lord_traders/src/traders.lua @@ -1,5 +1,6 @@ local trader = require("traders.trader") +local lm = legacy_mobs -- TODO move this into lord_mobs_common & use for other humanlike mobs local MODEL_HEIGHT = 1.8 @@ -97,8 +98,8 @@ trader.register(":lottmobs:dwarf_trader", { damage = 4, }) -mobs:spawn_specific("lottmobs:elf_trader", {"lord_ground:dirt_lorien"}, {"air"}, -1, 20, 30, 90000, 2, -31000, 31000) -mobs:spawn_specific("lottmobs:human_trader", {"lord_ground:dirt_rohan"}, {"air"}, -1, 20, 30, 90000, 2, -31000, 31000) -mobs:spawn_specific("lottmobs:human_trader", {"lord_ground:dirt_gondor"}, {"air"}, -1, 20, 30, 90000, 2, -31000, 31000) -mobs:spawn_specific("lottmobs:hobbit_trader",{"lord_ground:dirt_shire"}, {"air"}, -1, 20, 30, 90000, 2, -31000, 31000) -mobs:spawn_specific("lottmobs:dwarf_trader", {"lord_ground:dirt_iron_hills"},{"air"},-1,20, 30, 90000, 2, -31000, 31000) +lm:spawn_specific("lottmobs:elf_trader", {"lord_ground:dirt_lorien"}, {"air"}, -1, 20, 30, 90000, 2, -31000, 31000) +lm:spawn_specific("lottmobs:human_trader", {"lord_ground:dirt_rohan"}, {"air"}, -1, 20, 30, 90000, 2, -31000, 31000) +lm:spawn_specific("lottmobs:human_trader", {"lord_ground:dirt_gondor"}, {"air"}, -1, 20, 30, 90000, 2, -31000, 31000) +lm:spawn_specific("lottmobs:hobbit_trader",{"lord_ground:dirt_shire"}, {"air"}, -1, 20, 30, 90000, 2, -31000, 31000) +lm:spawn_specific("lottmobs:dwarf_trader", {"lord_ground:dirt_iron_hills"},{"air"},-1,20, 30, 90000, 2, -31000, 31000) diff --git a/mods/lord/Entities/lord_traders/src/traders/trader.lua b/mods/lord/Entities/lord_traders/src/traders/trader.lua index 7d4b6d7aa..6e6ba1b81 100644 --- a/mods/lord/Entities/lord_traders/src/traders/trader.lua +++ b/mods/lord/Entities/lord_traders/src/traders/trader.lua @@ -105,12 +105,12 @@ local function register_trader(name, definition) local def = table.merge(common_trader_definition, definition) -- HACK: we can't move this into `common_trader_definition`, because we need `def.race`, - -- but `mobs:register_mob()` does not pass all `def` into `minetest.register_entity()` + -- but `legacy_mobs:register_mob()` does not pass all `def` into `minetest.register_entity()` def.on_rightclick = function(self, clicker) on_rightclick(self, clicker, def.race) end - mobs:register_mob(name, def) + legacy_mobs:register_mob(name, def) end return { diff --git a/mods/lord/Entities/lottmobs/mod.conf b/mods/lord/Entities/lottmobs/mod.conf index 41a6151df..fdcbd23cd 100644 --- a/mods/lord/Entities/lottmobs/mod.conf +++ b/mods/lord/Entities/lottmobs/mod.conf @@ -1,3 +1,3 @@ name = lottmobs description = LOTT Game mod: lottmobs - Adds various mobs -depends = builtin_ext, default, lord_rocks, mobs, fire, bones, lottores, lord_money, +depends = builtin_ext, default, lord_rocks, legacy_mobs, fire, bones, lottores, lord_money, diff --git a/mods/lord/Entities/lottmobs/src/animals/livestock/chicken.lua b/mods/lord/Entities/lottmobs/src/animals/livestock/chicken.lua index a60fcd240..7c3a476ca 100644 --- a/mods/lord/Entities/lottmobs/src/animals/livestock/chicken.lua +++ b/mods/lord/Entities/lottmobs/src/animals/livestock/chicken.lua @@ -72,7 +72,7 @@ archery.register_throwable("lottmobs:egg", { } }) -mobs:register_mob("lottmobs:chicken", { +legacy_mobs:register_mob("lottmobs:chicken", { type = "animal", hp_min = 5, hp_max = 10, diff --git a/mods/lord/Entities/lottmobs/src/animals/livestock/kitten.lua b/mods/lord/Entities/lottmobs/src/animals/livestock/kitten.lua index 3f93d4818..d44202265 100644 --- a/mods/lord/Entities/lottmobs/src/animals/livestock/kitten.lua +++ b/mods/lord/Entities/lottmobs/src/animals/livestock/kitten.lua @@ -2,7 +2,7 @@ -- Kitten by Jordach / BFD -mobs:register_mob("lottmobs:kitten", { +legacy_mobs:register_mob("lottmobs:kitten", { stepheight = 0.6, type = "animal", specific_attack = {"lottmobs:rat"}, @@ -63,14 +63,14 @@ mobs:register_mob("lottmobs:kitten", { local user = clicker:get_player_name() if self.owner and self.owner == user then - if not mobs:feed_tame(self, clicker, 4, true, true) then - mobs:capture_mob(self, clicker, 50, 50, 90, false, nil) + if not legacy_mobs:feed_tame(self, clicker, 4, true, true) then + legacy_mobs:capture_mob(self, clicker, 50, 50, 90, false, nil) end else - if mobs:protect(self, clicker) then + if legacy_mobs:protect(self, clicker) then return end - if mobs:feed_tame(self, clicker, 4, true, true) then + if legacy_mobs:feed_tame(self, clicker, 4, true, true) then self.owner = clicker:get_player_name() else local vel = self.object:get_velocity() @@ -92,7 +92,7 @@ mobs:register_mob("lottmobs:kitten", { max_hear_distance = 5, }) else - mobs.mob_punch(self, hitter, tflp, tool_capabilities, dir) + legacy_mobs.mob_punch(self, hitter, tflp, tool_capabilities, dir) end end, diff --git a/mods/lord/Entities/lottmobs/src/animals/livestock/sheep.lua b/mods/lord/Entities/lottmobs/src/animals/livestock/sheep.lua index dbe6b2f89..1909f175f 100644 --- a/mods/lord/Entities/lottmobs/src/animals/livestock/sheep.lua +++ b/mods/lord/Entities/lottmobs/src/animals/livestock/sheep.lua @@ -1,6 +1,6 @@ -mobs:register_mob("lottmobs:sheep", { +legacy_mobs:register_mob("lottmobs:sheep", { type = "animal", passive = true, hp_min = 8, @@ -48,7 +48,7 @@ mobs:register_mob("lottmobs:sheep", { replace_offset = -1, on_rightclick = function(self, clicker) - if mobs:feed_tame(self, clicker, 8, true, true) then + if legacy_mobs:feed_tame(self, clicker, 8, true, true) then if self.gotten == false then self.object:set_properties({ textures = {"mobs_sheep_base.png^mobs_sheep_wool.png"}, @@ -90,7 +90,7 @@ mobs:register_mob("lottmobs:sheep", { end }) -mobs:register_spawn("lottmobs:sheep", +legacy_mobs:register_spawn("lottmobs:sheep", {"lord_ground:dirt_shire", "lord_ground:dirt_gondor", "lord_ground:dirt_dunland", "lord_ground:dirt_ithilien"}, 20, 10, 10000, 1, 31000) diff --git a/mods/lord/Entities/lottmobs/src/animals/water/fishes.lua b/mods/lord/Entities/lottmobs/src/animals/water/fishes.lua index a8643bf52..17bdca230 100644 --- a/mods/lord/Entities/lottmobs/src/animals/water/fishes.lua +++ b/mods/lord/Entities/lottmobs/src/animals/water/fishes.lua @@ -1,4 +1,5 @@ local S = minetest.get_mod_translator() +local lm = legacy_mobs local SPRITE_VERSION = false -- set to true to use upright sprites instead of meshes @@ -41,7 +42,7 @@ local SPRITE_VERSION = false -- set to true to use upright sprites instead of me end -- Clownfish - mobs:register_mob("lottmobs:clownfish", { + legacy_mobs:register_mob("lottmobs:clownfish", { type = "animal", passive = true, hp_min = 1, @@ -68,17 +69,17 @@ local SPRITE_VERSION = false -- set to true to use upright sprites instead of me animation = l_anims, fear_height = 0, on_rightclick = function(self, clicker) - mobs:capture_mob(self, clicker, l_cc_hand, l_cc_net, 0, true, nil) + legacy_mobs:capture_mob(self, clicker, l_cc_hand, l_cc_net, 0, true, nil) end }) --name, nodes, neighbours, minlight, maxlight, interval, chance, active_object_count, min_height, max_height - mobs:spawn_specific( + legacy_mobs:spawn_specific( "lottmobs:clownfish", l_spawn_in, l_spawn_near, 5, 20, 30, l_spawn_chance, 1, -31000, l_water_level ) - mobs:register_egg("lottmobs:clownfish", S("Clownfish"), "animal_clownfish_clownfish_item.png", 0) + legacy_mobs:register_egg("lottmobs:clownfish", S("Clownfish"), "animal_clownfish_clownfish_item.png", 0) -- Tropical fish - mobs:register_mob("lottmobs:tropical", { + legacy_mobs:register_mob("lottmobs:tropical", { type = "animal", passive = true, hp_min = 1, @@ -105,9 +106,9 @@ local SPRITE_VERSION = false -- set to true to use upright sprites instead of me animation = l_anims, fear_height = 0, on_rightclick = function(self, clicker) - mobs:capture_mob(self, clicker, l_cc_hand, l_cc_net, 0, true, nil) + legacy_mobs:capture_mob(self, clicker, l_cc_hand, l_cc_net, 0, true, nil) end }) --name, nodes, neighbours, minlight, maxlight, interval, chance, active_object_count, min_height, max_height - mobs:spawn_specific("lottmobs:tropical", l_spawn_in, l_spawn_near, 5, 20, 30, l_spawn_chance, 1, -31000, l_water_level) - mobs:register_egg("lottmobs:tropical", S("Tropical fish"), "animal_fish_blue_white_fish_blue_white_item.png", 0) + lm:spawn_specific("lottmobs:tropical", l_spawn_in, l_spawn_near, 5, 20, 30, l_spawn_chance, 1, -31000, l_water_level) + lm:register_egg("lottmobs:tropical", S("Tropical fish"), "animal_fish_blue_white_fish_blue_white_item.png", 0) diff --git a/mods/lord/Entities/lottmobs/src/animals/wild/boar.lua b/mods/lord/Entities/lottmobs/src/animals/wild/boar.lua index 951c31f3c..9d1e74018 100644 --- a/mods/lord/Entities/lottmobs/src/animals/wild/boar.lua +++ b/mods/lord/Entities/lottmobs/src/animals/wild/boar.lua @@ -2,7 +2,7 @@ local S = minetest.get_mod_translator() local api = require('fear_height.api') -mobs:register_mob("lottmobs:boar", { +legacy_mobs:register_mob("lottmobs:boar", { type = "animal", -- type = "monster", passive = false, diff --git a/mods/lord/Entities/lottmobs/src/animals/wild/bunny.lua b/mods/lord/Entities/lottmobs/src/animals/wild/bunny.lua index 54cc900d6..398af6799 100644 --- a/mods/lord/Entities/lottmobs/src/animals/wild/bunny.lua +++ b/mods/lord/Entities/lottmobs/src/animals/wild/bunny.lua @@ -1,6 +1,6 @@ -mobs:register_mob("lottmobs:bunny", { +legacy_mobs:register_mob("lottmobs:bunny", { type = "animal", passive = true, reach = 1, diff --git a/mods/lord/Entities/lottmobs/src/animals/wild/horse.lua b/mods/lord/Entities/lottmobs/src/animals/wild/horse.lua index d9819e1c7..fdbe70aa3 100644 --- a/mods/lord/Entities/lottmobs/src/animals/wild/horse.lua +++ b/mods/lord/Entities/lottmobs/src/animals/wild/horse.lua @@ -1,7 +1,7 @@ local S = minetest.get_mod_translator() -mobs:register_mob("lottmobs:horse", { +legacy_mobs:register_mob("lottmobs:horse", { type = "animal", hp_min = 5, hp_max = 7, @@ -65,7 +65,7 @@ mobs:register_mob("lottmobs:horse", { passive = true, }) -mobs:register_mob("lottmobs:horsepeg", { +legacy_mobs:register_mob("lottmobs:horsepeg", { type = "animal", hp_min = 5, hp_max = 7, @@ -129,7 +129,7 @@ mobs:register_mob("lottmobs:horsepeg", { passive = true, }) -mobs:register_mob("lottmobs:horseara", { +legacy_mobs:register_mob("lottmobs:horseara", { type = "animal", hp_min = 5, hp_max = 7, diff --git a/mods/lord/Entities/lottmobs/src/animals/wild/pony.lua b/mods/lord/Entities/lottmobs/src/animals/wild/pony.lua index 75e3e79ca..7da4d02ff 100644 --- a/mods/lord/Entities/lottmobs/src/animals/wild/pony.lua +++ b/mods/lord/Entities/lottmobs/src/animals/wild/pony.lua @@ -1,7 +1,7 @@ local S = minetest.get_mod_translator() -mobs:register_mob("lottmobs:shirepony", { +legacy_mobs:register_mob("lottmobs:shirepony", { type = "animal", hp_min = 5, hp_max = 7, @@ -68,7 +68,7 @@ mobs:register_mob("lottmobs:shirepony", { passive = true, }) -mobs:register_mob("lottmobs:shireponyblack", { +legacy_mobs:register_mob("lottmobs:shireponyblack", { type = "animal", hp_min = 5, hp_max = 7, diff --git a/mods/lord/Entities/lottmobs/src/animals/wild/rat.lua b/mods/lord/Entities/lottmobs/src/animals/wild/rat.lua index 84119e26e..7c30779a4 100644 --- a/mods/lord/Entities/lottmobs/src/animals/wild/rat.lua +++ b/mods/lord/Entities/lottmobs/src/animals/wild/rat.lua @@ -1,6 +1,6 @@ -mobs:register_mob("lottmobs:rat", { +legacy_mobs:register_mob("lottmobs:rat", { type = "animal", passive = true, hp_min = 1, diff --git a/mods/lord/Entities/lottmobs/src/animals/wild/spider.lua b/mods/lord/Entities/lottmobs/src/animals/wild/spider.lua index 2e1802fd2..900f78a96 100644 --- a/mods/lord/Entities/lottmobs/src/animals/wild/spider.lua +++ b/mods/lord/Entities/lottmobs/src/animals/wild/spider.lua @@ -1,7 +1,7 @@ local api = require('fear_height.api') -mobs:register_mob("lottmobs:spider", { +legacy_mobs:register_mob("lottmobs:spider", { type = "monster", hp_min = 20, hp_max = 40, @@ -56,4 +56,4 @@ mobs:register_mob("lottmobs:spider", { api.set_fear_height_by_state(self) end }) ---mobs:register_spawn("lottmobs:spider", {"lord_ground:dirt_mirkwood"}, 20, -10, 6000, 3, 31000) +--legacy_mobs:register_spawn("lottmobs:spider", {"lord_ground:dirt_mirkwood"}, 20, -10, 6000, 3, 31000) diff --git a/mods/lord/Entities/lottmobs/src/animals/wild/warg.lua b/mods/lord/Entities/lottmobs/src/animals/wild/warg.lua index 5390757c0..6b1ba01d3 100644 --- a/mods/lord/Entities/lottmobs/src/animals/wild/warg.lua +++ b/mods/lord/Entities/lottmobs/src/animals/wild/warg.lua @@ -2,7 +2,7 @@ local S = minetest.get_mod_translator() local api = require('fear_height.api') -mobs:register_mob("lottmobs:warg", { +legacy_mobs:register_mob("lottmobs:warg", { -- type = "npc", type = "monster", race = "orc", diff --git a/mods/lord/Entities/lottmobs/src/eggs.lua b/mods/lord/Entities/lottmobs/src/eggs.lua index 28b4d5888..c8064cbd8 100644 --- a/mods/lord/Entities/lottmobs/src/eggs.lua +++ b/mods/lord/Entities/lottmobs/src/eggs.lua @@ -1,23 +1,23 @@ ---mobs:register_egg("lottmobs:dragon_great", "Boss Dragon", "mobs_dragon_egg.png", 1) ---mobs:register_egg("lottmobs:dragon_great_tame", "Great Dragon", "default_lava_source_animated.png", 1) +--legacy_mobs:register_egg("lottmobs:dragon_great", "Boss Dragon", "mobs_dragon_egg.png", 1) +--legacy_mobs:register_egg("lottmobs:dragon_great_tame", "Great Dragon", "default_lava_source_animated.png", 1) -mobs:register_egg("lottmobs:elf_archer", "Elf archer", "default_leaves_simple.png", 1) +legacy_mobs:register_egg("lottmobs:elf_archer", "Elf archer", "default_leaves_simple.png", 1) -mobs:register_egg("lottmobs:troll", "Troll", "default_leaves_simple.png", 1) -mobs:register_egg("lottmobs:dead_men", "Dead Man", "default_mineral_coal.png", 1) -mobs:register_egg("lottmobs:balrog", "Barlog", "default_mineral_copper.png", 1) -mobs:register_egg("lottmobs:warg", "Warg", "default_pine_needles.png", 1) -mobs:register_egg("lottmobs:witch_king", "Witch King", "default_mineral_iron.png", 1) -mobs:register_egg("lottmobs:nazgul", "Nazgul", "default_scorched_stuff.png", 1) -mobs:register_egg("lottmobs:half_troll", "Half Troll", "lottmobs_egg_red_bg.png", 1) -mobs:register_egg("lottmobs:battle_troll", "Battle Troll", "building_blocks_cast_iron.png", 1) -mobs:register_egg("lottmobs:uruk_hai", "Uruk Hai", "building_blocks_grate.png", 1) -mobs:register_egg("lottmobs:raiding_orc", "Raiding Orc", "building_blocks_Roofing.png", 1) -mobs:register_egg("lottmobs:orc", "Orc", "building_blocks_tar.png", 1) -mobs:register_egg("lottmobs:orc_archer", "Orc archer", "building_blocks_tar.png", 1) -mobs:register_egg("lottmobs:orc_crossbowman", "Orc crossbowman", "building_blocks_tar.png", 1) -mobs:register_egg("lottmobs:raiding_orc", "Raiding Orc", "homedecor_curtain.png", 1) -mobs:register_egg("lottmobs:kitten", "Kitten", "mobs_kitten_inv.png", 0) -mobs:register_egg("lottmobs:rat", "Rat", "rat.png", 0) +legacy_mobs:register_egg("lottmobs:troll", "Troll", "default_leaves_simple.png", 1) +legacy_mobs:register_egg("lottmobs:dead_men", "Dead Man", "default_mineral_coal.png", 1) +legacy_mobs:register_egg("lottmobs:balrog", "Barlog", "default_mineral_copper.png", 1) +legacy_mobs:register_egg("lottmobs:warg", "Warg", "default_pine_needles.png", 1) +legacy_mobs:register_egg("lottmobs:witch_king", "Witch King", "default_mineral_iron.png", 1) +legacy_mobs:register_egg("lottmobs:nazgul", "Nazgul", "default_scorched_stuff.png", 1) +legacy_mobs:register_egg("lottmobs:half_troll", "Half Troll", "lottmobs_egg_red_bg.png", 1) +legacy_mobs:register_egg("lottmobs:battle_troll", "Battle Troll", "building_blocks_cast_iron.png", 1) +legacy_mobs:register_egg("lottmobs:uruk_hai", "Uruk Hai", "building_blocks_grate.png", 1) +legacy_mobs:register_egg("lottmobs:raiding_orc", "Raiding Orc", "building_blocks_Roofing.png", 1) +legacy_mobs:register_egg("lottmobs:orc", "Orc", "building_blocks_tar.png", 1) +legacy_mobs:register_egg("lottmobs:orc_archer", "Orc archer", "building_blocks_tar.png", 1) +legacy_mobs:register_egg("lottmobs:orc_crossbowman", "Orc crossbowman", "building_blocks_tar.png", 1) +legacy_mobs:register_egg("lottmobs:raiding_orc", "Raiding Orc", "homedecor_curtain.png", 1) +legacy_mobs:register_egg("lottmobs:kitten", "Kitten", "mobs_kitten_inv.png", 0) +legacy_mobs:register_egg("lottmobs:rat", "Rat", "rat.png", 0) diff --git a/mods/lord/Entities/lottmobs/src/racial/dwarfs.lua b/mods/lord/Entities/lottmobs/src/racial/dwarfs.lua index 6fcb5bb97..893c78d84 100644 --- a/mods/lord/Entities/lottmobs/src/racial/dwarfs.lua +++ b/mods/lord/Entities/lottmobs/src/racial/dwarfs.lua @@ -2,7 +2,7 @@ local api = require('fear_height.api') function lottmobs.register_dwarf(n, hpmin, hpmax, textures, wv, rv, damg, arm, drops) - mobs:register_mob("lottmobs:dwarf" .. n, { + legacy_mobs:register_mob("lottmobs:dwarf" .. n, { type = "npc", hp_min = hpmin, hp_max = hpmax, diff --git a/mods/lord/Entities/lottmobs/src/racial/elves.lua b/mods/lord/Entities/lottmobs/src/racial/elves.lua index 4e03bf32e..7bcf02561 100644 --- a/mods/lord/Entities/lottmobs/src/racial/elves.lua +++ b/mods/lord/Entities/lottmobs/src/racial/elves.lua @@ -2,7 +2,7 @@ local api = require('fear_height.api') function lottmobs.register_elf(n, hpmin, hpmax, textures, wv, rv, damg, arm, drops) - mobs:register_mob("lottmobs:elf" .. n, { + legacy_mobs:register_mob("lottmobs:elf" .. n, { type = "npc", hp_min = hpmin, hp_max = hpmax, @@ -56,7 +56,7 @@ function lottmobs.register_elf(n, hpmin, hpmax, textures, wv, rv, damg, arm, dro end function lottmobs.register_elf_archer(n, hpmin, hpmax, textures, wv, rv, damg, arm, drops) - mobs:register_mob("lottmobs:elf_archer" .. n, { + legacy_mobs:register_mob("lottmobs:elf_archer" .. n, { type = "npc", hp_min = hpmin, hp_max = hpmax, diff --git a/mods/lord/Entities/lottmobs/src/racial/hobbits.lua b/mods/lord/Entities/lottmobs/src/racial/hobbits.lua index f2c68eb7f..ceff9135e 100644 --- a/mods/lord/Entities/lottmobs/src/racial/hobbits.lua +++ b/mods/lord/Entities/lottmobs/src/racial/hobbits.lua @@ -1,7 +1,7 @@ local api = require('fear_height.api') -mobs:register_mob("lottmobs:hobbit", { +legacy_mobs:register_mob("lottmobs:hobbit", { type = "npc", hp_min = 5, hp_max = 15, @@ -70,4 +70,4 @@ mobs:register_mob("lottmobs:hobbit", { api.set_fear_height_by_state(self) end }) ---mobs:register_spawn("lottmobs:hobbit", {"lord_ground:dirt_shire"}, 20, -1, 6000, 3, 31000) +--legacy_mobs:register_spawn("lottmobs:hobbit", {"lord_ground:dirt_shire"}, 20, -1, 6000, 3, 31000) diff --git a/mods/lord/Entities/lottmobs/src/racial/humans.lua b/mods/lord/Entities/lottmobs/src/racial/humans.lua index ebaf961a9..0194a77e7 100644 --- a/mods/lord/Entities/lottmobs/src/racial/humans.lua +++ b/mods/lord/Entities/lottmobs/src/racial/humans.lua @@ -1,7 +1,7 @@ local api = require('fear_height.api') -mobs:register_mob("lottmobs:rohan_guard", { +legacy_mobs:register_mob("lottmobs:rohan_guard", { type = "npc", hp_min = 20, hp_max = 30, @@ -70,7 +70,7 @@ mobs:register_mob("lottmobs:rohan_guard", { end }) -mobs:register_mob("lottmobs:gondor_guard", { +legacy_mobs:register_mob("lottmobs:gondor_guard", { type = "npc", hp_min = 20, hp_max = 30, @@ -143,7 +143,7 @@ mobs:register_mob("lottmobs:gondor_guard", { end }) -mobs:register_mob("lottmobs:ithilien_ranger", { +legacy_mobs:register_mob("lottmobs:ithilien_ranger", { type = "npc", hp_min = 25, hp_max = 40, diff --git a/mods/lord/Entities/lottmobs/src/racial/orcs.lua b/mods/lord/Entities/lottmobs/src/racial/orcs.lua index 13b1e48f0..ac88cb9ed 100644 --- a/mods/lord/Entities/lottmobs/src/racial/orcs.lua +++ b/mods/lord/Entities/lottmobs/src/racial/orcs.lua @@ -8,7 +8,7 @@ local orc_armor = "lottarmor_chestplate_steel.png^" .. "lottarmor_shield_steel.png^" .. "[colorize:#00000055" -mobs:register_mob("lottmobs:orc", { +legacy_mobs:register_mob("lottmobs:orc", { type = "monster", hp_min = 15, hp_max = 35, @@ -78,7 +78,7 @@ mobs:register_mob("lottmobs:orc", { end }) -mobs:register_mob("lottmobs:orc_crossbowman", { +legacy_mobs:register_mob("lottmobs:orc_crossbowman", { type = "monster", hp_min = 15, hp_max = 35, @@ -154,7 +154,7 @@ mobs:register_mob("lottmobs:orc_crossbowman", { end }) -mobs:register_mob("lottmobs:orc_archer", { +legacy_mobs:register_mob("lottmobs:orc_archer", { type = "monster", hp_min = 15, hp_max = 35, @@ -230,7 +230,7 @@ mobs:register_mob("lottmobs:orc_archer", { end }) -mobs:register_mob("lottmobs:raiding_orc", { +legacy_mobs:register_mob("lottmobs:raiding_orc", { type = "monster", hp_min = 15, hp_max = 35, @@ -295,7 +295,7 @@ mobs:register_mob("lottmobs:raiding_orc", { end }) -mobs:register_mob("lottmobs:uruk_hai", { +legacy_mobs:register_mob("lottmobs:uruk_hai", { type = "monster", hp_min = 25, hp_max = 40, diff --git a/mods/lord/Entities/lottmobs/src/racial/others/balrog.lua b/mods/lord/Entities/lottmobs/src/racial/others/balrog.lua index f8db3fb44..8470456d9 100644 --- a/mods/lord/Entities/lottmobs/src/racial/others/balrog.lua +++ b/mods/lord/Entities/lottmobs/src/racial/others/balrog.lua @@ -1,7 +1,7 @@ local api = require('fear_height.api') -mobs:register_mob("lottmobs:balrog", { +legacy_mobs:register_mob("lottmobs:balrog", { type = "monster", --rotate = 180, hp_min = 1000, diff --git a/mods/lord/Entities/lottmobs/src/racial/others/dead_man.lua b/mods/lord/Entities/lottmobs/src/racial/others/dead_man.lua index 76983dbf1..53f95ff4f 100644 --- a/mods/lord/Entities/lottmobs/src/racial/others/dead_man.lua +++ b/mods/lord/Entities/lottmobs/src/racial/others/dead_man.lua @@ -1,7 +1,7 @@ local api = require('fear_height.api') -mobs:register_mob("lottmobs:dead_men", { +legacy_mobs:register_mob("lottmobs:dead_men", { type = "monster", hp_min = 15, hp_max = 15, diff --git a/mods/lord/Entities/lottmobs/src/racial/others/dunlendings.lua b/mods/lord/Entities/lottmobs/src/racial/others/dunlendings.lua index c42aef521..a9d49f0a9 100644 --- a/mods/lord/Entities/lottmobs/src/racial/others/dunlendings.lua +++ b/mods/lord/Entities/lottmobs/src/racial/others/dunlendings.lua @@ -1,7 +1,7 @@ local api = require('fear_height.api') -mobs:register_mob("lottmobs:dunlending", { +legacy_mobs:register_mob("lottmobs:dunlending", { type = "monster", hp_min = 17, hp_max = 27, diff --git a/mods/lord/Entities/lottmobs/src/racial/others/ent.lua b/mods/lord/Entities/lottmobs/src/racial/others/ent.lua index b1dfacd9b..93ad3403a 100644 --- a/mods/lord/Entities/lottmobs/src/racial/others/ent.lua +++ b/mods/lord/Entities/lottmobs/src/racial/others/ent.lua @@ -1,7 +1,7 @@ local api = require('fear_height.api') -mobs:register_mob("lottmobs:ent", { +legacy_mobs:register_mob("lottmobs:ent", { type = "npc", hp_min = 50, hp_max = 70, diff --git a/mods/lord/Entities/lottmobs/src/racial/others/half_troll.lua b/mods/lord/Entities/lottmobs/src/racial/others/half_troll.lua index c9b7861de..8a83877bc 100644 --- a/mods/lord/Entities/lottmobs/src/racial/others/half_troll.lua +++ b/mods/lord/Entities/lottmobs/src/racial/others/half_troll.lua @@ -1,7 +1,7 @@ local api = require('fear_height.api') -mobs:register_mob("lottmobs:half_troll", { +legacy_mobs:register_mob("lottmobs:half_troll", { type = "monster", hp_min = 20, hp_max = 30, diff --git a/mods/lord/Entities/lottmobs/src/racial/others/nazguls.lua b/mods/lord/Entities/lottmobs/src/racial/others/nazguls.lua index f491c3daa..2daef6817 100644 --- a/mods/lord/Entities/lottmobs/src/racial/others/nazguls.lua +++ b/mods/lord/Entities/lottmobs/src/racial/others/nazguls.lua @@ -10,7 +10,7 @@ local function is_halloween_season() return (month == 10 and day >= 24) or (month == 11 and day <= 14) end -mobs:register_mob("lottmobs:nazgul", { +legacy_mobs:register_mob("lottmobs:nazgul", { type = "monster", hp_min = 90, hp_max = 110, @@ -72,7 +72,7 @@ mobs:register_mob("lottmobs:nazgul", { end }) -mobs:register_mob("lottmobs:witch_king", { +legacy_mobs:register_mob("lottmobs:witch_king", { type = "monster", hp_min = 250, hp_max = 350, diff --git a/mods/lord/Entities/lottmobs/src/racial/others/trolls.lua b/mods/lord/Entities/lottmobs/src/racial/others/trolls.lua index d0d2383c3..6eb281539 100644 --- a/mods/lord/Entities/lottmobs/src/racial/others/trolls.lua +++ b/mods/lord/Entities/lottmobs/src/racial/others/trolls.lua @@ -1,7 +1,7 @@ local api = require('fear_height.api') -mobs:register_mob("lottmobs:battle_troll", { +legacy_mobs:register_mob("lottmobs:battle_troll", { type = "monster", hp_min = 45, hp_max = 60, @@ -57,7 +57,7 @@ mobs:register_mob("lottmobs:battle_troll", { }) -mobs:register_mob("lottmobs:troll", { +legacy_mobs:register_mob("lottmobs:troll", { type = "monster", hp_min = 50, hp_max = 65, diff --git a/mods/lord/Entities/lottmobs/src/spawn.lua b/mods/lord/Entities/lottmobs/src/spawn.lua index 95828e254..69784cc28 100644 --- a/mods/lord/Entities/lottmobs/src/spawn.lua +++ b/mods/lord/Entities/lottmobs/src/spawn.lua @@ -1,116 +1,116 @@ local stones = table.keys(rocks.get_nodes()) - +local lm = legacy_mobs --------------------------- S U R F A C E --------------------------- --dwarfs.lua -mobs:spawn_specific("lottmobs:dwarf", {"lord_ground:dirt_iron_hills"}, {"air"}, -1, 20, 30, 9000, 2, -31000, 31000) -mobs:spawn_specific("lottmobs:dwarf1", {"lord_ground:dirt_iron_hills"}, {"air"}, -1, 20, 30, 9000, 2, -31000, 31000) -mobs:spawn_specific("lottmobs:dwarf2", {"lord_ground:dirt_iron_hills"}, {"air"}, -1, 20, 30, 9000, 2, -31000, 31000) +lm:spawn_specific("lottmobs:dwarf", {"lord_ground:dirt_iron_hills"}, {"air"}, -1, 20, 30, 9000, 2, -31000, 31000) +lm:spawn_specific("lottmobs:dwarf1", {"lord_ground:dirt_iron_hills"}, {"air"}, -1, 20, 30, 9000, 2, -31000, 31000) +lm:spawn_specific("lottmobs:dwarf2", {"lord_ground:dirt_iron_hills"}, {"air"}, -1, 20, 30, 9000, 2, -31000, 31000) --elves.lua -mobs:spawn_specific("lottmobs:elf_archer", {"lord_ground:dirt_lorien"}, {"air"}, 0, 20, 30, 9000, 2, 0, 31000) -mobs:spawn_specific("lottmobs:elf", {"lord_ground:dirt_lorien"}, {"air"}, 0, 20, 30, 9000, 2, 0, 31000) -mobs:spawn_specific("lottmobs:elf1", {"lord_ground:dirt_lorien"}, {"air"}, 0, 20, 30, 9000, 2, 0, 31000) -mobs:spawn_specific("lottmobs:elf2", {"lord_ground:dirt_lorien"}, {"air"}, 0, 20, 30, 9000, 2, 0, 31000) +lm:spawn_specific("lottmobs:elf_archer", {"lord_ground:dirt_lorien"}, {"air"}, 0, 20, 30, 9000, 2, 0, 31000) +lm:spawn_specific("lottmobs:elf", {"lord_ground:dirt_lorien"}, {"air"}, 0, 20, 30, 9000, 2, 0, 31000) +lm:spawn_specific("lottmobs:elf1", {"lord_ground:dirt_lorien"}, {"air"}, 0, 20, 30, 9000, 2, 0, 31000) +lm:spawn_specific("lottmobs:elf2", {"lord_ground:dirt_lorien"}, {"air"}, 0, 20, 30, 9000, 2, 0, 31000) --boar.lua -mobs:spawn_specific("lottmobs:boar", {"lord_ground:dirt_iron_hills"}, {"air"}, -1, 20, 30, 30000, 2, 0, 31000) +lm:spawn_specific("lottmobs:boar", {"lord_ground:dirt_iron_hills"}, {"air"}, -1, 20, 30, 30000, 2, 0, 31000) --horse.lua -mobs:spawn_specific("lottmobs:horse", {"lord_ground:dirt_rohan"}, {"air"}, -1, 20, 30, 60000, 2, 0, 31000) -mobs:spawn_specific("lottmobs:horsepeg", {"lord_ground:dirt_rohan"}, {"air"}, -1, 20, 30, 60000, 2, 0, 31000) -mobs:spawn_specific("lottmobs:horseara", {"lord_ground:dirt_rohan"}, {"air"}, -1, 20, 30, 60000, 2, 0, 31000) -mobs:spawn_specific("lottmobs:shirepony", {"lord_ground:dirt_shire"}, {"air"}, -1, 20, 30, 45000, 2, 0, 31000) -mobs:spawn_specific("lottmobs:shireponyblack", {"lord_ground:dirt_shire"}, {"air"}, -1, 20, 30, 45000, 2, 0, 31000) +lm:spawn_specific("lottmobs:horse", {"lord_ground:dirt_rohan"}, {"air"}, -1, 20, 30, 60000, 2, 0, 31000) +lm:spawn_specific("lottmobs:horsepeg", {"lord_ground:dirt_rohan"}, {"air"}, -1, 20, 30, 60000, 2, 0, 31000) +lm:spawn_specific("lottmobs:horseara", {"lord_ground:dirt_rohan"}, {"air"}, -1, 20, 30, 60000, 2, 0, 31000) +lm:spawn_specific("lottmobs:shirepony", {"lord_ground:dirt_shire"}, {"air"}, -1, 20, 30, 45000, 2, 0, 31000) +lm:spawn_specific("lottmobs:shireponyblack", {"lord_ground:dirt_shire"}, {"air"}, -1, 20, 30, 45000, 2, 0, 31000) --animals -mobs:spawn_specific("lottmobs:chicken", {"lord_ground:dirt_gondor"}, {"air"}, -1, 20, 30, 9000, 2, 0, 31000) -mobs:spawn_specific("lottmobs:chicken", {"lord_ground:dirt_dunland"}, {"air"}, -1, 20, 30, 9000, 2, 0, 31000) -mobs:spawn_specific("lottmobs:chicken", {"lord_ground:dirt_rohan"}, {"air"}, -1, 20, 30, 9000, 2, 0, 31000) -mobs:spawn_specific("lottmobs:chicken", {"lord_ground:dirt_shire"}, {"air"}, -1, 20, 30, 7500, 2, 0, 31000) - -mobs:spawn_specific("lottmobs:rat", {"lord_ground:dirt_gondor"}, {"air"}, -1, 20, 30, 9000, 2, 0, 31000) -mobs:spawn_specific("lottmobs:rat", {"lord_ground:dirt_dunland"}, {"air"}, -1, 20, 30, 9000, 2, 0, 31000) -mobs:spawn_specific("lottmobs:rat", {"lord_ground:dirt_rohan"}, {"air"}, -1, 20, 30, 9000, 2, 0, 31000) -mobs:spawn_specific("lottmobs:rat", {"lord_ground:dirt_shire"}, {"air"}, -1, 20, 30, 7500, 2, 0, 31000) - -mobs:spawn_specific("lottmobs:kitten", {"lord_ground:dirt_gondor"}, {"air"}, -1, 20, 30, 9000, 2, 0, 31000) -mobs:spawn_specific("lottmobs:kitten", {"lord_ground:dirt_dunland"}, {"air"}, -1, 20, 30, 9000, 2, 0, 31000) -mobs:spawn_specific("lottmobs:kitten", {"lord_ground:dirt_rohan"}, {"air"}, -1, 20, 30, 9000, 2, 0, 31000) -mobs:spawn_specific("lottmobs:kitten", {"lord_ground:dirt_shire"}, {"air"}, -1, 20, 30, 7500, 2, 0, 31000) - ---mobs:spawn_specific("lottmobs:sheep", {"lord_ground:dirt_gondor"}, {"air"}, -1, 20, 10, 10000, 1, 0, 31000) ---mobs:spawn_specific("lottmobs:sheep", {"lord_ground:dirt_dunland"}, {"air"}, -1, 20, 10, 10000, 1, 0, 31000) ---mobs:spawn_specific("lottmobs:sheep", {"lord_ground:dirt_ithilien"}, {"air"}, -1, 20, 10, 10000, 1, 0, 31000) ---mobs:spawn_specific("lottmobs:sheep", {"lord_ground:dirt_shire"}, {"air"}, -1, 20, 10, 10000, 1, 0, 31000) - -mobs:spawn_specific("lottmobs:bunny", {"lord_ground:dirt_gondor"}, {"air"}, -1, 20, 10, 10000, 1, 0, 31000) -mobs:spawn_specific("lottmobs:bunny", {"lord_ground:dirt_dunland"}, {"air"}, -1, 20, 10, 10000, 1, 0, 31000) -mobs:spawn_specific("lottmobs:bunny", {"lord_ground:dirt_ithilien"}, {"air"}, -1, 20, 10, 10000, 1, 0, 31000) -mobs:spawn_specific("lottmobs:bunny", {"lord_ground:dirt_shire"}, {"air"}, -1, 20, 10, 10000, 1, 0, 31000) -mobs:spawn_specific("lottmobs:bunny", {"lord_ground:dirt_iron_hills"}, {"air"}, -1, 20, 10, 10000, 1, 0, 31000) -mobs:spawn_specific("lottmobs:bunny", {"lord_ground:dirt_fangorn"}, {"air"}, -1, 20, 10, 10000, 1, 0, 31000) -mobs:spawn_specific("lottmobs:bunny", {"lord_ground:dirt_rohan"}, {"air"}, -1, 20, 10, 10000, 1, 0, 31000) -mobs:spawn_specific("lottmobs:bunny", {"lord_ground:dirt_lorien"}, {"air"}, -1, 20, 10, 10000, 1, 0, 31000) -mobs:spawn_specific("lottmobs:bunny", {"default:dirt_with_snow"}, {"air"}, -1, 20, 10, 10000, 1, 0, 31000) - -mobs:spawn_specific("lottmobs:ent", {"lord_ground:dirt_fangorn"}, {"air"}, -1, 20, 300, 9000, 1, 0, 31000) -mobs:spawn_specific("lottmobs:spider", {"lord_ground:dirt_mirkwood"}, {"air"}, -10, 20, 30, 9000, 2, 0, 31000) - -mobs:spawn_specific("lottmobs:rohan_guard", {"lord_ground:dirt_rohan"}, {"air"}, -1, 20, 30, 9000, 2, 0, 31000) -mobs:spawn_specific("lottmobs:gondor_guard", {"lord_ground:dirt_gondor"}, {"air"}, -1, 20, 30, 9000, 2, 0, 31000) -mobs:spawn_specific("lottmobs:ithilien_ranger", {"lord_ground:dirt_ithilien"}, {"air"}, -1, 20, 30, 9000, 2, 0, 31000) -mobs:spawn_specific("lottmobs:dunlending", {"lord_ground:dirt_dunland"}, {"air"}, -1, 20, 30, 9000, 2, 0, 31000) -mobs:spawn_specific("lottmobs:hobbit", {"lord_ground:dirt_shire"}, {"air"}, -1, 20, 30, 9000, 2, 0, 31000) - -mobs:spawn_specific("lottmobs:orc", {"lord_rocks:mordor_stone"}, {"air"}, -1, 20, 30, 800, 2, 0, 31000) -mobs:spawn_specific("lottmobs:orc", {"default:snowblock"}, {"air"}, -1, 15, 30, 12000, 2, 0, 31000) -mobs:spawn_specific("lottmobs:orc", {"default:dirt_with_snow"}, {"air"}, -1, 15, 30, 12000, 2, 0, 31000) -mobs:spawn_specific("lottmobs:orc", {"lottmapgen:angsnowblock"}, {"air"}, -1, 20, 30, 9000, 2, 0, 31000) - -mobs:spawn_specific("lottmobs:orc_crossbowman", {"lord_rocks:mordor_stone"}, {"air"}, -1, 20, 30, 300, 2, 0, 31000) -mobs:spawn_specific("lottmobs:orc_crossbowman", {"default:snowblock"}, {"air"}, -1, 15, 30, 3000, 2, 0, 31000) -mobs:spawn_specific("lottmobs:orc_crossbowman", {"default:dirt_with_snow"}, {"air"}, -1, 15, 30, 3000, 2, 0, 31000) -mobs:spawn_specific("lottmobs:orc_crossbowman", {"lottmapgen:angsnowblock"}, {"air"}, -1, 20, 30, 2000, 2, 0, 31000) - -mobs:spawn_specific("lottmobs:orc_archer", {"lord_rocks:mordor_stone"}, {"air"}, -1, 20, 30, 800, 2, 0, 31000) -mobs:spawn_specific("lottmobs:orc_archer", {"default:snowblock"}, {"air"}, -1, 15, 30, 12000, 2, 0, 31000) -mobs:spawn_specific("lottmobs:orc_archer", {"default:dirt_with_snow"}, {"air"}, -1, 15, 30, 12000, 2, 0, 31000) -mobs:spawn_specific("lottmobs:orc_archer", {"lottmapgen:angsnowblock"}, {"air"}, -1, 20, 30, 9000, 2, 0, 31000) - -mobs:spawn_specific("lottmobs:raiding_orc", {"lord_ground:dirt_ithilien"}, {"air"}, -1, 2, 30, 6000, 3, 0, 31000) -mobs:spawn_specific("lottmobs:raiding_orc", {"lord_ground:dirt_rohan"}, {"air"}, -1, 2, 30, 6000, 3, 0, 31000) -mobs:spawn_specific("lottmobs:raiding_orc", {"lord_ground:dirt_gondor"}, {"air"}, -1, 2, 30, 6000, 3, 0, 31000) +lm:spawn_specific("lottmobs:chicken", {"lord_ground:dirt_gondor"}, {"air"}, -1, 20, 30, 9000, 2, 0, 31000) +lm:spawn_specific("lottmobs:chicken", {"lord_ground:dirt_dunland"}, {"air"}, -1, 20, 30, 9000, 2, 0, 31000) +lm:spawn_specific("lottmobs:chicken", {"lord_ground:dirt_rohan"}, {"air"}, -1, 20, 30, 9000, 2, 0, 31000) +lm:spawn_specific("lottmobs:chicken", {"lord_ground:dirt_shire"}, {"air"}, -1, 20, 30, 7500, 2, 0, 31000) + +lm:spawn_specific("lottmobs:rat", {"lord_ground:dirt_gondor"}, {"air"}, -1, 20, 30, 9000, 2, 0, 31000) +lm:spawn_specific("lottmobs:rat", {"lord_ground:dirt_dunland"}, {"air"}, -1, 20, 30, 9000, 2, 0, 31000) +lm:spawn_specific("lottmobs:rat", {"lord_ground:dirt_rohan"}, {"air"}, -1, 20, 30, 9000, 2, 0, 31000) +lm:spawn_specific("lottmobs:rat", {"lord_ground:dirt_shire"}, {"air"}, -1, 20, 30, 7500, 2, 0, 31000) + +lm:spawn_specific("lottmobs:kitten", {"lord_ground:dirt_gondor"}, {"air"}, -1, 20, 30, 9000, 2, 0, 31000) +lm:spawn_specific("lottmobs:kitten", {"lord_ground:dirt_dunland"}, {"air"}, -1, 20, 30, 9000, 2, 0, 31000) +lm:spawn_specific("lottmobs:kitten", {"lord_ground:dirt_rohan"}, {"air"}, -1, 20, 30, 9000, 2, 0, 31000) +lm:spawn_specific("lottmobs:kitten", {"lord_ground:dirt_shire"}, {"air"}, -1, 20, 30, 7500, 2, 0, 31000) + +--lm:spawn_specific("lottmobs:sheep", {"lord_ground:dirt_gondor"}, {"air"}, -1, 20, 10, 10000, 1, 0, 31000) +--lm:spawn_specific("lottmobs:sheep", {"lord_ground:dirt_dunland"}, {"air"}, -1, 20, 10, 10000, 1, 0, 31000) +--lm:spawn_specific("lottmobs:sheep", {"lord_ground:dirt_ithilien"}, {"air"}, -1, 20, 10, 10000, 1, 0, 31000) +--lm:spawn_specific("lottmobs:sheep", {"lord_ground:dirt_shire"}, {"air"}, -1, 20, 10, 10000, 1, 0, 31000) + +lm:spawn_specific("lottmobs:bunny", {"lord_ground:dirt_gondor"}, {"air"}, -1, 20, 10, 10000, 1, 0, 31000) +lm:spawn_specific("lottmobs:bunny", {"lord_ground:dirt_dunland"}, {"air"}, -1, 20, 10, 10000, 1, 0, 31000) +lm:spawn_specific("lottmobs:bunny", {"lord_ground:dirt_ithilien"}, {"air"}, -1, 20, 10, 10000, 1, 0, 31000) +lm:spawn_specific("lottmobs:bunny", {"lord_ground:dirt_shire"}, {"air"}, -1, 20, 10, 10000, 1, 0, 31000) +lm:spawn_specific("lottmobs:bunny", {"lord_ground:dirt_iron_hills"}, {"air"}, -1, 20, 10, 10000, 1, 0, 31000) +lm:spawn_specific("lottmobs:bunny", {"lord_ground:dirt_fangorn"}, {"air"}, -1, 20, 10, 10000, 1, 0, 31000) +lm:spawn_specific("lottmobs:bunny", {"lord_ground:dirt_rohan"}, {"air"}, -1, 20, 10, 10000, 1, 0, 31000) +lm:spawn_specific("lottmobs:bunny", {"lord_ground:dirt_lorien"}, {"air"}, -1, 20, 10, 10000, 1, 0, 31000) +lm:spawn_specific("lottmobs:bunny", {"default:dirt_with_snow"}, {"air"}, -1, 20, 10, 10000, 1, 0, 31000) + +lm:spawn_specific("lottmobs:ent", {"lord_ground:dirt_fangorn"}, {"air"}, -1, 20, 300, 9000, 1, 0, 31000) +lm:spawn_specific("lottmobs:spider", {"lord_ground:dirt_mirkwood"}, {"air"}, -10, 20, 30, 9000, 2, 0, 31000) + +lm:spawn_specific("lottmobs:rohan_guard", {"lord_ground:dirt_rohan"}, {"air"}, -1, 20, 30, 9000, 2, 0, 31000) +lm:spawn_specific("lottmobs:gondor_guard", {"lord_ground:dirt_gondor"}, {"air"}, -1, 20, 30, 9000, 2, 0, 31000) +lm:spawn_specific("lottmobs:ithilien_ranger", {"lord_ground:dirt_ithilien"}, {"air"}, -1, 20, 30, 9000, 2, 0, 31000) +lm:spawn_specific("lottmobs:dunlending", {"lord_ground:dirt_dunland"}, {"air"}, -1, 20, 30, 9000, 2, 0, 31000) +lm:spawn_specific("lottmobs:hobbit", {"lord_ground:dirt_shire"}, {"air"}, -1, 20, 30, 9000, 2, 0, 31000) + +lm:spawn_specific("lottmobs:orc", {"lord_rocks:mordor_stone"}, {"air"}, -1, 20, 30, 800, 2, 0, 31000) +lm:spawn_specific("lottmobs:orc", {"default:snowblock"}, {"air"}, -1, 15, 30, 12000, 2, 0, 31000) +lm:spawn_specific("lottmobs:orc", {"default:dirt_with_snow"}, {"air"}, -1, 15, 30, 12000, 2, 0, 31000) +lm:spawn_specific("lottmobs:orc", {"lottmapgen:angsnowblock"}, {"air"}, -1, 20, 30, 9000, 2, 0, 31000) + +lm:spawn_specific("lottmobs:orc_crossbowman", {"lord_rocks:mordor_stone"}, {"air"}, -1, 20, 30, 300, 2, 0, 31000) +lm:spawn_specific("lottmobs:orc_crossbowman", {"default:snowblock"}, {"air"}, -1, 15, 30, 3000, 2, 0, 31000) +lm:spawn_specific("lottmobs:orc_crossbowman", {"default:dirt_with_snow"}, {"air"}, -1, 15, 30, 3000, 2, 0, 31000) +lm:spawn_specific("lottmobs:orc_crossbowman", {"lottmapgen:angsnowblock"}, {"air"}, -1, 20, 30, 2000, 2, 0, 31000) + +lm:spawn_specific("lottmobs:orc_archer", {"lord_rocks:mordor_stone"}, {"air"}, -1, 20, 30, 800, 2, 0, 31000) +lm:spawn_specific("lottmobs:orc_archer", {"default:snowblock"}, {"air"}, -1, 15, 30, 12000, 2, 0, 31000) +lm:spawn_specific("lottmobs:orc_archer", {"default:dirt_with_snow"}, {"air"}, -1, 15, 30, 12000, 2, 0, 31000) +lm:spawn_specific("lottmobs:orc_archer", {"lottmapgen:angsnowblock"}, {"air"}, -1, 20, 30, 9000, 2, 0, 31000) + +lm:spawn_specific("lottmobs:raiding_orc", {"lord_ground:dirt_ithilien"}, {"air"}, -1, 2, 30, 6000, 3, 0, 31000) +lm:spawn_specific("lottmobs:raiding_orc", {"lord_ground:dirt_rohan"}, {"air"}, -1, 2, 30, 6000, 3, 0, 31000) +lm:spawn_specific("lottmobs:raiding_orc", {"lord_ground:dirt_gondor"}, {"air"}, -1, 2, 30, 6000, 3, 0, 31000) --warg.lua -mobs:spawn_specific("lottmobs:warg", {"lord_rocks:mordor_stone"}, {"air"}, -1, 20, 30, 7500, 2, 0, 31000) -mobs:spawn_specific("lottmobs:warg", {"default:snowblock"}, {"air"}, -1, 15, 30, 11500, 2, 0, 31000) -mobs:spawn_specific("lottmobs:warg", {"lottmapgen:angsnowblock"}, {"air"}, -1, 20, 30, 7500, 3, 0, 31000) +lm:spawn_specific("lottmobs:warg", {"lord_rocks:mordor_stone"}, {"air"}, -1, 20, 30, 7500, 2, 0, 31000) +lm:spawn_specific("lottmobs:warg", {"default:snowblock"}, {"air"}, -1, 15, 30, 11500, 2, 0, 31000) +lm:spawn_specific("lottmobs:warg", {"lottmapgen:angsnowblock"}, {"air"}, -1, 20, 30, 7500, 3, 0, 31000) -mobs:spawn_specific("lottmobs:uruk_hai", {"lord_rocks:mordor_stone"}, {"air"}, -1, 15, 30, 3000, 2, 0, 31000) -mobs:spawn_specific("lottmobs:uruk_hai", {"lord_ground:dirt_fangorn"}, {"air"}, -1, 2, 30, 3000, 2, 0, 31000) +lm:spawn_specific("lottmobs:uruk_hai", {"lord_rocks:mordor_stone"}, {"air"}, -1, 15, 30, 3000, 2, 0, 31000) +lm:spawn_specific("lottmobs:uruk_hai", {"lord_ground:dirt_fangorn"}, {"air"}, -1, 2, 30, 3000, 2, 0, 31000) -mobs:spawn_specific("lottmobs:battle_troll", {"lord_rocks:mordor_stone"}, {"air"}, -1, 10, 30, 15000, 3, 0, 31000) +lm:spawn_specific("lottmobs:battle_troll", {"lord_rocks:mordor_stone"}, {"air"}, -1, 10, 30, 15000, 3, 0, 31000) -mobs:spawn_specific("lottmobs:half_troll", {"default:snow"}, {"air"}, -1, 15, 30, 12000, 2, 0, 31000) -mobs:spawn_specific("lottmobs:half_troll", {"default:snowblock"}, {"air"}, -1, 15, 30, 12000, 2, 0, 31000) -mobs:spawn_specific("lottmobs:half_troll", {"default:dirt_with_snow"}, {"air"}, -1, 15, 30, 12000, 2, 0, 31000) -mobs:spawn_specific("lottmobs:half_troll", {"lottmapgen:angsnowblock"}, {"air"}, -1, 20, 30, 9000, 3, 0, 31000) +lm:spawn_specific("lottmobs:half_troll", {"default:snow"}, {"air"}, -1, 15, 30, 12000, 2, 0, 31000) +lm:spawn_specific("lottmobs:half_troll", {"default:snowblock"}, {"air"}, -1, 15, 30, 12000, 2, 0, 31000) +lm:spawn_specific("lottmobs:half_troll", {"default:dirt_with_snow"}, {"air"}, -1, 15, 30, 12000, 2, 0, 31000) +lm:spawn_specific("lottmobs:half_troll", {"lottmapgen:angsnowblock"}, {"air"}, -1, 20, 30, 9000, 3, 0, 31000) -mobs:spawn_specific("lottmobs:troll", {"default:snow"}, {"air"}, -1, 2, 30, 9000, 3, -31000, 31000) -mobs:spawn_specific("lottmobs:troll", {"default:snowblock"}, {"air"}, -1, 2, 30, 9000, 3, -31000, 31000) -mobs:spawn_specific("lottmobs:troll", {"lottmapgen:angsnowblock"}, {"air"}, -1, 2, 30, 9000, 3, -31000, 31000) +lm:spawn_specific("lottmobs:troll", {"default:snow"}, {"air"}, -1, 2, 30, 9000, 3, -31000, 31000) +lm:spawn_specific("lottmobs:troll", {"default:snowblock"}, {"air"}, -1, 2, 30, 9000, 3, -31000, 31000) +lm:spawn_specific("lottmobs:troll", {"lottmapgen:angsnowblock"}, {"air"}, -1, 2, 30, 9000, 3, -31000, 31000) --------------------------- C A V E S --------------------------- -mobs:spawn_specific("lottmobs:dead_men", {"default:mossycobble"}, {"air"}, -1, 7, 45, 2, 5, -31000, -50) +lm:spawn_specific("lottmobs:dead_men", {"default:mossycobble"}, {"air"}, -1, 7, 45, 2, 5, -31000, -50) -mobs:spawn_specific("lottmobs:rat", stones, {"air"}, -1, 8, 30, 6000, 2, -31000, 0) +lm:spawn_specific("lottmobs:rat", stones, {"air"}, -1, 8, 30, 6000, 2, -31000, 0) -mobs:spawn_specific("lottmobs:dwarf", stones, {"air"}, 8, 15, 30, 9000, 2, -31000, -10) -mobs:spawn_specific("lottmobs:dwarf1", stones, {"air"}, 8, 15, 30, 9000, 2, -31000, -10) -mobs:spawn_specific("lottmobs:dwarf2", stones, {"air"}, 8, 15, 30, 9000, 2, -31000, -10) +lm:spawn_specific("lottmobs:dwarf", stones, {"air"}, 8, 15, 30, 9000, 2, -31000, -10) +lm:spawn_specific("lottmobs:dwarf1", stones, {"air"}, 8, 15, 30, 9000, 2, -31000, -10) +lm:spawn_specific("lottmobs:dwarf2", stones, {"air"}, 8, 15, 30, 9000, 2, -31000, -10) -mobs:spawn_specific("lottmobs:orc", stones, {"air"}, -1, 6, 30, 4000, 3, -31000, -10) -mobs:spawn_specific("lottmobs:troll", stones, {"air"}, -1, 5, 30, 12000, 3, -31000, -10) -mobs:spawn_specific("lottmobs:spider", stones, {"air"}, -1, 4, 30, 12000, 2, -31000, -10) +lm:spawn_specific("lottmobs:orc", stones, {"air"}, -1, 6, 30, 4000, 3, -31000, -10) +lm:spawn_specific("lottmobs:troll", stones, {"air"}, -1, 5, 30, 12000, 3, -31000, -10) +lm:spawn_specific("lottmobs:spider", stones, {"air"}, -1, 4, 30, 12000, 2, -31000, -10) -mobs:spawn_specific("lottmobs:nazgul", stones, {"air"}, -1, 2, 30, 30000, 2, -31000, -100) -mobs:spawn_specific("lottmobs:witch_king", stones, {"air"}, -1, 2, 30, 60000, 1, -31000, -1000) -mobs:spawn_specific("lottmobs:balrog", stones, {"air"}, -1, 2, 30, 100000, 1, -31000, -10000) +lm:spawn_specific("lottmobs:nazgul", stones, {"air"}, -1, 2, 30, 30000, 2, -31000, -100) +lm:spawn_specific("lottmobs:witch_king", stones, {"air"}, -1, 2, 30, 60000, 1, -31000, -1000) +lm:spawn_specific("lottmobs:balrog", stones, {"air"}, -1, 2, 30, 100000, 1, -31000, -10000) diff --git a/mods/lord/_experimental/lord_spawners/mod.conf b/mods/lord/_experimental/lord_spawners/mod.conf index f4b88ba8c..46eefda4b 100644 --- a/mods/lord/_experimental/lord_spawners/mod.conf +++ b/mods/lord/_experimental/lord_spawners/mod.conf @@ -1,3 +1,3 @@ name = lord_spawners description = Lord Mobs Spawners -depends = mobs, lottmobs +depends = legacy_mobs, lottmobs diff --git a/mods/lord/_overwrites/various/mobs/mod.conf b/mods/lord/_overwrites/various/mobs/mod.conf index a3ff6682f..ef28664ba 100644 --- a/mods/lord/_overwrites/various/mobs/mod.conf +++ b/mods/lord/_overwrites/various/mobs/mod.conf @@ -1,3 +1,3 @@ name = lord_overwrites_various_mobs description = Lord Overwrites of _various/mobs mod -depends = bees, mobs +depends = bees, legacy_mobs From 6eccb27680acd3a5f669251dcf79279d1efc1de6 Mon Sep 17 00:00:00 2001 From: lord-papirus Date: Tue, 3 Mar 2026 21:24:00 +0300 Subject: [PATCH 52/79] LG-2064 Fix translation after move mod bee. --- mods/_various/legacy_mobs/locale/mobs.ru.tr | 6 +----- mods/lord/Entities/bees/locale/bees.ru.tr | 4 ++++ 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/mods/_various/legacy_mobs/locale/mobs.ru.tr b/mods/_various/legacy_mobs/locale/mobs.ru.tr index fe3b2ae9d..fba017993 100644 --- a/mods/_various/legacy_mobs/locale/mobs.ru.tr +++ b/mods/_various/legacy_mobs/locale/mobs.ru.tr @@ -1,8 +1,4 @@ -# textdomain: mobs -Honey=Мёд -Beehive=Улей -Honey Block=Блок мёда -Bee=Пчела +# textdomain: legacy_mobs [MOBS] mod profiling enabled, damage not enabled=[MOBS] профилирование мода включено, урон не включен lifetimer expired, removed @1=таймер жизни истёк, удален @1 [Mobs Redo] @1 has spawning disabled=[Mobs Redo] спавн @1 выключен diff --git a/mods/lord/Entities/bees/locale/bees.ru.tr b/mods/lord/Entities/bees/locale/bees.ru.tr index 339b32dbb..7cd881af4 100644 --- a/mods/lord/Entities/bees/locale/bees.ru.tr +++ b/mods/lord/Entities/bees/locale/bees.ru.tr @@ -20,3 +20,7 @@ requires queen bee to function=Требует пчелиную матку для does not have empty frame(s)=Нет пустых рамок honey comb block=Блок медовых сот wax block=Блок воска +Honey=Мёд +Beehive=Улей +Honey Block=Блок мёда +Bee=Пчела From 0b4fd738b3528bed8113232c895e4ad93486af10 Mon Sep 17 00:00:00 2001 From: lord-papirus Date: Wed, 4 Mar 2026 21:54:34 +0300 Subject: [PATCH 53/79] LG-2057 fix move mod mobs --- mods/_various/mobs/api.lua | 3185 -- mods/_various/mobs/models/kraken.x | 35203 --------------- mods/_various/mobs/models/tarantula.x | 37588 ---------------- .../_various/mobs/models/tarantula_propower.x | 37588 ---------------- 4 files changed, 113564 deletions(-) delete mode 100644 mods/_various/mobs/api.lua delete mode 100644 mods/_various/mobs/models/kraken.x delete mode 100644 mods/_various/mobs/models/tarantula.x delete mode 100644 mods/_various/mobs/models/tarantula_propower.x diff --git a/mods/_various/mobs/api.lua b/mods/_various/mobs/api.lua deleted file mode 100644 index 0c556dd38..000000000 --- a/mods/_various/mobs/api.lua +++ /dev/null @@ -1,3185 +0,0 @@ - --- Mobs Api (26th March 2017) - -mobs = {} -mobs.mod = "redo" - -local S = minetest.get_mod_translator() - -local function mob_is_dead(self) - if not self.object:get_pos() then - return true - end - return false -end - - --- Invisibility mod check -mobs.invis = {} -if rawget(_G, "invisibility") then - mobs.invis = invisibility -end - - --- localize math functions -local pi = math.pi -local square = math.sqrt -local sin = math.sin -local cos = math.cos -local abs = math.abs -local min = math.min -local max = math.max -local atann = math.atan -local random = math.random -local floor = math.floor -local atan = function(x) - if x ~= x then - --error("atan bassed NaN") - return 0 - else - return atann(x) - end -end -local table_copy = table.copy - - --- Load settings -local damage_enabled = minetest.settings:get_bool("enable_damage") -local peaceful_only = minetest.settings:get_bool("only_peaceful_mobs") -local disable_blood = minetest.settings:get_bool("mobs_disable_blood") -local spawn_protected = tonumber(minetest.settings:get("mobs_spawn_protected")) or 1 -local remove_far = minetest.settings:get_bool("remove_far_mobs") -local difficulty = tonumber(minetest.settings:get("mob_difficulty")) or 1.0 -local show_health = minetest.settings:get_bool("mob_show_health") ~= false -local max_per_block = tonumber(minetest.settings:get("max_objects_per_block") or 99) - --- calculate aoc range for mob count -local aosrb = tonumber(minetest.settings:get("active_object_send_range_blocks")) -local abr = tonumber(minetest.settings:get("active_block_range")) -local aoc_range = max(aosrb, abr) * 16 - --- pathfinding settings -local enable_pathfinding = true -local stuck_timeout = 3 -- how long before mob gets stuck in place and starts searching -local stuck_path_timeout = 10 -- how long will mob follow path before giving up - - - --- play sound -local mob_sound = function(self, sound) - - if sound then - minetest.sound_play(sound, { - object = self.object, - gain = 1.0, - max_hear_distance = self.sounds.distance - }) - end -end - - --- attack player/mob -local do_attack = function(self, player) - - if self.state == "attack" then - return - end - - self.attack = player - self.state = "attack" - - if random(0, 100) < 90 then - mob_sound(self, self.sounds.war_cry) - end -end - - --- move mob in facing direction -local set_velocity = function(self, v) - - local yaw = self.object:get_yaw() + self.rotate - - self.object:set_velocity({ - x = sin(yaw) * -v, - y = self.object:get_velocity().y, - z = cos(yaw) * v - }) -end - - --- get overall speed of mob -local get_velocity = function(self) - - local v = self.object:get_velocity() - - return (v.x * v.x + v.z * v.z) ^ 0.5 -end - - --- set defined animation -local set_animation = function(self, anim) - - if not self.animation then return end - - self.animation.current = self.animation.current or "" - - if anim == self.animation.current - or not self.animation[anim .. "_start"] - or not self.animation[anim .. "_end"] then - return - end - - self.animation.current = anim - - self.object:set_animation({ - x = self.animation[anim .. "_start"], - y = self.animation[anim .. "_end"] - }, self.animation[anim .. "_speed"] or self.animation.speed_normal or 15) - -end - - --- get distance -local get_distance = function(a, b) - if not a or not b then return 50 end -- nil check and default distance - - local x, y, z = a.x - b.x, a.y - b.y, a.z - b.z - - return square(x * x + y * y + z * z) -end - - --- check line of sight using raycasting (thanks Astrobe) -local function line_of_sight(self, pos1, pos2) - - local ray = minetest.raycast(pos1, pos2, true, false) -- ignore entities - local thing = ray:next() - local name, nodedef - - while thing do - - if thing.type == "node" then - - name = minetest.get_node(thing.under).name - nodedef = minetest.registered_items[name] - - if nodedef and nodedef.walkable then return false end - end - - thing = ray:next() - end - - return true -end - - --- are we flying in what we are suppose to? (taikedz) -local function flight_check(self, pos_w) - - local nod = self.standing_in - - if type(self.fly_in) == "string" - and ( nod == self.fly_in or nod == self.fly_in:gsub("_source", "_flowing") ) then - - return true - - elseif type(self.fly_in) == "table" then - - for _,fly_in in pairs(self.fly_in) do - - if nod == fly_in or nod == fly_in:gsub("_source", "_flowing") then - - return true - end - end - end -end - - --- particle effects -local function effect(pos, amount, texture, min_size, max_size, radius, gravity) - - radius = radius or 2 - min_size = min_size or 0.5 - max_size = max_size or 1 - gravity = gravity or -10 - - minetest.add_particlespawner({ - amount = amount, - time = 0.25, - minpos = pos, - maxpos = pos, - minvel = {x = -radius, y = -radius, z = -radius}, - maxvel = {x = radius, y = radius, z = radius}, - minacc = {x = 0, y = gravity, z = 0}, - maxacc = {x = 0, y = gravity, z = 0}, - minexptime = 0.1, - maxexptime = 1, - minsize = min_size, - maxsize = max_size, - texture = texture, - }) -end - - --- update nametag colour -local function update_tag(self) - - local col = "#00FF00" - local qua = self.hp_max / 4 - - if self.health <= floor(qua * 3) then - col = "#FFFF00" - end - - if self.health <= floor(qua * 2) then - col = "#FF6600" - end - - if self.health <= floor(qua) then - col = "#FF0000" - end - - self.object:set_properties({ - nametag = self.nametag, - nametag_color = col - }) - -end - -local function mob_die(self) - -- drop items when dead - local obj - local pos = self.object:get_pos() - self.drops = self.drops or {} -- error check - - for n = 1, #self.drops do - - if random(1, self.drops[n].chance) == 1 then - - obj = minetest.add_item(pos, - ItemStack(self.drops[n].name .. " " - .. random(self.drops[n].min, self.drops[n].max))) - - if obj then - - obj:set_velocity({ - x = random(-10, 10) / 9, - y = 6, - z = random(-10, 10) / 9, - }) - end - end - end - - mob_sound(self, self.sounds.death) - - -- execute custom death function - if self.on_die then - - self.on_die(self, pos) - self.object:remove() - - return true - end - - -- default death function and die animation (if defined) - if self.animation - and self.animation.die_start - and self.animation.die_end then - - self.attack = nil - self.v_start = false - self.timer = 0 - self.blinktimer = 0 - self.passive = true - self.state = "die" - set_velocity(self, 0) - set_animation(self, "die") - - minetest.after(2, function(entity) - entity.object:remove() - end, self) - else - self.object:remove() - end - - effect(pos, 20, "tnt_smoke.png") - - return true -end - -local function mob_damaged(self) - mob_sound(self, self.sounds.damage) - - -- make sure health isn't higher than max - if self.health > self.hp_max then - self.health = self.hp_max - end - - -- backup nametag so we can show health stats - if not self.nametag2 then - self.nametag2 = self.nametag or "" - end - - if show_health then - self.htimer = 2 - if self.health_orig ~= nil then - self.nametag = "♥ " .. self.health .. " / " .. self.health_orig - else - self.nametag = "♥ " .. self.health .. " / " .. self.hp_max - end - update_tag(self) - end - - return false -end - --- check if mob is dead or only hurt -local function check_for_death(self) - -- has health actually changed? - if self.health == self.old_health then - return - end - - self.old_health = self.health - - -- still got some health? play hurt sound - if self.health > 0 then - return mob_damaged(self) - else - return mob_die(self) - end -end - - --- check if within physical map limits (-30911 to 30927) -local function within_limits(pos, radius) - - if (pos.x - radius) > -30913 - and (pos.x + radius) < 30928 - and (pos.y - radius) > -30913 - and (pos.y + radius) < 30928 - and (pos.z - radius) > -30913 - and (pos.z + radius) < 30928 then - return true -- within limits - end - - return false -- beyond limits -end - - --- is mob facing a cliff -local function is_at_cliff(self) - - if self.fear_height == 0 then -- 0 for no falling protection! - return false - end - - local yaw = self.object:get_yaw() - local dir_x = -sin(yaw) * (self.collisionbox[4] + 0.5) - local dir_z = cos(yaw) * (self.collisionbox[4] + 0.5) - local pos = self.object:get_pos() - local ypos = pos.y + self.collisionbox[2] -- just above floor - - if minetest.line_of_sight( - {x = pos.x + dir_x, y = ypos, z = pos.z + dir_z}, - {x = pos.x + dir_x, y = ypos - self.fear_height, z = pos.z + dir_z} - , 1) then - - return true - end - - return false -end - - --- get node but use fallback for nil or unknown -local function node_ok(pos, fallback) - fallback = fallback or "default:dirt" - local node = minetest.get_node_or_nil(pos) - if not node then - return minetest.registered_nodes[fallback] - end - if minetest.registered_nodes[node.name] then - return node - end - return minetest.registered_nodes[fallback] -end - - --- environmental damage (water, lava, fire, light) -local do_env_damage = function(self) - if mob_is_dead(self) then - return - end - - -- feed/tame text timer (so mob 'full' messages dont spam chat) - if self.htimer > 0 then - self.htimer = self.htimer - 1 - end - - -- reset nametag after showing health stats - if self.htimer < 1 and self.nametag2 then - - self.nametag = self.nametag2 - self.nametag2 = nil - - update_tag(self) - end - - local pos = self.object:get_pos() - - self.time_of_day = minetest.get_timeofday() - - -- remove mob if beyond map limits - if not within_limits(pos, 0) then - self.object:remove() - return - end - - -- daylight above ground - if self.light_damage ~= 0 - and pos.y > 0 - and self.time_of_day > 0.2 - and self.time_of_day < 0.8 - and (minetest.get_node_light(pos) or 0) > 12 then - - self.health = self.health - self.light_damage - - effect(pos, 5, "tnt_smoke.png") - end - - -- what is mob standing in? - pos.y = pos.y + self.collisionbox[2] + 0.1 -- foot level - self.standing_in = node_ok(pos, "air").name - --print ("standing in " .. self.standing_in) - - -- don't fall when on ignore, just stand still - if self.standing_in == "ignore" then - self.object:set_velocity({x = 0, y = 0, z = 0}) - --print ("--- stopping on ignore") - end - - if self.water_damage ~= 0 - or self.lava_damage ~= 0 then - - local nodef = minetest.registered_nodes[self.standing_in] - - pos.y = pos.y + 1 - - -- water - if self.water_damage ~= 0 - and nodef.groups.water then - - self.health = self.health - self.water_damage - - effect(pos, 5, "bubble.png", nil, nil, 1, nil) - - -- lava or fire - elseif self.lava_damage ~= 0 - and (nodef.groups.lava - or self.standing_in == "fire:basic_flame" - or self.standing_in == "fire:permanent_flame") then - - self.health = self.health - self.lava_damage - - effect(pos, 5, "fire_basic_flame.png", nil, nil, 1, nil) - - -- damage_per_second node check --- elseif minetest.registered_nodes[self.standing_in].damage_per_second ~= 0 then - --- local dps = minetest.registered_nodes[self.standing_in].damage_per_second - --- self.health = self.health - dps - --- effect(pos, 5, "tnt_smoke.png") - end - end - - check_for_death(self) -end - - -local do_jump = function(self) - if not self.can_jump then - return false - end - - if mob_is_dead(self) then - return - end - - if not self.jump - or self.jump_height == 0 - or self.fly - or self.child then - return false - end - - -- something stopping us while moving? - if self.state ~= "stand" - and get_velocity(self) > 0.5 - and self.object:get_velocity().y ~= 0 then - return false - end - - local pos = self.object:get_pos() - local yaw = self.object:get_yaw() - - local nod - -- what is mob standing on? - pos.y = pos.y + self.collisionbox[2] - 0.2 - - nod = node_ok(pos) - ---print ("standing on:", nod.name, pos.y) - - if minetest.registered_nodes[nod.name].walkable == false then - return false - end - - -- where is front - local dir_x = -sin(yaw) * (self.collisionbox[4] + 0.5) - local dir_z = cos(yaw) * (self.collisionbox[4] + 0.5) - - -- what is in front of mob? - nod = node_ok({ - x = pos.x + dir_x, - y = pos.y + 0.5, - z = pos.z + dir_z - }) - - -- thin blocks that do not need to be jumped - if nod.name == "default:snow" then - return false - end - ---print ("in front:", nod.name, pos.y + 0.5) - - if (minetest.registered_items[nod.name].walkable - and not nod.name:find("walls") - and not nod.name:find("fence") - and not nod.name:find("gate")) - or self.walk_chance == 0 then - - local v = self.object:get_velocity() - - v.y = self.jump_height - - set_animation(self, "jump") -- only when defined - - self.object:set_velocity(v) - - mob_sound(self, self.sounds.jump) - - self.can_jump = false - - minetest.after(1, function() - self.can_jump = true - end) - - return true - end - - return false -end - - --- blast damage to entities nearby (modified from TNT mod) -local function entity_physics(pos, radius) - - radius = radius * 2 - - local objs = minetest.get_objects_inside_radius(pos, radius) - local obj_pos, dist - - for n = 1, #objs do - - obj_pos = objs[n]:get_pos() - - dist = max(1, get_distance(pos, obj_pos)) - - local damage = floor((4 / dist) * radius) - - -- punches work on entities AND players - objs[n]:punch(objs[n], 1.0, - {full_punch_interval = 1.0, damage_groups = {fleshy = damage}}, pos) - end -end - - --- should mob follow what I'm holding ? -local function follow_holding(self, clicker) - - if mobs.invis[clicker:get_player_name()] then - return false - end - - local item = clicker:get_wielded_item() - local t = type(self.follow) - - -- single item - if t == "string" - and item:get_name() == self.follow then - return true - - -- multiple items - elseif t == "table" then - - for no = 1, #self.follow do - - if self.follow[no] == item:get_name() then - return true - end - end - end - - return false -end - - --- find two animals of same type and breed if nearby and horny -local function breed(self) - - -- child takes 240 seconds before growing into adult - if self.child == true then - - self.hornytimer = self.hornytimer + 1 - - if self.hornytimer > 240 then - - self.child = false - self.hornytimer = 0 - - self.object:set_properties({ - textures = self.base_texture, - mesh = self.base_mesh, - visual_size = self.base_size, - collisionbox = self.base_colbox, - }) - - -- jump when fully grown so not to fall into ground - self.object:set_velocity({ - x = 0, - y = self.jump_height, - z = 0 - }) - end - - return - end - - -- horny animal can mate for 40 seconds, - -- afterwards horny animal cannot mate again for 200 seconds - if self.horny == true - and self.hornytimer < 240 then - - self.hornytimer = self.hornytimer + 1 - - if self.hornytimer >= 240 then - self.hornytimer = 0 - self.horny = false - end - end - - -- find another same animal who is also horny and mate if close enough - if self.horny == true - and self.hornytimer <= 40 then - - local pos = self.object:get_pos() - - effect({x = pos.x, y = pos.y + 1, z = pos.z}, 8, "heart.png", 3, 4, 1, 0.1) - - local objs = minetest.get_objects_inside_radius(pos, 3) - local num = 0 - local ent - - for n = 1, #objs do - - ent = objs[n]:get_luaentity() - - -- check for same animal with different colour - local canmate = false - - if ent then - - if ent.name == self.name then - canmate = true - else - local entname = string.split(ent.name,":") - local selfname = string.split(self.name,":") - - if entname[1] == selfname[1] then - entname = string.split(entname[2],"_") - selfname = string.split(selfname[2],"_") - - if entname[1] == selfname[1] then - canmate = true - end - end - end - end - - if ent - and canmate == true - and ent.horny == true - and ent.hornytimer <= 40 then - num = num + 1 - end - - -- found your mate? then have a baby - if num > 1 then - - self.hornytimer = 41 - ent.hornytimer = 41 - - -- spawn baby - minetest.after(5, function() - - local mob = minetest.add_entity(pos, self.name) - local ent2 = mob:get_luaentity() - local textures = self.base_texture - - if self.child_texture then - textures = self.child_texture[1] - end - - mob:set_properties({ - textures = textures, - visual_size = { - x = self.base_size.x * .5, - y = self.base_size.y * .5, - }, - collisionbox = { - self.base_colbox[1] * .5, - self.base_colbox[2] * .5, - self.base_colbox[3] * .5, - self.base_colbox[4] * .5, - self.base_colbox[5] * .5, - self.base_colbox[6] * .5, - }, - }) - ent2.child = true - ent2.tamed = true - ent2.owner = self.owner - end) - - break - end - end - end -end - - --- find and replace what mob is looking for (grass, wheat etc.) -local function replace(self, pos) - if mob_is_dead(self) then - return - end - - if not self.replace_rate - or not self.replace_what - or self.child == true - or self.object:get_velocity().y ~= 0 - or random(1, self.replace_rate) > 1 then - return - end - - local what, with, y_offset - - if type(self.replace_what[1]) == "table" then - - local num = random(#self.replace_what) - - what = self.replace_what[num][1] or "" - with = self.replace_what[num][2] or "" - y_offset = self.replace_what[num][3] or 0 - else - what = self.replace_what - with = self.replace_with or "" - y_offset = self.replace_offset or 0 - end - - pos.y = pos.y + y_offset - - if #minetest.find_nodes_in_area(pos, pos, what) > 0 then - --- print ("replace node = ".. minetest.get_node(pos).name, pos.y) - - minetest.set_node(pos, {name = with}) - - -- when cow/sheep eats grass, replace wool and milk - if self.gotten == true then - self.gotten = false - self.object:set_properties(self) - end - end -end - - --- check if daytime and also if mob is docile during daylight hours -local function day_docile(self) - - if self.docile_by_day == false then - - return false - - elseif self.docile_by_day == true - and self.time_of_day > 0.2 - and self.time_of_day < 0.8 then - - return true - end -end - - --- path finding and smart mob routine by rnd -local function smart_mobs(self, s, p, dist, dtime) - if mob_is_dead(self) then - return - end - - local s1 = self.path.lastpos - - -- is it becoming stuck? - if abs(s1.x - s.x) + abs(s1.z - s.z) < 1.5 then - self.path.stuck_timer = self.path.stuck_timer + dtime - else - self.path.stuck_timer = 0 - end - - self.path.lastpos = {x = s.x, y = s.y, z = s.z} - - -- im stuck, search for path - if (self.path.stuck_timer > stuck_timeout and not self.path.following) - or (self.path.stuck_timer > stuck_path_timeout - and self.path.following) then - - self.path.stuck_timer = 0 - - -- lets try find a path, first take care of positions - -- since pathfinder is very sensitive - local sheight = self.collisionbox[5] - self.collisionbox[2] - - -- round position to center of node to avoid stuck in walls - -- also adjust height for player models! - s.x = floor(s.x + 0.5) - s.y = floor(s.y + 0.5) - sheight - s.z = floor(s.z + 0.5) - - local ssight, sground = minetest.line_of_sight(s, { - x = s.x, y = s.y - 4, z = s.z}, 1) - - -- determine node above ground - if not ssight then - s.y = sground.y + 1 - end - - local p1 = self.attack:get_pos() - - p1.x = floor(p1.x + 0.5) - p1.y = floor(p1.y + 0.5) - p1.z = floor(p1.z + 0.5) - - self.path.way = minetest.find_path(s, p1, 16, 2, 6, "Dijkstra") - - -- attempt to unstick mob that is "daydreaming" - self.object:set_pos({ - x = s.x + 0.1 * (random() * 2 - 1), - y = s.y + 1, - z = s.z + 0.1 * (random() * 2 - 1) - }) - - self.state = "" - do_attack(self, self.attack) - - -- no path found, try something else - if not self.path.way then - - self.path.following = false - - -- lets make way by digging/building if not accessible - if self.pathfinding == 2 then - - -- add block and remove one block above so - -- there is room to jump if needed - if s.y < p1.y then - - if not minetest.is_protected(s, "") then - minetest.set_node(s, {name = "default:dirt"}) - end - - local sheight = math.ceil(self.collisionbox[5]) + 1 - - -- assume mob is 2 blocks high so it digs above its head - s.y = s.y + sheight - - if not minetest.is_protected(s, "") then - - local node1 = minetest.get_node(s).name - - if node1 ~= "air" - and node1 ~= "ignore" then - minetest.set_node(s, {name = "air"}) - minetest.add_item(s, ItemStack(node1)) - end - end - - s.y = s.y - sheight - self.object:set_pos({x = s.x, y = s.y + 2, z = s.z}) - - else -- dig 2 blocks to make door toward player direction - - local yaw1 = self.object:get_yaw() + pi / 2 - local p1 = { - x = s.x + cos(yaw1), - y = s.y, - z = s.z + sin(yaw1) - } - - if not minetest.is_protected(p1, "") then - - local node1 = minetest.get_node(p1).name - - if node1 ~= "air" - and node1 ~= "ignore" then - minetest.add_item(p1, ItemStack(node1)) - minetest.set_node(p1, {name = "air"}) - end - - p1.y = p1.y + 1 - node1 = minetest.get_node(p1).name - - if node1 ~= "air" - and node1 ~= "ignore" then - minetest.add_item(p1, ItemStack(node1)) - minetest.set_node(p1, {name = "air"}) - end - - end - end - end - - -- will try again in 2 second - self.path.stuck_timer = stuck_timeout - 2 - - -- frustration! cant find the damn path :( - mob_sound(self, self.sounds.random) - else - -- yay i found path - mob_sound(self, self.sounds.attack) - - set_velocity(self, self.walk_velocity) - - -- follow path now that it has it - self.path.following = true - end - end -end - - --- specific attacks -local specific_attack = function(list, what) - - -- no specific attack - if list == nil then - return false - end - - -- is found entity on list to attack? - for no = 1, #list do - - if list[no] == what then - return true - end - end - - return false -end - -local is_target = function(self, name, type) - if specific_attack(self.specific_attack, name) then - return true - end - - if factions.get(self.type):has_hostile(type) then - return true - end - - return false -end - --- mob find someone to attack -local mob_attack = function(self) - if mob_is_dead(self) then - return - end - - if self.state == "attack" or day_docile(self) then - return - end - - local s = self.object:get_pos() - local p, sp, dist - local player, obj, min_player - local type, name = "", "" - local min_dist = self.view_range + 1 - local objs = minetest.get_objects_inside_radius(s, self.view_range) - - for n = 1, #objs do - - if objs[n]:is_player() then - player = objs[n] - local player_name = player:get_player_name() - if mobs.invis[ player_name ] then - type = "" - else - type = races.get_faction(player_name) - name = "player" - end - else - obj = objs[n]:get_luaentity() - - if obj then - player = obj.object - type = obj.type - name = obj.name or "" - end - end - - if is_target(self, name, type) then - s = self.object:get_pos() - p = player:get_pos() - sp = s - - -- aim higher to make looking up hills more realistic - p.y = p.y + 1 - sp.y = sp.y + 1 - - dist = get_distance(p, s) - - if dist < self.view_range then - -- field of view check goes here - - -- choose closest player to attack - if line_of_sight(self, sp, p) == true - and dist < min_dist then - min_dist = dist - min_player = player - end - end - end - end - - -- attack player - if min_player then - do_attack(self, min_player) - end -end - - --- follow player if owner or holding item, if fish outta water then flop -local follow_flop = function(self) - if mob_is_dead(self) then - return - end - - -- find player to follow - if (self.follow ~= "" - or self.order == "follow") - and not self.following - and self.state ~= "attack" - and self.state ~= "runaway" then - - local s = self.object:get_pos() - local players = minetest.get_connected_players() - - for n = 1, #players do - - if get_distance(players[n]:get_pos(), s) < self.view_range - and not mobs.invis[ players[n]:get_player_name() ] then - - self.following = players[n] - - break - end - end - end - - if self.type == "npc" - and self.order == "follow" - and self.state ~= "attack" - and self.owner ~= "" then - - -- npc stop following player if not owner - if self.following - and self.owner - and self.owner ~= self.following:get_player_name() then - self.following = nil - end - else - -- stop following player if not holding specific item - if self.following - and self.following:is_player() - and follow_holding(self, self.following) == false then - self.following = nil - end - - end - - -- follow that thing - if self.following then - - local s = self.object:get_pos() - local p - - if self.following:is_player() then - - p = self.following:get_pos() - - elseif self.following.object then - - p = self.following.object:get_pos() - end - - if p then - - local dist = get_distance(p, s) - - -- dont follow if out of range - if dist > self.view_range then - self.following = nil - else - local vec = { - x = p.x - s.x, - z = p.z - s.z - } - - local yaw = (atan(vec.z / vec.x) + pi / 2) - self.rotate - - if p.x > s.x then yaw = yaw + pi end - - self.object:set_yaw(yaw) - - -- anyone but standing npc's can move along - if dist > self.reach - and self.order ~= "stand" then - - set_velocity(self, self.walk_velocity) - - if self.walk_chance ~= 0 then - set_animation(self, "walk") - end - else - set_velocity(self, 0) - set_animation(self, "stand") - end - - return - end - end - end - - -- swimmers flop when out of their element, and swim again when back in - if self.fly then - local s = self.object:get_pos() - if not flight_check(self, s) then - - self.state = "flop" - self.object:set_velocity({x = 0, y = -5, z = 0}) - - set_animation(self, "stand") - - return - elseif self.state == "flop" then - self.state = "stand" - end - end -end - - --- dogshoot attack switch and counter function -local dogswitch = function(self, dtime) - - -- switch mode not activated - if not self.dogshoot_switch - or not dtime then - return 0 - end - - self.dogshoot_count = self.dogshoot_count + dtime - - if (self.dogshoot_switch == 1 - and self.dogshoot_count > self.dogshoot_count_max) - or (self.dogshoot_switch == 2 - and self.dogshoot_count > self.dogshoot_count2_max) then - - self.dogshoot_count = 0 - - if self.dogshoot_switch == 1 then - self.dogshoot_switch = 2 - else - self.dogshoot_switch = 1 - end - end - - return self.dogshoot_switch -end - - --- TODO: move this into `Projectile` class or some physics helper. -local math_min, math_max, math_sqrt, math_tan, math_atan, math_quadratic_equation_roots, v - = math.min, math.max, math.sqrt, math.tan, math.atan, math.quadratic_equation_roots, vector.new - ---- @param p1 vector shooting mob position ---- @param p2 vector position of the mob|player being attacked ---- @param v0 number initial velocity/speed of projectile -function calculate_shot_direction(p1, p2, v0) - local g = 9.8 -- TODO: get from mt-config (use GRAVITY in projectile mod) - - local delta = p2 - p1 - local d = math_sqrt(delta.x^2 + delta.z^2) -- Horizontal distance - local dh = delta.y -- Height difference - - -- Coefficients for the quadratic equation tan(theta) - local a = -g * d^2 / (2 * v0^2) - local b = d - local c = a - dh - - -- Find tan(theta) for the shooting angles - local tan_angle1, tan_angle2 = math_quadratic_equation_roots(a, b, c) - if not tan_angle1 then - minetest.log('warning', 'Impossible to shoot: no real roots of quadratic equation.') - return nil - end - -- We choose a "flatter" trajectory - local tan_angle = math_min(tan_angle1, tan_angle2) - - return v(delta.x / d, tan_angle, delta.z / d):normalize() -end - --- execute current state (stand, walk, run, attacks) -local do_states = function(self, dtime) - if mob_is_dead(self) then - return - end - - local yaw - - if self.state == "stand" then - - if random(1, 4) == 1 then - - local lp = nil - local s = self.object:get_pos() - local objs = minetest.get_objects_inside_radius(s, 3) - - for n = 1, #objs do - - if objs[n]:is_player() then - lp = objs[n]:get_pos() - break - end - end - - -- look at any players nearby, otherwise turn randomly - if lp then - - local vec = { - x = lp.x - s.x, - z = lp.z - s.z - } - - yaw = (atan(vec.z / vec.x) + pi / 2) - self.rotate - - if lp.x > s.x then yaw = yaw + pi end - else - yaw = (random(0, 360) - 180) / 180 * pi - end - - self.object:set_yaw(yaw) - end - - set_velocity(self, 0) - set_animation(self, "stand") - - -- npc's ordered to stand stay standing - if self.type ~= "npc" - or self.order ~= "stand" then - - if self.walk_chance ~= 0 - and random(1, 100) <= self.walk_chance - and is_at_cliff(self) == false then - - set_velocity(self, self.walk_velocity) - self.state = "walk" - set_animation(self, "walk") - - -- fly up/down randombly for flying mobs - if self.fly and random(1, 100) <= self.walk_chance then - - local v = self.object:get_velocity() - local ud = random(-1, 2) / 9 - - self.object:set_velocity({x = v.x, y = ud, z = v.z}) - end - end - end - - elseif self.state == "walk" then - - local s = self.object:get_pos() - local lp = nil - - -- is there something I need to avoid? - if self.water_damage > 0 - and self.lava_damage > 0 then - - lp = minetest.find_node_near(s, 1, {"group:water", "group:lava"}) - - elseif self.water_damage > 0 then - - lp = minetest.find_node_near(s, 1, {"group:water"}) - - elseif self.lava_damage > 0 then - - lp = minetest.find_node_near(s, 1, {"group:lava"}) - end - - if lp then - - -- if mob in water or lava then look for land - if (self.lava_damage - and minetest.registered_nodes[self.standing_in].groups.lava) - or (self.water_damage - and minetest.registered_nodes[self.standing_in].groups.water) then - - lp = minetest.find_node_near(s, 5, {"group:soil", "group:stone", - "group:sand", "default:ice", "default:snowblock"}) - - -- did we find land? - if lp then - - local vec = { - x = lp.x - s.x, - z = lp.z - s.z - } - - yaw = (atan(vec.z / vec.x) + pi / 2) - self.rotate - - if lp.x > s.x then yaw = yaw + pi end - - -- look towards land and jump/move in that direction - self.object:set_yaw(yaw) - do_jump(self) - set_velocity(self, self.walk_velocity) - else - yaw = (random(0, 360) - 180) / 180 * pi - end - - else - - local vec = { - x = lp.x - s.x, - z = lp.z - s.z - } - - yaw = (atan(vec.z / vec.x) + pi / 2) - self.rotate - - if lp.x > s.x then yaw = yaw + pi end - end - - self.object:set_yaw(yaw) - - -- otherwise randomly turn - elseif random(1, 100) <= 30 then - - yaw = random() * 2 * pi - - self.object:set_yaw(yaw) - end - - -- stand for great fall in front - local temp_is_cliff = is_at_cliff(self) - - if temp_is_cliff - or random(1, 100) <= 30 then - - set_velocity(self, 0) - self.state = "stand" - set_animation(self, "stand") - else - set_velocity(self, self.walk_velocity) - - if flight_check(self) - and self.animation - and self.animation.fly_start - and self.animation.fly_end then - set_animation(self, "fly") - else - set_animation(self, "walk") - end - end - - -- runaway when punched - elseif self.state == "runaway" then - - self.runaway_timer = self.runaway_timer + 1 - - -- stop after 5 seconds or when at cliff - if self.runaway_timer > 5 - or is_at_cliff(self) then - self.runaway_timer = 0 - set_velocity(self, 0) - self.state = "stand" - set_animation(self, "stand") - else - set_velocity(self, self.run_velocity) - set_animation(self, "walk") - end - - -- attack routines (explode, dogfight, shoot, dogshoot) - elseif self.state == "attack" then - - -- calculate distance from mob and enemy - local s = self.object:get_pos() - local p = self.attack and self.attack:get_pos() - local dist = get_distance(p, s) - - -- stop attacking if player or out of range - if dist > self.view_range - or not self.attack - or not self.attack:get_pos() - or self.attack:get_hp() <= 0 - or (self.attack:is_player() and mobs.invis[ self.attack:get_player_name() ]) then - - --print(" ** stop attacking **", dist, self.view_range) - self.state = "stand" - set_velocity(self, 0) - set_animation(self, "stand") - self.attack = nil - self.v_start = false - self.timer = 0 - self.blinktimer = 0 - - return - end - - if self.attack_type == "explode" then - - local vec = { - x = p.x - s.x, - z = p.z - s.z - } - - yaw = (atan(vec.z / vec.x) + pi / 2) - self.rotate - - if p.x > s.x then yaw = yaw + pi end - - self.object:set_yaw(yaw) - - if dist > self.reach then - - if not self.v_start then - - self.v_start = true - set_velocity(self, self.run_velocity) - self.timer = 0 - self.blinktimer = 0 - else - self.timer = 0 - self.blinktimer = 0 - - set_velocity(self, self.run_velocity) - end - - set_animation(self, "run") - else - set_velocity(self, 0) - set_animation(self, "punch") - - self.timer = self.timer + dtime - self.blinktimer = (self.blinktimer or 0) + dtime - - if self.blinktimer > 0.2 then - - self.blinktimer = 0 - - if self.blinkstatus then - self.object:settexturemod("") - else - self.object:settexturemod("^[brighten") - end - - self.blinkstatus = not self.blinkstatus - end - - if self.timer > 3 then - - local pos = self.object:get_pos() - local radius = self.explosion_radius or 1 - - -- dont damage anything if area protected or next to water - if minetest.find_node_near(pos, 1, {"group:water"}) - or minetest.is_protected(pos, "") then - - mob_sound(self, self.sounds.explode) - - self.object:remove() - - effect(pos, 15, "tnt_smoke.png") - - -- hurt player/mobs caught in blast area - entity_physics(pos, radius) - - return - end - - pos.y = pos.y - 1 - - mobs:explosion(pos, radius, 1, 1, self.sounds.explode) - - self.object:remove() - - entity_physics(pos, radius) - - return - end - end - - elseif self.attack_type == "dogfight" - or (self.attack_type == "dogshoot" and dogswitch(self, dtime) == 2) - or (self.attack_type == "dogshoot" and dist <= self.reach and dogswitch(self) == 0) then - - if self.fly - and dist > self.reach then - - local p1 = s - local me_y = floor(p1.y) - local p2 = p - local p_y = floor(p2.y + 1) - local v = self.object:get_velocity() - - if flight_check(self, s) then - - if me_y < p_y then - - self.object:set_velocity({ - x = v.x, - y = 1 * self.walk_velocity, - z = v.z - }) - - elseif me_y > p_y then - - self.object:set_velocity({ - x = v.x, - y = -1 * self.walk_velocity, - z = v.z - }) - end - else - if me_y < p_y then - - self.object:set_velocity({ - x = v.x, - y = 0.01, - z = v.z - }) - - elseif me_y > p_y then - - self.object:set_velocity({ - x = v.x, - y = -0.01, - z = v.z - }) - end - end - - end - - -- rnd: new movement direction - if self.path.following - and self.path.way - and self.attack_type ~= "dogshoot" then - - -- no paths longer than 50 - if #self.path.way > 50 - or dist < self.reach then - self.path.following = false - return - end - - local p1 = self.path.way[1] - - if not p1 then - self.path.following = false - return - end - - if abs(p1.x-s.x) + abs(p1.z - s.z) < 0.6 then - -- reached waypoint, remove it from queue - table.remove(self.path.way, 1) - end - - -- set new temporary target - p = {x = p1.x, y = p1.y, z = p1.z} - end - - local vec = { - x = p.x - s.x, - z = p.z - s.z - } - - yaw = (atan(vec.z / vec.x) + pi / 2) - self.rotate - - if p.x > s.x then yaw = yaw + pi end - - self.object:set_yaw(yaw) - - -- move towards enemy if beyond mob reach - if dist > self.reach then - - -- path finding by rnd - if self.pathfinding -- only if mob has pathfinding enabled - and enable_pathfinding then - - smart_mobs(self, s, p, dist, dtime) - end - - if is_at_cliff(self) then - - set_velocity(self, 0) - set_animation(self, "stand") - else - - if self.path.stuck then - set_velocity(self, self.walk_velocity) - else - set_velocity(self, self.run_velocity) - end - - set_animation(self, "run") - end - - else -- rnd: if inside reach range - - self.path.stuck = false - self.path.stuck_timer = 0 - self.path.following = false -- not stuck anymore - - set_velocity(self, 0) - - if not self.custom_attack then - - if self.timer > 1 then - - self.timer = 0 - - if self.double_melee_attack - and random(1, 2) == 1 then - set_animation(self, "punch2") - else - set_animation(self, "punch") - end - - local p2 = p - local s2 = s - - p2.y = p2.y + .5 - s2.y = s2.y + .5 - - if line_of_sight(self, p2, s2) == true then - - -- play attack sound - mob_sound(self, self.sounds.attack) - - -- punch player (or what player is attached to) - local attached = self.attack:get_attach() - if attached then - self.attack = attached - end - self.attack:punch(self.object, 1.0, { - full_punch_interval = 1.0, - damage_groups = {[self.damage_type] = self.damage} - }, nil) - end - end - else -- call custom attack every second - if self.custom_attack - and self.timer > 1 then - - self.timer = 0 - - self.custom_attack(self, p) - end - end - end - - elseif self.attack_type == "shoot" - or (self.attack_type == "dogshoot" and dogswitch(self, dtime) == 1) - or (self.attack_type == "dogshoot" and dist > self.reach and dogswitch(self) == 0) then - - p.y = p.y - .5 - s.y = s.y + .5 - - local vec = { - x = p.x - s.x, - y = p.y - s.y, - z = p.z - s.z - } - - yaw = (atan(vec.z / vec.x) + pi / 2) - self.rotate - - if p.x > s.x then yaw = yaw + pi end - - self.object:set_yaw(yaw) - - set_velocity(self, 0) - - if self.shoot_interval - and self.timer > self.shoot_interval - and random(1, 100) <= 60 then - - self.timer = 0 - set_animation(self, "shoot") - - -- play shoot attack sound - mob_sound(self, self.sounds.shoot_attack) - - s = v(self.object:get_pos()) - p = v(self.attack:get_pos()) - if self.attack:is_player() then - p = p + v(0, 1, 0) -- на данный момент игрок находится на блок ниже моба - end - - -- TODO: move direction calculation into `Projectile` class. - local projectile = projectiles.get_projectiles()[self.arrow] - local power = 0.6 + random(-.1, .1) - local velocity = projectile.entity_reg.max_speed * power - local shoot_dir = calculate_shot_direction(s, p, velocity) - - local arrow = ItemStack(self.arrow) - minetest.sound_play(arrow:get_definition()._sound_on_release, { object = self.object }) - archery.projectile_shoot(self.object, arrow, power, shoot_dir) - end - end - end -end - - --- falling and fall damage -local falling = function(self, pos) - if mob_is_dead(self) then - return - end - - if self.fly then - return - end - - -- floating in water (or falling) - local v = self.object:get_velocity() - - -- going up then apply gravity - if v.y > 0.1 then - - self.object:set_acceleration({ - x = 0, - y = self.fall_speed, - z = 0 - }) - end - - -- in water then float up - if minetest.registered_nodes[node_ok(pos).name].groups.liquid then - - if self.floats == 1 then - - self.object:set_acceleration({ - x = 0, - y = -self.fall_speed / (max(1, v.y) ^ 2), - z = 0 - }) - end - else - -- fall downwards - self.object:set_acceleration({ - x = 0, - y = self.fall_speed, - z = 0 - }) - - -- fall damage - if self.fall_damage == 1 - and self.object:get_velocity().y == 0 then - - local d = (self.old_y or 0) - self.object:get_pos().y - - if d > 5 then - - self.health = self.health - floor(d - 5) - - effect(pos, 5, "tnt_smoke.png", 1, 2, 2, nil) - - if check_for_death(self) then - return - end - end - - self.old_y = self.object:get_pos().y - end - end -end - - --- deal damage and effects when mob punched -function mobs.mob_punch(self, hitter, tflp, tool_capabilities, dir) - -- TEMPORARY FIX (remove when refactoring) - if not hitter then - return - end - - -- mob health check - if self.health <= 0 then - -- kill mob - mob_die(self) - return - end - - -- error checking when mod profiling is enabled - if not tool_capabilities then - print (S("[MOBS] mod profiling enabled, damage not enabled")) - return - end - - -- is mob protected? - if self.protected and hitter:is_player() - and minetest.is_protected(self.object:get_pos(), hitter:get_player_name()) then - minetest.chat_send_player(hitter:get_player_name(), "Mob has been protected!") - return - end - - -- weapon wear - local weapon = ItemStack("lord_archery:apple_wood_bow") - if hitter and hitter:is_player() then - weapon = hitter:get_wielded_item() - end - local punch_interval = 1.4 - - -- calculate mob damage - local damage = 0 - local armor = self.object:get_armor_groups() or {} - local tmp - - -- quick error check incase it ends up 0 (serialize.h check test) - if tflp == 0 then - tflp = 0.2 - end - - for group,_ in pairs( (tool_capabilities.damage_groups or {}) ) do - - tmp = tflp / (tool_capabilities.full_punch_interval or 1.4) - - if tmp < 0 then - tmp = 0.0 - elseif tmp > 1 then - tmp = 1.0 - end - - damage = damage + (tool_capabilities.damage_groups[group] or 0) - * tmp * ((armor[group] or 0) / 100.0) - end - - -- check for tool immunity or special damage - for n = 1, #self.immune_to do - - if self.immune_to[n][1] == weapon:get_name() then - - damage = self.immune_to[n][2] or 0 - break - end - end - - -- healing - if damage <= -1 then - self.health = self.health - floor(damage) - return - end - - -- print ("Mob Damage is", damage) - - -- add weapon wear - if tool_capabilities then - punch_interval = tool_capabilities.full_punch_interval or 1.4 - end - - if weapon:get_definition() - and weapon:get_definition().tool_capabilities - and hitter and hitter:is_player() then - weapon:add_wear(floor((punch_interval / 75) * 9000)) - hitter:set_wielded_item(weapon) - end - - -- only play hit sound and show blood effects if damage is 1 or over - if damage >= 1 then - - -- weapon sounds - if weapon:get_definition().sounds ~= nil then - - local s = random(0, #weapon:get_definition().sounds) - - minetest.sound_play(weapon:get_definition().sounds[s], { - object = hitter, - max_hear_distance = 8 - }) - else - minetest.sound_play("default_punch", { - object = hitter, - max_hear_distance = 5 - }) - end - - -- blood_particles - if self.blood_amount > 0 - and not disable_blood then - - local pos = self.object:get_pos() - - pos.y = pos.y + (-self.collisionbox[2] + self.collisionbox[5]) * .5 - - effect(pos, self.blood_amount, self.blood_texture, nil, nil, 1, nil) - end - - -- do damage - self.health = self.health - floor(damage) - - -- exit here if dead - if check_for_death(self) then - return - end - - --[[ add healthy afterglow when hit (can cause hit lag with larger textures) - core.after(0.1, function() - self.object:settexturemod("^[colorize:#c9900070") - - core.after(0.3, function() - self.object:settexturemod("") - end) - end) ]] - - -- knock back effect (only on full punch) - if self.knock_back > 0 - and tflp > punch_interval then - - local v = self.object:get_velocity() - local r = 1.4 - min(punch_interval, 1.4) - local kb = r * 5 - local up = 2 - - -- if already in air then dont go up anymore when hit - if v.y > 0 - or self.fly then - up = 0 - end - - -- direction error check - dir = dir or {x = 0, y = 0, z = 0} - - self.object:set_velocity({ - x = dir.x * kb, - y = up, - z = dir.z * kb - }) - - self.pause_timer = r - end - end -- END if damage - - -- if skittish then run away - if self.runaway == true then - - local lp = hitter:get_pos() - local s = self.object:get_pos() - - local vec = { - x = lp.x - s.x, - y = lp.y - s.y, - z = lp.z - s.z - } - - local yaw = atan(vec.z / vec.x) + 3 * pi / 2 - - if lp.x > s.x then - yaw = yaw + pi - end - - self.object:set_yaw(yaw) - self.state = "runaway" - self.runaway_timer = 0 - self.following = nil - end - - -- attack puncher and call other mobs for help - if self.passive == false - and self.state ~= "flop" - and self.child == false - and (hitter.is_player == nil or hitter:is_player() == false or (hitter:get_player_name() ~= self.owner - and not mobs.invis[ hitter:get_player_name() ])) then - - -- attack whoever punched mob / нападать на того, кто ударил моба - self.state = "" - do_attack(self, hitter) - - -- alert others to the attack / предупредить других в атаку - local objs = minetest.get_objects_inside_radius(hitter:get_pos(), self.view_range) - local obj - - for n = 1, #objs do - if not objs[n]:is_player() then - obj = objs[n]:get_luaentity() - if obj then - local type = obj.type - - local is_friend = factions.get(self.type):has_friend(type) - - if is_friend then - if obj.group_attack == true and obj.state ~= "attack" then - do_attack(obj, hitter) - end - end - end - end - - end - end -end - --- get entity staticdata -local mob_staticdata = function(self) - - -- remove mob when out of range unless tamed - if remove_far - and self.remove_ok - and not self.tamed - and self.lifetimer < 20000 then - - --print ("REMOVED " .. self.name) - - self.object:remove() - - return ""-- nil - end - - self.remove_ok = true - self.attack = nil - self.following = nil - self.state = "stand" - - -- used to rotate older mobs - if self.drawtype - and self.drawtype == "side" then - self.rotate = math.rad(90) - end - - local tmp = {} - - for _,stat in pairs(self) do - - local t = type(stat) - - if t ~= "function" - and t ~= "nil" - and t ~= "userdata" then - tmp[_] = self[_] - end - end - - if self.can_jump ~= nil then - tmp.can_jump = self.can_jump - else - tmp.can_jump = true -- default - end - - --print('===== '..self.name..'\n'.. dump(tmp)..'\n=====\n') - return minetest.serialize(tmp) -end - - --- activate mob and reload settings -local mob_activate = function(self, staticdata, def) - if mob_is_dead(self) then - return - end - - -- remove monsters in peaceful mode, or when no data - if (self.type == "monster" and peaceful_only) then - - self.object:remove() - - return - end - - -- load entity variables - local tmp = minetest.deserialize(staticdata) - - if tmp then - for _,stat in pairs(tmp) do - self[_] = stat - end - end - - -- select random texture, set model and size - if not self.base_texture then - - -- compatiblity with old simple mobs textures - if type(def.textures[1]) == "string" then - def.textures = {def.textures} - end - - self.base_texture = def.textures[random(1, #def.textures)] - self.base_mesh = def.mesh - self.base_size = self.visual_size - self.base_colbox = self.collisionbox - end - - -- set texture, model and size - local textures = self.base_texture - local mesh = self.base_mesh - local vis_size = self.base_size - local colbox = self.base_colbox - - -- specific texture if gotten - if self.gotten == true - and def.gotten_texture then - textures = def.gotten_texture - end - - -- specific mesh if gotten - if self.gotten == true - and def.gotten_mesh then - mesh = def.gotten_mesh - end - - -- set child objects to half size - if self.child == true then - - vis_size = { - x = self.base_size.x * .5, - y = self.base_size.y * .5, - } - - if def.child_texture then - textures = def.child_texture[1] - end - - colbox = { - self.base_colbox[1] * .5, - self.base_colbox[2] * .5, - self.base_colbox[3] * .5, - self.base_colbox[4] * .5, - self.base_colbox[5] * .5, - self.base_colbox[6] * .5 - } - end - - if self.health == 0 then - self.health = random (self.hp_min, self.hp_max) - self.health_orig = self.health - end - - -- rnd: pathfinding init - self.path = {} - self.path.way = {} -- path to follow, table of positions - self.path.lastpos = {x = 0, y = 0, z = 0} - self.path.stuck = false - self.path.following = false -- currently following path? - self.path.stuck_timer = 0 -- if stuck for too long search for path - - -- Armor groups (immortal = 1 for custom damage handling) - local armor - - if type(self.armor) == "table" then - armor = table_copy(self.armor) - else - armor = {fleshy = self.armor, immortal = 1} - end - - self.object:set_armor_groups(armor) - - -- mob defaults - self.old_y = self.object:get_pos().y - self.old_health = self.health - self.sounds.distance = self.sounds.distance or 10 - self.textures = textures - self.mesh = mesh - self.collisionbox = colbox - self.visual_size = vis_size - self.standing_in = "" - - -- Инициализация can_jump для старых мобов - self.can_jump = self.can_jump or true - - -- set anything changed above - self.object:set_properties(self) - self.object:set_yaw((random(0, 360) - 180) / 180 * pi) - update_tag(self) -end - - --- main mob function -local mob_step = function(self, dtime) - if mob_is_dead(self) then - return - end - - local pos = self.object:get_pos() - - -- when lifetimer expires remove mob (except npc and tamed) - if self.type ~= "npc" - and not self.tamed - and self.state ~= "attack" - and remove_far ~= true - and self.lifetimer < 20000 then - - self.lifetimer = self.lifetimer - dtime - - if self.lifetimer <= 0 then - - -- only despawn away from player - local objs = minetest.get_objects_inside_radius(pos, 15) - - for n = 1, #objs do - - if objs[n]:is_player() then - - self.lifetimer = 20 - - return - end - end - --- minetest.log("action", --- S("lifetimer expired, removed @1", self.name)) - - effect(pos, 15, "tnt_smoke.png", 2, 4, 2, 0) - - self.object:remove() - - return - end - end - - falling(self, pos) - - -- knockback timer - if self.pause_timer > 0 then - - self.pause_timer = self.pause_timer - dtime - - if self.pause_timer < 1 then - self.pause_timer = 0 - end - - return - end - - -- run custom function (defined in mob lua file) - if self.do_custom then - - -- when false skip going any further - if self.do_custom(self, dtime) == false then - return - end - end - - -- attack timer - self.timer = self.timer + dtime - - if self.state ~= "attack" then - - if self.timer < 1 then - return - end - - self.timer = 0 - end - - -- never go over 100 - if self.timer > 100 then - self.timer = 1 - end - - -- node replace check (cow eats grass etc.) - replace(self, pos) - - -- mob plays random sound at times - if random(1, 100) == 1 then - mob_sound(self, self.sounds.random) - end - - -- environmental damage timer (every 1 second) - self.env_damage_timer = self.env_damage_timer + dtime - - if (self.state == "attack" and self.env_damage_timer > 1) - or self.state ~= "attack" then - - self.env_damage_timer = 0 - - do_env_damage(self) - end - - mob_attack(self) - - breed(self) - - follow_flop(self) - - do_states(self, dtime) - - do_jump(self) - -end - - --- default function when mobs are blown up with TNT -local do_tnt = function(obj, damage) - - obj.object:punch(obj.object, 1.0, { - full_punch_interval = 1.0, - damage_groups = {fleshy = damage}, - }, nil) - - return false, true, {} -end - - -mobs.spawning_mobs = {} - -local function punch(self, hitter, tflp, tool_capabilities, dir) - mobs.mob_punch(self, hitter, tflp, tool_capabilities, dir) -end - --- register mob entity -function mobs:register_mob(name, def) - - mobs.spawning_mobs[name:replace('^:', '')] = true - -minetest.register_entity(name, { - - stepheight = def.stepheight or 1.1, - name = name, - type = def.type, - attack_type = def.attack_type, - fly = def.fly, - fly_in = def.fly_in or "air", - owner = def.owner or "", - order = def.order or "", - on_die = def.on_die, - do_custom = def.do_custom, - jump_height = def.jump_height or 4, - drawtype = def.drawtype, -- DEPRECATED, use rotate instead - rotate = math.rad(def.rotate or 0), -- 0=front, 90=side, 180=back, 270=side2 - lifetimer = def.lifetimer or 180, -- 3 minutes - hp_min = max(1, (def.hp_min or 5) * difficulty), - hp_max = max(1, (def.hp_max or 10) * difficulty), - physical = true, - collisionbox = def.collisionbox, - visual = def.visual, - visual_size = def.visual_size or {x = 1, y = 1}, - mesh = def.mesh, - makes_footstep_sound = def.makes_footstep_sound or false, - view_range = def.view_range or 5, - walk_velocity = def.walk_velocity or 1, - run_velocity = def.run_velocity or 2, - damage = max(1, (def.damage or 0) * difficulty), - damage_type = def.damage_type or 'fleshy', - light_damage = def.light_damage or 0, - water_damage = def.water_damage or 0, - lava_damage = def.lava_damage or 0, - fall_damage = def.fall_damage or 1, - fall_speed = def.fall_speed or -10, -- must be lower than -2 (default: -10) - drops = def.drops or {}, - armor = def.armor or 100, - on_rightclick = def.on_rightclick, - arrow = def.arrow, - shoot_interval = def.shoot_interval, - sounds = def.sounds or {}, - animation = def.animation, - follow = def.follow, - jump = def.jump ~= false, - walk_chance = def.walk_chance or 50, - attacks_monsters = def.attacks_monsters or false, - group_attack = def.group_attack or false, - passive = def.passive or false, - recovery_time = def.recovery_time or 0.5, - knock_back = def.knock_back or 3, - blood_amount = def.blood_amount or 5, - blood_texture = def.blood_texture or "mobs_blood.png", - shoot_offset = def.shoot_offset or 0, - floats = def.floats or 1, -- floats in water by default - replace_rate = def.replace_rate, - replace_what = def.replace_what, - replace_with = def.replace_with, - replace_offset = def.replace_offset or 0, - timer = 0, - env_damage_timer = 0, -- only used when state = "attack" - tamed = false, - pause_timer = 0, - horny = false, - hornytimer = 0, - child = false, - gotten = false, - health = 0, - reach = def.reach or 3, - htimer = 0, --- id = (math.random(1, 1000) * math.random(1, 10000)) .. name .. (math.random(1, 1000) ^ 2), --- id = name .. os.time() .. math.random(10^6), - id = 0, - game_name = "mob", - texture_list = def.textures, - use_texture_alpha = def.use_texture_alpha or false, - child_texture = def.child_texture, - docile_by_day = def.docile_by_day or false, - time_of_day = 0.5, - fear_height = def.fear_height or 3, - runaway = def.runaway, - runaway_timer = 0, - pathfinding = def.pathfinding, - immune_to = def.immune_to or {}, - explosion_radius = def.explosion_radius, - custom_attack = def.custom_attack, - double_melee_attack = def.double_melee_attack, - dogshoot_switch = def.dogshoot_switch, - dogshoot_count = 0, - dogshoot_count_max = def.dogshoot_count_max or 5, - dogshoot_count2_max = def.dogshoot_count2_max or (def.dogshoot_count_max or 5), - attack_animals = def.attack_animals or false, - specific_attack = def.specific_attack, - - on_blast = def.on_blast or do_tnt, - - on_step = mob_step, - - on_punch = def.on_punch or punch, - - on_activate = function(self, staticdata) - return mob_activate(self, staticdata, def) - end, - - get_staticdata = function(self) - return mob_staticdata(self) - end, - -}) - -end -- END mobs:register_mob function - - --- count how many mobs of one type are inside an area -local count_mobs = function(pos, type) - - local num_type = 0 - local num_total = 0 - local objs = minetest.get_objects_inside_radius(pos, aoc_range) - - for n = 1, #objs do - - if not objs[n]:is_player() then - - local obj = objs[n]:get_luaentity() - - -- count mob type and add to total also - if obj and obj.name and obj.name == type then - - num_type = num_type + 1 - num_total = num_total + 1 - - -- add to total mobs - elseif obj and obj.name and obj.health ~= nil then - - num_total = num_total + 1 - end - end - end - - return num_type, num_total -end - - --- global functions - -function mobs:spawn_specific(name, nodes, neighbors, min_light, max_light, - interval, chance, aoc, min_height, max_height, day_toggle, on_spawn) - - -- chance/spawn number override in minetest.conf for registered mob - local numbers = minetest.settings:get(name) - - if numbers then - numbers = numbers:split(",") - chance = tonumber(numbers[1]) or chance - aoc = tonumber(numbers[2]) or aoc - - if chance == 0 then - print(S("[Mobs Redo] @1 has spawning disabled", name)) - return - end - - print (S("[Mobs Redo] Chance setting for @1 changed to @2", name, chance) - .. " (total: " .. aoc .. ")") - - end - - minetest.register_abm({ - - label = name .. " spawning", - nodenames = nodes, - neighbors = neighbors, - interval = interval, - chance = chance, - catch_up = false, - - action = function(pos, node, active_object_count, active_object_count_wider) - - -- is mob actually registered? - if not mobs.spawning_mobs[name] then ---print ("--- mob doesn't exist", name) - return - end - - -- do not spawn if too many of same mob in area - if active_object_count_wider >= max_per_block - or count_mobs(pos, name) >= aoc then ---print ("--- too many entities", name, aoc, active_object_count_wider) - return - end - - -- if toggle set to nil then ignore day/night check - if day_toggle ~= nil then - - local tod = (minetest.get_timeofday() or 0) * 24000 - - if tod > 4500 and tod < 19500 then - -- daylight, but mob wants night - if day_toggle == false then ---print ("--- mob needs night", name) - return - end - else - -- night time but mob wants day - if day_toggle == true then ---print ("--- mob needs day", name) - return - end - end - end - - -- spawn above node - pos.y = pos.y + 1 - - -- only spawn away from player - local objs = minetest.get_objects_inside_radius(pos, 10) - - for n = 1, #objs do - - if objs[n]:is_player() then ---print ("--- player too close", name) - return - end - end - - -- mobs cannot spawn in protected areas when enabled - if spawn_protected == 1 - and minetest.is_protected(pos, "") then ---print ("--- inside protected area", name) - return - end - - -- are we spawning within height limits? - if pos.y > max_height - or pos.y < min_height then ---print ("--- height limits not met", name, pos.y) - return - end - - -- are light levels ok? - local light = minetest.get_node_light(pos) - if not light - or light > max_light - or light < min_light then ---print ("--- light limits not met", name, light) - return - end - - -- are we spawning inside solid nodes? - if minetest.registered_nodes[node_ok(pos).name].walkable == true then ---print ("--- feet in block", name, node_ok(pos).name) - return - end - - pos.y = pos.y + 1 - - if minetest.registered_nodes[node_ok(pos).name].walkable == true then ---print ("--- head in block", name, node_ok(pos).name) - return - end - - -- spawn mob half block higher than ground - pos.y = pos.y - 0.5 - - local mob = minetest.add_entity(pos, name) - - if mob and mob:get_luaentity() then --- print ("[mobs] Spawned " .. name .. " at " --- .. minetest.pos_to_string(pos) .. " on " --- .. node.name .. " near " .. neighbors[1]) - if on_spawn and not on_spawn(mob, pos) then - return - end - else - print (S("[mobs] @1 failed to spawn at @2", - name, minetest.pos_to_string(pos))) - end - - end - }) -end - - --- compatibility with older mob registration -function mobs:register_spawn(name, nodes, max_light, min_light, chance, active_object_count, max_height, day_toggle) - - mobs:spawn_specific(name, nodes, {"air"}, min_light, max_light, 30, - chance, active_object_count, -31000, max_height, day_toggle) -end - - --- MarkBu's spawn function -function mobs:spawn(def) - - local name = def.name - local nodes = def.nodes or {"group:soil", "group:stone"} - local neighbors = def.neighbors or {"air"} - local min_light = def.min_light or 0 - local max_light = def.max_light or 15 - local interval = def.interval or 30 - local chance = def.chance or 5000 - local active_object_count = def.active_object_count or 1 - local min_height = def.min_height or -31000 - local max_height = def.max_height or 31000 - local day_toggle = def.day_toggle - local on_spawn = def.on_spawn - - mobs:spawn_specific(name, nodes, neighbors, min_light, max_light, interval, - chance, active_object_count, min_height, max_height, day_toggle, on_spawn) -end - - --- set content id's -local c_air = minetest.get_content_id("air") -local c_ignore = minetest.get_content_id("ignore") -local c_obsidian = minetest.get_content_id("default:obsidian") -local c_chest = minetest.get_content_id("default:chest_locked") - --- explosion (cannot break protected or unbreakable nodes) -function mobs:explosion(pos, radius, fire, smoke, sound) - - radius = radius or 0 - fire = fire or 0 - smoke = smoke or 0 - - -- if area protected or near map limits then no blast damage - if minetest.is_protected(pos, "") - or not within_limits(pos, radius) then - return - end - - -- explosion sound - if sound - and sound ~= "" then - - minetest.sound_play(sound, { - pos = pos, - gain = 1.0, - max_hear_distance = 16 - }) - end - - pos = vector.round(pos) -- voxelmanip doesn't work properly unless pos is rounded ?!?! - - local vm = VoxelManip() - local minp, maxp = vm:read_from_map(vector.subtract(pos, radius), vector.add(pos, radius)) - local a = VoxelArea:new({MinEdge = minp, MaxEdge = maxp}) - local data = vm:get_data() - local p = {} - local pr = PseudoRandom(os.time()) - - for z = -radius, radius do - for y = -radius, radius do - local vi = a:index(pos.x + (-radius), pos.y + y, pos.z + z) - for x = -radius, radius do - - p.x = pos.x + x - p.y = pos.y + y - p.z = pos.z + z - - if (x * x) + (y * y) + (z * z) <= (radius * radius) + pr:next(-radius, radius) - and data[vi] ~= c_air - and data[vi] ~= c_ignore - and data[vi] ~= c_obsidian - and data[vi] ~= c_chest then - - local n = node_ok(p).name - local on_blast = minetest.registered_nodes[n].on_blast - - if on_blast then - - return on_blast(p) - - else - - -- after effects - if fire > 0 - and (minetest.registered_nodes[n].groups.flammable - or random(1, 100) <= 30) then - - minetest.set_node(p, {name = "fire:basic_flame"}) - else - minetest.set_node(p, {name = "air"}) - - if smoke > 0 then - effect(p, 2, "tnt_smoke.png") - end - end - end - end - - vi = vi + 1 - - end - end - end -end - - - - --- register spawn eggs -function mobs:register_egg(mob, desc, background, addegg, no_creative) - - local grp = {} - - -- do NOT add this egg to creative inventory (e.g. dungeon master) - if minetest.is_creative_enabled() and no_creative == true then - grp = {not_in_creative_inventory = 1} - end - - local invimg = background - - if addegg == 1 then - invimg = "mobs_chicken_egg.png^(" .. invimg .. - "^[mask:mobs_chicken_egg_overlay.png)" - end - - -- register new spawn egg containing mob information - minetest.register_craftitem(mob .. "_set", { - - description = desc .. " (Tamed)", - inventory_image = invimg, - groups = {not_in_creative_inventory = 1}, - stack_max = 1, - - on_place = function(itemstack, placer, pointed_thing) - - local pos = pointed_thing.above - - -- am I clicking on something with existing on_rightclick function? - local under = minetest.get_node(pointed_thing.under) - local def = minetest.registered_nodes[under.name] - if def and def.on_rightclick then - return def.on_rightclick(pointed_thing.under, under, placer, itemstack) - end - - if pos and within_limits(pos, 0) then - - pos.y = pos.y + 1 - - local data = itemstack:get_metadata() - local entity = minetest.add_entity(pos, mob, data) - local lua_entity = entity:get_luaentity() - - if not lua_entity then - entity:remove() - return - end - - if lua_entity.type ~= "monster" then - -- set owner and tame if not monster - lua_entity.owner = placer:get_player_name() - lua_entity.tamed = true - end - - -- since mob is unique we remove egg once spawned - itemstack:take_item() - end - - return itemstack - end, - }) - - - -- register old stackable mob egg - minetest.register_craftitem(mob, { - - description = desc, - inventory_image = invimg, - groups = grp, - - on_place = function(itemstack, placer, pointed_thing) - - local pos = pointed_thing.above - - -- am I clicking on something with existing on_rightclick function? - local under = minetest.get_node(pointed_thing.under) - local def = minetest.registered_nodes[under.name] - if def and def.on_rightclick then - return def.on_rightclick(pointed_thing.under, under, placer, itemstack) - end - - if pos - and within_limits(pos, 0) - and not minetest.is_protected(pos, placer:get_player_name()) then - - pos.y = pos.y + 1 - - local entity = minetest.add_entity(pos, mob) - local lua_entity = entity:get_luaentity() - - if not lua_entity then - entity:remove() - return - end - - if lua_entity.type ~= "monster" then - -- set owner and tame if not monster - lua_entity.owner = placer:get_player_name() - lua_entity.tamed = true - end - - -- if not in creative then take item - if not minetest.is_creative_enabled(placer) then - itemstack:take_item() - end - end - - return itemstack - end, - }) - -end - - --- capture critter (thanks to blert2112 for idea) -function mobs:capture_mob(self, clicker, chance_hand, chance_net, chance_lasso, force_take, replacewith) - - if self.child - or not clicker:is_player() - or not clicker:get_inventory() then - return false - end - - -- get name of clicked mob - local mobname = self.name - - -- if not nil change what will be added to inventory - if replacewith then - mobname = replacewith - end - - local name = clicker:get_player_name() - - -- is mob tamed? - if self.tamed == false - and force_take == false then - return false - end - - -- cannot pick up if not owner - if self.owner ~= name - and force_take == false then - return false - end - - if clicker:get_inventory():room_for_item("main", mobname) then - - -- was mob clicked with hand, net, or lasso? - local tool = clicker:get_wielded_item() - local chance = 0 - - if tool:is_empty() then - chance = chance_hand - - elseif tool:get_name() == "mobs:net" then - - chance = chance_net - - tool:add_wear(4000) -- 17 uses - - clicker:set_wielded_item(tool) - - elseif tool:get_name() == "mobs:magic_lasso" then - - chance = chance_lasso - - tool:add_wear(650) -- 100 uses - - clicker:set_wielded_item(tool) - end - - -- calculate chance.. add to inventory if successful? - if chance > 0 and random(1, 100) <= chance then - - -- default mob egg - local new_stack = ItemStack(mobname) - - -- add special mob egg with all mob information - -- unless 'replacewith' contains new item to use - if not replacewith then - - new_stack = ItemStack(mobname .. "_set") - - local tmp = {} - - for _,stat in pairs(self) do - local t = type(stat) - if t ~= "function" - and t ~= "nil" - and t ~= "userdata" then - tmp[_] = self[_] - end - end - - local data_str = minetest.serialize(tmp) - - new_stack:set_metadata(data_str) - end - - local inv = clicker:get_inventory() - - if inv:room_for_item("main", new_stack) then - inv:add_item("main", new_stack) - else - minetest.add_item(clicker:get_pos(), new_stack) - end - - self.object:remove() - - return true - else - minetest.chat_send_player(name, S("Missed!")) - end - end - - return false -end - - --- protect tamed mob with rune item -function mobs:protect(self, clicker) - - local name = clicker:get_player_name() - - if self.tamed == false then - minetest.chat_send_player(name, S("Not tamed!")) - return false - end - - if self.protected == true then - minetest.chat_send_player(name, S("Already protected!")) - return false - end - - local tool = clicker:get_wielded_item() - - if tool:get_name() == "mobs:protector" then - - tool:take_item() -- take 1 protection rune - clicker:set_wielded_item(tool) - - self.protected = true - minetest.chat_send_player(name, S("Protected!")) - - return true - end - - return false -end - - -local mob_obj = {} -local mob_sta = {} - --- feeding, taming and breeding (thanks blert2112) -function mobs:feed_tame(self, clicker, feed_count, breed, tame) - - local beast_ring = "lottother:beast_ring" - local item = clicker:get_wielded_item() - local itemname = item:get_name() or "" - local ring_used = itemname == beast_ring - - if not self.follow and not ring_used then - return false - end - - -- can eat/tame with item in hand - if follow_holding(self, clicker) then - -- if not in creative then take item - if not minetest.is_creative_enabled(clicker) and not ring_used then - - item:take_item() - - clicker:set_wielded_item(item) - end - - -- increase health - if not ring_used then - self.health = self.health + 4 - end - - if self.health >= self.hp_max then - - self.health = self.hp_max - - if self.htimer < 1 then - - self.htimer = 5 - end - end - - self.object:set_hp(self.health) - - update_tag(self) - - -- make children grow quicker - if self.child == true then - - self.hornytimer = self.hornytimer + 20 - - return true - end - - -- feed and tame - self.food = (self.food or 0) + 1 - if self.food >= feed_count or ring_used then - - self.food = 0 - - if breed and self.hornytimer == 0 and not ring_used then - self.horny = true - end - - self.gotten = false - - if tame then - - self.tamed = true - - if not self.owner or self.owner == "" then - self.owner = clicker:get_player_name() - end - end - - -- make sound when fed so many times - mob_sound(self, self.sounds.random) - end - - return true - end - - -- if mob has been tamed you can name it with a nametag - if item:get_name() == "mobs:nametag" - and clicker:get_player_name() == self.owner then - - local name = clicker:get_player_name() - - -- store mob and nametag stack in external variables - mob_obj[name] = self - mob_sta[name] = item - - local tag = self.nametag or "" - - minetest.show_formspec(name, "mobs_nametag", "size[8,4]" - .. "field[0.5,1;7.5,0;name;" .. S("Enter name:") .. ";" .. tag .. "]" - .. "button_exit[2.5,3.5;3,1;mob_rename;" .. S("Rename") .. "]") - - end - - return false - -end - - --- inspired by blockmen's nametag mod -minetest.register_on_player_receive_fields(function(player, formname, fields) - - -- right-clicked with nametag and name entered? - if formname == "mobs_nametag" - and fields.name - and fields.name ~= "" then - - local name = player:get_player_name() - - if not mob_obj[name] - or not mob_obj[name].object then - return - end - - -- limit name entered to 64 characters long - if string.len(fields.name) > 64 then - fields.name = string.sub(fields.name, 1, 64) - end - - -- update nametag - mob_obj[name].nametag = fields.name - - update_tag(mob_obj[name]) - - -- if not in creative then take item - if not minetest.is_creative_enabled(name) then - - mob_sta[name]:take_item() - - player:set_wielded_item(mob_sta[name]) - end - - -- reset external variables - mob_obj[name] = nil - mob_sta[name] = nil - - end -end) - - --- compatibility function for old entities to new modpack entities -function mobs:alias_mob(old_name, new_name) - - -- spawn egg - minetest.register_alias(old_name, new_name) - - -- entity - minetest.register_entity(":" .. old_name, { - - physical = false, - - on_step = function(self) - - local pos = self.object:get_pos() - - minetest.add_entity(pos, new_name) - - self.object:remove() - end - }) -end diff --git a/mods/_various/mobs/models/kraken.x b/mods/_various/mobs/models/kraken.x deleted file mode 100644 index c488516b6..000000000 --- a/mods/_various/mobs/models/kraken.x +++ /dev/null @@ -1,35203 +0,0 @@ -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 { - -0.999977, 0.006758, 0.000000, 0.000000, - -0.006758,-0.999977, 0.000000, 0.000000, - 0.000000, 0.000000, 1.000000, 0.000000, - 0.802051, 0.072915, 0.612726, 1.000000;; - } - Frame Armature_Bone { - FrameTransformMatrix { - 0.060446, 0.000333,-0.998172, 0.000000, - 0.998165, 0.003678, 0.060446, 0.000000, - 0.003691,-0.999993,-0.000110, 0.000000, - -0.089351,-0.042254,-0.369701, 1.000000;; - } - } // End of Armature_Bone - Frame Armature_Bone_001 { - FrameTransformMatrix { - 0.000000, 1.000000, 0.000000, 0.000000, - -1.000000, 0.000000, 0.000000, 0.000000, - 0.000000, 0.000000, 1.000000, 0.000000, - -0.089351,-0.042254,-0.369701, 1.000000;; - } - Frame Armature_Bone_002 { - FrameTransformMatrix { - -0.237653,-0.971350, 0.000000, 0.000000, - 0.971350,-0.237653, 0.000000, 0.000000, - 0.000000, 0.000000, 1.000000, 0.000000, - 0.000000, 0.705560, 0.000000, 1.000000;; - } - Frame Armature_Bone_022 { - FrameTransformMatrix { - 0.971350, 0.237653, 0.000000, 0.000000, - -0.237653, 0.971350, 0.000000, 0.000000, - 0.000000, 0.000000, 1.000000, 0.000000, - 0.000000, 0.951083, 0.000000, 1.000000;; - } - Frame Armature_Bone_024 { - FrameTransformMatrix { - 1.000000,-0.000000,-0.000000, 0.000000, - -0.000000, 0.999556,-0.029781, 0.000000, - 0.000000, 0.029781, 0.999556, 0.000000, - 0.000000, 2.410316, 0.000000, 1.000000;; - } - Frame Armature_Bone_026 { - FrameTransformMatrix { - 1.000000, 0.000000, 0.000000, 0.000000, - -0.000000, 0.998974, 0.045292, 0.000000, - -0.000000,-0.045292, 0.998974, 0.000000, - 0.000000, 2.365125, 0.000000, 1.000000;; - } - } // End of Armature_Bone_026 - } // End of Armature_Bone_024 - } // End of Armature_Bone_022 - } // End of Armature_Bone_002 - Frame Armature_Bone_003 { - FrameTransformMatrix { - 0.346339,-0.938109, 0.000000, 0.000000, - 0.938109, 0.346339, 0.000000, 0.000000, - 0.000000, 0.000000, 1.000000, 0.000000, - 0.000000, 0.705560, 0.000000, 1.000000;; - } - Frame Armature_Bone_023 { - FrameTransformMatrix { - 0.938109,-0.346339, 0.000000, 0.000000, - 0.346339, 0.938109, 0.000000, 0.000000, - 0.000000, 0.000000, 1.000000, 0.000000, - -0.000000, 0.974908, 0.000000, 1.000000;; - } - Frame Armature_Bone_025 { - FrameTransformMatrix { - 1.000000,-0.000000,-0.000000, 0.000000, - 0.000000, 0.999556,-0.029781, 0.000000, - 0.000000, 0.029781, 0.999556, 0.000000, - -0.000000, 2.410316, 0.000000, 1.000000;; - } - Frame Armature_Bone_027 { - FrameTransformMatrix { - 1.000000, 0.000000, 0.000000, 0.000000, - -0.000000, 0.998974, 0.045292, 0.000000, - -0.000000,-0.045292, 0.998974, 0.000000, - -0.000000, 2.365126,-0.000000, 1.000000;; - } - } // End of Armature_Bone_027 - } // End of Armature_Bone_025 - } // End of Armature_Bone_023 - } // End of Armature_Bone_003 - Frame Armature_Bone_004 { - FrameTransformMatrix { - 0.592700,-0.805423, 0.000000, 0.000000, - 0.805423, 0.592700, 0.000000, 0.000000, - 0.000000, 0.000000, 1.000000, 0.000000, - 0.000000, 0.705560, 0.000000, 1.000000;; - } - Frame Armature_Bone_028 { - FrameTransformMatrix { - 0.592700, 0.805424, 0.000000, 0.000000, - -0.805269, 0.592586,-0.019565, 0.000000, - -0.015758, 0.011596, 0.999809, 0.000000, - 0.000000, 0.939853, 0.000000, 1.000000;; - } - Frame Armature_Bone_032 { - FrameTransformMatrix { - 1.000000,-0.000000,-0.000000, 0.000000, - 0.000000, 0.999809, 0.019565, 0.000000, - 0.000000,-0.019565, 0.999809, 0.000000, - 0.000000, 2.406491, 0.000000, 1.000000;; - } - Frame Armature_Bone_036 { - 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, 2.366877,-0.000000, 1.000000;; - } - } // End of Armature_Bone_036 - } // End of Armature_Bone_032 - } // End of Armature_Bone_028 - } // End of Armature_Bone_004 - Frame Armature_Bone_005 { - FrameTransformMatrix { - -0.212350, 0.977194, 0.000000, 0.000000, - -0.977194,-0.212350, 0.000000, 0.000000, - 0.000000, 0.000000, 1.000000, 0.000000, - 0.000000, 0.705560, 0.000000, 1.000000;; - } - Frame Armature_Bone_016 { - FrameTransformMatrix { - 0.977194,-0.212350, 0.000000, 0.000000, - 0.212350, 0.977194, 0.000000, 0.000000, - 0.000000, 0.000000, 1.000000, 0.000000, - 0.000000, 1.078077, 0.000000, 1.000000;; - } - Frame Armature_Bone_018 { - FrameTransformMatrix { - -1.000000,-0.000000,-0.000003, 0.000000, - 0.000000, 0.999763,-0.021773, 0.000000, - 0.000003,-0.021773,-0.999763, 0.000000, - -0.000000, 2.352446, 0.000000, 1.000000;; - } - Frame Armature_Bone_020 { - FrameTransformMatrix { - -1.000000,-0.000000, 0.000003, 0.000000, - -0.000000, 0.999763,-0.021770, 0.000000, - -0.000003,-0.021770,-0.999763, 0.000000, - 0.000000, 2.377758,-0.000000, 1.000000;; - } - } // End of Armature_Bone_020 - } // End of Armature_Bone_018 - } // End of Armature_Bone_016 - } // End of Armature_Bone_005 - Frame Armature_Bone_006 { - FrameTransformMatrix { - 0.359843, 0.933013, 0.000000, 0.000000, - -0.933013, 0.359843, 0.000000, 0.000000, - 0.000000, 0.000000, 1.000000, 0.000000, - 0.000000, 0.705560, 0.000000, 1.000000;; - } - Frame Armature_Bone_017 { - FrameTransformMatrix { - 0.933013, 0.359842, 0.000000, 0.000000, - -0.359842, 0.933013, 0.000000, 0.000000, - 0.000000, 0.000000, 1.000000, 0.000000, - 0.000000, 1.094029,-0.000000, 1.000000;; - } - Frame Armature_Bone_019 { - FrameTransformMatrix { - -1.000000,-0.000000,-0.000003, 0.000000, - 0.000000, 0.999763,-0.021773, 0.000000, - 0.000003,-0.021773,-0.999763, 0.000000, - -0.000000, 2.352446, 0.000000, 1.000000;; - } - Frame Armature_Bone_021 { - FrameTransformMatrix { - -1.000000,-0.000000, 0.000003, 0.000000, - -0.000000, 0.999763,-0.021770, 0.000000, - -0.000003,-0.021770,-0.999763, 0.000000, - -0.000000, 2.377757, 0.000000, 1.000000;; - } - } // End of Armature_Bone_021 - } // End of Armature_Bone_019 - } // End of Armature_Bone_017 - } // End of Armature_Bone_006 - Frame Armature_Bone_007 { - FrameTransformMatrix { - 0.534838, 0.844955, 0.000000, 0.000000, - -0.844955, 0.534838, 0.000000, 0.000000, - 0.000000, 0.000000, 1.000000, 0.000000, - 0.000000, 0.705560, 0.000000, 1.000000;; - } - Frame Armature_Bone_029 { - FrameTransformMatrix { - 0.534838,-0.844955, 0.000000, 0.000000, - 0.844793, 0.534736,-0.019565, 0.000000, - 0.016532, 0.010464, 0.999809, 0.000000, - -0.000000, 1.026680, 0.000000, 1.000000;; - } - Frame Armature_Bone_033 { - FrameTransformMatrix { - 1.000000, 0.000000,-0.000000, 0.000000, - 0.000000, 0.999809, 0.019565, 0.000000, - 0.000000,-0.019565, 0.999808, 0.000000, - -0.000000, 2.406489,-0.000000, 1.000000;; - } - Frame Armature_Bone_037 { - 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, 2.366877,-0.000000, 1.000000;; - } - } // End of Armature_Bone_037 - } // End of Armature_Bone_033 - } // End of Armature_Bone_029 - } // End of Armature_Bone_007 - Frame Armature_Bone_008 { - FrameTransformMatrix { - 0.955762,-0.294142, 0.000000, 0.000000, - 0.294142, 0.955762, 0.000000, 0.000000, - 0.000000, 0.000000, 1.000000, 0.000000, - 0.000000, 0.705560, 0.000000, 1.000000;; - } - Frame Armature_Bone_030 { - FrameTransformMatrix { - 0.955762, 0.294142, 0.000000, 0.000000, - -0.294086, 0.955579,-0.019565, 0.000000, - -0.005755, 0.018700, 0.999809, 0.000000, - 0.000000, 0.605340, 0.000000, 1.000000;; - } - Frame Armature_Bone_034 { - FrameTransformMatrix { - 1.000000, 0.000000,-0.000000, 0.000000, - 0.000000, 0.999809, 0.019565, 0.000000, - 0.000000,-0.019565, 0.999809, 0.000000, - -0.000000, 2.406491, 0.000000, 1.000000;; - } - Frame Armature_Bone_038 { - 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, 2.366877,-0.000000, 1.000000;; - } - } // End of Armature_Bone_038 - } // End of Armature_Bone_034 - } // End of Armature_Bone_030 - } // End of Armature_Bone_008 - Frame Armature_Bone_009 { - FrameTransformMatrix { - 0.864508, 0.502619, 0.000000, 0.000000, - -0.502619, 0.864508, 0.000000, 0.000000, - 0.000000, 0.000000, 1.000000, 0.000000, - 0.000000, 0.705560, 0.000000, 1.000000;; - } - Frame Armature_Bone_031 { - FrameTransformMatrix { - 0.864508,-0.502619, 0.000000, 0.000000, - 0.502522, 0.864343,-0.019565, 0.000000, - 0.009834, 0.016915, 0.999809, 0.000000, - 0.000000, 0.657669, 0.000000, 1.000000;; - } - Frame Armature_Bone_035 { - FrameTransformMatrix { - 1.000000, 0.000000,-0.000000, 0.000000, - 0.000000, 0.999809, 0.019565, 0.000000, - 0.000000,-0.019565, 0.999809, 0.000000, - 0.000000, 2.406491, 0.000000, 1.000000;; - } - Frame Armature_Bone_039 { - 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, 2.366877,-0.000000, 1.000000;; - } - } // End of Armature_Bone_039 - } // End of Armature_Bone_035 - } // End of Armature_Bone_031 - } // End of Armature_Bone_009 - Frame Armature_Bone_010 { - FrameTransformMatrix { - 0.000000,-0.979454,-0.201670, 0.000000, - 0.000000, 0.201670,-0.979454, 0.000000, - 1.000000, 0.000000,-0.000000, 0.000000, - 0.000000, 0.705560, 0.000000, 1.000000;; - } - } // End of Armature_Bone_010 - Frame Armature_Bone_011 { - FrameTransformMatrix { - -0.000550,-0.979743, 0.200259, 0.000000, - -0.009142,-0.200246,-0.979703, 0.000000, - 0.999958,-0.002370,-0.008847, 0.000000, - 0.000000, 0.705560, 0.000000, 1.000000;; - } - } // End of Armature_Bone_011 - Frame Armature_Bone_012 { - FrameTransformMatrix { - -0.005381,-0.963301,-0.268370, 0.000000, - -0.513396,-0.227643, 0.827407, 0.000000, - -0.858135, 0.142232,-0.493330, 0.000000, - 0.000000, 0.705560, 0.000000, 1.000000;; - } - } // End of Armature_Bone_012 - Frame Armature_Bone_013 { - FrameTransformMatrix { - -0.123592,-0.965161,-0.230626, 0.000000, - 0.436888,-0.261595, 0.860637, 0.000000, - -0.890985, 0.005611, 0.453999, 0.000000, - 0.000000, 0.705560, 0.000000, 1.000000;; - } - } // End of Armature_Bone_013 - } // End of Armature_Bone_001 - Frame Cube { - FrameTransformMatrix { - 0.594084,-0.000000, 0.000000, 0.000000, - 0.000000, 1.000000, 0.000000, 0.000000, - 0.000000, 0.000000, 0.474968, 0.000000, - -0.790636,-0.072915,-0.120927, 1.000000;; - } - Mesh { // Cube mesh - 720; - -0.294973; 1.012501;-0.929354;, - -0.872514; 1.012501;-0.929354;, - -0.872514; 3.392842;-0.929354;, - -0.294973; 3.392841;-0.929354;, - -0.294973; 1.012501;-0.307697;, - -0.294973; 3.392841;-0.307697;, - -0.872513; 3.392842;-0.307697;, - -0.872514; 1.012502;-0.307697;, - -0.294973; 1.012501;-0.929354;, - -0.294973; 1.012501;-0.307697;, - -0.872514; 1.012502;-0.307697;, - -0.872514; 1.012501;-0.929354;, - -0.872514; 1.012501;-0.929354;, - -0.872514; 1.012502;-0.307697;, - -0.872513; 3.392842;-0.307697;, - -0.872514; 3.392842;-0.929354;, - -0.872514; 3.392842;-0.929354;, - -0.872513; 3.392842;-0.307697;, - -0.294973; 3.392841;-0.307697;, - -0.294973; 3.392841;-0.929354;, - -0.294973; 1.012501;-0.307697;, - -0.294973; 1.012501;-0.929354;, - -0.294973; 3.392841;-0.929354;, - -0.294973; 3.392841;-0.307697;, - -0.379065; 3.413567;-0.839338;, - -0.788422; 3.413567;-0.839338;, - -0.788422; 5.793907;-0.839338;, - -0.379065; 5.793907;-0.839338;, - -0.379065; 3.413566;-0.397712;, - -0.379065; 5.793907;-0.397712;, - -0.788422; 5.793907;-0.397712;, - -0.788422; 3.413567;-0.397712;, - -0.379065; 3.413567;-0.839338;, - -0.379065; 3.413566;-0.397712;, - -0.788422; 3.413567;-0.397712;, - -0.788422; 3.413567;-0.839338;, - -0.788422; 3.413567;-0.839338;, - -0.788422; 3.413567;-0.397712;, - -0.788422; 5.793907;-0.397712;, - -0.788422; 5.793907;-0.839338;, - -0.788422; 5.793907;-0.839338;, - -0.788422; 5.793907;-0.397712;, - -0.379065; 5.793907;-0.397712;, - -0.379065; 5.793907;-0.839338;, - -0.379065; 3.413566;-0.397712;, - -0.379065; 3.413567;-0.839338;, - -0.379065; 5.793907;-0.839338;, - -0.379065; 5.793907;-0.397712;, - -0.430627; 5.805873;-0.804031;, - -0.736860; 5.805873;-0.804031;, - -0.736860; 9.036607;-0.804031;, - -0.430627; 9.036607;-0.804031;, - -0.430627; 5.805872;-0.433018;, - -0.430627; 9.036607;-0.433018;, - -0.736860; 9.036608;-0.433018;, - -0.736860; 5.805873;-0.433018;, - -0.430627; 5.805873;-0.804031;, - -0.430627; 5.805872;-0.433018;, - -0.736860; 5.805873;-0.433018;, - -0.736860; 5.805873;-0.804031;, - -0.736860; 5.805873;-0.804031;, - -0.736860; 5.805873;-0.433018;, - -0.736860; 9.036608;-0.433018;, - -0.736860; 9.036607;-0.804031;, - -0.736860; 9.036607;-0.804031;, - -0.736860; 9.036608;-0.433018;, - -0.430627; 9.036607;-0.433018;, - -0.430627; 9.036607;-0.804031;, - -0.430627; 5.805872;-0.433018;, - -0.430627; 5.805873;-0.804031;, - -0.430627; 9.036607;-0.804031;, - -0.430627; 9.036607;-0.433018;, - 0.663480; 1.012503;-0.929353;, - 0.085940; 1.012503;-0.929353;, - 0.085940; 3.392843;-0.929353;, - 0.663480; 3.392842;-0.929353;, - 0.663480; 1.012502;-0.307696;, - 0.663480; 3.392842;-0.307696;, - 0.085940; 3.392843;-0.307696;, - 0.085940; 1.012503;-0.307696;, - 0.663480; 1.012503;-0.929353;, - 0.663480; 1.012502;-0.307696;, - 0.085940; 1.012503;-0.307696;, - 0.085940; 1.012503;-0.929353;, - 0.085940; 1.012503;-0.929353;, - 0.085940; 1.012503;-0.307696;, - 0.085940; 3.392843;-0.307696;, - 0.085940; 3.392843;-0.929353;, - 0.085940; 3.392843;-0.929353;, - 0.085940; 3.392843;-0.307696;, - 0.663480; 3.392842;-0.307696;, - 0.663480; 3.392842;-0.929353;, - 0.663480; 1.012502;-0.307696;, - 0.663480; 1.012503;-0.929353;, - 0.663480; 3.392842;-0.929353;, - 0.663480; 3.392842;-0.307696;, - 0.579388; 3.413568;-0.839338;, - 0.170032; 3.413568;-0.839338;, - 0.170032; 5.793908;-0.839338;, - 0.579388; 5.793907;-0.839338;, - 0.579388; 3.413567;-0.397711;, - 0.579388; 5.793908;-0.397711;, - 0.170032; 5.793908;-0.397711;, - 0.170032; 3.413568;-0.397711;, - 0.579388; 3.413568;-0.839338;, - 0.579388; 3.413567;-0.397711;, - 0.170032; 3.413568;-0.397711;, - 0.170032; 3.413568;-0.839338;, - 0.170032; 3.413568;-0.839338;, - 0.170032; 3.413568;-0.397711;, - 0.170032; 5.793908;-0.397711;, - 0.170032; 5.793908;-0.839338;, - 0.170032; 5.793908;-0.839338;, - 0.170032; 5.793908;-0.397711;, - 0.579388; 5.793908;-0.397711;, - 0.579388; 5.793907;-0.839338;, - 0.579388; 3.413567;-0.397711;, - 0.579388; 3.413568;-0.839338;, - 0.579388; 5.793907;-0.839338;, - 0.579388; 5.793908;-0.397711;, - 0.527826; 5.805873;-0.804031;, - 0.221593; 5.805873;-0.804031;, - 0.221593; 9.036608;-0.804031;, - 0.527826; 9.036608;-0.804031;, - 0.527826; 5.805873;-0.433017;, - 0.527826; 9.036608;-0.433017;, - 0.221593; 9.036608;-0.433017;, - 0.221593; 5.805874;-0.433017;, - 0.527826; 5.805873;-0.804031;, - 0.527826; 5.805873;-0.433017;, - 0.221593; 5.805874;-0.433017;, - 0.221593; 5.805873;-0.804031;, - 0.221593; 5.805873;-0.804031;, - 0.221593; 5.805874;-0.433017;, - 0.221593; 9.036608;-0.433017;, - 0.221593; 9.036608;-0.804031;, - 0.221593; 9.036608;-0.804031;, - 0.221593; 9.036608;-0.433017;, - 0.527826; 9.036608;-0.433017;, - 0.527826; 9.036608;-0.804031;, - 0.527826; 5.805873;-0.433017;, - 0.527826; 5.805873;-0.804031;, - 0.527826; 9.036608;-0.804031;, - 0.527826; 9.036608;-0.433017;, - 0.085939;-1.013609;-0.929353;, - 0.663479;-1.013609;-0.929353;, - 0.663480;-3.393950;-0.929353;, - 0.085939;-3.393949;-0.929353;, - 0.085939;-1.013609;-0.307696;, - 0.085939;-3.393950;-0.307696;, - 0.663480;-3.393950;-0.307696;, - 0.663480;-1.013610;-0.307696;, - 0.085939;-1.013609;-0.929353;, - 0.085939;-1.013609;-0.307696;, - 0.663480;-1.013610;-0.307696;, - 0.663479;-1.013609;-0.929353;, - 0.663479;-1.013609;-0.929353;, - 0.663480;-1.013610;-0.307696;, - 0.663480;-3.393950;-0.307696;, - 0.663480;-3.393950;-0.929353;, - 0.663480;-3.393950;-0.929353;, - 0.663480;-3.393950;-0.307696;, - 0.085939;-3.393950;-0.307696;, - 0.085939;-3.393949;-0.929353;, - 0.085939;-1.013609;-0.307696;, - 0.085939;-1.013609;-0.929353;, - 0.085939;-3.393949;-0.929353;, - 0.085939;-3.393950;-0.307696;, - 0.170031;-3.414675;-0.839338;, - 0.579388;-3.414675;-0.839338;, - 0.579388;-5.795015;-0.839338;, - 0.170031;-5.795014;-0.839338;, - 0.170031;-3.414675;-0.397711;, - 0.170031;-5.795015;-0.397711;, - 0.579388;-5.795015;-0.397711;, - 0.579388;-3.414676;-0.397711;, - 0.170031;-3.414675;-0.839338;, - 0.170031;-3.414675;-0.397711;, - 0.579388;-3.414676;-0.397711;, - 0.579388;-3.414675;-0.839338;, - 0.579388;-3.414675;-0.839338;, - 0.579388;-3.414676;-0.397711;, - 0.579388;-5.795015;-0.397711;, - 0.579388;-5.795015;-0.839338;, - 0.579388;-5.795015;-0.839338;, - 0.579388;-5.795015;-0.397711;, - 0.170031;-5.795015;-0.397711;, - 0.170031;-5.795014;-0.839338;, - 0.170031;-3.414675;-0.397711;, - 0.170031;-3.414675;-0.839338;, - 0.170031;-5.795014;-0.839338;, - 0.170031;-5.795015;-0.397711;, - 0.221593;-5.806980;-0.804031;, - 0.527826;-5.806980;-0.804031;, - 0.527826;-8.856149;-0.804031;, - 0.221593;-8.856149;-0.804031;, - 0.221593;-5.806980;-0.433017;, - 0.221593;-8.856149;-0.433017;, - 0.527826;-8.856149;-0.433017;, - 0.527826;-5.806980;-0.433017;, - 0.221593;-5.806980;-0.804031;, - 0.221593;-5.806980;-0.433017;, - 0.527826;-5.806980;-0.433017;, - 0.527826;-5.806980;-0.804031;, - 0.527826;-5.806980;-0.804031;, - 0.527826;-5.806980;-0.433017;, - 0.527826;-8.856149;-0.433017;, - 0.527826;-8.856149;-0.804031;, - 0.527826;-8.856149;-0.804031;, - 0.527826;-8.856149;-0.433017;, - 0.221593;-8.856149;-0.433017;, - 0.221593;-8.856149;-0.804031;, - 0.221593;-5.806980;-0.433017;, - 0.221593;-5.806980;-0.804031;, - 0.221593;-8.856149;-0.804031;, - 0.221593;-8.856149;-0.433017;, - -0.909680;-1.013609;-0.929353;, - -0.332140;-1.013609;-0.929353;, - -0.332140;-3.393950;-0.929353;, - -0.909680;-3.393949;-0.929353;, - -0.909680;-1.013609;-0.307696;, - -0.909680;-3.393950;-0.307696;, - -0.332140;-3.393950;-0.307696;, - -0.332139;-1.013610;-0.307696;, - -0.909680;-1.013609;-0.929353;, - -0.909680;-1.013609;-0.307696;, - -0.332139;-1.013610;-0.307696;, - -0.332140;-1.013609;-0.929353;, - -0.332140;-1.013609;-0.929353;, - -0.332139;-1.013610;-0.307696;, - -0.332140;-3.393950;-0.307696;, - -0.332140;-3.393950;-0.929353;, - -0.332140;-3.393950;-0.929353;, - -0.332140;-3.393950;-0.307696;, - -0.909680;-3.393950;-0.307696;, - -0.909680;-3.393949;-0.929353;, - -0.909680;-1.013609;-0.307696;, - -0.909680;-1.013609;-0.929353;, - -0.909680;-3.393949;-0.929353;, - -0.909680;-3.393950;-0.307696;, - -0.825588;-3.414675;-0.839338;, - -0.416231;-3.414675;-0.839338;, - -0.416231;-5.795015;-0.839338;, - -0.825588;-5.795014;-0.839338;, - -0.825588;-3.414675;-0.397711;, - -0.825588;-5.795015;-0.397711;, - -0.416231;-5.795015;-0.397711;, - -0.416231;-3.414676;-0.397711;, - -0.825588;-3.414675;-0.839338;, - -0.825588;-3.414675;-0.397711;, - -0.416231;-3.414676;-0.397711;, - -0.416231;-3.414675;-0.839338;, - -0.416231;-3.414675;-0.839338;, - -0.416231;-3.414676;-0.397711;, - -0.416231;-5.795015;-0.397711;, - -0.416231;-5.795015;-0.839338;, - -0.416231;-5.795015;-0.839338;, - -0.416231;-5.795015;-0.397711;, - -0.825588;-5.795015;-0.397711;, - -0.825588;-5.795014;-0.839338;, - -0.825588;-3.414675;-0.397711;, - -0.825588;-3.414675;-0.839338;, - -0.825588;-5.795014;-0.839338;, - -0.825588;-5.795015;-0.397711;, - -0.774026;-5.806980;-0.804031;, - -0.467793;-5.806980;-0.804031;, - -0.467793;-8.856149;-0.804031;, - -0.774026;-8.856149;-0.804031;, - -0.774026;-5.806980;-0.433017;, - -0.774026;-8.856149;-0.433017;, - -0.467793;-8.856149;-0.433017;, - -0.467793;-5.806980;-0.433017;, - -0.774026;-5.806980;-0.804031;, - -0.774026;-5.806980;-0.433017;, - -0.467793;-5.806980;-0.433017;, - -0.467793;-5.806980;-0.804031;, - -0.467793;-5.806980;-0.804031;, - -0.467793;-5.806980;-0.433017;, - -0.467793;-8.856149;-0.433017;, - -0.467793;-8.856149;-0.804031;, - -0.467793;-8.856149;-0.804031;, - -0.467793;-8.856149;-0.433017;, - -0.774026;-8.856149;-0.433017;, - -0.774026;-8.856149;-0.804031;, - -0.774026;-5.806980;-0.433017;, - -0.774026;-5.806980;-0.804031;, - -0.774026;-8.856149;-0.804031;, - -0.774026;-8.856149;-0.433017;, - -1.023242;-0.135273;-0.929352;, - -1.023242;-0.478382;-0.929352;, - -5.029981;-0.478382;-0.929352;, - -5.029979;-0.135273;-0.929352;, - -1.023241;-0.135274;-0.307695;, - -5.029980;-0.135273;-0.307695;, - -5.029981;-0.478381;-0.307695;, - -1.023244;-0.478382;-0.307695;, - -1.023242;-0.135273;-0.929352;, - -1.023241;-0.135274;-0.307695;, - -1.023244;-0.478382;-0.307695;, - -1.023242;-0.478382;-0.929352;, - -1.023242;-0.478382;-0.929352;, - -1.023244;-0.478382;-0.307695;, - -5.029981;-0.478381;-0.307695;, - -5.029981;-0.478382;-0.929352;, - -5.029981;-0.478382;-0.929352;, - -5.029981;-0.478381;-0.307695;, - -5.029980;-0.135273;-0.307695;, - -5.029979;-0.135273;-0.929352;, - -1.023241;-0.135274;-0.307695;, - -1.023242;-0.135273;-0.929352;, - -5.029979;-0.135273;-0.929352;, - -5.029980;-0.135273;-0.307695;, - -5.064866;-0.185232;-0.839337;, - -5.064866;-0.428423;-0.839337;, - -9.071604;-0.428423;-0.839337;, - -9.071603;-0.185232;-0.839337;, - -5.064864;-0.185232;-0.397711;, - -9.071604;-0.185232;-0.397711;, - -9.071605;-0.428423;-0.397711;, - -5.064867;-0.428423;-0.397711;, - -5.064866;-0.185232;-0.839337;, - -5.064864;-0.185232;-0.397711;, - -5.064867;-0.428423;-0.397711;, - -5.064866;-0.428423;-0.839337;, - -5.064866;-0.428423;-0.839337;, - -5.064867;-0.428423;-0.397711;, - -9.071605;-0.428423;-0.397711;, - -9.071604;-0.428423;-0.839337;, - -9.071604;-0.428423;-0.839337;, - -9.071605;-0.428423;-0.397711;, - -9.071604;-0.185232;-0.397711;, - -9.071603;-0.185232;-0.839337;, - -5.064864;-0.185232;-0.397711;, - -5.064866;-0.185232;-0.839337;, - -9.071603;-0.185232;-0.839337;, - -9.071604;-0.185232;-0.397711;, - -9.091745;-0.215864;-0.804031;, - -9.091745;-0.397791;-0.804031;, - -13.984310;-0.397791;-0.804031;, - -13.984309;-0.215864;-0.804031;, - -9.091744;-0.215864;-0.433017;, - -13.984309;-0.215864;-0.433017;, - -13.984310;-0.397791;-0.433017;, - -9.091745;-0.397791;-0.433017;, - -9.091745;-0.215864;-0.804031;, - -9.091744;-0.215864;-0.433017;, - -9.091745;-0.397791;-0.433017;, - -9.091745;-0.397791;-0.804031;, - -9.091745;-0.397791;-0.804031;, - -9.091745;-0.397791;-0.433017;, - -13.984310;-0.397791;-0.433017;, - -13.984310;-0.397791;-0.804031;, - -13.984310;-0.397791;-0.804031;, - -13.984310;-0.397791;-0.433017;, - -13.984309;-0.215864;-0.433017;, - -13.984309;-0.215864;-0.804031;, - -9.091744;-0.215864;-0.433017;, - -9.091745;-0.215864;-0.804031;, - -13.984309;-0.215864;-0.804031;, - -13.984309;-0.215864;-0.433017;, - -9.091745; 0.346586;-0.804031;, - -9.091745; 0.164658;-0.804031;, - -13.984310; 0.164658;-0.804031;, - -13.984309; 0.346586;-0.804031;, - -9.091744; 0.346586;-0.433017;, - -13.984309; 0.346586;-0.433017;, - -13.984310; 0.164658;-0.433017;, - -9.091745; 0.164658;-0.433017;, - -9.091745; 0.346586;-0.804031;, - -9.091744; 0.346586;-0.433017;, - -9.091745; 0.164658;-0.433017;, - -9.091745; 0.164658;-0.804031;, - -9.091745; 0.164658;-0.804031;, - -9.091745; 0.164658;-0.433017;, - -13.984310; 0.164658;-0.433017;, - -13.984310; 0.164658;-0.804031;, - -13.984310; 0.164658;-0.804031;, - -13.984310; 0.164658;-0.433017;, - -13.984309; 0.346586;-0.433017;, - -13.984309; 0.346586;-0.804031;, - -9.091744; 0.346586;-0.433017;, - -9.091745; 0.346586;-0.804031;, - -13.984309; 0.346586;-0.804031;, - -13.984309; 0.346586;-0.433017;, - -5.064866; 0.377218;-0.839337;, - -5.064866; 0.134026;-0.839337;, - -9.071604; 0.134026;-0.839337;, - -9.071603; 0.377218;-0.839337;, - -5.064864; 0.377218;-0.397711;, - -9.071604; 0.377218;-0.397711;, - -9.071605; 0.134026;-0.397711;, - -5.064867; 0.134026;-0.397711;, - -5.064866; 0.377218;-0.839337;, - -5.064864; 0.377218;-0.397711;, - -5.064867; 0.134026;-0.397711;, - -5.064866; 0.134026;-0.839337;, - -5.064866; 0.134026;-0.839337;, - -5.064867; 0.134026;-0.397711;, - -9.071605; 0.134026;-0.397711;, - -9.071604; 0.134026;-0.839337;, - -9.071604; 0.134026;-0.839337;, - -9.071605; 0.134026;-0.397711;, - -9.071604; 0.377218;-0.397711;, - -9.071603; 0.377218;-0.839337;, - -5.064864; 0.377218;-0.397711;, - -5.064866; 0.377218;-0.839337;, - -9.071603; 0.377218;-0.839337;, - -9.071604; 0.377218;-0.397711;, - -1.023242; 0.427175;-0.929352;, - -1.023242; 0.084068;-0.929352;, - -5.029981; 0.084068;-0.929352;, - -5.029979; 0.427176;-0.929352;, - -1.023241; 0.427175;-0.307695;, - -5.029980; 0.427176;-0.307695;, - -5.029981; 0.084068;-0.307695;, - -1.023244; 0.084068;-0.307695;, - -1.023242; 0.427175;-0.929352;, - -1.023241; 0.427175;-0.307695;, - -1.023244; 0.084068;-0.307695;, - -1.023242; 0.084068;-0.929352;, - -1.023242; 0.084068;-0.929352;, - -1.023244; 0.084068;-0.307695;, - -5.029981; 0.084068;-0.307695;, - -5.029981; 0.084068;-0.929352;, - -5.029981; 0.084068;-0.929352;, - -5.029981; 0.084068;-0.307695;, - -5.029980; 0.427176;-0.307695;, - -5.029979; 0.427176;-0.929352;, - -1.023241; 0.427175;-0.307695;, - -1.023242; 0.427175;-0.929352;, - -5.029979; 0.427176;-0.929352;, - -5.029980; 0.427176;-0.307695;, - -1.023241;-0.608884;-0.929353;, - -1.023241;-0.951993;-0.929353;, - -5.029979;-0.951993;-0.929353;, - -5.029978;-0.608884;-0.929353;, - -1.023240;-0.608884;-0.307696;, - -5.029979;-0.608884;-0.307696;, - -5.029979;-0.951992;-0.307696;, - -1.023242;-0.951993;-0.307696;, - -1.023241;-0.608884;-0.929353;, - -1.023240;-0.608884;-0.307696;, - -1.023242;-0.951993;-0.307696;, - -1.023241;-0.951993;-0.929353;, - -1.023241;-0.951993;-0.929353;, - -1.023242;-0.951993;-0.307696;, - -5.029979;-0.951992;-0.307696;, - -5.029979;-0.951993;-0.929353;, - -5.029979;-0.951993;-0.929353;, - -5.029979;-0.951992;-0.307696;, - -5.029979;-0.608884;-0.307696;, - -5.029978;-0.608884;-0.929353;, - -1.023240;-0.608884;-0.307696;, - -1.023241;-0.608884;-0.929353;, - -5.029978;-0.608884;-0.929353;, - -5.029979;-0.608884;-0.307696;, - -5.064866;-0.658843;-0.839338;, - -5.064866;-0.902035;-0.839338;, - -9.071604;-0.902035;-0.839338;, - -9.071603;-0.658843;-0.839338;, - -5.064864;-0.658843;-0.397711;, - -9.071603;-0.658843;-0.397711;, - -9.071605;-0.902035;-0.397711;, - -5.064867;-0.902035;-0.397711;, - -5.064866;-0.658843;-0.839338;, - -5.064864;-0.658843;-0.397711;, - -5.064867;-0.902035;-0.397711;, - -5.064866;-0.902035;-0.839338;, - -5.064866;-0.902035;-0.839338;, - -5.064867;-0.902035;-0.397711;, - -9.071605;-0.902035;-0.397711;, - -9.071604;-0.902035;-0.839338;, - -9.071604;-0.902035;-0.839338;, - -9.071605;-0.902035;-0.397711;, - -9.071603;-0.658843;-0.397711;, - -9.071603;-0.658843;-0.839338;, - -5.064864;-0.658843;-0.397711;, - -5.064866;-0.658843;-0.839338;, - -9.071603;-0.658843;-0.839338;, - -9.071603;-0.658843;-0.397711;, - -9.091745;-0.689475;-0.804031;, - -9.091745;-0.871403;-0.804031;, - -13.984310;-0.871403;-0.804031;, - -13.984309;-0.689475;-0.804031;, - -9.091744;-0.689475;-0.433017;, - -13.984309;-0.689475;-0.433017;, - -13.984310;-0.871403;-0.433017;, - -9.091745;-0.871403;-0.433017;, - -9.091745;-0.689475;-0.804031;, - -9.091744;-0.689475;-0.433017;, - -9.091745;-0.871403;-0.433017;, - -9.091745;-0.871403;-0.804031;, - -9.091745;-0.871403;-0.804031;, - -9.091745;-0.871403;-0.433017;, - -13.984310;-0.871403;-0.433017;, - -13.984310;-0.871403;-0.804031;, - -13.984310;-0.871403;-0.804031;, - -13.984310;-0.871403;-0.433017;, - -13.984309;-0.689475;-0.433017;, - -13.984309;-0.689475;-0.804031;, - -9.091744;-0.689475;-0.433017;, - -9.091745;-0.689475;-0.804031;, - -13.984309;-0.689475;-0.804031;, - -13.984309;-0.689475;-0.433017;, - -9.091745; 0.876890;-0.804031;, - -9.091745; 0.694963;-0.804031;, - -13.984310; 0.694963;-0.804031;, - -13.984309; 0.876890;-0.804031;, - -9.091744; 0.876890;-0.433017;, - -13.984309; 0.876890;-0.433017;, - -13.984310; 0.694963;-0.433017;, - -9.091745; 0.694963;-0.433017;, - -9.091745; 0.876890;-0.804031;, - -9.091744; 0.876890;-0.433017;, - -9.091745; 0.694963;-0.433017;, - -9.091745; 0.694963;-0.804031;, - -9.091745; 0.694963;-0.804031;, - -9.091745; 0.694963;-0.433017;, - -13.984310; 0.694963;-0.433017;, - -13.984310; 0.694963;-0.804031;, - -13.984310; 0.694963;-0.804031;, - -13.984310; 0.694963;-0.433017;, - -13.984309; 0.876890;-0.433017;, - -13.984309; 0.876890;-0.804031;, - -9.091744; 0.876890;-0.433017;, - -9.091745; 0.876890;-0.804031;, - -13.984309; 0.876890;-0.804031;, - -13.984309; 0.876890;-0.433017;, - -5.064866; 0.907522;-0.839337;, - -5.064866; 0.664330;-0.839337;, - -9.071604; 0.664330;-0.839337;, - -9.071603; 0.907522;-0.839337;, - -5.064864; 0.907522;-0.397711;, - -9.071604; 0.907522;-0.397711;, - -9.071605; 0.664330;-0.397711;, - -5.064867; 0.664330;-0.397711;, - -5.064866; 0.907522;-0.839337;, - -5.064864; 0.907522;-0.397711;, - -5.064867; 0.664330;-0.397711;, - -5.064866; 0.664330;-0.839337;, - -5.064866; 0.664330;-0.839337;, - -5.064867; 0.664330;-0.397711;, - -9.071605; 0.664330;-0.397711;, - -9.071604; 0.664330;-0.839337;, - -9.071604; 0.664330;-0.839337;, - -9.071605; 0.664330;-0.397711;, - -9.071604; 0.907522;-0.397711;, - -9.071603; 0.907522;-0.839337;, - -5.064864; 0.907522;-0.397711;, - -5.064866; 0.907522;-0.839337;, - -9.071603; 0.907522;-0.839337;, - -9.071604; 0.907522;-0.397711;, - -1.023242; 0.957479;-0.929352;, - -1.023242; 0.614372;-0.929352;, - -5.029981; 0.614372;-0.929352;, - -5.029979; 0.957480;-0.929352;, - -1.023241; 0.957479;-0.307695;, - -5.029980; 0.957480;-0.307695;, - -5.029981; 0.614373;-0.307695;, - -1.023244; 0.614372;-0.307695;, - -1.023242; 0.957479;-0.929352;, - -1.023241; 0.957479;-0.307695;, - -1.023244; 0.614372;-0.307695;, - -1.023242; 0.614372;-0.929352;, - -1.023242; 0.614372;-0.929352;, - -1.023244; 0.614372;-0.307695;, - -5.029981; 0.614373;-0.307695;, - -5.029981; 0.614372;-0.929352;, - -5.029981; 0.614372;-0.929352;, - -5.029981; 0.614373;-0.307695;, - -5.029980; 0.957480;-0.307695;, - -5.029979; 0.957480;-0.929352;, - -1.023241; 0.957479;-0.307695;, - -1.023242; 0.957479;-0.929352;, - -5.029979; 0.957480;-0.929352;, - -5.029980; 0.957480;-0.307695;, - 0.202079; 0.109746;-1.456488;, - 0.202079;-0.109746;-1.456488;, - 0.027299;-0.109746;-1.456488;, - 0.027299; 0.109746;-1.456488;, - 0.202079; 0.109746;-0.980459;, - 0.027299; 0.109746;-0.980459;, - 0.027299;-0.109746;-0.980459;, - 0.202079;-0.109746;-0.980459;, - 0.202079; 0.109746;-1.456488;, - 0.202079; 0.109746;-0.980459;, - 0.202079;-0.109746;-0.980459;, - 0.202079;-0.109746;-1.456488;, - 0.202079;-0.109746;-1.456488;, - 0.202079;-0.109746;-0.980459;, - 0.027299;-0.109746;-0.980459;, - 0.027299;-0.109746;-1.456488;, - 0.027299;-0.109746;-1.456488;, - 0.027299;-0.109746;-0.980459;, - 0.027299; 0.109746;-0.980459;, - 0.027299; 0.109746;-1.456488;, - 0.202079; 0.109746;-0.980459;, - 0.202079; 0.109746;-1.456488;, - 0.027299; 0.109746;-1.456488;, - 0.027299; 0.109746;-0.980459;, - -0.082525; 0.109746;-1.456488;, - -0.082525;-0.109746;-1.456488;, - -0.257305;-0.109746;-1.456488;, - -0.257305; 0.109746;-1.456488;, - -0.082525; 0.109746;-0.980459;, - -0.257305; 0.109746;-0.980459;, - -0.257305;-0.109746;-0.980459;, - -0.082525;-0.109746;-0.980459;, - -0.082525; 0.109746;-1.456488;, - -0.082525; 0.109746;-0.980459;, - -0.082525;-0.109746;-0.980459;, - -0.082525;-0.109746;-1.456488;, - -0.082525;-0.109746;-1.456488;, - -0.082525;-0.109746;-0.980459;, - -0.257305;-0.109746;-0.980459;, - -0.257305;-0.109746;-1.456488;, - -0.257305;-0.109746;-1.456488;, - -0.257305;-0.109746;-0.980459;, - -0.257305; 0.109746;-0.980459;, - -0.257305; 0.109746;-1.456488;, - -0.082525; 0.109746;-0.980459;, - -0.082525; 0.109746;-1.456488;, - -0.257305; 0.109746;-1.456488;, - -0.257305; 0.109746;-0.980459;, - 8.097778; 1.627711;-1.673107;, - 8.097778;-1.579254;-1.673107;, - 1.052408;-1.579254;-1.673107;, - 1.052410; 1.627712;-1.673107;, - 8.097780; 1.627711; 2.763484;, - 1.052409; 1.627712; 2.763484;, - 1.052408;-1.579254; 2.763484;, - 8.097776;-1.579255; 2.763484;, - 8.097778; 1.627711;-1.673107;, - 8.097780; 1.627711; 2.763484;, - 8.097776;-1.579255; 2.763484;, - 8.097778;-1.579254;-1.673107;, - 8.097778;-1.579254;-1.673107;, - 8.097776;-1.579255; 2.763484;, - 1.052408;-1.579254; 2.763484;, - 1.052408;-1.579254;-1.673107;, - 1.052408;-1.579254;-1.673107;, - 1.052408;-1.579254; 2.763484;, - 1.052409; 1.627712; 2.763484;, - 1.052410; 1.627712;-1.673107;, - 8.097780; 1.627711; 2.763484;, - 8.097778; 1.627711;-1.673107;, - 1.052410; 1.627712;-1.673107;, - 1.052409; 1.627712; 2.763484;, - 0.861567; 0.809532; 0.905798;, - 0.861567; 0.339538; 0.905798;, - 0.125708; 0.339538; 0.905798;, - 0.125708; 0.809532; 0.905798;, - 0.861567; 0.809532; 1.853384;, - 0.125708; 0.809532; 1.853384;, - 0.125708; 0.339538; 1.853384;, - 0.861567; 0.339538; 1.853384;, - 0.861567; 0.809532; 0.905798;, - 0.861567; 0.809532; 1.853384;, - 0.861567; 0.339538; 1.853384;, - 0.861567; 0.339538; 0.905798;, - 0.861567; 0.339538; 0.905798;, - 0.861567; 0.339538; 1.853384;, - 0.125708; 0.339538; 1.853384;, - 0.125708; 0.339538; 0.905798;, - 0.125708; 0.339538; 0.905798;, - 0.125708; 0.339538; 1.853384;, - 0.125708; 0.809532; 1.853384;, - 0.125708; 0.809532; 0.905798;, - 0.861567; 0.809532; 1.853384;, - 0.861567; 0.809532; 0.905798;, - 0.125708; 0.809532; 0.905798;, - 0.125708; 0.809532; 1.853384;, - 0.790055;-0.399687; 0.905798;, - 0.790055;-0.869681; 0.905798;, - 0.054196;-0.869681; 0.905798;, - 0.054196;-0.399687; 0.905798;, - 0.790056;-0.399687; 1.853384;, - 0.054196;-0.399687; 1.853384;, - 0.054196;-0.869681; 1.853384;, - 0.790055;-0.869682; 1.853384;, - 0.790055;-0.399687; 0.905798;, - 0.790056;-0.399687; 1.853384;, - 0.790055;-0.869682; 1.853384;, - 0.790055;-0.869681; 0.905798;, - 0.790055;-0.869681; 0.905798;, - 0.790055;-0.869682; 1.853384;, - 0.054196;-0.869681; 1.853384;, - 0.054196;-0.869681; 0.905798;, - 0.054196;-0.869681; 0.905798;, - 0.054196;-0.869681; 1.853384;, - 0.054196;-0.399687; 1.853384;, - 0.054196;-0.399687; 0.905798;, - 0.790056;-0.399687; 1.853384;, - 0.790055;-0.399687; 0.905798;, - 0.054196;-0.399687; 0.905798;, - 0.054196;-0.399687; 1.853384;, - 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.999999; 1.000000;, - -1.000000; 1.000000; 1.000000;, - -1.000000;-1.000000; 1.000000;, - 0.999999;-1.000001; 1.000000;, - 1.000000; 1.000000;-1.000000;, - 1.000000; 0.999999; 1.000000;, - 0.999999;-1.000001; 1.000000;, - 1.000000;-1.000000;-1.000000;, - 1.000000;-1.000000;-1.000000;, - 0.999999;-1.000001; 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.999999; 1.000000;, - 1.000000; 1.000000;-1.000000;, - -1.000000; 1.000000;-1.000000;, - -1.000000; 1.000000; 1.000000;; - 180; - 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;, - 4;351,350,349,348;, - 4;355,354,353,352;, - 4;359,358,357,356;, - 4;363,362,361,360;, - 4;367,366,365,364;, - 4;371,370,369,368;, - 4;375,374,373,372;, - 4;379,378,377,376;, - 4;383,382,381,380;, - 4;387,386,385,384;, - 4;391,390,389,388;, - 4;395,394,393,392;, - 4;399,398,397,396;, - 4;403,402,401,400;, - 4;407,406,405,404;, - 4;411,410,409,408;, - 4;415,414,413,412;, - 4;419,418,417,416;, - 4;423,422,421,420;, - 4;427,426,425,424;, - 4;431,430,429,428;, - 4;435,434,433,432;, - 4;439,438,437,436;, - 4;443,442,441,440;, - 4;447,446,445,444;, - 4;451,450,449,448;, - 4;455,454,453,452;, - 4;459,458,457,456;, - 4;463,462,461,460;, - 4;467,466,465,464;, - 4;471,470,469,468;, - 4;475,474,473,472;, - 4;479,478,477,476;, - 4;483,482,481,480;, - 4;487,486,485,484;, - 4;491,490,489,488;, - 4;495,494,493,492;, - 4;499,498,497,496;, - 4;503,502,501,500;, - 4;507,506,505,504;, - 4;511,510,509,508;, - 4;515,514,513,512;, - 4;519,518,517,516;, - 4;523,522,521,520;, - 4;527,526,525,524;, - 4;531,530,529,528;, - 4;535,534,533,532;, - 4;539,538,537,536;, - 4;543,542,541,540;, - 4;547,546,545,544;, - 4;551,550,549,548;, - 4;555,554,553,552;, - 4;559,558,557,556;, - 4;563,562,561,560;, - 4;567,566,565,564;, - 4;571,570,569,568;, - 4;575,574,573,572;, - 4;579,578,577,576;, - 4;583,582,581,580;, - 4;587,586,585,584;, - 4;591,590,589,588;, - 4;595,594,593,592;, - 4;599,598,597,596;, - 4;603,602,601,600;, - 4;607,606,605,604;, - 4;611,610,609,608;, - 4;615,614,613,612;, - 4;619,618,617,616;, - 4;623,622,621,620;, - 4;627,626,625,624;, - 4;631,630,629,628;, - 4;635,634,633,632;, - 4;639,638,637,636;, - 4;643,642,641,640;, - 4;647,646,645,644;, - 4;651,650,649,648;, - 4;655,654,653,652;, - 4;659,658,657,656;, - 4;663,662,661,660;, - 4;667,666,665,664;, - 4;671,670,669,668;, - 4;675,674,673,672;, - 4;679,678,677,676;, - 4;683,682,681,680;, - 4;687,686,685,684;, - 4;691,690,689,688;, - 4;695,694,693,692;, - 4;699,698,697,696;, - 4;703,702,701,700;, - 4;707,706,705,704;, - 4;711,710,709,708;, - 4;715,714,713,712;, - 4;719,718,717,716;; - MeshNormals { // Cube normals - 180; - 0.000000;-0.000000;-1.000000;, - -0.000000; 0.000000; 1.000000;, - -0.000001;-1.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - 0.000001; 1.000000;-0.000000;, - 1.000000;-0.000000; 0.000000;, - 0.000000;-0.000000;-1.000000;, - -0.000000; 0.000000; 1.000000;, - -0.000001;-1.000000; 0.000000;, - -1.000000; 0.000000;-0.000000;, - 0.000001; 1.000000;-0.000001;, - 1.000000;-0.000000; 0.000000;, - 0.000000;-0.000000;-1.000000;, - -0.000000; 0.000000; 1.000000;, - -0.000002;-1.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - 0.000002; 1.000000;-0.000001;, - 1.000000;-0.000000; 0.000000;, - 0.000000;-0.000000;-1.000000;, - -0.000000; 0.000000; 1.000000;, - -0.000001;-1.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - 0.000001; 1.000000;-0.000000;, - 1.000000;-0.000000; 0.000000;, - 0.000000;-0.000000;-1.000000;, - -0.000000; 0.000000; 1.000000;, - -0.000001;-1.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - 0.000002; 1.000000;-0.000001;, - 1.000000; 0.000000; 0.000000;, - 0.000000;-0.000000;-1.000000;, - -0.000000; 0.000000; 1.000000;, - -0.000001;-1.000000; 0.000001;, - -1.000000; 0.000000;-0.000000;, - 0.000000; 1.000000; 0.000000;, - 1.000000;-0.000000; 0.000000;, - 0.000000; 0.000000;-1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000001; 1.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - -0.000001;-1.000000;-0.000001;, - -1.000000; 0.000000; 0.000000;, - 0.000000; 0.000000;-1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000001; 1.000000; 0.000001;, - 1.000000;-0.000000;-0.000000;, - -0.000001;-1.000000;-0.000001;, - -1.000000;-0.000000; 0.000000;, - 0.000000; 0.000000;-1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 1.000000; 0.000000;, - 1.000000;-0.000000;-0.000000;, - 0.000000;-1.000000; 0.000000;, - -1.000000;-0.000000; 0.000000;, - 0.000000; 0.000000;-1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000001; 1.000000; 0.000000;, - 1.000000; 0.000000;-0.000000;, - -0.000001;-1.000000;-0.000001;, - -1.000000; 0.000000; 0.000000;, - 0.000000; 0.000000;-1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000001; 1.000000; 0.000001;, - 1.000000; 0.000000;-0.000000;, - -0.000001;-1.000000;-0.000001;, - -1.000000;-0.000000; 0.000000;, - 0.000000; 0.000000;-1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 1.000000; 0.000000;, - 1.000000; 0.000000;-0.000000;, - 0.000000;-1.000000; 0.000000;, - -1.000000;-0.000000; 0.000000;, - 0.000000; 0.000000;-1.000000;, - 0.000000;-0.000000; 1.000000;, - 1.000000;-0.000003; 0.000000;, - -0.000000;-1.000000; 0.000001;, - -1.000000; 0.000004;-0.000001;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 0.000000;-1.000000;, - 0.000000;-0.000000; 1.000000;, - 1.000000;-0.000005;-0.000001;, - 0.000000;-1.000000; 0.000000;, - -1.000000; 0.000004;-0.000002;, - -0.000000; 1.000000; 0.000000;, - 0.000000; 0.000000;-1.000000;, - 0.000000;-0.000000; 1.000000;, - 1.000000;-0.000003;-0.000001;, - 0.000000;-1.000000; 0.000000;, - -1.000000; 0.000005; 0.000000;, - -0.000000; 1.000000; 0.000000;, - 0.000000; 0.000000;-1.000000;, - 0.000000;-0.000000; 1.000000;, - 1.000000;-0.000003;-0.000001;, - 0.000000;-1.000000; 0.000000;, - -1.000000; 0.000005; 0.000000;, - -0.000000; 1.000000; 0.000000;, - 0.000000; 0.000000;-1.000000;, - 0.000000;-0.000000; 1.000000;, - 1.000000;-0.000005;-0.000001;, - 0.000000;-1.000000; 0.000000;, - -1.000000; 0.000004;-0.000002;, - -0.000000; 1.000000; 0.000000;, - 0.000000; 0.000000;-1.000000;, - 0.000000;-0.000000; 1.000000;, - 1.000000;-0.000003; 0.000000;, - -0.000000;-1.000000; 0.000000;, - -1.000000; 0.000004;-0.000001;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 0.000000;-1.000000;, - 0.000000;-0.000000; 1.000000;, - 1.000000;-0.000003; 0.000000;, - -0.000000;-1.000000; 0.000000;, - -1.000000; 0.000002;-0.000000;, - -0.000000; 1.000000; 0.000000;, - 0.000000; 0.000000;-1.000000;, - 0.000000;-0.000000; 1.000000;, - 1.000000;-0.000005;-0.000001;, - 0.000000;-1.000000; 0.000000;, - -1.000000; 0.000006;-0.000001;, - -0.000000; 1.000000; 0.000000;, - 0.000000; 0.000000;-1.000000;, - 0.000000;-0.000000; 1.000000;, - 1.000000;-0.000003;-0.000001;, - 0.000000;-1.000000; 0.000000;, - -1.000000; 0.000005; 0.000000;, - -0.000000; 1.000000; 0.000000;, - 0.000000; 0.000000;-1.000000;, - 0.000000;-0.000000; 1.000000;, - 1.000000;-0.000003;-0.000001;, - 0.000000;-1.000000; 0.000000;, - -1.000000; 0.000005; 0.000000;, - -0.000000; 1.000000; 0.000000;, - 0.000000; 0.000000;-1.000000;, - 0.000000;-0.000000; 1.000000;, - 1.000000;-0.000005;-0.000001;, - 0.000000;-1.000000; 0.000000;, - -1.000000; 0.000004;-0.000002;, - -0.000000; 1.000000; 0.000000;, - 0.000000; 0.000000;-1.000000;, - 0.000000;-0.000000; 1.000000;, - 1.000000;-0.000003; 0.000000;, - -0.000000;-1.000000; 0.000000;, - -1.000000; 0.000004;-0.000001;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 0.000000;-1.000000;, - 0.000000;-0.000000; 1.000000;, - 1.000000;-0.000000; 0.000000;, - -0.000000;-1.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 0.000000;-1.000000;, - 0.000000;-0.000000; 1.000000;, - 1.000000;-0.000000; 0.000000;, - -0.000000;-1.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 0.000000;-1.000000;, - 0.000000;-0.000000; 1.000000;, - 1.000000;-0.000001;-0.000000;, - -0.000000;-1.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 0.000000;-1.000000;, - 0.000000;-0.000000; 1.000000;, - 1.000000;-0.000000; 0.000000;, - -0.000000;-1.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 0.000000;-1.000000;, - 0.000000;-0.000000; 1.000000;, - 1.000000;-0.000000; 0.000000;, - -0.000000;-1.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 0.000000;-1.000000;, - 0.000000;-0.000000; 1.000000;, - 1.000000;-0.000000; 0.000000;, - -0.000000;-1.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - 0.000000; 1.000000; 0.000000;; - 180; - 4;0,0,0,0;, - 4;1,1,1,1;, - 4;2,2,2,2;, - 4;3,3,3,3;, - 4;4,4,4,4;, - 4;5,5,5,5;, - 4;6,6,6,6;, - 4;7,7,7,7;, - 4;8,8,8,8;, - 4;9,9,9,9;, - 4;10,10,10,10;, - 4;11,11,11,11;, - 4;12,12,12,12;, - 4;13,13,13,13;, - 4;14,14,14,14;, - 4;15,15,15,15;, - 4;16,16,16,16;, - 4;17,17,17,17;, - 4;18,18,18,18;, - 4;19,19,19,19;, - 4;20,20,20,20;, - 4;21,21,21,21;, - 4;22,22,22,22;, - 4;23,23,23,23;, - 4;24,24,24,24;, - 4;25,25,25,25;, - 4;26,26,26,26;, - 4;27,27,27,27;, - 4;28,28,28,28;, - 4;29,29,29,29;, - 4;30,30,30,30;, - 4;31,31,31,31;, - 4;32,32,32,32;, - 4;33,33,33,33;, - 4;34,34,34,34;, - 4;35,35,35,35;, - 4;36,36,36,36;, - 4;37,37,37,37;, - 4;38,38,38,38;, - 4;39,39,39,39;, - 4;40,40,40,40;, - 4;41,41,41,41;, - 4;42,42,42,42;, - 4;43,43,43,43;, - 4;44,44,44,44;, - 4;45,45,45,45;, - 4;46,46,46,46;, - 4;47,47,47,47;, - 4;48,48,48,48;, - 4;49,49,49,49;, - 4;50,50,50,50;, - 4;51,51,51,51;, - 4;52,52,52,52;, - 4;53,53,53,53;, - 4;54,54,54,54;, - 4;55,55,55,55;, - 4;56,56,56,56;, - 4;57,57,57,57;, - 4;58,58,58,58;, - 4;59,59,59,59;, - 4;60,60,60,60;, - 4;61,61,61,61;, - 4;62,62,62,62;, - 4;63,63,63,63;, - 4;64,64,64,64;, - 4;65,65,65,65;, - 4;66,66,66,66;, - 4;67,67,67,67;, - 4;68,68,68,68;, - 4;69,69,69,69;, - 4;70,70,70,70;, - 4;71,71,71,71;, - 4;72,72,72,72;, - 4;73,73,73,73;, - 4;74,74,74,74;, - 4;75,75,75,75;, - 4;76,76,76,76;, - 4;77,77,77,77;, - 4;78,78,78,78;, - 4;79,79,79,79;, - 4;80,80,80,80;, - 4;81,81,81,81;, - 4;82,82,82,82;, - 4;83,83,83,83;, - 4;84,84,84,84;, - 4;85,85,85,85;, - 4;86,86,86,86;, - 4;87,87,87,87;, - 4;88,88,88,88;, - 4;89,89,89,89;, - 4;90,90,90,90;, - 4;91,91,91,91;, - 4;92,92,92,92;, - 4;93,93,93,93;, - 4;94,94,94,94;, - 4;95,95,95,95;, - 4;96,96,96,96;, - 4;97,97,97,97;, - 4;98,98,98,98;, - 4;99,99,99,99;, - 4;100,100,100,100;, - 4;101,101,101,101;, - 4;102,102,102,102;, - 4;103,103,103,103;, - 4;104,104,104,104;, - 4;105,105,105,105;, - 4;106,106,106,106;, - 4;107,107,107,107;, - 4;108,108,108,108;, - 4;109,109,109,109;, - 4;110,110,110,110;, - 4;111,111,111,111;, - 4;112,112,112,112;, - 4;113,113,113,113;, - 4;114,114,114,114;, - 4;115,115,115,115;, - 4;116,116,116,116;, - 4;117,117,117,117;, - 4;118,118,118,118;, - 4;119,119,119,119;, - 4;120,120,120,120;, - 4;121,121,121,121;, - 4;122,122,122,122;, - 4;123,123,123,123;, - 4;124,124,124,124;, - 4;125,125,125,125;, - 4;126,126,126,126;, - 4;127,127,127,127;, - 4;128,128,128,128;, - 4;129,129,129,129;, - 4;130,130,130,130;, - 4;131,131,131,131;, - 4;132,132,132,132;, - 4;133,133,133,133;, - 4;134,134,134,134;, - 4;135,135,135,135;, - 4;136,136,136,136;, - 4;137,137,137,137;, - 4;138,138,138,138;, - 4;139,139,139,139;, - 4;140,140,140,140;, - 4;141,141,141,141;, - 4;142,142,142,142;, - 4;143,143,143,143;, - 4;144,144,144,144;, - 4;145,145,145,145;, - 4;146,146,146,146;, - 4;147,147,147,147;, - 4;148,148,148,148;, - 4;149,149,149,149;, - 4;150,150,150,150;, - 4;151,151,151,151;, - 4;152,152,152,152;, - 4;153,153,153,153;, - 4;154,154,154,154;, - 4;155,155,155,155;, - 4;156,156,156,156;, - 4;157,157,157,157;, - 4;158,158,158,158;, - 4;159,159,159,159;, - 4;160,160,160,160;, - 4;161,161,161,161;, - 4;162,162,162,162;, - 4;163,163,163,163;, - 4;164,164,164,164;, - 4;165,165,165,165;, - 4;166,166,166,166;, - 4;167,167,167,167;, - 4;168,168,168,168;, - 4;169,169,169,169;, - 4;170,170,170,170;, - 4;171,171,171,171;, - 4;172,172,172,172;, - 4;173,173,173,173;, - 4;174,174,174,174;, - 4;175,175,175,175;, - 4;176,176,176,176;, - 4;177,177,177,177;, - 4;178,178,178,178;, - 4;179,179,179,179;; - } // End of Cube normals - MeshTextureCoords { // Cube UV coordinates - 720; - 0.197765; 0.234466;, - 0.229069; 0.234466;, - 0.229069; 0.103014;, - 0.197765; 0.103014;, - 0.322982; 0.234466;, - 0.322982; 0.103014;, - 0.291678; 0.103014;, - 0.291678; 0.234466;, - 0.764230; 0.116058;, - 0.764230; 0.081728;, - 0.732925; 0.081728;, - 0.732925; 0.116058;, - 0.332547; 0.234466;, - 0.298852; 0.234466;, - 0.298852; 0.365918;, - 0.332547; 0.365918;, - 0.847875; 0.340738;, - 0.847875; 0.375068;, - 0.879180; 0.375068;, - 0.879180; 0.340738;, - 0.231460; 0.234466;, - 0.197765; 0.234466;, - 0.197765; 0.365918;, - 0.231460; 0.365918;, - 0.437234; 0.037308;, - 0.415046; 0.037308;, - 0.415046; 0.168760;, - 0.437234; 0.168760;, - 0.369843; 0.037308;, - 0.369843; 0.168760;, - 0.392031; 0.168760;, - 0.392031; 0.037308;, - 0.081572; 0.066010;, - 0.081572; 0.090398;, - 0.103760; 0.090398;, - 0.103760; 0.066010;, - 0.134421; 0.090398;, - 0.110484; 0.090399;, - 0.110484; 0.221851;, - 0.134421; 0.221851;, - 0.148137; 0.090398;, - 0.148137; 0.066010;, - 0.125948; 0.066010;, - 0.125948; 0.090398;, - 0.906693; 0.610925;, - 0.930631; 0.610925;, - 0.930631; 0.479473;, - 0.906693; 0.479473;, - 0.927605; 0.340738;, - 0.944204; 0.340738;, - 0.944204; 0.162323;, - 0.927605; 0.162323;, - 0.907535; 0.821585;, - 0.907535; 1.000000;, - 0.924134; 1.000000;, - 0.924134; 0.821585;, - 0.838960; 0.058343;, - 0.838960; 0.078832;, - 0.855558; 0.078832;, - 0.855558; 0.058343;, - 0.906693; 0.432511;, - 0.886583; 0.432511;, - 0.886583; 0.610925;, - 0.906693; 0.610925;, - 0.788311; 0.061239;, - 0.788311; 0.081728;, - 0.804910; 0.081728;, - 0.804910; 0.061239;, - 0.867315; 1.000000;, - 0.887425; 1.000000;, - 0.887425; 0.821585;, - 0.867315; 0.821585;, - 0.820868; 0.623541;, - 0.789563; 0.623541;, - 0.789563; 0.754993;, - 0.820868; 0.754993;, - 0.062609; 0.221851;, - 0.062609; 0.090398;, - 0.031304; 0.090398;, - 0.031304; 0.221851;, - 0.807655; 0.085138;, - 0.807655; 0.119469;, - 0.838960; 0.119469;, - 0.838960; 0.085138;, - 0.755867; 0.623541;, - 0.722172; 0.623541;, - 0.722172; 0.754993;, - 0.755867; 0.754993;, - 0.260374; 0.103014;, - 0.260374; 0.068683;, - 0.229069; 0.068683;, - 0.229069; 0.103014;, - 0.654780; 0.754993;, - 0.688476; 0.754993;, - 0.688476; 0.623541;, - 0.654780; 0.623541;, - 0.437234; 0.168760;, - 0.459423; 0.168760;, - 0.459423; 0.037308;, - 0.437234; 0.037308;, - 0.347654; 0.037308;, - 0.347654; 0.168760;, - 0.369843; 0.168760;, - 0.369843; 0.037308;, - 0.829844; 0.085138;, - 0.829844; 0.060750;, - 0.807655; 0.060750;, - 0.807655; 0.085138;, - 0.158359; 0.090399;, - 0.134421; 0.090399;, - 0.134421; 0.221851;, - 0.158359; 0.221851;, - 0.732925; 0.057339;, - 0.732925; 0.081728;, - 0.755113; 0.081727;, - 0.755113; 0.057339;, - 0.927605; 0.209285;, - 0.903668; 0.209285;, - 0.903668; 0.340738;, - 0.927605; 0.340738;, - 0.920242; 0.815667;, - 0.936841; 0.815667;, - 0.936841; 0.637252;, - 0.920242; 0.637252;, - 0.924134; 0.821585;, - 0.924134; 1.000000;, - 0.940733; 1.000000;, - 0.940733; 0.821585;, - 0.864960; 0.064649;, - 0.864960; 0.085138;, - 0.881559; 0.085138;, - 0.881559; 0.064649;, - 0.903668; 0.162323;, - 0.883558; 0.162323;, - 0.883558; 0.340738;, - 0.903668; 0.340738;, - 0.910484; 0.610925;, - 0.910484; 0.631414;, - 0.927083; 0.631414;, - 0.927083; 0.610925;, - 0.866473; 0.610925;, - 0.886583; 0.610925;, - 0.886583; 0.432511;, - 0.866473; 0.432511;, - 0.000000; 0.221851;, - 0.031304; 0.221851;, - 0.031304; 0.090399;, - 0.000000; 0.090399;, - 0.291678; 0.234466;, - 0.291678; 0.103014;, - 0.260374; 0.103014;, - 0.260374; 0.234466;, - 0.197765; 0.068683;, - 0.197765; 0.103014;, - 0.229069; 0.103014;, - 0.229069; 0.068683;, - 0.722172; 0.623541;, - 0.688476; 0.623541;, - 0.688476; 0.754993;, - 0.722172; 0.754993;, - 0.910484; 0.645256;, - 0.910484; 0.610925;, - 0.879180; 0.610925;, - 0.879180; 0.645256;, - 0.298852; 0.234466;, - 0.265156; 0.234466;, - 0.265156; 0.365918;, - 0.298852; 0.365918;, - 0.584777; 0.168760;, - 0.606966; 0.168760;, - 0.606966; 0.037308;, - 0.584777; 0.037308;, - 0.560840; 0.037308;, - 0.560840; 0.168760;, - 0.583028; 0.168760;, - 0.583028; 0.037308;, - 0.103760; 0.066010;, - 0.103760; 0.090398;, - 0.125948; 0.090398;, - 0.125948; 0.066010;, - 0.086546; 0.221851;, - 0.110484; 0.221851;, - 0.110484; 0.090398;, - 0.086546; 0.090398;, - 0.059383; 0.066010;, - 0.059383; 0.090398;, - 0.081572; 0.090398;, - 0.081572; 0.066010;, - 0.903668; 0.209285;, - 0.927605; 0.209285;, - 0.927605; 0.077833;, - 0.903668; 0.077833;, - 0.699728; 0.168388;, - 0.716326; 0.168388;, - 0.716326; 0.000000;, - 0.699728; 0.000000;, - 0.672872; 0.000000;, - 0.672872; 0.168388;, - 0.689471; 0.168388;, - 0.689471; 0.000000;, - 0.755113; 0.061239;, - 0.755113; 0.081728;, - 0.771712; 0.081728;, - 0.771712; 0.061239;, - 0.900132; 0.647279;, - 0.880022; 0.647279;, - 0.880022; 0.815667;, - 0.900132; 0.815667;, - 0.920267; 0.077833;, - 0.920267; 0.057344;, - 0.903668; 0.057344;, - 0.903668; 0.077833;, - 0.900132; 0.815667;, - 0.920242; 0.815667;, - 0.920242; 0.647279;, - 0.900132; 0.647279;, - 0.229069; 0.234466;, - 0.260374; 0.234466;, - 0.260374; 0.103014;, - 0.229069; 0.103014;, - 0.880022; 0.778731;, - 0.880022; 0.647279;, - 0.848718; 0.647279;, - 0.848718; 0.778731;, - 0.764230; 0.081728;, - 0.764230; 0.116058;, - 0.795534; 0.116058;, - 0.795534; 0.081728;, - 0.265156; 0.234466;, - 0.231460; 0.234466;, - 0.231460; 0.365918;, - 0.265156; 0.365918;, - 0.879180; 0.645256;, - 0.879180; 0.610925;, - 0.847875; 0.610925;, - 0.847875; 0.645256;, - 0.789563; 0.623541;, - 0.755867; 0.623541;, - 0.755867; 0.754993;, - 0.789563; 0.754993;, - 0.414219; 0.037308;, - 0.392031; 0.037308;, - 0.392031; 0.168760;, - 0.414219; 0.168760;, - 0.459423; 0.037308;, - 0.459423; 0.168760;, - 0.481611; 0.168760;, - 0.481611; 0.037308;, - 0.148137; 0.066010;, - 0.148137; 0.090398;, - 0.170325; 0.090398;, - 0.170325; 0.066010;, - 0.086546; 0.090399;, - 0.062609; 0.090399;, - 0.062609; 0.221851;, - 0.086546; 0.221851;, - 0.059383; 0.090398;, - 0.059383; 0.066010;, - 0.037195; 0.066010;, - 0.037195; 0.090398;, - 0.930631; 0.348021;, - 0.906693; 0.348021;, - 0.906693; 0.479473;, - 0.930631; 0.479473;, - 0.606966; 0.168760;, - 0.623564; 0.168760;, - 0.623564; 0.000372;, - 0.606966; 0.000372;, - 0.716326; 0.000000;, - 0.716326; 0.168388;, - 0.732925; 0.168388;, - 0.732925; 0.000000;, - 0.771712; 0.061239;, - 0.771712; 0.081728;, - 0.788311; 0.081728;, - 0.788311; 0.061239;, - 0.322982; 0.234466;, - 0.343092; 0.234466;, - 0.343092; 0.066078;, - 0.322982; 0.066078;, - 0.551071; 0.079204;, - 0.551071; 0.058715;, - 0.534472; 0.058715;, - 0.534472; 0.079204;, - 0.887425; 1.000000;, - 0.907535; 1.000000;, - 0.907535; 0.831612;, - 0.887425; 0.831612;, - 0.807655; 0.340738;, - 0.826253; 0.340738;, - 0.826253; 0.119469;, - 0.807655; 0.119469;, - 0.806736; 0.389656;, - 0.806736; 0.168388;, - 0.788139; 0.168388;, - 0.788139; 0.389656;, - 0.883558; 0.127993;, - 0.883558; 0.162323;, - 0.902155; 0.162323;, - 0.902155; 0.127993;, - 0.773960; 0.389656;, - 0.740264; 0.389657;, - 0.740264; 0.610925;, - 0.773960; 0.610925;, - 0.902155; 0.127993;, - 0.902155; 0.093662;, - 0.883558; 0.093662;, - 0.883558; 0.127993;, - 0.773960; 0.610925;, - 0.807655; 0.610925;, - 0.807655; 0.389657;, - 0.773960; 0.389657;, - 0.967096; 1.000000;, - 0.980278; 1.000000;, - 0.980278; 0.778731;, - 0.967096; 0.778731;, - 0.967096; 1.000000;, - 0.967096; 0.778731;, - 0.953914; 0.778731;, - 0.953914; 1.000000;, - 0.332547; 0.243976;, - 0.332547; 0.268364;, - 0.345729; 0.268364;, - 0.345729; 0.243976;, - 0.632652; 0.168760;, - 0.608715; 0.168760;, - 0.608715; 0.390029;, - 0.632652; 0.390029;, - 0.171540; 0.173074;, - 0.171540; 0.148685;, - 0.158359; 0.148685;, - 0.158359; 0.173074;, - 0.764201; 0.168388;, - 0.740264; 0.168388;, - 0.740264; 0.389656;, - 0.764201; 0.389656;, - 0.980429; 0.340738;, - 0.990290; 0.340738;, - 0.990290; 0.070550;, - 0.980429; 0.070550;, - 0.990139; 1.000000;, - 0.990139; 0.729812;, - 0.980278; 0.729812;, - 0.980278; 1.000000;, - 0.217487; 0.048194;, - 0.217487; 0.068683;, - 0.227348; 0.068683;, - 0.227348; 0.048194;, - 0.807655; 0.610925;, - 0.827765; 0.610925;, - 0.827765; 0.340738;, - 0.807655; 0.340738;, - 0.207626; 0.068683;, - 0.207626; 0.048194;, - 0.197765; 0.048194;, - 0.197765; 0.068683;, - 0.652762; 0.390029;, - 0.672872; 0.390029;, - 0.672872; 0.119841;, - 0.652762; 0.119841;, - 0.970176; 0.610925;, - 0.980037; 0.610925;, - 0.980037; 0.340738;, - 0.970176; 0.340738;, - 0.559947; 0.390029;, - 0.559947; 0.119841;, - 0.550086; 0.119841;, - 0.550086; 0.390029;, - 0.699728; 0.069034;, - 0.699728; 0.048545;, - 0.689867; 0.048545;, - 0.689867; 0.069034;, - 0.509866; 0.119841;, - 0.489756; 0.119841;, - 0.489756; 0.390029;, - 0.509866; 0.390029;, - 0.321185; 0.076725;, - 0.321185; 0.056237;, - 0.311324; 0.056237;, - 0.311324; 0.076725;, - 0.509866; 0.390029;, - 0.529976; 0.390029;, - 0.529976; 0.119841;, - 0.509866; 0.119841;, - 0.943812; 0.610925;, - 0.956994; 0.610925;, - 0.956994; 0.389657;, - 0.943812; 0.389657;, - 0.953914; 1.000000;, - 0.953914; 0.778731;, - 0.940733; 0.778731;, - 0.940733; 1.000000;, - 0.345729; 0.341530;, - 0.345729; 0.317141;, - 0.332547; 0.317141;, - 0.332547; 0.341530;, - 0.584777; 0.168760;, - 0.560840; 0.168760;, - 0.560840; 0.390029;, - 0.584777; 0.390029;, - 0.332547; 0.341530;, - 0.332547; 0.365918;, - 0.345729; 0.365918;, - 0.345729; 0.341530;, - 0.672872; 0.389657;, - 0.696810; 0.389656;, - 0.696810; 0.168388;, - 0.672872; 0.168388;, - 0.847875; 0.610925;, - 0.866473; 0.610925;, - 0.866473; 0.389657;, - 0.847875; 0.389657;, - 0.867315; 1.000000;, - 0.867315; 0.778731;, - 0.848718; 0.778731;, - 0.848718; 1.000000;, - 0.018597; 0.056068;, - 0.018597; 0.090398;, - 0.037195; 0.090398;, - 0.037195; 0.056068;, - 0.456060; 0.390029;, - 0.489756; 0.390029;, - 0.489756; 0.168760;, - 0.456060; 0.168760;, - 0.883558; 0.059332;, - 0.883558; 0.093662;, - 0.902155; 0.093662;, - 0.902155; 0.059332;, - 0.415046; 0.390029;, - 0.448741; 0.390029;, - 0.448741; 0.168760;, - 0.415046; 0.168760;, - 0.827765; 0.340738;, - 0.846363; 0.340738;, - 0.846363; 0.119469;, - 0.827765; 0.119469;, - 0.716326; 0.389656;, - 0.716326; 0.168388;, - 0.697729; 0.168388;, - 0.697729; 0.389656;, - 0.879180; 0.340738;, - 0.879180; 0.375068;, - 0.897777; 0.375068;, - 0.897777; 0.340738;, - 0.672872; 0.610925;, - 0.706568; 0.610925;, - 0.706568; 0.389657;, - 0.672872; 0.389657;, - 0.864960; 0.085138;, - 0.864960; 0.119469;, - 0.883558; 0.119469;, - 0.883558; 0.085138;, - 0.347654; 0.390029;, - 0.381350; 0.390029;, - 0.381350; 0.168760;, - 0.347654; 0.168760;, - 0.944204; 0.340738;, - 0.957386; 0.340738;, - 0.957386; 0.119469;, - 0.944204; 0.119469;, - 0.943812; 0.610925;, - 0.943812; 0.389657;, - 0.930631; 0.389656;, - 0.930630; 0.610925;, - 0.345729; 0.292753;, - 0.345729; 0.268364;, - 0.332547; 0.268364;, - 0.332547; 0.292753;, - 0.608715; 0.168760;, - 0.584777; 0.168760;, - 0.584777; 0.390029;, - 0.608715; 0.390029;, - 0.332547; 0.292753;, - 0.332547; 0.317141;, - 0.345729; 0.317141;, - 0.345729; 0.292753;, - 0.716326; 0.389656;, - 0.740264; 0.389656;, - 0.740264; 0.168388;, - 0.716326; 0.168388;, - 0.980037; 0.610925;, - 0.989898; 0.610925;, - 0.989898; 0.340738;, - 0.980037; 0.340738;, - 0.980429; 0.340738;, - 0.980429; 0.070550;, - 0.970568; 0.070550;, - 0.970568; 0.340738;, - 0.930128; 0.077833;, - 0.930128; 0.057344;, - 0.920267; 0.057344;, - 0.920267; 0.077833;, - 0.827765; 0.610925;, - 0.847875; 0.610925;, - 0.847875; 0.340738;, - 0.827765; 0.340738;, - 0.689867; 0.069034;, - 0.689867; 0.089523;, - 0.699728; 0.089523;, - 0.699728; 0.069034;, - 0.652762; 0.119841;, - 0.632652; 0.119841;, - 0.632652; 0.390029;, - 0.652762; 0.390029;, - 0.990139; 1.000000;, - 1.000000; 1.000000;, - 1.000000; 0.729812;, - 0.990139; 0.729812;, - 0.999759; 0.610925;, - 0.999759; 0.340738;, - 0.989898; 0.340738;, - 0.989898; 0.610925;, - 0.238930; 0.068683;, - 0.238930; 0.048194;, - 0.229069; 0.048194;, - 0.229069; 0.068683;, - 0.550086; 0.119841;, - 0.529976; 0.119841;, - 0.529976; 0.390029;, - 0.550086; 0.390029;, - 0.217487; 0.068683;, - 0.217487; 0.048194;, - 0.207626; 0.048194;, - 0.207626; 0.068683;, - 0.828607; 1.000000;, - 0.848718; 1.000000;, - 0.848718; 0.729812;, - 0.828607; 0.729812;, - 0.957386; 0.340738;, - 0.970568; 0.340738;, - 0.970568; 0.119469;, - 0.957386; 0.119469;, - 0.970176; 0.610925;, - 0.970176; 0.389656;, - 0.956994; 0.389656;, - 0.956994; 0.610925;, - 0.171541; 0.197462;, - 0.171541; 0.173074;, - 0.158359; 0.173074;, - 0.158359; 0.197462;, - 0.173827; 0.365918;, - 0.197765; 0.365918;, - 0.197765; 0.144650;, - 0.173827; 0.144650;, - 0.171541; 0.221851;, - 0.171541; 0.197462;, - 0.158359; 0.197462;, - 0.158359; 0.221851;, - 0.764201; 0.389656;, - 0.788139; 0.389656;, - 0.788139; 0.168388;, - 0.764201; 0.168388;, - 0.864960; 0.119469;, - 0.846363; 0.119469;, - 0.846363; 0.340738;, - 0.864960; 0.340738;, - 0.883558; 0.340738;, - 0.883558; 0.119469;, - 0.864960; 0.119469;, - 0.864960; 0.340737;, - 0.000000; 0.056068;, - 0.000000; 0.090398;, - 0.018597; 0.090398;, - 0.018597; 0.056068;, - 0.740264; 0.389657;, - 0.706568; 0.389657;, - 0.706568; 0.610925;, - 0.740264; 0.610925;, - 0.172290; 0.057989;, - 0.172290; 0.092320;, - 0.190887; 0.092320;, - 0.190887; 0.057989;, - 0.381350; 0.390029;, - 0.415046; 0.390029;, - 0.415046; 0.168760;, - 0.381350; 0.168760;, - 0.692675; 0.623541;, - 0.692675; 0.611420;, - 0.683201; 0.611420;, - 0.683201; 0.623541;, - 0.683201; 0.611420;, - 0.673728; 0.611420;, - 0.673728; 0.623541;, - 0.683201; 0.623541;, - 0.158359; 0.096109;, - 0.158359; 0.122397;, - 0.170256; 0.122397;, - 0.170256; 0.096109;, - 0.320797; 0.103014;, - 0.320797; 0.076725;, - 0.311324; 0.076725;, - 0.311324; 0.103014;, - 0.807431; 0.116058;, - 0.807431; 0.089770;, - 0.795534; 0.089770;, - 0.795534; 0.116058;, - 0.699728; 0.142099;, - 0.699728; 0.115811;, - 0.690254; 0.115811;, - 0.690254; 0.142099;, - 0.673728; 0.623541;, - 0.673728; 0.611420;, - 0.664254; 0.611420;, - 0.664254; 0.623541;, - 0.664254; 0.611420;, - 0.654780; 0.611420;, - 0.654780; 0.623541;, - 0.664254; 0.623541;, - 0.867315; 0.795297;, - 0.867315; 0.821585;, - 0.879212; 0.821585;, - 0.879212; 0.795297;, - 0.690254; 0.089523;, - 0.690254; 0.115811;, - 0.699728; 0.115811;, - 0.699728; 0.089523;, - 0.170256; 0.148685;, - 0.170256; 0.122397;, - 0.158359; 0.122397;, - 0.158359; 0.148685;, - 0.699728; 0.168388;, - 0.699728; 0.142099;, - 0.690254; 0.142099;, - 0.690254; 0.168388;, - 0.000000; 0.610925;, - 0.173827; 0.610925;, - 0.173827; 0.221851;, - 0.000000; 0.221851;, - 0.654780; 1.000000;, - 0.654780; 0.610925;, - 0.480953; 0.610925;, - 0.480953; 1.000000;, - 0.173827; 0.365918;, - 0.173827; 0.610925;, - 0.347654; 0.610925;, - 0.347654; 0.365918;, - 0.480953; 0.610925;, - 0.240477; 0.610925;, - 0.240477; 1.000000;, - 0.480953; 1.000000;, - 0.654780; 0.754993;, - 0.654780; 1.000000;, - 0.828607; 1.000000;, - 0.828607; 0.754993;, - 0.000000; 1.000000;, - 0.240477; 1.000000;, - 0.240477; 0.610925;, - 0.000000; 0.610925;, - 0.260374; 0.103014;, - 0.285849; 0.103014;, - 0.285849; 0.062377;, - 0.260374; 0.062377;, - 0.311324; 0.103014;, - 0.311324; 0.062377;, - 0.285849; 0.062377;, - 0.285849; 0.103014;, - 0.846343; 0.728200;, - 0.846343; 0.675871;, - 0.820868; 0.675871;, - 0.820868; 0.728200;, - 0.732925; 0.116058;, - 0.732925; 0.168388;, - 0.772811; 0.168388;, - 0.772811; 0.116058;, - 0.846343; 0.675871;, - 0.846343; 0.623541;, - 0.820868; 0.623541;, - 0.820868; 0.675871;, - 0.529642; 0.119841;, - 0.529642; 0.067511;, - 0.489756; 0.067511;, - 0.489756; 0.119841;, - 0.534472; 0.119841;, - 0.559947; 0.119841;, - 0.559947; 0.079204;, - 0.534472; 0.079204;, - 0.838960; 0.078832;, - 0.838960; 0.119469;, - 0.864435; 0.119469;, - 0.864435; 0.078832;, - 0.772811; 0.116058;, - 0.772811; 0.168388;, - 0.798286; 0.168388;, - 0.798286; 0.116058;, - 0.866473; 0.380181;, - 0.866473; 0.432511;, - 0.906359; 0.432511;, - 0.906359; 0.380181;, - 0.172290; 0.092320;, - 0.172290; 0.144650;, - 0.197765; 0.144650;, - 0.197765; 0.092320;, - 0.632652; 0.067511;, - 0.632652; 0.119841;, - 0.672538; 0.119841;, - 0.672538; 0.067511;, - 0.456060; 0.610925;, - 0.564466; 0.610925;, - 0.564466; 0.500477;, - 0.456060; 0.500477;, - 0.672872; 0.500477;, - 0.672872; 0.390029;, - 0.564466; 0.390029;, - 0.564466; 0.500477;, - 0.564466; 0.390029;, - 0.456060; 0.390029;, - 0.456060; 0.500477;, - 0.564466; 0.500477;, - 0.347654; 0.500477;, - 0.347654; 0.610925;, - 0.456060; 0.610925;, - 0.456060; 0.500477;, - 0.672872; 0.500477;, - 0.564466; 0.500477;, - 0.564466; 0.610925;, - 0.672872; 0.610925;, - 0.347654; 0.500477;, - 0.456060; 0.500477;, - 0.456060; 0.390029;, - 0.347654; 0.390029;; - } // End of Cube UV coordinates - MeshMaterialList { // Cube material list - 1; - 180; - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0;; - Material Material { - 0.640000; 0.640000; 0.640000; 1.000000;; - 96.078431; - 0.500000; 0.500000; 0.500000;; - 0.000000; 0.000000; 0.000000;; - TextureFilename {"kraken.png";} - } - } // End of Cube material list - XSkinMeshHeader { - 4; - 12; - 38; - } - SkinWeights { - "Armature_Bone_019"; - 24; - 240, - 241, - 242, - 243, - 244, - 245, - 246, - 247, - 248, - 249, - 250, - 251, - 252, - 253, - 254, - 255, - 256, - 257, - 258, - 259, - 260, - 261, - 262, - 263; - 1.000000, - 1.000000, - 0.744803, - 0.139468, - 1.000000, - 0.806457, - 0.217039, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 0.217039, - 0.744803, - 0.744803, - 0.217039, - 0.806457, - 0.139468, - 1.000000, - 1.000000, - 0.139468, - 0.806457; - 0.594084,-0.000001,-0.000002, 0.000000, - -0.000001,-0.999763, 0.021773, 0.000000, - -0.000002,-0.010342,-0.474855, 0.000000, - 0.397950,-3.347152,-0.175938, 1.000000;; - } // End of Armature_Bone_019 skin weights - SkinWeights { - "Armature_Bone_025"; - 24; - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47; - 1.000000, - 1.000000, - 0.797626, - 0.143942, - 1.000000, - 0.750667, - 0.205468, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 0.205468, - 0.797626, - 0.797626, - 0.205468, - 0.750667, - 0.143942, - 1.000000, - 1.000000, - 0.143942, - 0.750667; - 0.594084,-0.000000, 0.000000, 0.000000, - 0.000000, 0.999556, 0.029781, 0.000000, - -0.000000,-0.014145, 0.474757, 0.000000, - 0.341923,-3.361468, 0.148731, 1.000000;; - } // End of Armature_Bone_025 skin weights - SkinWeights { - "Armature_Bone_026"; - 36; - 98, - 99, - 101, - 102, - 110, - 111, - 112, - 113, - 114, - 115, - 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; - 0.187811, - 0.847882, - 0.254461, - 0.799495, - 0.799495, - 0.187811, - 0.187811, - 0.799495, - 0.254461, - 0.847882, - 0.847882, - 0.254461, - 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.594084,-0.000000, 0.000000, 0.000000, - -0.000000, 0.999880,-0.015521, 0.000000, - -0.000000, 0.007372, 0.474911, 0.000000, - -0.221754,-5.723243, 0.408091, 1.000000;; - } // End of Armature_Bone_026 skin weights - SkinWeights { - "Armature_Bone_009"; - 0; - -0.298598,-0.513591, 0.000000, 0.000000, - 0.864508,-0.502619, 0.000000, 0.000000, - 0.000000, 0.000000, 0.474968, 0.000000, - -0.028655, 0.011716, 0.248773, 1.000000;; - } // End of Armature_Bone_009 skin weights - SkinWeights { - "Armature_Bone_036"; - 36; - 504, - 505, - 506, - 507, - 508, - 509, - 510, - 511, - 512, - 513, - 514, - 515, - 516, - 517, - 518, - 519, - 520, - 521, - 522, - 523, - 524, - 525, - 526, - 527, - 530, - 531, - 533, - 534, - 542, - 543, - 544, - 545, - 546, - 547, - 550, - 551; - 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.208309, - 0.822859, - 0.217497, - 0.821479, - 0.821479, - 0.208309, - 0.208309, - 0.821479, - 0.217497, - 0.822859, - 0.822859, - 0.217497; - -0.000000,-0.594084, 0.000000, 0.000000, - 1.000000, 0.000000,-0.000000, 0.000000, - 0.000000, 0.000000, 0.474968, 0.000000, - -0.787641,-5.334232, 0.295858, 1.000000;; - } // End of Armature_Bone_036 skin weights - SkinWeights { - "Armature_Bone_028"; - 24; - 552, - 553, - 554, - 555, - 556, - 557, - 558, - 559, - 560, - 561, - 562, - 563, - 564, - 565, - 566, - 567, - 568, - 569, - 570, - 571, - 572, - 573, - 574, - 575; - 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.593971,-0.011624, 0.000000, - 1.000000, 0.000000,-0.000000, 0.000000, - 0.000000,-0.009293, 0.474877, 0.000000, - -0.787641,-0.566084, 0.237743, 1.000000;; - } // End of Armature_Bone_028 skin weights - SkinWeights { - "Armature_Bone_038"; - 36; - 360, - 361, - 362, - 363, - 364, - 365, - 366, - 367, - 368, - 369, - 370, - 371, - 372, - 373, - 374, - 375, - 376, - 377, - 378, - 379, - 380, - 381, - 382, - 383, - 386, - 387, - 389, - 390, - 398, - 399, - 400, - 401, - 402, - 403, - 406, - 407; - 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.079924, - 0.021291, - 0.152697, - 0.858870, - 0.858870, - 0.079924, - 0.079924, - 0.858870, - 0.152697, - 0.021291, - 0.021291, - 0.152697; - 0.000000,-0.594084, 0.000000, 0.000000, - 1.000000, 0.000000,-0.000000, 0.000000, - 0.000000, 0.000000, 0.474968, 0.000000, - -0.208717,-5.355742, 0.295858, 1.000000;; - } // End of Armature_Bone_038 skin weights - SkinWeights { - "Armature_Bone_017"; - 24; - 216, - 217, - 218, - 219, - 220, - 221, - 222, - 223, - 224, - 225, - 226, - 227, - 228, - 229, - 230, - 231, - 232, - 233, - 234, - 235, - 236, - 237, - 238, - 239; - 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.594084,-0.000001, 0.000000, 0.000000, - 0.000001,-1.000000, 0.000000, 0.000000, - 0.000000, 0.000000, 0.474968, 0.000000, - -0.397951,-0.990082, 0.248773, 1.000000;; - } // End of Armature_Bone_017 skin weights - SkinWeights { - "Armature_Bone_027"; - 36; - 26, - 27, - 29, - 30, - 38, - 39, - 40, - 41, - 42, - 43, - 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; - 0.202374, - 0.856058, - 0.249333, - 0.794532, - 0.794532, - 0.202374, - 0.202374, - 0.794532, - 0.249333, - 0.856058, - 0.856058, - 0.249333, - 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.594084,-0.000000, 0.000000, 0.000000, - 0.000000, 0.999880,-0.015521, 0.000000, - -0.000000, 0.007372, 0.474911, 0.000000, - 0.341923,-5.713981, 0.407947, 1.000000;; - } // End of Armature_Bone_027 skin weights - SkinWeights { - "Armature_Bone_004"; - 12; - 696, - 699, - 700, - 701, - 704, - 705, - 714, - 715, - 716, - 717, - 718, - 719; - 0.032301, - 0.999143, - 0.006882, - 0.166457, - 0.032301, - 0.006882, - 0.166457, - 0.999143, - 0.006882, - 0.032301, - 0.999143, - 0.166457; - 0.478490,-0.352114, 0.000000, 0.000000, - 0.592700, 0.805424, 0.000000, 0.000000, - 0.000000, 0.000000, 0.474968, 0.000000, - -0.014731,-0.027228, 0.248773, 1.000000;; - } // End of Armature_Bone_004 skin weights - SkinWeights { - "Armature_Bone_013"; - 24; - 648, - 649, - 650, - 651, - 652, - 653, - 654, - 655, - 656, - 657, - 658, - 659, - 660, - 661, - 662, - 663, - 664, - 665, - 666, - 667, - 668, - 669, - 670, - 671; - 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.573387, 0.155410,-0.003333, 0.000000, - -0.123592, 0.436888,-0.890985, 0.000000, - -0.109540, 0.408775, 0.215635, 0.000000, - -0.049459, 0.201826, 0.140237, 1.000000;; - } // End of Armature_Bone_013 skin weights - SkinWeights { - "Armature_Bone_007"; - 15; - 697, - 700, - 701, - 702, - 703, - 705, - 706, - 707, - 708, - 709, - 710, - 713, - 714, - 716, - 719; - 0.192089, - 0.001632, - 0.037916, - 0.774988, - 0.373446, - 0.001632, - 0.373446, - 0.192089, - 0.192089, - 0.373446, - 0.774988, - 0.774988, - 0.037916, - 0.001632, - 0.037916; - -0.501974,-0.317739, 0.000000, 0.000000, - 0.534838,-0.844954, 0.000000, 0.000000, - 0.000000, 0.000000, 0.474968, 0.000000, - -0.020010, 0.023622, 0.248773, 1.000000;; - } // End of Armature_Bone_007 skin weights - SkinWeights { - "Armature_Bone_003"; - 12; - 700, - 701, - 702, - 703, - 705, - 706, - 709, - 710, - 713, - 714, - 716, - 719; - 0.092737, - 0.682199, - 0.020861, - 0.020586, - 0.092737, - 0.020586, - 0.020586, - 0.020861, - 0.020861, - 0.682199, - 0.092737, - 0.682199; - 0.557316,-0.205755, 0.000000, 0.000000, - 0.346339, 0.938109, 0.000000, 0.000000, - 0.000000, 0.000000, 0.474968, 0.000000, - -0.006610,-0.030244, 0.248773, 1.000000;; - } // End of Armature_Bone_003 skin weights - SkinWeights { - "Armature_Bone_030"; - 24; - 408, - 409, - 410, - 411, - 412, - 413, - 414, - 415, - 416, - 417, - 418, - 419, - 420, - 421, - 422, - 423, - 424, - 425, - 426, - 427, - 428, - 429, - 430, - 431; - 1.000000, - 1.000000, - 0.513476, - 0.533863, - 1.000000, - 0.851315, - 0.673375, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 0.673375, - 0.513476, - 0.513476, - 0.673375, - 0.851315, - 0.533863, - 1.000000, - 1.000000, - 0.533863, - 0.851315; - 0.000000,-0.593971,-0.011624, 0.000000, - 1.000000, 0.000000,-0.000000, 0.000000, - 0.000000,-0.009293, 0.474877, 0.000000, - -0.208717,-0.587591, 0.237322, 1.000000;; - } // End of Armature_Bone_030 skin weights - SkinWeights { - "Armature_Bone_032"; - 24; - 528, - 529, - 530, - 531, - 532, - 533, - 534, - 535, - 536, - 537, - 538, - 539, - 540, - 541, - 542, - 543, - 544, - 545, - 546, - 547, - 548, - 549, - 550, - 551; - 1.000000, - 1.000000, - 0.791691, - 0.177141, - 1.000000, - 0.782503, - 0.178521, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 0.178521, - 0.791691, - 0.791691, - 0.178521, - 0.782503, - 0.177141, - 1.000000, - 1.000000, - 0.177141, - 0.782503; - -0.000000,-0.594084, 0.000000, 0.000000, - 1.000000, 0.000000,-0.000000, 0.000000, - 0.000000, 0.000000, 0.474968, 0.000000, - -0.787641,-2.967355, 0.295858, 1.000000;; - } // End of Armature_Bone_032 skin weights - SkinWeights { - "Armature_Bone_039"; - 33; - 314, - 317, - 318, - 326, - 327, - 328, - 329, - 330, - 335, - 336, - 337, - 338, - 339, - 340, - 341, - 342, - 343, - 344, - 345, - 346, - 347, - 348, - 349, - 350, - 351, - 352, - 353, - 354, - 355, - 356, - 357, - 358, - 359; - 0.114588, - 0.095983, - 0.789686, - 0.789686, - 0.114588, - 0.114588, - 0.789686, - 0.095983, - 0.095983, - 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.594084, 0.000000, 0.000000, - 1.000000,-0.000000,-0.000000, 0.000000, - 0.000000, 0.000000, 0.474968, 0.000000, - 0.299895,-5.345742, 0.295858, 1.000000;; - } // End of Armature_Bone_039 skin weights - SkinWeights { - "Armature_Bone_002"; - 21; - 696, - 697, - 699, - 700, - 701, - 702, - 703, - 704, - 705, - 706, - 707, - 708, - 709, - 710, - 713, - 714, - 715, - 716, - 717, - 718, - 719; - 0.967699, - 0.294983, - 0.000857, - 0.898749, - 0.113428, - 0.023918, - 0.290408, - 0.967699, - 0.898749, - 0.290408, - 0.294983, - 0.294983, - 0.290408, - 0.023918, - 0.023918, - 0.113428, - 0.000857, - 0.898749, - 0.967699, - 0.000857, - 0.113428; - 0.577064, 0.141186, 0.000000, 0.000000, - -0.237653, 0.971350, 0.000000, 0.000000, - 0.000000, 0.000000, 0.474968, 0.000000, - 0.011438,-0.028767, 0.248773, 1.000000;; - } // End of Armature_Bone_002 skin weights - SkinWeights { - "Armature_Bone_006"; - 12; - 697, - 698, - 702, - 703, - 706, - 707, - 708, - 709, - 710, - 711, - 712, - 713; - 0.512928, - 1.000000, - 0.180233, - 0.315560, - 0.315560, - 0.512928, - 0.512928, - 0.315560, - 0.180233, - 1.000000, - 1.000000, - 0.180233; - -0.554288,-0.213777, 0.000000, 0.000000, - 0.359843,-0.933013, 0.000000, 0.000000, - 0.000000, 0.000000, 0.474968, 0.000000, - -0.015021, 0.027069, 0.248773, 1.000000;; - } // End of Armature_Bone_006 skin weights - SkinWeights { - "Armature_Bone_035"; - 24; - 312, - 313, - 314, - 315, - 316, - 317, - 318, - 319, - 320, - 321, - 322, - 323, - 324, - 325, - 326, - 327, - 328, - 329, - 330, - 331, - 332, - 333, - 334, - 335; - 1.000000, - 1.000000, - 0.885412, - 1.000000, - 1.000000, - 0.904017, - 0.210314, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 0.210314, - 0.885412, - 0.885412, - 0.210314, - 0.904017, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 0.904017; - 0.000000,-0.594084, 0.000000, 0.000000, - 1.000000,-0.000000,-0.000000, 0.000000, - 0.000000, 0.000000, 0.474968, 0.000000, - 0.299895,-2.978865, 0.295858, 1.000000;; - } // End of Armature_Bone_035 skin weights - SkinWeights { - "Armature_Bone_024"; - 24; - 96, - 97, - 98, - 99, - 100, - 101, - 102, - 103, - 104, - 105, - 106, - 107, - 108, - 109, - 110, - 111, - 112, - 113, - 114, - 115, - 116, - 117, - 118, - 119; - 1.000000, - 1.000000, - 0.812189, - 0.152118, - 1.000000, - 0.745539, - 0.200505, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 0.200505, - 0.812189, - 0.812189, - 0.200505, - 0.745539, - 0.152118, - 1.000000, - 1.000000, - 0.152118, - 0.745539; - 0.594084,-0.000000, 0.000000, 0.000000, - -0.000000, 0.999557, 0.029781, 0.000000, - -0.000000,-0.014145, 0.474757, 0.000000, - -0.221754,-3.370728, 0.148455, 1.000000;; - } // End of Armature_Bone_024 skin weights - SkinWeights { - "Armature_Bone"; - 24; - 624, - 625, - 626, - 627, - 628, - 629, - 630, - 631, - 632, - 633, - 634, - 635, - 636, - 637, - 638, - 639, - 640, - 641, - 642, - 643, - 644, - 645, - 646, - 647; - 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.035910, 0.592994, 0.002193, 0.000000, - 0.000333, 0.003678,-0.999993, 0.000000, - -0.474099, 0.028710,-0.000052, 0.000000, - -0.290718,-0.685074, 0.028045, 1.000000;; - } // End of Armature_Bone skin weights - SkinWeights { - "Armature_Bone_037"; - 36; - 458, - 459, - 461, - 462, - 470, - 471, - 472, - 473, - 474, - 475, - 478, - 479, - 480, - 481, - 482, - 483, - 484, - 485, - 486, - 487, - 488, - 489, - 490, - 491, - 492, - 493, - 494, - 495, - 496, - 497, - 498, - 499, - 500, - 501, - 502, - 503; - 0.136348, - 0.750024, - 0.307346, - 0.881957, - 0.881957, - 0.136348, - 0.136348, - 0.881957, - 0.307346, - 0.750024, - 0.750024, - 0.307346, - 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.594084,-0.000000, 0.000000, - 1.000000, 0.000000, 0.000000, 0.000000, - -0.000000,-0.000000, 0.474968, 0.000000, - 0.836836,-5.326287, 0.295857, 1.000000;; - } // End of Armature_Bone_037 skin weights - SkinWeights { - "Armature_Bone_031"; - 24; - 288, - 289, - 290, - 291, - 292, - 293, - 294, - 295, - 296, - 297, - 298, - 299, - 300, - 301, - 302, - 303, - 304, - 305, - 306, - 307, - 308, - 309, - 310, - 311; - 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.593971,-0.011624, 0.000000, - 1.000000,-0.000000,-0.000000, 0.000000, - 0.000000,-0.009293, 0.474877, 0.000000, - 0.299895,-0.577592, 0.237518, 1.000000;; - } // End of Armature_Bone_031 skin weights - SkinWeights { - "Armature_Bone_029"; - 24; - 432, - 433, - 434, - 435, - 436, - 437, - 438, - 439, - 440, - 441, - 442, - 443, - 444, - 445, - 446, - 447, - 448, - 449, - 450, - 451, - 452, - 453, - 454, - 455; - 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.593971,-0.011624, 0.000000, - 1.000000, 0.000000, 0.000000, 0.000000, - 0.000000,-0.009293, 0.474877, 0.000000, - 0.836836,-0.558143, 0.237899, 1.000000;; - } // End of Armature_Bone_029 skin weights - SkinWeights { - "Armature_Bone_011"; - 24; - 576, - 577, - 578, - 579, - 580, - 581, - 582, - 583, - 584, - 585, - 586, - 587, - 588, - 589, - 590, - 591, - 592, - 593, - 594, - 595, - 596, - 597, - 598, - 599; - 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.582050, 0.118963, 0.001408, 0.000000, - -0.000550,-0.009142, 0.999958, 0.000000, - 0.095117,-0.465327,-0.004202, 0.000000, - 0.054023,-0.242588,-0.032851, 1.000000;; - } // End of Armature_Bone_011 skin weights - SkinWeights { - "Armature_Bone_016"; - 24; - 144, - 145, - 146, - 147, - 148, - 149, - 150, - 151, - 152, - 153, - 154, - 155, - 156, - 157, - 158, - 159, - 160, - 161, - 162, - 163, - 164, - 165, - 166, - 167; - 0.924728, - 0.536573, - 1.000000, - 1.000000, - 0.954776, - 1.000000, - 1.000000, - 0.532618, - 0.924728, - 0.954776, - 0.532618, - 0.536573, - 0.536573, - 0.532618, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 0.954776, - 0.924728, - 1.000000, - 1.000000; - -0.594084, 0.000000, 0.000000, 0.000000, - -0.000000,-1.000000, 0.000000, 0.000000, - 0.000000, 0.000000, 0.474968, 0.000000, - 0.224655,-1.022829, 0.248773, 1.000000;; - } // End of Armature_Bone_016 skin weights - SkinWeights { - "Armature_Bone_033"; - 24; - 456, - 457, - 458, - 459, - 460, - 461, - 462, - 463, - 464, - 465, - 466, - 467, - 468, - 469, - 470, - 471, - 472, - 473, - 474, - 475, - 476, - 477, - 478, - 479; - 1.000000, - 1.000000, - 0.863652, - 0.249976, - 1.000000, - 0.692654, - 0.118043, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 0.118043, - 0.863652, - 0.863652, - 0.118043, - 0.692654, - 0.249976, - 1.000000, - 1.000000, - 0.249976, - 0.692654; - -0.000000,-0.594084,-0.000000, 0.000000, - 1.000000, 0.000000, 0.000000, 0.000000, - -0.000000,-0.000000, 0.474968, 0.000000, - 0.836836,-2.959410, 0.295857, 1.000000;; - } // End of Armature_Bone_033 skin weights - SkinWeights { - "Armature_Bone_021"; - 36; - 242, - 243, - 245, - 246, - 254, - 255, - 256, - 257, - 258, - 259, - 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; - 0.255197, - 0.860532, - 0.193543, - 0.782961, - 0.782961, - 0.255197, - 0.255197, - 0.782961, - 0.193543, - 0.860532, - 0.860532, - 0.193543, - 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.594084,-0.000001, 0.000000, 0.000000, - 0.000001,-1.000000,-0.000003, 0.000000, - 0.000000,-0.000002, 0.474968, 0.000000, - -0.397951,-5.719720, 0.300525, 1.000000;; - } // End of Armature_Bone_021 skin weights - SkinWeights { - "Armature_Bone_034"; - 36; - 384, - 385, - 386, - 387, - 388, - 389, - 390, - 391, - 392, - 393, - 394, - 395, - 396, - 397, - 398, - 399, - 400, - 401, - 402, - 403, - 404, - 405, - 406, - 407, - 410, - 411, - 413, - 414, - 422, - 423, - 424, - 425, - 426, - 427, - 430, - 431; - 1.000000, - 1.000000, - 0.920076, - 0.978709, - 1.000000, - 0.847303, - 0.141130, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 0.141130, - 0.920076, - 0.920076, - 0.141130, - 0.847303, - 0.978709, - 1.000000, - 1.000000, - 0.978709, - 0.847303, - 0.486524, - 0.466137, - 0.148685, - 0.326625, - 0.326625, - 0.486524, - 0.486524, - 0.326625, - 0.148685, - 0.466137, - 0.466137, - 0.148685; - 0.000000,-0.594084, 0.000000, 0.000000, - 1.000000, 0.000000,-0.000000, 0.000000, - 0.000000, 0.000000, 0.474968, 0.000000, - -0.208717,-2.988865, 0.295858, 1.000000;; - } // End of Armature_Bone_034 skin weights - SkinWeights { - "Armature_Bone_023"; - 24; - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23; - 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.594084,-0.000000, 0.000000, 0.000000, - 0.000000, 1.000000, 0.000000, 0.000000, - 0.000000, 0.000000, 0.474968, 0.000000, - 0.341923,-0.945232, 0.248773, 1.000000;; - } // End of Armature_Bone_023 skin weights - SkinWeights { - "Armature_Bone_005"; - 12; - 144, - 145, - 148, - 151, - 152, - 153, - 154, - 155, - 156, - 157, - 164, - 165; - 0.075272, - 0.463427, - 0.045224, - 0.467382, - 0.075272, - 0.045224, - 0.467382, - 0.463427, - 0.463427, - 0.467382, - 0.045224, - 0.075272; - -0.580536, 0.126154, 0.000000, 0.000000, - -0.212350,-0.977194, 0.000000, 0.000000, - 0.000000, 0.000000, 0.474968, 0.000000, - 0.002335, 0.030869, 0.248773, 1.000000;; - } // End of Armature_Bone_005 skin weights - SkinWeights { - "Armature_Bone_022"; - 24; - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95; - 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.594084,-0.000000, 0.000000, 0.000000, - -0.000000, 1.000000, 0.000000, 0.000000, - 0.000000, 0.000000, 0.474968, 0.000000, - -0.221754,-0.954496, 0.248773, 1.000000;; - } // End of Armature_Bone_022 skin weights - SkinWeights { - "Armature_Bone_010"; - 24; - 600, - 601, - 602, - 603, - 604, - 605, - 606, - 607, - 608, - 609, - 610, - 611, - 612, - 613, - 614, - 615, - 616, - 617, - 618, - 619, - 620, - 621, - 622, - 623; - 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.581878,-0.119809,-0.000000, 0.000000, - 0.000000,-0.000000, 1.000000, 0.000000, - -0.095787,-0.465209, 0.000000, 0.000000, - -0.045984,-0.244524,-0.030661, 1.000000;; - } // End of Armature_Bone_010 skin weights - SkinWeights { - "Armature_Bone_001"; - 0; - 0.000000,-0.594084, 0.000000, 0.000000, - 1.000000, 0.000000, 0.000000, 0.000000, - 0.000000, 0.000000, 0.474968, 0.000000, - -0.030661, 0.701286, 0.248773, 1.000000;; - } // End of Armature_Bone_001 skin weights - SkinWeights { - "Armature_Bone_018"; - 24; - 168, - 169, - 170, - 171, - 172, - 173, - 174, - 175, - 176, - 177, - 178, - 179, - 180, - 181, - 182, - 183, - 184, - 185, - 186, - 187, - 188, - 189, - 190, - 191; - 1.000000, - 1.000000, - 0.894833, - 1.000000, - 1.000000, - 0.893722, - 0.202856, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 0.202856, - 0.894833, - 0.894833, - 0.202856, - 0.893722, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 0.893722; - 0.594084, 0.000000,-0.000002, 0.000000, - 0.000000,-0.999763, 0.021773, 0.000000, - -0.000002,-0.010342,-0.474855, 0.000000, - -0.224656,-3.379891,-0.175223, 1.000000;; - } // End of Armature_Bone_018 skin weights - SkinWeights { - "Armature_Bone_012"; - 24; - 672, - 673, - 674, - 675, - 676, - 677, - 678, - 679, - 680, - 681, - 682, - 683, - 684, - 685, - 686, - 687, - 688, - 689, - 690, - 691, - 692, - 693, - 694, - 695; - 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.572282, 0.135239,-0.084498, 0.000000, - -0.005381,-0.513396,-0.858135, 0.000000, - -0.127467, 0.392992,-0.234316, 0.000000, - -0.062481, 0.222551,-0.097024, 1.000000;; - } // End of Armature_Bone_012 skin weights - SkinWeights { - "Armature_Bone_008"; - 0; - 0.174745,-0.567803, 0.000000, 0.000000, - 0.955762, 0.294142, 0.000000, 0.000000, - 0.000000, 0.000000, 0.474968, 0.000000, - -0.028048,-0.013104, 0.248773, 1.000000;; - } // End of Armature_Bone_008 skin weights - SkinWeights { - "Armature_Bone_020"; - 33; - 170, - 173, - 174, - 182, - 183, - 184, - 185, - 186, - 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; - 0.105167, - 0.106278, - 0.797144, - 0.797144, - 0.105167, - 0.105167, - 0.797144, - 0.106278, - 0.106278, - 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.594084, 0.000000, 0.000000, 0.000000, - -0.000000,-1.000000,-0.000003, 0.000000, - 0.000000,-0.000002, 0.474968, 0.000000, - 0.224655,-5.752468, 0.300525, 1.000000;; - } // End of Armature_Bone_020 skin weights - } // End of Cube mesh - } // End of Cube - } // End of Armature -} // End of Root -AnimationSet Global { - Animation { - {Armature} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 1;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 2;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 3;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 4;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 5;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 6;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 7;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 8;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 9;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 10;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 11;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 12;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 13;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 14;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 15;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 16;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 17;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 18;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 19;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 20;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 21;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 22;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 23;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 24;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 25;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 26;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 27;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 28;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 29;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 30;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 31;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 32;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 33;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 34;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 35;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 36;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 37;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 38;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 39;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 40;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 41;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 42;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 43;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 44;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 45;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 46;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 47;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 48;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 49;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 50;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 51;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 52;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 53;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 54;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 55;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 56;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 57;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 58;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 59;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 60;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 61;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 62;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 63;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 64;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 65;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 66;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 67;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 68;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 69;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 70;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 71;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 72;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 73;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 74;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 75;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 76;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 77;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 78;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 79;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 80;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 81;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 82;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 83;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 84;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 85;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 86;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 87;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 88;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 89;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 90;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 91;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 92;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 93;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 94;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 95;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 96;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 97;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 98;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 99;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 100;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 101;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 102;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 103;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 104;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 105;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 106;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 107;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 108;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 109;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 110;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 111;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 112;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 113;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 114;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 115;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 116;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 117;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 118;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 119;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 120;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 121;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 122;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 123;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 124;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 125;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 126;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 127;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 128;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 129;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 130;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 131;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 132;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 133;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 134;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 135;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 136;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 137;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 138;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 139;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 140;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 141;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 142;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 143;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 144;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 145;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 146;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 147;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 148;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 149;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 150;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 151;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 152;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 153;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 154;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 155;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 156;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 157;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 158;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 159;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 160;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 161;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 162;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 163;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 164;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 165;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 166;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 167;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 168;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 169;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 170;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 171;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 172;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 173;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 174;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 175;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 176;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 177;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 178;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 179;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 180;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 181;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 182;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 183;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 184;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 185;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 186;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 187;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 188;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 189;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 190;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 191;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 192;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 193;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 194;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 195;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 196;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 197;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 198;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 199;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 200;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 201;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 202;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 203;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 204;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 205;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 206;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 207;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 208;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 209;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 210;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 211;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 212;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 213;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 214;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 215;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 216;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 217;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 218;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 219;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 220;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 221;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 222;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 223;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 224;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 225;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 226;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 227;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 228;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 229;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 230;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 231;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 232;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 233;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 234;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 235;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 236;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 237;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 238;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 239;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 240;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 241;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 242;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 243;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 244;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 245;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 246;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 247;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 248;4;-0.003379, 0.000000, 0.000000, 0.999994;;, - 249;4;-0.003379, 0.000000, 0.000000, 0.999994;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3; 0.802051, 0.072915, 0.612726;;, - 1;3; 0.802051, 0.072915, 0.612726;;, - 2;3; 0.802051, 0.072915, 0.612726;;, - 3;3; 0.802051, 0.072915, 0.612726;;, - 4;3; 0.802051, 0.072915, 0.612726;;, - 5;3; 0.802051, 0.072915, 0.612726;;, - 6;3; 0.802051, 0.072915, 0.612726;;, - 7;3; 0.802051, 0.072915, 0.612726;;, - 8;3; 0.802051, 0.072915, 0.612726;;, - 9;3; 0.802051, 0.072915, 0.612726;;, - 10;3; 0.802051, 0.072915, 0.612726;;, - 11;3; 0.802051, 0.072915, 0.612726;;, - 12;3; 0.802051, 0.072915, 0.612726;;, - 13;3; 0.802051, 0.072915, 0.612726;;, - 14;3; 0.802051, 0.072915, 0.612726;;, - 15;3; 0.802051, 0.072915, 0.612726;;, - 16;3; 0.802051, 0.072915, 0.612726;;, - 17;3; 0.802051, 0.072915, 0.612726;;, - 18;3; 0.802051, 0.072915, 0.612726;;, - 19;3; 0.802051, 0.072915, 0.612726;;, - 20;3; 0.802051, 0.072915, 0.612726;;, - 21;3; 0.802051, 0.072915, 0.612726;;, - 22;3; 0.802051, 0.072915, 0.612726;;, - 23;3; 0.802051, 0.072915, 0.612726;;, - 24;3; 0.802051, 0.072915, 0.612726;;, - 25;3; 0.802051, 0.072915, 0.612726;;, - 26;3; 0.802051, 0.072915, 0.612726;;, - 27;3; 0.802051, 0.072915, 0.612726;;, - 28;3; 0.802051, 0.072915, 0.612726;;, - 29;3; 0.802051, 0.072915, 0.612726;;, - 30;3; 0.802051, 0.072915, 0.612726;;, - 31;3; 0.802051, 0.072915, 0.612726;;, - 32;3; 0.802051, 0.072915, 0.612726;;, - 33;3; 0.802051, 0.072915, 0.612726;;, - 34;3; 0.802051, 0.072915, 0.612726;;, - 35;3; 0.802051, 0.072915, 0.612726;;, - 36;3; 0.802051, 0.072915, 0.612726;;, - 37;3; 0.802051, 0.072915, 0.612726;;, - 38;3; 0.802051, 0.072915, 0.612726;;, - 39;3; 0.802051, 0.072915, 0.612726;;, - 40;3; 0.802051, 0.072915, 0.612726;;, - 41;3; 0.802051, 0.072915, 0.612726;;, - 42;3; 0.802051, 0.072915, 0.612726;;, - 43;3; 0.802051, 0.072915, 0.612726;;, - 44;3; 0.802051, 0.072915, 0.612726;;, - 45;3; 0.802051, 0.072915, 0.612726;;, - 46;3; 0.802051, 0.072915, 0.612726;;, - 47;3; 0.802051, 0.072915, 0.612726;;, - 48;3; 0.802051, 0.072915, 0.612726;;, - 49;3; 0.802051, 0.072915, 0.612726;;, - 50;3; 0.802051, 0.072915, 0.612726;;, - 51;3; 0.802051, 0.072915, 0.612726;;, - 52;3; 0.802051, 0.072915, 0.612726;;, - 53;3; 0.802051, 0.072915, 0.612726;;, - 54;3; 0.802051, 0.072915, 0.612726;;, - 55;3; 0.802051, 0.072915, 0.612726;;, - 56;3; 0.802051, 0.072915, 0.612726;;, - 57;3; 0.802051, 0.072915, 0.612726;;, - 58;3; 0.802051, 0.072915, 0.612726;;, - 59;3; 0.802051, 0.072915, 0.612726;;, - 60;3; 0.802051, 0.072915, 0.612726;;, - 61;3; 0.802051, 0.072915, 0.612726;;, - 62;3; 0.802051, 0.072915, 0.612726;;, - 63;3; 0.802051, 0.072915, 0.612726;;, - 64;3; 0.802051, 0.072915, 0.612726;;, - 65;3; 0.802051, 0.072915, 0.612726;;, - 66;3; 0.802051, 0.072915, 0.612726;;, - 67;3; 0.802051, 0.072915, 0.612726;;, - 68;3; 0.802051, 0.072915, 0.612726;;, - 69;3; 0.802051, 0.072915, 0.612726;;, - 70;3; 0.802051, 0.072915, 0.612726;;, - 71;3; 0.802051, 0.072915, 0.612726;;, - 72;3; 0.802051, 0.072915, 0.612726;;, - 73;3; 0.802051, 0.072915, 0.612726;;, - 74;3; 0.802051, 0.072915, 0.612726;;, - 75;3; 0.802051, 0.072915, 0.612726;;, - 76;3; 0.802051, 0.072915, 0.612726;;, - 77;3; 0.802051, 0.072915, 0.612726;;, - 78;3; 0.802051, 0.072915, 0.612726;;, - 79;3; 0.802051, 0.072915, 0.612726;;, - 80;3; 0.802051, 0.072915, 0.612726;;, - 81;3; 0.802051, 0.072915, 0.612726;;, - 82;3; 0.802051, 0.072915, 0.612726;;, - 83;3; 0.802051, 0.072915, 0.612726;;, - 84;3; 0.802051, 0.072915, 0.612726;;, - 85;3; 0.802051, 0.072915, 0.612726;;, - 86;3; 0.802051, 0.072915, 0.612726;;, - 87;3; 0.802051, 0.072915, 0.612726;;, - 88;3; 0.802051, 0.072915, 0.612726;;, - 89;3; 0.802051, 0.072915, 0.612726;;, - 90;3; 0.802051, 0.072915, 0.612726;;, - 91;3; 0.802051, 0.072915, 0.612726;;, - 92;3; 0.802051, 0.072915, 0.612726;;, - 93;3; 0.802051, 0.072915, 0.612726;;, - 94;3; 0.802051, 0.072915, 0.612726;;, - 95;3; 0.802051, 0.072915, 0.612726;;, - 96;3; 0.802051, 0.072915, 0.612726;;, - 97;3; 0.802051, 0.072915, 0.612726;;, - 98;3; 0.802051, 0.072915, 0.612726;;, - 99;3; 0.802051, 0.072915, 0.612726;;, - 100;3; 0.802051, 0.072915, 0.612726;;, - 101;3; 0.802051, 0.072915, 0.612726;;, - 102;3; 0.802051, 0.072915, 0.612726;;, - 103;3; 0.802051, 0.072915, 0.612726;;, - 104;3; 0.802051, 0.072915, 0.612726;;, - 105;3; 0.802051, 0.072915, 0.612726;;, - 106;3; 0.802051, 0.072915, 0.612726;;, - 107;3; 0.802051, 0.072915, 0.612726;;, - 108;3; 0.802051, 0.072915, 0.612726;;, - 109;3; 0.802051, 0.072915, 0.612726;;, - 110;3; 0.802051, 0.072915, 0.612726;;, - 111;3; 0.802051, 0.072915, 0.612726;;, - 112;3; 0.802051, 0.072915, 0.612726;;, - 113;3; 0.802051, 0.072915, 0.612726;;, - 114;3; 0.802051, 0.072915, 0.612726;;, - 115;3; 0.802051, 0.072915, 0.612726;;, - 116;3; 0.802051, 0.072915, 0.612726;;, - 117;3; 0.802051, 0.072915, 0.612726;;, - 118;3; 0.802051, 0.072915, 0.612726;;, - 119;3; 0.802051, 0.072915, 0.612726;;, - 120;3; 0.802051, 0.072915, 0.612726;;, - 121;3; 0.802051, 0.072915, 0.612726;;, - 122;3; 0.802051, 0.072915, 0.612726;;, - 123;3; 0.802051, 0.072915, 0.612726;;, - 124;3; 0.802051, 0.072915, 0.612726;;, - 125;3; 0.802051, 0.072915, 0.612726;;, - 126;3; 0.802051, 0.072915, 0.612726;;, - 127;3; 0.802051, 0.072915, 0.612726;;, - 128;3; 0.802051, 0.072915, 0.612726;;, - 129;3; 0.802051, 0.072915, 0.612726;;, - 130;3; 0.802051, 0.072915, 0.612726;;, - 131;3; 0.802051, 0.072915, 0.612726;;, - 132;3; 0.802051, 0.072915, 0.612726;;, - 133;3; 0.802051, 0.072915, 0.612726;;, - 134;3; 0.802051, 0.072915, 0.612726;;, - 135;3; 0.802051, 0.072915, 0.612726;;, - 136;3; 0.802051, 0.072915, 0.612726;;, - 137;3; 0.802051, 0.072915, 0.612726;;, - 138;3; 0.802051, 0.072915, 0.612726;;, - 139;3; 0.802051, 0.072915, 0.612726;;, - 140;3; 0.802051, 0.072915, 0.612726;;, - 141;3; 0.802051, 0.072915, 0.612726;;, - 142;3; 0.802051, 0.072915, 0.612726;;, - 143;3; 0.802051, 0.072915, 0.612726;;, - 144;3; 0.802051, 0.072915, 0.612726;;, - 145;3; 0.802051, 0.072915, 0.612726;;, - 146;3; 0.802051, 0.072915, 0.612726;;, - 147;3; 0.802051, 0.072915, 0.612726;;, - 148;3; 0.802051, 0.072915, 0.612726;;, - 149;3; 0.802051, 0.072915, 0.612726;;, - 150;3; 0.802051, 0.072915, 0.612726;;, - 151;3; 0.802051, 0.072915, 0.612726;;, - 152;3; 0.802051, 0.072915, 0.612726;;, - 153;3; 0.802051, 0.072915, 0.612726;;, - 154;3; 0.802051, 0.072915, 0.612726;;, - 155;3; 0.802051, 0.072915, 0.612726;;, - 156;3; 0.802051, 0.072915, 0.612726;;, - 157;3; 0.802051, 0.072915, 0.612726;;, - 158;3; 0.802051, 0.072915, 0.612726;;, - 159;3; 0.802051, 0.072915, 0.612726;;, - 160;3; 0.802051, 0.072915, 0.612726;;, - 161;3; 0.802051, 0.072915, 0.612726;;, - 162;3; 0.802051, 0.072915, 0.612726;;, - 163;3; 0.802051, 0.072915, 0.612726;;, - 164;3; 0.802051, 0.072915, 0.612726;;, - 165;3; 0.802051, 0.072915, 0.612726;;, - 166;3; 0.802051, 0.072915, 0.612726;;, - 167;3; 0.802051, 0.072915, 0.612726;;, - 168;3; 0.802051, 0.072915, 0.612726;;, - 169;3; 0.802051, 0.072915, 0.612726;;, - 170;3; 0.802051, 0.072915, 0.612726;;, - 171;3; 0.802051, 0.072915, 0.612726;;, - 172;3; 0.802051, 0.072915, 0.612726;;, - 173;3; 0.802051, 0.072915, 0.612726;;, - 174;3; 0.802051, 0.072915, 0.612726;;, - 175;3; 0.802051, 0.072915, 0.612726;;, - 176;3; 0.802051, 0.072915, 0.612726;;, - 177;3; 0.802051, 0.072915, 0.612726;;, - 178;3; 0.802051, 0.072915, 0.612726;;, - 179;3; 0.802051, 0.072915, 0.612726;;, - 180;3; 0.802051, 0.072915, 0.612726;;, - 181;3; 0.802051, 0.072915, 0.612726;;, - 182;3; 0.802051, 0.072915, 0.612726;;, - 183;3; 0.802051, 0.072915, 0.612726;;, - 184;3; 0.802051, 0.072915, 0.612726;;, - 185;3; 0.802051, 0.072915, 0.612726;;, - 186;3; 0.802051, 0.072915, 0.612726;;, - 187;3; 0.802051, 0.072915, 0.612726;;, - 188;3; 0.802051, 0.072915, 0.612726;;, - 189;3; 0.802051, 0.072915, 0.612726;;, - 190;3; 0.802051, 0.072915, 0.612726;;, - 191;3; 0.802051, 0.072915, 0.612726;;, - 192;3; 0.802051, 0.072915, 0.612726;;, - 193;3; 0.802051, 0.072915, 0.612726;;, - 194;3; 0.802051, 0.072915, 0.612726;;, - 195;3; 0.802051, 0.072915, 0.612726;;, - 196;3; 0.802051, 0.072915, 0.612726;;, - 197;3; 0.802051, 0.072915, 0.612726;;, - 198;3; 0.802051, 0.072915, 0.612726;;, - 199;3; 0.802051, 0.072915, 0.612726;;, - 200;3; 0.802051, 0.072915, 0.612726;;, - 201;3; 0.802051, 0.072915, 0.612726;;, - 202;3; 0.802051, 0.072915, 0.612726;;, - 203;3; 0.802051, 0.072915, 0.612726;;, - 204;3; 0.802051, 0.072915, 0.612726;;, - 205;3; 0.802051, 0.072915, 0.612726;;, - 206;3; 0.802051, 0.072915, 0.612726;;, - 207;3; 0.802051, 0.072915, 0.612726;;, - 208;3; 0.802051, 0.072915, 0.612726;;, - 209;3; 0.802051, 0.072915, 0.612726;;, - 210;3; 0.802051, 0.072915, 0.612726;;, - 211;3; 0.802051, 0.072915, 0.612726;;, - 212;3; 0.802051, 0.072915, 0.612726;;, - 213;3; 0.802051, 0.072915, 0.612726;;, - 214;3; 0.802051, 0.072915, 0.612726;;, - 215;3; 0.802051, 0.072915, 0.612726;;, - 216;3; 0.802051, 0.072915, 0.612726;;, - 217;3; 0.802051, 0.072915, 0.612726;;, - 218;3; 0.802051, 0.072915, 0.612726;;, - 219;3; 0.802051, 0.072915, 0.612726;;, - 220;3; 0.802051, 0.072915, 0.612726;;, - 221;3; 0.802051, 0.072915, 0.612726;;, - 222;3; 0.802051, 0.072915, 0.612726;;, - 223;3; 0.802051, 0.072915, 0.612726;;, - 224;3; 0.802051, 0.072915, 0.612726;;, - 225;3; 0.802051, 0.072915, 0.612726;;, - 226;3; 0.802051, 0.072915, 0.612726;;, - 227;3; 0.802051, 0.072915, 0.612726;;, - 228;3; 0.802051, 0.072915, 0.612726;;, - 229;3; 0.802051, 0.072915, 0.612726;;, - 230;3; 0.802051, 0.072915, 0.612726;;, - 231;3; 0.802051, 0.072915, 0.612726;;, - 232;3; 0.802051, 0.072915, 0.612726;;, - 233;3; 0.802051, 0.072915, 0.612726;;, - 234;3; 0.802051, 0.072915, 0.612726;;, - 235;3; 0.802051, 0.072915, 0.612726;;, - 236;3; 0.802051, 0.072915, 0.612726;;, - 237;3; 0.802051, 0.072915, 0.612726;;, - 238;3; 0.802051, 0.072915, 0.612726;;, - 239;3; 0.802051, 0.072915, 0.612726;;, - 240;3; 0.802051, 0.072915, 0.612726;;, - 241;3; 0.802051, 0.072915, 0.612726;;, - 242;3; 0.802051, 0.072915, 0.612726;;, - 243;3; 0.802051, 0.072915, 0.612726;;, - 244;3; 0.802051, 0.072915, 0.612726;;, - 245;3; 0.802051, 0.072915, 0.612726;;, - 246;3; 0.802051, 0.072915, 0.612726;;, - 247;3; 0.802051, 0.072915, 0.612726;;, - 248;3; 0.802051, 0.072915, 0.612726;;, - 249;3; 0.802051, 0.072915, 0.612726;;; - } - } - Animation { - {Armature_Bone} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 1;4;-0.433791, 0.432385, 0.560032,-0.557832;;, - 2;4;-0.434760, 0.433349, 0.559204,-0.557007;;, - 3;4;-0.436377, 0.434960, 0.557822,-0.555629;;, - 4;4;-0.438632, 0.437206, 0.555895,-0.553709;;, - 5;4;-0.441489, 0.440052, 0.553453,-0.551275;;, - 6;4;-0.444892, 0.443442, 0.550545,-0.548376;;, - 7;4;-0.448759, 0.447293, 0.547241,-0.545083;;, - 8;4;-0.452980, 0.451497, 0.543634,-0.541487;;, - 9;4;-0.457424, 0.455923, 0.539836,-0.537702;;, - 10;4;-0.461943, 0.460425, 0.535973,-0.533852;;, - 11;4;-0.466387, 0.464852, 0.532176,-0.530067;;, - 12;4;-0.470608, 0.469056, 0.528569,-0.526472;;, - 13;4;-0.474475, 0.472907, 0.525264,-0.523178;;, - 14;4;-0.477878, 0.476297, 0.522356,-0.520280;;, - 15;4;-0.480735, 0.479143, 0.519914,-0.517846;;, - 16;4;-0.482990, 0.481388, 0.517988,-0.515926;;, - 17;4;-0.484608, 0.483000, 0.516605,-0.514548;;, - 18;4;-0.485576, 0.483964, 0.515778,-0.513723;;, - 19;4;-0.485896, 0.484283, 0.515504,-0.513450;;, - 20;4;-0.485637, 0.484024, 0.515778,-0.513725;;, - 21;4;-0.484854, 0.483238, 0.516603,-0.514553;;, - 22;4;-0.483540, 0.481919, 0.517980,-0.515934;;, - 23;4;-0.481700, 0.480073, 0.519895,-0.517854;;, - 24;4;-0.479351, 0.477717, 0.522320,-0.520285;;, - 25;4;-0.476527, 0.474886, 0.525208,-0.523180;;, - 26;4;-0.473280, 0.471632, 0.528492,-0.526470;;, - 27;4;-0.469680, 0.468027, 0.532085,-0.530069;;, - 28;4;-0.465816, 0.464159, 0.535880,-0.533869;;, - 29;4;-0.461790, 0.460132, 0.539758,-0.537749;;, - 30;4;-0.457714, 0.456059, 0.543592,-0.541582;;, - 31;4;-0.453700, 0.452052, 0.547256,-0.545242;;, - 32;4;-0.449855, 0.448219, 0.550633,-0.548611;;, - 33;4;-0.446274, 0.444654, 0.553623,-0.551589;;, - 34;4;-0.443033, 0.441436, 0.556145,-0.554094;;, - 35;4;-0.440194, 0.438625, 0.558138,-0.556066;;, - 36;4;-0.437799, 0.436263, 0.559565,-0.557467;;, - 37;4;-0.435874, 0.434376, 0.560404,-0.558275;;, - 38;4;-0.434431, 0.432977, 0.560648,-0.558486;;, - 39;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 40;4;-0.427520, 0.431942, 0.553993,-0.557003;;, - 41;4;-0.410990, 0.432925, 0.536197,-0.555039;;, - 42;4;-0.383837, 0.435021, 0.506868,-0.552210;;, - 43;4;-0.346241, 0.438216, 0.466201,-0.548536;;, - 44;4;-0.298664, 0.442467, 0.414698,-0.544059;;, - 45;4;-0.241909, 0.447697, 0.353225,-0.538849;;, - 46;4;-0.177154, 0.453790, 0.283065,-0.533008;;, - 47;4;-0.105972, 0.460587, 0.205919,-0.526670;;, - 48;4;-0.030287, 0.467894, 0.123878,-0.519997;;, - 49;4; 0.047699, 0.475489, 0.039331,-0.513175;;, - 50;4; 0.125635, 0.483130,-0.045173,-0.506401;;, - 51;4; 0.201170, 0.490577,-0.127083,-0.499868;;, - 52;4; 0.272108, 0.497602,-0.204012,-0.493759;;, - 53;4; 0.336528, 0.504005,-0.273879,-0.488231;;, - 54;4; 0.392867, 0.509622,-0.334985,-0.483410;;, - 55;4; 0.439954, 0.514329,-0.386057,-0.479392;;, - 56;4; 0.476995, 0.518040,-0.426236,-0.476237;;, - 57;4; 0.503536, 0.520704,-0.455026,-0.473981;;, - 58;4; 0.519406, 0.522300,-0.472242,-0.472635;;, - 59;4; 0.524656, 0.522828,-0.477937,-0.472190;;, - 60;4; 0.524656, 0.522828,-0.477937,-0.472190;;, - 61;4; 0.524656, 0.522828,-0.477937,-0.472190;;, - 62;4; 0.524656, 0.522828,-0.477937,-0.472190;;, - 63;4; 0.524656, 0.522828,-0.477937,-0.472190;;, - 64;4; 0.524656, 0.522828,-0.477937,-0.472190;;, - 65;4; 0.524656, 0.522828,-0.477937,-0.472190;;, - 66;4; 0.524656, 0.522828,-0.477937,-0.472190;;, - 67;4; 0.524656, 0.522828,-0.477937,-0.472190;;, - 68;4; 0.524656, 0.522828,-0.477937,-0.472190;;, - 69;4; 0.524656, 0.522828,-0.477937,-0.472190;;, - 70;4; 0.524656, 0.522828,-0.477937,-0.472190;;, - 71;4; 0.524656, 0.522828,-0.477937,-0.472190;;, - 72;4; 0.524656, 0.522828,-0.477937,-0.472190;;, - 73;4; 0.524656, 0.522828,-0.477937,-0.472190;;, - 74;4; 0.524656, 0.522828,-0.477937,-0.472190;;, - 75;4; 0.524656, 0.522828,-0.477937,-0.472190;;, - 76;4; 0.524656, 0.522828,-0.477937,-0.472190;;, - 77;4; 0.524656, 0.522828,-0.477937,-0.472190;;, - 78;4; 0.524656, 0.522828,-0.477937,-0.472190;;, - 79;4; 0.524656, 0.522828,-0.477937,-0.472190;;, - 80;4; 0.524656, 0.522828,-0.477937,-0.472190;;, - 81;4; 0.524656, 0.522828,-0.477937,-0.472190;;, - 82;4; 0.524656, 0.522828,-0.477937,-0.472190;;, - 83;4; 0.524656, 0.522828,-0.477937,-0.472190;;, - 84;4; 0.524656, 0.522828,-0.477937,-0.472190;;, - 85;4; 0.524656, 0.522828,-0.477937,-0.472190;;, - 86;4; 0.524656, 0.522828,-0.477937,-0.472190;;, - 87;4; 0.524656, 0.522828,-0.477937,-0.472190;;, - 88;4; 0.524656, 0.522828,-0.477937,-0.472190;;, - 89;4; 0.524656, 0.522828,-0.477937,-0.472190;;, - 90;4; 0.524656, 0.522828,-0.477937,-0.472190;;, - 91;4; 0.524656, 0.522828,-0.477937,-0.472190;;, - 92;4; 0.524656, 0.522828,-0.477937,-0.472190;;, - 93;4; 0.524656, 0.522828,-0.477937,-0.472190;;, - 94;4; 0.524656, 0.522828,-0.477937,-0.472190;;, - 95;4; 0.524656, 0.522828,-0.477937,-0.472190;;, - 96;4; 0.524656, 0.522828,-0.477937,-0.472190;;, - 97;4; 0.524656, 0.522828,-0.477937,-0.472190;;, - 98;4; 0.524656, 0.522828,-0.477937,-0.472190;;, - 99;4; 0.524656, 0.522828,-0.477937,-0.472190;;, - 100;4; 0.519376, 0.522328,-0.472215,-0.472663;;, - 101;4; 0.503415, 0.520816,-0.454920,-0.474094;;, - 102;4; 0.476728, 0.518288,-0.426001,-0.476487;;, - 103;4; 0.439489, 0.514760,-0.385649,-0.479827;;, - 104;4; 0.392162, 0.510277,-0.334364,-0.484070;;, - 105;4; 0.335549, 0.504914,-0.273017,-0.489147;;, - 106;4; 0.270836, 0.498784,-0.202893,-0.494950;;, - 107;4; 0.199600, 0.492036,-0.125701,-0.501337;;, - 108;4; 0.123781, 0.484854,-0.043542,-0.508136;;, - 109;4; 0.045593, 0.477447, 0.041184,-0.515147;;, - 110;4;-0.032595, 0.470040, 0.125910,-0.522158;;, - 111;4;-0.108415, 0.462858, 0.208069,-0.528957;;, - 112;4;-0.179651, 0.456110, 0.285261,-0.535344;;, - 113;4;-0.244364, 0.449980, 0.355386,-0.541147;;, - 114;4;-0.300977, 0.444617, 0.416732,-0.546224;;, - 115;4;-0.348304, 0.440133, 0.468017,-0.550467;;, - 116;4;-0.385543, 0.436606, 0.508369,-0.553807;;, - 117;4;-0.412230, 0.434078, 0.537288,-0.556199;;, - 118;4;-0.428191, 0.432566, 0.554583,-0.557631;;, - 119;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 120;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 121;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 122;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 123;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 124;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 125;4;-0.435334, 0.433921, 0.558806,-0.556610;;, - 126;4;-0.440582, 0.439149, 0.554585,-0.552402;;, - 127;4;-0.447321, 0.445861, 0.549164,-0.547000;;, - 128;4;-0.452569, 0.451088, 0.544942,-0.542792;;, - 129;4;-0.454432, 0.452944, 0.543444,-0.541298;;, - 130;4;-0.452569, 0.451088, 0.544942,-0.542792;;, - 131;4;-0.447321, 0.445861, 0.549164,-0.547000;;, - 132;4;-0.440582, 0.439149, 0.554585,-0.552402;;, - 133;4;-0.435334, 0.433921, 0.558806,-0.556610;;, - 134;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 135;4;-0.438477, 0.437051, 0.555995,-0.553808;;, - 136;4;-0.452576, 0.451095, 0.543853,-0.541706;;, - 137;4;-0.470679, 0.469127, 0.528263,-0.526168;;, - 138;4;-0.484779, 0.483170, 0.516122,-0.514066;;, - 139;4;-0.489784, 0.488156, 0.511811,-0.509769;;, - 140;4;-0.484779, 0.483170, 0.516122,-0.514066;;, - 141;4;-0.470679, 0.469127, 0.528263,-0.526168;;, - 142;4;-0.452576, 0.451095, 0.543853,-0.541706;;, - 143;4;-0.438477, 0.437051, 0.555995,-0.553808;;, - 144;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 145;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 146;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 147;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 148;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 149;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 150;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 151;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 152;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 153;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 154;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 155;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 156;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 157;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 158;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 159;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 160;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 161;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 162;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 163;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 164;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 165;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 166;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 167;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 168;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 169;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 170;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 171;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 172;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 173;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 174;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 175;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 176;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 177;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 178;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 179;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 180;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 181;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 182;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 183;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 184;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 185;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 186;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 187;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 188;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 189;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 190;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 191;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 192;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 193;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 194;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 195;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 196;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 197;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 198;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 199;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 200;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 201;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 202;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 203;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 204;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 205;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 206;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 207;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 208;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 209;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 210;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 211;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 212;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 213;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 214;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 215;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 216;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 217;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 218;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 219;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 220;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 221;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 222;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 223;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 224;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 225;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 226;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 227;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 228;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 229;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 230;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 231;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 232;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 233;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 234;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 235;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 236;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 237;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 238;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 239;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 240;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 241;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 242;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 243;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 244;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 245;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 246;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 247;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 248;4;-0.433471, 0.432066, 0.560305,-0.558104;;, - 249;4;-0.433471, 0.432066, 0.560305,-0.558104;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3;-0.089351,-0.042254, 0.243361;;, - 1;3;-0.089351,-0.042254, 0.243361;;, - 2;3;-0.089351,-0.042254, 0.243361;;, - 3;3;-0.089351,-0.042254, 0.243361;;, - 4;3;-0.089351,-0.042254, 0.243361;;, - 5;3;-0.089351,-0.042254, 0.243361;;, - 6;3;-0.089351,-0.042254, 0.243361;;, - 7;3;-0.089351,-0.042254, 0.243361;;, - 8;3;-0.089351,-0.042254, 0.243361;;, - 9;3;-0.089351,-0.042254, 0.243361;;, - 10;3;-0.089351,-0.042254, 0.243361;;, - 11;3;-0.089351,-0.042254, 0.243361;;, - 12;3;-0.089351,-0.042254, 0.243361;;, - 13;3;-0.089351,-0.042254, 0.243361;;, - 14;3;-0.089351,-0.042254, 0.243361;;, - 15;3;-0.089351,-0.042254, 0.243361;;, - 16;3;-0.089351,-0.042254, 0.243361;;, - 17;3;-0.089351,-0.042254, 0.243361;;, - 18;3;-0.089351,-0.042254, 0.243361;;, - 19;3;-0.089351,-0.042254, 0.243361;;, - 20;3;-0.089351,-0.042254, 0.243361;;, - 21;3;-0.089351,-0.042254, 0.243361;;, - 22;3;-0.089351,-0.042254, 0.243361;;, - 23;3;-0.089351,-0.042254, 0.243361;;, - 24;3;-0.089351,-0.042254, 0.243361;;, - 25;3;-0.089351,-0.042254, 0.243361;;, - 26;3;-0.089351,-0.042254, 0.243361;;, - 27;3;-0.089351,-0.042254, 0.243361;;, - 28;3;-0.089351,-0.042254, 0.243361;;, - 29;3;-0.089351,-0.042254, 0.243361;;, - 30;3;-0.089351,-0.042254, 0.243361;;, - 31;3;-0.089351,-0.042254, 0.243361;;, - 32;3;-0.089351,-0.042254, 0.243361;;, - 33;3;-0.089351,-0.042254, 0.243361;;, - 34;3;-0.089351,-0.042254, 0.243361;;, - 35;3;-0.089351,-0.042254, 0.243361;;, - 36;3;-0.089351,-0.042254, 0.243361;;, - 37;3;-0.089351,-0.042254, 0.243361;;, - 38;3;-0.089351,-0.042254, 0.243361;;, - 39;3;-0.089351,-0.042254, 0.243361;;, - 40;3;-0.089351,-0.042254, 0.243361;;, - 41;3;-0.089351,-0.042254, 0.243361;;, - 42;3;-0.089351,-0.042254, 0.243361;;, - 43;3;-0.089351,-0.042254, 0.243361;;, - 44;3;-0.089351,-0.042254, 0.243361;;, - 45;3;-0.089351,-0.042254, 0.243361;;, - 46;3;-0.089351,-0.042254, 0.243361;;, - 47;3;-0.089351,-0.042254, 0.243361;;, - 48;3;-0.089351,-0.042254, 0.243361;;, - 49;3;-0.089351,-0.042254, 0.243361;;, - 50;3;-0.089351,-0.042254, 0.243361;;, - 51;3;-0.089351,-0.042254, 0.243361;;, - 52;3;-0.089351,-0.042254, 0.243361;;, - 53;3;-0.089351,-0.042254, 0.243361;;, - 54;3;-0.089351,-0.042254, 0.243361;;, - 55;3;-0.089351,-0.042254, 0.243361;;, - 56;3;-0.089351,-0.042254, 0.243361;;, - 57;3;-0.089351,-0.042254, 0.243361;;, - 58;3;-0.089351,-0.042254, 0.243361;;, - 59;3;-0.089351,-0.042254, 0.243361;;, - 60;3;-0.125888,-0.042501, 0.243361;;, - 61;3;-0.235850,-0.043244, 0.243361;;, - 62;3;-0.414642,-0.044452, 0.243361;;, - 63;3;-0.648494,-0.046032, 0.243361;;, - 64;3;-0.913410,-0.047823, 0.243361;;, - 65;3;-1.178326,-0.049613, 0.243361;;, - 66;3;-1.412178,-0.051193, 0.243361;;, - 67;3;-1.590970,-0.052402, 0.243361;;, - 68;3;-1.700932,-0.053145, 0.243361;;, - 69;3;-1.737470,-0.053392, 0.243361;;, - 70;3;-1.733443,-0.053364, 0.243361;;, - 71;3;-1.721287,-0.053282, 0.243361;;, - 72;3;-1.700932,-0.053145, 0.243361;;, - 73;3;-1.672368,-0.052952, 0.243361;;, - 74;3;-1.635662,-0.052704, 0.243361;;, - 75;3;-1.590970,-0.052402, 0.243361;;, - 76;3;-1.538553,-0.052047, 0.243361;;, - 77;3;-1.478787,-0.051643, 0.243361;;, - 78;3;-1.412178,-0.051193, 0.243361;;, - 79;3;-1.339361,-0.050701, 0.243361;;, - 80;3;-1.261110,-0.050172, 0.243361;;, - 81;3;-1.178326,-0.049613, 0.243361;;, - 82;3;-1.092027,-0.049030, 0.243361;;, - 83;3;-1.003328,-0.048430, 0.243361;;, - 84;3;-0.913410,-0.047823, 0.243361;;, - 85;3;-0.823492,-0.047215, 0.243361;;, - 86;3;-0.734793,-0.046616, 0.243361;;, - 87;3;-0.648494,-0.046032, 0.243361;;, - 88;3;-0.565710,-0.045473, 0.243361;;, - 89;3;-0.487459,-0.044944, 0.243361;;, - 90;3;-0.414642,-0.044452, 0.243361;;, - 91;3;-0.348033,-0.044002, 0.243361;;, - 92;3;-0.288267,-0.043598, 0.243361;;, - 93;3;-0.235850,-0.043244, 0.243361;;, - 94;3;-0.191158,-0.042942, 0.243361;;, - 95;3;-0.154452,-0.042694, 0.243361;;, - 96;3;-0.125888,-0.042501, 0.243361;;, - 97;3;-0.105533,-0.042363, 0.243361;;, - 98;3;-0.093378,-0.042281, 0.243361;;, - 99;3;-0.089351,-0.042254, 0.243361;;, - 100;3;-0.089351,-0.042254, 0.243361;;, - 101;3;-0.089351,-0.042254, 0.243361;;, - 102;3;-0.089351,-0.042254, 0.243361;;, - 103;3;-0.089351,-0.042254, 0.243361;;, - 104;3;-0.089351,-0.042254, 0.243361;;, - 105;3;-0.089351,-0.042254, 0.243361;;, - 106;3;-0.089351,-0.042254, 0.243361;;, - 107;3;-0.089351,-0.042254, 0.243361;;, - 108;3;-0.089351,-0.042254, 0.243361;;, - 109;3;-0.089351,-0.042254, 0.243361;;, - 110;3;-0.089351,-0.042254, 0.243361;;, - 111;3;-0.089351,-0.042254, 0.243361;;, - 112;3;-0.089351,-0.042254, 0.243361;;, - 113;3;-0.089351,-0.042254, 0.243361;;, - 114;3;-0.089351,-0.042254, 0.243361;;, - 115;3;-0.089351,-0.042254, 0.243361;;, - 116;3;-0.089351,-0.042254, 0.243361;;, - 117;3;-0.089351,-0.042254, 0.243361;;, - 118;3;-0.089351,-0.042254, 0.243361;;, - 119;3;-0.089351,-0.042254, 0.243361;;, - 120;3;-0.089351,-0.042254, 0.243361;;, - 121;3;-0.089351,-0.042254, 0.243361;;, - 122;3;-0.089351,-0.042254, 0.243361;;, - 123;3;-0.089351,-0.042254, 0.243361;;, - 124;3;-0.089351,-0.042254, 0.243361;;, - 125;3;-0.089351,-0.042254, 0.243361;;, - 126;3;-0.089351,-0.042254, 0.243361;;, - 127;3;-0.089351,-0.042254, 0.243361;;, - 128;3;-0.089351,-0.042254, 0.243361;;, - 129;3;-0.089351,-0.042254, 0.243361;;, - 130;3;-0.089351,-0.042254, 0.243361;;, - 131;3;-0.089351,-0.042254, 0.243361;;, - 132;3;-0.089351,-0.042254, 0.243361;;, - 133;3;-0.089351,-0.042254, 0.243361;;, - 134;3;-0.089351,-0.042254, 0.243361;;, - 135;3;-0.089351,-0.042254, 0.243361;;, - 136;3;-0.089351,-0.042254, 0.243361;;, - 137;3;-0.089351,-0.042254, 0.243361;;, - 138;3;-0.089351,-0.042254, 0.243361;;, - 139;3;-0.089351,-0.042254, 0.243361;;, - 140;3;-0.089351,-0.042254, 0.243361;;, - 141;3;-0.089351,-0.042254, 0.243361;;, - 142;3;-0.089351,-0.042254, 0.243361;;, - 143;3;-0.089351,-0.042254, 0.243361;;, - 144;3;-0.089351,-0.042254, 0.243361;;, - 145;3;-0.089351,-0.042254, 0.243361;;, - 146;3;-0.089351,-0.042254, 0.243361;;, - 147;3;-0.089351,-0.042254, 0.243361;;, - 148;3;-0.089351,-0.042254, 0.243361;;, - 149;3;-0.089351,-0.042254, 0.243361;;, - 150;3;-0.089351,-0.042254, 0.243361;;, - 151;3;-0.089351,-0.042254, 0.243361;;, - 152;3;-0.089351,-0.042254, 0.243361;;, - 153;3;-0.089351,-0.042254, 0.243361;;, - 154;3;-0.089351,-0.042254, 0.243361;;, - 155;3;-0.089351,-0.042254, 0.243361;;, - 156;3;-0.089351,-0.042254, 0.243361;;, - 157;3;-0.089351,-0.042254, 0.243361;;, - 158;3;-0.089351,-0.042254, 0.243361;;, - 159;3;-0.089351,-0.042254, 0.243361;;, - 160;3;-0.089351,-0.042254, 0.243361;;, - 161;3;-0.089351,-0.042254, 0.243361;;, - 162;3;-0.089351,-0.042254, 0.243361;;, - 163;3;-0.089351,-0.042254, 0.243361;;, - 164;3;-0.089351,-0.042254, 0.243361;;, - 165;3;-0.089351,-0.042254, 0.243361;;, - 166;3;-0.089351,-0.042254, 0.243361;;, - 167;3;-0.089351,-0.042254, 0.243361;;, - 168;3;-0.089351,-0.042254, 0.243361;;, - 169;3;-0.089351,-0.042254, 0.243361;;, - 170;3;-0.089351,-0.042254, 0.243361;;, - 171;3;-0.089351,-0.042254, 0.243361;;, - 172;3;-0.089351,-0.042254, 0.243361;;, - 173;3;-0.089351,-0.042254, 0.243361;;, - 174;3;-0.089351,-0.042254, 0.243361;;, - 175;3;-0.089351,-0.042254, 0.243361;;, - 176;3;-0.089351,-0.042254, 0.243361;;, - 177;3;-0.089351,-0.042254, 0.243361;;, - 178;3;-0.089351,-0.042254, 0.243361;;, - 179;3;-0.089351,-0.042254, 0.243361;;, - 180;3;-0.089351,-0.042254, 0.243361;;, - 181;3;-0.089351,-0.042254, 0.243361;;, - 182;3;-0.089351,-0.042254, 0.243361;;, - 183;3;-0.089351,-0.042254, 0.243361;;, - 184;3;-0.089351,-0.042254, 0.243361;;, - 185;3;-0.089351,-0.042254, 0.243361;;, - 186;3;-0.089351,-0.042254, 0.243361;;, - 187;3;-0.089351,-0.042254, 0.243361;;, - 188;3;-0.089351,-0.042254, 0.243361;;, - 189;3;-0.089351,-0.042254, 0.243361;;, - 190;3;-0.089351,-0.042254, 0.243361;;, - 191;3;-0.089351,-0.042254, 0.243361;;, - 192;3;-0.089351,-0.042254, 0.243361;;, - 193;3;-0.089351,-0.042254, 0.243361;;, - 194;3;-0.089351,-0.042254, 0.243361;;, - 195;3;-0.089351,-0.042254, 0.243361;;, - 196;3;-0.089351,-0.042254, 0.243361;;, - 197;3;-0.089351,-0.042254, 0.243361;;, - 198;3;-0.089351,-0.042254, 0.243361;;, - 199;3;-0.089351,-0.042254, 0.243361;;, - 200;3;-0.089351,-0.042254, 0.243361;;, - 201;3;-0.089351,-0.042254, 0.243361;;, - 202;3;-0.089351,-0.042254, 0.243361;;, - 203;3;-0.089351,-0.042254, 0.243361;;, - 204;3;-0.089351,-0.042254, 0.243361;;, - 205;3;-0.089351,-0.042254, 0.243361;;, - 206;3;-0.089351,-0.042254, 0.243361;;, - 207;3;-0.089351,-0.042254, 0.243361;;, - 208;3;-0.089351,-0.042254, 0.243361;;, - 209;3;-0.089351,-0.042254, 0.243361;;, - 210;3;-0.089351,-0.042254, 0.243361;;, - 211;3;-0.089351,-0.042254, 0.243361;;, - 212;3;-0.089351,-0.042254, 0.243361;;, - 213;3;-0.089351,-0.042254, 0.243361;;, - 214;3;-0.089351,-0.042254, 0.243361;;, - 215;3;-0.089351,-0.042254, 0.243361;;, - 216;3;-0.089351,-0.042254, 0.243361;;, - 217;3;-0.089351,-0.042254, 0.243361;;, - 218;3;-0.089351,-0.042254, 0.243361;;, - 219;3;-0.089351,-0.042254, 0.243361;;, - 220;3;-0.089351,-0.042254, 0.243361;;, - 221;3;-0.089351,-0.042254, 0.243361;;, - 222;3;-0.089351,-0.042254, 0.243361;;, - 223;3;-0.089351,-0.042254, 0.243361;;, - 224;3;-0.089351,-0.042254, 0.243361;;, - 225;3;-0.089351,-0.042254, 0.243361;;, - 226;3;-0.089351,-0.042254, 0.243361;;, - 227;3;-0.089351,-0.042254, 0.243361;;, - 228;3;-0.089351,-0.042254, 0.243361;;, - 229;3;-0.089351,-0.042254, 0.243361;;, - 230;3;-0.089351,-0.042254, 0.243361;;, - 231;3;-0.089351,-0.042254, 0.243361;;, - 232;3;-0.089351,-0.042254, 0.243361;;, - 233;3;-0.089351,-0.042254, 0.243361;;, - 234;3;-0.089351,-0.042254, 0.243361;;, - 235;3;-0.089351,-0.042254, 0.243361;;, - 236;3;-0.089351,-0.042254, 0.243361;;, - 237;3;-0.089351,-0.042254, 0.243361;;, - 238;3;-0.089351,-0.042254, 0.243361;;, - 239;3;-0.089351,-0.042254, 0.243361;;, - 240;3;-0.089351,-0.042254, 0.243361;;, - 241;3;-0.089351,-0.042254, 0.243361;;, - 242;3;-0.089351,-0.042254, 0.243361;;, - 243;3;-0.089351,-0.042254, 0.243361;;, - 244;3;-0.089351,-0.042254, 0.243361;;, - 245;3;-0.089351,-0.042254, 0.243361;;, - 246;3;-0.089351,-0.042254, 0.243361;;, - 247;3;-0.089351,-0.042254, 0.243361;;, - 248;3;-0.089351,-0.042254, 0.243361;;, - 249;3;-0.089351,-0.042254, 0.243361;;; - } - } - Animation { - {Armature_Bone_001} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 1;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 2;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 3;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 4;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 5;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 6;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 7;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 8;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 9;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 10;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 11;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 12;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 13;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 14;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 15;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 16;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 17;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 18;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 19;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 20;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 21;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 22;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 23;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 24;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 25;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 26;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 27;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 28;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 29;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 30;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 31;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 32;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 33;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 34;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 35;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 36;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 37;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 38;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 39;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 40;4;-0.699423,-0.000832, 0.000812, 0.707041;;, - 41;4;-0.676197,-0.003349, 0.003265, 0.706843;;, - 42;4;-0.637361,-0.007556, 0.007368, 0.706511;;, - 43;4;-0.583171,-0.013426, 0.013093, 0.706048;;, - 44;4;-0.514301,-0.020887, 0.020369, 0.705459;;, - 45;4;-0.431917,-0.029812, 0.029072, 0.704755;;, - 46;4;-0.337746,-0.040014, 0.039021, 0.703950;;, - 47;4;-0.234083,-0.051244, 0.049972, 0.703064;;, - 48;4;-0.123750,-0.063197, 0.061628, 0.702121;;, - 49;4;-0.009970,-0.075523, 0.073649, 0.701149;;, - 50;4; 0.103810,-0.087849, 0.085669, 0.700177;;, - 51;4; 0.214144,-0.099801, 0.097325, 0.699234;;, - 52;4; 0.317806,-0.111032, 0.108276, 0.698348;;, - 53;4; 0.411977,-0.121233, 0.118225, 0.697543;;, - 54;4; 0.494361,-0.130158, 0.126928, 0.696839;;, - 55;4; 0.563232,-0.137619, 0.134204, 0.696250;;, - 56;4; 0.617421,-0.143490, 0.139929, 0.695787;;, - 57;4; 0.656257,-0.147697, 0.144032, 0.695455;;, - 58;4; 0.679483,-0.150213, 0.146486, 0.695257;;, - 59;4; 0.687167,-0.151045, 0.147297, 0.695191;;, - 60;4; 0.687167,-0.151045, 0.147297, 0.695191;;, - 61;4; 0.687167,-0.151045, 0.147297, 0.695191;;, - 62;4; 0.687167,-0.151045, 0.147297, 0.695191;;, - 63;4; 0.687167,-0.151045, 0.147297, 0.695191;;, - 64;4; 0.687167,-0.151045, 0.147297, 0.695191;;, - 65;4; 0.687167,-0.151045, 0.147297, 0.695191;;, - 66;4; 0.687167,-0.151045, 0.147297, 0.695191;;, - 67;4; 0.687167,-0.151045, 0.147297, 0.695191;;, - 68;4; 0.687167,-0.151045, 0.147297, 0.695191;;, - 69;4; 0.687167,-0.151045, 0.147297, 0.695191;;, - 70;4; 0.687167,-0.151045, 0.147297, 0.695191;;, - 71;4; 0.687167,-0.151045, 0.147297, 0.695191;;, - 72;4; 0.687167,-0.151045, 0.147297, 0.695191;;, - 73;4; 0.687167,-0.151045, 0.147297, 0.695191;;, - 74;4; 0.687167,-0.151045, 0.147297, 0.695191;;, - 75;4; 0.687167,-0.151045, 0.147297, 0.695191;;, - 76;4; 0.687167,-0.151045, 0.147297, 0.695191;;, - 77;4; 0.687167,-0.151045, 0.147297, 0.695191;;, - 78;4; 0.687167,-0.151045, 0.147297, 0.695191;;, - 79;4; 0.687167,-0.151045, 0.147297, 0.695191;;, - 80;4; 0.687167,-0.151045, 0.147297, 0.695191;;, - 81;4; 0.687167,-0.151045, 0.147297, 0.695191;;, - 82;4; 0.687167,-0.151045, 0.147297, 0.695191;;, - 83;4; 0.687167,-0.151045, 0.147297, 0.695191;;, - 84;4; 0.687167,-0.151045, 0.147297, 0.695191;;, - 85;4; 0.687167,-0.151045, 0.147297, 0.695191;;, - 86;4; 0.687167,-0.151045, 0.147297, 0.695191;;, - 87;4; 0.687167,-0.151045, 0.147297, 0.695191;;, - 88;4; 0.687167,-0.151045, 0.147297, 0.695191;;, - 89;4; 0.687167,-0.151045, 0.147297, 0.695191;;, - 90;4; 0.687167,-0.151045, 0.147297, 0.695191;;, - 91;4; 0.687167,-0.151045, 0.147297, 0.695191;;, - 92;4; 0.687167,-0.151045, 0.147297, 0.695191;;, - 93;4; 0.687167,-0.151045, 0.147297, 0.695191;;, - 94;4; 0.687167,-0.151045, 0.147297, 0.695191;;, - 95;4; 0.687167,-0.151045, 0.147297, 0.695191;;, - 96;4; 0.687167,-0.151045, 0.147297, 0.695191;;, - 97;4; 0.687167,-0.151045, 0.147297, 0.695191;;, - 98;4; 0.687167,-0.151045, 0.147297, 0.695191;;, - 99;4; 0.687167,-0.151045, 0.147297, 0.695191;;, - 100;4; 0.679483,-0.150223, 0.146475, 0.695257;;, - 101;4; 0.656257,-0.147737, 0.143992, 0.695455;;, - 102;4; 0.617421,-0.143579, 0.139840, 0.695787;;, - 103;4; 0.563232,-0.137774, 0.134049, 0.696250;;, - 104;4; 0.494361,-0.130393, 0.126693, 0.696839;;, - 105;4; 0.411977,-0.121560, 0.117898, 0.697543;;, - 106;4; 0.317806,-0.111456, 0.107852, 0.698348;;, - 107;4; 0.214143,-0.100325, 0.096801, 0.699234;;, - 108;4; 0.103810,-0.088467, 0.085050, 0.700176;;, - 109;4;-0.009970,-0.076225, 0.072946, 0.701149;;, - 110;4;-0.123750,-0.063967, 0.060858, 0.702121;;, - 111;4;-0.234083,-0.052059, 0.049157, 0.703064;;, - 112;4;-0.337746,-0.040847, 0.038188, 0.703950;;, - 113;4;-0.431917,-0.030631, 0.028253, 0.704755;;, - 114;4;-0.514301,-0.021659, 0.019597, 0.705459;;, - 115;4;-0.583171,-0.014115, 0.012405, 0.706048;;, - 116;4;-0.637361,-0.008125, 0.006799, 0.706511;;, - 117;4;-0.676197,-0.003762, 0.002852, 0.706842;;, - 118;4;-0.699423,-0.001056, 0.000588, 0.707041;;, - 119;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 120;4;-0.706968, 0.005590, 0.005590, 0.706968;;, - 121;4;-0.706535, 0.020884, 0.020884, 0.706535;;, - 122;4;-0.705867, 0.040407, 0.040407, 0.705867;;, - 123;4;-0.705130, 0.055576, 0.055576, 0.705130;;, - 124;4;-0.704475, 0.060956, 0.060956, 0.704475;;, - 125;4;-0.711854, 0.055537, 0.055537, 0.695674;;, - 126;4;-0.733750, 0.040276, 0.040276, 0.671995;;, - 127;4;-0.762143, 0.020680, 0.020680, 0.641870;;, - 128;4;-0.784343, 0.005418, 0.005418, 0.618495;;, - 129;4;-0.792239, 0.000000, 0.000000, 0.610210;;, - 130;4;-0.787355, 0.000000, 0.000000, 0.616140;;, - 131;4;-0.772424, 0.000000, 0.000000, 0.634017;;, - 132;4;-0.750104, 0.000000, 0.000000, 0.660118;;, - 133;4;-0.726592, 0.000000, 0.000000, 0.686576;;, - 134;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 135;4;-0.688147, 0.000000, 0.000000, 0.725354;;, - 136;4;-0.666114, 0.000000, 0.000000, 0.745378;;, - 137;4;-0.645694, 0.000000, 0.000000, 0.763219;;, - 138;4;-0.632243, 0.000000, 0.000000, 0.774661;;, - 139;4;-0.627884, 0.000000, 0.000000, 0.778307;;, - 140;4;-0.634897,-0.001371,-0.001371, 0.771950;;, - 141;4;-0.654657,-0.005232,-0.005232, 0.754048;;, - 142;4;-0.680045,-0.010190,-0.010190, 0.731078;;, - 143;4;-0.699850,-0.014051,-0.014051, 0.713221;;, - 144;4;-0.706939,-0.015422,-0.015422, 0.706939;;, - 145;4;-0.707015,-0.014051,-0.014051, 0.707015;;, - 146;4;-0.707069,-0.010190,-0.010190, 0.707069;;, - 147;4;-0.707097,-0.005232,-0.005232, 0.707097;;, - 148;4;-0.707106,-0.001371,-0.001371, 0.707106;;, - 149;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 150;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 151;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 152;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 153;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 154;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 155;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 156;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 157;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 158;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 159;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 160;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 161;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 162;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 163;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 164;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 165;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 166;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 167;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 168;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 169;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 170;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 171;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 172;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 173;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 174;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 175;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 176;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 177;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 178;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 179;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 180;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 181;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 182;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 183;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 184;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 185;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 186;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 187;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 188;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 189;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 190;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 191;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 192;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 193;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 194;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 195;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 196;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 197;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 198;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 199;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 200;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 201;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 202;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 203;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 204;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 205;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 206;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 207;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 208;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 209;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 210;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 211;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 212;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 213;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 214;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 215;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 216;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 217;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 218;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 219;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 220;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 221;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 222;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 223;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 224;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 225;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 226;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 227;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 228;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 229;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 230;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 231;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 232;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 233;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 234;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 235;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 236;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 237;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 238;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 239;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 240;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 241;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 242;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 243;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 244;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 245;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 246;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 247;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 248;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 249;4;-0.707107, 0.000000, 0.000000, 0.707107;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3;-0.089351,-0.042254, 0.243361;;, - 1;3;-0.089351,-0.042254, 0.243361;;, - 2;3;-0.089351,-0.042254, 0.243361;;, - 3;3;-0.089351,-0.042254, 0.243361;;, - 4;3;-0.089351,-0.042254, 0.243361;;, - 5;3;-0.089351,-0.042254, 0.243361;;, - 6;3;-0.089351,-0.042254, 0.243361;;, - 7;3;-0.089351,-0.042254, 0.243361;;, - 8;3;-0.089351,-0.042254, 0.243361;;, - 9;3;-0.089351,-0.042254, 0.243361;;, - 10;3;-0.089351,-0.042254, 0.243361;;, - 11;3;-0.089351,-0.042254, 0.243361;;, - 12;3;-0.089351,-0.042254, 0.243361;;, - 13;3;-0.089351,-0.042254, 0.243361;;, - 14;3;-0.089351,-0.042254, 0.243361;;, - 15;3;-0.089351,-0.042254, 0.243361;;, - 16;3;-0.089351,-0.042254, 0.243361;;, - 17;3;-0.089351,-0.042254, 0.243361;;, - 18;3;-0.089351,-0.042254, 0.243361;;, - 19;3;-0.089351,-0.042254, 0.243361;;, - 20;3;-0.089351,-0.042254, 0.243361;;, - 21;3;-0.089351,-0.042254, 0.243361;;, - 22;3;-0.089351,-0.042254, 0.243361;;, - 23;3;-0.089351,-0.042254, 0.243361;;, - 24;3;-0.089351,-0.042254, 0.243361;;, - 25;3;-0.089351,-0.042254, 0.243361;;, - 26;3;-0.089351,-0.042254, 0.243361;;, - 27;3;-0.089351,-0.042254, 0.243361;;, - 28;3;-0.089351,-0.042254, 0.243361;;, - 29;3;-0.089351,-0.042254, 0.243361;;, - 30;3;-0.089351,-0.042254, 0.243361;;, - 31;3;-0.089351,-0.042254, 0.243361;;, - 32;3;-0.089351,-0.042254, 0.243361;;, - 33;3;-0.089351,-0.042254, 0.243361;;, - 34;3;-0.089351,-0.042254, 0.243361;;, - 35;3;-0.089351,-0.042254, 0.243361;;, - 36;3;-0.089351,-0.042254, 0.243361;;, - 37;3;-0.089351,-0.042254, 0.243361;;, - 38;3;-0.089351,-0.042254, 0.243361;;, - 39;3;-0.089351,-0.042254, 0.243361;;, - 40;3;-0.089351,-0.042254, 0.243361;;, - 41;3;-0.089351,-0.042254, 0.243361;;, - 42;3;-0.089351,-0.042254, 0.243361;;, - 43;3;-0.089351,-0.042254, 0.243361;;, - 44;3;-0.089351,-0.042254, 0.243361;;, - 45;3;-0.089351,-0.042254, 0.243361;;, - 46;3;-0.089351,-0.042254, 0.243361;;, - 47;3;-0.089351,-0.042254, 0.243361;;, - 48;3;-0.089351,-0.042254, 0.243361;;, - 49;3;-0.089351,-0.042254, 0.243361;;, - 50;3;-0.089351,-0.042254, 0.243361;;, - 51;3;-0.089351,-0.042254, 0.243361;;, - 52;3;-0.089351,-0.042254, 0.243361;;, - 53;3;-0.089351,-0.042254, 0.243361;;, - 54;3;-0.089351,-0.042254, 0.243361;;, - 55;3;-0.089351,-0.042254, 0.243361;;, - 56;3;-0.089351,-0.042254, 0.243361;;, - 57;3;-0.089351,-0.042254, 0.243361;;, - 58;3;-0.089351,-0.042254, 0.243361;;, - 59;3;-0.089351,-0.042254, 0.243361;;, - 60;3;-0.125888,-0.042501, 0.243361;;, - 61;3;-0.235850,-0.043244, 0.243361;;, - 62;3;-0.414642,-0.044452, 0.243361;;, - 63;3;-0.648494,-0.046032, 0.243361;;, - 64;3;-0.913410,-0.047823, 0.243361;;, - 65;3;-1.178326,-0.049613, 0.243361;;, - 66;3;-1.412178,-0.051193, 0.243361;;, - 67;3;-1.590970,-0.052402, 0.243361;;, - 68;3;-1.700932,-0.053145, 0.243361;;, - 69;3;-1.737470,-0.053392, 0.243361;;, - 70;3;-1.733443,-0.053364, 0.243361;;, - 71;3;-1.721287,-0.053282, 0.243361;;, - 72;3;-1.700932,-0.053145, 0.243361;;, - 73;3;-1.672368,-0.052952, 0.243361;;, - 74;3;-1.635662,-0.052704, 0.243361;;, - 75;3;-1.590970,-0.052402, 0.243361;;, - 76;3;-1.538553,-0.052047, 0.243361;;, - 77;3;-1.478787,-0.051643, 0.243361;;, - 78;3;-1.412178,-0.051193, 0.243361;;, - 79;3;-1.339361,-0.050701, 0.243361;;, - 80;3;-1.261110,-0.050172, 0.243361;;, - 81;3;-1.178326,-0.049613, 0.243361;;, - 82;3;-1.092027,-0.049030, 0.243361;;, - 83;3;-1.003328,-0.048430, 0.243361;;, - 84;3;-0.913410,-0.047823, 0.243361;;, - 85;3;-0.823492,-0.047215, 0.243361;;, - 86;3;-0.734793,-0.046616, 0.243361;;, - 87;3;-0.648494,-0.046032, 0.243361;;, - 88;3;-0.565710,-0.045473, 0.243361;;, - 89;3;-0.487459,-0.044944, 0.243361;;, - 90;3;-0.414642,-0.044452, 0.243361;;, - 91;3;-0.348033,-0.044002, 0.243361;;, - 92;3;-0.288267,-0.043598, 0.243361;;, - 93;3;-0.235850,-0.043244, 0.243361;;, - 94;3;-0.191158,-0.042942, 0.243361;;, - 95;3;-0.154452,-0.042694, 0.243361;;, - 96;3;-0.125888,-0.042501, 0.243361;;, - 97;3;-0.105533,-0.042363, 0.243361;;, - 98;3;-0.093377,-0.042281, 0.243361;;, - 99;3;-0.089351,-0.042254, 0.243361;;, - 100;3;-0.089351,-0.042254, 0.243361;;, - 101;3;-0.089351,-0.042254, 0.243361;;, - 102;3;-0.089351,-0.042254, 0.243361;;, - 103;3;-0.089351,-0.042254, 0.243361;;, - 104;3;-0.089351,-0.042254, 0.243361;;, - 105;3;-0.089351,-0.042254, 0.243361;;, - 106;3;-0.089351,-0.042254, 0.243361;;, - 107;3;-0.089351,-0.042254, 0.243361;;, - 108;3;-0.089351,-0.042254, 0.243361;;, - 109;3;-0.089351,-0.042254, 0.243361;;, - 110;3;-0.089351,-0.042254, 0.243361;;, - 111;3;-0.089351,-0.042254, 0.243361;;, - 112;3;-0.089351,-0.042254, 0.243361;;, - 113;3;-0.089351,-0.042254, 0.243361;;, - 114;3;-0.089351,-0.042254, 0.243361;;, - 115;3;-0.089351,-0.042254, 0.243361;;, - 116;3;-0.089351,-0.042254, 0.243361;;, - 117;3;-0.089351,-0.042254, 0.243361;;, - 118;3;-0.089351,-0.042254, 0.243361;;, - 119;3;-0.089351,-0.042254, 0.243361;;, - 120;3;-0.089351,-0.042254, 0.243361;;, - 121;3;-0.089351,-0.042254, 0.243361;;, - 122;3;-0.089351,-0.042254, 0.243361;;, - 123;3;-0.089351,-0.042254, 0.243361;;, - 124;3;-0.089351,-0.042254, 0.243361;;, - 125;3;-0.089351,-0.042254, 0.243361;;, - 126;3;-0.089351,-0.042254, 0.243361;;, - 127;3;-0.089351,-0.042254, 0.243361;;, - 128;3;-0.089351,-0.042254, 0.243361;;, - 129;3;-0.089351,-0.042254, 0.243361;;, - 130;3;-0.089351,-0.042254, 0.243361;;, - 131;3;-0.089351,-0.042254, 0.243361;;, - 132;3;-0.089351,-0.042254, 0.243361;;, - 133;3;-0.089351,-0.042254, 0.243361;;, - 134;3;-0.089351,-0.042254, 0.243361;;, - 135;3;-0.089351,-0.042254, 0.243361;;, - 136;3;-0.089351,-0.042254, 0.243361;;, - 137;3;-0.089351,-0.042254, 0.243361;;, - 138;3;-0.089351,-0.042254, 0.243361;;, - 139;3;-0.089351,-0.042254, 0.243361;;, - 140;3;-0.089351,-0.042254, 0.243361;;, - 141;3;-0.089351,-0.042254, 0.243361;;, - 142;3;-0.089351,-0.042254, 0.243361;;, - 143;3;-0.089351,-0.042254, 0.243361;;, - 144;3;-0.089351,-0.042254, 0.243361;;, - 145;3;-0.089351,-0.042254, 0.243361;;, - 146;3;-0.089351,-0.042254, 0.243361;;, - 147;3;-0.089351,-0.042254, 0.243361;;, - 148;3;-0.089351,-0.042254, 0.243361;;, - 149;3;-0.089351,-0.042254, 0.243361;;, - 150;3;-0.089351,-0.042254, 0.243361;;, - 151;3;-0.089351,-0.042254, 0.243361;;, - 152;3;-0.089351,-0.042254, 0.243361;;, - 153;3;-0.089351,-0.042254, 0.243361;;, - 154;3;-0.089351,-0.042254, 0.243361;;, - 155;3;-0.089351,-0.042254, 0.243361;;, - 156;3;-0.089351,-0.042254, 0.243361;;, - 157;3;-0.089351,-0.042254, 0.243361;;, - 158;3;-0.089351,-0.042254, 0.243361;;, - 159;3;-0.089351,-0.042254, 0.243361;;, - 160;3;-0.089351,-0.042254, 0.243361;;, - 161;3;-0.089351,-0.042254, 0.243361;;, - 162;3;-0.089351,-0.042254, 0.243361;;, - 163;3;-0.089351,-0.042254, 0.243361;;, - 164;3;-0.089351,-0.042254, 0.243361;;, - 165;3;-0.089351,-0.042254, 0.243361;;, - 166;3;-0.089351,-0.042254, 0.243361;;, - 167;3;-0.089351,-0.042254, 0.243361;;, - 168;3;-0.089351,-0.042254, 0.243361;;, - 169;3;-0.089351,-0.042254, 0.243361;;, - 170;3;-0.089351,-0.042254, 0.243361;;, - 171;3;-0.089351,-0.042254, 0.243361;;, - 172;3;-0.089351,-0.042254, 0.243361;;, - 173;3;-0.089351,-0.042254, 0.243361;;, - 174;3;-0.089351,-0.042254, 0.243361;;, - 175;3;-0.089351,-0.042254, 0.243361;;, - 176;3;-0.089351,-0.042254, 0.243361;;, - 177;3;-0.089351,-0.042254, 0.243361;;, - 178;3;-0.089351,-0.042254, 0.243361;;, - 179;3;-0.089351,-0.042254, 0.243361;;, - 180;3;-0.089351,-0.042254, 0.243361;;, - 181;3;-0.089351,-0.042254, 0.243361;;, - 182;3;-0.089351,-0.042254, 0.243361;;, - 183;3;-0.089351,-0.042254, 0.243361;;, - 184;3;-0.089351,-0.042254, 0.243361;;, - 185;3;-0.089351,-0.042254, 0.243361;;, - 186;3;-0.089351,-0.042254, 0.243361;;, - 187;3;-0.089351,-0.042254, 0.243361;;, - 188;3;-0.089351,-0.042254, 0.243361;;, - 189;3;-0.089351,-0.042254, 0.243361;;, - 190;3;-0.089351,-0.042254, 0.243361;;, - 191;3;-0.089351,-0.042254, 0.243361;;, - 192;3;-0.089351,-0.042254, 0.243361;;, - 193;3;-0.089351,-0.042254, 0.243361;;, - 194;3;-0.089351,-0.042254, 0.243361;;, - 195;3;-0.089351,-0.042254, 0.243361;;, - 196;3;-0.089351,-0.042254, 0.243361;;, - 197;3;-0.089351,-0.042254, 0.243361;;, - 198;3;-0.089351,-0.042254, 0.243361;;, - 199;3;-0.089351,-0.042254, 0.243361;;, - 200;3;-0.089351,-0.042254, 0.243361;;, - 201;3;-0.089351,-0.042254, 0.243361;;, - 202;3;-0.089351,-0.042254, 0.243361;;, - 203;3;-0.089351,-0.042254, 0.243361;;, - 204;3;-0.089351,-0.042254, 0.243361;;, - 205;3;-0.089351,-0.042254, 0.243361;;, - 206;3;-0.089351,-0.042254, 0.243361;;, - 207;3;-0.089351,-0.042254, 0.243361;;, - 208;3;-0.089351,-0.042254, 0.243361;;, - 209;3;-0.089351,-0.042254, 0.243361;;, - 210;3;-0.089351,-0.042254, 0.243361;;, - 211;3;-0.089351,-0.042254, 0.243361;;, - 212;3;-0.089351,-0.042254, 0.243361;;, - 213;3;-0.089351,-0.042254, 0.243361;;, - 214;3;-0.089351,-0.042254, 0.243361;;, - 215;3;-0.089351,-0.042254, 0.243361;;, - 216;3;-0.089351,-0.042254, 0.243361;;, - 217;3;-0.089351,-0.042254, 0.243361;;, - 218;3;-0.089351,-0.042254, 0.243361;;, - 219;3;-0.089351,-0.042254, 0.243361;;, - 220;3;-0.089351,-0.042254, 0.243361;;, - 221;3;-0.089351,-0.042254, 0.243361;;, - 222;3;-0.089351,-0.042254, 0.243361;;, - 223;3;-0.089351,-0.042254, 0.243361;;, - 224;3;-0.089351,-0.042254, 0.243361;;, - 225;3;-0.089351,-0.042254, 0.243361;;, - 226;3;-0.089351,-0.042254, 0.243361;;, - 227;3;-0.089351,-0.042254, 0.243361;;, - 228;3;-0.089351,-0.042254, 0.243361;;, - 229;3;-0.089351,-0.042254, 0.243361;;, - 230;3;-0.089351,-0.042254, 0.243361;;, - 231;3;-0.089351,-0.042254, 0.243361;;, - 232;3;-0.089351,-0.042254, 0.243361;;, - 233;3;-0.089351,-0.042254, 0.243361;;, - 234;3;-0.089351,-0.042254, 0.243361;;, - 235;3;-0.089351,-0.042254, 0.243361;;, - 236;3;-0.089351,-0.042254, 0.243361;;, - 237;3;-0.089351,-0.042254, 0.243361;;, - 238;3;-0.089351,-0.042254, 0.243361;;, - 239;3;-0.089351,-0.042254, 0.243361;;, - 240;3;-0.089351,-0.042254, 0.243361;;, - 241;3;-0.089351,-0.042254, 0.243361;;, - 242;3;-0.089351,-0.042254, 0.243361;;, - 243;3;-0.089351,-0.042254, 0.243361;;, - 244;3;-0.089351,-0.042254, 0.243361;;, - 245;3;-0.089351,-0.042254, 0.243361;;, - 246;3;-0.089351,-0.042254, 0.243361;;, - 247;3;-0.089351,-0.042254, 0.243361;;, - 248;3;-0.089351,-0.042254, 0.243361;;, - 249;3;-0.089351,-0.042254, 0.243361;;; - } - } - Animation { - {Armature_Bone_002} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 1;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 2;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 3;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 4;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 5;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 6;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 7;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 8;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 9;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 10;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 11;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 12;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 13;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 14;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 15;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 16;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 17;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 18;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 19;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 20;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 21;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 22;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 23;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 24;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 25;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 26;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 27;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 28;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 29;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 30;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 31;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 32;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 33;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 34;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 35;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 36;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 37;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 38;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 39;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 40;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 41;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 42;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 43;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 44;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 45;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 46;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 47;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 48;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 49;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 50;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 51;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 52;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 53;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 54;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 55;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 56;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 57;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 58;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 59;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 60;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 61;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 62;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 63;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 64;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 65;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 66;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 67;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 68;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 69;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 70;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 71;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 72;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 73;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 74;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 75;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 76;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 77;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 78;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 79;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 80;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 81;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 82;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 83;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 84;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 85;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 86;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 87;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 88;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 89;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 90;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 91;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 92;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 93;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 94;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 95;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 96;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 97;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 98;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 99;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 100;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 101;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 102;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 103;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 104;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 105;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 106;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 107;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 108;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 109;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 110;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 111;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 112;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 113;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 114;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 115;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 116;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 117;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 118;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 119;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 120;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 121;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 122;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 123;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 124;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 125;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 126;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 127;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 128;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 129;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 130;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 131;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 132;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 133;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 134;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 135;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 136;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 137;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 138;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 139;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 140;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 141;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 142;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 143;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 144;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 145;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 146;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 147;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 148;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 149;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 150;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 151;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 152;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 153;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 154;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 155;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 156;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 157;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 158;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 159;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 160;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 161;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 162;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 163;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 164;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 165;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 166;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 167;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 168;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 169;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 170;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 171;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 172;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 173;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 174;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 175;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 176;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 177;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 178;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 179;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 180;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 181;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 182;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 183;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 184;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 185;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 186;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 187;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 188;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 189;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 190;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 191;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 192;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 193;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 194;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 195;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 196;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 197;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 198;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 199;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 200;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 201;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 202;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 203;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 204;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 205;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 206;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 207;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 208;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 209;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 210;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 211;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 212;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 213;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 214;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 215;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 216;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 217;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 218;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 219;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 220;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 221;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 222;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 223;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 224;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 225;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 226;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 227;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 228;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 229;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 230;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 231;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 232;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 233;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 234;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 235;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 236;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 237;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 238;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 239;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 240;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 241;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 242;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 243;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 244;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 245;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 246;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 247;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 248;4;-0.617393, 0.000000, 0.000000,-0.786655;;, - 249;4;-0.617393, 0.000000, 0.000000,-0.786655;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3; 0.000000, 0.705560, 0.000000;;, - 1;3; 0.000000, 0.705560, 0.000000;;, - 2;3; 0.000000, 0.705560, 0.000000;;, - 3;3; 0.000000, 0.705560, 0.000000;;, - 4;3; 0.000000, 0.705560, 0.000000;;, - 5;3; 0.000000, 0.705560, 0.000000;;, - 6;3; 0.000000, 0.705560, 0.000000;;, - 7;3; 0.000000, 0.705560, 0.000000;;, - 8;3; 0.000000, 0.705560, 0.000000;;, - 9;3; 0.000000, 0.705560, 0.000000;;, - 10;3; 0.000000, 0.705560, 0.000000;;, - 11;3; 0.000000, 0.705560, 0.000000;;, - 12;3; 0.000000, 0.705560, 0.000000;;, - 13;3; 0.000000, 0.705560, 0.000000;;, - 14;3; 0.000000, 0.705560, 0.000000;;, - 15;3; 0.000000, 0.705560, 0.000000;;, - 16;3; 0.000000, 0.705560, 0.000000;;, - 17;3; 0.000000, 0.705560, 0.000000;;, - 18;3; 0.000000, 0.705560, 0.000000;;, - 19;3; 0.000000, 0.705560, 0.000000;;, - 20;3; 0.000000, 0.705560, 0.000000;;, - 21;3; 0.000000, 0.705560, 0.000000;;, - 22;3; 0.000000, 0.705560, 0.000000;;, - 23;3; 0.000000, 0.705560, 0.000000;;, - 24;3; 0.000000, 0.705560, 0.000000;;, - 25;3; 0.000000, 0.705560, 0.000000;;, - 26;3; 0.000000, 0.705560, 0.000000;;, - 27;3; 0.000000, 0.705560, 0.000000;;, - 28;3; 0.000000, 0.705560, 0.000000;;, - 29;3; 0.000000, 0.705560, 0.000000;;, - 30;3; 0.000000, 0.705560, 0.000000;;, - 31;3; 0.000000, 0.705560, 0.000000;;, - 32;3; 0.000000, 0.705560, 0.000000;;, - 33;3; 0.000000, 0.705560, 0.000000;;, - 34;3; 0.000000, 0.705560, 0.000000;;, - 35;3; 0.000000, 0.705560, 0.000000;;, - 36;3; 0.000000, 0.705560, 0.000000;;, - 37;3; 0.000000, 0.705560, 0.000000;;, - 38;3; 0.000000, 0.705560, 0.000000;;, - 39;3; 0.000000, 0.705560, 0.000000;;, - 40;3; 0.000000, 0.705560, 0.000000;;, - 41;3; 0.000000, 0.705559, 0.000000;;, - 42;3;-0.000000, 0.705560, 0.000000;;, - 43;3; 0.000000, 0.705560,-0.000000;;, - 44;3; 0.000000, 0.705560, 0.000000;;, - 45;3; 0.000000, 0.705560,-0.000000;;, - 46;3; 0.000000, 0.705559, 0.000000;;, - 47;3;-0.000000, 0.705560, 0.000000;;, - 48;3; 0.000000, 0.705560,-0.000000;;, - 49;3; 0.000000, 0.705560, 0.000000;;, - 50;3;-0.000000, 0.705559, 0.000000;;, - 51;3; 0.000000, 0.705560,-0.000000;;, - 52;3;-0.000000, 0.705560, 0.000000;;, - 53;3; 0.000000, 0.705560,-0.000000;;, - 54;3; 0.000000, 0.705560, 0.000000;;, - 55;3; 0.000000, 0.705560,-0.000000;;, - 56;3;-0.000000, 0.705560, 0.000000;;, - 57;3; 0.000000, 0.705559, 0.000000;;, - 58;3;-0.000000, 0.705560, 0.000000;;, - 59;3; 0.000000, 0.705560, 0.000000;;, - 60;3; 0.000000, 0.705560,-0.000000;;, - 61;3; 0.000000, 0.705560, 0.000000;;, - 62;3; 0.000000, 0.705560, 0.000000;;, - 63;3; 0.000000, 0.705560, 0.000000;;, - 64;3; 0.000000, 0.705560,-0.000000;;, - 65;3;-0.000000, 0.705560, 0.000000;;, - 66;3; 0.000000, 0.705560, 0.000000;;, - 67;3;-0.000000, 0.705560, 0.000000;;, - 68;3; 0.000000, 0.705559, 0.000000;;, - 69;3; 0.000000, 0.705560, 0.000000;;, - 70;3; 0.000000, 0.705560, 0.000000;;, - 71;3;-0.000000, 0.705560, 0.000000;;, - 72;3;-0.000000, 0.705560, 0.000000;;, - 73;3;-0.000000, 0.705560, 0.000000;;, - 74;3;-0.000000, 0.705560, 0.000000;;, - 75;3;-0.000000, 0.705560, 0.000000;;, - 76;3; 0.000000, 0.705559, 0.000000;;, - 77;3;-0.000000, 0.705560, 0.000000;;, - 78;3; 0.000000, 0.705560, 0.000000;;, - 79;3;-0.000000, 0.705559, 0.000000;;, - 80;3; 0.000000, 0.705560, 0.000000;;, - 81;3;-0.000000, 0.705560, 0.000000;;, - 82;3; 0.000000, 0.705560, 0.000000;;, - 83;3; 0.000000, 0.705560, 0.000000;;, - 84;3; 0.000000, 0.705560,-0.000000;;, - 85;3;-0.000000, 0.705560, 0.000000;;, - 86;3;-0.000000, 0.705560, 0.000000;;, - 87;3; 0.000000, 0.705560,-0.000000;;, - 88;3; 0.000000, 0.705560, 0.000000;;, - 89;3; 0.000000, 0.705560, 0.000000;;, - 90;3; 0.000000, 0.705560, 0.000000;;, - 91;3; 0.000000, 0.705560, 0.000000;;, - 92;3; 0.000000, 0.705560, 0.000000;;, - 93;3; 0.000000, 0.705560, 0.000000;;, - 94;3; 0.000000, 0.705560, 0.000000;;, - 95;3; 0.000000, 0.705560, 0.000000;;, - 96;3; 0.000000, 0.705560,-0.000000;;, - 97;3; 0.000000, 0.705560,-0.000000;;, - 98;3; 0.000000, 0.705560, 0.000000;;, - 99;3; 0.000000, 0.705560, 0.000000;;, - 100;3;-0.000000, 0.705560,-0.000000;;, - 101;3; 0.000000, 0.705560,-0.000000;;, - 102;3; 0.000000, 0.705559, 0.000000;;, - 103;3;-0.000000, 0.705560,-0.000000;;, - 104;3;-0.000000, 0.705559,-0.000000;;, - 105;3;-0.000000, 0.705560,-0.000000;;, - 106;3; 0.000000, 0.705560, 0.000000;;, - 107;3;-0.000000, 0.705559,-0.000000;;, - 108;3; 0.000000, 0.705560,-0.000000;;, - 109;3; 0.000000, 0.705559,-0.000000;;, - 110;3;-0.000000, 0.705559, 0.000000;;, - 111;3; 0.000000, 0.705560,-0.000000;;, - 112;3; 0.000000, 0.705560, 0.000000;;, - 113;3; 0.000000, 0.705560,-0.000000;;, - 114;3;-0.000000, 0.705559, 0.000000;;, - 115;3; 0.000000, 0.705560, 0.000000;;, - 116;3;-0.000000, 0.705560,-0.000000;;, - 117;3; 0.000000, 0.705560, 0.000000;;, - 118;3; 0.000000, 0.705560,-0.000000;;, - 119;3; 0.000000, 0.705560, 0.000000;;, - 120;3; 0.000000, 0.705560,-0.000000;;, - 121;3; 0.000000, 0.705560,-0.000000;;, - 122;3;-0.000000, 0.705560,-0.000000;;, - 123;3; 0.000000, 0.705560, 0.000000;;, - 124;3; 0.000000, 0.705560, 0.000000;;, - 125;3; 0.000000, 0.705560, 0.000000;;, - 126;3;-0.000000, 0.705560, 0.000000;;, - 127;3;-0.000000, 0.705560, 0.000000;;, - 128;3;-0.000000, 0.705560,-0.000000;;, - 129;3; 0.000000, 0.705560, 0.000000;;, - 130;3; 0.000000, 0.705559, 0.000000;;, - 131;3; 0.000000, 0.705560, 0.000000;;, - 132;3; 0.000000, 0.705560, 0.000000;;, - 133;3; 0.000000, 0.705560,-0.000000;;, - 134;3; 0.000000, 0.705560, 0.000000;;, - 135;3; 0.000000, 0.705560, 0.000000;;, - 136;3;-0.000000, 0.705560,-0.000000;;, - 137;3; 0.000000, 0.705560, 0.000000;;, - 138;3;-0.000000, 0.705559, 0.000000;;, - 139;3;-0.000000, 0.705560,-0.000000;;, - 140;3; 0.000000, 0.705560, 0.000000;;, - 141;3; 0.000000, 0.705560, 0.000000;;, - 142;3; 0.000000, 0.705560, 0.000000;;, - 143;3; 0.000000, 0.705560,-0.000000;;, - 144;3; 0.000000, 0.705560, 0.000000;;, - 145;3; 0.000000, 0.705560,-0.000000;;, - 146;3; 0.000000, 0.705560, 0.000000;;, - 147;3; 0.000000, 0.705560,-0.000000;;, - 148;3; 0.000000, 0.705560, 0.000000;;, - 149;3; 0.000000, 0.705560, 0.000000;;, - 150;3; 0.000000, 0.705560, 0.000000;;, - 151;3; 0.000000, 0.705560, 0.000000;;, - 152;3; 0.000000, 0.705560, 0.000000;;, - 153;3; 0.000000, 0.705560, 0.000000;;, - 154;3; 0.000000, 0.705560, 0.000000;;, - 155;3; 0.000000, 0.705560, 0.000000;;, - 156;3; 0.000000, 0.705560, 0.000000;;, - 157;3; 0.000000, 0.705560, 0.000000;;, - 158;3; 0.000000, 0.705560, 0.000000;;, - 159;3; 0.000000, 0.705560, 0.000000;;, - 160;3; 0.000000, 0.705560, 0.000000;;, - 161;3; 0.000000, 0.705560, 0.000000;;, - 162;3; 0.000000, 0.705560, 0.000000;;, - 163;3; 0.000000, 0.705560, 0.000000;;, - 164;3; 0.000000, 0.705560, 0.000000;;, - 165;3; 0.000000, 0.705560, 0.000000;;, - 166;3; 0.000000, 0.705560, 0.000000;;, - 167;3; 0.000000, 0.705560, 0.000000;;, - 168;3; 0.000000, 0.705560, 0.000000;;, - 169;3; 0.000000, 0.705560, 0.000000;;, - 170;3; 0.000000, 0.705560, 0.000000;;, - 171;3; 0.000000, 0.705560, 0.000000;;, - 172;3; 0.000000, 0.705560, 0.000000;;, - 173;3; 0.000000, 0.705560, 0.000000;;, - 174;3; 0.000000, 0.705560, 0.000000;;, - 175;3; 0.000000, 0.705560, 0.000000;;, - 176;3; 0.000000, 0.705560, 0.000000;;, - 177;3; 0.000000, 0.705560, 0.000000;;, - 178;3; 0.000000, 0.705560, 0.000000;;, - 179;3; 0.000000, 0.705560, 0.000000;;, - 180;3; 0.000000, 0.705560, 0.000000;;, - 181;3; 0.000000, 0.705560, 0.000000;;, - 182;3; 0.000000, 0.705560, 0.000000;;, - 183;3; 0.000000, 0.705560, 0.000000;;, - 184;3; 0.000000, 0.705560, 0.000000;;, - 185;3; 0.000000, 0.705560, 0.000000;;, - 186;3; 0.000000, 0.705560, 0.000000;;, - 187;3; 0.000000, 0.705560, 0.000000;;, - 188;3; 0.000000, 0.705560, 0.000000;;, - 189;3; 0.000000, 0.705560, 0.000000;;, - 190;3; 0.000000, 0.705560, 0.000000;;, - 191;3; 0.000000, 0.705560, 0.000000;;, - 192;3; 0.000000, 0.705560, 0.000000;;, - 193;3; 0.000000, 0.705560, 0.000000;;, - 194;3; 0.000000, 0.705560, 0.000000;;, - 195;3; 0.000000, 0.705560, 0.000000;;, - 196;3; 0.000000, 0.705560, 0.000000;;, - 197;3; 0.000000, 0.705560, 0.000000;;, - 198;3; 0.000000, 0.705560, 0.000000;;, - 199;3; 0.000000, 0.705560, 0.000000;;, - 200;3; 0.000000, 0.705560, 0.000000;;, - 201;3; 0.000000, 0.705560, 0.000000;;, - 202;3; 0.000000, 0.705560, 0.000000;;, - 203;3; 0.000000, 0.705560, 0.000000;;, - 204;3; 0.000000, 0.705560, 0.000000;;, - 205;3; 0.000000, 0.705560, 0.000000;;, - 206;3; 0.000000, 0.705560, 0.000000;;, - 207;3; 0.000000, 0.705560, 0.000000;;, - 208;3; 0.000000, 0.705560, 0.000000;;, - 209;3; 0.000000, 0.705560, 0.000000;;, - 210;3; 0.000000, 0.705560, 0.000000;;, - 211;3; 0.000000, 0.705560, 0.000000;;, - 212;3; 0.000000, 0.705560, 0.000000;;, - 213;3; 0.000000, 0.705560, 0.000000;;, - 214;3; 0.000000, 0.705560, 0.000000;;, - 215;3; 0.000000, 0.705560, 0.000000;;, - 216;3; 0.000000, 0.705560, 0.000000;;, - 217;3; 0.000000, 0.705560, 0.000000;;, - 218;3; 0.000000, 0.705560, 0.000000;;, - 219;3; 0.000000, 0.705560, 0.000000;;, - 220;3; 0.000000, 0.705560, 0.000000;;, - 221;3; 0.000000, 0.705560, 0.000000;;, - 222;3; 0.000000, 0.705560, 0.000000;;, - 223;3; 0.000000, 0.705560, 0.000000;;, - 224;3; 0.000000, 0.705560, 0.000000;;, - 225;3; 0.000000, 0.705560, 0.000000;;, - 226;3; 0.000000, 0.705560, 0.000000;;, - 227;3; 0.000000, 0.705560, 0.000000;;, - 228;3; 0.000000, 0.705560, 0.000000;;, - 229;3; 0.000000, 0.705560, 0.000000;;, - 230;3; 0.000000, 0.705560, 0.000000;;, - 231;3; 0.000000, 0.705560, 0.000000;;, - 232;3; 0.000000, 0.705560, 0.000000;;, - 233;3; 0.000000, 0.705560, 0.000000;;, - 234;3; 0.000000, 0.705560, 0.000000;;, - 235;3; 0.000000, 0.705560, 0.000000;;, - 236;3; 0.000000, 0.705560, 0.000000;;, - 237;3; 0.000000, 0.705560, 0.000000;;, - 238;3; 0.000000, 0.705560, 0.000000;;, - 239;3; 0.000000, 0.705560, 0.000000;;, - 240;3; 0.000000, 0.705560, 0.000000;;, - 241;3; 0.000000, 0.705560, 0.000000;;, - 242;3; 0.000000, 0.705560, 0.000000;;, - 243;3; 0.000000, 0.705560, 0.000000;;, - 244;3; 0.000000, 0.705560, 0.000000;;, - 245;3; 0.000000, 0.705560, 0.000000;;, - 246;3; 0.000000, 0.705560, 0.000000;;, - 247;3; 0.000000, 0.705560, 0.000000;;, - 248;3; 0.000000, 0.705560, 0.000000;;, - 249;3; 0.000000, 0.705560, 0.000000;;; - } - } - Animation { - {Armature_Bone_022} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 1;4;-0.829327,-0.545780,-0.065796, 0.099978;;, - 2;4;-0.828780,-0.546566,-0.065890, 0.099912;;, - 3;4;-0.827866,-0.547879,-0.066049, 0.099802;;, - 4;4;-0.826593,-0.549709,-0.066269, 0.099649;;, - 5;4;-0.824980,-0.552029,-0.066549, 0.099454;;, - 6;4;-0.823058,-0.554791,-0.066882, 0.099222;;, - 7;4;-0.820874,-0.557930,-0.067260, 0.098959;;, - 8;4;-0.818490,-0.561356,-0.067673, 0.098672;;, - 9;4;-0.815980,-0.564964,-0.068108, 0.098369;;, - 10;4;-0.813428,-0.568633,-0.068551, 0.098061;;, - 11;4;-0.810918,-0.572240,-0.068985, 0.097759;;, - 12;4;-0.808534,-0.575667,-0.069398, 0.097471;;, - 13;4;-0.806351,-0.578805,-0.069777, 0.097208;;, - 14;4;-0.804429,-0.581568,-0.070110, 0.096977;;, - 15;4;-0.802815,-0.583888,-0.070390, 0.096782;;, - 16;4;-0.801542,-0.585717,-0.070610, 0.096629;;, - 17;4;-0.800628,-0.587031,-0.070768, 0.096518;;, - 18;4;-0.800081,-0.587817,-0.070863, 0.096452;;, - 19;4;-0.799901,-0.588077,-0.070895, 0.096431;;, - 20;4;-0.800056,-0.588027,-0.070889, 0.096449;;, - 21;4;-0.800526,-0.587863,-0.070869, 0.096506;;, - 22;4;-0.801312,-0.587564,-0.070833, 0.096601;;, - 23;4;-0.802412,-0.587105,-0.070777, 0.096733;;, - 24;4;-0.803812,-0.586460,-0.070700, 0.096902;;, - 25;4;-0.805490,-0.585601,-0.070596, 0.097104;;, - 26;4;-0.807414,-0.584503,-0.070464, 0.097336;;, - 27;4;-0.809538,-0.583140,-0.070299, 0.097592;;, - 28;4;-0.811807,-0.581494,-0.070101, 0.097866;;, - 29;4;-0.814158,-0.579549,-0.069867, 0.098149;;, - 30;4;-0.816521,-0.577301,-0.069595, 0.098434;;, - 31;4;-0.818829,-0.574749,-0.069288, 0.098713;;, - 32;4;-0.821017,-0.571904,-0.068945, 0.098976;;, - 33;4;-0.823027,-0.568782,-0.068569, 0.099219;;, - 34;4;-0.824814,-0.565403,-0.068161, 0.099434;;, - 35;4;-0.826341,-0.561792,-0.067726, 0.099618;;, - 36;4;-0.827584,-0.557973,-0.067265, 0.099768;;, - 37;4;-0.828530,-0.553972,-0.066783, 0.099882;;, - 38;4;-0.829171,-0.549814,-0.066282, 0.099959;;, - 39;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 40;4;-0.829689,-0.540963,-0.063299, 0.100028;;, - 41;4;-0.829855,-0.536009,-0.056911, 0.100099;;, - 42;4;-0.829999,-0.530678,-0.046585, 0.100261;;, - 43;4;-0.830112,-0.525002,-0.032390, 0.100579;;, - 44;4;-0.830186,-0.519031,-0.014499, 0.101122;;, - 45;4;-0.830208,-0.512830, 0.006789, 0.101972;;, - 46;4;-0.830169,-0.506481, 0.031034, 0.103216;;, - 47;4;-0.830056,-0.500084, 0.057651, 0.104945;;, - 48;4;-0.829860,-0.493753, 0.085923, 0.107247;;, - 49;4;-0.829572,-0.487606, 0.115033, 0.110201;;, - 50;4;-0.829183,-0.481763, 0.144106, 0.113873;;, - 51;4;-0.828690,-0.476337, 0.172269, 0.118309;;, - 52;4;-0.828092,-0.471423, 0.198707, 0.123535;;, - 53;4;-0.827389,-0.467098, 0.222708, 0.129553;;, - 54;4;-0.826586,-0.463417, 0.243692, 0.136347;;, - 55;4;-0.825686,-0.460412, 0.261226, 0.143887;;, - 56;4;-0.824698,-0.458096, 0.275016, 0.152128;;, - 57;4;-0.823629,-0.456467, 0.284895, 0.161023;;, - 58;4;-0.822485,-0.455507, 0.290802, 0.170516;;, - 59;4;-0.821275,-0.455194, 0.292755, 0.180555;;, - 60;4;-0.815954,-0.459491, 0.291027, 0.193613;;, - 61;4;-0.802452,-0.472421, 0.285827, 0.212089;;, - 62;4;-0.781314,-0.493445, 0.277371, 0.235364;;, - 63;4;-0.754119,-0.520943, 0.266311, 0.262054;;, - 64;4;-0.723591,-0.552093, 0.253782, 0.289973;;, - 65;4;-0.693235,-0.583244, 0.241253, 0.316463;;, - 66;4;-0.666539,-0.610742, 0.230193, 0.339009;;, - 67;4;-0.646183,-0.631766, 0.221737, 0.355800;;, - 68;4;-0.633687,-0.644696, 0.216536, 0.365930;;, - 69;4;-0.629540,-0.648993, 0.214808, 0.369250;;, - 70;4;-0.629990,-0.648519, 0.214998, 0.368945;;, - 71;4;-0.631348,-0.647090, 0.215573, 0.368016;;, - 72;4;-0.633624,-0.644696, 0.216536, 0.366447;;, - 73;4;-0.636821,-0.641337, 0.217887, 0.364226;;, - 74;4;-0.640932,-0.637021, 0.219623, 0.361343;;, - 75;4;-0.645942,-0.631766, 0.221737, 0.357793;;, - 76;4;-0.651825,-0.625602, 0.224216, 0.353580;;, - 77;4;-0.658540,-0.618575, 0.227042, 0.348712;;, - 78;4;-0.666033,-0.610742, 0.230193, 0.343208;;, - 79;4;-0.674236,-0.602180, 0.233636, 0.337095;;, - 80;4;-0.683065,-0.592979, 0.237337, 0.330409;;, - 81;4;-0.692423,-0.583244, 0.241253, 0.323198;;, - 82;4;-0.702197,-0.573097, 0.245334, 0.315516;;, - 83;4;-0.712267,-0.562667, 0.249529, 0.307430;;, - 84;4;-0.722501,-0.552093, 0.253782, 0.299011;;, - 85;4;-0.732767,-0.541520, 0.258034, 0.290336;;, - 86;4;-0.742928,-0.531090, 0.262229, 0.281485;;, - 87;4;-0.752855,-0.520943, 0.266311, 0.272538;;, - 88;4;-0.762424,-0.511208, 0.270226, 0.263576;;, - 89;4;-0.771520,-0.502007, 0.273927, 0.254673;;, - 90;4;-0.780044,-0.493445, 0.277371, 0.245899;;, - 91;4;-0.787909,-0.485612, 0.280521, 0.237316;;, - 92;4;-0.795042,-0.478584, 0.283348, 0.228981;;, - 93;4;-0.801385,-0.472421, 0.285827, 0.220940;;, - 94;4;-0.806897,-0.467166, 0.287940, 0.213232;;, - 95;4;-0.811546,-0.462849, 0.289676, 0.205889;;, - 96;4;-0.815313,-0.459491, 0.291027, 0.198935;;, - 97;4;-0.818189,-0.457097, 0.291990, 0.192387;;, - 98;4;-0.820175,-0.455668, 0.292565, 0.186258;;, - 99;4;-0.821275,-0.455194, 0.292755, 0.180555;;, - 100;4;-0.821937,-0.455692, 0.290780, 0.174994;;, - 101;4;-0.822599,-0.457197, 0.284807, 0.169304;;, - 102;4;-0.823256,-0.459713, 0.274821, 0.163512;;, - 103;4;-0.823905,-0.463223, 0.260887, 0.157652;;, - 104;4;-0.824540,-0.467685, 0.243178, 0.151771;;, - 105;4;-0.825158,-0.473022, 0.221994, 0.145921;;, - 106;4;-0.825752,-0.479123, 0.197779, 0.140168;;, - 107;4;-0.826316,-0.485838, 0.171123, 0.134581;;, - 108;4;-0.826843,-0.492986, 0.142753, 0.129235;;, - 109;4;-0.827329,-0.500357, 0.113496, 0.124205;;, - 110;4;-0.827769,-0.507728, 0.084239, 0.119558;;, - 111;4;-0.828158,-0.514876, 0.055868, 0.115353;;, - 112;4;-0.828497,-0.521592, 0.029212, 0.111634;;, - 113;4;-0.828783,-0.527692, 0.004997, 0.108432;;, - 114;4;-0.829018,-0.533029,-0.016187, 0.105759;;, - 115;4;-0.829203,-0.537491,-0.033896, 0.103616;;, - 116;4;-0.829342,-0.541002,-0.047830, 0.101992;;, - 117;4;-0.829436,-0.543518,-0.057816, 0.100865;;, - 118;4;-0.829490,-0.545022,-0.063788, 0.100211;;, - 119;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 120;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 121;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 122;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 123;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 124;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 125;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 126;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 127;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 128;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 129;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 130;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 131;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 132;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 133;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 134;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 135;4;-0.842537,-0.515749,-0.062175, 0.101571;;, - 136;4;-0.879238,-0.430760,-0.051930, 0.105995;;, - 137;4;-0.926362,-0.318593,-0.038407, 0.111676;;, - 138;4;-0.963063,-0.225314,-0.027162, 0.116100;;, - 139;4;-0.976092,-0.181436,-0.021873, 0.117671;;, - 140;4;-0.955224,-0.166043,-0.029211, 0.164615;;, - 141;4;-0.896443,-0.152994,-0.053533, 0.296842;;, - 142;4;-0.820969,-0.143842,-0.085680, 0.466621;;, - 143;4;-0.762188,-0.139084,-0.111002, 0.598848;;, - 144;4;-0.741320,-0.137797,-0.120040, 0.645793;;, - 145;4;-0.749159,-0.174039,-0.115216, 0.597278;;, - 146;4;-0.771238,-0.276122,-0.101626, 0.460626;;, - 147;4;-0.799589,-0.407195,-0.084178, 0.285166;;, - 148;4;-0.821669,-0.509278,-0.070589, 0.148515;;, - 149;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 150;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 151;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 152;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 153;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 154;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 155;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 156;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 157;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 158;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 159;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 160;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 161;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 162;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 163;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 164;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 165;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 166;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 167;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 168;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 169;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 170;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 171;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 172;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 173;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 174;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 175;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 176;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 177;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 178;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 179;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 180;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 181;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 182;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 183;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 184;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 185;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 186;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 187;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 188;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 189;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 190;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 191;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 192;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 193;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 194;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 195;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 196;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 197;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 198;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 199;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 200;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 201;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 202;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 203;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 204;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 205;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 206;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 207;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 208;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 209;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 210;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 211;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 212;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 213;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 214;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 215;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 216;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 217;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 218;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 219;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 220;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 221;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 222;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 223;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 224;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 225;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 226;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 227;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 228;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 229;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 230;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 231;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 232;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 233;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 234;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 235;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 236;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 237;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 238;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 239;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 240;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 241;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 242;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 243;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 244;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 245;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 246;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 247;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 248;4;-0.829508,-0.545520,-0.065764, 0.100000;;, - 249;4;-0.829508,-0.545520,-0.065764, 0.100000;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3; 0.000000, 0.951083, 0.000000;;, - 1;3; 0.000000, 0.951083, 0.000000;;, - 2;3; 0.000000, 0.951083, 0.000000;;, - 3;3; 0.000000, 0.951083, 0.000000;;, - 4;3; 0.000000, 0.951083, 0.000000;;, - 5;3; 0.000000, 0.951083, 0.000000;;, - 6;3; 0.000000, 0.951083, 0.000000;;, - 7;3; 0.000000, 0.951083, 0.000000;;, - 8;3; 0.000000, 0.951083, 0.000000;;, - 9;3; 0.000000, 0.951083, 0.000000;;, - 10;3; 0.000000, 0.951083, 0.000000;;, - 11;3; 0.000000, 0.951083, 0.000000;;, - 12;3; 0.000000, 0.951083, 0.000000;;, - 13;3; 0.000000, 0.951083, 0.000000;;, - 14;3; 0.000000, 0.951083, 0.000000;;, - 15;3; 0.000000, 0.951083, 0.000000;;, - 16;3; 0.000000, 0.951083, 0.000000;;, - 17;3; 0.000000, 0.951083, 0.000000;;, - 18;3; 0.000000, 0.951083, 0.000000;;, - 19;3; 0.000000, 0.951083, 0.000000;;, - 20;3; 0.000000, 0.951083, 0.000000;;, - 21;3; 0.000000, 0.951083, 0.000000;;, - 22;3; 0.000000, 0.951083, 0.000000;;, - 23;3; 0.000000, 0.951083, 0.000000;;, - 24;3; 0.000000, 0.951083, 0.000000;;, - 25;3; 0.000000, 0.951083, 0.000000;;, - 26;3; 0.000000, 0.951083, 0.000000;;, - 27;3; 0.000000, 0.951083, 0.000000;;, - 28;3; 0.000000, 0.951083, 0.000000;;, - 29;3; 0.000000, 0.951083, 0.000000;;, - 30;3; 0.000000, 0.951083, 0.000000;;, - 31;3; 0.000000, 0.951083, 0.000000;;, - 32;3; 0.000000, 0.951083, 0.000000;;, - 33;3; 0.000000, 0.951083, 0.000000;;, - 34;3; 0.000000, 0.951083, 0.000000;;, - 35;3; 0.000000, 0.951083, 0.000000;;, - 36;3; 0.000000, 0.951083, 0.000000;;, - 37;3; 0.000000, 0.951083, 0.000000;;, - 38;3; 0.000000, 0.951083, 0.000000;;, - 39;3; 0.000000, 0.951083, 0.000000;;, - 40;3; 0.000000, 0.951083, 0.000000;;, - 41;3;-0.000000, 0.951083,-0.000000;;, - 42;3;-0.000000, 0.951083, 0.000000;;, - 43;3;-0.000000, 0.951083, 0.000000;;, - 44;3; 0.000000, 0.951083,-0.000000;;, - 45;3;-0.000000, 0.951083, 0.000000;;, - 46;3; 0.000000, 0.951083, 0.000000;;, - 47;3;-0.000000, 0.951083, 0.000000;;, - 48;3; 0.000000, 0.951083,-0.000000;;, - 49;3; 0.000000, 0.951083, 0.000000;;, - 50;3;-0.000000, 0.951083,-0.000000;;, - 51;3; 0.000000, 0.951083,-0.000000;;, - 52;3;-0.000000, 0.951083,-0.000000;;, - 53;3; 0.000000, 0.951083, 0.000000;;, - 54;3; 0.000000, 0.951083,-0.000000;;, - 55;3;-0.000000, 0.951083, 0.000000;;, - 56;3;-0.000000, 0.951083,-0.000000;;, - 57;3; 0.000000, 0.951083, 0.000000;;, - 58;3;-0.000000, 0.951083,-0.000000;;, - 59;3;-0.000000, 0.951083,-0.000000;;, - 60;3; 0.000000, 0.951083,-0.000000;;, - 61;3; 0.000000, 0.951083, 0.000000;;, - 62;3;-0.000000, 0.951083,-0.000000;;, - 63;3; 0.000000, 0.951083,-0.000000;;, - 64;3; 0.000000, 0.951083, 0.000000;;, - 65;3;-0.000000, 0.951083,-0.000000;;, - 66;3;-0.000000, 0.951083,-0.000000;;, - 67;3; 0.000000, 0.951083,-0.000000;;, - 68;3; 0.000000, 0.951083,-0.000000;;, - 69;3; 0.000000, 0.951083,-0.000000;;, - 70;3;-0.000000, 0.951083,-0.000000;;, - 71;3;-0.000000, 0.951083,-0.000000;;, - 72;3; 0.000000, 0.951083,-0.000000;;, - 73;3;-0.000000, 0.951083,-0.000000;;, - 74;3; 0.000000, 0.951083,-0.000000;;, - 75;3;-0.000000, 0.951083,-0.000000;;, - 76;3;-0.000000, 0.951083,-0.000000;;, - 77;3;-0.000000, 0.951083,-0.000000;;, - 78;3;-0.000000, 0.951083,-0.000000;;, - 79;3;-0.000000, 0.951083,-0.000000;;, - 80;3;-0.000000, 0.951083,-0.000000;;, - 81;3;-0.000000, 0.951083,-0.000000;;, - 82;3;-0.000000, 0.951083,-0.000000;;, - 83;3;-0.000000, 0.951083, 0.000000;;, - 84;3; 0.000000, 0.951083, 0.000000;;, - 85;3; 0.000000, 0.951083,-0.000000;;, - 86;3; 0.000000, 0.951083,-0.000000;;, - 87;3; 0.000000, 0.951083,-0.000000;;, - 88;3;-0.000000, 0.951083,-0.000000;;, - 89;3;-0.000000, 0.951083,-0.000000;;, - 90;3;-0.000000, 0.951083,-0.000000;;, - 91;3; 0.000000, 0.951083, 0.000000;;, - 92;3; 0.000000, 0.951083,-0.000000;;, - 93;3; 0.000000, 0.951083, 0.000000;;, - 94;3; 0.000000, 0.951083, 0.000000;;, - 95;3; 0.000000, 0.951083,-0.000000;;, - 96;3; 0.000000, 0.951083,-0.000000;;, - 97;3;-0.000000, 0.951083,-0.000000;;, - 98;3; 0.000000, 0.951083, 0.000000;;, - 99;3;-0.000000, 0.951083,-0.000000;;, - 100;3; 0.000000, 0.951083,-0.000000;;, - 101;3;-0.000000, 0.951083,-0.000000;;, - 102;3; 0.000000, 0.951083,-0.000000;;, - 103;3;-0.000000, 0.951083,-0.000000;;, - 104;3;-0.000000, 0.951083, 0.000000;;, - 105;3; 0.000000, 0.951083, 0.000000;;, - 106;3;-0.000000, 0.951083,-0.000000;;, - 107;3;-0.000000, 0.951083, 0.000000;;, - 108;3;-0.000000, 0.951083,-0.000000;;, - 109;3; 0.000000, 0.951083, 0.000000;;, - 110;3;-0.000000, 0.951083,-0.000000;;, - 111;3;-0.000000, 0.951083, 0.000000;;, - 112;3;-0.000000, 0.951083, 0.000000;;, - 113;3; 0.000000, 0.951083, 0.000000;;, - 114;3;-0.000000, 0.951083,-0.000000;;, - 115;3; 0.000000, 0.951083, 0.000000;;, - 116;3;-0.000000, 0.951083,-0.000000;;, - 117;3; 0.000000, 0.951083,-0.000000;;, - 118;3; 0.000000, 0.951083, 0.000000;;, - 119;3; 0.000000, 0.951083, 0.000000;;, - 120;3; 0.000000, 0.951083, 0.000000;;, - 121;3;-0.000000, 0.951083,-0.000000;;, - 122;3;-0.000000, 0.951083,-0.000000;;, - 123;3;-0.000000, 0.951083,-0.000000;;, - 124;3;-0.000000, 0.951083, 0.000000;;, - 125;3;-0.000000, 0.951083,-0.000000;;, - 126;3; 0.000000, 0.951083,-0.000000;;, - 127;3; 0.000000, 0.951083,-0.000000;;, - 128;3; 0.000000, 0.951083, 0.000000;;, - 129;3;-0.000000, 0.951083, 0.000000;;, - 130;3;-0.000000, 0.951083, 0.000000;;, - 131;3; 0.000000, 0.951083, 0.000000;;, - 132;3; 0.000000, 0.951083,-0.000000;;, - 133;3; 0.000000, 0.951083, 0.000000;;, - 134;3; 0.000000, 0.951083, 0.000000;;, - 135;3; 0.000000, 0.951083, 0.000000;;, - 136;3;-0.000000, 0.951083, 0.000000;;, - 137;3; 0.000000, 0.951083, 0.000000;;, - 138;3;-0.000000, 0.951083, 0.000000;;, - 139;3;-0.000000, 0.951083, 0.000000;;, - 140;3; 0.000000, 0.951083,-0.000000;;, - 141;3;-0.000000, 0.951083, 0.000000;;, - 142;3;-0.000000, 0.951083, 0.000000;;, - 143;3; 0.000000, 0.951083,-0.000000;;, - 144;3; 0.000000, 0.951083, 0.000000;;, - 145;3;-0.000000, 0.951083, 0.000000;;, - 146;3;-0.000000, 0.951083, 0.000000;;, - 147;3;-0.000000, 0.951083,-0.000000;;, - 148;3;-0.000000, 0.951083,-0.000000;;, - 149;3; 0.000000, 0.951083, 0.000000;;, - 150;3; 0.000000, 0.951083, 0.000000;;, - 151;3; 0.000000, 0.951083, 0.000000;;, - 152;3; 0.000000, 0.951083, 0.000000;;, - 153;3; 0.000000, 0.951083, 0.000000;;, - 154;3; 0.000000, 0.951083, 0.000000;;, - 155;3; 0.000000, 0.951083, 0.000000;;, - 156;3; 0.000000, 0.951083, 0.000000;;, - 157;3; 0.000000, 0.951083, 0.000000;;, - 158;3; 0.000000, 0.951083, 0.000000;;, - 159;3; 0.000000, 0.951083, 0.000000;;, - 160;3; 0.000000, 0.951083, 0.000000;;, - 161;3; 0.000000, 0.951083, 0.000000;;, - 162;3; 0.000000, 0.951083, 0.000000;;, - 163;3; 0.000000, 0.951083, 0.000000;;, - 164;3; 0.000000, 0.951083, 0.000000;;, - 165;3; 0.000000, 0.951083, 0.000000;;, - 166;3; 0.000000, 0.951083, 0.000000;;, - 167;3; 0.000000, 0.951083, 0.000000;;, - 168;3; 0.000000, 0.951083, 0.000000;;, - 169;3; 0.000000, 0.951083, 0.000000;;, - 170;3; 0.000000, 0.951083, 0.000000;;, - 171;3; 0.000000, 0.951083, 0.000000;;, - 172;3; 0.000000, 0.951083, 0.000000;;, - 173;3; 0.000000, 0.951083, 0.000000;;, - 174;3; 0.000000, 0.951083, 0.000000;;, - 175;3; 0.000000, 0.951083, 0.000000;;, - 176;3; 0.000000, 0.951083, 0.000000;;, - 177;3; 0.000000, 0.951083, 0.000000;;, - 178;3; 0.000000, 0.951083, 0.000000;;, - 179;3; 0.000000, 0.951083, 0.000000;;, - 180;3; 0.000000, 0.951083, 0.000000;;, - 181;3; 0.000000, 0.951083, 0.000000;;, - 182;3; 0.000000, 0.951083, 0.000000;;, - 183;3; 0.000000, 0.951083, 0.000000;;, - 184;3; 0.000000, 0.951083, 0.000000;;, - 185;3; 0.000000, 0.951083, 0.000000;;, - 186;3; 0.000000, 0.951083, 0.000000;;, - 187;3; 0.000000, 0.951083, 0.000000;;, - 188;3; 0.000000, 0.951083, 0.000000;;, - 189;3; 0.000000, 0.951083, 0.000000;;, - 190;3; 0.000000, 0.951083, 0.000000;;, - 191;3; 0.000000, 0.951083, 0.000000;;, - 192;3; 0.000000, 0.951083, 0.000000;;, - 193;3; 0.000000, 0.951083, 0.000000;;, - 194;3; 0.000000, 0.951083, 0.000000;;, - 195;3; 0.000000, 0.951083, 0.000000;;, - 196;3; 0.000000, 0.951083, 0.000000;;, - 197;3; 0.000000, 0.951083, 0.000000;;, - 198;3; 0.000000, 0.951083, 0.000000;;, - 199;3; 0.000000, 0.951083, 0.000000;;, - 200;3; 0.000000, 0.951083, 0.000000;;, - 201;3; 0.000000, 0.951083, 0.000000;;, - 202;3; 0.000000, 0.951083, 0.000000;;, - 203;3; 0.000000, 0.951083, 0.000000;;, - 204;3; 0.000000, 0.951083, 0.000000;;, - 205;3; 0.000000, 0.951083, 0.000000;;, - 206;3; 0.000000, 0.951083, 0.000000;;, - 207;3; 0.000000, 0.951083, 0.000000;;, - 208;3; 0.000000, 0.951083, 0.000000;;, - 209;3; 0.000000, 0.951083, 0.000000;;, - 210;3; 0.000000, 0.951083, 0.000000;;, - 211;3; 0.000000, 0.951083, 0.000000;;, - 212;3; 0.000000, 0.951083, 0.000000;;, - 213;3; 0.000000, 0.951083, 0.000000;;, - 214;3; 0.000000, 0.951083, 0.000000;;, - 215;3; 0.000000, 0.951083, 0.000000;;, - 216;3; 0.000000, 0.951083, 0.000000;;, - 217;3; 0.000000, 0.951083, 0.000000;;, - 218;3; 0.000000, 0.951083, 0.000000;;, - 219;3; 0.000000, 0.951083, 0.000000;;, - 220;3; 0.000000, 0.951083, 0.000000;;, - 221;3; 0.000000, 0.951083, 0.000000;;, - 222;3; 0.000000, 0.951083, 0.000000;;, - 223;3; 0.000000, 0.951083, 0.000000;;, - 224;3; 0.000000, 0.951083, 0.000000;;, - 225;3; 0.000000, 0.951083, 0.000000;;, - 226;3; 0.000000, 0.951083, 0.000000;;, - 227;3; 0.000000, 0.951083, 0.000000;;, - 228;3; 0.000000, 0.951083, 0.000000;;, - 229;3; 0.000000, 0.951083, 0.000000;;, - 230;3; 0.000000, 0.951083, 0.000000;;, - 231;3; 0.000000, 0.951083, 0.000000;;, - 232;3; 0.000000, 0.951083, 0.000000;;, - 233;3; 0.000000, 0.951083, 0.000000;;, - 234;3; 0.000000, 0.951083, 0.000000;;, - 235;3; 0.000000, 0.951083, 0.000000;;, - 236;3; 0.000000, 0.951083, 0.000000;;, - 237;3; 0.000000, 0.951083, 0.000000;;, - 238;3; 0.000000, 0.951083, 0.000000;;, - 239;3; 0.000000, 0.951083, 0.000000;;, - 240;3; 0.000000, 0.951083, 0.000000;;, - 241;3; 0.000000, 0.951083, 0.000000;;, - 242;3; 0.000000, 0.951083, 0.000000;;, - 243;3; 0.000000, 0.951083, 0.000000;;, - 244;3; 0.000000, 0.951083, 0.000000;;, - 245;3; 0.000000, 0.951083, 0.000000;;, - 246;3; 0.000000, 0.951083, 0.000000;;, - 247;3; 0.000000, 0.951083, 0.000000;;, - 248;3; 0.000000, 0.951083, 0.000000;;, - 249;3; 0.000000, 0.951083, 0.000000;;; - } - } - Animation { - {Armature_Bone_024} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 1;4;-0.979225,-0.202765, 0.000000,-0.000000;;, - 2;4;-0.979319,-0.202280, 0.000000,-0.000000;;, - 3;4;-0.979476,-0.201470, 0.000000,-0.000000;;, - 4;4;-0.979694,-0.200340, 0.000000,-0.000000;;, - 5;4;-0.979971,-0.198909, 0.000000,-0.000000;;, - 6;4;-0.980300,-0.197204, 0.000000,-0.000000;;, - 7;4;-0.980675,-0.195267, 0.000000,-0.000000;;, - 8;4;-0.981084,-0.193153, 0.000000,-0.000000;;, - 9;4;-0.981514,-0.190926, 0.000000,-0.000000;;, - 10;4;-0.981952,-0.188662, 0.000000,-0.000000;;, - 11;4;-0.982382,-0.186436, 0.000000,-0.000000;;, - 12;4;-0.982791,-0.184321, 0.000000,-0.000000;;, - 13;4;-0.983165,-0.182385, 0.000000,-0.000000;;, - 14;4;-0.983495,-0.180680, 0.000000,-0.000000;;, - 15;4;-0.983772,-0.179248, 0.000000,-0.000000;;, - 16;4;-0.983990,-0.178119, 0.000000,-0.000000;;, - 17;4;-0.984147,-0.177308, 0.000000,-0.000000;;, - 18;4;-0.984240,-0.176823, 0.000000,-0.000000;;, - 19;4;-0.984271,-0.176663, 0.000000,-0.000000;;, - 20;4;-0.984244,-0.176808, 0.000000,-0.000000;;, - 21;4;-0.984159,-0.177245, 0.000000,-0.000000;;, - 22;4;-0.984017,-0.177977, 0.000000,-0.000000;;, - 23;4;-0.983820,-0.178997, 0.000000,-0.000000;;, - 24;4;-0.983569,-0.180295, 0.000000,-0.000000;;, - 25;4;-0.983269,-0.181846, 0.000000,-0.000000;;, - 26;4;-0.982926,-0.183620, 0.000000,-0.000000;;, - 27;4;-0.982549,-0.185573, 0.000000,-0.000000;;, - 28;4;-0.982147,-0.187651, 0.000000,-0.000000;;, - 29;4;-0.981733,-0.189794, 0.000000,-0.000000;;, - 30;4;-0.981319,-0.191937, 0.000000,-0.000000;;, - 31;4;-0.980917,-0.194016, 0.000000,-0.000000;;, - 32;4;-0.980539,-0.195968, 0.000000,-0.000000;;, - 33;4;-0.980196,-0.197742, 0.000000,-0.000000;;, - 34;4;-0.979896,-0.199294, 0.000000,-0.000000;;, - 35;4;-0.979646,-0.200591, 0.000000,-0.000000;;, - 36;4;-0.979448,-0.201612, 0.000000,-0.000000;;, - 37;4;-0.979307,-0.202343, 0.000000,-0.000000;;, - 38;4;-0.979222,-0.202781, 0.000000,-0.000000;;, - 39;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 40;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 41;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 42;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 43;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 44;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 45;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 46;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 47;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 48;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 49;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 50;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 51;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 52;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 53;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 54;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 55;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 56;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 57;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 58;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 59;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 60;4;-0.979599,-0.199632, 0.001015, 0.000069;;, - 61;4;-0.980819,-0.189721, 0.004068, 0.000277;;, - 62;4;-0.982801,-0.173606, 0.009032, 0.000614;;, - 63;4;-0.985393,-0.152528, 0.015525, 0.001056;;, - 64;4;-0.988330,-0.128650, 0.022881, 0.001556;;, - 65;4;-0.991268,-0.104772, 0.030236, 0.002056;;, - 66;4;-0.993860,-0.083694, 0.036729, 0.002498;;, - 67;4;-0.995843,-0.067579, 0.041694, 0.002835;;, - 68;4;-0.997062,-0.057668, 0.044747, 0.003043;;, - 69;4;-0.997467,-0.054375, 0.045761, 0.003112;;, - 70;4;-0.997422,-0.054738, 0.045649, 0.003104;;, - 71;4;-0.997287,-0.055833, 0.045312, 0.003081;;, - 72;4;-0.997062,-0.057668, 0.044747, 0.003043;;, - 73;4;-0.996745,-0.060243, 0.043954, 0.002989;;, - 74;4;-0.996338,-0.063551, 0.042934, 0.002920;;, - 75;4;-0.995843,-0.067579, 0.041694, 0.002835;;, - 76;4;-0.995261,-0.072304, 0.040238, 0.002736;;, - 77;4;-0.994599,-0.077691, 0.038579, 0.002623;;, - 78;4;-0.993860,-0.083694, 0.036729, 0.002498;;, - 79;4;-0.993053,-0.090258, 0.034707, 0.002360;;, - 80;4;-0.992185,-0.097311, 0.032535, 0.002212;;, - 81;4;-0.991268,-0.104772, 0.030236, 0.002056;;, - 82;4;-0.990311,-0.112551, 0.027840, 0.001893;;, - 83;4;-0.989327,-0.120545, 0.025377, 0.001726;;, - 84;4;-0.988331,-0.128650, 0.022881, 0.001556;;, - 85;4;-0.987334,-0.136755, 0.020384, 0.001386;;, - 86;4;-0.986350,-0.144749, 0.017921, 0.001219;;, - 87;4;-0.985393,-0.152528, 0.015525, 0.001056;;, - 88;4;-0.984476,-0.159989, 0.013226, 0.000899;;, - 89;4;-0.983608,-0.167043, 0.011054, 0.000752;;, - 90;4;-0.982801,-0.173606, 0.009032, 0.000614;;, - 91;4;-0.982062,-0.179610, 0.007183, 0.000488;;, - 92;4;-0.981400,-0.184996, 0.005523, 0.000376;;, - 93;4;-0.980819,-0.189721, 0.004068, 0.000277;;, - 94;4;-0.980323,-0.193749, 0.002827, 0.000192;;, - 95;4;-0.979916,-0.197058, 0.001808, 0.000123;;, - 96;4;-0.979599,-0.199632, 0.001015, 0.000069;;, - 97;4;-0.979374,-0.201467, 0.000449, 0.000031;;, - 98;4;-0.979239,-0.202562, 0.000112, 0.000008;;, - 99;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 100;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 101;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 102;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 103;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 104;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 105;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 106;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 107;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 108;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 109;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 110;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 111;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 112;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 113;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 114;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 115;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 116;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 117;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 118;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 119;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 120;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 121;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 122;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 123;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 124;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 125;4;-0.978512,-0.205951, 0.000000,-0.000000;;, - 126;4;-0.976590,-0.214474, 0.000000,-0.000000;;, - 127;4;-0.974122,-0.225417, 0.000000,-0.000000;;, - 128;4;-0.972201,-0.233940, 0.000000,-0.000000;;, - 129;4;-0.971518,-0.236966, 0.000000,-0.000000;;, - 130;4;-0.973636,-0.235946, 0.000000,-0.000000;;, - 131;4;-0.979692,-0.226951, 0.000000,-0.000000;;, - 132;4;-0.987713,-0.198964, 0.000000,-0.000000;;, - 133;4;-0.994437,-0.145175, 0.000000,-0.000000;;, - 134;4;-0.997689,-0.067941, 0.000000,-0.000000;;, - 135;4;-0.966279, 0.069057, 0.000000,-0.000000;;, - 136;4;-0.875365, 0.291181, 0.000000,-0.000000;;, - 137;4;-0.758021, 0.535308, 0.000000,-0.000000;;, - 138;4;-0.666440, 0.712638, 0.000000,-0.000000;;, - 139;4;-0.633894, 0.773420, 0.000000, 0.000000;;, - 140;4;-0.660389, 0.732977,-0.019900, 0.011306;;, - 141;4;-0.735944, 0.612192,-0.075952, 0.043150;;, - 142;4;-0.835448, 0.438670,-0.147923, 0.084039;;, - 143;4;-0.917791, 0.267645,-0.203975, 0.115884;;, - 144;4;-0.955834, 0.141723,-0.223875, 0.127189;;, - 145;4;-0.967336, 0.041315,-0.203975, 0.115884;;, - 146;4;-0.974923,-0.057840,-0.147923, 0.084039;;, - 147;4;-0.978440,-0.139082,-0.075952, 0.043150;;, - 148;4;-0.979240,-0.187997,-0.019900, 0.011306;;, - 149;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 150;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 151;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 152;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 153;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 154;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 155;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 156;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 157;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 158;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 159;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 160;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 161;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 162;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 163;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 164;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 165;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 166;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 167;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 168;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 169;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 170;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 171;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 172;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 173;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 174;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 175;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 176;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 177;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 178;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 179;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 180;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 181;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 182;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 183;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 184;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 185;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 186;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 187;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 188;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 189;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 190;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 191;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 192;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 193;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 194;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 195;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 196;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 197;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 198;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 199;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 200;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 201;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 202;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 203;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 204;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 205;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 206;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 207;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 208;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 209;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 210;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 211;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 212;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 213;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 214;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 215;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 216;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 217;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 218;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 219;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 220;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 221;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 222;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 223;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 224;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 225;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 226;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 227;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 228;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 229;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 230;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 231;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 232;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 233;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 234;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 235;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 236;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 237;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 238;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 239;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 240;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 241;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 242;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 243;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 244;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 245;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 246;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 247;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 248;4;-0.979194,-0.202925, 0.000000,-0.000000;;, - 249;4;-0.979194,-0.202925, 0.000000,-0.000000;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3; 0.000000, 2.410316,-0.000000;;, - 1;3; 0.000000, 2.410316, 0.000000;;, - 2;3; 0.000000, 2.410316,-0.000000;;, - 3;3; 0.000000, 2.410316,-0.000000;;, - 4;3; 0.000000, 2.410316,-0.000000;;, - 5;3; 0.000000, 2.410316, 0.000000;;, - 6;3; 0.000000, 2.410316,-0.000000;;, - 7;3; 0.000000, 2.410316, 0.000000;;, - 8;3; 0.000000, 2.410316, 0.000000;;, - 9;3;-0.000000, 2.410316, 0.000000;;, - 10;3;-0.000000, 2.410316, 0.000000;;, - 11;3;-0.000000, 2.410316,-0.000000;;, - 12;3;-0.000000, 2.410315, 0.000000;;, - 13;3;-0.000000, 2.410316, 0.000000;;, - 14;3;-0.000000, 2.410316, 0.000000;;, - 15;3;-0.000000, 2.410315, 0.000000;;, - 16;3; 0.000000, 2.410316, 0.000000;;, - 17;3;-0.000000, 2.410316, 0.000000;;, - 18;3;-0.000000, 2.410316, 0.000000;;, - 19;3;-0.000000, 2.410315, 0.000000;;, - 20;3; 0.000000, 2.410316,-0.000000;;, - 21;3;-0.000000, 2.410315, 0.000000;;, - 22;3; 0.000000, 2.410316,-0.000000;;, - 23;3; 0.000000, 2.410315, 0.000000;;, - 24;3;-0.000000, 2.410315,-0.000000;;, - 25;3;-0.000000, 2.410316, 0.000000;;, - 26;3;-0.000000, 2.410316,-0.000000;;, - 27;3;-0.000000, 2.410316,-0.000000;;, - 28;3;-0.000000, 2.410315, 0.000000;;, - 29;3;-0.000000, 2.410316, 0.000000;;, - 30;3;-0.000000, 2.410316, 0.000000;;, - 31;3;-0.000000, 2.410315, 0.000000;;, - 32;3;-0.000000, 2.410315,-0.000000;;, - 33;3; 0.000000, 2.410315, 0.000000;;, - 34;3; 0.000000, 2.410316, 0.000000;;, - 35;3;-0.000000, 2.410316,-0.000000;;, - 36;3; 0.000000, 2.410316, 0.000000;;, - 37;3; 0.000000, 2.410316, 0.000000;;, - 38;3; 0.000000, 2.410315, 0.000000;;, - 39;3; 0.000000, 2.410316,-0.000000;;, - 40;3; 0.000000, 2.410315, 0.000000;;, - 41;3; 0.000000, 2.410316,-0.000000;;, - 42;3;-0.000000, 2.410316, 0.000000;;, - 43;3; 0.000000, 2.410316,-0.000000;;, - 44;3;-0.000000, 2.410316, 0.000000;;, - 45;3;-0.000000, 2.410316,-0.000000;;, - 46;3; 0.000000, 2.410316, 0.000000;;, - 47;3; 0.000000, 2.410316,-0.000000;;, - 48;3;-0.000000, 2.410316, 0.000000;;, - 49;3;-0.000000, 2.410316, 0.000000;;, - 50;3; 0.000000, 2.410316, 0.000000;;, - 51;3;-0.000000, 2.410316,-0.000000;;, - 52;3; 0.000000, 2.410316, 0.000000;;, - 53;3; 0.000000, 2.410316, 0.000000;;, - 54;3;-0.000000, 2.410316,-0.000000;;, - 55;3;-0.000000, 2.410316,-0.000000;;, - 56;3;-0.000000, 2.410316, 0.000000;;, - 57;3; 0.000000, 2.410316,-0.000000;;, - 58;3; 0.000000, 2.410316,-0.000000;;, - 59;3; 0.000000, 2.410316,-0.000000;;, - 60;3; 0.000000, 2.410316,-0.000000;;, - 61;3;-0.000000, 2.410315,-0.000000;;, - 62;3;-0.000000, 2.410316, 0.000000;;, - 63;3; 0.000000, 2.410316,-0.000000;;, - 64;3; 0.000000, 2.410316,-0.000000;;, - 65;3; 0.000000, 2.410315,-0.000000;;, - 66;3;-0.000000, 2.410316,-0.000000;;, - 67;3;-0.000000, 2.410315,-0.000000;;, - 68;3;-0.000000, 2.410316,-0.000000;;, - 69;3; 0.000000, 2.410316,-0.000000;;, - 70;3;-0.000000, 2.410315,-0.000000;;, - 71;3;-0.000000, 2.410316, 0.000000;;, - 72;3;-0.000000, 2.410316, 0.000000;;, - 73;3; 0.000000, 2.410316,-0.000000;;, - 74;3; 0.000000, 2.410316, 0.000000;;, - 75;3;-0.000000, 2.410315, 0.000000;;, - 76;3; 0.000000, 2.410315,-0.000000;;, - 77;3; 0.000000, 2.410315, 0.000000;;, - 78;3; 0.000000, 2.410316,-0.000000;;, - 79;3;-0.000000, 2.410316, 0.000000;;, - 80;3; 0.000000, 2.410316,-0.000000;;, - 81;3;-0.000000, 2.410316, 0.000000;;, - 82;3; 0.000000, 2.410316, 0.000000;;, - 83;3; 0.000000, 2.410315,-0.000000;;, - 84;3; 0.000000, 2.410316,-0.000000;;, - 85;3; 0.000000, 2.410316,-0.000000;;, - 86;3; 0.000000, 2.410316,-0.000000;;, - 87;3; 0.000000, 2.410315, 0.000000;;, - 88;3;-0.000000, 2.410316, 0.000000;;, - 89;3;-0.000000, 2.410315,-0.000000;;, - 90;3; 0.000000, 2.410315,-0.000000;;, - 91;3;-0.000000, 2.410316,-0.000000;;, - 92;3;-0.000000, 2.410316,-0.000000;;, - 93;3;-0.000000, 2.410315,-0.000000;;, - 94;3; 0.000000, 2.410316,-0.000000;;, - 95;3;-0.000000, 2.410316, 0.000000;;, - 96;3;-0.000000, 2.410316,-0.000000;;, - 97;3;-0.000000, 2.410316,-0.000000;;, - 98;3; 0.000000, 2.410316,-0.000000;;, - 99;3; 0.000000, 2.410316,-0.000000;;, - 100;3;-0.000000, 2.410316, 0.000000;;, - 101;3; 0.000000, 2.410316,-0.000000;;, - 102;3;-0.000000, 2.410316, 0.000000;;, - 103;3; 0.000000, 2.410316, 0.000000;;, - 104;3;-0.000000, 2.410316, 0.000000;;, - 105;3; 0.000000, 2.410316,-0.000000;;, - 106;3;-0.000000, 2.410316, 0.000000;;, - 107;3; 0.000000, 2.410315,-0.000000;;, - 108;3;-0.000000, 2.410316,-0.000000;;, - 109;3; 0.000000, 2.410316, 0.000000;;, - 110;3; 0.000000, 2.410316, 0.000000;;, - 111;3; 0.000000, 2.410315,-0.000000;;, - 112;3; 0.000000, 2.410316,-0.000000;;, - 113;3;-0.000000, 2.410316, 0.000000;;, - 114;3; 0.000000, 2.410316, 0.000000;;, - 115;3;-0.000000, 2.410316,-0.000000;;, - 116;3; 0.000000, 2.410316, 0.000000;;, - 117;3;-0.000000, 2.410315,-0.000000;;, - 118;3;-0.000000, 2.410316, 0.000000;;, - 119;3; 0.000000, 2.410316,-0.000000;;, - 120;3;-0.000000, 2.410315,-0.000000;;, - 121;3; 0.000000, 2.410316,-0.000000;;, - 122;3;-0.000000, 2.410316,-0.000000;;, - 123;3; 0.000000, 2.410316,-0.000000;;, - 124;3;-0.000000, 2.410315,-0.000000;;, - 125;3; 0.000000, 2.410316, 0.000000;;, - 126;3; 0.000000, 2.410316,-0.000000;;, - 127;3; 0.000000, 2.410316,-0.000000;;, - 128;3; 0.000000, 2.410315,-0.000000;;, - 129;3; 0.000000, 2.410316,-0.000000;;, - 130;3;-0.000000, 2.410316, 0.000000;;, - 131;3; 0.000000, 2.410316, 0.000000;;, - 132;3; 0.000000, 2.410316,-0.000000;;, - 133;3; 0.000000, 2.410316,-0.000000;;, - 134;3; 0.000000, 2.410316,-0.000000;;, - 135;3; 0.000000, 2.410316,-0.000000;;, - 136;3; 0.000000, 2.410316, 0.000000;;, - 137;3; 0.000000, 2.410316, 0.000000;;, - 138;3; 0.000000, 2.410316, 0.000000;;, - 139;3; 0.000000, 2.410316,-0.000000;;, - 140;3;-0.000000, 2.410316,-0.000000;;, - 141;3; 0.000000, 2.410316,-0.000000;;, - 142;3; 0.000000, 2.410315, 0.000000;;, - 143;3;-0.000000, 2.410316,-0.000000;;, - 144;3; 0.000000, 2.410316,-0.000000;;, - 145;3; 0.000000, 2.410316, 0.000000;;, - 146;3; 0.000000, 2.410316, 0.000000;;, - 147;3; 0.000000, 2.410316, 0.000000;;, - 148;3;-0.000000, 2.410315, 0.000000;;, - 149;3; 0.000000, 2.410316,-0.000000;;, - 150;3; 0.000000, 2.410316,-0.000000;;, - 151;3; 0.000000, 2.410316,-0.000000;;, - 152;3; 0.000000, 2.410316,-0.000000;;, - 153;3; 0.000000, 2.410316,-0.000000;;, - 154;3; 0.000000, 2.410316,-0.000000;;, - 155;3; 0.000000, 2.410316,-0.000000;;, - 156;3; 0.000000, 2.410316,-0.000000;;, - 157;3; 0.000000, 2.410316,-0.000000;;, - 158;3; 0.000000, 2.410316,-0.000000;;, - 159;3; 0.000000, 2.410316,-0.000000;;, - 160;3; 0.000000, 2.410316,-0.000000;;, - 161;3; 0.000000, 2.410316,-0.000000;;, - 162;3; 0.000000, 2.410316,-0.000000;;, - 163;3; 0.000000, 2.410316,-0.000000;;, - 164;3; 0.000000, 2.410316,-0.000000;;, - 165;3; 0.000000, 2.410316,-0.000000;;, - 166;3; 0.000000, 2.410316,-0.000000;;, - 167;3; 0.000000, 2.410316,-0.000000;;, - 168;3; 0.000000, 2.410316,-0.000000;;, - 169;3; 0.000000, 2.410316,-0.000000;;, - 170;3; 0.000000, 2.410316,-0.000000;;, - 171;3; 0.000000, 2.410316,-0.000000;;, - 172;3; 0.000000, 2.410316,-0.000000;;, - 173;3; 0.000000, 2.410316,-0.000000;;, - 174;3; 0.000000, 2.410316,-0.000000;;, - 175;3; 0.000000, 2.410316,-0.000000;;, - 176;3; 0.000000, 2.410316,-0.000000;;, - 177;3; 0.000000, 2.410316,-0.000000;;, - 178;3; 0.000000, 2.410316,-0.000000;;, - 179;3; 0.000000, 2.410316,-0.000000;;, - 180;3; 0.000000, 2.410316,-0.000000;;, - 181;3; 0.000000, 2.410316,-0.000000;;, - 182;3; 0.000000, 2.410316,-0.000000;;, - 183;3; 0.000000, 2.410316,-0.000000;;, - 184;3; 0.000000, 2.410316,-0.000000;;, - 185;3; 0.000000, 2.410316,-0.000000;;, - 186;3; 0.000000, 2.410316,-0.000000;;, - 187;3; 0.000000, 2.410316,-0.000000;;, - 188;3; 0.000000, 2.410316,-0.000000;;, - 189;3; 0.000000, 2.410316,-0.000000;;, - 190;3; 0.000000, 2.410316,-0.000000;;, - 191;3; 0.000000, 2.410316,-0.000000;;, - 192;3; 0.000000, 2.410316,-0.000000;;, - 193;3; 0.000000, 2.410316,-0.000000;;, - 194;3; 0.000000, 2.410316,-0.000000;;, - 195;3; 0.000000, 2.410316,-0.000000;;, - 196;3; 0.000000, 2.410316,-0.000000;;, - 197;3; 0.000000, 2.410316,-0.000000;;, - 198;3; 0.000000, 2.410316,-0.000000;;, - 199;3; 0.000000, 2.410316,-0.000000;;, - 200;3; 0.000000, 2.410316,-0.000000;;, - 201;3; 0.000000, 2.410316,-0.000000;;, - 202;3; 0.000000, 2.410316,-0.000000;;, - 203;3; 0.000000, 2.410316,-0.000000;;, - 204;3; 0.000000, 2.410316,-0.000000;;, - 205;3; 0.000000, 2.410316,-0.000000;;, - 206;3; 0.000000, 2.410316,-0.000000;;, - 207;3; 0.000000, 2.410316,-0.000000;;, - 208;3; 0.000000, 2.410316,-0.000000;;, - 209;3; 0.000000, 2.410316,-0.000000;;, - 210;3; 0.000000, 2.410316,-0.000000;;, - 211;3; 0.000000, 2.410316,-0.000000;;, - 212;3; 0.000000, 2.410316,-0.000000;;, - 213;3; 0.000000, 2.410316,-0.000000;;, - 214;3; 0.000000, 2.410316,-0.000000;;, - 215;3; 0.000000, 2.410316,-0.000000;;, - 216;3; 0.000000, 2.410316,-0.000000;;, - 217;3; 0.000000, 2.410316,-0.000000;;, - 218;3; 0.000000, 2.410316,-0.000000;;, - 219;3; 0.000000, 2.410316,-0.000000;;, - 220;3; 0.000000, 2.410316,-0.000000;;, - 221;3; 0.000000, 2.410316,-0.000000;;, - 222;3; 0.000000, 2.410316,-0.000000;;, - 223;3; 0.000000, 2.410316,-0.000000;;, - 224;3; 0.000000, 2.410316,-0.000000;;, - 225;3; 0.000000, 2.410316,-0.000000;;, - 226;3; 0.000000, 2.410316,-0.000000;;, - 227;3; 0.000000, 2.410316,-0.000000;;, - 228;3; 0.000000, 2.410316,-0.000000;;, - 229;3; 0.000000, 2.410316,-0.000000;;, - 230;3; 0.000000, 2.410316,-0.000000;;, - 231;3; 0.000000, 2.410316,-0.000000;;, - 232;3; 0.000000, 2.410316,-0.000000;;, - 233;3; 0.000000, 2.410316,-0.000000;;, - 234;3; 0.000000, 2.410316,-0.000000;;, - 235;3; 0.000000, 2.410316,-0.000000;;, - 236;3; 0.000000, 2.410316,-0.000000;;, - 237;3; 0.000000, 2.410316,-0.000000;;, - 238;3; 0.000000, 2.410316,-0.000000;;, - 239;3; 0.000000, 2.410316,-0.000000;;, - 240;3; 0.000000, 2.410316,-0.000000;;, - 241;3; 0.000000, 2.410316,-0.000000;;, - 242;3; 0.000000, 2.410316,-0.000000;;, - 243;3; 0.000000, 2.410316,-0.000000;;, - 244;3; 0.000000, 2.410316,-0.000000;;, - 245;3; 0.000000, 2.410316,-0.000000;;, - 246;3; 0.000000, 2.410316,-0.000000;;, - 247;3; 0.000000, 2.410316,-0.000000;;, - 248;3; 0.000000, 2.410316,-0.000000;;, - 249;3; 0.000000, 2.410316,-0.000000;;; - } - } - Animation { - {Armature_Bone_026} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 1;4;-0.981826,-0.189541,-0.000000,-0.000000;;, - 2;4;-0.982120,-0.187295,-0.000000,-0.000000;;, - 3;4;-0.982611,-0.183541,-0.000000,-0.000000;;, - 4;4;-0.983295,-0.178311,-0.000000,-0.000000;;, - 5;4;-0.984163,-0.171681,-0.000000,-0.000000;;, - 6;4;-0.985196,-0.163784,-0.000000,-0.000000;;, - 7;4;-0.986369,-0.154813,-0.000000,-0.000000;;, - 8;4;-0.987650,-0.145019,-0.000000,-0.000000;;, - 9;4;-0.988999,-0.134708,-0.000000,-0.000000;;, - 10;4;-0.990371,-0.124221,-0.000000,-0.000000;;, - 11;4;-0.991720,-0.113910,-0.000000,-0.000000;;, - 12;4;-0.993001,-0.104116,-0.000000,-0.000000;;, - 13;4;-0.994175,-0.095145,-0.000000,-0.000000;;, - 14;4;-0.995208,-0.087248,-0.000000,-0.000000;;, - 15;4;-0.996075,-0.080618,-0.000000,-0.000000;;, - 16;4;-0.996759,-0.075388,-0.000000,-0.000000;;, - 17;4;-0.997250,-0.071634,-0.000000,-0.000000;;, - 18;4;-0.997544,-0.069388,-0.000000,-0.000000;;, - 19;4;-0.997641,-0.068645,-0.000000,-0.000000;;, - 20;4;-0.997554,-0.069315,-0.000000,-0.000000;;, - 21;4;-0.997289,-0.071341,-0.000000,-0.000000;;, - 22;4;-0.996845,-0.074729,-0.000000,-0.000000;;, - 23;4;-0.996227,-0.079457,-0.000000,-0.000000;;, - 24;4;-0.995441,-0.085465,-0.000000,-0.000000;;, - 25;4;-0.994501,-0.092653,-0.000000,-0.000000;;, - 26;4;-0.993426,-0.100869,-0.000000,-0.000000;;, - 27;4;-0.992243,-0.109912,-0.000000,-0.000000;;, - 28;4;-0.990984,-0.119538,-0.000000,-0.000000;;, - 29;4;-0.989685,-0.129464,-0.000000,-0.000000;;, - 30;4;-0.988387,-0.139391,-0.000000,-0.000000;;, - 31;4;-0.987128,-0.149017,-0.000000,-0.000000;;, - 32;4;-0.985945,-0.158060,-0.000000,-0.000000;;, - 33;4;-0.984870,-0.166276,-0.000000,-0.000000;;, - 34;4;-0.983930,-0.173463,-0.000000,-0.000000;;, - 35;4;-0.983144,-0.179472,-0.000000,-0.000000;;, - 36;4;-0.982525,-0.184199,-0.000000,-0.000000;;, - 37;4;-0.982082,-0.187588,-0.000000,-0.000000;;, - 38;4;-0.981817,-0.189614,-0.000000,-0.000000;;, - 39;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 40;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 41;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 42;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 43;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 44;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 45;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 46;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 47;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 48;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 49;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 50;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 51;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 52;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 53;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 54;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 55;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 56;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 57;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 58;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 59;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 60;4;-0.982098,-0.186171, 0.001130, 0.000565;;, - 61;4;-0.983208,-0.173792, 0.004530, 0.002265;;, - 62;4;-0.985012,-0.153663, 0.010059, 0.005030;;, - 63;4;-0.987373,-0.127337, 0.017291, 0.008646;;, - 64;4;-0.990047,-0.097513, 0.025483, 0.012743;;, - 65;4;-0.992721,-0.067689, 0.033675, 0.016839;;, - 66;4;-0.995081,-0.041362, 0.040906, 0.020456;;, - 67;4;-0.996885,-0.021234, 0.046435, 0.023220;;, - 68;4;-0.997995,-0.008855, 0.049836, 0.024921;;, - 69;4;-0.998364,-0.004741, 0.050966, 0.025486;;, - 70;4;-0.998324,-0.005195, 0.050841, 0.025423;;, - 71;4;-0.998201,-0.006563, 0.050465, 0.025235;;, - 72;4;-0.997995,-0.008855, 0.049836, 0.024921;;, - 73;4;-0.997707,-0.012070, 0.048952, 0.024479;;, - 74;4;-0.997337,-0.016203, 0.047817, 0.023911;;, - 75;4;-0.996885,-0.021234, 0.046435, 0.023220;;, - 76;4;-0.996356,-0.027135, 0.044814, 0.022410;;, - 77;4;-0.995753,-0.033863, 0.042966, 0.021486;;, - 78;4;-0.995081,-0.041362, 0.040906, 0.020456;;, - 79;4;-0.994346,-0.049560, 0.038655, 0.019330;;, - 80;4;-0.993556,-0.058369, 0.036235, 0.018119;;, - 81;4;-0.992720,-0.067689, 0.033675, 0.016839;;, - 82;4;-0.991849,-0.077404, 0.031006, 0.015505;;, - 83;4;-0.990954,-0.087390, 0.028263, 0.014133;;, - 84;4;-0.990047,-0.097513, 0.025483, 0.012743;;, - 85;4;-0.989139,-0.107636, 0.022702, 0.011352;;, - 86;4;-0.988244,-0.117621, 0.019959, 0.009981;;, - 87;4;-0.987373,-0.127337, 0.017291, 0.008646;;, - 88;4;-0.986537,-0.136656, 0.014731, 0.007366;;, - 89;4;-0.985747,-0.145466, 0.012311, 0.006156;;, - 90;4;-0.985012,-0.153663, 0.010059, 0.005030;;, - 91;4;-0.984340,-0.161162, 0.007999, 0.004000;;, - 92;4;-0.983737,-0.167890, 0.006151, 0.003076;;, - 93;4;-0.983208,-0.173791, 0.004530, 0.002265;;, - 94;4;-0.982757,-0.178823, 0.003148, 0.001574;;, - 95;4;-0.982386,-0.182955, 0.002013, 0.001007;;, - 96;4;-0.982098,-0.186171, 0.001130, 0.000565;;, - 97;4;-0.981892,-0.188462, 0.000500, 0.000250;;, - 98;4;-0.981770,-0.189831, 0.000125, 0.000062;;, - 99;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 100;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 101;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 102;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 103;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 104;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 105;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 106;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 107;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 108;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 109;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 110;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 111;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 112;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 113;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 114;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 115;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 116;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 117;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 118;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 119;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 120;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 121;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 122;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 123;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 124;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 125;4;-0.981912,-0.190001,-0.000000,-0.000000;;, - 126;4;-0.982548,-0.188206,-0.000000,-0.000000;;, - 127;4;-0.983689,-0.183218,-0.000000,-0.000000;;, - 128;4;-0.985207,-0.174113,-0.000000,-0.000000;;, - 129;4;-0.986890,-0.161394,-0.000000,-0.000000;;, - 130;4;-0.989380,-0.150268,-0.000000,-0.000000;;, - 131;4;-0.993078,-0.141698,-0.000000,-0.000000;;, - 132;4;-0.996778,-0.126783,-0.000000,-0.000000;;, - 133;4;-0.998939,-0.096600,-0.000000,-0.000000;;, - 134;4;-0.998813,-0.048703,-0.000000,-0.000000;;, - 135;4;-0.990683, 0.031130,-0.000000, 0.000000;;, - 136;4;-0.970177, 0.150265,-0.000000, 0.000000;;, - 137;4;-0.944448, 0.276710, 0.000000, 0.000000;;, - 138;4;-0.924597, 0.366923, 0.000000, 0.000000;;, - 139;4;-0.917582, 0.397548, 0.000000, 0.000000;;, - 140;4;-0.923240, 0.384975, 0.002120, 0.008704;;, - 141;4;-0.939273, 0.345404, 0.008092, 0.033220;;, - 142;4;-0.960112, 0.283439, 0.015759, 0.064699;;, - 143;4;-0.976834, 0.213462, 0.021730, 0.089215;;, - 144;4;-0.983665, 0.149155, 0.023850, 0.097919;;, - 145;4;-0.984450, 0.076755, 0.021730, 0.089215;;, - 146;4;-0.984141,-0.016018, 0.015759, 0.064699;;, - 147;4;-0.983114,-0.107253, 0.008091, 0.033220;;, - 148;4;-0.982117,-0.169618, 0.002120, 0.008704;;, - 149;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 150;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 151;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 152;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 153;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 154;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 155;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 156;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 157;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 158;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 159;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 160;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 161;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 162;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 163;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 164;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 165;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 166;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 167;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 168;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 169;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 170;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 171;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 172;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 173;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 174;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 175;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 176;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 177;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 178;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 179;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 180;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 181;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 182;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 183;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 184;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 185;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 186;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 187;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 188;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 189;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 190;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 191;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 192;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 193;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 194;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 195;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 196;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 197;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 198;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 199;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 200;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 201;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 202;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 203;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 204;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 205;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 206;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 207;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 208;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 209;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 210;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 211;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 212;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 213;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 214;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 215;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 216;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 217;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 218;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 219;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 220;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 221;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 222;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 223;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 224;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 225;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 226;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 227;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 228;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 229;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 230;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 231;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 232;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 233;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 234;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 235;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 236;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 237;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 238;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 239;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 240;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 241;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 242;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 243;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 244;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 245;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 246;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 247;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 248;4;-0.981729,-0.190284,-0.000000,-0.000000;;, - 249;4;-0.981729,-0.190284,-0.000000,-0.000000;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3; 0.000000, 2.365125, 0.000000;;, - 1;3; 0.000000, 2.365125,-0.000000;;, - 2;3;-0.000000, 2.365125,-0.000000;;, - 3;3; 0.000000, 2.365125, 0.000000;;, - 4;3; 0.000000, 2.365126,-0.000000;;, - 5;3; 0.000000, 2.365125, 0.000000;;, - 6;3; 0.000000, 2.365125,-0.000000;;, - 7;3; 0.000000, 2.365126,-0.000000;;, - 8;3; 0.000000, 2.365125,-0.000000;;, - 9;3;-0.000000, 2.365125,-0.000000;;, - 10;3; 0.000000, 2.365126, 0.000000;;, - 11;3; 0.000000, 2.365125,-0.000000;;, - 12;3;-0.000000, 2.365125,-0.000000;;, - 13;3;-0.000000, 2.365126,-0.000000;;, - 14;3; 0.000000, 2.365126,-0.000000;;, - 15;3; 0.000000, 2.365125, 0.000000;;, - 16;3; 0.000000, 2.365125, 0.000000;;, - 17;3; 0.000000, 2.365126,-0.000000;;, - 18;3; 0.000000, 2.365125,-0.000000;;, - 19;3; 0.000000, 2.365126, 0.000000;;, - 20;3; 0.000000, 2.365125,-0.000000;;, - 21;3; 0.000000, 2.365125,-0.000000;;, - 22;3; 0.000000, 2.365126, 0.000000;;, - 23;3;-0.000000, 2.365126,-0.000000;;, - 24;3;-0.000000, 2.365125, 0.000000;;, - 25;3; 0.000000, 2.365125, 0.000000;;, - 26;3;-0.000000, 2.365125,-0.000000;;, - 27;3; 0.000000, 2.365126,-0.000000;;, - 28;3;-0.000000, 2.365125,-0.000000;;, - 29;3; 0.000000, 2.365125,-0.000000;;, - 30;3; 0.000000, 2.365126,-0.000000;;, - 31;3; 0.000000, 2.365126, 0.000000;;, - 32;3; 0.000000, 2.365125,-0.000000;;, - 33;3; 0.000000, 2.365125,-0.000000;;, - 34;3; 0.000000, 2.365125,-0.000000;;, - 35;3;-0.000000, 2.365126, 0.000000;;, - 36;3; 0.000000, 2.365125,-0.000000;;, - 37;3; 0.000000, 2.365125,-0.000000;;, - 38;3; 0.000000, 2.365125,-0.000000;;, - 39;3; 0.000000, 2.365125, 0.000000;;, - 40;3; 0.000000, 2.365126, 0.000000;;, - 41;3;-0.000000, 2.365125,-0.000000;;, - 42;3; 0.000000, 2.365125, 0.000000;;, - 43;3;-0.000000, 2.365126, 0.000000;;, - 44;3; 0.000000, 2.365126,-0.000000;;, - 45;3;-0.000000, 2.365125,-0.000000;;, - 46;3; 0.000000, 2.365126,-0.000000;;, - 47;3; 0.000000, 2.365125, 0.000000;;, - 48;3; 0.000000, 2.365126,-0.000000;;, - 49;3;-0.000000, 2.365126, 0.000000;;, - 50;3; 0.000000, 2.365126, 0.000000;;, - 51;3;-0.000000, 2.365125, 0.000000;;, - 52;3;-0.000000, 2.365126, 0.000000;;, - 53;3; 0.000001, 2.365125, 0.000000;;, - 54;3;-0.000000, 2.365125,-0.000000;;, - 55;3; 0.000000, 2.365125, 0.000000;;, - 56;3; 0.000000, 2.365125,-0.000000;;, - 57;3; 0.000000, 2.365126,-0.000000;;, - 58;3;-0.000000, 2.365125,-0.000000;;, - 59;3; 0.000000, 2.365125,-0.000000;;, - 60;3; 0.000000, 2.365125,-0.000000;;, - 61;3; 0.000000, 2.365125,-0.000000;;, - 62;3;-0.000000, 2.365126,-0.000000;;, - 63;3;-0.000000, 2.365126,-0.000000;;, - 64;3;-0.000000, 2.365125,-0.000000;;, - 65;3;-0.000000, 2.365125, 0.000000;;, - 66;3; 0.000000, 2.365125,-0.000000;;, - 67;3;-0.000000, 2.365125, 0.000000;;, - 68;3;-0.000000, 2.365126, 0.000000;;, - 69;3;-0.000000, 2.365126,-0.000000;;, - 70;3;-0.000000, 2.365125, 0.000000;;, - 71;3;-0.000000, 2.365126,-0.000000;;, - 72;3; 0.000000, 2.365125, 0.000000;;, - 73;3; 0.000000, 2.365126, 0.000000;;, - 74;3; 0.000000, 2.365126, 0.000000;;, - 75;3;-0.000000, 2.365125,-0.000000;;, - 76;3; 0.000000, 2.365126, 0.000000;;, - 77;3;-0.000000, 2.365126, 0.000000;;, - 78;3;-0.000000, 2.365125,-0.000000;;, - 79;3;-0.000000, 2.365125,-0.000000;;, - 80;3;-0.000000, 2.365125, 0.000000;;, - 81;3;-0.000000, 2.365125,-0.000000;;, - 82;3; 0.000000, 2.365126, 0.000000;;, - 83;3; 0.000000, 2.365125,-0.000000;;, - 84;3;-0.000000, 2.365126, 0.000000;;, - 85;3; 0.000000, 2.365126,-0.000000;;, - 86;3; 0.000000, 2.365125, 0.000000;;, - 87;3; 0.000000, 2.365125, 0.000000;;, - 88;3; 0.000000, 2.365125, 0.000000;;, - 89;3; 0.000000, 2.365125, 0.000000;;, - 90;3;-0.000000, 2.365125, 0.000000;;, - 91;3;-0.000000, 2.365126, 0.000000;;, - 92;3; 0.000000, 2.365126,-0.000000;;, - 93;3; 0.000000, 2.365126,-0.000000;;, - 94;3; 0.000000, 2.365125,-0.000000;;, - 95;3; 0.000000, 2.365126,-0.000000;;, - 96;3; 0.000000, 2.365126,-0.000000;;, - 97;3;-0.000000, 2.365125, 0.000000;;, - 98;3; 0.000000, 2.365125,-0.000000;;, - 99;3; 0.000000, 2.365125,-0.000000;;, - 100;3; 0.000000, 2.365126,-0.000000;;, - 101;3; 0.000000, 2.365125, 0.000000;;, - 102;3; 0.000000, 2.365126, 0.000000;;, - 103;3; 0.000000, 2.365125,-0.000000;;, - 104;3; 0.000000, 2.365125, 0.000000;;, - 105;3; 0.000000, 2.365125, 0.000000;;, - 106;3; 0.000000, 2.365125, 0.000000;;, - 107;3; 0.000000, 2.365125,-0.000000;;, - 108;3;-0.000000, 2.365126, 0.000000;;, - 109;3; 0.000000, 2.365125, 0.000000;;, - 110;3;-0.000000, 2.365126,-0.000000;;, - 111;3; 0.000000, 2.365125,-0.000000;;, - 112;3;-0.000000, 2.365126, 0.000000;;, - 113;3;-0.000000, 2.365125,-0.000000;;, - 114;3; 0.000000, 2.365126, 0.000000;;, - 115;3; 0.000000, 2.365125,-0.000000;;, - 116;3;-0.000000, 2.365126,-0.000000;;, - 117;3;-0.000000, 2.365125,-0.000000;;, - 118;3;-0.000000, 2.365125,-0.000000;;, - 119;3; 0.000000, 2.365125, 0.000000;;, - 120;3; 0.000000, 2.365125,-0.000000;;, - 121;3;-0.000000, 2.365125,-0.000000;;, - 122;3; 0.000000, 2.365125,-0.000000;;, - 123;3; 0.000000, 2.365126,-0.000000;;, - 124;3;-0.000000, 2.365125, 0.000000;;, - 125;3;-0.000000, 2.365125, 0.000000;;, - 126;3;-0.000000, 2.365125,-0.000000;;, - 127;3;-0.000000, 2.365125,-0.000000;;, - 128;3;-0.000000, 2.365125, 0.000000;;, - 129;3;-0.000000, 2.365125,-0.000000;;, - 130;3; 0.000000, 2.365125,-0.000000;;, - 131;3; 0.000000, 2.365125, 0.000000;;, - 132;3; 0.000000, 2.365126, 0.000000;;, - 133;3; 0.000000, 2.365125, 0.000000;;, - 134;3;-0.000000, 2.365126,-0.000000;;, - 135;3; 0.000000, 2.365125,-0.000000;;, - 136;3; 0.000000, 2.365125, 0.000000;;, - 137;3; 0.000000, 2.365126,-0.000000;;, - 138;3; 0.000000, 2.365125,-0.000000;;, - 139;3;-0.000000, 2.365125,-0.000000;;, - 140;3;-0.000000, 2.365125, 0.000000;;, - 141;3;-0.000000, 2.365125, 0.000000;;, - 142;3; 0.000000, 2.365125, 0.000000;;, - 143;3; 0.000000, 2.365126, 0.000000;;, - 144;3;-0.000000, 2.365125, 0.000000;;, - 145;3;-0.000000, 2.365125, 0.000000;;, - 146;3;-0.000000, 2.365126, 0.000000;;, - 147;3;-0.000000, 2.365125, 0.000000;;, - 148;3; 0.000000, 2.365126, 0.000000;;, - 149;3; 0.000000, 2.365125, 0.000000;;, - 150;3; 0.000000, 2.365125, 0.000000;;, - 151;3; 0.000000, 2.365125, 0.000000;;, - 152;3; 0.000000, 2.365125, 0.000000;;, - 153;3; 0.000000, 2.365125, 0.000000;;, - 154;3; 0.000000, 2.365125, 0.000000;;, - 155;3; 0.000000, 2.365125, 0.000000;;, - 156;3; 0.000000, 2.365125, 0.000000;;, - 157;3; 0.000000, 2.365125, 0.000000;;, - 158;3; 0.000000, 2.365125, 0.000000;;, - 159;3; 0.000000, 2.365125, 0.000000;;, - 160;3; 0.000000, 2.365125, 0.000000;;, - 161;3; 0.000000, 2.365125, 0.000000;;, - 162;3; 0.000000, 2.365125, 0.000000;;, - 163;3; 0.000000, 2.365125, 0.000000;;, - 164;3; 0.000000, 2.365125, 0.000000;;, - 165;3; 0.000000, 2.365125, 0.000000;;, - 166;3; 0.000000, 2.365125, 0.000000;;, - 167;3; 0.000000, 2.365125, 0.000000;;, - 168;3; 0.000000, 2.365125, 0.000000;;, - 169;3; 0.000000, 2.365125, 0.000000;;, - 170;3; 0.000000, 2.365125, 0.000000;;, - 171;3; 0.000000, 2.365125, 0.000000;;, - 172;3; 0.000000, 2.365125, 0.000000;;, - 173;3; 0.000000, 2.365125, 0.000000;;, - 174;3; 0.000000, 2.365125, 0.000000;;, - 175;3; 0.000000, 2.365125, 0.000000;;, - 176;3; 0.000000, 2.365125, 0.000000;;, - 177;3; 0.000000, 2.365125, 0.000000;;, - 178;3; 0.000000, 2.365125, 0.000000;;, - 179;3; 0.000000, 2.365125, 0.000000;;, - 180;3; 0.000000, 2.365125, 0.000000;;, - 181;3; 0.000000, 2.365125, 0.000000;;, - 182;3; 0.000000, 2.365125, 0.000000;;, - 183;3; 0.000000, 2.365125, 0.000000;;, - 184;3; 0.000000, 2.365125, 0.000000;;, - 185;3; 0.000000, 2.365125, 0.000000;;, - 186;3; 0.000000, 2.365125, 0.000000;;, - 187;3; 0.000000, 2.365125, 0.000000;;, - 188;3; 0.000000, 2.365125, 0.000000;;, - 189;3; 0.000000, 2.365125, 0.000000;;, - 190;3; 0.000000, 2.365125, 0.000000;;, - 191;3; 0.000000, 2.365125, 0.000000;;, - 192;3; 0.000000, 2.365125, 0.000000;;, - 193;3; 0.000000, 2.365125, 0.000000;;, - 194;3; 0.000000, 2.365125, 0.000000;;, - 195;3; 0.000000, 2.365125, 0.000000;;, - 196;3; 0.000000, 2.365125, 0.000000;;, - 197;3; 0.000000, 2.365125, 0.000000;;, - 198;3; 0.000000, 2.365125, 0.000000;;, - 199;3; 0.000000, 2.365125, 0.000000;;, - 200;3; 0.000000, 2.365125, 0.000000;;, - 201;3; 0.000000, 2.365125, 0.000000;;, - 202;3; 0.000000, 2.365125, 0.000000;;, - 203;3; 0.000000, 2.365125, 0.000000;;, - 204;3; 0.000000, 2.365125, 0.000000;;, - 205;3; 0.000000, 2.365125, 0.000000;;, - 206;3; 0.000000, 2.365125, 0.000000;;, - 207;3; 0.000000, 2.365125, 0.000000;;, - 208;3; 0.000000, 2.365125, 0.000000;;, - 209;3; 0.000000, 2.365125, 0.000000;;, - 210;3; 0.000000, 2.365125, 0.000000;;, - 211;3; 0.000000, 2.365125, 0.000000;;, - 212;3; 0.000000, 2.365125, 0.000000;;, - 213;3; 0.000000, 2.365125, 0.000000;;, - 214;3; 0.000000, 2.365125, 0.000000;;, - 215;3; 0.000000, 2.365125, 0.000000;;, - 216;3; 0.000000, 2.365125, 0.000000;;, - 217;3; 0.000000, 2.365125, 0.000000;;, - 218;3; 0.000000, 2.365125, 0.000000;;, - 219;3; 0.000000, 2.365125, 0.000000;;, - 220;3; 0.000000, 2.365125, 0.000000;;, - 221;3; 0.000000, 2.365125, 0.000000;;, - 222;3; 0.000000, 2.365125, 0.000000;;, - 223;3; 0.000000, 2.365125, 0.000000;;, - 224;3; 0.000000, 2.365125, 0.000000;;, - 225;3; 0.000000, 2.365125, 0.000000;;, - 226;3; 0.000000, 2.365125, 0.000000;;, - 227;3; 0.000000, 2.365125, 0.000000;;, - 228;3; 0.000000, 2.365125, 0.000000;;, - 229;3; 0.000000, 2.365125, 0.000000;;, - 230;3; 0.000000, 2.365125, 0.000000;;, - 231;3; 0.000000, 2.365125, 0.000000;;, - 232;3; 0.000000, 2.365125, 0.000000;;, - 233;3; 0.000000, 2.365125, 0.000000;;, - 234;3; 0.000000, 2.365125, 0.000000;;, - 235;3; 0.000000, 2.365125, 0.000000;;, - 236;3; 0.000000, 2.365125, 0.000000;;, - 237;3; 0.000000, 2.365125, 0.000000;;, - 238;3; 0.000000, 2.365125, 0.000000;;, - 239;3; 0.000000, 2.365125, 0.000000;;, - 240;3; 0.000000, 2.365125, 0.000000;;, - 241;3; 0.000000, 2.365125, 0.000000;;, - 242;3; 0.000000, 2.365125, 0.000000;;, - 243;3; 0.000000, 2.365125, 0.000000;;, - 244;3; 0.000000, 2.365125, 0.000000;;, - 245;3; 0.000000, 2.365125, 0.000000;;, - 246;3; 0.000000, 2.365125, 0.000000;;, - 247;3; 0.000000, 2.365125, 0.000000;;, - 248;3; 0.000000, 2.365125, 0.000000;;, - 249;3; 0.000000, 2.365125, 0.000000;;; - } - } - Animation { - {Armature_Bone_003} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 1;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 2;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 3;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 4;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 5;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 6;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 7;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 8;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 9;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 10;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 11;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 12;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 13;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 14;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 15;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 16;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 17;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 18;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 19;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 20;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 21;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 22;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 23;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 24;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 25;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 26;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 27;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 28;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 29;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 30;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 31;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 32;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 33;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 34;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 35;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 36;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 37;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 38;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 39;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 40;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 41;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 42;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 43;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 44;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 45;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 46;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 47;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 48;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 49;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 50;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 51;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 52;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 53;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 54;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 55;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 56;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 57;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 58;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 59;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 60;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 61;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 62;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 63;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 64;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 65;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 66;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 67;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 68;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 69;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 70;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 71;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 72;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 73;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 74;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 75;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 76;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 77;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 78;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 79;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 80;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 81;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 82;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 83;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 84;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 85;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 86;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 87;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 88;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 89;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 90;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 91;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 92;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 93;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 94;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 95;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 96;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 97;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 98;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 99;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 100;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 101;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 102;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 103;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 104;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 105;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 106;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 107;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 108;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 109;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 110;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 111;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 112;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 113;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 114;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 115;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 116;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 117;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 118;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 119;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 120;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 121;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 122;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 123;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 124;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 125;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 126;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 127;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 128;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 129;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 130;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 131;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 132;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 133;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 134;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 135;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 136;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 137;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 138;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 139;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 140;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 141;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 142;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 143;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 144;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 145;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 146;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 147;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 148;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 149;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 150;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 151;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 152;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 153;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 154;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 155;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 156;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 157;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 158;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 159;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 160;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 161;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 162;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 163;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 164;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 165;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 166;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 167;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 168;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 169;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 170;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 171;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 172;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 173;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 174;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 175;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 176;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 177;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 178;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 179;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 180;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 181;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 182;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 183;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 184;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 185;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 186;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 187;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 188;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 189;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 190;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 191;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 192;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 193;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 194;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 195;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 196;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 197;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 198;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 199;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 200;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 201;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 202;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 203;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 204;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 205;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 206;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 207;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 208;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 209;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 210;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 211;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 212;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 213;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 214;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 215;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 216;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 217;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 218;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 219;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 220;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 221;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 222;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 223;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 224;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 225;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 226;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 227;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 228;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 229;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 230;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 231;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 232;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 233;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 234;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 235;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 236;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 237;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 238;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 239;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 240;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 241;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 242;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 243;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 244;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 245;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 246;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 247;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 248;4;-0.820469, 0.000000, 0.000000,-0.571691;;, - 249;4;-0.820469, 0.000000, 0.000000,-0.571691;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3; 0.000000, 0.705560, 0.000000;;, - 1;3; 0.000000, 0.705560, 0.000000;;, - 2;3; 0.000000, 0.705560, 0.000000;;, - 3;3; 0.000000, 0.705560, 0.000000;;, - 4;3; 0.000000, 0.705560, 0.000000;;, - 5;3; 0.000000, 0.705560, 0.000000;;, - 6;3; 0.000000, 0.705560, 0.000000;;, - 7;3; 0.000000, 0.705560, 0.000000;;, - 8;3; 0.000000, 0.705560, 0.000000;;, - 9;3; 0.000000, 0.705560, 0.000000;;, - 10;3; 0.000000, 0.705560, 0.000000;;, - 11;3; 0.000000, 0.705560, 0.000000;;, - 12;3; 0.000000, 0.705560, 0.000000;;, - 13;3; 0.000000, 0.705560, 0.000000;;, - 14;3; 0.000000, 0.705560, 0.000000;;, - 15;3; 0.000000, 0.705560, 0.000000;;, - 16;3; 0.000000, 0.705560, 0.000000;;, - 17;3; 0.000000, 0.705560, 0.000000;;, - 18;3; 0.000000, 0.705560, 0.000000;;, - 19;3; 0.000000, 0.705560, 0.000000;;, - 20;3; 0.000000, 0.705560, 0.000000;;, - 21;3; 0.000000, 0.705560, 0.000000;;, - 22;3; 0.000000, 0.705560, 0.000000;;, - 23;3; 0.000000, 0.705560, 0.000000;;, - 24;3; 0.000000, 0.705560, 0.000000;;, - 25;3; 0.000000, 0.705560, 0.000000;;, - 26;3; 0.000000, 0.705560, 0.000000;;, - 27;3; 0.000000, 0.705560, 0.000000;;, - 28;3; 0.000000, 0.705560, 0.000000;;, - 29;3; 0.000000, 0.705560, 0.000000;;, - 30;3; 0.000000, 0.705560, 0.000000;;, - 31;3; 0.000000, 0.705560, 0.000000;;, - 32;3; 0.000000, 0.705560, 0.000000;;, - 33;3; 0.000000, 0.705560, 0.000000;;, - 34;3; 0.000000, 0.705560, 0.000000;;, - 35;3; 0.000000, 0.705560, 0.000000;;, - 36;3; 0.000000, 0.705560, 0.000000;;, - 37;3; 0.000000, 0.705560, 0.000000;;, - 38;3; 0.000000, 0.705560, 0.000000;;, - 39;3; 0.000000, 0.705560, 0.000000;;, - 40;3; 0.000000, 0.705560, 0.000000;;, - 41;3; 0.000000, 0.705559, 0.000000;;, - 42;3;-0.000000, 0.705560, 0.000000;;, - 43;3; 0.000000, 0.705560,-0.000000;;, - 44;3; 0.000000, 0.705560, 0.000000;;, - 45;3; 0.000000, 0.705560,-0.000000;;, - 46;3; 0.000000, 0.705559, 0.000000;;, - 47;3;-0.000000, 0.705560, 0.000000;;, - 48;3; 0.000000, 0.705560,-0.000000;;, - 49;3; 0.000000, 0.705560, 0.000000;;, - 50;3;-0.000000, 0.705559, 0.000000;;, - 51;3; 0.000000, 0.705560,-0.000000;;, - 52;3;-0.000000, 0.705560, 0.000000;;, - 53;3; 0.000000, 0.705560,-0.000000;;, - 54;3; 0.000000, 0.705560, 0.000000;;, - 55;3; 0.000000, 0.705560,-0.000000;;, - 56;3;-0.000000, 0.705560, 0.000000;;, - 57;3; 0.000000, 0.705559, 0.000000;;, - 58;3;-0.000000, 0.705560, 0.000000;;, - 59;3; 0.000000, 0.705560, 0.000000;;, - 60;3; 0.000000, 0.705560,-0.000000;;, - 61;3; 0.000000, 0.705560, 0.000000;;, - 62;3; 0.000000, 0.705560, 0.000000;;, - 63;3; 0.000000, 0.705560, 0.000000;;, - 64;3; 0.000000, 0.705560,-0.000000;;, - 65;3;-0.000000, 0.705560, 0.000000;;, - 66;3; 0.000000, 0.705560, 0.000000;;, - 67;3;-0.000000, 0.705560, 0.000000;;, - 68;3; 0.000000, 0.705559, 0.000000;;, - 69;3; 0.000000, 0.705560, 0.000000;;, - 70;3; 0.000000, 0.705560, 0.000000;;, - 71;3;-0.000000, 0.705560, 0.000000;;, - 72;3;-0.000000, 0.705560, 0.000000;;, - 73;3;-0.000000, 0.705560, 0.000000;;, - 74;3;-0.000000, 0.705560, 0.000000;;, - 75;3;-0.000000, 0.705560, 0.000000;;, - 76;3; 0.000000, 0.705559, 0.000000;;, - 77;3;-0.000000, 0.705560, 0.000000;;, - 78;3; 0.000000, 0.705560, 0.000000;;, - 79;3;-0.000000, 0.705559, 0.000000;;, - 80;3; 0.000000, 0.705560, 0.000000;;, - 81;3;-0.000000, 0.705560, 0.000000;;, - 82;3; 0.000000, 0.705560, 0.000000;;, - 83;3; 0.000000, 0.705560, 0.000000;;, - 84;3; 0.000000, 0.705560,-0.000000;;, - 85;3;-0.000000, 0.705560, 0.000000;;, - 86;3;-0.000000, 0.705560, 0.000000;;, - 87;3; 0.000000, 0.705560,-0.000000;;, - 88;3; 0.000000, 0.705560, 0.000000;;, - 89;3; 0.000000, 0.705560, 0.000000;;, - 90;3; 0.000000, 0.705560, 0.000000;;, - 91;3; 0.000000, 0.705560, 0.000000;;, - 92;3; 0.000000, 0.705560, 0.000000;;, - 93;3; 0.000000, 0.705560, 0.000000;;, - 94;3; 0.000000, 0.705560, 0.000000;;, - 95;3; 0.000000, 0.705560, 0.000000;;, - 96;3; 0.000000, 0.705560,-0.000000;;, - 97;3; 0.000000, 0.705560,-0.000000;;, - 98;3; 0.000000, 0.705560, 0.000000;;, - 99;3; 0.000000, 0.705560, 0.000000;;, - 100;3;-0.000000, 0.705560,-0.000000;;, - 101;3; 0.000000, 0.705560,-0.000000;;, - 102;3; 0.000000, 0.705559, 0.000000;;, - 103;3;-0.000000, 0.705560,-0.000000;;, - 104;3;-0.000000, 0.705559,-0.000000;;, - 105;3;-0.000000, 0.705560,-0.000000;;, - 106;3; 0.000000, 0.705560, 0.000000;;, - 107;3;-0.000000, 0.705559,-0.000000;;, - 108;3; 0.000000, 0.705560,-0.000000;;, - 109;3; 0.000000, 0.705559,-0.000000;;, - 110;3;-0.000000, 0.705559, 0.000000;;, - 111;3; 0.000000, 0.705560,-0.000000;;, - 112;3; 0.000000, 0.705560, 0.000000;;, - 113;3; 0.000000, 0.705560,-0.000000;;, - 114;3;-0.000000, 0.705559, 0.000000;;, - 115;3; 0.000000, 0.705560, 0.000000;;, - 116;3;-0.000000, 0.705560,-0.000000;;, - 117;3; 0.000000, 0.705560, 0.000000;;, - 118;3; 0.000000, 0.705560,-0.000000;;, - 119;3; 0.000000, 0.705560, 0.000000;;, - 120;3; 0.000000, 0.705560,-0.000000;;, - 121;3; 0.000000, 0.705560,-0.000000;;, - 122;3;-0.000000, 0.705560,-0.000000;;, - 123;3; 0.000000, 0.705560, 0.000000;;, - 124;3; 0.000000, 0.705560, 0.000000;;, - 125;3; 0.000000, 0.705560, 0.000000;;, - 126;3;-0.000000, 0.705560, 0.000000;;, - 127;3;-0.000000, 0.705560, 0.000000;;, - 128;3;-0.000000, 0.705560,-0.000000;;, - 129;3; 0.000000, 0.705560, 0.000000;;, - 130;3; 0.000000, 0.705559, 0.000000;;, - 131;3; 0.000000, 0.705560, 0.000000;;, - 132;3; 0.000000, 0.705560, 0.000000;;, - 133;3; 0.000000, 0.705560,-0.000000;;, - 134;3; 0.000000, 0.705560, 0.000000;;, - 135;3; 0.000000, 0.705560, 0.000000;;, - 136;3;-0.000000, 0.705560,-0.000000;;, - 137;3; 0.000000, 0.705560, 0.000000;;, - 138;3;-0.000000, 0.705559, 0.000000;;, - 139;3;-0.000000, 0.705560,-0.000000;;, - 140;3; 0.000000, 0.705560, 0.000000;;, - 141;3; 0.000000, 0.705560, 0.000000;;, - 142;3; 0.000000, 0.705560, 0.000000;;, - 143;3; 0.000000, 0.705560,-0.000000;;, - 144;3; 0.000000, 0.705560, 0.000000;;, - 145;3; 0.000000, 0.705560,-0.000000;;, - 146;3; 0.000000, 0.705560, 0.000000;;, - 147;3; 0.000000, 0.705560,-0.000000;;, - 148;3; 0.000000, 0.705560, 0.000000;;, - 149;3; 0.000000, 0.705560, 0.000000;;, - 150;3; 0.000000, 0.705560, 0.000000;;, - 151;3; 0.000000, 0.705560, 0.000000;;, - 152;3; 0.000000, 0.705560, 0.000000;;, - 153;3; 0.000000, 0.705560, 0.000000;;, - 154;3; 0.000000, 0.705560, 0.000000;;, - 155;3; 0.000000, 0.705560, 0.000000;;, - 156;3; 0.000000, 0.705560, 0.000000;;, - 157;3; 0.000000, 0.705560, 0.000000;;, - 158;3; 0.000000, 0.705560, 0.000000;;, - 159;3; 0.000000, 0.705560, 0.000000;;, - 160;3; 0.000000, 0.705560, 0.000000;;, - 161;3; 0.000000, 0.705560, 0.000000;;, - 162;3; 0.000000, 0.705560, 0.000000;;, - 163;3; 0.000000, 0.705560, 0.000000;;, - 164;3; 0.000000, 0.705560, 0.000000;;, - 165;3; 0.000000, 0.705560, 0.000000;;, - 166;3; 0.000000, 0.705560, 0.000000;;, - 167;3; 0.000000, 0.705560, 0.000000;;, - 168;3; 0.000000, 0.705560, 0.000000;;, - 169;3; 0.000000, 0.705560, 0.000000;;, - 170;3; 0.000000, 0.705560, 0.000000;;, - 171;3; 0.000000, 0.705560, 0.000000;;, - 172;3; 0.000000, 0.705560, 0.000000;;, - 173;3; 0.000000, 0.705560, 0.000000;;, - 174;3; 0.000000, 0.705560, 0.000000;;, - 175;3; 0.000000, 0.705560, 0.000000;;, - 176;3; 0.000000, 0.705560, 0.000000;;, - 177;3; 0.000000, 0.705560, 0.000000;;, - 178;3; 0.000000, 0.705560, 0.000000;;, - 179;3; 0.000000, 0.705560, 0.000000;;, - 180;3; 0.000000, 0.705560, 0.000000;;, - 181;3; 0.000000, 0.705560, 0.000000;;, - 182;3; 0.000000, 0.705560, 0.000000;;, - 183;3; 0.000000, 0.705560, 0.000000;;, - 184;3; 0.000000, 0.705560, 0.000000;;, - 185;3; 0.000000, 0.705560, 0.000000;;, - 186;3; 0.000000, 0.705560, 0.000000;;, - 187;3; 0.000000, 0.705560, 0.000000;;, - 188;3; 0.000000, 0.705560, 0.000000;;, - 189;3; 0.000000, 0.705560, 0.000000;;, - 190;3; 0.000000, 0.705560, 0.000000;;, - 191;3; 0.000000, 0.705560, 0.000000;;, - 192;3; 0.000000, 0.705560, 0.000000;;, - 193;3; 0.000000, 0.705560, 0.000000;;, - 194;3; 0.000000, 0.705560, 0.000000;;, - 195;3; 0.000000, 0.705560, 0.000000;;, - 196;3; 0.000000, 0.705560, 0.000000;;, - 197;3; 0.000000, 0.705560, 0.000000;;, - 198;3; 0.000000, 0.705560, 0.000000;;, - 199;3; 0.000000, 0.705560, 0.000000;;, - 200;3; 0.000000, 0.705560, 0.000000;;, - 201;3; 0.000000, 0.705560, 0.000000;;, - 202;3; 0.000000, 0.705560, 0.000000;;, - 203;3; 0.000000, 0.705560, 0.000000;;, - 204;3; 0.000000, 0.705560, 0.000000;;, - 205;3; 0.000000, 0.705560, 0.000000;;, - 206;3; 0.000000, 0.705560, 0.000000;;, - 207;3; 0.000000, 0.705560, 0.000000;;, - 208;3; 0.000000, 0.705560, 0.000000;;, - 209;3; 0.000000, 0.705560, 0.000000;;, - 210;3; 0.000000, 0.705560, 0.000000;;, - 211;3; 0.000000, 0.705560, 0.000000;;, - 212;3; 0.000000, 0.705560, 0.000000;;, - 213;3; 0.000000, 0.705560, 0.000000;;, - 214;3; 0.000000, 0.705560, 0.000000;;, - 215;3; 0.000000, 0.705560, 0.000000;;, - 216;3; 0.000000, 0.705560, 0.000000;;, - 217;3; 0.000000, 0.705560, 0.000000;;, - 218;3; 0.000000, 0.705560, 0.000000;;, - 219;3; 0.000000, 0.705560, 0.000000;;, - 220;3; 0.000000, 0.705560, 0.000000;;, - 221;3; 0.000000, 0.705560, 0.000000;;, - 222;3; 0.000000, 0.705560, 0.000000;;, - 223;3; 0.000000, 0.705560, 0.000000;;, - 224;3; 0.000000, 0.705560, 0.000000;;, - 225;3; 0.000000, 0.705560, 0.000000;;, - 226;3; 0.000000, 0.705560, 0.000000;;, - 227;3; 0.000000, 0.705560, 0.000000;;, - 228;3; 0.000000, 0.705560, 0.000000;;, - 229;3; 0.000000, 0.705560, 0.000000;;, - 230;3; 0.000000, 0.705560, 0.000000;;, - 231;3; 0.000000, 0.705560, 0.000000;;, - 232;3; 0.000000, 0.705560, 0.000000;;, - 233;3; 0.000000, 0.705560, 0.000000;;, - 234;3; 0.000000, 0.705560, 0.000000;;, - 235;3; 0.000000, 0.705560, 0.000000;;, - 236;3; 0.000000, 0.705560, 0.000000;;, - 237;3; 0.000000, 0.705560, 0.000000;;, - 238;3; 0.000000, 0.705560, 0.000000;;, - 239;3; 0.000000, 0.705560, 0.000000;;, - 240;3; 0.000000, 0.705560, 0.000000;;, - 241;3; 0.000000, 0.705560, 0.000000;;, - 242;3; 0.000000, 0.705560, 0.000000;;, - 243;3; 0.000000, 0.705560, 0.000000;;, - 244;3; 0.000000, 0.705560, 0.000000;;, - 245;3; 0.000000, 0.705560, 0.000000;;, - 246;3; 0.000000, 0.705560, 0.000000;;, - 247;3; 0.000000, 0.705560, 0.000000;;, - 248;3; 0.000000, 0.705560, 0.000000;;, - 249;3; 0.000000, 0.705560, 0.000000;;; - } - } - Animation { - {Armature_Bone_023} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.771421,-0.611527, 0.109280,-0.137852;;, - 1;4;-0.771383,-0.611574, 0.109288,-0.137846;;, - 2;4;-0.771268,-0.611717, 0.109314,-0.137825;;, - 3;4;-0.771077,-0.611956, 0.109356,-0.137791;;, - 4;4;-0.770810,-0.612289, 0.109416,-0.137743;;, - 5;4;-0.770472,-0.612712, 0.109491,-0.137683;;, - 6;4;-0.770069,-0.613215, 0.109581,-0.137611;;, - 7;4;-0.769611,-0.613786, 0.109683,-0.137529;;, - 8;4;-0.769111,-0.614410, 0.109795,-0.137440;;, - 9;4;-0.768585,-0.615066, 0.109912,-0.137346;;, - 10;4;-0.768050,-0.615734, 0.110031,-0.137250;;, - 11;4;-0.767524,-0.616391, 0.110149,-0.137156;;, - 12;4;-0.767025,-0.617015, 0.110260,-0.137067;;, - 13;4;-0.766567,-0.617586, 0.110362,-0.136985;;, - 14;4;-0.766164,-0.618089, 0.110452,-0.136913;;, - 15;4;-0.765826,-0.618511, 0.110528,-0.136853;;, - 16;4;-0.765559,-0.618845, 0.110587,-0.136805;;, - 17;4;-0.765368,-0.619084, 0.110630,-0.136771;;, - 18;4;-0.765253,-0.619227, 0.110656,-0.136750;;, - 19;4;-0.765215,-0.619274, 0.110664,-0.136744;;, - 20;4;-0.765250,-0.619273, 0.110664,-0.136750;;, - 21;4;-0.765353,-0.619269, 0.110663,-0.136768;;, - 22;4;-0.765526,-0.619255, 0.110661,-0.136799;;, - 23;4;-0.765767,-0.619226, 0.110655,-0.136842;;, - 24;4;-0.766074,-0.619175, 0.110646,-0.136897;;, - 25;4;-0.766440,-0.619095, 0.110632,-0.136962;;, - 26;4;-0.766859,-0.618976, 0.110611,-0.137037;;, - 27;4;-0.767321,-0.618810, 0.110581,-0.137120;;, - 28;4;-0.767812,-0.618590, 0.110542,-0.137208;;, - 29;4;-0.768318,-0.618306, 0.110491,-0.137298;;, - 30;4;-0.768824,-0.617952, 0.110428,-0.137389;;, - 31;4;-0.769315,-0.617525, 0.110351,-0.137476;;, - 32;4;-0.769777,-0.617022, 0.110262,-0.137559;;, - 33;4;-0.770196,-0.616442, 0.110158,-0.137634;;, - 34;4;-0.770562,-0.615788, 0.110041,-0.137699;;, - 35;4;-0.770869,-0.615061, 0.109911,-0.137754;;, - 36;4;-0.771110,-0.614267, 0.109769,-0.137797;;, - 37;4;-0.771283,-0.613409, 0.109616,-0.137828;;, - 38;4;-0.771386,-0.612494, 0.109452,-0.137846;;, - 39;4;-0.771421,-0.611527, 0.109280,-0.137852;;, - 40;4;-0.771513,-0.608447, 0.111554,-0.137332;;, - 41;4;-0.771799,-0.601146, 0.118788,-0.135724;;, - 42;4;-0.772288,-0.589611, 0.131004,-0.132963;;, - 43;4;-0.772988,-0.573918, 0.148122,-0.128993;;, - 44;4;-0.773905,-0.554256, 0.169928,-0.123773;;, - 45;4;-0.775038,-0.530951, 0.196051,-0.117285;;, - 46;4;-0.776383,-0.504480, 0.225941,-0.109540;;, - 47;4;-0.777930,-0.475476, 0.258868,-0.100584;;, - 48;4;-0.779660,-0.444714, 0.293934,-0.090500;;, - 49;4;-0.781550,-0.413078, 0.330110,-0.079409;;, - 50;4;-0.783570,-0.381511, 0.366299,-0.067463;;, - 51;4;-0.785687,-0.350955, 0.401401,-0.054837;;, - 52;4;-0.787868,-0.322289, 0.434389,-0.041717;;, - 53;4;-0.790080,-0.296279, 0.464362,-0.028287;;, - 54;4;-0.792292,-0.273548, 0.490587,-0.014718;;, - 55;4;-0.794478,-0.254562, 0.512514,-0.001165;;, - 56;4;-0.796616,-0.239634, 0.529768, 0.012243;;, - 57;4;-0.798689,-0.228943, 0.542135, 0.025404;;, - 58;4;-0.800685,-0.222552, 0.549532, 0.038235;;, - 59;4;-0.802594,-0.220439, 0.551979, 0.050678;;, - 60;4;-0.803234,-0.226598, 0.547749, 0.064819;;, - 61;4;-0.801388,-0.245135, 0.535019, 0.082628;;, - 62;4;-0.797161,-0.275275, 0.514321, 0.103547;;, - 63;4;-0.790953,-0.314696, 0.487249, 0.126446;;, - 64;4;-0.783502,-0.359354, 0.456581, 0.149634;;, - 65;4;-0.775791,-0.404011, 0.425912, 0.171123;;, - 66;4;-0.768833,-0.443432, 0.398840, 0.189097;;, - 67;4;-0.763432,-0.473572, 0.378142, 0.202309;;, - 68;4;-0.760075,-0.492109, 0.365412, 0.210200;;, - 69;4;-0.758951,-0.498268, 0.361182, 0.212768;;, - 70;4;-0.759085,-0.497589, 0.361648, 0.212577;;, - 71;4;-0.759489,-0.495540, 0.363056, 0.211993;;, - 72;4;-0.760163,-0.492109, 0.365412, 0.210998;;, - 73;4;-0.761106,-0.487294, 0.368719, 0.209574;;, - 74;4;-0.762312,-0.481106, 0.372968, 0.207706;;, - 75;4;-0.763773,-0.473572, 0.378142, 0.205381;;, - 76;4;-0.765478,-0.464736, 0.384210, 0.202587;;, - 77;4;-0.767411,-0.454661, 0.391129, 0.199318;;, - 78;4;-0.769551,-0.443432, 0.398840, 0.195570;;, - 79;4;-0.771874,-0.431157, 0.407270, 0.191346;;, - 80;4;-0.774349,-0.417966, 0.416329, 0.186653;;, - 81;4;-0.776943,-0.404011, 0.425912, 0.181505;;, - 82;4;-0.779618,-0.389464, 0.435903, 0.175923;;, - 83;4;-0.782334,-0.374511, 0.446171, 0.169932;;, - 84;4;-0.785048,-0.359353, 0.456581, 0.163566;;, - 85;4;-0.787716,-0.344196, 0.466990, 0.156862;;, - 86;4;-0.790296,-0.329243, 0.477259, 0.149861;;, - 87;4;-0.792747,-0.314696, 0.487249, 0.142608;;, - 88;4;-0.795030,-0.300741, 0.496833, 0.135147;;, - 89;4;-0.797113,-0.287550, 0.505892, 0.127525;;, - 90;4;-0.798963,-0.275275, 0.514321, 0.119786;;, - 91;4;-0.800558,-0.264046, 0.522032, 0.111973;;, - 92;4;-0.801876,-0.253971, 0.528951, 0.104123;;, - 93;4;-0.802902,-0.245135, 0.535019, 0.096274;;, - 94;4;-0.803626,-0.237601, 0.540193, 0.088457;;, - 95;4;-0.804041,-0.231413, 0.544443, 0.080698;;, - 96;4;-0.804144,-0.226598, 0.547749, 0.073023;;, - 97;4;-0.803935,-0.223167, 0.550106, 0.065451;;, - 98;4;-0.803417,-0.221118, 0.551513, 0.057998;;, - 99;4;-0.802594,-0.220439, 0.551979, 0.050678;;, - 100;4;-0.801502,-0.222594, 0.549539, 0.042883;;, - 101;4;-0.800173,-0.229109, 0.542165, 0.034006;;, - 102;4;-0.798612,-0.240003, 0.529834, 0.024080;;, - 103;4;-0.796830,-0.255203, 0.512628, 0.013164;;, - 104;4;-0.794849,-0.274520, 0.490761, 0.001357;;, - 105;4;-0.792695,-0.297629, 0.464603,-0.011201;;, - 106;4;-0.790406,-0.324043, 0.434702,-0.024325;;, - 107;4;-0.788031,-0.353120, 0.401788,-0.037787;;, - 108;4;-0.785623,-0.384068, 0.366756,-0.051325;;, - 109;4;-0.783243,-0.415983, 0.330629,-0.064653;;, - 110;4;-0.780953,-0.447898, 0.294503,-0.077477;;, - 111;4;-0.778812,-0.478846, 0.259471,-0.089520;;, - 112;4;-0.776874,-0.507923, 0.226556,-0.100534;;, - 113;4;-0.775183,-0.534337, 0.196656,-0.110314;;, - 114;4;-0.773773,-0.557446, 0.170498,-0.118708;;, - 115;4;-0.772668,-0.576764, 0.148631,-0.125615;;, - 116;4;-0.771878,-0.591963, 0.131425,-0.130981;;, - 117;4;-0.771410,-0.602857, 0.119094,-0.134792;;, - 118;4;-0.771260,-0.609372, 0.111719,-0.137069;;, - 119;4;-0.771421,-0.611527, 0.109280,-0.137852;;, - 120;4;-0.778403,-0.610609, 0.109116,-0.139100;;, - 121;4;-0.798296,-0.602678, 0.107698,-0.142655;;, - 122;4;-0.825875,-0.578141, 0.103313,-0.147583;;, - 123;4;-0.851558,-0.531094, 0.094906,-0.152173;;, - 124;4;-0.868393,-0.463625, 0.082850,-0.155181;;, - 125;4;-0.872542,-0.355709, 0.057579,-0.191248;;, - 126;4;-0.862470,-0.194737, 0.011953,-0.288947;;, - 127;4;-0.844081,-0.023920,-0.040220,-0.413417;;, - 128;4;-0.828057, 0.097937,-0.078856,-0.510053;;, - 129;4;-0.822080, 0.139301,-0.092233,-0.544310;;, - 130;4;-0.831370, 0.141778,-0.077698,-0.457581;;, - 131;4;-0.855831, 0.148069,-0.036635,-0.212987;;, - 132;4;-0.882660, 0.154313, 0.016417, 0.101888;;, - 133;4;-0.894642, 0.155604, 0.058373, 0.348711;;, - 134;4;-0.882701, 0.149574, 0.074428, 0.439234;;, - 135;4;-0.852893, 0.097087, 0.034257, 0.439299;;, - 136;4;-0.814548,-0.032474,-0.082159, 0.431328;;, - 137;4;-0.776757,-0.194243,-0.232456, 0.419049;;, - 138;4;-0.750890,-0.318804,-0.349765, 0.408849;;, - 139;4;-0.742313,-0.362784,-0.391457, 0.405119;;, - 140;4;-0.742313,-0.362784,-0.391457, 0.405119;;, - 141;4;-0.742313,-0.362784,-0.391457, 0.405119;;, - 142;4;-0.742313,-0.362784,-0.391457, 0.405119;;, - 143;4;-0.742313,-0.362784,-0.391457, 0.405119;;, - 144;4;-0.742313,-0.362784,-0.391457, 0.405119;;, - 145;4;-0.744900,-0.384894,-0.346947, 0.356855;;, - 146;4;-0.752188,-0.447173,-0.221576, 0.220910;;, - 147;4;-0.761545,-0.527138,-0.060601, 0.046357;;, - 148;4;-0.768833,-0.589416, 0.064770,-0.089588;;, - 149;4;-0.771421,-0.611527, 0.109280,-0.137852;;, - 150;4;-0.771421,-0.611527, 0.109280,-0.137852;;, - 151;4;-0.771421,-0.611527, 0.109280,-0.137852;;, - 152;4;-0.771421,-0.611527, 0.109280,-0.137852;;, - 153;4;-0.771421,-0.611527, 0.109280,-0.137852;;, - 154;4;-0.771421,-0.611527, 0.109280,-0.137852;;, - 155;4;-0.771421,-0.611527, 0.109280,-0.137852;;, - 156;4;-0.771421,-0.611527, 0.109280,-0.137852;;, - 157;4;-0.771421,-0.611527, 0.109280,-0.137852;;, - 158;4;-0.771421,-0.611527, 0.109280,-0.137852;;, - 159;4;-0.771421,-0.611527, 0.109280,-0.137852;;, - 160;4;-0.771421,-0.611527, 0.109280,-0.137852;;, - 161;4;-0.771421,-0.611527, 0.109280,-0.137852;;, - 162;4;-0.771421,-0.611527, 0.109280,-0.137852;;, - 163;4;-0.771421,-0.611527, 0.109280,-0.137852;;, - 164;4;-0.771421,-0.611527, 0.109280,-0.137852;;, - 165;4;-0.771421,-0.611527, 0.109280,-0.137852;;, - 166;4;-0.771421,-0.611527, 0.109280,-0.137852;;, - 167;4;-0.771421,-0.611527, 0.109280,-0.137852;;, - 168;4;-0.771421,-0.611527, 0.109280,-0.137852;;, - 169;4;-0.771421,-0.611527, 0.109280,-0.137852;;, - 170;4;-0.771421,-0.611527, 0.109280,-0.137852;;, - 171;4;-0.771421,-0.611527, 0.109280,-0.137852;;, - 172;4;-0.771421,-0.611527, 0.109280,-0.137852;;, - 173;4;-0.771421,-0.611527, 0.109280,-0.137852;;, - 174;4;-0.771421,-0.611527, 0.109280,-0.137852;;, - 175;4;-0.771421,-0.611527, 0.109280,-0.137852;;, - 176;4;-0.771421,-0.611527, 0.109280,-0.137852;;, - 177;4;-0.771421,-0.611527, 0.109280,-0.137852;;, - 178;4;-0.771421,-0.611527, 0.109280,-0.137852;;, - 179;4;-0.771421,-0.611527, 0.109280,-0.137852;;, - 180;4;-0.771421,-0.611527, 0.109280,-0.137852;;, - 181;4;-0.771421,-0.611527, 0.109280,-0.137852;;, - 182;4;-0.771421,-0.611527, 0.109280,-0.137852;;, - 183;4;-0.771421,-0.611527, 0.109280,-0.137852;;, - 184;4;-0.771421,-0.611527, 0.109280,-0.137852;;, - 185;4;-0.771421,-0.611527, 0.109280,-0.137852;;, - 186;4;-0.771421,-0.611527, 0.109280,-0.137852;;, - 187;4;-0.771421,-0.611527, 0.109280,-0.137852;;, - 188;4;-0.771421,-0.611527, 0.109280,-0.137852;;, - 189;4;-0.771421,-0.611527, 0.109280,-0.137852;;, - 190;4;-0.771421,-0.611527, 0.109280,-0.137852;;, - 191;4;-0.771421,-0.611527, 0.109280,-0.137852;;, - 192;4;-0.771421,-0.611527, 0.109280,-0.137852;;, - 193;4;-0.771421,-0.611527, 0.109280,-0.137852;;, - 194;4;-0.771421,-0.611527, 0.109280,-0.137852;;, - 195;4;-0.771421,-0.611527, 0.109280,-0.137852;;, - 196;4;-0.771421,-0.611527, 0.109280,-0.137852;;, - 197;4;-0.771421,-0.611527, 0.109280,-0.137852;;, - 198;4;-0.771421,-0.611527, 0.109280,-0.137852;;, - 199;4;-0.771421,-0.611527, 0.109280,-0.137852;;, - 200;4;-0.771421,-0.611527, 0.109280,-0.137852;;, - 201;4;-0.771421,-0.611527, 0.109280,-0.137852;;, - 202;4;-0.771421,-0.611527, 0.109280,-0.137852;;, - 203;4;-0.771421,-0.611527, 0.109280,-0.137852;;, - 204;4;-0.771421,-0.611527, 0.109280,-0.137852;;, - 205;4;-0.771421,-0.611527, 0.109280,-0.137852;;, - 206;4;-0.771421,-0.611527, 0.109280,-0.137852;;, - 207;4;-0.771421,-0.611527, 0.109280,-0.137852;;, - 208;4;-0.771421,-0.611527, 0.109280,-0.137852;;, - 209;4;-0.771421,-0.611527, 0.109280,-0.137852;;, - 210;4;-0.771421,-0.611527, 0.109280,-0.137852;;, - 211;4;-0.771421,-0.611527, 0.109280,-0.137852;;, - 212;4;-0.771421,-0.611527, 0.109280,-0.137852;;, - 213;4;-0.771421,-0.611527, 0.109280,-0.137852;;, - 214;4;-0.771421,-0.611527, 0.109280,-0.137852;;, - 215;4;-0.771421,-0.611527, 0.109280,-0.137852;;, - 216;4;-0.771421,-0.611527, 0.109280,-0.137852;;, - 217;4;-0.771421,-0.611527, 0.109280,-0.137852;;, - 218;4;-0.771421,-0.611527, 0.109280,-0.137852;;, - 219;4;-0.771421,-0.611527, 0.109280,-0.137852;;, - 220;4;-0.771421,-0.611527, 0.109280,-0.137852;;, - 221;4;-0.771421,-0.611527, 0.109280,-0.137852;;, - 222;4;-0.771421,-0.611527, 0.109280,-0.137852;;, - 223;4;-0.771421,-0.611527, 0.109280,-0.137852;;, - 224;4;-0.771421,-0.611527, 0.109280,-0.137852;;, - 225;4;-0.771421,-0.611527, 0.109280,-0.137852;;, - 226;4;-0.771421,-0.611527, 0.109280,-0.137852;;, - 227;4;-0.771421,-0.611527, 0.109280,-0.137852;;, - 228;4;-0.771421,-0.611527, 0.109280,-0.137852;;, - 229;4;-0.771421,-0.611527, 0.109280,-0.137852;;, - 230;4;-0.771421,-0.611527, 0.109280,-0.137852;;, - 231;4;-0.771421,-0.611527, 0.109280,-0.137852;;, - 232;4;-0.771421,-0.611527, 0.109280,-0.137852;;, - 233;4;-0.771421,-0.611527, 0.109280,-0.137852;;, - 234;4;-0.771421,-0.611527, 0.109280,-0.137852;;, - 235;4;-0.771421,-0.611527, 0.109280,-0.137852;;, - 236;4;-0.771421,-0.611527, 0.109280,-0.137852;;, - 237;4;-0.771421,-0.611527, 0.109280,-0.137852;;, - 238;4;-0.771421,-0.611527, 0.109280,-0.137852;;, - 239;4;-0.771421,-0.611527, 0.109280,-0.137852;;, - 240;4;-0.771421,-0.611527, 0.109280,-0.137852;;, - 241;4;-0.771421,-0.611527, 0.109280,-0.137852;;, - 242;4;-0.771421,-0.611527, 0.109280,-0.137852;;, - 243;4;-0.771421,-0.611527, 0.109280,-0.137852;;, - 244;4;-0.771421,-0.611527, 0.109280,-0.137852;;, - 245;4;-0.771421,-0.611527, 0.109280,-0.137852;;, - 246;4;-0.771421,-0.611527, 0.109280,-0.137852;;, - 247;4;-0.771421,-0.611527, 0.109280,-0.137852;;, - 248;4;-0.771421,-0.611527, 0.109280,-0.137852;;, - 249;4;-0.771421,-0.611527, 0.109280,-0.137852;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3;-0.000000, 0.974908, 0.000000;;, - 1;3;-0.000000, 0.974908, 0.000000;;, - 2;3;-0.000000, 0.974908, 0.000000;;, - 3;3;-0.000000, 0.974908, 0.000000;;, - 4;3;-0.000000, 0.974908, 0.000000;;, - 5;3;-0.000000, 0.974908, 0.000000;;, - 6;3;-0.000000, 0.974908, 0.000000;;, - 7;3;-0.000000, 0.974908, 0.000000;;, - 8;3;-0.000000, 0.974908, 0.000000;;, - 9;3;-0.000000, 0.974908, 0.000000;;, - 10;3;-0.000000, 0.974908, 0.000000;;, - 11;3;-0.000000, 0.974908, 0.000000;;, - 12;3;-0.000000, 0.974908, 0.000000;;, - 13;3;-0.000000, 0.974908, 0.000000;;, - 14;3;-0.000000, 0.974908, 0.000000;;, - 15;3;-0.000000, 0.974908, 0.000000;;, - 16;3;-0.000000, 0.974908, 0.000000;;, - 17;3;-0.000000, 0.974908, 0.000000;;, - 18;3;-0.000000, 0.974908, 0.000000;;, - 19;3;-0.000000, 0.974908, 0.000000;;, - 20;3;-0.000000, 0.974908, 0.000000;;, - 21;3;-0.000000, 0.974908, 0.000000;;, - 22;3;-0.000000, 0.974908, 0.000000;;, - 23;3;-0.000000, 0.974908, 0.000000;;, - 24;3;-0.000000, 0.974908, 0.000000;;, - 25;3;-0.000000, 0.974908, 0.000000;;, - 26;3;-0.000000, 0.974908, 0.000000;;, - 27;3;-0.000000, 0.974908, 0.000000;;, - 28;3;-0.000000, 0.974908, 0.000000;;, - 29;3;-0.000000, 0.974908, 0.000000;;, - 30;3;-0.000000, 0.974908, 0.000000;;, - 31;3;-0.000000, 0.974908, 0.000000;;, - 32;3;-0.000000, 0.974908, 0.000000;;, - 33;3;-0.000000, 0.974908, 0.000000;;, - 34;3;-0.000000, 0.974908, 0.000000;;, - 35;3;-0.000000, 0.974908, 0.000000;;, - 36;3;-0.000000, 0.974908, 0.000000;;, - 37;3;-0.000000, 0.974908, 0.000000;;, - 38;3;-0.000000, 0.974908, 0.000000;;, - 39;3;-0.000000, 0.974908, 0.000000;;, - 40;3; 0.000000, 0.974908, 0.000000;;, - 41;3;-0.000000, 0.974908, 0.000000;;, - 42;3;-0.000000, 0.974908,-0.000000;;, - 43;3; 0.000000, 0.974908,-0.000000;;, - 44;3; 0.000000, 0.974908, 0.000000;;, - 45;3;-0.000000, 0.974909,-0.000000;;, - 46;3;-0.000000, 0.974908,-0.000000;;, - 47;3; 0.000000, 0.974908,-0.000000;;, - 48;3; 0.000000, 0.974909, 0.000000;;, - 49;3;-0.000000, 0.974908, 0.000000;;, - 50;3;-0.000000, 0.974908,-0.000000;;, - 51;3; 0.000000, 0.974908, 0.000000;;, - 52;3; 0.000000, 0.974908,-0.000000;;, - 53;3;-0.000000, 0.974908, 0.000000;;, - 54;3; 0.000000, 0.974908, 0.000000;;, - 55;3; 0.000000, 0.974908,-0.000000;;, - 56;3; 0.000000, 0.974908, 0.000000;;, - 57;3; 0.000000, 0.974908, 0.000000;;, - 58;3;-0.000000, 0.974908,-0.000000;;, - 59;3;-0.000000, 0.974908,-0.000000;;, - 60;3; 0.000000, 0.974908, 0.000000;;, - 61;3; 0.000000, 0.974908,-0.000000;;, - 62;3; 0.000000, 0.974908, 0.000000;;, - 63;3; 0.000000, 0.974908, 0.000000;;, - 64;3; 0.000000, 0.974908,-0.000000;;, - 65;3;-0.000000, 0.974908, 0.000000;;, - 66;3; 0.000000, 0.974908, 0.000000;;, - 67;3;-0.000000, 0.974908, 0.000000;;, - 68;3;-0.000000, 0.974908,-0.000000;;, - 69;3;-0.000000, 0.974908,-0.000000;;, - 70;3;-0.000000, 0.974908,-0.000000;;, - 71;3;-0.000000, 0.974908,-0.000000;;, - 72;3;-0.000000, 0.974908,-0.000000;;, - 73;3;-0.000000, 0.974908, 0.000000;;, - 74;3;-0.000000, 0.974908, 0.000000;;, - 75;3;-0.000000, 0.974908,-0.000000;;, - 76;3;-0.000000, 0.974908, 0.000000;;, - 77;3;-0.000000, 0.974908,-0.000000;;, - 78;3; 0.000000, 0.974908, 0.000000;;, - 79;3; 0.000000, 0.974908, 0.000000;;, - 80;3; 0.000000, 0.974908,-0.000000;;, - 81;3;-0.000000, 0.974908, 0.000000;;, - 82;3; 0.000000, 0.974908, 0.000000;;, - 83;3; 0.000000, 0.974908,-0.000000;;, - 84;3; 0.000000, 0.974908,-0.000000;;, - 85;3; 0.000000, 0.974908, 0.000000;;, - 86;3; 0.000000, 0.974908,-0.000000;;, - 87;3; 0.000000, 0.974908, 0.000000;;, - 88;3; 0.000000, 0.974908, 0.000000;;, - 89;3; 0.000000, 0.974908,-0.000000;;, - 90;3;-0.000000, 0.974908,-0.000000;;, - 91;3; 0.000000, 0.974908,-0.000000;;, - 92;3; 0.000000, 0.974908,-0.000000;;, - 93;3; 0.000000, 0.974908,-0.000000;;, - 94;3;-0.000000, 0.974908,-0.000000;;, - 95;3; 0.000000, 0.974908,-0.000000;;, - 96;3; 0.000000, 0.974908,-0.000000;;, - 97;3;-0.000000, 0.974908,-0.000000;;, - 98;3; 0.000000, 0.974908, 0.000000;;, - 99;3;-0.000000, 0.974908,-0.000000;;, - 100;3;-0.000000, 0.974908,-0.000000;;, - 101;3; 0.000000, 0.974908,-0.000000;;, - 102;3; 0.000000, 0.974908, 0.000000;;, - 103;3; 0.000000, 0.974908, 0.000000;;, - 104;3;-0.000000, 0.974908, 0.000000;;, - 105;3; 0.000000, 0.974908, 0.000000;;, - 106;3;-0.000000, 0.974908, 0.000000;;, - 107;3; 0.000000, 0.974908,-0.000000;;, - 108;3; 0.000000, 0.974908, 0.000000;;, - 109;3; 0.000000, 0.974908,-0.000000;;, - 110;3;-0.000000, 0.974908, 0.000000;;, - 111;3; 0.000000, 0.974908, 0.000000;;, - 112;3;-0.000000, 0.974908,-0.000000;;, - 113;3; 0.000000, 0.974908,-0.000000;;, - 114;3;-0.000000, 0.974908,-0.000000;;, - 115;3;-0.000000, 0.974908,-0.000000;;, - 116;3; 0.000000, 0.974908,-0.000000;;, - 117;3;-0.000000, 0.974908,-0.000000;;, - 118;3; 0.000000, 0.974908, 0.000000;;, - 119;3;-0.000000, 0.974908, 0.000000;;, - 120;3;-0.000000, 0.974908,-0.000000;;, - 121;3; 0.000000, 0.974908,-0.000000;;, - 122;3; 0.000000, 0.974908,-0.000000;;, - 123;3;-0.000000, 0.974909, 0.000000;;, - 124;3; 0.000000, 0.974909, 0.000000;;, - 125;3; 0.000000, 0.974908,-0.000000;;, - 126;3; 0.000000, 0.974908,-0.000000;;, - 127;3; 0.000000, 0.974908,-0.000000;;, - 128;3; 0.000000, 0.974908,-0.000000;;, - 129;3; 0.000000, 0.974908, 0.000000;;, - 130;3; 0.000000, 0.974908, 0.000000;;, - 131;3; 0.000000, 0.974908, 0.000000;;, - 132;3; 0.000000, 0.974908,-0.000000;;, - 133;3;-0.000000, 0.974908, 0.000000;;, - 134;3;-0.000000, 0.974908, 0.000000;;, - 135;3; 0.000000, 0.974908, 0.000000;;, - 136;3; 0.000000, 0.974908, 0.000000;;, - 137;3; 0.000000, 0.974908, 0.000000;;, - 138;3; 0.000000, 0.974908, 0.000000;;, - 139;3;-0.000000, 0.974908, 0.000000;;, - 140;3; 0.000000, 0.974908, 0.000000;;, - 141;3; 0.000000, 0.974908, 0.000000;;, - 142;3; 0.000000, 0.974908,-0.000000;;, - 143;3; 0.000000, 0.974908, 0.000000;;, - 144;3; 0.000000, 0.974908,-0.000000;;, - 145;3; 0.000000, 0.974908,-0.000000;;, - 146;3;-0.000000, 0.974908, 0.000000;;, - 147;3;-0.000000, 0.974908,-0.000000;;, - 148;3; 0.000000, 0.974908, 0.000000;;, - 149;3;-0.000000, 0.974908, 0.000000;;, - 150;3;-0.000000, 0.974908, 0.000000;;, - 151;3;-0.000000, 0.974908, 0.000000;;, - 152;3;-0.000000, 0.974908, 0.000000;;, - 153;3;-0.000000, 0.974908, 0.000000;;, - 154;3;-0.000000, 0.974908, 0.000000;;, - 155;3;-0.000000, 0.974908, 0.000000;;, - 156;3;-0.000000, 0.974908, 0.000000;;, - 157;3;-0.000000, 0.974908, 0.000000;;, - 158;3;-0.000000, 0.974908, 0.000000;;, - 159;3;-0.000000, 0.974908, 0.000000;;, - 160;3;-0.000000, 0.974908, 0.000000;;, - 161;3;-0.000000, 0.974908, 0.000000;;, - 162;3;-0.000000, 0.974908, 0.000000;;, - 163;3;-0.000000, 0.974908, 0.000000;;, - 164;3;-0.000000, 0.974908, 0.000000;;, - 165;3;-0.000000, 0.974908, 0.000000;;, - 166;3;-0.000000, 0.974908, 0.000000;;, - 167;3;-0.000000, 0.974908, 0.000000;;, - 168;3;-0.000000, 0.974908, 0.000000;;, - 169;3;-0.000000, 0.974908, 0.000000;;, - 170;3;-0.000000, 0.974908, 0.000000;;, - 171;3;-0.000000, 0.974908, 0.000000;;, - 172;3;-0.000000, 0.974908, 0.000000;;, - 173;3;-0.000000, 0.974908, 0.000000;;, - 174;3;-0.000000, 0.974908, 0.000000;;, - 175;3;-0.000000, 0.974908, 0.000000;;, - 176;3;-0.000000, 0.974908, 0.000000;;, - 177;3;-0.000000, 0.974908, 0.000000;;, - 178;3;-0.000000, 0.974908, 0.000000;;, - 179;3;-0.000000, 0.974908, 0.000000;;, - 180;3;-0.000000, 0.974908, 0.000000;;, - 181;3;-0.000000, 0.974908, 0.000000;;, - 182;3;-0.000000, 0.974908, 0.000000;;, - 183;3;-0.000000, 0.974908, 0.000000;;, - 184;3;-0.000000, 0.974908, 0.000000;;, - 185;3;-0.000000, 0.974908, 0.000000;;, - 186;3;-0.000000, 0.974908, 0.000000;;, - 187;3;-0.000000, 0.974908, 0.000000;;, - 188;3;-0.000000, 0.974908, 0.000000;;, - 189;3;-0.000000, 0.974908, 0.000000;;, - 190;3;-0.000000, 0.974908, 0.000000;;, - 191;3;-0.000000, 0.974908, 0.000000;;, - 192;3;-0.000000, 0.974908, 0.000000;;, - 193;3;-0.000000, 0.974908, 0.000000;;, - 194;3;-0.000000, 0.974908, 0.000000;;, - 195;3;-0.000000, 0.974908, 0.000000;;, - 196;3;-0.000000, 0.974908, 0.000000;;, - 197;3;-0.000000, 0.974908, 0.000000;;, - 198;3;-0.000000, 0.974908, 0.000000;;, - 199;3;-0.000000, 0.974908, 0.000000;;, - 200;3;-0.000000, 0.974908, 0.000000;;, - 201;3;-0.000000, 0.974908, 0.000000;;, - 202;3;-0.000000, 0.974908, 0.000000;;, - 203;3;-0.000000, 0.974908, 0.000000;;, - 204;3;-0.000000, 0.974908, 0.000000;;, - 205;3;-0.000000, 0.974908, 0.000000;;, - 206;3;-0.000000, 0.974908, 0.000000;;, - 207;3;-0.000000, 0.974908, 0.000000;;, - 208;3;-0.000000, 0.974908, 0.000000;;, - 209;3;-0.000000, 0.974908, 0.000000;;, - 210;3;-0.000000, 0.974908, 0.000000;;, - 211;3;-0.000000, 0.974908, 0.000000;;, - 212;3;-0.000000, 0.974908, 0.000000;;, - 213;3;-0.000000, 0.974908, 0.000000;;, - 214;3;-0.000000, 0.974908, 0.000000;;, - 215;3;-0.000000, 0.974908, 0.000000;;, - 216;3;-0.000000, 0.974908, 0.000000;;, - 217;3;-0.000000, 0.974908, 0.000000;;, - 218;3;-0.000000, 0.974908, 0.000000;;, - 219;3;-0.000000, 0.974908, 0.000000;;, - 220;3;-0.000000, 0.974908, 0.000000;;, - 221;3;-0.000000, 0.974908, 0.000000;;, - 222;3;-0.000000, 0.974908, 0.000000;;, - 223;3;-0.000000, 0.974908, 0.000000;;, - 224;3;-0.000000, 0.974908, 0.000000;;, - 225;3;-0.000000, 0.974908, 0.000000;;, - 226;3;-0.000000, 0.974908, 0.000000;;, - 227;3;-0.000000, 0.974908, 0.000000;;, - 228;3;-0.000000, 0.974908, 0.000000;;, - 229;3;-0.000000, 0.974908, 0.000000;;, - 230;3;-0.000000, 0.974908, 0.000000;;, - 231;3;-0.000000, 0.974908, 0.000000;;, - 232;3;-0.000000, 0.974908, 0.000000;;, - 233;3;-0.000000, 0.974908, 0.000000;;, - 234;3;-0.000000, 0.974908, 0.000000;;, - 235;3;-0.000000, 0.974908, 0.000000;;, - 236;3;-0.000000, 0.974908, 0.000000;;, - 237;3;-0.000000, 0.974908, 0.000000;;, - 238;3;-0.000000, 0.974908, 0.000000;;, - 239;3;-0.000000, 0.974908, 0.000000;;, - 240;3;-0.000000, 0.974908, 0.000000;;, - 241;3;-0.000000, 0.974908, 0.000000;;, - 242;3;-0.000000, 0.974908, 0.000000;;, - 243;3;-0.000000, 0.974908, 0.000000;;, - 244;3;-0.000000, 0.974908, 0.000000;;, - 245;3;-0.000000, 0.974908, 0.000000;;, - 246;3;-0.000000, 0.974908, 0.000000;;, - 247;3;-0.000000, 0.974908, 0.000000;;, - 248;3;-0.000000, 0.974908, 0.000000;;, - 249;3;-0.000000, 0.974908, 0.000000;;; - } - } - Animation { - {Armature_Bone_025} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 1;4;-0.994102,-0.108422, 0.000000,-0.000000;;, - 2;4;-0.994034,-0.108972, 0.000000,-0.000000;;, - 3;4;-0.993920,-0.109891, 0.000000,-0.000000;;, - 4;4;-0.993761,-0.111171, 0.000000,-0.000000;;, - 5;4;-0.993560,-0.112795, 0.000000,-0.000000;;, - 6;4;-0.993320,-0.114728, 0.000000,-0.000000;;, - 7;4;-0.993047,-0.116925, 0.000000,-0.000000;;, - 8;4;-0.992750,-0.119323, 0.000000,-0.000000;;, - 9;4;-0.992436,-0.121847, 0.000000,-0.000000;;, - 10;4;-0.992118,-0.124415, 0.000000,-0.000000;;, - 11;4;-0.991805,-0.126939, 0.000000,-0.000000;;, - 12;4;-0.991507,-0.129337, 0.000000,-0.000000;;, - 13;4;-0.991234,-0.131534, 0.000000,-0.000000;;, - 14;4;-0.990994,-0.133467, 0.000000,-0.000000;;, - 15;4;-0.990793,-0.135090, 0.000000,-0.000000;;, - 16;4;-0.990634,-0.136371, 0.000000,-0.000000;;, - 17;4;-0.990520,-0.137290, 0.000000,-0.000000;;, - 18;4;-0.990452,-0.137840, 0.000000,-0.000000;;, - 19;4;-0.990429,-0.138022, 0.000000,-0.000000;;, - 20;4;-0.990450,-0.137858, 0.000000,-0.000000;;, - 21;4;-0.990511,-0.137362, 0.000000,-0.000000;;, - 22;4;-0.990614,-0.136532, 0.000000,-0.000000;;, - 23;4;-0.990758,-0.135375, 0.000000,-0.000000;;, - 24;4;-0.990940,-0.133904, 0.000000,-0.000000;;, - 25;4;-0.991159,-0.132144, 0.000000,-0.000000;;, - 26;4;-0.991408,-0.130132, 0.000000,-0.000000;;, - 27;4;-0.991683,-0.127918, 0.000000,-0.000000;;, - 28;4;-0.991975,-0.125561, 0.000000,-0.000000;;, - 29;4;-0.992277,-0.123131, 0.000000,-0.000000;;, - 30;4;-0.992579,-0.120701, 0.000000,-0.000000;;, - 31;4;-0.992871,-0.118344, 0.000000,-0.000000;;, - 32;4;-0.993146,-0.116129, 0.000000,-0.000000;;, - 33;4;-0.993396,-0.114118, 0.000000,-0.000000;;, - 34;4;-0.993614,-0.112358, 0.000000,-0.000000;;, - 35;4;-0.993796,-0.110887, 0.000000,-0.000000;;, - 36;4;-0.993940,-0.109730, 0.000000,-0.000000;;, - 37;4;-0.994043,-0.108900, 0.000000,-0.000000;;, - 38;4;-0.994105,-0.108404, 0.000000,-0.000000;;, - 39;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 40;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 41;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 42;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 43;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 44;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 45;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 46;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 47;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 48;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 49;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 50;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 51;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 52;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 53;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 54;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 55;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 56;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 57;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 58;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 59;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 60;4;-0.994195,-0.107457, 0.000206,-0.000155;;, - 61;4;-0.994405,-0.105100, 0.000825,-0.000622;;, - 62;4;-0.994746,-0.101269, 0.001832,-0.001382;;, - 63;4;-0.995192,-0.096258, 0.003148,-0.002376;;, - 64;4;-0.995698,-0.090581, 0.004640,-0.003501;;, - 65;4;-0.996203,-0.084904, 0.006132,-0.004627;;, - 66;4;-0.996649,-0.079893, 0.007448,-0.005620;;, - 67;4;-0.996991,-0.076062, 0.008455,-0.006380;;, - 68;4;-0.997200,-0.073705, 0.009074,-0.006847;;, - 69;4;-0.997270,-0.072922, 0.009280,-0.007003;;, - 70;4;-0.997262,-0.073009, 0.009257,-0.006985;;, - 71;4;-0.997239,-0.073269, 0.009189,-0.006934;;, - 72;4;-0.997200,-0.073705, 0.009074,-0.006847;;, - 73;4;-0.997146,-0.074317, 0.008913,-0.006726;;, - 74;4;-0.997076,-0.075104, 0.008707,-0.006570;;, - 75;4;-0.996991,-0.076062, 0.008455,-0.006380;;, - 76;4;-0.996890,-0.077185, 0.008160,-0.006157;;, - 77;4;-0.996776,-0.078466, 0.007823,-0.005904;;, - 78;4;-0.996649,-0.079893, 0.007448,-0.005620;;, - 79;4;-0.996510,-0.081453, 0.007038,-0.005311;;, - 80;4;-0.996361,-0.083130, 0.006598,-0.004979;;, - 81;4;-0.996203,-0.084904, 0.006132,-0.004627;;, - 82;4;-0.996038,-0.086754, 0.005646,-0.004260;;, - 83;4;-0.995869,-0.088654, 0.005146,-0.003883;;, - 84;4;-0.995697,-0.090581, 0.004640,-0.003501;;, - 85;4;-0.995526,-0.092508, 0.004134,-0.003119;;, - 86;4;-0.995357,-0.094409, 0.003634,-0.002742;;, - 87;4;-0.995192,-0.096258, 0.003148,-0.002376;;, - 88;4;-0.995034,-0.098032, 0.002682,-0.002024;;, - 89;4;-0.994885,-0.099709, 0.002242,-0.001692;;, - 90;4;-0.994746,-0.101269, 0.001832,-0.001382;;, - 91;4;-0.994619,-0.102696, 0.001457,-0.001099;;, - 92;4;-0.994505,-0.103977, 0.001120,-0.000845;;, - 93;4;-0.994404,-0.105100, 0.000825,-0.000622;;, - 94;4;-0.994319,-0.106058, 0.000573,-0.000433;;, - 95;4;-0.994249,-0.106845, 0.000367,-0.000277;;, - 96;4;-0.994195,-0.107457, 0.000206,-0.000155;;, - 97;4;-0.994156,-0.107893, 0.000091,-0.000069;;, - 98;4;-0.994133,-0.108153, 0.000023,-0.000017;;, - 99;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 100;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 101;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 102;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 103;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 104;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 105;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 106;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 107;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 108;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 109;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 110;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 111;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 112;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 113;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 114;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 115;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 116;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 117;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 118;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 119;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 120;4;-0.994230,-0.100997, 0.000000,-0.000000;;, - 121;4;-0.994576,-0.076339, 0.000000,-0.000000;;, - 122;4;-0.995150,-0.033245, 0.000000,-0.000000;;, - 123;4;-0.995852, 0.022571, 0.000000,-0.000000;;, - 124;4;-0.996564, 0.082825, 0.000000, 0.000000;;, - 125;4;-0.983921, 0.162962, 0.015766, 0.001258;;, - 126;4;-0.947006, 0.274780, 0.060179, 0.005147;;, - 127;4;-0.899280, 0.389780, 0.117219, 0.011073;;, - 128;4;-0.862009, 0.470440, 0.161669, 0.017501;;, - 129;4;-0.848759, 0.497564, 0.177500, 0.023077;;, - 130;4;-0.860243, 0.435379, 0.163556, 0.028894;;, - 131;4;-0.892591, 0.260224, 0.124143, 0.036003;;, - 132;4;-0.934125, 0.035325, 0.073502, 0.042803;;, - 133;4;-0.966473,-0.139831, 0.034050, 0.047373;;, - 134;4;-0.977957,-0.202015, 0.020042, 0.048873;;, - 135;4;-0.977957,-0.202015, 0.020042, 0.048873;;, - 136;4;-0.977957,-0.202015, 0.020042, 0.048873;;, - 137;4;-0.977957,-0.202015, 0.020042, 0.048873;;, - 138;4;-0.977957,-0.202015, 0.020042, 0.048873;;, - 139;4;-0.977957,-0.202015, 0.020042, 0.048873;;, - 140;4;-0.977957,-0.202015, 0.020042, 0.048873;;, - 141;4;-0.977957,-0.202015, 0.020042, 0.048873;;, - 142;4;-0.977957,-0.202015, 0.020042, 0.048873;;, - 143;4;-0.977957,-0.202015, 0.020042, 0.048873;;, - 144;4;-0.977957,-0.202015, 0.020042, 0.048873;;, - 145;4;-0.979394,-0.193680, 0.018261, 0.044529;;, - 146;4;-0.983442,-0.170201, 0.013243, 0.032292;;, - 147;4;-0.988640,-0.140054, 0.006800, 0.016581;;, - 148;4;-0.992688,-0.116575, 0.001782, 0.004344;;, - 149;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 150;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 151;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 152;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 153;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 154;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 155;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 156;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 157;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 158;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 159;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 160;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 161;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 162;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 163;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 164;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 165;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 166;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 167;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 168;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 169;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 170;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 171;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 172;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 173;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 174;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 175;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 176;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 177;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 178;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 179;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 180;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 181;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 182;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 183;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 184;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 185;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 186;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 187;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 188;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 189;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 190;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 191;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 192;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 193;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 194;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 195;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 196;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 197;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 198;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 199;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 200;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 201;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 202;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 203;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 204;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 205;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 206;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 207;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 208;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 209;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 210;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 211;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 212;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 213;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 214;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 215;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 216;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 217;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 218;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 219;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 220;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 221;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 222;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 223;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 224;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 225;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 226;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 227;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 228;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 229;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 230;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 231;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 232;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 233;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 234;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 235;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 236;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 237;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 238;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 239;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 240;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 241;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 242;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 243;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 244;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 245;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 246;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 247;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 248;4;-0.994125,-0.108240, 0.000000,-0.000000;;, - 249;4;-0.994125,-0.108240, 0.000000,-0.000000;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3;-0.000000, 2.410316, 0.000000;;, - 1;3;-0.000000, 2.410316, 0.000000;;, - 2;3;-0.000000, 2.410316, 0.000000;;, - 3;3;-0.000000, 2.410316, 0.000000;;, - 4;3;-0.000000, 2.410316, 0.000000;;, - 5;3;-0.000000, 2.410316,-0.000000;;, - 6;3; 0.000000, 2.410316, 0.000000;;, - 7;3;-0.000000, 2.410316, 0.000000;;, - 8;3; 0.000000, 2.410316, 0.000000;;, - 9;3;-0.000000, 2.410316, 0.000000;;, - 10;3;-0.000000, 2.410316, 0.000000;;, - 11;3;-0.000000, 2.410316,-0.000000;;, - 12;3;-0.000000, 2.410316,-0.000000;;, - 13;3;-0.000000, 2.410316,-0.000000;;, - 14;3;-0.000000, 2.410316, 0.000000;;, - 15;3;-0.000000, 2.410316,-0.000000;;, - 16;3;-0.000000, 2.410316,-0.000000;;, - 17;3;-0.000000, 2.410316,-0.000000;;, - 18;3;-0.000000, 2.410316,-0.000000;;, - 19;3;-0.000000, 2.410316, 0.000000;;, - 20;3;-0.000000, 2.410316, 0.000000;;, - 21;3;-0.000000, 2.410316,-0.000000;;, - 22;3;-0.000000, 2.410316,-0.000000;;, - 23;3;-0.000000, 2.410316, 0.000000;;, - 24;3;-0.000000, 2.410316,-0.000000;;, - 25;3;-0.000000, 2.410316, 0.000000;;, - 26;3; 0.000000, 2.410316,-0.000000;;, - 27;3;-0.000000, 2.410316, 0.000000;;, - 28;3;-0.000000, 2.410316, 0.000000;;, - 29;3;-0.000000, 2.410316, 0.000000;;, - 30;3;-0.000000, 2.410316,-0.000000;;, - 31;3;-0.000000, 2.410316,-0.000000;;, - 32;3;-0.000000, 2.410316, 0.000000;;, - 33;3;-0.000000, 2.410316, 0.000000;;, - 34;3;-0.000000, 2.410316,-0.000000;;, - 35;3;-0.000000, 2.410316,-0.000000;;, - 36;3;-0.000000, 2.410316, 0.000000;;, - 37;3;-0.000000, 2.410316,-0.000000;;, - 38;3;-0.000000, 2.410316,-0.000000;;, - 39;3;-0.000000, 2.410316, 0.000000;;, - 40;3; 0.000000, 2.410316, 0.000000;;, - 41;3; 0.000000, 2.410316, 0.000000;;, - 42;3;-0.000000, 2.410316,-0.000000;;, - 43;3;-0.000000, 2.410316,-0.000000;;, - 44;3; 0.000000, 2.410316,-0.000000;;, - 45;3; 0.000000, 2.410316,-0.000000;;, - 46;3;-0.000000, 2.410316,-0.000000;;, - 47;3;-0.000000, 2.410316, 0.000000;;, - 48;3;-0.000000, 2.410316, 0.000000;;, - 49;3; 0.000000, 2.410316,-0.000000;;, - 50;3; 0.000000, 2.410316, 0.000000;;, - 51;3;-0.000000, 2.410316,-0.000000;;, - 52;3;-0.000000, 2.410316, 0.000000;;, - 53;3; 0.000000, 2.410316, 0.000000;;, - 54;3; 0.000000, 2.410316, 0.000000;;, - 55;3; 0.000000, 2.410316, 0.000000;;, - 56;3; 0.000000, 2.410316,-0.000000;;, - 57;3; 0.000000, 2.410316,-0.000000;;, - 58;3; 0.000000, 2.410316,-0.000000;;, - 59;3; 0.000000, 2.410316,-0.000000;;, - 60;3;-0.000000, 2.410316,-0.000000;;, - 61;3; 0.000000, 2.410316,-0.000000;;, - 62;3;-0.000000, 2.410316, 0.000000;;, - 63;3; 0.000000, 2.410316, 0.000000;;, - 64;3;-0.000000, 2.410316, 0.000000;;, - 65;3;-0.000000, 2.410316,-0.000000;;, - 66;3; 0.000000, 2.410316, 0.000000;;, - 67;3; 0.000000, 2.410316,-0.000000;;, - 68;3; 0.000000, 2.410316,-0.000000;;, - 69;3; 0.000000, 2.410316, 0.000000;;, - 70;3; 0.000000, 2.410316, 0.000000;;, - 71;3;-0.000000, 2.410316,-0.000000;;, - 72;3;-0.000000, 2.410316,-0.000000;;, - 73;3; 0.000000, 2.410316,-0.000000;;, - 74;3;-0.000000, 2.410316,-0.000000;;, - 75;3; 0.000000, 2.410316,-0.000000;;, - 76;3;-0.000000, 2.410316, 0.000000;;, - 77;3;-0.000000, 2.410316, 0.000000;;, - 78;3;-0.000000, 2.410316, 0.000000;;, - 79;3; 0.000000, 2.410316,-0.000000;;, - 80;3;-0.000000, 2.410316, 0.000000;;, - 81;3;-0.000000, 2.410316,-0.000000;;, - 82;3;-0.000000, 2.410316,-0.000000;;, - 83;3; 0.000000, 2.410316, 0.000000;;, - 84;3; 0.000000, 2.410316, 0.000000;;, - 85;3;-0.000000, 2.410316, 0.000000;;, - 86;3; 0.000000, 2.410316,-0.000000;;, - 87;3;-0.000000, 2.410316, 0.000000;;, - 88;3;-0.000000, 2.410316, 0.000000;;, - 89;3; 0.000000, 2.410316, 0.000000;;, - 90;3; 0.000000, 2.410316,-0.000000;;, - 91;3; 0.000000, 2.410316,-0.000000;;, - 92;3;-0.000000, 2.410316,-0.000000;;, - 93;3; 0.000000, 2.410316, 0.000000;;, - 94;3;-0.000000, 2.410316,-0.000000;;, - 95;3;-0.000000, 2.410316, 0.000000;;, - 96;3;-0.000000, 2.410316, 0.000000;;, - 97;3; 0.000000, 2.410316,-0.000000;;, - 98;3;-0.000000, 2.410316,-0.000000;;, - 99;3; 0.000000, 2.410316,-0.000000;;, - 100;3; 0.000000, 2.410316, 0.000000;;, - 101;3; 0.000000, 2.410316, 0.000000;;, - 102;3;-0.000000, 2.410316, 0.000000;;, - 103;3; 0.000000, 2.410316, 0.000000;;, - 104;3; 0.000000, 2.410316,-0.000000;;, - 105;3; 0.000000, 2.410316,-0.000000;;, - 106;3; 0.000000, 2.410316,-0.000000;;, - 107;3;-0.000000, 2.410316, 0.000000;;, - 108;3; 0.000000, 2.410316,-0.000000;;, - 109;3;-0.000000, 2.410316, 0.000000;;, - 110;3;-0.000000, 2.410316, 0.000000;;, - 111;3;-0.000000, 2.410316, 0.000000;;, - 112;3; 0.000000, 2.410316,-0.000000;;, - 113;3; 0.000000, 2.410316,-0.000000;;, - 114;3;-0.000000, 2.410316,-0.000000;;, - 115;3; 0.000000, 2.410316,-0.000000;;, - 116;3; 0.000000, 2.410316, 0.000000;;, - 117;3; 0.000000, 2.410316,-0.000000;;, - 118;3; 0.000000, 2.410316, 0.000000;;, - 119;3;-0.000000, 2.410316, 0.000000;;, - 120;3;-0.000000, 2.410316,-0.000000;;, - 121;3; 0.000000, 2.410316,-0.000000;;, - 122;3; 0.000000, 2.410316, 0.000000;;, - 123;3;-0.000000, 2.410316,-0.000000;;, - 124;3;-0.000000, 2.410316,-0.000000;;, - 125;3; 0.000000, 2.410316, 0.000000;;, - 126;3;-0.000000, 2.410316,-0.000000;;, - 127;3;-0.000000, 2.410316, 0.000000;;, - 128;3; 0.000000, 2.410316, 0.000000;;, - 129;3;-0.000000, 2.410316,-0.000000;;, - 130;3;-0.000000, 2.410316,-0.000000;;, - 131;3; 0.000000, 2.410316,-0.000000;;, - 132;3;-0.000000, 2.410316, 0.000000;;, - 133;3;-0.000000, 2.410315, 0.000000;;, - 134;3;-0.000000, 2.410316, 0.000000;;, - 135;3;-0.000000, 2.410316,-0.000000;;, - 136;3; 0.000000, 2.410316,-0.000000;;, - 137;3;-0.000000, 2.410316, 0.000000;;, - 138;3;-0.000000, 2.410316,-0.000000;;, - 139;3;-0.000000, 2.410316,-0.000000;;, - 140;3;-0.000000, 2.410316, 0.000000;;, - 141;3;-0.000000, 2.410316,-0.000000;;, - 142;3; 0.000000, 2.410316,-0.000000;;, - 143;3; 0.000000, 2.410316,-0.000000;;, - 144;3;-0.000000, 2.410316,-0.000000;;, - 145;3;-0.000000, 2.410316, 0.000000;;, - 146;3; 0.000000, 2.410316,-0.000000;;, - 147;3;-0.000000, 2.410316, 0.000000;;, - 148;3; 0.000000, 2.410316, 0.000000;;, - 149;3;-0.000000, 2.410316, 0.000000;;, - 150;3;-0.000000, 2.410316, 0.000000;;, - 151;3;-0.000000, 2.410316, 0.000000;;, - 152;3;-0.000000, 2.410316, 0.000000;;, - 153;3;-0.000000, 2.410316, 0.000000;;, - 154;3;-0.000000, 2.410316, 0.000000;;, - 155;3;-0.000000, 2.410316, 0.000000;;, - 156;3;-0.000000, 2.410316, 0.000000;;, - 157;3;-0.000000, 2.410316, 0.000000;;, - 158;3;-0.000000, 2.410316, 0.000000;;, - 159;3;-0.000000, 2.410316, 0.000000;;, - 160;3;-0.000000, 2.410316, 0.000000;;, - 161;3;-0.000000, 2.410316, 0.000000;;, - 162;3;-0.000000, 2.410316, 0.000000;;, - 163;3;-0.000000, 2.410316, 0.000000;;, - 164;3;-0.000000, 2.410316, 0.000000;;, - 165;3;-0.000000, 2.410316, 0.000000;;, - 166;3;-0.000000, 2.410316, 0.000000;;, - 167;3;-0.000000, 2.410316, 0.000000;;, - 168;3;-0.000000, 2.410316, 0.000000;;, - 169;3;-0.000000, 2.410316, 0.000000;;, - 170;3;-0.000000, 2.410316, 0.000000;;, - 171;3;-0.000000, 2.410316, 0.000000;;, - 172;3;-0.000000, 2.410316, 0.000000;;, - 173;3;-0.000000, 2.410316, 0.000000;;, - 174;3;-0.000000, 2.410316, 0.000000;;, - 175;3;-0.000000, 2.410316, 0.000000;;, - 176;3;-0.000000, 2.410316, 0.000000;;, - 177;3;-0.000000, 2.410316, 0.000000;;, - 178;3;-0.000000, 2.410316, 0.000000;;, - 179;3;-0.000000, 2.410316, 0.000000;;, - 180;3;-0.000000, 2.410316, 0.000000;;, - 181;3;-0.000000, 2.410316, 0.000000;;, - 182;3;-0.000000, 2.410316, 0.000000;;, - 183;3;-0.000000, 2.410316, 0.000000;;, - 184;3;-0.000000, 2.410316, 0.000000;;, - 185;3;-0.000000, 2.410316, 0.000000;;, - 186;3;-0.000000, 2.410316, 0.000000;;, - 187;3;-0.000000, 2.410316, 0.000000;;, - 188;3;-0.000000, 2.410316, 0.000000;;, - 189;3;-0.000000, 2.410316, 0.000000;;, - 190;3;-0.000000, 2.410316, 0.000000;;, - 191;3;-0.000000, 2.410316, 0.000000;;, - 192;3;-0.000000, 2.410316, 0.000000;;, - 193;3;-0.000000, 2.410316, 0.000000;;, - 194;3;-0.000000, 2.410316, 0.000000;;, - 195;3;-0.000000, 2.410316, 0.000000;;, - 196;3;-0.000000, 2.410316, 0.000000;;, - 197;3;-0.000000, 2.410316, 0.000000;;, - 198;3;-0.000000, 2.410316, 0.000000;;, - 199;3;-0.000000, 2.410316, 0.000000;;, - 200;3;-0.000000, 2.410316, 0.000000;;, - 201;3;-0.000000, 2.410316, 0.000000;;, - 202;3;-0.000000, 2.410316, 0.000000;;, - 203;3;-0.000000, 2.410316, 0.000000;;, - 204;3;-0.000000, 2.410316, 0.000000;;, - 205;3;-0.000000, 2.410316, 0.000000;;, - 206;3;-0.000000, 2.410316, 0.000000;;, - 207;3;-0.000000, 2.410316, 0.000000;;, - 208;3;-0.000000, 2.410316, 0.000000;;, - 209;3;-0.000000, 2.410316, 0.000000;;, - 210;3;-0.000000, 2.410316, 0.000000;;, - 211;3;-0.000000, 2.410316, 0.000000;;, - 212;3;-0.000000, 2.410316, 0.000000;;, - 213;3;-0.000000, 2.410316, 0.000000;;, - 214;3;-0.000000, 2.410316, 0.000000;;, - 215;3;-0.000000, 2.410316, 0.000000;;, - 216;3;-0.000000, 2.410316, 0.000000;;, - 217;3;-0.000000, 2.410316, 0.000000;;, - 218;3;-0.000000, 2.410316, 0.000000;;, - 219;3;-0.000000, 2.410316, 0.000000;;, - 220;3;-0.000000, 2.410316, 0.000000;;, - 221;3;-0.000000, 2.410316, 0.000000;;, - 222;3;-0.000000, 2.410316, 0.000000;;, - 223;3;-0.000000, 2.410316, 0.000000;;, - 224;3;-0.000000, 2.410316, 0.000000;;, - 225;3;-0.000000, 2.410316, 0.000000;;, - 226;3;-0.000000, 2.410316, 0.000000;;, - 227;3;-0.000000, 2.410316, 0.000000;;, - 228;3;-0.000000, 2.410316, 0.000000;;, - 229;3;-0.000000, 2.410316, 0.000000;;, - 230;3;-0.000000, 2.410316, 0.000000;;, - 231;3;-0.000000, 2.410316, 0.000000;;, - 232;3;-0.000000, 2.410316, 0.000000;;, - 233;3;-0.000000, 2.410316, 0.000000;;, - 234;3;-0.000000, 2.410316, 0.000000;;, - 235;3;-0.000000, 2.410316, 0.000000;;, - 236;3;-0.000000, 2.410316, 0.000000;;, - 237;3;-0.000000, 2.410316, 0.000000;;, - 238;3;-0.000000, 2.410316, 0.000000;;, - 239;3;-0.000000, 2.410316, 0.000000;;, - 240;3;-0.000000, 2.410316, 0.000000;;, - 241;3;-0.000000, 2.410316, 0.000000;;, - 242;3;-0.000000, 2.410316, 0.000000;;, - 243;3;-0.000000, 2.410316, 0.000000;;, - 244;3;-0.000000, 2.410316, 0.000000;;, - 245;3;-0.000000, 2.410316, 0.000000;;, - 246;3;-0.000000, 2.410316, 0.000000;;, - 247;3;-0.000000, 2.410316, 0.000000;;, - 248;3;-0.000000, 2.410316, 0.000000;;, - 249;3;-0.000000, 2.410316, 0.000000;;; - } - } - Animation { - {Armature_Bone_027} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 1;4;-0.995035,-0.099475,-0.000000,-0.000000;;, - 2;4;-0.995095,-0.098714,-0.000000,-0.000000;;, - 3;4;-0.995196,-0.097444,-0.000000,-0.000000;;, - 4;4;-0.995337,-0.095673,-0.000000,-0.000000;;, - 5;4;-0.995515,-0.093430,-0.000000,-0.000000;;, - 6;4;-0.995727,-0.090757,-0.000000,-0.000000;;, - 7;4;-0.995968,-0.087720,-0.000000,-0.000000;;, - 8;4;-0.996232,-0.084406,-0.000000,-0.000000;;, - 9;4;-0.996509,-0.080916,-0.000000,-0.000000;;, - 10;4;-0.996791,-0.077366,-0.000000,-0.000000;;, - 11;4;-0.997068,-0.073877,-0.000000,-0.000000;;, - 12;4;-0.997331,-0.070562,-0.000000,-0.000000;;, - 13;4;-0.997572,-0.067526,-0.000000,-0.000000;;, - 14;4;-0.997784,-0.064853,-0.000000,-0.000000;;, - 15;4;-0.997962,-0.062609,-0.000000,-0.000000;;, - 16;4;-0.998103,-0.060839,-0.000000,-0.000000;;, - 17;4;-0.998204,-0.059568,-0.000000,-0.000000;;, - 18;4;-0.998264,-0.058808,-0.000000,-0.000000;;, - 19;4;-0.998284,-0.058556,-0.000000,-0.000000;;, - 20;4;-0.998266,-0.058783,-0.000000,-0.000000;;, - 21;4;-0.998212,-0.059469,-0.000000,-0.000000;;, - 22;4;-0.998121,-0.060616,-0.000000,-0.000000;;, - 23;4;-0.997994,-0.062216,-0.000000,-0.000000;;, - 24;4;-0.997832,-0.064250,-0.000000,-0.000000;;, - 25;4;-0.997639,-0.066682,-0.000000,-0.000000;;, - 26;4;-0.997418,-0.069463,-0.000000,-0.000000;;, - 27;4;-0.997175,-0.072524,-0.000000,-0.000000;;, - 28;4;-0.996917,-0.075782,-0.000000,-0.000000;;, - 29;4;-0.996650,-0.079141,-0.000000,-0.000000;;, - 30;4;-0.996383,-0.082501,-0.000000,-0.000000;;, - 31;4;-0.996124,-0.085759,-0.000000,-0.000000;;, - 32;4;-0.995881,-0.088820,-0.000000,-0.000000;;, - 33;4;-0.995660,-0.091600,-0.000000,-0.000000;;, - 34;4;-0.995467,-0.094033,-0.000000,-0.000000;;, - 35;4;-0.995306,-0.096067,-0.000000,-0.000000;;, - 36;4;-0.995179,-0.097667,-0.000000,-0.000000;;, - 37;4;-0.995088,-0.098813,-0.000000,-0.000000;;, - 38;4;-0.995033,-0.099499,-0.000000,-0.000000;;, - 39;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 40;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 41;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 42;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 43;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 44;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 45;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 46;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 47;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 48;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 49;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 50;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 51;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 52;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 53;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 54;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 55;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 56;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 57;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 58;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 59;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 60;4;-0.995081,-0.098895, 0.000248,-0.000116;;, - 61;4;-0.995279,-0.096394, 0.000993,-0.000465;;, - 62;4;-0.995601,-0.092326, 0.002204,-0.001032;;, - 63;4;-0.996023,-0.087007, 0.003788,-0.001775;;, - 64;4;-0.996500,-0.080981, 0.005583,-0.002615;;, - 65;4;-0.996978,-0.074954, 0.007378,-0.003456;;, - 66;4;-0.997399,-0.069635, 0.008962,-0.004198;;, - 67;4;-0.997721,-0.065568, 0.010173,-0.004766;;, - 68;4;-0.997920,-0.063066, 0.010918,-0.005115;;, - 69;4;-0.997985,-0.062235, 0.011166,-0.005231;;, - 70;4;-0.997978,-0.062327, 0.011139,-0.005218;;, - 71;4;-0.997956,-0.062603, 0.011056,-0.005179;;, - 72;4;-0.997920,-0.063066, 0.010918,-0.005115;;, - 73;4;-0.997868,-0.063716, 0.010725,-0.005024;;, - 74;4;-0.997802,-0.064551, 0.010476,-0.004908;;, - 75;4;-0.997721,-0.065568, 0.010173,-0.004766;;, - 76;4;-0.997627,-0.066760, 0.009818,-0.004599;;, - 77;4;-0.997519,-0.068120, 0.009413,-0.004410;;, - 78;4;-0.997399,-0.069635, 0.008962,-0.004198;;, - 79;4;-0.997268,-0.071291, 0.008469,-0.003967;;, - 80;4;-0.997127,-0.073071, 0.007939,-0.003719;;, - 81;4;-0.996978,-0.074954, 0.007378,-0.003456;;, - 82;4;-0.996822,-0.076918, 0.006793,-0.003182;;, - 83;4;-0.996662,-0.078935, 0.006192,-0.002901;;, - 84;4;-0.996500,-0.080981, 0.005583,-0.002615;;, - 85;4;-0.996338,-0.083026, 0.004974,-0.002330;;, - 86;4;-0.996178,-0.085044, 0.004373,-0.002049;;, - 87;4;-0.996023,-0.087007, 0.003788,-0.001775;;, - 88;4;-0.995874,-0.088890, 0.003227,-0.001512;;, - 89;4;-0.995733,-0.090670, 0.002697,-0.001264;;, - 90;4;-0.995601,-0.092326, 0.002204,-0.001032;;, - 91;4;-0.995481,-0.093842, 0.001753,-0.000821;;, - 92;4;-0.995374,-0.095201, 0.001348,-0.000631;;, - 93;4;-0.995279,-0.096394, 0.000993,-0.000465;;, - 94;4;-0.995199,-0.097410, 0.000690,-0.000323;;, - 95;4;-0.995132,-0.098245, 0.000441,-0.000207;;, - 96;4;-0.995081,-0.098895, 0.000248,-0.000116;;, - 97;4;-0.995044,-0.099358, 0.000110,-0.000051;;, - 98;4;-0.995022,-0.099634, 0.000027,-0.000013;;, - 99;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 100;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 101;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 102;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 103;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 104;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 105;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 106;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 107;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 108;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 109;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 110;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 111;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 112;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 113;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 114;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 115;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 116;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 117;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 118;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 119;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 120;4;-0.972497,-0.031240,-0.000000,-0.000000;;, - 121;4;-0.909070, 0.161666,-0.000000, 0.000000;;, - 122;4;-0.827631, 0.409355,-0.000000, 0.000000;;, - 123;4;-0.764205, 0.602260,-0.000000, 0.000000;;, - 124;4;-0.741687, 0.670747,-0.000000, 0.000000;;, - 125;4;-0.741687, 0.670747,-0.000000, 0.000000;;, - 126;4;-0.741687, 0.670747,-0.000000, 0.000000;;, - 127;4;-0.741687, 0.670747,-0.000000, 0.000000;;, - 128;4;-0.741687, 0.670747,-0.000000, 0.000000;;, - 129;4;-0.741687, 0.670747,-0.000000, 0.000000;;, - 130;4;-0.763509, 0.604413,-0.010797, 0.006287;;, - 131;4;-0.824976, 0.417570,-0.041209, 0.023997;;, - 132;4;-0.903899, 0.177665,-0.080258, 0.046735;;, - 133;4;-0.965366,-0.009178,-0.110670, 0.064445;;, - 134;4;-0.987189,-0.075512,-0.121467, 0.070732;;, - 135;4;-0.987189,-0.075512,-0.121467, 0.070732;;, - 136;4;-0.987189,-0.075512,-0.121467, 0.070732;;, - 137;4;-0.987189,-0.075512,-0.121467, 0.070732;;, - 138;4;-0.987189,-0.075512,-0.121467, 0.070732;;, - 139;4;-0.987189,-0.075512,-0.121467, 0.070732;;, - 140;4;-0.987189,-0.075512,-0.121467, 0.070732;;, - 141;4;-0.987189,-0.075512,-0.121467, 0.070732;;, - 142;4;-0.987189,-0.075512,-0.121467, 0.070732;;, - 143;4;-0.987189,-0.075512,-0.121467, 0.070732;;, - 144;4;-0.987189,-0.075512,-0.121467, 0.070732;;, - 145;4;-0.987884,-0.077664,-0.110670, 0.064445;;, - 146;4;-0.989844,-0.083727,-0.080258, 0.046735;;, - 147;4;-0.992360,-0.091511,-0.041209, 0.023997;;, - 148;4;-0.994319,-0.097574,-0.010797, 0.006287;;, - 149;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 150;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 151;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 152;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 153;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 154;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 155;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 156;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 157;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 158;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 159;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 160;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 161;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 162;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 163;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 164;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 165;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 166;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 167;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 168;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 169;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 170;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 171;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 172;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 173;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 174;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 175;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 176;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 177;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 178;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 179;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 180;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 181;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 182;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 183;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 184;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 185;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 186;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 187;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 188;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 189;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 190;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 191;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 192;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 193;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 194;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 195;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 196;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 197;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 198;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 199;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 200;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 201;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 202;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 203;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 204;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 205;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 206;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 207;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 208;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 209;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 210;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 211;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 212;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 213;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 214;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 215;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 216;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 217;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 218;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 219;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 220;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 221;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 222;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 223;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 224;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 225;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 226;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 227;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 228;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 229;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 230;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 231;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 232;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 233;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 234;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 235;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 236;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 237;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 238;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 239;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 240;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 241;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 242;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 243;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 244;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 245;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 246;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 247;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 248;4;-0.995015,-0.099726,-0.000000,-0.000000;;, - 249;4;-0.995015,-0.099726,-0.000000,-0.000000;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3; 0.000000, 2.365125,-0.000000;;, - 1;3;-0.000000, 2.365125, 0.000000;;, - 2;3; 0.000000, 2.365126, 0.000000;;, - 3;3; 0.000000, 2.365125,-0.000000;;, - 4;3; 0.000000, 2.365126,-0.000000;;, - 5;3; 0.000000, 2.365126,-0.000000;;, - 6;3;-0.000000, 2.365126,-0.000000;;, - 7;3; 0.000000, 2.365126, 0.000000;;, - 8;3; 0.000000, 2.365126, 0.000000;;, - 9;3; 0.000000, 2.365125, 0.000000;;, - 10;3;-0.000000, 2.365126, 0.000000;;, - 11;3;-0.000000, 2.365126, 0.000000;;, - 12;3;-0.000000, 2.365126, 0.000000;;, - 13;3;-0.000000, 2.365125, 0.000000;;, - 14;3; 0.000000, 2.365126, 0.000000;;, - 15;3; 0.000000, 2.365125, 0.000000;;, - 16;3;-0.000000, 2.365125, 0.000000;;, - 17;3;-0.000000, 2.365126, 0.000000;;, - 18;3; 0.000000, 2.365125, 0.000000;;, - 19;3;-0.000000, 2.365126,-0.000000;;, - 20;3;-0.000000, 2.365125,-0.000000;;, - 21;3; 0.000000, 2.365126,-0.000000;;, - 22;3;-0.000000, 2.365125, 0.000000;;, - 23;3;-0.000000, 2.365125, 0.000000;;, - 24;3; 0.000000, 2.365126,-0.000000;;, - 25;3; 0.000000, 2.365126, 0.000000;;, - 26;3;-0.000000, 2.365126, 0.000000;;, - 27;3;-0.000000, 2.365126, 0.000000;;, - 28;3;-0.000000, 2.365125, 0.000000;;, - 29;3;-0.000000, 2.365125, 0.000000;;, - 30;3;-0.000000, 2.365126, 0.000000;;, - 31;3;-0.000000, 2.365125, 0.000000;;, - 32;3;-0.000000, 2.365125, 0.000000;;, - 33;3; 0.000000, 2.365126,-0.000000;;, - 34;3;-0.000000, 2.365126, 0.000000;;, - 35;3; 0.000000, 2.365126,-0.000000;;, - 36;3; 0.000000, 2.365126, 0.000000;;, - 37;3;-0.000000, 2.365125, 0.000000;;, - 38;3;-0.000000, 2.365125, 0.000000;;, - 39;3; 0.000000, 2.365125,-0.000000;;, - 40;3; 0.000000, 2.365126,-0.000000;;, - 41;3;-0.000000, 2.365125,-0.000000;;, - 42;3;-0.000000, 2.365125,-0.000000;;, - 43;3; 0.000000, 2.365126, 0.000000;;, - 44;3;-0.000000, 2.365125,-0.000000;;, - 45;3;-0.000000, 2.365126, 0.000000;;, - 46;3;-0.000000, 2.365125, 0.000000;;, - 47;3; 0.000000, 2.365125, 0.000000;;, - 48;3;-0.000000, 2.365125,-0.000000;;, - 49;3;-0.000000, 2.365125,-0.000000;;, - 50;3; 0.000000, 2.365125,-0.000000;;, - 51;3;-0.000000, 2.365126, 0.000000;;, - 52;3; 0.000000, 2.365125, 0.000000;;, - 53;3; 0.000000, 2.365125, 0.000000;;, - 54;3; 0.000000, 2.365126,-0.000000;;, - 55;3; 0.000000, 2.365126, 0.000000;;, - 56;3; 0.000000, 2.365126,-0.000000;;, - 57;3;-0.000000, 2.365126, 0.000000;;, - 58;3; 0.000000, 2.365126,-0.000000;;, - 59;3;-0.000000, 2.365126,-0.000000;;, - 60;3;-0.000000, 2.365125, 0.000000;;, - 61;3;-0.000000, 2.365126, 0.000000;;, - 62;3;-0.000000, 2.365125,-0.000000;;, - 63;3; 0.000000, 2.365125,-0.000000;;, - 64;3;-0.000000, 2.365125,-0.000000;;, - 65;3; 0.000000, 2.365125, 0.000000;;, - 66;3; 0.000000, 2.365125,-0.000000;;, - 67;3; 0.000000, 2.365126,-0.000000;;, - 68;3;-0.000000, 2.365125, 0.000000;;, - 69;3;-0.000000, 2.365126,-0.000000;;, - 70;3;-0.000000, 2.365125,-0.000000;;, - 71;3;-0.000000, 2.365126,-0.000000;;, - 72;3; 0.000000, 2.365125, 0.000000;;, - 73;3; 0.000000, 2.365125,-0.000000;;, - 74;3; 0.000000, 2.365125, 0.000000;;, - 75;3; 0.000000, 2.365125, 0.000000;;, - 76;3; 0.000000, 2.365125,-0.000000;;, - 77;3; 0.000000, 2.365125,-0.000000;;, - 78;3;-0.000000, 2.365126, 0.000000;;, - 79;3;-0.000000, 2.365126, 0.000000;;, - 80;3; 0.000000, 2.365125,-0.000000;;, - 81;3; 0.000000, 2.365126,-0.000000;;, - 82;3; 0.000000, 2.365125,-0.000000;;, - 83;3;-0.000000, 2.365125,-0.000000;;, - 84;3;-0.000000, 2.365125,-0.000000;;, - 85;3;-0.000000, 2.365125, 0.000000;;, - 86;3; 0.000000, 2.365125, 0.000000;;, - 87;3;-0.000000, 2.365125,-0.000000;;, - 88;3; 0.000000, 2.365126, 0.000000;;, - 89;3;-0.000000, 2.365125,-0.000000;;, - 90;3; 0.000000, 2.365126,-0.000000;;, - 91;3;-0.000000, 2.365125,-0.000000;;, - 92;3;-0.000000, 2.365125, 0.000000;;, - 93;3;-0.000000, 2.365126, 0.000000;;, - 94;3;-0.000000, 2.365125, 0.000000;;, - 95;3; 0.000000, 2.365126,-0.000001;;, - 96;3; 0.000000, 2.365125,-0.000000;;, - 97;3;-0.000000, 2.365126,-0.000000;;, - 98;3;-0.000000, 2.365125,-0.000000;;, - 99;3;-0.000000, 2.365126,-0.000000;;, - 100;3; 0.000000, 2.365125, 0.000000;;, - 101;3;-0.000000, 2.365126,-0.000000;;, - 102;3; 0.000000, 2.365125,-0.000000;;, - 103;3;-0.000000, 2.365126,-0.000000;;, - 104;3; 0.000000, 2.365126,-0.000000;;, - 105;3;-0.000000, 2.365125, 0.000000;;, - 106;3; 0.000000, 2.365126, 0.000000;;, - 107;3;-0.000000, 2.365126, 0.000000;;, - 108;3;-0.000000, 2.365125,-0.000000;;, - 109;3;-0.000000, 2.365126,-0.000000;;, - 110;3; 0.000000, 2.365125,-0.000000;;, - 111;3; 0.000000, 2.365125, 0.000000;;, - 112;3;-0.000000, 2.365125, 0.000000;;, - 113;3; 0.000000, 2.365125,-0.000000;;, - 114;3;-0.000000, 2.365125, 0.000000;;, - 115;3; 0.000000, 2.365126,-0.000000;;, - 116;3; 0.000000, 2.365126,-0.000000;;, - 117;3; 0.000000, 2.365125,-0.000000;;, - 118;3; 0.000000, 2.365125,-0.000000;;, - 119;3; 0.000000, 2.365125,-0.000000;;, - 120;3;-0.000000, 2.365126,-0.000000;;, - 121;3; 0.000000, 2.365126, 0.000000;;, - 122;3;-0.000000, 2.365125,-0.000000;;, - 123;3; 0.000000, 2.365125, 0.000000;;, - 124;3;-0.000000, 2.365125,-0.000000;;, - 125;3;-0.000000, 2.365125,-0.000000;;, - 126;3;-0.000000, 2.365125, 0.000000;;, - 127;3;-0.000000, 2.365126, 0.000000;;, - 128;3; 0.000000, 2.365125,-0.000000;;, - 129;3; 0.000000, 2.365125, 0.000000;;, - 130;3; 0.000000, 2.365125, 0.000000;;, - 131;3;-0.000000, 2.365126,-0.000000;;, - 132;3; 0.000000, 2.365125,-0.000000;;, - 133;3; 0.000000, 2.365125, 0.000000;;, - 134;3;-0.000000, 2.365125, 0.000000;;, - 135;3; 0.000000, 2.365126,-0.000000;;, - 136;3; 0.000000, 2.365125,-0.000000;;, - 137;3; 0.000000, 2.365125,-0.000000;;, - 138;3;-0.000000, 2.365125, 0.000000;;, - 139;3;-0.000000, 2.365126, 0.000000;;, - 140;3; 0.000000, 2.365125,-0.000000;;, - 141;3; 0.000000, 2.365125, 0.000000;;, - 142;3;-0.000000, 2.365125,-0.000000;;, - 143;3;-0.000000, 2.365125,-0.000000;;, - 144;3;-0.000000, 2.365125, 0.000000;;, - 145;3; 0.000000, 2.365126,-0.000000;;, - 146;3; 0.000000, 2.365125, 0.000000;;, - 147;3;-0.000000, 2.365125, 0.000000;;, - 148;3; 0.000000, 2.365125, 0.000000;;, - 149;3; 0.000000, 2.365125,-0.000000;;, - 150;3; 0.000000, 2.365125,-0.000000;;, - 151;3; 0.000000, 2.365125,-0.000000;;, - 152;3; 0.000000, 2.365125,-0.000000;;, - 153;3; 0.000000, 2.365125,-0.000000;;, - 154;3; 0.000000, 2.365125,-0.000000;;, - 155;3; 0.000000, 2.365125,-0.000000;;, - 156;3; 0.000000, 2.365125,-0.000000;;, - 157;3; 0.000000, 2.365125,-0.000000;;, - 158;3; 0.000000, 2.365125,-0.000000;;, - 159;3; 0.000000, 2.365125,-0.000000;;, - 160;3; 0.000000, 2.365125,-0.000000;;, - 161;3; 0.000000, 2.365125,-0.000000;;, - 162;3; 0.000000, 2.365125,-0.000000;;, - 163;3; 0.000000, 2.365125,-0.000000;;, - 164;3; 0.000000, 2.365125,-0.000000;;, - 165;3; 0.000000, 2.365125,-0.000000;;, - 166;3; 0.000000, 2.365125,-0.000000;;, - 167;3; 0.000000, 2.365125,-0.000000;;, - 168;3; 0.000000, 2.365125,-0.000000;;, - 169;3; 0.000000, 2.365125,-0.000000;;, - 170;3; 0.000000, 2.365125,-0.000000;;, - 171;3; 0.000000, 2.365125,-0.000000;;, - 172;3; 0.000000, 2.365125,-0.000000;;, - 173;3; 0.000000, 2.365125,-0.000000;;, - 174;3; 0.000000, 2.365125,-0.000000;;, - 175;3; 0.000000, 2.365125,-0.000000;;, - 176;3; 0.000000, 2.365125,-0.000000;;, - 177;3; 0.000000, 2.365125,-0.000000;;, - 178;3; 0.000000, 2.365125,-0.000000;;, - 179;3; 0.000000, 2.365125,-0.000000;;, - 180;3; 0.000000, 2.365125,-0.000000;;, - 181;3; 0.000000, 2.365125,-0.000000;;, - 182;3; 0.000000, 2.365125,-0.000000;;, - 183;3; 0.000000, 2.365125,-0.000000;;, - 184;3; 0.000000, 2.365125,-0.000000;;, - 185;3; 0.000000, 2.365125,-0.000000;;, - 186;3; 0.000000, 2.365125,-0.000000;;, - 187;3; 0.000000, 2.365125,-0.000000;;, - 188;3; 0.000000, 2.365125,-0.000000;;, - 189;3; 0.000000, 2.365125,-0.000000;;, - 190;3; 0.000000, 2.365125,-0.000000;;, - 191;3; 0.000000, 2.365125,-0.000000;;, - 192;3; 0.000000, 2.365125,-0.000000;;, - 193;3; 0.000000, 2.365125,-0.000000;;, - 194;3; 0.000000, 2.365125,-0.000000;;, - 195;3; 0.000000, 2.365125,-0.000000;;, - 196;3; 0.000000, 2.365125,-0.000000;;, - 197;3; 0.000000, 2.365125,-0.000000;;, - 198;3; 0.000000, 2.365125,-0.000000;;, - 199;3; 0.000000, 2.365125,-0.000000;;, - 200;3; 0.000000, 2.365125,-0.000000;;, - 201;3; 0.000000, 2.365125,-0.000000;;, - 202;3; 0.000000, 2.365125,-0.000000;;, - 203;3; 0.000000, 2.365125,-0.000000;;, - 204;3; 0.000000, 2.365125,-0.000000;;, - 205;3; 0.000000, 2.365125,-0.000000;;, - 206;3; 0.000000, 2.365125,-0.000000;;, - 207;3; 0.000000, 2.365125,-0.000000;;, - 208;3; 0.000000, 2.365125,-0.000000;;, - 209;3; 0.000000, 2.365125,-0.000000;;, - 210;3; 0.000000, 2.365125,-0.000000;;, - 211;3; 0.000000, 2.365125,-0.000000;;, - 212;3; 0.000000, 2.365125,-0.000000;;, - 213;3; 0.000000, 2.365125,-0.000000;;, - 214;3; 0.000000, 2.365125,-0.000000;;, - 215;3; 0.000000, 2.365125,-0.000000;;, - 216;3; 0.000000, 2.365125,-0.000000;;, - 217;3; 0.000000, 2.365125,-0.000000;;, - 218;3; 0.000000, 2.365125,-0.000000;;, - 219;3; 0.000000, 2.365125,-0.000000;;, - 220;3; 0.000000, 2.365125,-0.000000;;, - 221;3; 0.000000, 2.365125,-0.000000;;, - 222;3; 0.000000, 2.365125,-0.000000;;, - 223;3; 0.000000, 2.365125,-0.000000;;, - 224;3; 0.000000, 2.365125,-0.000000;;, - 225;3; 0.000000, 2.365125,-0.000000;;, - 226;3; 0.000000, 2.365125,-0.000000;;, - 227;3; 0.000000, 2.365125,-0.000000;;, - 228;3; 0.000000, 2.365125,-0.000000;;, - 229;3; 0.000000, 2.365125,-0.000000;;, - 230;3; 0.000000, 2.365125,-0.000000;;, - 231;3; 0.000000, 2.365125,-0.000000;;, - 232;3; 0.000000, 2.365125,-0.000000;;, - 233;3; 0.000000, 2.365125,-0.000000;;, - 234;3; 0.000000, 2.365125,-0.000000;;, - 235;3; 0.000000, 2.365125,-0.000000;;, - 236;3; 0.000000, 2.365125,-0.000000;;, - 237;3; 0.000000, 2.365125,-0.000000;;, - 238;3; 0.000000, 2.365125,-0.000000;;, - 239;3; 0.000000, 2.365125,-0.000000;;, - 240;3; 0.000000, 2.365125,-0.000000;;, - 241;3; 0.000000, 2.365125,-0.000000;;, - 242;3; 0.000000, 2.365125,-0.000000;;, - 243;3; 0.000000, 2.365125,-0.000000;;, - 244;3; 0.000000, 2.365125,-0.000000;;, - 245;3; 0.000000, 2.365125,-0.000000;;, - 246;3; 0.000000, 2.365125,-0.000000;;, - 247;3; 0.000000, 2.365125,-0.000000;;, - 248;3; 0.000000, 2.365125,-0.000000;;, - 249;3; 0.000000, 2.365125,-0.000000;;; - } - } - Animation { - {Armature_Bone_004} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 1;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 2;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 3;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 4;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 5;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 6;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 7;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 8;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 9;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 10;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 11;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 12;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 13;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 14;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 15;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 16;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 17;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 18;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 19;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 20;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 21;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 22;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 23;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 24;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 25;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 26;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 27;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 28;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 29;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 30;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 31;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 32;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 33;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 34;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 35;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 36;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 37;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 38;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 39;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 40;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 41;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 42;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 43;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 44;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 45;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 46;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 47;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 48;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 49;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 50;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 51;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 52;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 53;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 54;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 55;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 56;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 57;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 58;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 59;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 60;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 61;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 62;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 63;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 64;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 65;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 66;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 67;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 68;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 69;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 70;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 71;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 72;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 73;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 74;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 75;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 76;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 77;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 78;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 79;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 80;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 81;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 82;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 83;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 84;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 85;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 86;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 87;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 88;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 89;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 90;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 91;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 92;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 93;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 94;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 95;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 96;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 97;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 98;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 99;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 100;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 101;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 102;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 103;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 104;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 105;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 106;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 107;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 108;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 109;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 110;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 111;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 112;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 113;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 114;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 115;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 116;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 117;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 118;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 119;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 120;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 121;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 122;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 123;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 124;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 125;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 126;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 127;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 128;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 129;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 130;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 131;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 132;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 133;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 134;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 135;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 136;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 137;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 138;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 139;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 140;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 141;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 142;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 143;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 144;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 145;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 146;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 147;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 148;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 149;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 150;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 151;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 152;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 153;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 154;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 155;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 156;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 157;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 158;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 159;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 160;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 161;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 162;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 163;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 164;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 165;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 166;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 167;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 168;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 169;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 170;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 171;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 172;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 173;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 174;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 175;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 176;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 177;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 178;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 179;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 180;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 181;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 182;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 183;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 184;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 185;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 186;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 187;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 188;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 189;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 190;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 191;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 192;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 193;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 194;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 195;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 196;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 197;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 198;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 199;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 200;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 201;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 202;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 203;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 204;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 205;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 206;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 207;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 208;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 209;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 210;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 211;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 212;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 213;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 214;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 215;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 216;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 217;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 218;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 219;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 220;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 221;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 222;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 223;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 224;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 225;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 226;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 227;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 228;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 229;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 230;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 231;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 232;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 233;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 234;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 235;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 236;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 237;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 238;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 239;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 240;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 241;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 242;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 243;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 244;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 245;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 246;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 247;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 248;4;-0.892384, 0.000000, 0.000000,-0.451276;;, - 249;4;-0.892384, 0.000000, 0.000000,-0.451276;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3; 0.000000, 0.705560, 0.000000;;, - 1;3; 0.000000, 0.705560, 0.000000;;, - 2;3; 0.000000, 0.705560, 0.000000;;, - 3;3; 0.000000, 0.705560, 0.000000;;, - 4;3; 0.000000, 0.705560, 0.000000;;, - 5;3; 0.000000, 0.705560, 0.000000;;, - 6;3; 0.000000, 0.705560, 0.000000;;, - 7;3; 0.000000, 0.705560, 0.000000;;, - 8;3; 0.000000, 0.705560, 0.000000;;, - 9;3; 0.000000, 0.705560, 0.000000;;, - 10;3; 0.000000, 0.705560, 0.000000;;, - 11;3; 0.000000, 0.705560, 0.000000;;, - 12;3; 0.000000, 0.705560, 0.000000;;, - 13;3; 0.000000, 0.705560, 0.000000;;, - 14;3; 0.000000, 0.705560, 0.000000;;, - 15;3; 0.000000, 0.705560, 0.000000;;, - 16;3; 0.000000, 0.705560, 0.000000;;, - 17;3; 0.000000, 0.705560, 0.000000;;, - 18;3; 0.000000, 0.705560, 0.000000;;, - 19;3; 0.000000, 0.705560, 0.000000;;, - 20;3; 0.000000, 0.705560, 0.000000;;, - 21;3; 0.000000, 0.705560, 0.000000;;, - 22;3; 0.000000, 0.705560, 0.000000;;, - 23;3; 0.000000, 0.705560, 0.000000;;, - 24;3; 0.000000, 0.705560, 0.000000;;, - 25;3; 0.000000, 0.705560, 0.000000;;, - 26;3; 0.000000, 0.705560, 0.000000;;, - 27;3; 0.000000, 0.705560, 0.000000;;, - 28;3; 0.000000, 0.705560, 0.000000;;, - 29;3; 0.000000, 0.705560, 0.000000;;, - 30;3; 0.000000, 0.705560, 0.000000;;, - 31;3; 0.000000, 0.705560, 0.000000;;, - 32;3; 0.000000, 0.705560, 0.000000;;, - 33;3; 0.000000, 0.705560, 0.000000;;, - 34;3; 0.000000, 0.705560, 0.000000;;, - 35;3; 0.000000, 0.705560, 0.000000;;, - 36;3; 0.000000, 0.705560, 0.000000;;, - 37;3; 0.000000, 0.705560, 0.000000;;, - 38;3; 0.000000, 0.705560, 0.000000;;, - 39;3; 0.000000, 0.705560, 0.000000;;, - 40;3; 0.000000, 0.705560, 0.000000;;, - 41;3; 0.000000, 0.705559, 0.000000;;, - 42;3;-0.000000, 0.705560, 0.000000;;, - 43;3; 0.000000, 0.705560,-0.000000;;, - 44;3; 0.000000, 0.705560, 0.000000;;, - 45;3; 0.000000, 0.705560,-0.000000;;, - 46;3; 0.000000, 0.705559, 0.000000;;, - 47;3;-0.000000, 0.705560, 0.000000;;, - 48;3; 0.000000, 0.705560,-0.000000;;, - 49;3; 0.000000, 0.705560, 0.000000;;, - 50;3;-0.000000, 0.705559, 0.000000;;, - 51;3; 0.000000, 0.705560,-0.000000;;, - 52;3;-0.000000, 0.705560, 0.000000;;, - 53;3; 0.000000, 0.705560,-0.000000;;, - 54;3; 0.000000, 0.705560, 0.000000;;, - 55;3; 0.000000, 0.705560,-0.000000;;, - 56;3;-0.000000, 0.705560, 0.000000;;, - 57;3; 0.000000, 0.705559, 0.000000;;, - 58;3;-0.000000, 0.705560, 0.000000;;, - 59;3; 0.000000, 0.705560, 0.000000;;, - 60;3; 0.000000, 0.705560,-0.000000;;, - 61;3; 0.000000, 0.705560, 0.000000;;, - 62;3; 0.000000, 0.705560, 0.000000;;, - 63;3; 0.000000, 0.705560, 0.000000;;, - 64;3; 0.000000, 0.705560,-0.000000;;, - 65;3;-0.000000, 0.705560, 0.000000;;, - 66;3; 0.000000, 0.705560, 0.000000;;, - 67;3;-0.000000, 0.705560, 0.000000;;, - 68;3; 0.000000, 0.705559, 0.000000;;, - 69;3; 0.000000, 0.705560, 0.000000;;, - 70;3; 0.000000, 0.705560, 0.000000;;, - 71;3;-0.000000, 0.705560, 0.000000;;, - 72;3;-0.000000, 0.705560, 0.000000;;, - 73;3;-0.000000, 0.705560, 0.000000;;, - 74;3;-0.000000, 0.705560, 0.000000;;, - 75;3;-0.000000, 0.705560, 0.000000;;, - 76;3; 0.000000, 0.705559, 0.000000;;, - 77;3;-0.000000, 0.705560, 0.000000;;, - 78;3; 0.000000, 0.705560, 0.000000;;, - 79;3;-0.000000, 0.705559, 0.000000;;, - 80;3; 0.000000, 0.705560, 0.000000;;, - 81;3;-0.000000, 0.705560, 0.000000;;, - 82;3; 0.000000, 0.705560, 0.000000;;, - 83;3; 0.000000, 0.705560, 0.000000;;, - 84;3; 0.000000, 0.705560,-0.000000;;, - 85;3;-0.000000, 0.705560, 0.000000;;, - 86;3;-0.000000, 0.705560, 0.000000;;, - 87;3; 0.000000, 0.705560,-0.000000;;, - 88;3; 0.000000, 0.705560, 0.000000;;, - 89;3; 0.000000, 0.705560, 0.000000;;, - 90;3; 0.000000, 0.705560, 0.000000;;, - 91;3; 0.000000, 0.705560, 0.000000;;, - 92;3; 0.000000, 0.705560, 0.000000;;, - 93;3; 0.000000, 0.705560, 0.000000;;, - 94;3; 0.000000, 0.705560, 0.000000;;, - 95;3; 0.000000, 0.705560, 0.000000;;, - 96;3; 0.000000, 0.705560,-0.000000;;, - 97;3; 0.000000, 0.705560,-0.000000;;, - 98;3; 0.000000, 0.705560, 0.000000;;, - 99;3; 0.000000, 0.705560, 0.000000;;, - 100;3;-0.000000, 0.705560,-0.000000;;, - 101;3; 0.000000, 0.705560,-0.000000;;, - 102;3; 0.000000, 0.705559, 0.000000;;, - 103;3;-0.000000, 0.705560,-0.000000;;, - 104;3;-0.000000, 0.705559,-0.000000;;, - 105;3;-0.000000, 0.705560,-0.000000;;, - 106;3; 0.000000, 0.705560, 0.000000;;, - 107;3;-0.000000, 0.705559,-0.000000;;, - 108;3; 0.000000, 0.705560,-0.000000;;, - 109;3; 0.000000, 0.705559,-0.000000;;, - 110;3;-0.000000, 0.705559, 0.000000;;, - 111;3; 0.000000, 0.705560,-0.000000;;, - 112;3; 0.000000, 0.705560, 0.000000;;, - 113;3; 0.000000, 0.705560,-0.000000;;, - 114;3;-0.000000, 0.705559, 0.000000;;, - 115;3; 0.000000, 0.705560, 0.000000;;, - 116;3;-0.000000, 0.705560,-0.000000;;, - 117;3; 0.000000, 0.705560, 0.000000;;, - 118;3; 0.000000, 0.705560,-0.000000;;, - 119;3; 0.000000, 0.705560, 0.000000;;, - 120;3; 0.000000, 0.705560,-0.000000;;, - 121;3; 0.000000, 0.705560,-0.000000;;, - 122;3;-0.000000, 0.705560,-0.000000;;, - 123;3; 0.000000, 0.705560, 0.000000;;, - 124;3; 0.000000, 0.705560, 0.000000;;, - 125;3; 0.000000, 0.705560, 0.000000;;, - 126;3;-0.000000, 0.705560, 0.000000;;, - 127;3;-0.000000, 0.705560, 0.000000;;, - 128;3;-0.000000, 0.705560,-0.000000;;, - 129;3; 0.000000, 0.705560, 0.000000;;, - 130;3; 0.000000, 0.705559, 0.000000;;, - 131;3; 0.000000, 0.705560, 0.000000;;, - 132;3; 0.000000, 0.705560, 0.000000;;, - 133;3; 0.000000, 0.705560,-0.000000;;, - 134;3; 0.000000, 0.705560, 0.000000;;, - 135;3; 0.000000, 0.705560, 0.000000;;, - 136;3;-0.000000, 0.705560,-0.000000;;, - 137;3; 0.000000, 0.705560, 0.000000;;, - 138;3;-0.000000, 0.705559, 0.000000;;, - 139;3;-0.000000, 0.705560,-0.000000;;, - 140;3; 0.000000, 0.705560, 0.000000;;, - 141;3; 0.000000, 0.705560, 0.000000;;, - 142;3; 0.000000, 0.705560, 0.000000;;, - 143;3; 0.000000, 0.705560,-0.000000;;, - 144;3; 0.000000, 0.705560, 0.000000;;, - 145;3; 0.000000, 0.705560,-0.000000;;, - 146;3; 0.000000, 0.705560, 0.000000;;, - 147;3; 0.000000, 0.705560,-0.000000;;, - 148;3; 0.000000, 0.705560, 0.000000;;, - 149;3; 0.000000, 0.705560, 0.000000;;, - 150;3; 0.000000, 0.705560, 0.000000;;, - 151;3; 0.000000, 0.705560, 0.000000;;, - 152;3; 0.000000, 0.705560, 0.000000;;, - 153;3; 0.000000, 0.705560, 0.000000;;, - 154;3; 0.000000, 0.705560, 0.000000;;, - 155;3; 0.000000, 0.705560, 0.000000;;, - 156;3; 0.000000, 0.705560, 0.000000;;, - 157;3; 0.000000, 0.705560, 0.000000;;, - 158;3; 0.000000, 0.705560, 0.000000;;, - 159;3; 0.000000, 0.705560, 0.000000;;, - 160;3; 0.000000, 0.705560, 0.000000;;, - 161;3; 0.000000, 0.705560, 0.000000;;, - 162;3; 0.000000, 0.705560, 0.000000;;, - 163;3; 0.000000, 0.705560, 0.000000;;, - 164;3; 0.000000, 0.705560, 0.000000;;, - 165;3; 0.000000, 0.705560, 0.000000;;, - 166;3; 0.000000, 0.705560, 0.000000;;, - 167;3; 0.000000, 0.705560, 0.000000;;, - 168;3; 0.000000, 0.705560, 0.000000;;, - 169;3; 0.000000, 0.705560, 0.000000;;, - 170;3; 0.000000, 0.705560, 0.000000;;, - 171;3; 0.000000, 0.705560, 0.000000;;, - 172;3; 0.000000, 0.705560, 0.000000;;, - 173;3; 0.000000, 0.705560, 0.000000;;, - 174;3; 0.000000, 0.705560, 0.000000;;, - 175;3; 0.000000, 0.705560, 0.000000;;, - 176;3; 0.000000, 0.705560, 0.000000;;, - 177;3; 0.000000, 0.705560, 0.000000;;, - 178;3; 0.000000, 0.705560, 0.000000;;, - 179;3; 0.000000, 0.705560, 0.000000;;, - 180;3; 0.000000, 0.705560, 0.000000;;, - 181;3; 0.000000, 0.705560, 0.000000;;, - 182;3; 0.000000, 0.705560, 0.000000;;, - 183;3; 0.000000, 0.705560, 0.000000;;, - 184;3; 0.000000, 0.705560, 0.000000;;, - 185;3; 0.000000, 0.705560, 0.000000;;, - 186;3; 0.000000, 0.705560, 0.000000;;, - 187;3; 0.000000, 0.705560, 0.000000;;, - 188;3; 0.000000, 0.705560, 0.000000;;, - 189;3; 0.000000, 0.705560, 0.000000;;, - 190;3; 0.000000, 0.705560, 0.000000;;, - 191;3; 0.000000, 0.705560, 0.000000;;, - 192;3; 0.000000, 0.705560, 0.000000;;, - 193;3; 0.000000, 0.705560, 0.000000;;, - 194;3; 0.000000, 0.705560, 0.000000;;, - 195;3; 0.000000, 0.705560, 0.000000;;, - 196;3; 0.000000, 0.705560, 0.000000;;, - 197;3; 0.000000, 0.705560, 0.000000;;, - 198;3; 0.000000, 0.705560, 0.000000;;, - 199;3; 0.000000, 0.705560, 0.000000;;, - 200;3; 0.000000, 0.705560, 0.000000;;, - 201;3; 0.000000, 0.705560, 0.000000;;, - 202;3; 0.000000, 0.705560, 0.000000;;, - 203;3; 0.000000, 0.705560, 0.000000;;, - 204;3; 0.000000, 0.705560, 0.000000;;, - 205;3; 0.000000, 0.705560, 0.000000;;, - 206;3; 0.000000, 0.705560, 0.000000;;, - 207;3; 0.000000, 0.705560, 0.000000;;, - 208;3; 0.000000, 0.705560, 0.000000;;, - 209;3; 0.000000, 0.705560, 0.000000;;, - 210;3; 0.000000, 0.705560, 0.000000;;, - 211;3; 0.000000, 0.705560, 0.000000;;, - 212;3; 0.000000, 0.705560, 0.000000;;, - 213;3; 0.000000, 0.705560, 0.000000;;, - 214;3; 0.000000, 0.705560, 0.000000;;, - 215;3; 0.000000, 0.705560, 0.000000;;, - 216;3; 0.000000, 0.705560, 0.000000;;, - 217;3; 0.000000, 0.705560, 0.000000;;, - 218;3; 0.000000, 0.705560, 0.000000;;, - 219;3; 0.000000, 0.705560, 0.000000;;, - 220;3; 0.000000, 0.705560, 0.000000;;, - 221;3; 0.000000, 0.705560, 0.000000;;, - 222;3; 0.000000, 0.705560, 0.000000;;, - 223;3; 0.000000, 0.705560, 0.000000;;, - 224;3; 0.000000, 0.705560, 0.000000;;, - 225;3; 0.000000, 0.705560, 0.000000;;, - 226;3; 0.000000, 0.705560, 0.000000;;, - 227;3; 0.000000, 0.705560, 0.000000;;, - 228;3; 0.000000, 0.705560, 0.000000;;, - 229;3; 0.000000, 0.705560, 0.000000;;, - 230;3; 0.000000, 0.705560, 0.000000;;, - 231;3; 0.000000, 0.705560, 0.000000;;, - 232;3; 0.000000, 0.705560, 0.000000;;, - 233;3; 0.000000, 0.705560, 0.000000;;, - 234;3; 0.000000, 0.705560, 0.000000;;, - 235;3; 0.000000, 0.705560, 0.000000;;, - 236;3; 0.000000, 0.705560, 0.000000;;, - 237;3; 0.000000, 0.705560, 0.000000;;, - 238;3; 0.000000, 0.705560, 0.000000;;, - 239;3; 0.000000, 0.705560, 0.000000;;, - 240;3; 0.000000, 0.705560, 0.000000;;, - 241;3; 0.000000, 0.705560, 0.000000;;, - 242;3; 0.000000, 0.705560, 0.000000;;, - 243;3; 0.000000, 0.705560, 0.000000;;, - 244;3; 0.000000, 0.705560, 0.000000;;, - 245;3; 0.000000, 0.705560, 0.000000;;, - 246;3; 0.000000, 0.705560, 0.000000;;, - 247;3; 0.000000, 0.705560, 0.000000;;, - 248;3; 0.000000, 0.705560, 0.000000;;, - 249;3; 0.000000, 0.705560, 0.000000;;; - } - } - Animation { - {Armature_Bone_028} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.718397,-0.529392,-0.267712, 0.363291;;, - 1;4;-0.718379,-0.529416,-0.267724, 0.363282;;, - 2;4;-0.718327,-0.529486,-0.267760, 0.363256;;, - 3;4;-0.718239,-0.529605,-0.267820, 0.363211;;, - 4;4;-0.718117,-0.529770,-0.267903, 0.363149;;, - 5;4;-0.717961,-0.529980,-0.268009, 0.363071;;, - 6;4;-0.717777,-0.530229,-0.268135, 0.362978;;, - 7;4;-0.717567,-0.530512,-0.268279, 0.362871;;, - 8;4;-0.717337,-0.530822,-0.268435, 0.362755;;, - 9;4;-0.717096,-0.531147,-0.268600, 0.362633;;, - 10;4;-0.716851,-0.531479,-0.268767, 0.362509;;, - 11;4;-0.716609,-0.531804,-0.268932, 0.362387;;, - 12;4;-0.716380,-0.532114,-0.269088, 0.362271;;, - 13;4;-0.716170,-0.532397,-0.269232, 0.362165;;, - 14;4;-0.715985,-0.532646,-0.269358, 0.362072;;, - 15;4;-0.715830,-0.532856,-0.269464, 0.361993;;, - 16;4;-0.715708,-0.533021,-0.269547, 0.361931;;, - 17;4;-0.715620,-0.533140,-0.269607, 0.361887;;, - 18;4;-0.715567,-0.533210,-0.269643, 0.361860;;, - 19;4;-0.715550,-0.533234,-0.269655, 0.361852;;, - 20;4;-0.715550,-0.533234,-0.269655, 0.361852;;, - 21;4;-0.715552,-0.533231,-0.269653, 0.361852;;, - 22;4;-0.715557,-0.533224,-0.269650, 0.361855;;, - 23;4;-0.715568,-0.533210,-0.269643, 0.361860;;, - 24;4;-0.715586,-0.533185,-0.269630, 0.361870;;, - 25;4;-0.715616,-0.533145,-0.269610, 0.361885;;, - 26;4;-0.715659,-0.533086,-0.269580, 0.361907;;, - 27;4;-0.715720,-0.533004,-0.269539, 0.361938;;, - 28;4;-0.715801,-0.532894,-0.269483, 0.361979;;, - 29;4;-0.715906,-0.532754,-0.269412, 0.362031;;, - 30;4;-0.716036,-0.532578,-0.269323, 0.362097;;, - 31;4;-0.716193,-0.532367,-0.269216, 0.362177;;, - 32;4;-0.716378,-0.532117,-0.269090, 0.362270;;, - 33;4;-0.716591,-0.531830,-0.268945, 0.362378;;, - 34;4;-0.716831,-0.531505,-0.268780, 0.362499;;, - 35;4;-0.717098,-0.531145,-0.268598, 0.362634;;, - 36;4;-0.717390,-0.530751,-0.268399, 0.362782;;, - 37;4;-0.717705,-0.530326,-0.268184, 0.362941;;, - 38;4;-0.718041,-0.529872,-0.267955, 0.363111;;, - 39;4;-0.718397,-0.529392,-0.267712, 0.363291;;, - 40;4;-0.719670,-0.524636,-0.264637, 0.362548;;, - 41;4;-0.722781,-0.511278,-0.255800, 0.359927;;, - 42;4;-0.727736,-0.489324,-0.241098, 0.355418;;, - 43;4;-0.734503,-0.458966,-0.220534, 0.349050;;, - 44;4;-0.743001,-0.420638,-0.194246, 0.340903;;, - 45;4;-0.753089,-0.375054,-0.162539, 0.331114;;, - 46;4;-0.764560,-0.323246,-0.125914, 0.319889;;, - 47;4;-0.777140,-0.266564,-0.085076, 0.307503;;, - 48;4;-0.790494,-0.206647,-0.040927, 0.294292;;, - 49;4;-0.804237,-0.145353, 0.005472, 0.280643;;, - 50;4;-0.817960,-0.084652, 0.052955, 0.266971;;, - 51;4;-0.831254,-0.026495, 0.100330, 0.253689;;, - 52;4;-0.843737, 0.027305, 0.146451, 0.241187;;, - 53;4;-0.855075, 0.075178, 0.190290, 0.229805;;, - 54;4;-0.864997, 0.115862, 0.230980, 0.219820;;, - 55;4;-0.873299, 0.148424, 0.267840, 0.211442;;, - 56;4;-0.879845, 0.172249, 0.300379, 0.204814;;, - 57;4;-0.884557, 0.187006, 0.328274, 0.200017;;, - 58;4;-0.887405, 0.192596, 0.351350, 0.197085;;, - 59;4;-0.888399, 0.189101, 0.369552, 0.196012;;, - 60;4;-0.886826, 0.168511, 0.381946, 0.196626;;, - 61;4;-0.881936, 0.122676, 0.387343, 0.198788;;, - 62;4;-0.873934, 0.053392, 0.385757, 0.202405;;, - 63;4;-0.863439,-0.034321, 0.377932, 0.207191;;, - 64;4;-0.851532,-0.131891, 0.365518, 0.212648;;, - 65;4;-0.839614,-0.228353, 0.350915, 0.218127;;, - 66;4;-0.829087,-0.312856, 0.336741, 0.222975;;, - 67;4;-0.821036,-0.377116, 0.325220, 0.226689;;, - 68;4;-0.816083,-0.416485, 0.317832, 0.228976;;, - 69;4;-0.814436,-0.429532, 0.315308, 0.229736;;, - 70;4;-0.814618,-0.428148, 0.315693, 0.229652;;, - 71;4;-0.815168,-0.423966, 0.316846, 0.229395;;, - 72;4;-0.816087,-0.416952, 0.318755, 0.228967;;, - 73;4;-0.817377,-0.407093, 0.321400, 0.228366;;, - 74;4;-0.819035,-0.394400, 0.324753, 0.227594;;, - 75;4;-0.821054,-0.378913, 0.328772, 0.226654;;, - 76;4;-0.823420,-0.360708, 0.333405, 0.225553;;, - 77;4;-0.826118,-0.339898, 0.338583, 0.224299;;, - 78;4;-0.829125,-0.316641, 0.344226, 0.222902;;, - 79;4;-0.832410,-0.291137, 0.350238, 0.221377;;, - 80;4;-0.835940,-0.263634, 0.356510, 0.219739;;, - 81;4;-0.839673,-0.234424, 0.362920, 0.218009;;, - 82;4;-0.843564,-0.203840, 0.369336, 0.216208;;, - 83;4;-0.847561,-0.172247, 0.375620, 0.214360;;, - 84;4;-0.851611,-0.140038, 0.381629, 0.212490;;, - 85;4;-0.855660,-0.107619, 0.387222, 0.210625;;, - 86;4;-0.859651,-0.075397, 0.392262, 0.208789;;, - 87;4;-0.863531,-0.043772, 0.396621, 0.207008;;, - 88;4;-0.867250,-0.013123, 0.400184, 0.205306;;, - 89;4;-0.870762, 0.016203, 0.402850, 0.203704;;, - 90;4;-0.874027, 0.043895, 0.404536, 0.202221;;, - 91;4;-0.877008, 0.069683, 0.405174, 0.200873;;, - 92;4;-0.879678, 0.093344, 0.404714, 0.199674;;, - 93;4;-0.882014, 0.114696, 0.403123, 0.198634;;, - 94;4;-0.883999, 0.133602, 0.400381, 0.197760;;, - 95;4;-0.885621, 0.149962, 0.396483, 0.197059;;, - 96;4;-0.886873, 0.163713, 0.391433, 0.196533;;, - 97;4;-0.887753, 0.174821, 0.385246, 0.196184;;, - 98;4;-0.888260, 0.183279, 0.377943, 0.196011;;, - 99;4;-0.888399, 0.189101, 0.369552, 0.196012;;, - 100;4;-0.887421, 0.189349, 0.357720, 0.197015;;, - 101;4;-0.884554, 0.180955, 0.340035, 0.199871;;, - 102;4;-0.879790, 0.163860, 0.316515, 0.204586;;, - 103;4;-0.873161, 0.138178, 0.287311, 0.211131;;, - 104;4;-0.864748, 0.104252, 0.252739, 0.219424;;, - 105;4;-0.854695, 0.062695, 0.213314, 0.229326;;, - 106;4;-0.843210, 0.014424, 0.169764, 0.240629;;, - 107;4;-0.830574,-0.039326, 0.123038, 0.253060;;, - 108;4;-0.817129,-0.097029, 0.074282, 0.266281;;, - 109;4;-0.803268,-0.156930, 0.024787, 0.279907;;, - 110;4;-0.789411,-0.217147,-0.024084, 0.293527;;, - 111;4;-0.775976,-0.275787,-0.070986, 0.306730;;, - 112;4;-0.763355,-0.331074,-0.114673, 0.319131;;, - 113;4;-0.751890,-0.381442,-0.154076, 0.330394;;, - 114;4;-0.741862,-0.425612,-0.188336, 0.340245;;, - 115;4;-0.733480,-0.462612,-0.216828, 0.348478;;, - 116;4;-0.726885,-0.491775,-0.239147, 0.354956;;, - 117;4;-0.722158,-0.512707,-0.255081, 0.359597;;, - 118;4;-0.719332,-0.525241,-0.264578, 0.362373;;, - 119;4;-0.718397,-0.529392,-0.267712, 0.363291;;, - 120;4;-0.724350,-0.519999,-0.262962, 0.366302;;, - 121;4;-0.741119,-0.493542,-0.249583, 0.374782;;, - 122;4;-0.762651,-0.459571,-0.232404, 0.385670;;, - 123;4;-0.779420,-0.433114,-0.219024, 0.394150;;, - 124;4;-0.785373,-0.423721,-0.214274, 0.397161;;, - 125;4;-0.785373,-0.423721,-0.214274, 0.397161;;, - 126;4;-0.785373,-0.423721,-0.214274, 0.397161;;, - 127;4;-0.785373,-0.423721,-0.214274, 0.397161;;, - 128;4;-0.785373,-0.423721,-0.214274, 0.397161;;, - 129;4;-0.785373,-0.423721,-0.214274, 0.397161;;, - 130;4;-0.785373,-0.423721,-0.214274, 0.397161;;, - 131;4;-0.785373,-0.423721,-0.214274, 0.397161;;, - 132;4;-0.785373,-0.423721,-0.214274, 0.397161;;, - 133;4;-0.785373,-0.423721,-0.214274, 0.397161;;, - 134;4;-0.785373,-0.423721,-0.214274, 0.397161;;, - 135;4;-0.785373,-0.423721,-0.214274, 0.397161;;, - 136;4;-0.785373,-0.423721,-0.214274, 0.397161;;, - 137;4;-0.785373,-0.423721,-0.214274, 0.397161;;, - 138;4;-0.785373,-0.423721,-0.214274, 0.397161;;, - 139;4;-0.785373,-0.423721,-0.214274, 0.397161;;, - 140;4;-0.785373,-0.423721,-0.214274, 0.397161;;, - 141;4;-0.785373,-0.423721,-0.214274, 0.397161;;, - 142;4;-0.785373,-0.423721,-0.214274, 0.397161;;, - 143;4;-0.785373,-0.423721,-0.214274, 0.397161;;, - 144;4;-0.785373,-0.423721,-0.214274, 0.397161;;, - 145;4;-0.779420,-0.433114,-0.219024, 0.394150;;, - 146;4;-0.762651,-0.459571,-0.232404, 0.385670;;, - 147;4;-0.741119,-0.493542,-0.249583, 0.374782;;, - 148;4;-0.724350,-0.519999,-0.262962, 0.366302;;, - 149;4;-0.718397,-0.529392,-0.267712, 0.363291;;, - 150;4;-0.718397,-0.529392,-0.267712, 0.363291;;, - 151;4;-0.718397,-0.529392,-0.267712, 0.363291;;, - 152;4;-0.718397,-0.529392,-0.267712, 0.363291;;, - 153;4;-0.718397,-0.529392,-0.267712, 0.363291;;, - 154;4;-0.718397,-0.529392,-0.267712, 0.363291;;, - 155;4;-0.718397,-0.529392,-0.267712, 0.363291;;, - 156;4;-0.718397,-0.529392,-0.267712, 0.363291;;, - 157;4;-0.718397,-0.529392,-0.267712, 0.363291;;, - 158;4;-0.718397,-0.529392,-0.267712, 0.363291;;, - 159;4;-0.718397,-0.529392,-0.267712, 0.363291;;, - 160;4;-0.718397,-0.529392,-0.267712, 0.363291;;, - 161;4;-0.718397,-0.529392,-0.267712, 0.363291;;, - 162;4;-0.718397,-0.529392,-0.267712, 0.363291;;, - 163;4;-0.718397,-0.529392,-0.267712, 0.363291;;, - 164;4;-0.718397,-0.529392,-0.267712, 0.363291;;, - 165;4;-0.718397,-0.529392,-0.267712, 0.363291;;, - 166;4;-0.718397,-0.529392,-0.267712, 0.363291;;, - 167;4;-0.718397,-0.529392,-0.267712, 0.363291;;, - 168;4;-0.718397,-0.529392,-0.267712, 0.363291;;, - 169;4;-0.718397,-0.529392,-0.267712, 0.363291;;, - 170;4;-0.718397,-0.529392,-0.267712, 0.363291;;, - 171;4;-0.718397,-0.529392,-0.267712, 0.363291;;, - 172;4;-0.718397,-0.529392,-0.267712, 0.363291;;, - 173;4;-0.718397,-0.529392,-0.267712, 0.363291;;, - 174;4;-0.718397,-0.529392,-0.267712, 0.363291;;, - 175;4;-0.718397,-0.529392,-0.267712, 0.363291;;, - 176;4;-0.718397,-0.529392,-0.267712, 0.363291;;, - 177;4;-0.718397,-0.529392,-0.267712, 0.363291;;, - 178;4;-0.718397,-0.529392,-0.267712, 0.363291;;, - 179;4;-0.718397,-0.529392,-0.267712, 0.363291;;, - 180;4;-0.718397,-0.529392,-0.267712, 0.363291;;, - 181;4;-0.718397,-0.529392,-0.267712, 0.363291;;, - 182;4;-0.718397,-0.529392,-0.267712, 0.363291;;, - 183;4;-0.718397,-0.529392,-0.267712, 0.363291;;, - 184;4;-0.718397,-0.529392,-0.267712, 0.363291;;, - 185;4;-0.718397,-0.529392,-0.267712, 0.363291;;, - 186;4;-0.718397,-0.529392,-0.267712, 0.363291;;, - 187;4;-0.718397,-0.529392,-0.267712, 0.363291;;, - 188;4;-0.718397,-0.529392,-0.267712, 0.363291;;, - 189;4;-0.718397,-0.529392,-0.267712, 0.363291;;, - 190;4;-0.718397,-0.529392,-0.267712, 0.363291;;, - 191;4;-0.718397,-0.529392,-0.267712, 0.363291;;, - 192;4;-0.718397,-0.529392,-0.267712, 0.363291;;, - 193;4;-0.718397,-0.529392,-0.267712, 0.363291;;, - 194;4;-0.718397,-0.529392,-0.267712, 0.363291;;, - 195;4;-0.718397,-0.529392,-0.267712, 0.363291;;, - 196;4;-0.718397,-0.529392,-0.267712, 0.363291;;, - 197;4;-0.718397,-0.529392,-0.267712, 0.363291;;, - 198;4;-0.718397,-0.529392,-0.267712, 0.363291;;, - 199;4;-0.718397,-0.529392,-0.267712, 0.363291;;, - 200;4;-0.718397,-0.529392,-0.267712, 0.363291;;, - 201;4;-0.718397,-0.529392,-0.267712, 0.363291;;, - 202;4;-0.718397,-0.529392,-0.267712, 0.363291;;, - 203;4;-0.718397,-0.529392,-0.267712, 0.363291;;, - 204;4;-0.718397,-0.529392,-0.267712, 0.363291;;, - 205;4;-0.718397,-0.529392,-0.267712, 0.363291;;, - 206;4;-0.718397,-0.529392,-0.267712, 0.363291;;, - 207;4;-0.718397,-0.529392,-0.267712, 0.363291;;, - 208;4;-0.718397,-0.529392,-0.267712, 0.363291;;, - 209;4;-0.718397,-0.529392,-0.267712, 0.363291;;, - 210;4;-0.718397,-0.529392,-0.267712, 0.363291;;, - 211;4;-0.718397,-0.529392,-0.267712, 0.363291;;, - 212;4;-0.718397,-0.529392,-0.267712, 0.363291;;, - 213;4;-0.718397,-0.529392,-0.267712, 0.363291;;, - 214;4;-0.718397,-0.529392,-0.267712, 0.363291;;, - 215;4;-0.718397,-0.529392,-0.267712, 0.363291;;, - 216;4;-0.718397,-0.529392,-0.267712, 0.363291;;, - 217;4;-0.718397,-0.529392,-0.267712, 0.363291;;, - 218;4;-0.718397,-0.529392,-0.267712, 0.363291;;, - 219;4;-0.718397,-0.529392,-0.267712, 0.363291;;, - 220;4;-0.718397,-0.529392,-0.267712, 0.363291;;, - 221;4;-0.718397,-0.529392,-0.267712, 0.363291;;, - 222;4;-0.718397,-0.529392,-0.267712, 0.363291;;, - 223;4;-0.718397,-0.529392,-0.267712, 0.363291;;, - 224;4;-0.718397,-0.529392,-0.267712, 0.363291;;, - 225;4;-0.718397,-0.529392,-0.267712, 0.363291;;, - 226;4;-0.718397,-0.529392,-0.267712, 0.363291;;, - 227;4;-0.718397,-0.529392,-0.267712, 0.363291;;, - 228;4;-0.718397,-0.529392,-0.267712, 0.363291;;, - 229;4;-0.718397,-0.529392,-0.267712, 0.363291;;, - 230;4;-0.718397,-0.529392,-0.267712, 0.363291;;, - 231;4;-0.718397,-0.529392,-0.267712, 0.363291;;, - 232;4;-0.718397,-0.529392,-0.267712, 0.363291;;, - 233;4;-0.718397,-0.529392,-0.267712, 0.363291;;, - 234;4;-0.718397,-0.529392,-0.267712, 0.363291;;, - 235;4;-0.718397,-0.529392,-0.267712, 0.363291;;, - 236;4;-0.718397,-0.529392,-0.267712, 0.363291;;, - 237;4;-0.718397,-0.529392,-0.267712, 0.363291;;, - 238;4;-0.718397,-0.529392,-0.267712, 0.363291;;, - 239;4;-0.718397,-0.529392,-0.267712, 0.363291;;, - 240;4;-0.718397,-0.529392,-0.267712, 0.363291;;, - 241;4;-0.718397,-0.529392,-0.267712, 0.363291;;, - 242;4;-0.718397,-0.529392,-0.267712, 0.363291;;, - 243;4;-0.718397,-0.529392,-0.267712, 0.363291;;, - 244;4;-0.718397,-0.529392,-0.267712, 0.363291;;, - 245;4;-0.718397,-0.529392,-0.267712, 0.363291;;, - 246;4;-0.718397,-0.529392,-0.267712, 0.363291;;, - 247;4;-0.718397,-0.529392,-0.267712, 0.363291;;, - 248;4;-0.718397,-0.529392,-0.267712, 0.363291;;, - 249;4;-0.718397,-0.529392,-0.267712, 0.363291;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3; 0.000000, 0.939853, 0.000000;;, - 1;3; 0.000000, 0.939853, 0.000000;;, - 2;3; 0.000000, 0.939853, 0.000000;;, - 3;3; 0.000000, 0.939853, 0.000000;;, - 4;3; 0.000000, 0.939853, 0.000000;;, - 5;3; 0.000000, 0.939853, 0.000000;;, - 6;3; 0.000000, 0.939853, 0.000000;;, - 7;3; 0.000000, 0.939853, 0.000000;;, - 8;3; 0.000000, 0.939853, 0.000000;;, - 9;3; 0.000000, 0.939853, 0.000000;;, - 10;3; 0.000000, 0.939853, 0.000000;;, - 11;3; 0.000000, 0.939853, 0.000000;;, - 12;3; 0.000000, 0.939853, 0.000000;;, - 13;3; 0.000000, 0.939853, 0.000000;;, - 14;3; 0.000000, 0.939853, 0.000000;;, - 15;3; 0.000000, 0.939853, 0.000000;;, - 16;3; 0.000000, 0.939853, 0.000000;;, - 17;3; 0.000000, 0.939853, 0.000000;;, - 18;3; 0.000000, 0.939853, 0.000000;;, - 19;3; 0.000000, 0.939853, 0.000000;;, - 20;3; 0.000000, 0.939853, 0.000000;;, - 21;3; 0.000000, 0.939853, 0.000000;;, - 22;3; 0.000000, 0.939853, 0.000000;;, - 23;3; 0.000000, 0.939853, 0.000000;;, - 24;3; 0.000000, 0.939853, 0.000000;;, - 25;3; 0.000000, 0.939853, 0.000000;;, - 26;3; 0.000000, 0.939853, 0.000000;;, - 27;3; 0.000000, 0.939853, 0.000000;;, - 28;3; 0.000000, 0.939853, 0.000000;;, - 29;3; 0.000000, 0.939853, 0.000000;;, - 30;3; 0.000000, 0.939853, 0.000000;;, - 31;3; 0.000000, 0.939853, 0.000000;;, - 32;3; 0.000000, 0.939853, 0.000000;;, - 33;3; 0.000000, 0.939853, 0.000000;;, - 34;3; 0.000000, 0.939853, 0.000000;;, - 35;3; 0.000000, 0.939853, 0.000000;;, - 36;3; 0.000000, 0.939853, 0.000000;;, - 37;3; 0.000000, 0.939853, 0.000000;;, - 38;3; 0.000000, 0.939853, 0.000000;;, - 39;3; 0.000000, 0.939853, 0.000000;;, - 40;3;-0.000000, 0.939853, 0.000000;;, - 41;3;-0.000000, 0.939853,-0.000000;;, - 42;3; 0.000000, 0.939853,-0.000000;;, - 43;3;-0.000000, 0.939853, 0.000000;;, - 44;3; 0.000000, 0.939853, 0.000000;;, - 45;3;-0.000000, 0.939853,-0.000000;;, - 46;3; 0.000000, 0.939853,-0.000000;;, - 47;3;-0.000000, 0.939853, 0.000000;;, - 48;3; 0.000000, 0.939853, 0.000000;;, - 49;3;-0.000000, 0.939853,-0.000000;;, - 50;3;-0.000000, 0.939853, 0.000000;;, - 51;3;-0.000000, 0.939853, 0.000000;;, - 52;3; 0.000000, 0.939853,-0.000000;;, - 53;3;-0.000000, 0.939853,-0.000000;;, - 54;3; 0.000000, 0.939853,-0.000000;;, - 55;3;-0.000000, 0.939853, 0.000000;;, - 56;3;-0.000000, 0.939853, 0.000000;;, - 57;3;-0.000000, 0.939853,-0.000000;;, - 58;3;-0.000000, 0.939853, 0.000000;;, - 59;3;-0.000000, 0.939853,-0.000000;;, - 60;3; 0.000000, 0.939853, 0.000000;;, - 61;3; 0.000000, 0.939853, 0.000000;;, - 62;3;-0.000000, 0.939853, 0.000000;;, - 63;3; 0.000000, 0.939853, 0.000000;;, - 64;3;-0.000000, 0.939853, 0.000000;;, - 65;3;-0.000000, 0.939853,-0.000000;;, - 66;3;-0.000000, 0.939853, 0.000000;;, - 67;3; 0.000000, 0.939853, 0.000000;;, - 68;3;-0.000000, 0.939853,-0.000000;;, - 69;3;-0.000000, 0.939853,-0.000000;;, - 70;3;-0.000000, 0.939853, 0.000000;;, - 71;3;-0.000000, 0.939853, 0.000000;;, - 72;3;-0.000000, 0.939853, 0.000000;;, - 73;3;-0.000000, 0.939853,-0.000000;;, - 74;3; 0.000000, 0.939853, 0.000000;;, - 75;3;-0.000000, 0.939853, 0.000000;;, - 76;3;-0.000000, 0.939853, 0.000000;;, - 77;3;-0.000000, 0.939853, 0.000000;;, - 78;3; 0.000000, 0.939853,-0.000000;;, - 79;3; 0.000000, 0.939853, 0.000000;;, - 80;3; 0.000000, 0.939853, 0.000000;;, - 81;3;-0.000000, 0.939853,-0.000000;;, - 82;3; 0.000000, 0.939853, 0.000000;;, - 83;3;-0.000000, 0.939853, 0.000000;;, - 84;3;-0.000000, 0.939853, 0.000000;;, - 85;3;-0.000000, 0.939853, 0.000000;;, - 86;3; 0.000000, 0.939853, 0.000000;;, - 87;3; 0.000000, 0.939853, 0.000000;;, - 88;3;-0.000000, 0.939853, 0.000000;;, - 89;3; 0.000000, 0.939853, 0.000000;;, - 90;3;-0.000000, 0.939853, 0.000000;;, - 91;3; 0.000000, 0.939853,-0.000000;;, - 92;3;-0.000000, 0.939853, 0.000000;;, - 93;3; 0.000000, 0.939853, 0.000000;;, - 94;3;-0.000000, 0.939853, 0.000000;;, - 95;3;-0.000000, 0.939853, 0.000000;;, - 96;3; 0.000000, 0.939853, 0.000000;;, - 97;3; 0.000000, 0.939853, 0.000000;;, - 98;3; 0.000000, 0.939853, 0.000000;;, - 99;3;-0.000000, 0.939853,-0.000000;;, - 100;3; 0.000000, 0.939853,-0.000000;;, - 101;3; 0.000000, 0.939853, 0.000000;;, - 102;3; 0.000000, 0.939853, 0.000000;;, - 103;3; 0.000000, 0.939853, 0.000000;;, - 104;3; 0.000000, 0.939853,-0.000000;;, - 105;3; 0.000000, 0.939853,-0.000000;;, - 106;3; 0.000000, 0.939853, 0.000000;;, - 107;3; 0.000000, 0.939853,-0.000000;;, - 108;3; 0.000000, 0.939853,-0.000000;;, - 109;3; 0.000000, 0.939853, 0.000000;;, - 110;3;-0.000000, 0.939853,-0.000000;;, - 111;3; 0.000000, 0.939853,-0.000000;;, - 112;3;-0.000000, 0.939853, 0.000000;;, - 113;3;-0.000000, 0.939853,-0.000000;;, - 114;3; 0.000000, 0.939853,-0.000000;;, - 115;3; 0.000000, 0.939853, 0.000000;;, - 116;3; 0.000000, 0.939853, 0.000000;;, - 117;3; 0.000000, 0.939853,-0.000000;;, - 118;3; 0.000000, 0.939853,-0.000000;;, - 119;3; 0.000000, 0.939853, 0.000000;;, - 120;3; 0.000000, 0.939853,-0.000000;;, - 121;3;-0.000000, 0.939853,-0.000000;;, - 122;3;-0.000000, 0.939853,-0.000000;;, - 123;3;-0.000000, 0.939853,-0.000000;;, - 124;3; 0.000000, 0.939853, 0.000000;;, - 125;3; 0.000000, 0.939853, 0.000000;;, - 126;3;-0.000000, 0.939853,-0.000000;;, - 127;3;-0.000000, 0.939853,-0.000000;;, - 128;3; 0.000000, 0.939853,-0.000000;;, - 129;3;-0.000000, 0.939853, 0.000000;;, - 130;3;-0.000000, 0.939853, 0.000000;;, - 131;3;-0.000000, 0.939853, 0.000000;;, - 132;3;-0.000000, 0.939853,-0.000000;;, - 133;3;-0.000000, 0.939853,-0.000000;;, - 134;3; 0.000000, 0.939853, 0.000000;;, - 135;3;-0.000000, 0.939853,-0.000000;;, - 136;3;-0.000000, 0.939853, 0.000000;;, - 137;3; 0.000000, 0.939853, 0.000000;;, - 138;3;-0.000000, 0.939853,-0.000000;;, - 139;3; 0.000000, 0.939853, 0.000000;;, - 140;3;-0.000000, 0.939853, 0.000000;;, - 141;3; 0.000000, 0.939853,-0.000000;;, - 142;3;-0.000000, 0.939853,-0.000000;;, - 143;3; 0.000000, 0.939853, 0.000000;;, - 144;3; 0.000000, 0.939853,-0.000000;;, - 145;3;-0.000000, 0.939853,-0.000000;;, - 146;3;-0.000000, 0.939853, 0.000000;;, - 147;3; 0.000000, 0.939853, 0.000000;;, - 148;3;-0.000000, 0.939853, 0.000000;;, - 149;3; 0.000000, 0.939853, 0.000000;;, - 150;3; 0.000000, 0.939853, 0.000000;;, - 151;3; 0.000000, 0.939853, 0.000000;;, - 152;3; 0.000000, 0.939853, 0.000000;;, - 153;3; 0.000000, 0.939853, 0.000000;;, - 154;3; 0.000000, 0.939853, 0.000000;;, - 155;3; 0.000000, 0.939853, 0.000000;;, - 156;3; 0.000000, 0.939853, 0.000000;;, - 157;3; 0.000000, 0.939853, 0.000000;;, - 158;3; 0.000000, 0.939853, 0.000000;;, - 159;3; 0.000000, 0.939853, 0.000000;;, - 160;3; 0.000000, 0.939853, 0.000000;;, - 161;3; 0.000000, 0.939853, 0.000000;;, - 162;3; 0.000000, 0.939853, 0.000000;;, - 163;3; 0.000000, 0.939853, 0.000000;;, - 164;3; 0.000000, 0.939853, 0.000000;;, - 165;3; 0.000000, 0.939853, 0.000000;;, - 166;3; 0.000000, 0.939853, 0.000000;;, - 167;3; 0.000000, 0.939853, 0.000000;;, - 168;3; 0.000000, 0.939853, 0.000000;;, - 169;3; 0.000000, 0.939853, 0.000000;;, - 170;3; 0.000000, 0.939853, 0.000000;;, - 171;3; 0.000000, 0.939853, 0.000000;;, - 172;3; 0.000000, 0.939853, 0.000000;;, - 173;3; 0.000000, 0.939853, 0.000000;;, - 174;3; 0.000000, 0.939853, 0.000000;;, - 175;3; 0.000000, 0.939853, 0.000000;;, - 176;3; 0.000000, 0.939853, 0.000000;;, - 177;3; 0.000000, 0.939853, 0.000000;;, - 178;3; 0.000000, 0.939853, 0.000000;;, - 179;3; 0.000000, 0.939853, 0.000000;;, - 180;3; 0.000000, 0.939853, 0.000000;;, - 181;3; 0.000000, 0.939853, 0.000000;;, - 182;3; 0.000000, 0.939853, 0.000000;;, - 183;3; 0.000000, 0.939853, 0.000000;;, - 184;3; 0.000000, 0.939853, 0.000000;;, - 185;3; 0.000000, 0.939853, 0.000000;;, - 186;3; 0.000000, 0.939853, 0.000000;;, - 187;3; 0.000000, 0.939853, 0.000000;;, - 188;3; 0.000000, 0.939853, 0.000000;;, - 189;3; 0.000000, 0.939853, 0.000000;;, - 190;3; 0.000000, 0.939853, 0.000000;;, - 191;3; 0.000000, 0.939853, 0.000000;;, - 192;3; 0.000000, 0.939853, 0.000000;;, - 193;3; 0.000000, 0.939853, 0.000000;;, - 194;3; 0.000000, 0.939853, 0.000000;;, - 195;3; 0.000000, 0.939853, 0.000000;;, - 196;3; 0.000000, 0.939853, 0.000000;;, - 197;3; 0.000000, 0.939853, 0.000000;;, - 198;3; 0.000000, 0.939853, 0.000000;;, - 199;3; 0.000000, 0.939853, 0.000000;;, - 200;3; 0.000000, 0.939853, 0.000000;;, - 201;3; 0.000000, 0.939853, 0.000000;;, - 202;3; 0.000000, 0.939853, 0.000000;;, - 203;3; 0.000000, 0.939853, 0.000000;;, - 204;3; 0.000000, 0.939853, 0.000000;;, - 205;3; 0.000000, 0.939853, 0.000000;;, - 206;3; 0.000000, 0.939853, 0.000000;;, - 207;3; 0.000000, 0.939853, 0.000000;;, - 208;3; 0.000000, 0.939853, 0.000000;;, - 209;3; 0.000000, 0.939853, 0.000000;;, - 210;3; 0.000000, 0.939853, 0.000000;;, - 211;3; 0.000000, 0.939853, 0.000000;;, - 212;3; 0.000000, 0.939853, 0.000000;;, - 213;3; 0.000000, 0.939853, 0.000000;;, - 214;3; 0.000000, 0.939853, 0.000000;;, - 215;3; 0.000000, 0.939853, 0.000000;;, - 216;3; 0.000000, 0.939853, 0.000000;;, - 217;3; 0.000000, 0.939853, 0.000000;;, - 218;3; 0.000000, 0.939853, 0.000000;;, - 219;3; 0.000000, 0.939853, 0.000000;;, - 220;3; 0.000000, 0.939853, 0.000000;;, - 221;3; 0.000000, 0.939853, 0.000000;;, - 222;3; 0.000000, 0.939853, 0.000000;;, - 223;3; 0.000000, 0.939853, 0.000000;;, - 224;3; 0.000000, 0.939853, 0.000000;;, - 225;3; 0.000000, 0.939853, 0.000000;;, - 226;3; 0.000000, 0.939853, 0.000000;;, - 227;3; 0.000000, 0.939853, 0.000000;;, - 228;3; 0.000000, 0.939853, 0.000000;;, - 229;3; 0.000000, 0.939853, 0.000000;;, - 230;3; 0.000000, 0.939853, 0.000000;;, - 231;3; 0.000000, 0.939853, 0.000000;;, - 232;3; 0.000000, 0.939853, 0.000000;;, - 233;3; 0.000000, 0.939853, 0.000000;;, - 234;3; 0.000000, 0.939853, 0.000000;;, - 235;3; 0.000000, 0.939853, 0.000000;;, - 236;3; 0.000000, 0.939853, 0.000000;;, - 237;3; 0.000000, 0.939853, 0.000000;;, - 238;3; 0.000000, 0.939853, 0.000000;;, - 239;3; 0.000000, 0.939853, 0.000000;;, - 240;3; 0.000000, 0.939853, 0.000000;;, - 241;3; 0.000000, 0.939853, 0.000000;;, - 242;3; 0.000000, 0.939853, 0.000000;;, - 243;3; 0.000000, 0.939853, 0.000000;;, - 244;3; 0.000000, 0.939853, 0.000000;;, - 245;3; 0.000000, 0.939853, 0.000000;;, - 246;3; 0.000000, 0.939853, 0.000000;;, - 247;3; 0.000000, 0.939853, 0.000000;;, - 248;3; 0.000000, 0.939853, 0.000000;;, - 249;3; 0.000000, 0.939853, 0.000000;;; - } - } - Animation { - {Armature_Bone_032} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 1;4;-0.998658,-0.051714, 0.000000, 0.000000;;, - 2;4;-0.998614,-0.052359, 0.000000, 0.000000;;, - 3;4;-0.998539,-0.053436, 0.000000, 0.000000;;, - 4;4;-0.998436,-0.054936, 0.000000, 0.000000;;, - 5;4;-0.998304,-0.056838, 0.000000, 0.000000;;, - 6;4;-0.998147,-0.059104, 0.000000, 0.000000;;, - 7;4;-0.997970,-0.061678, 0.000000, 0.000000;;, - 8;4;-0.997775,-0.064487, 0.000000, 0.000000;;, - 9;4;-0.997571,-0.067445, 0.000000, 0.000000;;, - 10;4;-0.997363,-0.070454, 0.000000, 0.000000;;, - 11;4;-0.997158,-0.073412, 0.000000, 0.000000;;, - 12;4;-0.996964,-0.076222, 0.000000, 0.000000;;, - 13;4;-0.996786,-0.078795, 0.000000, 0.000000;;, - 14;4;-0.996630,-0.081061, 0.000000, 0.000000;;, - 15;4;-0.996498,-0.082963, 0.000000, 0.000000;;, - 16;4;-0.996395,-0.084463, 0.000000, 0.000000;;, - 17;4;-0.996320,-0.085540, 0.000000, 0.000000;;, - 18;4;-0.996276,-0.086185, 0.000000, 0.000000;;, - 19;4;-0.996261,-0.086398, 0.000000, 0.000000;;, - 20;4;-0.996274,-0.086206, 0.000000, 0.000000;;, - 21;4;-0.996314,-0.085624, 0.000000, 0.000000;;, - 22;4;-0.996382,-0.084652, 0.000000, 0.000000;;, - 23;4;-0.996475,-0.083296, 0.000000, 0.000000;;, - 24;4;-0.996594,-0.081572, 0.000000, 0.000000;;, - 25;4;-0.996737,-0.079510, 0.000000, 0.000000;;, - 26;4;-0.996900,-0.077153, 0.000000, 0.000000;;, - 27;4;-0.997079,-0.074559, 0.000000, 0.000000;;, - 28;4;-0.997270,-0.071797, 0.000000, 0.000000;;, - 29;4;-0.997467,-0.068950, 0.000000, 0.000000;;, - 30;4;-0.997664,-0.066102, 0.000000, 0.000000;;, - 31;4;-0.997855,-0.063340, 0.000000, 0.000000;;, - 32;4;-0.998034,-0.060746, 0.000000, 0.000000;;, - 33;4;-0.998197,-0.058389, 0.000000, 0.000000;;, - 34;4;-0.998339,-0.056327, 0.000000, 0.000000;;, - 35;4;-0.998459,-0.054603, 0.000000, 0.000000;;, - 36;4;-0.998552,-0.053247, 0.000000, 0.000000;;, - 37;4;-0.998619,-0.052275, 0.000000, 0.000000;;, - 38;4;-0.998660,-0.051694, 0.000000, 0.000000;;, - 39;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 40;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 41;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 42;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 43;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 44;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 45;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 46;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 47;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 48;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 49;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 50;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 51;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 52;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 53;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 54;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 55;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 56;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 57;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 58;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 59;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 60;4;-0.998686,-0.050573, 0.000132,-0.000802;;, - 61;4;-0.998727,-0.047780, 0.000530,-0.003216;;, - 62;4;-0.998793,-0.043238, 0.001177,-0.007141;;, - 63;4;-0.998879,-0.037297, 0.002024,-0.012274;;, - 64;4;-0.998977,-0.030567, 0.002983,-0.018090;;, - 65;4;-0.999075,-0.023837, 0.003942,-0.023905;;, - 66;4;-0.999161,-0.017896, 0.004788,-0.029039;;, - 67;4;-0.999227,-0.013354, 0.005435,-0.032963;;, - 68;4;-0.999268,-0.010561, 0.005834,-0.035377;;, - 69;4;-0.999281,-0.009633, 0.005966,-0.036179;;, - 70;4;-0.999280,-0.009735, 0.005951,-0.036091;;, - 71;4;-0.999275,-0.010044, 0.005907,-0.035824;;, - 72;4;-0.999268,-0.010561, 0.005834,-0.035377;;, - 73;4;-0.999257,-0.011286, 0.005730,-0.034750;;, - 74;4;-0.999244,-0.012219, 0.005597,-0.033944;;, - 75;4;-0.999227,-0.013354, 0.005435,-0.032963;;, - 76;4;-0.999208,-0.014686, 0.005246,-0.031813;;, - 77;4;-0.999186,-0.016204, 0.005029,-0.030501;;, - 78;4;-0.999161,-0.017896, 0.004788,-0.029039;;, - 79;4;-0.999134,-0.019746, 0.004525,-0.027440;;, - 80;4;-0.999105,-0.021734, 0.004241,-0.025722;;, - 81;4;-0.999075,-0.023837, 0.003942,-0.023905;;, - 82;4;-0.999043,-0.026029, 0.003629,-0.022011;;, - 83;4;-0.999010,-0.028283, 0.003308,-0.020063;;, - 84;4;-0.998977,-0.030567, 0.002983,-0.018090;;, - 85;4;-0.998944,-0.032851, 0.002657,-0.016116;;, - 86;4;-0.998911,-0.035104, 0.002336,-0.014169;;, - 87;4;-0.998879,-0.037297, 0.002024,-0.012274;;, - 88;4;-0.998849,-0.039400, 0.001724,-0.010457;;, - 89;4;-0.998820,-0.041388, 0.001441,-0.008739;;, - 90;4;-0.998793,-0.043238, 0.001177,-0.007141;;, - 91;4;-0.998768,-0.044930, 0.000936,-0.005679;;, - 92;4;-0.998746,-0.046448, 0.000720,-0.004367;;, - 93;4;-0.998727,-0.047780, 0.000530,-0.003216;;, - 94;4;-0.998711,-0.048915, 0.000369,-0.002235;;, - 95;4;-0.998697,-0.049847, 0.000236,-0.001429;;, - 96;4;-0.998686,-0.050573, 0.000132,-0.000802;;, - 97;4;-0.998679,-0.051090, 0.000059,-0.000355;;, - 98;4;-0.998675,-0.051399, 0.000015,-0.000088;;, - 99;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 100;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 101;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 102;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 103;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 104;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 105;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 106;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 107;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 108;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 109;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 110;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 111;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 112;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 113;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 114;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 115;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 116;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 117;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 118;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 119;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 120;4;-0.998564,-0.047388, 0.000000, 0.000000;;, - 121;4;-0.997787,-0.028975, 0.000000, 0.000000;;, - 122;4;-0.995530, 0.012991,-0.000000, 0.000000;;, - 123;4;-0.991321, 0.081341,-0.000000, 0.000000;;, - 124;4;-0.985372, 0.170417,-0.000000, 0.000000;;, - 125;4;-0.929734, 0.305571,-0.000000, 0.000000;;, - 126;4;-0.785564, 0.503706,-0.000000, 0.000000;;, - 127;4;-0.603597, 0.712315,-0.000000, 0.000000;;, - 128;4;-0.462859, 0.860514,-0.000000, 0.000000;;, - 129;4;-0.413060, 0.910704,-0.000000, 0.000000;;, - 130;4;-0.438600, 0.901391,-0.000000, 0.000000;;, - 131;4;-0.514481, 0.867060,-0.000000, 0.000000;;, - 132;4;-0.622493, 0.801244,-0.000000, 0.000000;;, - 133;4;-0.727209, 0.707679,-0.000000, 0.000000;;, - 134;4;-0.801808, 0.597582,-0.000000, 0.000000;;, - 135;4;-0.856943, 0.441161,-0.000000, 0.000000;;, - 136;4;-0.906835, 0.217114,-0.000000, 0.000000;;, - 137;4;-0.944452,-0.016239, 0.000000, 0.000000;;, - 138;4;-0.965509,-0.181051, 0.000000, 0.000000;;, - 139;4;-0.971586,-0.236689, 0.000000, 0.000000;;, - 140;4;-0.971586,-0.236689, 0.000000, 0.000000;;, - 141;4;-0.971586,-0.236689, 0.000000, 0.000000;;, - 142;4;-0.971586,-0.236689, 0.000000, 0.000000;;, - 143;4;-0.971586,-0.236689, 0.000000, 0.000000;;, - 144;4;-0.971586,-0.236689, 0.000000, 0.000000;;, - 145;4;-0.973993,-0.220228, 0.000000, 0.000000;;, - 146;4;-0.980775,-0.173862, 0.000000, 0.000000;;, - 147;4;-0.989483,-0.114329, 0.000000, 0.000000;;, - 148;4;-0.996265,-0.067962, 0.000000, 0.000000;;, - 149;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 150;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 151;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 152;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 153;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 154;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 155;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 156;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 157;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 158;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 159;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 160;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 161;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 162;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 163;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 164;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 165;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 166;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 167;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 168;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 169;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 170;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 171;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 172;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 173;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 174;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 175;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 176;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 177;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 178;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 179;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 180;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 181;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 182;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 183;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 184;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 185;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 186;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 187;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 188;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 189;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 190;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 191;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 192;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 193;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 194;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 195;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 196;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 197;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 198;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 199;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 200;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 201;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 202;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 203;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 204;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 205;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 206;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 207;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 208;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 209;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 210;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 211;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 212;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 213;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 214;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 215;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 216;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 217;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 218;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 219;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 220;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 221;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 222;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 223;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 224;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 225;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 226;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 227;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 228;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 229;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 230;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 231;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 232;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 233;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 234;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 235;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 236;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 237;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 238;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 239;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 240;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 241;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 242;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 243;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 244;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 245;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 246;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 247;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 248;4;-0.998673,-0.051501, 0.000000, 0.000000;;, - 249;4;-0.998673,-0.051501, 0.000000, 0.000000;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3; 0.000000, 2.406491,-0.000000;;, - 1;3; 0.000000, 2.406491, 0.000000;;, - 2;3; 0.000000, 2.406491, 0.000000;;, - 3;3; 0.000000, 2.406491, 0.000000;;, - 4;3; 0.000000, 2.406491, 0.000000;;, - 5;3;-0.000000, 2.406491,-0.000000;;, - 6;3; 0.000000, 2.406491,-0.000000;;, - 7;3;-0.000000, 2.406492, 0.000000;;, - 8;3; 0.000000, 2.406491, 0.000000;;, - 9;3;-0.000000, 2.406491,-0.000000;;, - 10;3; 0.000000, 2.406491,-0.000000;;, - 11;3; 0.000000, 2.406491,-0.000000;;, - 12;3;-0.000000, 2.406491, 0.000000;;, - 13;3; 0.000000, 2.406491, 0.000000;;, - 14;3;-0.000000, 2.406491, 0.000000;;, - 15;3;-0.000000, 2.406491, 0.000000;;, - 16;3;-0.000000, 2.406491, 0.000000;;, - 17;3;-0.000000, 2.406492, 0.000000;;, - 18;3;-0.000000, 2.406491, 0.000000;;, - 19;3; 0.000000, 2.406491,-0.000000;;, - 20;3;-0.000000, 2.406491, 0.000000;;, - 21;3;-0.000000, 2.406491,-0.000000;;, - 22;3;-0.000000, 2.406491, 0.000000;;, - 23;3; 0.000000, 2.406491, 0.000000;;, - 24;3; 0.000000, 2.406491,-0.000000;;, - 25;3;-0.000000, 2.406491, 0.000000;;, - 26;3; 0.000000, 2.406491,-0.000000;;, - 27;3; 0.000000, 2.406491, 0.000000;;, - 28;3; 0.000000, 2.406491,-0.000000;;, - 29;3; 0.000000, 2.406491, 0.000000;;, - 30;3; 0.000000, 2.406491,-0.000000;;, - 31;3; 0.000000, 2.406491,-0.000000;;, - 32;3;-0.000000, 2.406491, 0.000000;;, - 33;3; 0.000000, 2.406491, 0.000000;;, - 34;3;-0.000000, 2.406491, 0.000000;;, - 35;3; 0.000000, 2.406491, 0.000000;;, - 36;3; 0.000000, 2.406491,-0.000000;;, - 37;3; 0.000000, 2.406491,-0.000000;;, - 38;3; 0.000000, 2.406491, 0.000000;;, - 39;3; 0.000000, 2.406491,-0.000000;;, - 40;3;-0.000000, 2.406491, 0.000000;;, - 41;3;-0.000000, 2.406491,-0.000000;;, - 42;3;-0.000000, 2.406491,-0.000000;;, - 43;3; 0.000000, 2.406491, 0.000000;;, - 44;3;-0.000000, 2.406491, 0.000000;;, - 45;3;-0.000000, 2.406491, 0.000000;;, - 46;3; 0.000000, 2.406491,-0.000000;;, - 47;3;-0.000000, 2.406491, 0.000000;;, - 48;3; 0.000000, 2.406491,-0.000000;;, - 49;3;-0.000000, 2.406491,-0.000000;;, - 50;3;-0.000000, 2.406491,-0.000000;;, - 51;3; 0.000000, 2.406491,-0.000000;;, - 52;3; 0.000000, 2.406491,-0.000000;;, - 53;3;-0.000000, 2.406491, 0.000000;;, - 54;3; 0.000000, 2.406491, 0.000000;;, - 55;3; 0.000000, 2.406491,-0.000000;;, - 56;3;-0.000000, 2.406491,-0.000000;;, - 57;3; 0.000000, 2.406491,-0.000000;;, - 58;3; 0.000000, 2.406491,-0.000000;;, - 59;3;-0.000000, 2.406491,-0.000000;;, - 60;3; 0.000000, 2.406491, 0.000000;;, - 61;3;-0.000000, 2.406492,-0.000000;;, - 62;3;-0.000000, 2.406491, 0.000000;;, - 63;3; 0.000000, 2.406491, 0.000000;;, - 64;3; 0.000000, 2.406491, 0.000000;;, - 65;3; 0.000000, 2.406491,-0.000000;;, - 66;3; 0.000000, 2.406491, 0.000000;;, - 67;3; 0.000000, 2.406491, 0.000000;;, - 68;3;-0.000000, 2.406491, 0.000000;;, - 69;3;-0.000000, 2.406491,-0.000000;;, - 70;3; 0.000000, 2.406491,-0.000000;;, - 71;3;-0.000000, 2.406491,-0.000000;;, - 72;3; 0.000000, 2.406491, 0.000000;;, - 73;3; 0.000000, 2.406491, 0.000000;;, - 74;3;-0.000000, 2.406491,-0.000000;;, - 75;3; 0.000000, 2.406491,-0.000000;;, - 76;3;-0.000000, 2.406491, 0.000000;;, - 77;3; 0.000000, 2.406491, 0.000000;;, - 78;3; 0.000000, 2.406491, 0.000000;;, - 79;3; 0.000000, 2.406491, 0.000000;;, - 80;3;-0.000000, 2.406491,-0.000000;;, - 81;3; 0.000000, 2.406491, 0.000000;;, - 82;3;-0.000000, 2.406491,-0.000000;;, - 83;3; 0.000000, 2.406491, 0.000000;;, - 84;3; 0.000000, 2.406491, 0.000000;;, - 85;3; 0.000000, 2.406491, 0.000000;;, - 86;3; 0.000000, 2.406491,-0.000000;;, - 87;3;-0.000000, 2.406491, 0.000000;;, - 88;3;-0.000000, 2.406491,-0.000000;;, - 89;3; 0.000000, 2.406491,-0.000000;;, - 90;3;-0.000000, 2.406492,-0.000000;;, - 91;3;-0.000000, 2.406491,-0.000000;;, - 92;3;-0.000000, 2.406491, 0.000000;;, - 93;3;-0.000000, 2.406491,-0.000000;;, - 94;3; 0.000000, 2.406491, 0.000000;;, - 95;3; 0.000000, 2.406491,-0.000000;;, - 96;3; 0.000000, 2.406491,-0.000000;;, - 97;3;-0.000000, 2.406491, 0.000000;;, - 98;3;-0.000000, 2.406491,-0.000000;;, - 99;3;-0.000000, 2.406491,-0.000000;;, - 100;3;-0.000000, 2.406491, 0.000000;;, - 101;3;-0.000000, 2.406491, 0.000000;;, - 102;3;-0.000000, 2.406491, 0.000000;;, - 103;3; 0.000000, 2.406491, 0.000000;;, - 104;3;-0.000000, 2.406491, 0.000000;;, - 105;3;-0.000000, 2.406491, 0.000000;;, - 106;3;-0.000000, 2.406491, 0.000000;;, - 107;3;-0.000000, 2.406491,-0.000000;;, - 108;3; 0.000000, 2.406491,-0.000000;;, - 109;3; 0.000000, 2.406491,-0.000000;;, - 110;3;-0.000000, 2.406491,-0.000000;;, - 111;3; 0.000000, 2.406491, 0.000000;;, - 112;3;-0.000000, 2.406491,-0.000000;;, - 113;3; 0.000000, 2.406491, 0.000000;;, - 114;3;-0.000000, 2.406491,-0.000000;;, - 115;3;-0.000000, 2.406491,-0.000000;;, - 116;3;-0.000000, 2.406491,-0.000000;;, - 117;3; 0.000000, 2.406491,-0.000000;;, - 118;3; 0.000000, 2.406491, 0.000000;;, - 119;3; 0.000000, 2.406491,-0.000000;;, - 120;3; 0.000000, 2.406491, 0.000000;;, - 121;3; 0.000000, 2.406491, 0.000000;;, - 122;3;-0.000000, 2.406491, 0.000000;;, - 123;3; 0.000000, 2.406491,-0.000000;;, - 124;3;-0.000000, 2.406491, 0.000000;;, - 125;3; 0.000000, 2.406491, 0.000000;;, - 126;3;-0.000000, 2.406491, 0.000000;;, - 127;3; 0.000000, 2.406491, 0.000000;;, - 128;3;-0.000000, 2.406491,-0.000000;;, - 129;3; 0.000000, 2.406491, 0.000000;;, - 130;3;-0.000000, 2.406491, 0.000000;;, - 131;3;-0.000000, 2.406491, 0.000000;;, - 132;3;-0.000000, 2.406491, 0.000000;;, - 133;3; 0.000000, 2.406491,-0.000000;;, - 134;3; 0.000000, 2.406491, 0.000000;;, - 135;3;-0.000000, 2.406491, 0.000000;;, - 136;3;-0.000000, 2.406491,-0.000000;;, - 137;3; 0.000000, 2.406491, 0.000000;;, - 138;3; 0.000000, 2.406491,-0.000000;;, - 139;3;-0.000000, 2.406491,-0.000000;;, - 140;3; 0.000000, 2.406491, 0.000000;;, - 141;3; 0.000000, 2.406491, 0.000000;;, - 142;3; 0.000000, 2.406491, 0.000000;;, - 143;3; 0.000000, 2.406491, 0.000000;;, - 144;3; 0.000000, 2.406491,-0.000000;;, - 145;3; 0.000000, 2.406491, 0.000000;;, - 146;3; 0.000000, 2.406491, 0.000000;;, - 147;3; 0.000000, 2.406491, 0.000000;;, - 148;3; 0.000000, 2.406491, 0.000000;;, - 149;3; 0.000000, 2.406491,-0.000000;;, - 150;3; 0.000000, 2.406491,-0.000000;;, - 151;3; 0.000000, 2.406491,-0.000000;;, - 152;3; 0.000000, 2.406491,-0.000000;;, - 153;3; 0.000000, 2.406491,-0.000000;;, - 154;3; 0.000000, 2.406491,-0.000000;;, - 155;3; 0.000000, 2.406491,-0.000000;;, - 156;3; 0.000000, 2.406491,-0.000000;;, - 157;3; 0.000000, 2.406491,-0.000000;;, - 158;3; 0.000000, 2.406491,-0.000000;;, - 159;3; 0.000000, 2.406491,-0.000000;;, - 160;3; 0.000000, 2.406491,-0.000000;;, - 161;3; 0.000000, 2.406491,-0.000000;;, - 162;3; 0.000000, 2.406491,-0.000000;;, - 163;3; 0.000000, 2.406491,-0.000000;;, - 164;3; 0.000000, 2.406491,-0.000000;;, - 165;3; 0.000000, 2.406491,-0.000000;;, - 166;3; 0.000000, 2.406491,-0.000000;;, - 167;3; 0.000000, 2.406491,-0.000000;;, - 168;3; 0.000000, 2.406491,-0.000000;;, - 169;3; 0.000000, 2.406491,-0.000000;;, - 170;3; 0.000000, 2.406491,-0.000000;;, - 171;3; 0.000000, 2.406491,-0.000000;;, - 172;3; 0.000000, 2.406491,-0.000000;;, - 173;3; 0.000000, 2.406491,-0.000000;;, - 174;3; 0.000000, 2.406491,-0.000000;;, - 175;3; 0.000000, 2.406491,-0.000000;;, - 176;3; 0.000000, 2.406491,-0.000000;;, - 177;3; 0.000000, 2.406491,-0.000000;;, - 178;3; 0.000000, 2.406491,-0.000000;;, - 179;3; 0.000000, 2.406491,-0.000000;;, - 180;3; 0.000000, 2.406491,-0.000000;;, - 181;3; 0.000000, 2.406491,-0.000000;;, - 182;3; 0.000000, 2.406491,-0.000000;;, - 183;3; 0.000000, 2.406491,-0.000000;;, - 184;3; 0.000000, 2.406491,-0.000000;;, - 185;3; 0.000000, 2.406491,-0.000000;;, - 186;3; 0.000000, 2.406491,-0.000000;;, - 187;3; 0.000000, 2.406491,-0.000000;;, - 188;3; 0.000000, 2.406491,-0.000000;;, - 189;3; 0.000000, 2.406491,-0.000000;;, - 190;3; 0.000000, 2.406491,-0.000000;;, - 191;3; 0.000000, 2.406491,-0.000000;;, - 192;3; 0.000000, 2.406491,-0.000000;;, - 193;3; 0.000000, 2.406491,-0.000000;;, - 194;3; 0.000000, 2.406491,-0.000000;;, - 195;3; 0.000000, 2.406491,-0.000000;;, - 196;3; 0.000000, 2.406491,-0.000000;;, - 197;3; 0.000000, 2.406491,-0.000000;;, - 198;3; 0.000000, 2.406491,-0.000000;;, - 199;3; 0.000000, 2.406491,-0.000000;;, - 200;3; 0.000000, 2.406491,-0.000000;;, - 201;3; 0.000000, 2.406491,-0.000000;;, - 202;3; 0.000000, 2.406491,-0.000000;;, - 203;3; 0.000000, 2.406491,-0.000000;;, - 204;3; 0.000000, 2.406491,-0.000000;;, - 205;3; 0.000000, 2.406491,-0.000000;;, - 206;3; 0.000000, 2.406491,-0.000000;;, - 207;3; 0.000000, 2.406491,-0.000000;;, - 208;3; 0.000000, 2.406491,-0.000000;;, - 209;3; 0.000000, 2.406491,-0.000000;;, - 210;3; 0.000000, 2.406491,-0.000000;;, - 211;3; 0.000000, 2.406491,-0.000000;;, - 212;3; 0.000000, 2.406491,-0.000000;;, - 213;3; 0.000000, 2.406491,-0.000000;;, - 214;3; 0.000000, 2.406491,-0.000000;;, - 215;3; 0.000000, 2.406491,-0.000000;;, - 216;3; 0.000000, 2.406491,-0.000000;;, - 217;3; 0.000000, 2.406491,-0.000000;;, - 218;3; 0.000000, 2.406491,-0.000000;;, - 219;3; 0.000000, 2.406491,-0.000000;;, - 220;3; 0.000000, 2.406491,-0.000000;;, - 221;3; 0.000000, 2.406491,-0.000000;;, - 222;3; 0.000000, 2.406491,-0.000000;;, - 223;3; 0.000000, 2.406491,-0.000000;;, - 224;3; 0.000000, 2.406491,-0.000000;;, - 225;3; 0.000000, 2.406491,-0.000000;;, - 226;3; 0.000000, 2.406491,-0.000000;;, - 227;3; 0.000000, 2.406491,-0.000000;;, - 228;3; 0.000000, 2.406491,-0.000000;;, - 229;3; 0.000000, 2.406491,-0.000000;;, - 230;3; 0.000000, 2.406491,-0.000000;;, - 231;3; 0.000000, 2.406491,-0.000000;;, - 232;3; 0.000000, 2.406491,-0.000000;;, - 233;3; 0.000000, 2.406491,-0.000000;;, - 234;3; 0.000000, 2.406491,-0.000000;;, - 235;3; 0.000000, 2.406491,-0.000000;;, - 236;3; 0.000000, 2.406491,-0.000000;;, - 237;3; 0.000000, 2.406491,-0.000000;;, - 238;3; 0.000000, 2.406491,-0.000000;;, - 239;3; 0.000000, 2.406491,-0.000000;;, - 240;3; 0.000000, 2.406491,-0.000000;;, - 241;3; 0.000000, 2.406491,-0.000000;;, - 242;3; 0.000000, 2.406491,-0.000000;;, - 243;3; 0.000000, 2.406491,-0.000000;;, - 244;3; 0.000000, 2.406491,-0.000000;;, - 245;3; 0.000000, 2.406491,-0.000000;;, - 246;3; 0.000000, 2.406491,-0.000000;;, - 247;3; 0.000000, 2.406491,-0.000000;;, - 248;3; 0.000000, 2.406491,-0.000000;;, - 249;3; 0.000000, 2.406491,-0.000000;;; - } - } - Animation { - {Armature_Bone_036} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 1;4;-0.975620,-0.219445, 0.000000, 0.000000;;, - 2;4;-0.975764,-0.218740, 0.000000, 0.000000;;, - 3;4;-0.976006,-0.217563, 0.000000, 0.000000;;, - 4;4;-0.976342,-0.215923, 0.000000, 0.000000;;, - 5;4;-0.976767,-0.213844, 0.000000, 0.000000;;, - 6;4;-0.977275,-0.211367, 0.000000, 0.000000;;, - 7;4;-0.977851,-0.208553, 0.000000, 0.000000;;, - 8;4;-0.978480,-0.205482, 0.000000, 0.000000;;, - 9;4;-0.979142,-0.202248, 0.000000, 0.000000;;, - 10;4;-0.979816,-0.198959, 0.000000, 0.000000;;, - 11;4;-0.980478,-0.195726, 0.000000, 0.000000;;, - 12;4;-0.981107,-0.192654, 0.000000, 0.000000;;, - 13;4;-0.981683,-0.189840, 0.000000, 0.000000;;, - 14;4;-0.982191,-0.187364, 0.000000, 0.000000;;, - 15;4;-0.982616,-0.185285, 0.000000, 0.000000;;, - 16;4;-0.982952,-0.183644, 0.000000, 0.000000;;, - 17;4;-0.983193,-0.182467, 0.000000, 0.000000;;, - 18;4;-0.983338,-0.181763, 0.000000, 0.000000;;, - 19;4;-0.983386,-0.181530, 0.000000, 0.000000;;, - 20;4;-0.983342,-0.181740, 0.000000, 0.000000;;, - 21;4;-0.983212,-0.182375, 0.000000, 0.000000;;, - 22;4;-0.982995,-0.183438, 0.000000, 0.000000;;, - 23;4;-0.982691,-0.184920, 0.000000, 0.000000;;, - 24;4;-0.982305,-0.186805, 0.000000, 0.000000;;, - 25;4;-0.981843,-0.189059, 0.000000, 0.000000;;, - 26;4;-0.981316,-0.191636, 0.000000, 0.000000;;, - 27;4;-0.980735,-0.194472, 0.000000, 0.000000;;, - 28;4;-0.980117,-0.197491, 0.000000, 0.000000;;, - 29;4;-0.979479,-0.200604, 0.000000, 0.000000;;, - 30;4;-0.978841,-0.203717, 0.000000, 0.000000;;, - 31;4;-0.978223,-0.206736, 0.000000, 0.000000;;, - 32;4;-0.977642,-0.209572, 0.000000, 0.000000;;, - 33;4;-0.977115,-0.212148, 0.000000, 0.000000;;, - 34;4;-0.976653,-0.214402, 0.000000, 0.000000;;, - 35;4;-0.976267,-0.216287, 0.000000, 0.000000;;, - 36;4;-0.975963,-0.217770, 0.000000, 0.000000;;, - 37;4;-0.975746,-0.218832, 0.000000, 0.000000;;, - 38;4;-0.975616,-0.219468, 0.000000, 0.000000;;, - 39;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 40;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 41;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 42;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 43;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 44;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 45;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 46;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 47;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 48;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 49;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 50;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 51;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 52;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 53;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 54;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 55;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 56;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 57;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 58;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 59;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 60;4;-0.976002,-0.216604, 0.001306, 0.000137;;, - 61;4;-0.977295,-0.207353, 0.005238, 0.000548;;, - 62;4;-0.979397,-0.192312, 0.011631, 0.001217;;, - 63;4;-0.982146,-0.172639, 0.019992, 0.002092;;, - 64;4;-0.985261,-0.150353, 0.029464, 0.003084;;, - 65;4;-0.988375,-0.128066, 0.038936, 0.004075;;, - 66;4;-0.991125,-0.108393, 0.047297, 0.004950;;, - 67;4;-0.993227,-0.093352, 0.053689, 0.005619;;, - 68;4;-0.994520,-0.084101, 0.057621, 0.006031;;, - 69;4;-0.994949,-0.081027, 0.058927, 0.006168;;, - 70;4;-0.994902,-0.081366, 0.058783, 0.006153;;, - 71;4;-0.994759,-0.082389, 0.058349, 0.006107;;, - 72;4;-0.994520,-0.084101, 0.057621, 0.006031;;, - 73;4;-0.994184,-0.086504, 0.056600, 0.005924;;, - 74;4;-0.993752,-0.089592, 0.055287, 0.005787;;, - 75;4;-0.993227,-0.093352, 0.053689, 0.005619;;, - 76;4;-0.992611,-0.097762, 0.051815, 0.005423;;, - 77;4;-0.991908,-0.102789, 0.049678, 0.005200;;, - 78;4;-0.991125,-0.108393, 0.047297, 0.004950;;, - 79;4;-0.990269,-0.114519, 0.044693, 0.004678;;, - 80;4;-0.989349,-0.121102, 0.041896, 0.004385;;, - 81;4;-0.988375,-0.128066, 0.038936, 0.004075;;, - 82;4;-0.987361,-0.135326, 0.035850, 0.003752;;, - 83;4;-0.986318,-0.142788, 0.032679, 0.003420;;, - 84;4;-0.985261,-0.150353, 0.029464, 0.003084;;, - 85;4;-0.984204,-0.157917, 0.026249, 0.002747;;, - 86;4;-0.983161,-0.165379, 0.023077, 0.002415;;, - 87;4;-0.982146,-0.172639, 0.019992, 0.002092;;, - 88;4;-0.981173,-0.179603, 0.017032, 0.001783;;, - 89;4;-0.980253,-0.186186, 0.014234, 0.001490;;, - 90;4;-0.979397,-0.192312, 0.011631, 0.001217;;, - 91;4;-0.978614,-0.197916, 0.009249, 0.000968;;, - 92;4;-0.977911,-0.202944, 0.007112, 0.000744;;, - 93;4;-0.977295,-0.207353, 0.005238, 0.000548;;, - 94;4;-0.976769,-0.211113, 0.003640, 0.000381;;, - 95;4;-0.976338,-0.214201, 0.002328, 0.000244;;, - 96;4;-0.976002,-0.216604, 0.001306, 0.000137;;, - 97;4;-0.975763,-0.218316, 0.000579, 0.000061;;, - 98;4;-0.975620,-0.219339, 0.000144, 0.000015;;, - 99;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 100;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 101;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 102;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 103;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 104;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 105;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 106;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 107;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 108;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 109;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 110;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 111;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 112;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 113;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 114;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 115;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 116;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 117;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 118;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 119;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 120;4;-0.965071,-0.154408, 0.000000, 0.000000;;, - 121;4;-0.935490, 0.029437,-0.000000, 0.000000;;, - 122;4;-0.897509, 0.265492,-0.000000, 0.000000;;, - 123;4;-0.867929, 0.449336,-0.000000, 0.000000;;, - 124;4;-0.857427, 0.514606,-0.000000, 0.000000;;, - 125;4;-0.857427, 0.514606,-0.000000, 0.000000;;, - 126;4;-0.857427, 0.514606,-0.000000, 0.000000;;, - 127;4;-0.857427, 0.514606,-0.000000, 0.000000;;, - 128;4;-0.857427, 0.514606,-0.000000, 0.000000;;, - 129;4;-0.857427, 0.514606,-0.000000, 0.000000;;, - 130;4;-0.870082, 0.483297,-0.000000, 0.000000;;, - 131;4;-0.905730, 0.389567,-0.000000, 0.000000;;, - 132;4;-0.951501, 0.254337, 0.000000,-0.000000;;, - 133;4;-0.987149, 0.120055, 0.000000,-0.000000;;, - 134;4;-0.999805, 0.019752, 0.000000,-0.000000;;, - 135;4;-0.996499,-0.062399, 0.000000,-0.000000;;, - 136;4;-0.987187,-0.145550, 0.000000,-0.000000;;, - 137;4;-0.975230,-0.215128, 0.000000,-0.000000;;, - 138;4;-0.965918,-0.257727, 0.000000,-0.000000;;, - 139;4;-0.962612,-0.270883, 0.000000,-0.000000;;, - 140;4;-0.962612,-0.270883, 0.000000,-0.000000;;, - 141;4;-0.962612,-0.270883, 0.000000,-0.000000;;, - 142;4;-0.962612,-0.270883, 0.000000,-0.000000;;, - 143;4;-0.962612,-0.270883, 0.000000,-0.000000;;, - 144;4;-0.962612,-0.270883, 0.000000,-0.000000;;, - 145;4;-0.963764,-0.266332, 0.000000,-0.000000;;, - 146;4;-0.967009,-0.253511, 0.000000,-0.000000;;, - 147;4;-0.971176,-0.237050, 0.000000,-0.000000;;, - 148;4;-0.974420,-0.224229, 0.000000, 0.000000;;, - 149;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 150;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 151;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 152;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 153;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 154;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 155;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 156;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 157;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 158;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 159;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 160;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 161;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 162;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 163;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 164;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 165;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 166;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 167;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 168;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 169;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 170;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 171;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 172;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 173;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 174;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 175;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 176;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 177;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 178;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 179;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 180;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 181;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 182;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 183;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 184;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 185;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 186;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 187;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 188;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 189;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 190;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 191;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 192;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 193;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 194;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 195;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 196;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 197;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 198;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 199;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 200;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 201;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 202;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 203;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 204;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 205;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 206;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 207;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 208;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 209;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 210;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 211;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 212;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 213;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 214;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 215;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 216;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 217;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 218;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 219;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 220;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 221;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 222;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 223;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 224;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 225;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 226;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 227;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 228;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 229;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 230;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 231;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 232;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 233;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 234;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 235;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 236;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 237;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 238;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 239;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 240;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 241;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 242;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 243;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 244;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 245;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 246;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 247;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 248;4;-0.975572,-0.219678, 0.000000, 0.000000;;, - 249;4;-0.975572,-0.219678, 0.000000, 0.000000;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3;-0.000000, 2.366877,-0.000000;;, - 1;3;-0.000000, 2.366877,-0.000000;;, - 2;3;-0.000000, 2.366877,-0.000000;;, - 3;3;-0.000000, 2.366877,-0.000000;;, - 4;3;-0.000000, 2.366877, 0.000000;;, - 5;3; 0.000000, 2.366877, 0.000000;;, - 6;3;-0.000000, 2.366877, 0.000000;;, - 7;3;-0.000000, 2.366877,-0.000000;;, - 8;3;-0.000000, 2.366877, 0.000000;;, - 9;3;-0.000000, 2.366876, 0.000000;;, - 10;3;-0.000000, 2.366877,-0.000000;;, - 11;3;-0.000000, 2.366877, 0.000000;;, - 12;3; 0.000000, 2.366876, 0.000000;;, - 13;3;-0.000000, 2.366877,-0.000000;;, - 14;3;-0.000000, 2.366877,-0.000000;;, - 15;3;-0.000000, 2.366877, 0.000000;;, - 16;3;-0.000000, 2.366877, 0.000000;;, - 17;3;-0.000000, 2.366877, 0.000000;;, - 18;3;-0.000000, 2.366877, 0.000000;;, - 19;3;-0.000000, 2.366877, 0.000000;;, - 20;3;-0.000000, 2.366877, 0.000000;;, - 21;3;-0.000000, 2.366877, 0.000000;;, - 22;3;-0.000000, 2.366877,-0.000000;;, - 23;3;-0.000000, 2.366877, 0.000000;;, - 24;3;-0.000000, 2.366877,-0.000000;;, - 25;3;-0.000000, 2.366877,-0.000000;;, - 26;3;-0.000000, 2.366877,-0.000000;;, - 27;3;-0.000000, 2.366877, 0.000000;;, - 28;3; 0.000000, 2.366877,-0.000000;;, - 29;3;-0.000000, 2.366877, 0.000000;;, - 30;3;-0.000000, 2.366877, 0.000000;;, - 31;3;-0.000000, 2.366877, 0.000000;;, - 32;3;-0.000000, 2.366877, 0.000000;;, - 33;3;-0.000000, 2.366877, 0.000000;;, - 34;3;-0.000000, 2.366877, 0.000000;;, - 35;3;-0.000000, 2.366877,-0.000000;;, - 36;3;-0.000000, 2.366877,-0.000000;;, - 37;3;-0.000000, 2.366877, 0.000000;;, - 38;3;-0.000000, 2.366877, 0.000000;;, - 39;3;-0.000000, 2.366877,-0.000000;;, - 40;3; 0.000000, 2.366876,-0.000000;;, - 41;3;-0.000000, 2.366877,-0.000000;;, - 42;3; 0.000000, 2.366877, 0.000000;;, - 43;3; 0.000000, 2.366877, 0.000000;;, - 44;3; 0.000000, 2.366877, 0.000000;;, - 45;3;-0.000000, 2.366877,-0.000000;;, - 46;3;-0.000000, 2.366877,-0.000000;;, - 47;3;-0.000000, 2.366877, 0.000000;;, - 48;3; 0.000000, 2.366877, 0.000000;;, - 49;3; 0.000000, 2.366877,-0.000000;;, - 50;3; 0.000000, 2.366877, 0.000000;;, - 51;3; 0.000000, 2.366877,-0.000000;;, - 52;3;-0.000000, 2.366877, 0.000000;;, - 53;3;-0.000000, 2.366877,-0.000000;;, - 54;3; 0.000000, 2.366877, 0.000000;;, - 55;3;-0.000000, 2.366877, 0.000000;;, - 56;3; 0.000000, 2.366877,-0.000000;;, - 57;3;-0.000000, 2.366877,-0.000000;;, - 58;3;-0.000000, 2.366877,-0.000000;;, - 59;3;-0.000000, 2.366877, 0.000000;;, - 60;3;-0.000000, 2.366877, 0.000000;;, - 61;3; 0.000000, 2.366877, 0.000000;;, - 62;3;-0.000000, 2.366877,-0.000000;;, - 63;3; 0.000000, 2.366877, 0.000000;;, - 64;3;-0.000000, 2.366877,-0.000000;;, - 65;3;-0.000000, 2.366877, 0.000000;;, - 66;3;-0.000000, 2.366877, 0.000000;;, - 67;3; 0.000000, 2.366877, 0.000000;;, - 68;3; 0.000000, 2.366877,-0.000000;;, - 69;3; 0.000000, 2.366877,-0.000000;;, - 70;3; 0.000000, 2.366876, 0.000000;;, - 71;3;-0.000000, 2.366877,-0.000000;;, - 72;3; 0.000000, 2.366877, 0.000000;;, - 73;3; 0.000000, 2.366877, 0.000000;;, - 74;3; 0.000000, 2.366877, 0.000000;;, - 75;3;-0.000000, 2.366877, 0.000000;;, - 76;3; 0.000000, 2.366877,-0.000000;;, - 77;3;-0.000000, 2.366877,-0.000000;;, - 78;3;-0.000000, 2.366877, 0.000000;;, - 79;3; 0.000000, 2.366877, 0.000000;;, - 80;3; 0.000000, 2.366877,-0.000000;;, - 81;3;-0.000000, 2.366877, 0.000000;;, - 82;3; 0.000000, 2.366877, 0.000000;;, - 83;3;-0.000000, 2.366877,-0.000000;;, - 84;3;-0.000000, 2.366876, 0.000000;;, - 85;3;-0.000000, 2.366877,-0.000000;;, - 86;3; 0.000000, 2.366878,-0.000001;;, - 87;3;-0.000000, 2.366877,-0.000000;;, - 88;3; 0.000000, 2.366877, 0.000000;;, - 89;3; 0.000000, 2.366877, 0.000000;;, - 90;3; 0.000000, 2.366877,-0.000000;;, - 91;3; 0.000000, 2.366877, 0.000000;;, - 92;3; 0.000000, 2.366877, 0.000000;;, - 93;3; 0.000000, 2.366877, 0.000000;;, - 94;3; 0.000000, 2.366877, 0.000000;;, - 95;3; 0.000000, 2.366877,-0.000000;;, - 96;3;-0.000000, 2.366877,-0.000000;;, - 97;3;-0.000000, 2.366877, 0.000000;;, - 98;3;-0.000000, 2.366877,-0.000000;;, - 99;3;-0.000000, 2.366877, 0.000000;;, - 100;3;-0.000000, 2.366877,-0.000000;;, - 101;3;-0.000000, 2.366877, 0.000000;;, - 102;3; 0.000000, 2.366877, 0.000000;;, - 103;3;-0.000000, 2.366877,-0.000000;;, - 104;3; 0.000000, 2.366877, 0.000000;;, - 105;3; 0.000000, 2.366877,-0.000000;;, - 106;3; 0.000000, 2.366877, 0.000000;;, - 107;3;-0.000000, 2.366876,-0.000000;;, - 108;3;-0.000000, 2.366877,-0.000000;;, - 109;3; 0.000000, 2.366876, 0.000000;;, - 110;3; 0.000000, 2.366877, 0.000000;;, - 111;3;-0.000000, 2.366877,-0.000000;;, - 112;3;-0.000000, 2.366877,-0.000000;;, - 113;3; 0.000000, 2.366877,-0.000000;;, - 114;3; 0.000000, 2.366877, 0.000000;;, - 115;3; 0.000000, 2.366877, 0.000000;;, - 116;3; 0.000000, 2.366877,-0.000000;;, - 117;3; 0.000000, 2.366876,-0.000000;;, - 118;3;-0.000000, 2.366878, 0.000000;;, - 119;3;-0.000000, 2.366877,-0.000000;;, - 120;3;-0.000000, 2.366877,-0.000000;;, - 121;3;-0.000000, 2.366877,-0.000000;;, - 122;3; 0.000000, 2.366877, 0.000000;;, - 123;3; 0.000000, 2.366877, 0.000000;;, - 124;3; 0.000000, 2.366877, 0.000000;;, - 125;3; 0.000000, 2.366877, 0.000000;;, - 126;3; 0.000000, 2.366877,-0.000000;;, - 127;3; 0.000000, 2.366877, 0.000000;;, - 128;3; 0.000000, 2.366877,-0.000000;;, - 129;3; 0.000000, 2.366877,-0.000000;;, - 130;3;-0.000000, 2.366877,-0.000000;;, - 131;3;-0.000000, 2.366877,-0.000000;;, - 132;3; 0.000000, 2.366877,-0.000000;;, - 133;3; 0.000000, 2.366877, 0.000000;;, - 134;3; 0.000000, 2.366876, 0.000000;;, - 135;3;-0.000000, 2.366877,-0.000000;;, - 136;3;-0.000000, 2.366877,-0.000000;;, - 137;3;-0.000000, 2.366877,-0.000000;;, - 138;3;-0.000000, 2.366877,-0.000000;;, - 139;3;-0.000000, 2.366877,-0.000000;;, - 140;3;-0.000000, 2.366877,-0.000000;;, - 141;3; 0.000000, 2.366877,-0.000000;;, - 142;3;-0.000000, 2.366877,-0.000000;;, - 143;3; 0.000000, 2.366877, 0.000000;;, - 144;3;-0.000000, 2.366877, 0.000000;;, - 145;3; 0.000000, 2.366877, 0.000000;;, - 146;3; 0.000000, 2.366877, 0.000000;;, - 147;3; 0.000000, 2.366877, 0.000000;;, - 148;3; 0.000000, 2.366877, 0.000000;;, - 149;3;-0.000000, 2.366877,-0.000000;;, - 150;3;-0.000000, 2.366877,-0.000000;;, - 151;3;-0.000000, 2.366877,-0.000000;;, - 152;3;-0.000000, 2.366877,-0.000000;;, - 153;3;-0.000000, 2.366877,-0.000000;;, - 154;3;-0.000000, 2.366877,-0.000000;;, - 155;3;-0.000000, 2.366877,-0.000000;;, - 156;3;-0.000000, 2.366877,-0.000000;;, - 157;3;-0.000000, 2.366877,-0.000000;;, - 158;3;-0.000000, 2.366877,-0.000000;;, - 159;3;-0.000000, 2.366877,-0.000000;;, - 160;3;-0.000000, 2.366877,-0.000000;;, - 161;3;-0.000000, 2.366877,-0.000000;;, - 162;3;-0.000000, 2.366877,-0.000000;;, - 163;3;-0.000000, 2.366877,-0.000000;;, - 164;3;-0.000000, 2.366877,-0.000000;;, - 165;3;-0.000000, 2.366877,-0.000000;;, - 166;3;-0.000000, 2.366877,-0.000000;;, - 167;3;-0.000000, 2.366877,-0.000000;;, - 168;3;-0.000000, 2.366877,-0.000000;;, - 169;3;-0.000000, 2.366877,-0.000000;;, - 170;3;-0.000000, 2.366877,-0.000000;;, - 171;3;-0.000000, 2.366877,-0.000000;;, - 172;3;-0.000000, 2.366877,-0.000000;;, - 173;3;-0.000000, 2.366877,-0.000000;;, - 174;3;-0.000000, 2.366877,-0.000000;;, - 175;3;-0.000000, 2.366877,-0.000000;;, - 176;3;-0.000000, 2.366877,-0.000000;;, - 177;3;-0.000000, 2.366877,-0.000000;;, - 178;3;-0.000000, 2.366877,-0.000000;;, - 179;3;-0.000000, 2.366877,-0.000000;;, - 180;3;-0.000000, 2.366877,-0.000000;;, - 181;3;-0.000000, 2.366877,-0.000000;;, - 182;3;-0.000000, 2.366877,-0.000000;;, - 183;3;-0.000000, 2.366877,-0.000000;;, - 184;3;-0.000000, 2.366877,-0.000000;;, - 185;3;-0.000000, 2.366877,-0.000000;;, - 186;3;-0.000000, 2.366877,-0.000000;;, - 187;3;-0.000000, 2.366877,-0.000000;;, - 188;3;-0.000000, 2.366877,-0.000000;;, - 189;3;-0.000000, 2.366877,-0.000000;;, - 190;3;-0.000000, 2.366877,-0.000000;;, - 191;3;-0.000000, 2.366877,-0.000000;;, - 192;3;-0.000000, 2.366877,-0.000000;;, - 193;3;-0.000000, 2.366877,-0.000000;;, - 194;3;-0.000000, 2.366877,-0.000000;;, - 195;3;-0.000000, 2.366877,-0.000000;;, - 196;3;-0.000000, 2.366877,-0.000000;;, - 197;3;-0.000000, 2.366877,-0.000000;;, - 198;3;-0.000000, 2.366877,-0.000000;;, - 199;3;-0.000000, 2.366877,-0.000000;;, - 200;3;-0.000000, 2.366877,-0.000000;;, - 201;3;-0.000000, 2.366877,-0.000000;;, - 202;3;-0.000000, 2.366877,-0.000000;;, - 203;3;-0.000000, 2.366877,-0.000000;;, - 204;3;-0.000000, 2.366877,-0.000000;;, - 205;3;-0.000000, 2.366877,-0.000000;;, - 206;3;-0.000000, 2.366877,-0.000000;;, - 207;3;-0.000000, 2.366877,-0.000000;;, - 208;3;-0.000000, 2.366877,-0.000000;;, - 209;3;-0.000000, 2.366877,-0.000000;;, - 210;3;-0.000000, 2.366877,-0.000000;;, - 211;3;-0.000000, 2.366877,-0.000000;;, - 212;3;-0.000000, 2.366877,-0.000000;;, - 213;3;-0.000000, 2.366877,-0.000000;;, - 214;3;-0.000000, 2.366877,-0.000000;;, - 215;3;-0.000000, 2.366877,-0.000000;;, - 216;3;-0.000000, 2.366877,-0.000000;;, - 217;3;-0.000000, 2.366877,-0.000000;;, - 218;3;-0.000000, 2.366877,-0.000000;;, - 219;3;-0.000000, 2.366877,-0.000000;;, - 220;3;-0.000000, 2.366877,-0.000000;;, - 221;3;-0.000000, 2.366877,-0.000000;;, - 222;3;-0.000000, 2.366877,-0.000000;;, - 223;3;-0.000000, 2.366877,-0.000000;;, - 224;3;-0.000000, 2.366877,-0.000000;;, - 225;3;-0.000000, 2.366877,-0.000000;;, - 226;3;-0.000000, 2.366877,-0.000000;;, - 227;3;-0.000000, 2.366877,-0.000000;;, - 228;3;-0.000000, 2.366877,-0.000000;;, - 229;3;-0.000000, 2.366877,-0.000000;;, - 230;3;-0.000000, 2.366877,-0.000000;;, - 231;3;-0.000000, 2.366877,-0.000000;;, - 232;3;-0.000000, 2.366877,-0.000000;;, - 233;3;-0.000000, 2.366877,-0.000000;;, - 234;3;-0.000000, 2.366877,-0.000000;;, - 235;3;-0.000000, 2.366877,-0.000000;;, - 236;3;-0.000000, 2.366877,-0.000000;;, - 237;3;-0.000000, 2.366877,-0.000000;;, - 238;3;-0.000000, 2.366877,-0.000000;;, - 239;3;-0.000000, 2.366877,-0.000000;;, - 240;3;-0.000000, 2.366877,-0.000000;;, - 241;3;-0.000000, 2.366877,-0.000000;;, - 242;3;-0.000000, 2.366877,-0.000000;;, - 243;3;-0.000000, 2.366877,-0.000000;;, - 244;3;-0.000000, 2.366877,-0.000000;;, - 245;3;-0.000000, 2.366877,-0.000000;;, - 246;3;-0.000000, 2.366877,-0.000000;;, - 247;3;-0.000000, 2.366877,-0.000000;;, - 248;3;-0.000000, 2.366877,-0.000000;;, - 249;3;-0.000000, 2.366877,-0.000000;;; - } - } - Animation { - {Armature_Bone_005} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 1;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 2;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 3;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 4;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 5;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 6;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 7;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 8;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 9;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 10;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 11;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 12;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 13;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 14;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 15;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 16;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 17;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 18;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 19;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 20;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 21;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 22;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 23;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 24;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 25;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 26;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 27;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 28;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 29;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 30;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 31;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 32;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 33;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 34;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 35;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 36;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 37;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 38;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 39;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 40;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 41;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 42;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 43;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 44;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 45;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 46;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 47;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 48;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 49;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 50;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 51;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 52;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 53;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 54;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 55;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 56;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 57;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 58;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 59;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 60;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 61;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 62;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 63;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 64;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 65;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 66;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 67;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 68;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 69;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 70;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 71;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 72;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 73;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 74;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 75;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 76;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 77;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 78;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 79;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 80;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 81;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 82;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 83;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 84;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 85;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 86;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 87;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 88;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 89;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 90;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 91;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 92;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 93;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 94;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 95;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 96;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 97;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 98;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 99;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 100;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 101;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 102;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 103;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 104;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 105;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 106;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 107;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 108;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 109;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 110;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 111;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 112;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 113;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 114;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 115;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 116;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 117;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 118;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 119;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 120;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 121;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 122;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 123;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 124;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 125;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 126;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 127;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 128;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 129;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 130;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 131;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 132;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 133;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 134;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 135;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 136;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 137;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 138;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 139;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 140;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 141;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 142;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 143;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 144;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 145;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 146;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 147;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 148;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 149;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 150;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 151;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 152;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 153;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 154;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 155;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 156;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 157;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 158;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 159;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 160;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 161;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 162;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 163;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 164;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 165;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 166;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 167;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 168;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 169;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 170;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 171;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 172;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 173;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 174;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 175;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 176;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 177;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 178;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 179;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 180;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 181;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 182;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 183;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 184;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 185;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 186;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 187;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 188;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 189;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 190;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 191;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 192;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 193;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 194;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 195;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 196;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 197;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 198;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 199;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 200;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 201;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 202;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 203;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 204;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 205;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 206;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 207;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 208;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 209;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 210;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 211;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 212;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 213;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 214;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 215;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 216;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 217;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 218;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 219;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 220;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 221;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 222;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 223;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 224;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 225;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 226;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 227;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 228;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 229;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 230;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 231;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 232;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 233;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 234;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 235;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 236;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 237;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 238;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 239;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 240;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 241;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 242;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 243;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 244;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 245;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 246;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 247;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 248;4;-0.627555, 0.000000, 0.000000, 0.778572;;, - 249;4;-0.627555, 0.000000, 0.000000, 0.778572;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3; 0.000000, 0.705560, 0.000000;;, - 1;3; 0.000000, 0.705560, 0.000000;;, - 2;3; 0.000000, 0.705560, 0.000000;;, - 3;3; 0.000000, 0.705560, 0.000000;;, - 4;3; 0.000000, 0.705560, 0.000000;;, - 5;3; 0.000000, 0.705560, 0.000000;;, - 6;3; 0.000000, 0.705560, 0.000000;;, - 7;3; 0.000000, 0.705560, 0.000000;;, - 8;3; 0.000000, 0.705560, 0.000000;;, - 9;3; 0.000000, 0.705560, 0.000000;;, - 10;3; 0.000000, 0.705560, 0.000000;;, - 11;3; 0.000000, 0.705560, 0.000000;;, - 12;3; 0.000000, 0.705560, 0.000000;;, - 13;3; 0.000000, 0.705560, 0.000000;;, - 14;3; 0.000000, 0.705560, 0.000000;;, - 15;3; 0.000000, 0.705560, 0.000000;;, - 16;3; 0.000000, 0.705560, 0.000000;;, - 17;3; 0.000000, 0.705560, 0.000000;;, - 18;3; 0.000000, 0.705560, 0.000000;;, - 19;3; 0.000000, 0.705560, 0.000000;;, - 20;3; 0.000000, 0.705560, 0.000000;;, - 21;3; 0.000000, 0.705560, 0.000000;;, - 22;3; 0.000000, 0.705560, 0.000000;;, - 23;3; 0.000000, 0.705560, 0.000000;;, - 24;3; 0.000000, 0.705560, 0.000000;;, - 25;3; 0.000000, 0.705560, 0.000000;;, - 26;3; 0.000000, 0.705560, 0.000000;;, - 27;3; 0.000000, 0.705560, 0.000000;;, - 28;3; 0.000000, 0.705560, 0.000000;;, - 29;3; 0.000000, 0.705560, 0.000000;;, - 30;3; 0.000000, 0.705560, 0.000000;;, - 31;3; 0.000000, 0.705560, 0.000000;;, - 32;3; 0.000000, 0.705560, 0.000000;;, - 33;3; 0.000000, 0.705560, 0.000000;;, - 34;3; 0.000000, 0.705560, 0.000000;;, - 35;3; 0.000000, 0.705560, 0.000000;;, - 36;3; 0.000000, 0.705560, 0.000000;;, - 37;3; 0.000000, 0.705560, 0.000000;;, - 38;3; 0.000000, 0.705560, 0.000000;;, - 39;3; 0.000000, 0.705560, 0.000000;;, - 40;3; 0.000000, 0.705560, 0.000000;;, - 41;3; 0.000000, 0.705559, 0.000000;;, - 42;3;-0.000000, 0.705560, 0.000000;;, - 43;3; 0.000000, 0.705560,-0.000000;;, - 44;3; 0.000000, 0.705560, 0.000000;;, - 45;3; 0.000000, 0.705560,-0.000000;;, - 46;3; 0.000000, 0.705559, 0.000000;;, - 47;3;-0.000000, 0.705560, 0.000000;;, - 48;3; 0.000000, 0.705560,-0.000000;;, - 49;3; 0.000000, 0.705560, 0.000000;;, - 50;3;-0.000000, 0.705559, 0.000000;;, - 51;3; 0.000000, 0.705560,-0.000000;;, - 52;3;-0.000000, 0.705560, 0.000000;;, - 53;3; 0.000000, 0.705560,-0.000000;;, - 54;3; 0.000000, 0.705560, 0.000000;;, - 55;3; 0.000000, 0.705560,-0.000000;;, - 56;3;-0.000000, 0.705560, 0.000000;;, - 57;3; 0.000000, 0.705559, 0.000000;;, - 58;3;-0.000000, 0.705560, 0.000000;;, - 59;3; 0.000000, 0.705560, 0.000000;;, - 60;3; 0.000000, 0.705560,-0.000000;;, - 61;3; 0.000000, 0.705560, 0.000000;;, - 62;3; 0.000000, 0.705560, 0.000000;;, - 63;3; 0.000000, 0.705560, 0.000000;;, - 64;3; 0.000000, 0.705560,-0.000000;;, - 65;3;-0.000000, 0.705560, 0.000000;;, - 66;3; 0.000000, 0.705560, 0.000000;;, - 67;3;-0.000000, 0.705560, 0.000000;;, - 68;3; 0.000000, 0.705559, 0.000000;;, - 69;3; 0.000000, 0.705560, 0.000000;;, - 70;3; 0.000000, 0.705560, 0.000000;;, - 71;3;-0.000000, 0.705560, 0.000000;;, - 72;3;-0.000000, 0.705560, 0.000000;;, - 73;3;-0.000000, 0.705560, 0.000000;;, - 74;3;-0.000000, 0.705560, 0.000000;;, - 75;3;-0.000000, 0.705560, 0.000000;;, - 76;3; 0.000000, 0.705559, 0.000000;;, - 77;3;-0.000000, 0.705560, 0.000000;;, - 78;3; 0.000000, 0.705560, 0.000000;;, - 79;3;-0.000000, 0.705559, 0.000000;;, - 80;3; 0.000000, 0.705560, 0.000000;;, - 81;3;-0.000000, 0.705560, 0.000000;;, - 82;3; 0.000000, 0.705560, 0.000000;;, - 83;3; 0.000000, 0.705560, 0.000000;;, - 84;3; 0.000000, 0.705560,-0.000000;;, - 85;3;-0.000000, 0.705560, 0.000000;;, - 86;3;-0.000000, 0.705560, 0.000000;;, - 87;3; 0.000000, 0.705560,-0.000000;;, - 88;3; 0.000000, 0.705560, 0.000000;;, - 89;3; 0.000000, 0.705560, 0.000000;;, - 90;3; 0.000000, 0.705560, 0.000000;;, - 91;3; 0.000000, 0.705560, 0.000000;;, - 92;3; 0.000000, 0.705560, 0.000000;;, - 93;3; 0.000000, 0.705560, 0.000000;;, - 94;3; 0.000000, 0.705560, 0.000000;;, - 95;3; 0.000000, 0.705560, 0.000000;;, - 96;3; 0.000000, 0.705560,-0.000000;;, - 97;3; 0.000000, 0.705560,-0.000000;;, - 98;3; 0.000000, 0.705560, 0.000000;;, - 99;3; 0.000000, 0.705560, 0.000000;;, - 100;3;-0.000000, 0.705560,-0.000000;;, - 101;3; 0.000000, 0.705560,-0.000000;;, - 102;3; 0.000000, 0.705559, 0.000000;;, - 103;3;-0.000000, 0.705560,-0.000000;;, - 104;3;-0.000000, 0.705559,-0.000000;;, - 105;3;-0.000000, 0.705560,-0.000000;;, - 106;3; 0.000000, 0.705560, 0.000000;;, - 107;3;-0.000000, 0.705559,-0.000000;;, - 108;3; 0.000000, 0.705560,-0.000000;;, - 109;3; 0.000000, 0.705559,-0.000000;;, - 110;3;-0.000000, 0.705559, 0.000000;;, - 111;3; 0.000000, 0.705560,-0.000000;;, - 112;3; 0.000000, 0.705560, 0.000000;;, - 113;3; 0.000000, 0.705560,-0.000000;;, - 114;3;-0.000000, 0.705559, 0.000000;;, - 115;3; 0.000000, 0.705560, 0.000000;;, - 116;3;-0.000000, 0.705560,-0.000000;;, - 117;3; 0.000000, 0.705560, 0.000000;;, - 118;3; 0.000000, 0.705560,-0.000000;;, - 119;3; 0.000000, 0.705560, 0.000000;;, - 120;3; 0.000000, 0.705560,-0.000000;;, - 121;3; 0.000000, 0.705560,-0.000000;;, - 122;3;-0.000000, 0.705560,-0.000000;;, - 123;3; 0.000000, 0.705560, 0.000000;;, - 124;3; 0.000000, 0.705560, 0.000000;;, - 125;3; 0.000000, 0.705560, 0.000000;;, - 126;3;-0.000000, 0.705560, 0.000000;;, - 127;3;-0.000000, 0.705560, 0.000000;;, - 128;3;-0.000000, 0.705560,-0.000000;;, - 129;3; 0.000000, 0.705560, 0.000000;;, - 130;3; 0.000000, 0.705559, 0.000000;;, - 131;3; 0.000000, 0.705560, 0.000000;;, - 132;3; 0.000000, 0.705560, 0.000000;;, - 133;3; 0.000000, 0.705560,-0.000000;;, - 134;3; 0.000000, 0.705560, 0.000000;;, - 135;3; 0.000000, 0.705560, 0.000000;;, - 136;3;-0.000000, 0.705560,-0.000000;;, - 137;3; 0.000000, 0.705560, 0.000000;;, - 138;3;-0.000000, 0.705559, 0.000000;;, - 139;3;-0.000000, 0.705560,-0.000000;;, - 140;3; 0.000000, 0.705560, 0.000000;;, - 141;3; 0.000000, 0.705560, 0.000000;;, - 142;3; 0.000000, 0.705560, 0.000000;;, - 143;3; 0.000000, 0.705560,-0.000000;;, - 144;3; 0.000000, 0.705560, 0.000000;;, - 145;3; 0.000000, 0.705560,-0.000000;;, - 146;3; 0.000000, 0.705560, 0.000000;;, - 147;3; 0.000000, 0.705560,-0.000000;;, - 148;3; 0.000000, 0.705560, 0.000000;;, - 149;3; 0.000000, 0.705560, 0.000000;;, - 150;3; 0.000000, 0.705560, 0.000000;;, - 151;3; 0.000000, 0.705560, 0.000000;;, - 152;3; 0.000000, 0.705560, 0.000000;;, - 153;3; 0.000000, 0.705560, 0.000000;;, - 154;3; 0.000000, 0.705560, 0.000000;;, - 155;3; 0.000000, 0.705560, 0.000000;;, - 156;3; 0.000000, 0.705560, 0.000000;;, - 157;3; 0.000000, 0.705560, 0.000000;;, - 158;3; 0.000000, 0.705560, 0.000000;;, - 159;3; 0.000000, 0.705560, 0.000000;;, - 160;3; 0.000000, 0.705560, 0.000000;;, - 161;3; 0.000000, 0.705560, 0.000000;;, - 162;3; 0.000000, 0.705560, 0.000000;;, - 163;3; 0.000000, 0.705560, 0.000000;;, - 164;3; 0.000000, 0.705560, 0.000000;;, - 165;3; 0.000000, 0.705560, 0.000000;;, - 166;3; 0.000000, 0.705560, 0.000000;;, - 167;3; 0.000000, 0.705560, 0.000000;;, - 168;3; 0.000000, 0.705560, 0.000000;;, - 169;3; 0.000000, 0.705560, 0.000000;;, - 170;3; 0.000000, 0.705560, 0.000000;;, - 171;3; 0.000000, 0.705560, 0.000000;;, - 172;3; 0.000000, 0.705560, 0.000000;;, - 173;3; 0.000000, 0.705560, 0.000000;;, - 174;3; 0.000000, 0.705560, 0.000000;;, - 175;3; 0.000000, 0.705560, 0.000000;;, - 176;3; 0.000000, 0.705560, 0.000000;;, - 177;3; 0.000000, 0.705560, 0.000000;;, - 178;3; 0.000000, 0.705560, 0.000000;;, - 179;3; 0.000000, 0.705560, 0.000000;;, - 180;3; 0.000000, 0.705560, 0.000000;;, - 181;3; 0.000000, 0.705560, 0.000000;;, - 182;3; 0.000000, 0.705560, 0.000000;;, - 183;3; 0.000000, 0.705560, 0.000000;;, - 184;3; 0.000000, 0.705560, 0.000000;;, - 185;3; 0.000000, 0.705560, 0.000000;;, - 186;3; 0.000000, 0.705560, 0.000000;;, - 187;3; 0.000000, 0.705560, 0.000000;;, - 188;3; 0.000000, 0.705560, 0.000000;;, - 189;3; 0.000000, 0.705560, 0.000000;;, - 190;3; 0.000000, 0.705560, 0.000000;;, - 191;3; 0.000000, 0.705560, 0.000000;;, - 192;3; 0.000000, 0.705560, 0.000000;;, - 193;3; 0.000000, 0.705560, 0.000000;;, - 194;3; 0.000000, 0.705560, 0.000000;;, - 195;3; 0.000000, 0.705560, 0.000000;;, - 196;3; 0.000000, 0.705560, 0.000000;;, - 197;3; 0.000000, 0.705560, 0.000000;;, - 198;3; 0.000000, 0.705560, 0.000000;;, - 199;3; 0.000000, 0.705560, 0.000000;;, - 200;3; 0.000000, 0.705560, 0.000000;;, - 201;3; 0.000000, 0.705560, 0.000000;;, - 202;3; 0.000000, 0.705560, 0.000000;;, - 203;3; 0.000000, 0.705560, 0.000000;;, - 204;3; 0.000000, 0.705560, 0.000000;;, - 205;3; 0.000000, 0.705560, 0.000000;;, - 206;3; 0.000000, 0.705560, 0.000000;;, - 207;3; 0.000000, 0.705560, 0.000000;;, - 208;3; 0.000000, 0.705560, 0.000000;;, - 209;3; 0.000000, 0.705560, 0.000000;;, - 210;3; 0.000000, 0.705560, 0.000000;;, - 211;3; 0.000000, 0.705560, 0.000000;;, - 212;3; 0.000000, 0.705560, 0.000000;;, - 213;3; 0.000000, 0.705560, 0.000000;;, - 214;3; 0.000000, 0.705560, 0.000000;;, - 215;3; 0.000000, 0.705560, 0.000000;;, - 216;3; 0.000000, 0.705560, 0.000000;;, - 217;3; 0.000000, 0.705560, 0.000000;;, - 218;3; 0.000000, 0.705560, 0.000000;;, - 219;3; 0.000000, 0.705560, 0.000000;;, - 220;3; 0.000000, 0.705560, 0.000000;;, - 221;3; 0.000000, 0.705560, 0.000000;;, - 222;3; 0.000000, 0.705560, 0.000000;;, - 223;3; 0.000000, 0.705560, 0.000000;;, - 224;3; 0.000000, 0.705560, 0.000000;;, - 225;3; 0.000000, 0.705560, 0.000000;;, - 226;3; 0.000000, 0.705560, 0.000000;;, - 227;3; 0.000000, 0.705560, 0.000000;;, - 228;3; 0.000000, 0.705560, 0.000000;;, - 229;3; 0.000000, 0.705560, 0.000000;;, - 230;3; 0.000000, 0.705560, 0.000000;;, - 231;3; 0.000000, 0.705560, 0.000000;;, - 232;3; 0.000000, 0.705560, 0.000000;;, - 233;3; 0.000000, 0.705560, 0.000000;;, - 234;3; 0.000000, 0.705560, 0.000000;;, - 235;3; 0.000000, 0.705560, 0.000000;;, - 236;3; 0.000000, 0.705560, 0.000000;;, - 237;3; 0.000000, 0.705560, 0.000000;;, - 238;3; 0.000000, 0.705560, 0.000000;;, - 239;3; 0.000000, 0.705560, 0.000000;;, - 240;3; 0.000000, 0.705560, 0.000000;;, - 241;3; 0.000000, 0.705560, 0.000000;;, - 242;3; 0.000000, 0.705560, 0.000000;;, - 243;3; 0.000000, 0.705560, 0.000000;;, - 244;3; 0.000000, 0.705560, 0.000000;;, - 245;3; 0.000000, 0.705560, 0.000000;;, - 246;3; 0.000000, 0.705560, 0.000000;;, - 247;3; 0.000000, 0.705560, 0.000000;;, - 248;3; 0.000000, 0.705560, 0.000000;;, - 249;3; 0.000000, 0.705560, 0.000000;;; - } - } - Animation { - {Armature_Bone_016} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.740628,-0.663376, 0.071246,-0.079543;;, - 1;4;-0.741002,-0.662914, 0.071197,-0.079583;;, - 2;4;-0.742135,-0.661518, 0.071047,-0.079705;;, - 3;4;-0.744027,-0.659185, 0.070796,-0.079908;;, - 4;4;-0.746663,-0.655935, 0.070447,-0.080191;;, - 5;4;-0.750004,-0.651815, 0.070005,-0.080550;;, - 6;4;-0.753985,-0.646908, 0.069478,-0.080978;;, - 7;4;-0.758507,-0.641333, 0.068879,-0.081463;;, - 8;4;-0.763443,-0.635247, 0.068225,-0.081993;;, - 9;4;-0.768640,-0.628840, 0.067537,-0.082552;;, - 10;4;-0.773926,-0.622323, 0.066837,-0.083119;;, - 11;4;-0.779123,-0.615915, 0.066149,-0.083677;;, - 12;4;-0.784059,-0.609829, 0.065495,-0.084208;;, - 13;4;-0.788581,-0.604254, 0.064897,-0.084693;;, - 14;4;-0.792561,-0.599347, 0.064370,-0.085121;;, - 15;4;-0.795903,-0.595227, 0.063927,-0.085480;;, - 16;4;-0.798539,-0.591977, 0.063578,-0.085763;;, - 17;4;-0.800431,-0.589644, 0.063328,-0.085966;;, - 18;4;-0.801563,-0.588248, 0.063178,-0.086088;;, - 19;4;-0.801938,-0.587786, 0.063128,-0.086128;;, - 20;4;-0.801600,-0.588203, 0.063173,-0.086091;;, - 21;4;-0.800579,-0.589462, 0.063308,-0.085982;;, - 22;4;-0.798871,-0.591568, 0.063534,-0.085798;;, - 23;4;-0.796488,-0.594505, 0.063850,-0.085542;;, - 24;4;-0.793460,-0.598239, 0.064251,-0.085217;;, - 25;4;-0.789837,-0.602706, 0.064730,-0.084828;;, - 26;4;-0.785696,-0.607811, 0.065279,-0.084383;;, - 27;4;-0.781138,-0.613431, 0.065882,-0.083894;;, - 28;4;-0.776286,-0.619413, 0.066525,-0.083373;;, - 29;4;-0.771283,-0.625581, 0.067187,-0.082835;;, - 30;4;-0.766280,-0.631750, 0.067850,-0.082298;;, - 31;4;-0.761428,-0.637731, 0.068492,-0.081777;;, - 32;4;-0.756870,-0.643351, 0.069096,-0.081287;;, - 33;4;-0.752729,-0.648457, 0.069644,-0.080843;;, - 34;4;-0.749106,-0.652923, 0.070124,-0.080454;;, - 35;4;-0.746078,-0.656657, 0.070525,-0.080128;;, - 36;4;-0.743695,-0.659595, 0.070840,-0.079872;;, - 37;4;-0.741987,-0.661700, 0.071066,-0.079689;;, - 38;4;-0.740966,-0.662959, 0.071202,-0.079579;;, - 39;4;-0.740628,-0.663376, 0.071246,-0.079543;;, - 40;4;-0.740791,-0.662748, 0.069323,-0.079755;;, - 41;4;-0.741281,-0.660850, 0.063511,-0.080429;;, - 42;4;-0.742094,-0.657676, 0.053791,-0.081623;;, - 43;4;-0.743215,-0.653248, 0.040230,-0.083397;;, - 44;4;-0.744624,-0.647620, 0.022994,-0.085812;;, - 45;4;-0.746284,-0.640887, 0.002376,-0.088926;;, - 46;4;-0.748150,-0.633191,-0.021191,-0.092789;;, - 47;4;-0.750161,-0.624720,-0.047134,-0.097439;;, - 48;4;-0.752247,-0.615703,-0.074747,-0.102898;;, - 49;4;-0.754329,-0.606405,-0.103222,-0.109166;;, - 50;4;-0.756327,-0.597107,-0.131697,-0.116224;;, - 51;4;-0.758161,-0.588090,-0.159309,-0.124030;;, - 52;4;-0.759759,-0.579619,-0.185252,-0.132526;;, - 53;4;-0.761061,-0.571923,-0.208820,-0.141639;;, - 54;4;-0.762019,-0.565191,-0.229438,-0.151291;;, - 55;4;-0.762601,-0.559563,-0.246674,-0.161400;;, - 56;4;-0.762787,-0.555134,-0.260235,-0.171889;;, - 57;4;-0.762568,-0.551960,-0.269955,-0.182685;;, - 58;4;-0.761945,-0.550062,-0.275767,-0.193722;;, - 59;4;-0.760926,-0.549434,-0.277690,-0.204943;;, - 60;4;-0.756388,-0.552376,-0.276218,-0.218008;;, - 61;4;-0.745185,-0.561227,-0.271787,-0.234475;;, - 62;4;-0.727767,-0.575620,-0.264582,-0.253827;;, - 63;4;-0.705427,-0.594445,-0.255158,-0.275020;;, - 64;4;-0.680393,-0.615770,-0.244482,-0.296485;;, - 65;4;-0.655527,-0.637095,-0.233807,-0.316382;;, - 66;4;-0.633676,-0.655920,-0.224383,-0.333026;;, - 67;4;-0.617022,-0.670313,-0.217178,-0.345263;;, - 68;4;-0.606803,-0.679164,-0.212746,-0.352571;;, - 69;4;-0.603413,-0.682106,-0.211274,-0.354950;;, - 70;4;-0.603780,-0.681781,-0.211436,-0.354748;;, - 71;4;-0.604889,-0.680803,-0.211926,-0.354130;;, - 72;4;-0.606748,-0.679164,-0.212746,-0.353082;;, - 73;4;-0.609359,-0.676865,-0.213897,-0.351590;;, - 74;4;-0.612717,-0.673910,-0.215377,-0.349642;;, - 75;4;-0.616811,-0.670313,-0.217178,-0.347229;;, - 76;4;-0.621618,-0.666093,-0.219290,-0.344346;;, - 77;4;-0.627106,-0.661282,-0.221698,-0.340991;;, - 78;4;-0.633231,-0.655920,-0.224383,-0.337169;;, - 79;4;-0.639938,-0.650058,-0.227317,-0.332890;;, - 80;4;-0.647159,-0.643759,-0.230470,-0.328168;;, - 81;4;-0.654814,-0.637095,-0.233807,-0.323026;;, - 82;4;-0.662812,-0.630148,-0.237284,-0.317494;;, - 83;4;-0.671054,-0.623008,-0.240859,-0.311606;;, - 84;4;-0.679435,-0.615770,-0.244482,-0.305402;;, - 85;4;-0.687845,-0.608532,-0.248106,-0.298928;;, - 86;4;-0.696175,-0.601392,-0.251680,-0.292232;;, - 87;4;-0.704316,-0.594445,-0.255158,-0.285364;;, - 88;4;-0.712170,-0.587781,-0.258494,-0.278373;;, - 89;4;-0.719642,-0.581482,-0.261647,-0.271310;;, - 90;4;-0.726651,-0.575620,-0.264582,-0.264221;;, - 91;4;-0.733125,-0.570258,-0.267266,-0.257149;;, - 92;4;-0.739006,-0.565447,-0.269674,-0.250133;;, - 93;4;-0.744247,-0.561227,-0.271787,-0.243209;;, - 94;4;-0.748812,-0.557630,-0.273588,-0.236406;;, - 95;4;-0.752677,-0.554675,-0.275067,-0.229749;;, - 96;4;-0.755824,-0.552376,-0.276218,-0.223259;;, - 97;4;-0.758248,-0.550737,-0.277038,-0.216953;;, - 98;4;-0.759947,-0.549759,-0.277528,-0.210845;;, - 99;4;-0.760926,-0.549434,-0.277690,-0.204943;;, - 100;4;-0.761562,-0.549766,-0.275816,-0.198868;;, - 101;4;-0.762211,-0.550786,-0.270148,-0.192241;;, - 102;4;-0.762851,-0.552534,-0.260664,-0.185087;;, - 103;4;-0.763453,-0.555041,-0.247419,-0.177449;;, - 104;4;-0.763986,-0.558326,-0.230569,-0.169388;;, - 105;4;-0.764410,-0.562395,-0.210391,-0.160989;;, - 106;4;-0.764683,-0.567235,-0.187294,-0.152362;;, - 107;4;-0.764760,-0.572809,-0.161828,-0.143638;;, - 108;4;-0.764596,-0.579057,-0.134672,-0.134969;;, - 109;4;-0.764149,-0.585897,-0.106602,-0.126513;;, - 110;4;-0.763383,-0.593226,-0.078452,-0.118433;;, - 111;4;-0.762270,-0.600930,-0.051056,-0.110880;;, - 112;4;-0.760792,-0.608888,-0.025198,-0.103985;;, - 113;4;-0.758943,-0.616983,-0.001564,-0.097855;;, - 114;4;-0.756724,-0.625106, 0.019283,-0.092565;;, - 115;4;-0.754146,-0.633161, 0.036919,-0.088163;;, - 116;4;-0.751226,-0.641071, 0.051054,-0.084669;;, - 117;4;-0.747983,-0.648773, 0.061520,-0.082082;;, - 118;4;-0.744443,-0.656219, 0.068247,-0.080383;;, - 119;4;-0.740628,-0.663376, 0.071246,-0.079543;;, - 120;4;-0.734913,-0.671327, 0.072459,-0.080081;;, - 121;4;-0.726261,-0.680506, 0.073694,-0.082396;;, - 122;4;-0.717019,-0.688975, 0.074734,-0.085569;;, - 123;4;-0.710403,-0.694538, 0.075374,-0.088103;;, - 124;4;-0.708153,-0.696337, 0.075572,-0.089013;;, - 125;4;-0.708153,-0.696337, 0.075572,-0.089013;;, - 126;4;-0.708153,-0.696337, 0.075572,-0.089013;;, - 127;4;-0.708153,-0.696337, 0.075572,-0.089013;;, - 128;4;-0.708153,-0.696337, 0.075572,-0.089013;;, - 129;4;-0.708153,-0.696337, 0.075572,-0.089013;;, - 130;4;-0.715973,-0.690672, 0.075089,-0.089850;;, - 131;4;-0.739998,-0.670231, 0.073304,-0.092402;;, - 132;4;-0.776206,-0.631944, 0.069878,-0.096206;;, - 133;4;-0.814843,-0.578688, 0.064997,-0.100192;;, - 134;4;-0.847524,-0.517193, 0.059247,-0.103467;;, - 135;4;-0.880596,-0.445670, 0.052193,-0.106548;;, - 136;4;-0.920335,-0.357776, 0.043151,-0.109989;;, - 137;4;-0.957960,-0.257849, 0.033060,-0.113093;;, - 138;4;-0.983087,-0.155994, 0.023513,-0.115100;;, - 139;4;-0.991299,-0.060719, 0.015600,-0.115744;;, - 140;4;-0.944235, 0.049763, 0.060076,-0.150387;;, - 141;4;-0.811671, 0.189965, 0.198513,-0.247966;;, - 142;4;-0.641460, 0.327090, 0.379569,-0.373257;;, - 143;4;-0.508895, 0.420518, 0.521608,-0.470836;;, - 144;4;-0.461831, 0.451418, 0.572210,-0.505480;;, - 145;4;-0.486613, 0.352325, 0.527680,-0.467619;;, - 146;4;-0.556416, 0.073211, 0.402252,-0.360976;;, - 147;4;-0.646043,-0.285169, 0.241204,-0.224047;;, - 148;4;-0.715846,-0.564283, 0.115777,-0.117404;;, - 149;4;-0.740628,-0.663376, 0.071246,-0.079543;;, - 150;4;-0.740628,-0.663376, 0.071246,-0.079543;;, - 151;4;-0.740628,-0.663376, 0.071246,-0.079543;;, - 152;4;-0.740628,-0.663376, 0.071246,-0.079543;;, - 153;4;-0.740628,-0.663376, 0.071246,-0.079543;;, - 154;4;-0.740628,-0.663376, 0.071246,-0.079543;;, - 155;4;-0.740628,-0.663376, 0.071246,-0.079543;;, - 156;4;-0.740628,-0.663376, 0.071246,-0.079543;;, - 157;4;-0.740628,-0.663376, 0.071246,-0.079543;;, - 158;4;-0.740628,-0.663376, 0.071246,-0.079543;;, - 159;4;-0.740628,-0.663376, 0.071246,-0.079543;;, - 160;4;-0.740628,-0.663376, 0.071246,-0.079543;;, - 161;4;-0.740628,-0.663376, 0.071246,-0.079543;;, - 162;4;-0.740628,-0.663376, 0.071246,-0.079543;;, - 163;4;-0.740628,-0.663376, 0.071246,-0.079543;;, - 164;4;-0.740628,-0.663376, 0.071246,-0.079543;;, - 165;4;-0.740628,-0.663376, 0.071246,-0.079543;;, - 166;4;-0.740628,-0.663376, 0.071246,-0.079543;;, - 167;4;-0.740628,-0.663376, 0.071246,-0.079543;;, - 168;4;-0.740628,-0.663376, 0.071246,-0.079543;;, - 169;4;-0.740628,-0.663376, 0.071246,-0.079543;;, - 170;4;-0.740628,-0.663376, 0.071246,-0.079543;;, - 171;4;-0.740628,-0.663376, 0.071246,-0.079543;;, - 172;4;-0.740628,-0.663376, 0.071246,-0.079543;;, - 173;4;-0.740628,-0.663376, 0.071246,-0.079543;;, - 174;4;-0.740628,-0.663376, 0.071246,-0.079543;;, - 175;4;-0.740628,-0.663376, 0.071246,-0.079543;;, - 176;4;-0.740628,-0.663376, 0.071246,-0.079543;;, - 177;4;-0.740628,-0.663376, 0.071246,-0.079543;;, - 178;4;-0.740628,-0.663376, 0.071246,-0.079543;;, - 179;4;-0.740628,-0.663376, 0.071246,-0.079543;;, - 180;4;-0.740628,-0.663376, 0.071246,-0.079543;;, - 181;4;-0.740628,-0.663376, 0.071246,-0.079543;;, - 182;4;-0.740628,-0.663376, 0.071246,-0.079543;;, - 183;4;-0.740628,-0.663376, 0.071246,-0.079543;;, - 184;4;-0.740628,-0.663376, 0.071246,-0.079543;;, - 185;4;-0.740628,-0.663376, 0.071246,-0.079543;;, - 186;4;-0.740628,-0.663376, 0.071246,-0.079543;;, - 187;4;-0.740628,-0.663376, 0.071246,-0.079543;;, - 188;4;-0.740628,-0.663376, 0.071246,-0.079543;;, - 189;4;-0.740628,-0.663376, 0.071246,-0.079543;;, - 190;4;-0.740628,-0.663376, 0.071246,-0.079543;;, - 191;4;-0.740628,-0.663376, 0.071246,-0.079543;;, - 192;4;-0.740628,-0.663376, 0.071246,-0.079543;;, - 193;4;-0.740628,-0.663376, 0.071246,-0.079543;;, - 194;4;-0.740628,-0.663376, 0.071246,-0.079543;;, - 195;4;-0.740628,-0.663376, 0.071246,-0.079543;;, - 196;4;-0.740628,-0.663376, 0.071246,-0.079543;;, - 197;4;-0.740628,-0.663376, 0.071246,-0.079543;;, - 198;4;-0.740628,-0.663376, 0.071246,-0.079543;;, - 199;4;-0.740628,-0.663376, 0.071246,-0.079543;;, - 200;4;-0.740628,-0.663376, 0.071246,-0.079543;;, - 201;4;-0.740628,-0.663376, 0.071246,-0.079543;;, - 202;4;-0.740628,-0.663376, 0.071246,-0.079543;;, - 203;4;-0.740628,-0.663376, 0.071246,-0.079543;;, - 204;4;-0.740628,-0.663376, 0.071246,-0.079543;;, - 205;4;-0.740628,-0.663376, 0.071246,-0.079543;;, - 206;4;-0.740628,-0.663376, 0.071246,-0.079543;;, - 207;4;-0.740628,-0.663376, 0.071246,-0.079543;;, - 208;4;-0.740628,-0.663376, 0.071246,-0.079543;;, - 209;4;-0.740628,-0.663376, 0.071246,-0.079543;;, - 210;4;-0.740628,-0.663376, 0.071246,-0.079543;;, - 211;4;-0.740628,-0.663376, 0.071246,-0.079543;;, - 212;4;-0.740628,-0.663376, 0.071246,-0.079543;;, - 213;4;-0.740628,-0.663376, 0.071246,-0.079543;;, - 214;4;-0.740628,-0.663376, 0.071246,-0.079543;;, - 215;4;-0.740628,-0.663376, 0.071246,-0.079543;;, - 216;4;-0.740628,-0.663376, 0.071246,-0.079543;;, - 217;4;-0.740628,-0.663376, 0.071246,-0.079543;;, - 218;4;-0.740628,-0.663376, 0.071246,-0.079543;;, - 219;4;-0.740628,-0.663376, 0.071246,-0.079543;;, - 220;4;-0.740628,-0.663376, 0.071246,-0.079543;;, - 221;4;-0.740628,-0.663376, 0.071246,-0.079543;;, - 222;4;-0.740628,-0.663376, 0.071246,-0.079543;;, - 223;4;-0.740628,-0.663376, 0.071246,-0.079543;;, - 224;4;-0.740628,-0.663376, 0.071246,-0.079543;;, - 225;4;-0.740628,-0.663376, 0.071246,-0.079543;;, - 226;4;-0.740628,-0.663376, 0.071246,-0.079543;;, - 227;4;-0.740628,-0.663376, 0.071246,-0.079543;;, - 228;4;-0.740628,-0.663376, 0.071246,-0.079543;;, - 229;4;-0.740628,-0.663376, 0.071246,-0.079543;;, - 230;4;-0.740628,-0.663376, 0.071246,-0.079543;;, - 231;4;-0.740628,-0.663376, 0.071246,-0.079543;;, - 232;4;-0.740628,-0.663376, 0.071246,-0.079543;;, - 233;4;-0.740628,-0.663376, 0.071246,-0.079543;;, - 234;4;-0.740628,-0.663376, 0.071246,-0.079543;;, - 235;4;-0.740628,-0.663376, 0.071246,-0.079543;;, - 236;4;-0.740628,-0.663376, 0.071246,-0.079543;;, - 237;4;-0.740628,-0.663376, 0.071246,-0.079543;;, - 238;4;-0.740628,-0.663376, 0.071246,-0.079543;;, - 239;4;-0.740628,-0.663376, 0.071246,-0.079543;;, - 240;4;-0.740628,-0.663376, 0.071246,-0.079543;;, - 241;4;-0.740628,-0.663376, 0.071246,-0.079543;;, - 242;4;-0.740628,-0.663376, 0.071246,-0.079543;;, - 243;4;-0.740628,-0.663376, 0.071246,-0.079543;;, - 244;4;-0.740628,-0.663376, 0.071246,-0.079543;;, - 245;4;-0.740628,-0.663376, 0.071246,-0.079543;;, - 246;4;-0.740628,-0.663376, 0.071246,-0.079543;;, - 247;4;-0.740628,-0.663376, 0.071246,-0.079543;;, - 248;4;-0.740628,-0.663376, 0.071246,-0.079543;;, - 249;4;-0.740628,-0.663376, 0.071246,-0.079543;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3; 0.000000, 1.078077, 0.000000;;, - 1;3; 0.000000, 1.078077, 0.000000;;, - 2;3; 0.000000, 1.078077, 0.000000;;, - 3;3; 0.000000, 1.078077, 0.000000;;, - 4;3; 0.000000, 1.078077, 0.000000;;, - 5;3; 0.000000, 1.078077, 0.000000;;, - 6;3; 0.000000, 1.078077, 0.000000;;, - 7;3; 0.000000, 1.078077, 0.000000;;, - 8;3; 0.000000, 1.078077, 0.000000;;, - 9;3; 0.000000, 1.078077, 0.000000;;, - 10;3; 0.000000, 1.078077, 0.000000;;, - 11;3; 0.000000, 1.078077, 0.000000;;, - 12;3; 0.000000, 1.078077, 0.000000;;, - 13;3; 0.000000, 1.078077, 0.000000;;, - 14;3; 0.000000, 1.078077, 0.000000;;, - 15;3; 0.000000, 1.078077, 0.000000;;, - 16;3; 0.000000, 1.078077, 0.000000;;, - 17;3; 0.000000, 1.078077, 0.000000;;, - 18;3; 0.000000, 1.078077, 0.000000;;, - 19;3; 0.000000, 1.078077, 0.000000;;, - 20;3; 0.000000, 1.078077, 0.000000;;, - 21;3; 0.000000, 1.078077, 0.000000;;, - 22;3; 0.000000, 1.078077, 0.000000;;, - 23;3; 0.000000, 1.078077, 0.000000;;, - 24;3; 0.000000, 1.078077, 0.000000;;, - 25;3; 0.000000, 1.078077, 0.000000;;, - 26;3; 0.000000, 1.078077, 0.000000;;, - 27;3; 0.000000, 1.078077, 0.000000;;, - 28;3; 0.000000, 1.078077, 0.000000;;, - 29;3; 0.000000, 1.078077, 0.000000;;, - 30;3; 0.000000, 1.078077, 0.000000;;, - 31;3; 0.000000, 1.078077, 0.000000;;, - 32;3; 0.000000, 1.078077, 0.000000;;, - 33;3; 0.000000, 1.078077, 0.000000;;, - 34;3; 0.000000, 1.078077, 0.000000;;, - 35;3; 0.000000, 1.078077, 0.000000;;, - 36;3; 0.000000, 1.078077, 0.000000;;, - 37;3; 0.000000, 1.078077, 0.000000;;, - 38;3; 0.000000, 1.078077, 0.000000;;, - 39;3; 0.000000, 1.078077, 0.000000;;, - 40;3; 0.000000, 1.078077, 0.000000;;, - 41;3;-0.000000, 1.078077,-0.000000;;, - 42;3; 0.000000, 1.078077,-0.000000;;, - 43;3; 0.000000, 1.078077, 0.000000;;, - 44;3;-0.000000, 1.078077,-0.000000;;, - 45;3;-0.000000, 1.078077,-0.000000;;, - 46;3;-0.000000, 1.078077,-0.000000;;, - 47;3; 0.000000, 1.078077,-0.000000;;, - 48;3; 0.000000, 1.078077,-0.000000;;, - 49;3; 0.000000, 1.078077,-0.000000;;, - 50;3; 0.000000, 1.078077,-0.000000;;, - 51;3;-0.000000, 1.078077,-0.000000;;, - 52;3;-0.000000, 1.078077, 0.000000;;, - 53;3; 0.000000, 1.078077, 0.000000;;, - 54;3;-0.000000, 1.078077,-0.000000;;, - 55;3; 0.000000, 1.078077, 0.000000;;, - 56;3; 0.000000, 1.078077, 0.000000;;, - 57;3; 0.000000, 1.078077, 0.000000;;, - 58;3; 0.000000, 1.078077, 0.000000;;, - 59;3; 0.000000, 1.078077, 0.000000;;, - 60;3;-0.000000, 1.078077, 0.000000;;, - 61;3; 0.000000, 1.078077, 0.000000;;, - 62;3; 0.000000, 1.078077, 0.000000;;, - 63;3; 0.000000, 1.078077, 0.000000;;, - 64;3; 0.000000, 1.078077, 0.000000;;, - 65;3;-0.000000, 1.078077,-0.000000;;, - 66;3; 0.000000, 1.078077, 0.000000;;, - 67;3; 0.000000, 1.078077, 0.000000;;, - 68;3; 0.000000, 1.078077,-0.000000;;, - 69;3; 0.000000, 1.078077, 0.000000;;, - 70;3;-0.000000, 1.078077, 0.000000;;, - 71;3;-0.000000, 1.078077, 0.000000;;, - 72;3;-0.000000, 1.078077, 0.000000;;, - 73;3; 0.000000, 1.078077, 0.000000;;, - 74;3; 0.000000, 1.078077, 0.000000;;, - 75;3; 0.000000, 1.078077, 0.000000;;, - 76;3; 0.000000, 1.078077,-0.000000;;, - 77;3;-0.000000, 1.078077, 0.000000;;, - 78;3;-0.000000, 1.078077, 0.000000;;, - 79;3; 0.000000, 1.078077, 0.000000;;, - 80;3; 0.000000, 1.078077, 0.000000;;, - 81;3;-0.000000, 1.078077,-0.000000;;, - 82;3; 0.000000, 1.078077, 0.000000;;, - 83;3; 0.000000, 1.078077, 0.000000;;, - 84;3; 0.000000, 1.078077, 0.000000;;, - 85;3; 0.000000, 1.078077, 0.000000;;, - 86;3; 0.000000, 1.078077, 0.000000;;, - 87;3; 0.000000, 1.078077, 0.000000;;, - 88;3; 0.000000, 1.078077, 0.000000;;, - 89;3;-0.000000, 1.078077, 0.000000;;, - 90;3; 0.000000, 1.078077, 0.000000;;, - 91;3; 0.000000, 1.078077, 0.000000;;, - 92;3; 0.000000, 1.078077, 0.000000;;, - 93;3;-0.000000, 1.078077, 0.000000;;, - 94;3;-0.000000, 1.078077,-0.000000;;, - 95;3;-0.000000, 1.078077, 0.000000;;, - 96;3; 0.000000, 1.078077, 0.000000;;, - 97;3;-0.000000, 1.078077, 0.000000;;, - 98;3;-0.000000, 1.078077, 0.000000;;, - 99;3; 0.000000, 1.078077, 0.000000;;, - 100;3;-0.000000, 1.078077,-0.000000;;, - 101;3;-0.000000, 1.078077,-0.000000;;, - 102;3; 0.000000, 1.078077, 0.000000;;, - 103;3; 0.000000, 1.078077, 0.000000;;, - 104;3;-0.000000, 1.078077, 0.000000;;, - 105;3;-0.000000, 1.078077, 0.000000;;, - 106;3; 0.000000, 1.078077,-0.000000;;, - 107;3;-0.000000, 1.078077,-0.000000;;, - 108;3; 0.000000, 1.078077,-0.000000;;, - 109;3;-0.000000, 1.078077, 0.000000;;, - 110;3;-0.000000, 1.078077, 0.000000;;, - 111;3; 0.000000, 1.078077, 0.000000;;, - 112;3;-0.000000, 1.078077, 0.000000;;, - 113;3; 0.000000, 1.078077, 0.000000;;, - 114;3; 0.000000, 1.078077, 0.000000;;, - 115;3; 0.000000, 1.078077,-0.000000;;, - 116;3; 0.000000, 1.078077,-0.000000;;, - 117;3; 0.000000, 1.078077, 0.000000;;, - 118;3;-0.000000, 1.078077,-0.000000;;, - 119;3; 0.000000, 1.078077, 0.000000;;, - 120;3; 0.000000, 1.078077, 0.000000;;, - 121;3;-0.000000, 1.078077,-0.000000;;, - 122;3; 0.000000, 1.078077,-0.000000;;, - 123;3; 0.000000, 1.078077, 0.000000;;, - 124;3; 0.000000, 1.078077,-0.000000;;, - 125;3;-0.000000, 1.078077,-0.000000;;, - 126;3; 0.000000, 1.078077, 0.000000;;, - 127;3;-0.000000, 1.078077, 0.000000;;, - 128;3; 0.000000, 1.078077, 0.000000;;, - 129;3; 0.000000, 1.078077, 0.000000;;, - 130;3;-0.000000, 1.078077,-0.000000;;, - 131;3; 0.000000, 1.078077,-0.000000;;, - 132;3;-0.000000, 1.078077,-0.000000;;, - 133;3; 0.000000, 1.078077,-0.000000;;, - 134;3; 0.000000, 1.078077, 0.000000;;, - 135;3;-0.000000, 1.078077, 0.000000;;, - 136;3; 0.000000, 1.078077, 0.000000;;, - 137;3; 0.000000, 1.078077, 0.000000;;, - 138;3; 0.000000, 1.078077, 0.000000;;, - 139;3;-0.000000, 1.078077, 0.000000;;, - 140;3;-0.000000, 1.078077,-0.000000;;, - 141;3;-0.000000, 1.078077,-0.000000;;, - 142;3; 0.000000, 1.078077,-0.000000;;, - 143;3; 0.000000, 1.078077, 0.000000;;, - 144;3; 0.000000, 1.078077,-0.000000;;, - 145;3; 0.000000, 1.078077, 0.000000;;, - 146;3; 0.000000, 1.078077,-0.000000;;, - 147;3; 0.000000, 1.078077, 0.000000;;, - 148;3; 0.000000, 1.078077,-0.000000;;, - 149;3; 0.000000, 1.078077, 0.000000;;, - 150;3; 0.000000, 1.078077, 0.000000;;, - 151;3; 0.000000, 1.078077, 0.000000;;, - 152;3; 0.000000, 1.078077, 0.000000;;, - 153;3; 0.000000, 1.078077, 0.000000;;, - 154;3; 0.000000, 1.078077, 0.000000;;, - 155;3; 0.000000, 1.078077, 0.000000;;, - 156;3; 0.000000, 1.078077, 0.000000;;, - 157;3; 0.000000, 1.078077, 0.000000;;, - 158;3; 0.000000, 1.078077, 0.000000;;, - 159;3; 0.000000, 1.078077, 0.000000;;, - 160;3; 0.000000, 1.078077, 0.000000;;, - 161;3; 0.000000, 1.078077, 0.000000;;, - 162;3; 0.000000, 1.078077, 0.000000;;, - 163;3; 0.000000, 1.078077, 0.000000;;, - 164;3; 0.000000, 1.078077, 0.000000;;, - 165;3; 0.000000, 1.078077, 0.000000;;, - 166;3; 0.000000, 1.078077, 0.000000;;, - 167;3; 0.000000, 1.078077, 0.000000;;, - 168;3; 0.000000, 1.078077, 0.000000;;, - 169;3; 0.000000, 1.078077, 0.000000;;, - 170;3; 0.000000, 1.078077, 0.000000;;, - 171;3; 0.000000, 1.078077, 0.000000;;, - 172;3; 0.000000, 1.078077, 0.000000;;, - 173;3; 0.000000, 1.078077, 0.000000;;, - 174;3; 0.000000, 1.078077, 0.000000;;, - 175;3; 0.000000, 1.078077, 0.000000;;, - 176;3; 0.000000, 1.078077, 0.000000;;, - 177;3; 0.000000, 1.078077, 0.000000;;, - 178;3; 0.000000, 1.078077, 0.000000;;, - 179;3; 0.000000, 1.078077, 0.000000;;, - 180;3; 0.000000, 1.078077, 0.000000;;, - 181;3; 0.000000, 1.078077, 0.000000;;, - 182;3; 0.000000, 1.078077, 0.000000;;, - 183;3; 0.000000, 1.078077, 0.000000;;, - 184;3; 0.000000, 1.078077, 0.000000;;, - 185;3; 0.000000, 1.078077, 0.000000;;, - 186;3; 0.000000, 1.078077, 0.000000;;, - 187;3; 0.000000, 1.078077, 0.000000;;, - 188;3; 0.000000, 1.078077, 0.000000;;, - 189;3; 0.000000, 1.078077, 0.000000;;, - 190;3; 0.000000, 1.078077, 0.000000;;, - 191;3; 0.000000, 1.078077, 0.000000;;, - 192;3; 0.000000, 1.078077, 0.000000;;, - 193;3; 0.000000, 1.078077, 0.000000;;, - 194;3; 0.000000, 1.078077, 0.000000;;, - 195;3; 0.000000, 1.078077, 0.000000;;, - 196;3; 0.000000, 1.078077, 0.000000;;, - 197;3; 0.000000, 1.078077, 0.000000;;, - 198;3; 0.000000, 1.078077, 0.000000;;, - 199;3; 0.000000, 1.078077, 0.000000;;, - 200;3; 0.000000, 1.078077, 0.000000;;, - 201;3; 0.000000, 1.078077, 0.000000;;, - 202;3; 0.000000, 1.078077, 0.000000;;, - 203;3; 0.000000, 1.078077, 0.000000;;, - 204;3; 0.000000, 1.078077, 0.000000;;, - 205;3; 0.000000, 1.078077, 0.000000;;, - 206;3; 0.000000, 1.078077, 0.000000;;, - 207;3; 0.000000, 1.078077, 0.000000;;, - 208;3; 0.000000, 1.078077, 0.000000;;, - 209;3; 0.000000, 1.078077, 0.000000;;, - 210;3; 0.000000, 1.078077, 0.000000;;, - 211;3; 0.000000, 1.078077, 0.000000;;, - 212;3; 0.000000, 1.078077, 0.000000;;, - 213;3; 0.000000, 1.078077, 0.000000;;, - 214;3; 0.000000, 1.078077, 0.000000;;, - 215;3; 0.000000, 1.078077, 0.000000;;, - 216;3; 0.000000, 1.078077, 0.000000;;, - 217;3; 0.000000, 1.078077, 0.000000;;, - 218;3; 0.000000, 1.078077, 0.000000;;, - 219;3; 0.000000, 1.078077, 0.000000;;, - 220;3; 0.000000, 1.078077, 0.000000;;, - 221;3; 0.000000, 1.078077, 0.000000;;, - 222;3; 0.000000, 1.078077, 0.000000;;, - 223;3; 0.000000, 1.078077, 0.000000;;, - 224;3; 0.000000, 1.078077, 0.000000;;, - 225;3; 0.000000, 1.078077, 0.000000;;, - 226;3; 0.000000, 1.078077, 0.000000;;, - 227;3; 0.000000, 1.078077, 0.000000;;, - 228;3; 0.000000, 1.078077, 0.000000;;, - 229;3; 0.000000, 1.078077, 0.000000;;, - 230;3; 0.000000, 1.078077, 0.000000;;, - 231;3; 0.000000, 1.078077, 0.000000;;, - 232;3; 0.000000, 1.078077, 0.000000;;, - 233;3; 0.000000, 1.078077, 0.000000;;, - 234;3; 0.000000, 1.078077, 0.000000;;, - 235;3; 0.000000, 1.078077, 0.000000;;, - 236;3; 0.000000, 1.078077, 0.000000;;, - 237;3; 0.000000, 1.078077, 0.000000;;, - 238;3; 0.000000, 1.078077, 0.000000;;, - 239;3; 0.000000, 1.078077, 0.000000;;, - 240;3; 0.000000, 1.078077, 0.000000;;, - 241;3; 0.000000, 1.078077, 0.000000;;, - 242;3; 0.000000, 1.078077, 0.000000;;, - 243;3; 0.000000, 1.078077, 0.000000;;, - 244;3; 0.000000, 1.078077, 0.000000;;, - 245;3; 0.000000, 1.078077, 0.000000;;, - 246;3; 0.000000, 1.078077, 0.000000;;, - 247;3; 0.000000, 1.078077, 0.000000;;, - 248;3; 0.000000, 1.078077, 0.000000;;, - 249;3; 0.000000, 1.078077, 0.000000;;; - } - } - Animation { - {Armature_Bone_018} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 1;4;-0.000002,-0.000000, 0.990944,-0.134058;;, - 2;4;-0.000002,-0.000000, 0.990611,-0.135853;;, - 3;4;-0.000002,-0.000000, 0.990055,-0.138854;;, - 4;4;-0.000002,-0.000000, 0.989279,-0.143034;;, - 5;4;-0.000002,-0.000000, 0.988297,-0.148333;;, - 6;4;-0.000002,-0.000000, 0.987127,-0.154646;;, - 7;4;-0.000002,-0.000000, 0.985797,-0.161817;;, - 8;4;-0.000002,-0.000000, 0.984346,-0.169645;;, - 9;4;-0.000002,-0.000000, 0.982818,-0.177886;;, - 10;4;-0.000002,-0.000000, 0.981263,-0.186269;;, - 11;4;-0.000002,-0.000000, 0.979735,-0.194511;;, - 12;4;-0.000002,-0.000000, 0.978284,-0.202339;;, - 13;4;-0.000002,-0.000000, 0.976954,-0.209510;;, - 14;4;-0.000002,-0.000000, 0.975784,-0.215822;;, - 15;4;-0.000002,-0.000000, 0.974802,-0.221121;;, - 16;4;-0.000002,-0.000000, 0.974026,-0.225302;;, - 17;4;-0.000002,-0.000000, 0.973470,-0.228303;;, - 18;4;-0.000002,-0.000000, 0.973137,-0.230098;;, - 19;4;-0.000002,-0.000000, 0.973027,-0.230692;;, - 20;4;-0.000002,-0.000000, 0.973126,-0.230156;;, - 21;4;-0.000002,-0.000000, 0.973427,-0.228537;;, - 22;4;-0.000002,-0.000000, 0.973929,-0.225828;;, - 23;4;-0.000002,-0.000000, 0.974629,-0.222050;;, - 24;4;-0.000002,-0.000000, 0.975520,-0.217247;;, - 25;4;-0.000002,-0.000000, 0.976585,-0.211502;;, - 26;4;-0.000002,-0.000000, 0.977803,-0.204935;;, - 27;4;-0.000002,-0.000000, 0.979143,-0.197706;;, - 28;4;-0.000002,-0.000000, 0.980569,-0.190012;;, - 29;4;-0.000002,-0.000000, 0.982041,-0.182078;;, - 30;4;-0.000002,-0.000000, 0.983512,-0.174144;;, - 31;4;-0.000002,-0.000000, 0.984938,-0.166449;;, - 32;4;-0.000002,-0.000000, 0.986278,-0.159221;;, - 33;4;-0.000002,-0.000000, 0.987496,-0.152654;;, - 34;4;-0.000002,-0.000000, 0.988561,-0.146909;;, - 35;4;-0.000002,-0.000000, 0.989452,-0.142106;;, - 36;4;-0.000002,-0.000000, 0.990152,-0.138327;;, - 37;4;-0.000002,-0.000000, 0.990654,-0.135619;;, - 38;4;-0.000002,-0.000000, 0.990955,-0.133999;;, - 39;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 40;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 41;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 42;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 43;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 44;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 45;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 46;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 47;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 48;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 49;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 50;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 51;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 52;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 53;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 54;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 55;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 56;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 57;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 58;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 59;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 60;4;-0.000550, 0.000080, 0.991210,-0.131762;;, - 61;4;-0.002200, 0.000320, 0.991678,-0.126642;;, - 62;4;-0.004882, 0.000710, 0.992440,-0.118318;;, - 63;4;-0.008391, 0.001221, 0.993437,-0.107429;;, - 64;4;-0.012366, 0.001800, 0.994566,-0.095094;;, - 65;4;-0.016341, 0.002379, 0.995695,-0.082760;;, - 66;4;-0.019850, 0.002890, 0.996691,-0.071871;;, - 67;4;-0.022533, 0.003280, 0.997453,-0.063546;;, - 68;4;-0.024182, 0.003520, 0.997922,-0.058427;;, - 69;4;-0.024731, 0.003600, 0.998077,-0.056725;;, - 70;4;-0.024670, 0.003591, 0.998060,-0.056913;;, - 71;4;-0.024488, 0.003565, 0.998008,-0.057479;;, - 72;4;-0.024182, 0.003520, 0.997922,-0.058427;;, - 73;4;-0.023754, 0.003458, 0.997800,-0.059756;;, - 74;4;-0.023203, 0.003378, 0.997643,-0.061466;;, - 75;4;-0.022533, 0.003280, 0.997453,-0.063546;;, - 76;4;-0.021746, 0.003166, 0.997230,-0.065987;;, - 77;4;-0.020849, 0.003035, 0.996975,-0.068770;;, - 78;4;-0.019850, 0.002890, 0.996691,-0.071871;;, - 79;4;-0.018757, 0.002731, 0.996381,-0.075262;;, - 80;4;-0.017583, 0.002560, 0.996047,-0.078905;;, - 81;4;-0.016341, 0.002379, 0.995695,-0.082760;;, - 82;4;-0.015046, 0.002190, 0.995327,-0.086778;;, - 83;4;-0.013715, 0.001996, 0.994949,-0.090908;;, - 84;4;-0.012366, 0.001800, 0.994566,-0.095094;;, - 85;4;-0.011017, 0.001604, 0.994182,-0.099281;;, - 86;4;-0.009686, 0.001410, 0.993804,-0.103411;;, - 87;4;-0.008391, 0.001221, 0.993437,-0.107429;;, - 88;4;-0.007149, 0.001040, 0.993084,-0.111284;;, - 89;4;-0.005975, 0.000869, 0.992751,-0.114927;;, - 90;4;-0.004882, 0.000710, 0.992440,-0.118318;;, - 91;4;-0.003883, 0.000565, 0.992156,-0.121419;;, - 92;4;-0.002986, 0.000434, 0.991902,-0.124202;;, - 93;4;-0.002200, 0.000320, 0.991678,-0.126642;;, - 94;4;-0.001529, 0.000222, 0.991488,-0.128723;;, - 95;4;-0.000978, 0.000142, 0.991331,-0.130432;;, - 96;4;-0.000550, 0.000080, 0.991210,-0.131762;;, - 97;4;-0.000244, 0.000035, 0.991123,-0.132710;;, - 98;4;-0.000062, 0.000009, 0.991071,-0.133276;;, - 99;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 100;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 101;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 102;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 103;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 104;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 105;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 106;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 107;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 108;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 109;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 110;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 111;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 112;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 113;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 114;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 115;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 116;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 117;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 118;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 119;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 120;4; 0.000186,-0.000274, 0.991843,-0.120586;;, - 121;4; 0.000715,-0.001047, 0.994065,-0.084312;;, - 122;4; 0.001394,-0.002038, 0.996918,-0.037738;;, - 123;4; 0.001922,-0.002810, 0.999139,-0.001464;;, - 124;4; 0.002110,-0.003084, 0.999928, 0.011414;;, - 125;4; 0.002110,-0.003084, 0.999928, 0.011414;;, - 126;4; 0.002110,-0.003084, 0.999928, 0.011414;;, - 127;4; 0.002110,-0.003084, 0.999928, 0.011414;;, - 128;4; 0.002110,-0.003084, 0.999928, 0.011414;;, - 129;4; 0.002110,-0.003084, 0.999928, 0.011414;;, - 130;4; 0.002199,-0.003215, 0.999844, 0.017200;;, - 131;4; 0.002520,-0.003683, 0.998806, 0.038559;;, - 132;4; 0.003117,-0.004556, 0.995321, 0.079571;;, - 133;4; 0.003943,-0.005762, 0.988418, 0.137959;;, - 134;4; 0.004892,-0.007147, 0.978356, 0.206748;;, - 135;4; 0.006215,-0.009081, 0.943883, 0.304765;;, - 136;4; 0.008098,-0.011829, 0.868220, 0.445482;;, - 137;4; 0.010051,-0.014683, 0.776447, 0.592204;;, - 138;4; 0.011428,-0.016694, 0.706649, 0.695892;;, - 139;4; 0.011893,-0.017372, 0.682153, 0.730907;;, - 140;4; 0.011198,-0.016357, 0.710530, 0.678937;;, - 141;4; 0.009164,-0.013387, 0.790403, 0.527316;;, - 142;4; 0.006348,-0.009273, 0.892806, 0.318567;;, - 143;4; 0.003755,-0.005487, 0.972261, 0.128609;;, - 144;4; 0.002110,-0.003084, 0.999928, 0.011414;;, - 145;4; 0.001147,-0.001677, 0.998560,-0.054705;;, - 146;4; 0.000475,-0.000696, 0.996231,-0.100795;;, - 147;4; 0.000125,-0.000185, 0.993624,-0.124818;;, - 148;4; 0.000012,-0.000019, 0.991712,-0.132571;;, - 149;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 150;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 151;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 152;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 153;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 154;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 155;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 156;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 157;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 158;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 159;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 160;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 161;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 162;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 163;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 164;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 165;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 166;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 167;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 168;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 169;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 170;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 171;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 172;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 173;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 174;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 175;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 176;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 177;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 178;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 179;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 180;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 181;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 182;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 183;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 184;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 185;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 186;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 187;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 188;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 189;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 190;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 191;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 192;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 193;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 194;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 195;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 196;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 197;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 198;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 199;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 200;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 201;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 202;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 203;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 204;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 205;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 206;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 207;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 208;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 209;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 210;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 211;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 212;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 213;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 214;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 215;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 216;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 217;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 218;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 219;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 220;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 221;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 222;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 223;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 224;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 225;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 226;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 227;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 228;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 229;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 230;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 231;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 232;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 233;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 234;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 235;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 236;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 237;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 238;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 239;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 240;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 241;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 242;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 243;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 244;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 245;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 246;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 247;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 248;4;-0.000002,-0.000000, 0.991054,-0.133464;;, - 249;4;-0.000002,-0.000000, 0.991054,-0.133464;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3; 0.000000, 2.352446,-0.000000;;, - 1;3;-0.000000, 2.352447,-0.000000;;, - 2;3;-0.000000, 2.352447,-0.000000;;, - 3;3;-0.000000, 2.352447, 0.000000;;, - 4;3;-0.000000, 2.352446,-0.000000;;, - 5;3;-0.000000, 2.352447,-0.000000;;, - 6;3;-0.000000, 2.352446,-0.000000;;, - 7;3;-0.000000, 2.352446, 0.000000;;, - 8;3;-0.000000, 2.352446,-0.000000;;, - 9;3;-0.000000, 2.352446,-0.000000;;, - 10;3;-0.000000, 2.352447,-0.000000;;, - 11;3;-0.000000, 2.352446, 0.000000;;, - 12;3;-0.000000, 2.352447,-0.000000;;, - 13;3;-0.000000, 2.352447,-0.000000;;, - 14;3; 0.000000, 2.352446, 0.000000;;, - 15;3; 0.000000, 2.352446, 0.000000;;, - 16;3;-0.000000, 2.352446,-0.000000;;, - 17;3; 0.000000, 2.352446,-0.000000;;, - 18;3;-0.000000, 2.352447,-0.000000;;, - 19;3;-0.000000, 2.352446,-0.000000;;, - 20;3;-0.000000, 2.352446, 0.000000;;, - 21;3;-0.000000, 2.352446, 0.000000;;, - 22;3; 0.000000, 2.352446,-0.000000;;, - 23;3;-0.000000, 2.352446,-0.000000;;, - 24;3; 0.000000, 2.352446, 0.000000;;, - 25;3;-0.000000, 2.352446,-0.000000;;, - 26;3; 0.000000, 2.352446,-0.000000;;, - 27;3;-0.000000, 2.352446,-0.000000;;, - 28;3; 0.000000, 2.352446,-0.000000;;, - 29;3;-0.000000, 2.352446,-0.000000;;, - 30;3; 0.000000, 2.352446,-0.000000;;, - 31;3;-0.000000, 2.352447, 0.000000;;, - 32;3;-0.000000, 2.352446,-0.000000;;, - 33;3;-0.000000, 2.352446,-0.000000;;, - 34;3;-0.000000, 2.352446, 0.000000;;, - 35;3;-0.000000, 2.352447,-0.000000;;, - 36;3; 0.000000, 2.352446, 0.000000;;, - 37;3; 0.000000, 2.352446,-0.000000;;, - 38;3;-0.000000, 2.352447,-0.000000;;, - 39;3; 0.000000, 2.352446,-0.000000;;, - 40;3; 0.000000, 2.352446, 0.000000;;, - 41;3; 0.000000, 2.352447,-0.000000;;, - 42;3; 0.000000, 2.352446, 0.000000;;, - 43;3;-0.000000, 2.352446,-0.000000;;, - 44;3; 0.000000, 2.352446, 0.000000;;, - 45;3;-0.000000, 2.352446,-0.000000;;, - 46;3;-0.000000, 2.352446,-0.000000;;, - 47;3;-0.000000, 2.352446,-0.000000;;, - 48;3;-0.000000, 2.352447, 0.000000;;, - 49;3; 0.000000, 2.352446, 0.000000;;, - 50;3; 0.000000, 2.352446, 0.000000;;, - 51;3;-0.000000, 2.352446, 0.000000;;, - 52;3; 0.000000, 2.352446, 0.000000;;, - 53;3;-0.000000, 2.352447,-0.000000;;, - 54;3; 0.000000, 2.352446,-0.000000;;, - 55;3; 0.000000, 2.352447, 0.000000;;, - 56;3;-0.000000, 2.352446, 0.000000;;, - 57;3; 0.000000, 2.352446, 0.000000;;, - 58;3;-0.000000, 2.352446, 0.000000;;, - 59;3; 0.000000, 2.352446, 0.000000;;, - 60;3; 0.000000, 2.352446,-0.000000;;, - 61;3; 0.000000, 2.352446,-0.000000;;, - 62;3;-0.000000, 2.352446, 0.000000;;, - 63;3; 0.000000, 2.352447,-0.000000;;, - 64;3;-0.000000, 2.352446, 0.000000;;, - 65;3; 0.000000, 2.352447,-0.000000;;, - 66;3; 0.000000, 2.352447, 0.000000;;, - 67;3; 0.000000, 2.352447,-0.000000;;, - 68;3;-0.000000, 2.352447, 0.000000;;, - 69;3; 0.000000, 2.352446,-0.000000;;, - 70;3;-0.000000, 2.352446,-0.000000;;, - 71;3; 0.000000, 2.352447, 0.000000;;, - 72;3; 0.000000, 2.352447,-0.000000;;, - 73;3;-0.000000, 2.352446,-0.000000;;, - 74;3;-0.000000, 2.352446, 0.000000;;, - 75;3;-0.000000, 2.352446,-0.000000;;, - 76;3;-0.000000, 2.352446, 0.000000;;, - 77;3; 0.000000, 2.352446,-0.000000;;, - 78;3; 0.000000, 2.352446,-0.000000;;, - 79;3; 0.000000, 2.352446, 0.000000;;, - 80;3; 0.000000, 2.352446,-0.000000;;, - 81;3; 0.000000, 2.352446,-0.000000;;, - 82;3; 0.000000, 2.352447,-0.000000;;, - 83;3;-0.000000, 2.352446,-0.000000;;, - 84;3; 0.000000, 2.352446,-0.000000;;, - 85;3; 0.000000, 2.352446, 0.000000;;, - 86;3;-0.000000, 2.352446,-0.000000;;, - 87;3;-0.000000, 2.352447,-0.000000;;, - 88;3; 0.000000, 2.352446,-0.000000;;, - 89;3; 0.000000, 2.352446, 0.000000;;, - 90;3; 0.000000, 2.352447, 0.000000;;, - 91;3; 0.000000, 2.352446, 0.000000;;, - 92;3;-0.000000, 2.352446, 0.000000;;, - 93;3; 0.000000, 2.352446,-0.000000;;, - 94;3; 0.000000, 2.352446,-0.000000;;, - 95;3; 0.000000, 2.352447, 0.000000;;, - 96;3;-0.000000, 2.352446,-0.000000;;, - 97;3; 0.000000, 2.352447,-0.000000;;, - 98;3; 0.000000, 2.352446,-0.000000;;, - 99;3; 0.000000, 2.352446, 0.000000;;, - 100;3;-0.000000, 2.352446, 0.000000;;, - 101;3;-0.000000, 2.352446, 0.000000;;, - 102;3;-0.000000, 2.352446,-0.000000;;, - 103;3;-0.000000, 2.352446,-0.000000;;, - 104;3; 0.000000, 2.352447,-0.000000;;, - 105;3; 0.000000, 2.352446,-0.000000;;, - 106;3;-0.000000, 2.352446, 0.000000;;, - 107;3; 0.000000, 2.352446, 0.000000;;, - 108;3;-0.000000, 2.352447, 0.000000;;, - 109;3;-0.000000, 2.352447,-0.000000;;, - 110;3;-0.000000, 2.352446, 0.000000;;, - 111;3; 0.000000, 2.352447, 0.000000;;, - 112;3; 0.000000, 2.352446, 0.000000;;, - 113;3;-0.000000, 2.352447,-0.000000;;, - 114;3; 0.000000, 2.352446,-0.000000;;, - 115;3; 0.000000, 2.352446,-0.000000;;, - 116;3; 0.000000, 2.352446, 0.000000;;, - 117;3; 0.000000, 2.352446, 0.000000;;, - 118;3; 0.000000, 2.352447,-0.000000;;, - 119;3; 0.000000, 2.352446,-0.000000;;, - 120;3;-0.000000, 2.352446, 0.000000;;, - 121;3;-0.000000, 2.352446, 0.000000;;, - 122;3; 0.000000, 2.352447,-0.000000;;, - 123;3;-0.000000, 2.352446,-0.000000;;, - 124;3;-0.000000, 2.352446, 0.000000;;, - 125;3; 0.000000, 2.352446,-0.000000;;, - 126;3;-0.000000, 2.352446,-0.000000;;, - 127;3; 0.000000, 2.352447,-0.000000;;, - 128;3;-0.000000, 2.352447,-0.000000;;, - 129;3;-0.000000, 2.352446,-0.000000;;, - 130;3;-0.000000, 2.352446,-0.000000;;, - 131;3;-0.000000, 2.352446,-0.000000;;, - 132;3;-0.000000, 2.352446, 0.000000;;, - 133;3;-0.000000, 2.352446, 0.000000;;, - 134;3;-0.000000, 2.352446, 0.000000;;, - 135;3; 0.000000, 2.352447, 0.000000;;, - 136;3;-0.000000, 2.352446, 0.000000;;, - 137;3;-0.000000, 2.352446,-0.000000;;, - 138;3;-0.000000, 2.352446, 0.000000;;, - 139;3; 0.000000, 2.352446,-0.000000;;, - 140;3; 0.000000, 2.352447, 0.000000;;, - 141;3; 0.000000, 2.352447,-0.000000;;, - 142;3;-0.000000, 2.352446, 0.000000;;, - 143;3; 0.000000, 2.352446, 0.000000;;, - 144;3; 0.000000, 2.352446, 0.000000;;, - 145;3; 0.000000, 2.352446,-0.000000;;, - 146;3; 0.000000, 2.352446,-0.000000;;, - 147;3; 0.000000, 2.352446,-0.000000;;, - 148;3; 0.000000, 2.352446,-0.000000;;, - 149;3; 0.000000, 2.352446,-0.000000;;, - 150;3; 0.000000, 2.352446,-0.000000;;, - 151;3; 0.000000, 2.352446,-0.000000;;, - 152;3; 0.000000, 2.352446,-0.000000;;, - 153;3; 0.000000, 2.352446,-0.000000;;, - 154;3; 0.000000, 2.352446,-0.000000;;, - 155;3; 0.000000, 2.352446,-0.000000;;, - 156;3; 0.000000, 2.352446,-0.000000;;, - 157;3; 0.000000, 2.352446,-0.000000;;, - 158;3; 0.000000, 2.352446,-0.000000;;, - 159;3; 0.000000, 2.352446,-0.000000;;, - 160;3; 0.000000, 2.352446,-0.000000;;, - 161;3; 0.000000, 2.352446,-0.000000;;, - 162;3; 0.000000, 2.352446,-0.000000;;, - 163;3; 0.000000, 2.352446,-0.000000;;, - 164;3; 0.000000, 2.352446,-0.000000;;, - 165;3; 0.000000, 2.352446,-0.000000;;, - 166;3; 0.000000, 2.352446,-0.000000;;, - 167;3; 0.000000, 2.352446,-0.000000;;, - 168;3; 0.000000, 2.352446,-0.000000;;, - 169;3; 0.000000, 2.352446,-0.000000;;, - 170;3; 0.000000, 2.352446,-0.000000;;, - 171;3; 0.000000, 2.352446,-0.000000;;, - 172;3; 0.000000, 2.352446,-0.000000;;, - 173;3; 0.000000, 2.352446,-0.000000;;, - 174;3; 0.000000, 2.352446,-0.000000;;, - 175;3; 0.000000, 2.352446,-0.000000;;, - 176;3; 0.000000, 2.352446,-0.000000;;, - 177;3; 0.000000, 2.352446,-0.000000;;, - 178;3; 0.000000, 2.352446,-0.000000;;, - 179;3; 0.000000, 2.352446,-0.000000;;, - 180;3; 0.000000, 2.352446,-0.000000;;, - 181;3; 0.000000, 2.352446,-0.000000;;, - 182;3; 0.000000, 2.352446,-0.000000;;, - 183;3; 0.000000, 2.352446,-0.000000;;, - 184;3; 0.000000, 2.352446,-0.000000;;, - 185;3; 0.000000, 2.352446,-0.000000;;, - 186;3; 0.000000, 2.352446,-0.000000;;, - 187;3; 0.000000, 2.352446,-0.000000;;, - 188;3; 0.000000, 2.352446,-0.000000;;, - 189;3; 0.000000, 2.352446,-0.000000;;, - 190;3; 0.000000, 2.352446,-0.000000;;, - 191;3; 0.000000, 2.352446,-0.000000;;, - 192;3; 0.000000, 2.352446,-0.000000;;, - 193;3; 0.000000, 2.352446,-0.000000;;, - 194;3; 0.000000, 2.352446,-0.000000;;, - 195;3; 0.000000, 2.352446,-0.000000;;, - 196;3; 0.000000, 2.352446,-0.000000;;, - 197;3; 0.000000, 2.352446,-0.000000;;, - 198;3; 0.000000, 2.352446,-0.000000;;, - 199;3; 0.000000, 2.352446,-0.000000;;, - 200;3; 0.000000, 2.352446,-0.000000;;, - 201;3; 0.000000, 2.352446,-0.000000;;, - 202;3; 0.000000, 2.352446,-0.000000;;, - 203;3; 0.000000, 2.352446,-0.000000;;, - 204;3; 0.000000, 2.352446,-0.000000;;, - 205;3; 0.000000, 2.352446,-0.000000;;, - 206;3; 0.000000, 2.352446,-0.000000;;, - 207;3; 0.000000, 2.352446,-0.000000;;, - 208;3; 0.000000, 2.352446,-0.000000;;, - 209;3; 0.000000, 2.352446,-0.000000;;, - 210;3; 0.000000, 2.352446,-0.000000;;, - 211;3; 0.000000, 2.352446,-0.000000;;, - 212;3; 0.000000, 2.352446,-0.000000;;, - 213;3; 0.000000, 2.352446,-0.000000;;, - 214;3; 0.000000, 2.352446,-0.000000;;, - 215;3; 0.000000, 2.352446,-0.000000;;, - 216;3; 0.000000, 2.352446,-0.000000;;, - 217;3; 0.000000, 2.352446,-0.000000;;, - 218;3; 0.000000, 2.352446,-0.000000;;, - 219;3; 0.000000, 2.352446,-0.000000;;, - 220;3; 0.000000, 2.352446,-0.000000;;, - 221;3; 0.000000, 2.352446,-0.000000;;, - 222;3; 0.000000, 2.352446,-0.000000;;, - 223;3; 0.000000, 2.352446,-0.000000;;, - 224;3; 0.000000, 2.352446,-0.000000;;, - 225;3; 0.000000, 2.352446,-0.000000;;, - 226;3; 0.000000, 2.352446,-0.000000;;, - 227;3; 0.000000, 2.352446,-0.000000;;, - 228;3; 0.000000, 2.352446,-0.000000;;, - 229;3; 0.000000, 2.352446,-0.000000;;, - 230;3; 0.000000, 2.352446,-0.000000;;, - 231;3; 0.000000, 2.352446,-0.000000;;, - 232;3; 0.000000, 2.352446,-0.000000;;, - 233;3; 0.000000, 2.352446,-0.000000;;, - 234;3; 0.000000, 2.352446,-0.000000;;, - 235;3; 0.000000, 2.352446,-0.000000;;, - 236;3; 0.000000, 2.352446,-0.000000;;, - 237;3; 0.000000, 2.352446,-0.000000;;, - 238;3; 0.000000, 2.352446,-0.000000;;, - 239;3; 0.000000, 2.352446,-0.000000;;, - 240;3; 0.000000, 2.352446,-0.000000;;, - 241;3; 0.000000, 2.352446,-0.000000;;, - 242;3; 0.000000, 2.352446,-0.000000;;, - 243;3; 0.000000, 2.352446,-0.000000;;, - 244;3; 0.000000, 2.352446,-0.000000;;, - 245;3; 0.000000, 2.352446,-0.000000;;, - 246;3; 0.000000, 2.352446,-0.000000;;, - 247;3; 0.000000, 2.352446,-0.000000;;, - 248;3; 0.000000, 2.352446,-0.000000;;, - 249;3; 0.000000, 2.352446,-0.000000;;; - } - } - Animation { - {Armature_Bone_020} - AnimationKey { // Rotation - 0; - 250; - 0;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 1;4; 0.000002, 0.000000, 0.996363, 0.085186;;, - 2;4; 0.000002, 0.000000, 0.996397, 0.084720;;, - 3;4; 0.000002, 0.000000, 0.996454, 0.083941;;, - 4;4; 0.000002, 0.000000, 0.996533, 0.082856;;, - 5;4; 0.000002, 0.000000, 0.996633, 0.081481;;, - 6;4; 0.000002, 0.000000, 0.996753, 0.079842;;, - 7;4; 0.000002, 0.000000, 0.996889, 0.077981;;, - 8;4; 0.000002, 0.000000, 0.997037, 0.075949;;, - 9;4; 0.000002, 0.000000, 0.997193, 0.073810;;, - 10;4; 0.000002, 0.000000, 0.997351, 0.071634;;, - 11;4; 0.000002, 0.000000, 0.997507, 0.069495;;, - 12;4; 0.000002, 0.000000, 0.997655, 0.067463;;, - 13;4; 0.000002, 0.000000, 0.997791, 0.065602;;, - 14;4; 0.000002, 0.000000, 0.997911, 0.063963;;, - 15;4; 0.000002, 0.000000, 0.998011, 0.062588;;, - 16;4; 0.000002, 0.000000, 0.998090, 0.061503;;, - 17;4; 0.000002, 0.000000, 0.998147, 0.060724;;, - 18;4; 0.000002, 0.000000, 0.998181, 0.060258;;, - 19;4; 0.000002, 0.000000, 0.998192, 0.060104;;, - 20;4; 0.000002, 0.000000, 0.998182, 0.060243;;, - 21;4; 0.000002, 0.000000, 0.998151, 0.060663;;, - 22;4; 0.000002, 0.000000, 0.998100, 0.061366;;, - 23;4; 0.000002, 0.000000, 0.998029, 0.062347;;, - 24;4; 0.000002, 0.000000, 0.997938, 0.063594;;, - 25;4; 0.000002, 0.000000, 0.997829, 0.065085;;, - 26;4; 0.000002, 0.000000, 0.997705, 0.066789;;, - 27;4; 0.000002, 0.000000, 0.997568, 0.068666;;, - 28;4; 0.000002, 0.000000, 0.997422, 0.070663;;, - 29;4; 0.000002, 0.000000, 0.997272, 0.072722;;, - 30;4; 0.000002, 0.000000, 0.997122, 0.074781;;, - 31;4; 0.000002, 0.000000, 0.996976, 0.076778;;, - 32;4; 0.000002, 0.000000, 0.996839, 0.078655;;, - 33;4; 0.000002, 0.000000, 0.996715, 0.080359;;, - 34;4; 0.000002, 0.000000, 0.996606, 0.081850;;, - 35;4; 0.000002, 0.000000, 0.996515, 0.083097;;, - 36;4; 0.000002, 0.000000, 0.996444, 0.084078;;, - 37;4; 0.000002, 0.000000, 0.996393, 0.084781;;, - 38;4; 0.000002, 0.000000, 0.996362, 0.085201;;, - 39;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 40;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 41;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 42;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 43;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 44;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 45;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 46;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 47;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 48;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 49;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 50;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 51;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 52;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 53;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 54;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 55;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 56;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 57;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 58;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 59;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 60;4;-0.000336,-0.000128, 0.996416, 0.084230;;, - 61;4;-0.001350,-0.000515, 0.996609, 0.080889;;, - 62;4;-0.003000,-0.001143, 0.996923, 0.075457;;, - 63;4;-0.005158,-0.001965, 0.997334, 0.068352;;, - 64;4;-0.007603,-0.002896, 0.997799, 0.060304;;, - 65;4;-0.010047,-0.003827, 0.998264, 0.052255;;, - 66;4;-0.012205,-0.004649, 0.998674, 0.045150;;, - 67;4;-0.013855,-0.005277, 0.998988, 0.039718;;, - 68;4;-0.014870,-0.005664, 0.999181, 0.036377;;, - 69;4;-0.015207,-0.005792, 0.999245, 0.035267;;, - 70;4;-0.015170,-0.005778, 0.999238, 0.035390;;, - 71;4;-0.015057,-0.005735, 0.999217, 0.035759;;, - 72;4;-0.014870,-0.005664, 0.999181, 0.036377;;, - 73;4;-0.014606,-0.005563, 0.999131, 0.037245;;, - 74;4;-0.014267,-0.005434, 0.999067, 0.038360;;, - 75;4;-0.013855,-0.005277, 0.998988, 0.039718;;, - 76;4;-0.013371,-0.005093, 0.998896, 0.041311;;, - 77;4;-0.012820,-0.004883, 0.998791, 0.043126;;, - 78;4;-0.012205,-0.004649, 0.998674, 0.045150;;, - 79;4;-0.011533,-0.004393, 0.998546, 0.047363;;, - 80;4;-0.010811,-0.004118, 0.998409, 0.049740;;, - 81;4;-0.010047,-0.003827, 0.998264, 0.052255;;, - 82;4;-0.009251,-0.003524, 0.998112, 0.054877;;, - 83;4;-0.008432,-0.003212, 0.997957, 0.057572;;, - 84;4;-0.007603,-0.002896, 0.997799, 0.060304;;, - 85;4;-0.006773,-0.002580, 0.997641, 0.063036;;, - 86;4;-0.005954,-0.002268, 0.997485, 0.065730;;, - 87;4;-0.005158,-0.001965, 0.997334, 0.068352;;, - 88;4;-0.004394,-0.001674, 0.997188, 0.070868;;, - 89;4;-0.003672,-0.001399, 0.997051, 0.073245;;, - 90;4;-0.003000,-0.001143, 0.996923, 0.075457;;, - 91;4;-0.002385,-0.000909, 0.996806, 0.077481;;, - 92;4;-0.001834,-0.000699, 0.996701, 0.079297;;, - 93;4;-0.001350,-0.000515, 0.996609, 0.080889;;, - 94;4;-0.000938,-0.000358, 0.996531, 0.082247;;, - 95;4;-0.000599,-0.000229, 0.996466, 0.083362;;, - 96;4;-0.000336,-0.000128, 0.996416, 0.084230;;, - 97;4;-0.000148,-0.000057, 0.996380, 0.084849;;, - 98;4;-0.000036,-0.000014, 0.996359, 0.085218;;, - 99;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 100;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 101;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 102;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 103;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 104;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 105;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 106;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 107;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 108;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 109;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 110;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 111;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 112;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 113;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 114;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 115;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 116;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 117;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 118;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 119;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 120;4; 0.000187, 0.000462, 0.995890, 0.065970;;, - 121;4; 0.000707, 0.001762, 0.994590, 0.011410;;, - 122;4; 0.001376, 0.003432, 0.992919,-0.058645;;, - 123;4; 0.001897, 0.004732, 0.991619,-0.113205;;, - 124;4; 0.002082, 0.005193, 0.991157,-0.132575;;, - 125;4; 0.002082, 0.005193, 0.991157,-0.132575;;, - 126;4; 0.002082, 0.005193, 0.991157,-0.132575;;, - 127;4; 0.002082, 0.005193, 0.991157,-0.132575;;, - 128;4; 0.002082, 0.005193, 0.991157,-0.132575;;, - 129;4; 0.002082, 0.005193, 0.991157,-0.132575;;, - 130;4; 0.002466, 0.006152, 0.974105,-0.174183;;, - 131;4; 0.003548, 0.008853, 0.926075,-0.291378;;, - 132;4; 0.004937, 0.012320, 0.864404,-0.441855;;, - 133;4; 0.006019, 0.015020, 0.816373,-0.559050;;, - 134;4; 0.006403, 0.015979, 0.799321,-0.600658;;, - 135;4; 0.006290, 0.015698, 0.807557,-0.588186;;, - 136;4; 0.005943, 0.014830, 0.832108,-0.549754;;, - 137;4; 0.005415, 0.013512, 0.867266,-0.491541;;, - 138;4; 0.004844, 0.012088, 0.901720,-0.428944;;, - 139;4; 0.004352, 0.010859, 0.926806,-0.375358;;, - 140;4; 0.003911, 0.009758, 0.945966,-0.327662;;, - 141;4; 0.003452, 0.008614, 0.963865,-0.278403;;, - 142;4; 0.002986, 0.007449, 0.978135,-0.228577;;, - 143;4; 0.002526, 0.006302, 0.987137,-0.179670;;, - 144;4; 0.002082, 0.005193, 0.991157,-0.132575;;, - 145;4; 0.001585, 0.003953, 0.993016,-0.080136;;, - 146;4; 0.001007, 0.002509, 0.994574,-0.019478;;, - 147;4; 0.000470, 0.001170, 0.995652, 0.036569;;, - 148;4; 0.000116, 0.000286, 0.996204, 0.073415;;, - 149;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 150;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 151;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 152;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 153;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 154;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 155;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 156;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 157;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 158;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 159;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 160;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 161;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 162;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 163;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 164;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 165;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 166;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 167;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 168;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 169;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 170;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 171;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 172;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 173;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 174;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 175;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 176;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 177;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 178;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 179;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 180;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 181;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 182;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 183;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 184;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 185;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 186;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 187;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 188;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 189;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 190;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 191;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 192;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 193;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 194;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 195;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 196;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 197;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 198;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 199;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 200;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 201;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 202;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 203;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 204;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 205;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 206;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 207;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 208;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 209;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 210;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 211;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 212;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 213;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 214;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 215;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 216;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 217;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 218;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 219;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 220;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 221;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 222;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 223;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 224;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 225;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 226;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 227;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 228;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 229;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 230;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 231;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 232;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 233;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 234;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 235;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 236;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 237;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 238;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 239;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 240;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 241;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 242;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 243;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 244;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 245;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 246;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 247;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 248;4; 0.000002, 0.000000, 0.996352, 0.085340;;, - 249;4; 0.000002, 0.000000, 0.996352, 0.085340;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3; 0.000000, 2.377758,-0.000000;;, - 1;3;-0.000000, 2.377758,-0.000000;;, - 2;3;-0.000000, 2.377757, 0.000000;;, - 3;3;-0.000000, 2.377757,-0.000000;;, - 4;3;-0.000000, 2.377757,-0.000000;;, - 5;3; 0.000000, 2.377758, 0.000000;;, - 6;3;-0.000000, 2.377758,-0.000000;;, - 7;3; 0.000000, 2.377758,-0.000000;;, - 8;3; 0.000000, 2.377758,-0.000000;;, - 9;3; 0.000000, 2.377758,-0.000000;;, - 10;3; 0.000000, 2.377758,-0.000000;;, - 11;3;-0.000000, 2.377757, 0.000000;;, - 12;3;-0.000000, 2.377757, 0.000000;;, - 13;3; 0.000000, 2.377757, 0.000000;;, - 14;3; 0.000000, 2.377758, 0.000000;;, - 15;3; 0.000000, 2.377757, 0.000000;;, - 16;3; 0.000000, 2.377757, 0.000000;;, - 17;3;-0.000000, 2.377758, 0.000000;;, - 18;3;-0.000000, 2.377757, 0.000000;;, - 19;3; 0.000000, 2.377757, 0.000000;;, - 20;3; 0.000000, 2.377758, 0.000000;;, - 21;3;-0.000000, 2.377758, 0.000000;;, - 22;3; 0.000000, 2.377758, 0.000000;;, - 23;3;-0.000000, 2.377757, 0.000000;;, - 24;3; 0.000000, 2.377758, 0.000000;;, - 25;3; 0.000000, 2.377758, 0.000000;;, - 26;3;-0.000000, 2.377757,-0.000000;;, - 27;3; 0.000000, 2.377758,-0.000000;;, - 28;3;-0.000000, 2.377757,-0.000000;;, - 29;3; 0.000000, 2.377758,-0.000000;;, - 30;3;-0.000000, 2.377758,-0.000000;;, - 31;3;-0.000000, 2.377757,-0.000000;;, - 32;3;-0.000000, 2.377758,-0.000000;;, - 33;3;-0.000000, 2.377757,-0.000000;;, - 34;3; 0.000000, 2.377758,-0.000000;;, - 35;3; 0.000000, 2.377758,-0.000000;;, - 36;3;-0.000000, 2.377757,-0.000000;;, - 37;3;-0.000000, 2.377758,-0.000000;;, - 38;3; 0.000000, 2.377757, 0.000000;;, - 39;3; 0.000000, 2.377758,-0.000000;;, - 40;3;-0.000000, 2.377757, 0.000000;;, - 41;3;-0.000000, 2.377758, 0.000000;;, - 42;3;-0.000000, 2.377758,-0.000000;;, - 43;3; 0.000000, 2.377758, 0.000000;;, - 44;3; 0.000000, 2.377757,-0.000000;;, - 45;3;-0.000000, 2.377757,-0.000000;;, - 46;3;-0.000000, 2.377757,-0.000000;;, - 47;3;-0.000000, 2.377757, 0.000000;;, - 48;3;-0.000000, 2.377757,-0.000000;;, - 49;3; 0.000000, 2.377758, 0.000000;;, - 50;3; 0.000000, 2.377758, 0.000000;;, - 51;3; 0.000000, 2.377758,-0.000000;;, - 52;3; 0.000000, 2.377758, 0.000000;;, - 53;3;-0.000000, 2.377758,-0.000000;;, - 54;3;-0.000000, 2.377758, 0.000000;;, - 55;3;-0.000000, 2.377758, 0.000000;;, - 56;3;-0.000000, 2.377758, 0.000000;;, - 57;3; 0.000000, 2.377757, 0.000000;;, - 58;3; 0.000000, 2.377758, 0.000000;;, - 59;3; 0.000000, 2.377758,-0.000000;;, - 60;3; 0.000000, 2.377758,-0.000000;;, - 61;3;-0.000000, 2.377758, 0.000000;;, - 62;3;-0.000000, 2.377758, 0.000000;;, - 63;3;-0.000000, 2.377757, 0.000000;;, - 64;3;-0.000000, 2.377758,-0.000000;;, - 65;3;-0.000000, 2.377758, 0.000000;;, - 66;3;-0.000000, 2.377758,-0.000000;;, - 67;3;-0.000000, 2.377758, 0.000000;;, - 68;3;-0.000000, 2.377758,-0.000000;;, - 69;3;-0.000000, 2.377758, 0.000000;;, - 70;3;-0.000000, 2.377758,-0.000000;;, - 71;3;-0.000000, 2.377757,-0.000000;;, - 72;3; 0.000000, 2.377758, 0.000000;;, - 73;3;-0.000000, 2.377758,-0.000000;;, - 74;3; 0.000000, 2.377758,-0.000000;;, - 75;3; 0.000000, 2.377758,-0.000000;;, - 76;3;-0.000000, 2.377757, 0.000000;;, - 77;3;-0.000000, 2.377757,-0.000000;;, - 78;3; 0.000000, 2.377757, 0.000000;;, - 79;3; 0.000000, 2.377757,-0.000000;;, - 80;3;-0.000000, 2.377758, 0.000000;;, - 81;3; 0.000000, 2.377758, 0.000000;;, - 82;3; 0.000000, 2.377757,-0.000000;;, - 83;3;-0.000000, 2.377758,-0.000000;;, - 84;3;-0.000000, 2.377758,-0.000000;;, - 85;3; 0.000000, 2.377758, 0.000000;;, - 86;3; 0.000000, 2.377757,-0.000000;;, - 87;3;-0.000000, 2.377758, 0.000000;;, - 88;3;-0.000000, 2.377758,-0.000000;;, - 89;3; 0.000000, 2.377757, 0.000000;;, - 90;3; 0.000000, 2.377757, 0.000000;;, - 91;3; 0.000000, 2.377757, 0.000000;;, - 92;3; 0.000000, 2.377757,-0.000000;;, - 93;3;-0.000000, 2.377757,-0.000000;;, - 94;3; 0.000000, 2.377758, 0.000000;;, - 95;3; 0.000000, 2.377758,-0.000000;;, - 96;3; 0.000000, 2.377758, 0.000000;;, - 97;3;-0.000000, 2.377758,-0.000000;;, - 98;3; 0.000000, 2.377758, 0.000000;;, - 99;3; 0.000000, 2.377758,-0.000000;;, - 100;3;-0.000000, 2.377758,-0.000000;;, - 101;3; 0.000000, 2.377758, 0.000000;;, - 102;3;-0.000000, 2.377757, 0.000000;;, - 103;3; 0.000001, 2.377757,-0.000000;;, - 104;3; 0.000000, 2.377758, 0.000000;;, - 105;3;-0.000000, 2.377757, 0.000000;;, - 106;3;-0.000000, 2.377758,-0.000000;;, - 107;3; 0.000000, 2.377757,-0.000000;;, - 108;3;-0.000000, 2.377758, 0.000000;;, - 109;3;-0.000000, 2.377757, 0.000000;;, - 110;3; 0.000000, 2.377758,-0.000000;;, - 111;3; 0.000000, 2.377757, 0.000000;;, - 112;3; 0.000000, 2.377758,-0.000000;;, - 113;3;-0.000000, 2.377758,-0.000000;;, - 114;3; 0.000000, 2.377758, 0.000000;;, - 115;3;-0.000000, 2.377757,-0.000000;;, - 116;3;-0.000000, 2.377758,-0.000000;;, - 117;3; 0.000000, 2.377758,-0.000000;;, - 118;3; 0.000000, 2.377758,-0.000000;;, - 119;3; 0.000000, 2.377758,-0.000000;;, - 120;3; 0.000000, 2.377758, 0.000000;;, - 121;3; 0.000000, 2.377758,-0.000000;;, - 122;3;-0.000000, 2.377757, 0.000000;;, - 123;3;-0.000000, 2.377758, 0.000000;;, - 124;3; 0.000000, 2.377758, 0.000000;;, - 125;3; 0.000000, 2.377757, 0.000000;;, - 126;3; 0.000000, 2.377758,-0.000000;;, - 127;3;-0.000000, 2.377758, 0.000000;;, - 128;3; 0.000000, 2.377758,-0.000000;;, - 129;3;-0.000000, 2.377758,-0.000000;;, - 130;3;-0.000000, 2.377757, 0.000000;;, - 131;3;-0.000000, 2.377757, 0.000000;;, - 132;3;-0.000000, 2.377758,-0.000000;;, - 133;3; 0.000000, 2.377758, 0.000000;;, - 134;3; 0.000000, 2.377757, 0.000000;;, - 135;3; 0.000000, 2.377758,-0.000000;;, - 136;3; 0.000000, 2.377758, 0.000000;;, - 137;3; 0.000000, 2.377758,-0.000000;;, - 138;3;-0.000000, 2.377758, 0.000000;;, - 139;3;-0.000000, 2.377757, 0.000000;;, - 140;3; 0.000000, 2.377757,-0.000000;;, - 141;3; 0.000000, 2.377758, 0.000000;;, - 142;3;-0.000000, 2.377758,-0.000000;;, - 143;3; 0.000000, 2.377758, 0.000000;;, - 144;3; 0.000000, 2.377758,-0.000000;;, - 145;3;-0.000000, 2.377758, 0.000000;;, - 146;3;-0.000000, 2.377758, 0.000000;;, - 147;3; 0.000000, 2.377758,-0.000000;;, - 148;3;-0.000000, 2.377758, 0.000000;;, - 149;3; 0.000000, 2.377758,-0.000000;;, - 150;3; 0.000000, 2.377758,-0.000000;;, - 151;3; 0.000000, 2.377758,-0.000000;;, - 152;3; 0.000000, 2.377758,-0.000000;;, - 153;3; 0.000000, 2.377758,-0.000000;;, - 154;3; 0.000000, 2.377758,-0.000000;;, - 155;3; 0.000000, 2.377758,-0.000000;;, - 156;3; 0.000000, 2.377758,-0.000000;;, - 157;3; 0.000000, 2.377758,-0.000000;;, - 158;3; 0.000000, 2.377758,-0.000000;;, - 159;3; 0.000000, 2.377758,-0.000000;;, - 160;3; 0.000000, 2.377758,-0.000000;;, - 161;3; 0.000000, 2.377758,-0.000000;;, - 162;3; 0.000000, 2.377758,-0.000000;;, - 163;3; 0.000000, 2.377758,-0.000000;;, - 164;3; 0.000000, 2.377758,-0.000000;;, - 165;3; 0.000000, 2.377758,-0.000000;;, - 166;3; 0.000000, 2.377758,-0.000000;;, - 167;3; 0.000000, 2.377758,-0.000000;;, - 168;3; 0.000000, 2.377758,-0.000000;;, - 169;3; 0.000000, 2.377758,-0.000000;;, - 170;3; 0.000000, 2.377758,-0.000000;;, - 171;3; 0.000000, 2.377758,-0.000000;;, - 172;3; 0.000000, 2.377758,-0.000000;;, - 173;3; 0.000000, 2.377758,-0.000000;;, - 174;3; 0.000000, 2.377758,-0.000000;;, - 175;3; 0.000000, 2.377758,-0.000000;;, - 176;3; 0.000000, 2.377758,-0.000000;;, - 177;3; 0.000000, 2.377758,-0.000000;;, - 178;3; 0.000000, 2.377758,-0.000000;;, - 179;3; 0.000000, 2.377758,-0.000000;;, - 180;3; 0.000000, 2.377758,-0.000000;;, - 181;3; 0.000000, 2.377758,-0.000000;;, - 182;3; 0.000000, 2.377758,-0.000000;;, - 183;3; 0.000000, 2.377758,-0.000000;;, - 184;3; 0.000000, 2.377758,-0.000000;;, - 185;3; 0.000000, 2.377758,-0.000000;;, - 186;3; 0.000000, 2.377758,-0.000000;;, - 187;3; 0.000000, 2.377758,-0.000000;;, - 188;3; 0.000000, 2.377758,-0.000000;;, - 189;3; 0.000000, 2.377758,-0.000000;;, - 190;3; 0.000000, 2.377758,-0.000000;;, - 191;3; 0.000000, 2.377758,-0.000000;;, - 192;3; 0.000000, 2.377758,-0.000000;;, - 193;3; 0.000000, 2.377758,-0.000000;;, - 194;3; 0.000000, 2.377758,-0.000000;;, - 195;3; 0.000000, 2.377758,-0.000000;;, - 196;3; 0.000000, 2.377758,-0.000000;;, - 197;3; 0.000000, 2.377758,-0.000000;;, - 198;3; 0.000000, 2.377758,-0.000000;;, - 199;3; 0.000000, 2.377758,-0.000000;;, - 200;3; 0.000000, 2.377758,-0.000000;;, - 201;3; 0.000000, 2.377758,-0.000000;;, - 202;3; 0.000000, 2.377758,-0.000000;;, - 203;3; 0.000000, 2.377758,-0.000000;;, - 204;3; 0.000000, 2.377758,-0.000000;;, - 205;3; 0.000000, 2.377758,-0.000000;;, - 206;3; 0.000000, 2.377758,-0.000000;;, - 207;3; 0.000000, 2.377758,-0.000000;;, - 208;3; 0.000000, 2.377758,-0.000000;;, - 209;3; 0.000000, 2.377758,-0.000000;;, - 210;3; 0.000000, 2.377758,-0.000000;;, - 211;3; 0.000000, 2.377758,-0.000000;;, - 212;3; 0.000000, 2.377758,-0.000000;;, - 213;3; 0.000000, 2.377758,-0.000000;;, - 214;3; 0.000000, 2.377758,-0.000000;;, - 215;3; 0.000000, 2.377758,-0.000000;;, - 216;3; 0.000000, 2.377758,-0.000000;;, - 217;3; 0.000000, 2.377758,-0.000000;;, - 218;3; 0.000000, 2.377758,-0.000000;;, - 219;3; 0.000000, 2.377758,-0.000000;;, - 220;3; 0.000000, 2.377758,-0.000000;;, - 221;3; 0.000000, 2.377758,-0.000000;;, - 222;3; 0.000000, 2.377758,-0.000000;;, - 223;3; 0.000000, 2.377758,-0.000000;;, - 224;3; 0.000000, 2.377758,-0.000000;;, - 225;3; 0.000000, 2.377758,-0.000000;;, - 226;3; 0.000000, 2.377758,-0.000000;;, - 227;3; 0.000000, 2.377758,-0.000000;;, - 228;3; 0.000000, 2.377758,-0.000000;;, - 229;3; 0.000000, 2.377758,-0.000000;;, - 230;3; 0.000000, 2.377758,-0.000000;;, - 231;3; 0.000000, 2.377758,-0.000000;;, - 232;3; 0.000000, 2.377758,-0.000000;;, - 233;3; 0.000000, 2.377758,-0.000000;;, - 234;3; 0.000000, 2.377758,-0.000000;;, - 235;3; 0.000000, 2.377758,-0.000000;;, - 236;3; 0.000000, 2.377758,-0.000000;;, - 237;3; 0.000000, 2.377758,-0.000000;;, - 238;3; 0.000000, 2.377758,-0.000000;;, - 239;3; 0.000000, 2.377758,-0.000000;;, - 240;3; 0.000000, 2.377758,-0.000000;;, - 241;3; 0.000000, 2.377758,-0.000000;;, - 242;3; 0.000000, 2.377758,-0.000000;;, - 243;3; 0.000000, 2.377758,-0.000000;;, - 244;3; 0.000000, 2.377758,-0.000000;;, - 245;3; 0.000000, 2.377758,-0.000000;;, - 246;3; 0.000000, 2.377758,-0.000000;;, - 247;3; 0.000000, 2.377758,-0.000000;;, - 248;3; 0.000000, 2.377758,-0.000000;;, - 249;3; 0.000000, 2.377758,-0.000000;;; - } - } - Animation { - {Armature_Bone_006} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 1;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 2;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 3;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 4;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 5;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 6;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 7;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 8;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 9;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 10;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 11;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 12;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 13;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 14;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 15;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 16;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 17;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 18;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 19;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 20;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 21;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 22;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 23;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 24;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 25;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 26;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 27;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 28;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 29;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 30;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 31;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 32;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 33;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 34;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 35;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 36;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 37;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 38;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 39;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 40;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 41;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 42;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 43;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 44;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 45;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 46;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 47;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 48;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 49;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 50;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 51;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 52;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 53;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 54;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 55;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 56;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 57;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 58;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 59;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 60;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 61;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 62;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 63;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 64;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 65;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 66;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 67;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 68;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 69;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 70;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 71;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 72;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 73;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 74;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 75;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 76;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 77;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 78;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 79;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 80;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 81;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 82;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 83;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 84;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 85;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 86;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 87;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 88;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 89;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 90;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 91;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 92;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 93;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 94;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 95;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 96;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 97;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 98;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 99;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 100;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 101;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 102;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 103;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 104;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 105;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 106;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 107;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 108;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 109;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 110;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 111;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 112;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 113;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 114;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 115;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 116;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 117;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 118;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 119;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 120;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 121;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 122;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 123;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 124;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 125;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 126;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 127;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 128;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 129;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 130;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 131;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 132;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 133;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 134;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 135;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 136;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 137;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 138;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 139;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 140;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 141;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 142;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 143;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 144;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 145;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 146;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 147;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 148;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 149;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 150;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 151;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 152;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 153;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 154;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 155;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 156;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 157;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 158;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 159;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 160;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 161;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 162;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 163;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 164;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 165;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 166;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 167;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 168;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 169;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 170;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 171;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 172;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 173;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 174;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 175;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 176;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 177;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 178;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 179;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 180;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 181;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 182;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 183;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 184;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 185;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 186;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 187;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 188;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 189;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 190;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 191;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 192;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 193;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 194;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 195;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 196;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 197;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 198;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 199;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 200;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 201;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 202;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 203;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 204;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 205;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 206;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 207;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 208;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 209;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 210;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 211;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 212;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 213;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 214;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 215;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 216;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 217;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 218;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 219;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 220;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 221;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 222;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 223;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 224;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 225;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 226;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 227;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 228;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 229;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 230;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 231;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 232;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 233;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 234;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 235;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 236;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 237;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 238;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 239;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 240;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 241;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 242;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 243;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 244;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 245;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 246;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 247;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 248;4;-0.824573, 0.000000, 0.000000, 0.565755;;, - 249;4;-0.824573, 0.000000, 0.000000, 0.565755;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3; 0.000000, 0.705560, 0.000000;;, - 1;3; 0.000000, 0.705560, 0.000000;;, - 2;3; 0.000000, 0.705560, 0.000000;;, - 3;3; 0.000000, 0.705560, 0.000000;;, - 4;3; 0.000000, 0.705560, 0.000000;;, - 5;3; 0.000000, 0.705560, 0.000000;;, - 6;3; 0.000000, 0.705560, 0.000000;;, - 7;3; 0.000000, 0.705560, 0.000000;;, - 8;3; 0.000000, 0.705560, 0.000000;;, - 9;3; 0.000000, 0.705560, 0.000000;;, - 10;3; 0.000000, 0.705560, 0.000000;;, - 11;3; 0.000000, 0.705560, 0.000000;;, - 12;3; 0.000000, 0.705560, 0.000000;;, - 13;3; 0.000000, 0.705560, 0.000000;;, - 14;3; 0.000000, 0.705560, 0.000000;;, - 15;3; 0.000000, 0.705560, 0.000000;;, - 16;3; 0.000000, 0.705560, 0.000000;;, - 17;3; 0.000000, 0.705560, 0.000000;;, - 18;3; 0.000000, 0.705560, 0.000000;;, - 19;3; 0.000000, 0.705560, 0.000000;;, - 20;3; 0.000000, 0.705560, 0.000000;;, - 21;3; 0.000000, 0.705560, 0.000000;;, - 22;3; 0.000000, 0.705560, 0.000000;;, - 23;3; 0.000000, 0.705560, 0.000000;;, - 24;3; 0.000000, 0.705560, 0.000000;;, - 25;3; 0.000000, 0.705560, 0.000000;;, - 26;3; 0.000000, 0.705560, 0.000000;;, - 27;3; 0.000000, 0.705560, 0.000000;;, - 28;3; 0.000000, 0.705560, 0.000000;;, - 29;3; 0.000000, 0.705560, 0.000000;;, - 30;3; 0.000000, 0.705560, 0.000000;;, - 31;3; 0.000000, 0.705560, 0.000000;;, - 32;3; 0.000000, 0.705560, 0.000000;;, - 33;3; 0.000000, 0.705560, 0.000000;;, - 34;3; 0.000000, 0.705560, 0.000000;;, - 35;3; 0.000000, 0.705560, 0.000000;;, - 36;3; 0.000000, 0.705560, 0.000000;;, - 37;3; 0.000000, 0.705560, 0.000000;;, - 38;3; 0.000000, 0.705560, 0.000000;;, - 39;3; 0.000000, 0.705560, 0.000000;;, - 40;3; 0.000000, 0.705560, 0.000000;;, - 41;3; 0.000000, 0.705559, 0.000000;;, - 42;3;-0.000000, 0.705560, 0.000000;;, - 43;3; 0.000000, 0.705560,-0.000000;;, - 44;3; 0.000000, 0.705560, 0.000000;;, - 45;3; 0.000000, 0.705560,-0.000000;;, - 46;3; 0.000000, 0.705559, 0.000000;;, - 47;3;-0.000000, 0.705560, 0.000000;;, - 48;3; 0.000000, 0.705560,-0.000000;;, - 49;3; 0.000000, 0.705560, 0.000000;;, - 50;3;-0.000000, 0.705559, 0.000000;;, - 51;3; 0.000000, 0.705560,-0.000000;;, - 52;3;-0.000000, 0.705560, 0.000000;;, - 53;3; 0.000000, 0.705560,-0.000000;;, - 54;3; 0.000000, 0.705560, 0.000000;;, - 55;3; 0.000000, 0.705560,-0.000000;;, - 56;3;-0.000000, 0.705560, 0.000000;;, - 57;3; 0.000000, 0.705559, 0.000000;;, - 58;3;-0.000000, 0.705560, 0.000000;;, - 59;3; 0.000000, 0.705560, 0.000000;;, - 60;3; 0.000000, 0.705560,-0.000000;;, - 61;3; 0.000000, 0.705560, 0.000000;;, - 62;3; 0.000000, 0.705560, 0.000000;;, - 63;3; 0.000000, 0.705560, 0.000000;;, - 64;3; 0.000000, 0.705560,-0.000000;;, - 65;3;-0.000000, 0.705560, 0.000000;;, - 66;3; 0.000000, 0.705560, 0.000000;;, - 67;3;-0.000000, 0.705560, 0.000000;;, - 68;3; 0.000000, 0.705559, 0.000000;;, - 69;3; 0.000000, 0.705560, 0.000000;;, - 70;3; 0.000000, 0.705560, 0.000000;;, - 71;3;-0.000000, 0.705560, 0.000000;;, - 72;3;-0.000000, 0.705560, 0.000000;;, - 73;3;-0.000000, 0.705560, 0.000000;;, - 74;3;-0.000000, 0.705560, 0.000000;;, - 75;3;-0.000000, 0.705560, 0.000000;;, - 76;3; 0.000000, 0.705559, 0.000000;;, - 77;3;-0.000000, 0.705560, 0.000000;;, - 78;3; 0.000000, 0.705560, 0.000000;;, - 79;3;-0.000000, 0.705559, 0.000000;;, - 80;3; 0.000000, 0.705560, 0.000000;;, - 81;3;-0.000000, 0.705560, 0.000000;;, - 82;3; 0.000000, 0.705560, 0.000000;;, - 83;3; 0.000000, 0.705560, 0.000000;;, - 84;3; 0.000000, 0.705560,-0.000000;;, - 85;3;-0.000000, 0.705560, 0.000000;;, - 86;3;-0.000000, 0.705560, 0.000000;;, - 87;3; 0.000000, 0.705560,-0.000000;;, - 88;3; 0.000000, 0.705560, 0.000000;;, - 89;3; 0.000000, 0.705560, 0.000000;;, - 90;3; 0.000000, 0.705560, 0.000000;;, - 91;3; 0.000000, 0.705560, 0.000000;;, - 92;3; 0.000000, 0.705560, 0.000000;;, - 93;3; 0.000000, 0.705560, 0.000000;;, - 94;3; 0.000000, 0.705560, 0.000000;;, - 95;3; 0.000000, 0.705560, 0.000000;;, - 96;3; 0.000000, 0.705560,-0.000000;;, - 97;3; 0.000000, 0.705560,-0.000000;;, - 98;3; 0.000000, 0.705560, 0.000000;;, - 99;3; 0.000000, 0.705560, 0.000000;;, - 100;3;-0.000000, 0.705560,-0.000000;;, - 101;3; 0.000000, 0.705560,-0.000000;;, - 102;3; 0.000000, 0.705559, 0.000000;;, - 103;3;-0.000000, 0.705560,-0.000000;;, - 104;3;-0.000000, 0.705559,-0.000000;;, - 105;3;-0.000000, 0.705560,-0.000000;;, - 106;3; 0.000000, 0.705560, 0.000000;;, - 107;3;-0.000000, 0.705559,-0.000000;;, - 108;3; 0.000000, 0.705560,-0.000000;;, - 109;3; 0.000000, 0.705559,-0.000000;;, - 110;3;-0.000000, 0.705559, 0.000000;;, - 111;3; 0.000000, 0.705560,-0.000000;;, - 112;3; 0.000000, 0.705560, 0.000000;;, - 113;3; 0.000000, 0.705560,-0.000000;;, - 114;3;-0.000000, 0.705559, 0.000000;;, - 115;3; 0.000000, 0.705560, 0.000000;;, - 116;3;-0.000000, 0.705560,-0.000000;;, - 117;3; 0.000000, 0.705560, 0.000000;;, - 118;3; 0.000000, 0.705560,-0.000000;;, - 119;3; 0.000000, 0.705560, 0.000000;;, - 120;3; 0.000000, 0.705560,-0.000000;;, - 121;3; 0.000000, 0.705560,-0.000000;;, - 122;3;-0.000000, 0.705560,-0.000000;;, - 123;3; 0.000000, 0.705560, 0.000000;;, - 124;3; 0.000000, 0.705560, 0.000000;;, - 125;3; 0.000000, 0.705560, 0.000000;;, - 126;3;-0.000000, 0.705560, 0.000000;;, - 127;3;-0.000000, 0.705560, 0.000000;;, - 128;3;-0.000000, 0.705560,-0.000000;;, - 129;3; 0.000000, 0.705560, 0.000000;;, - 130;3; 0.000000, 0.705559, 0.000000;;, - 131;3; 0.000000, 0.705560, 0.000000;;, - 132;3; 0.000000, 0.705560, 0.000000;;, - 133;3; 0.000000, 0.705560,-0.000000;;, - 134;3; 0.000000, 0.705560, 0.000000;;, - 135;3; 0.000000, 0.705560, 0.000000;;, - 136;3;-0.000000, 0.705560,-0.000000;;, - 137;3; 0.000000, 0.705560, 0.000000;;, - 138;3;-0.000000, 0.705559, 0.000000;;, - 139;3;-0.000000, 0.705560,-0.000000;;, - 140;3; 0.000000, 0.705560, 0.000000;;, - 141;3; 0.000000, 0.705560, 0.000000;;, - 142;3; 0.000000, 0.705560, 0.000000;;, - 143;3; 0.000000, 0.705560,-0.000000;;, - 144;3; 0.000000, 0.705560, 0.000000;;, - 145;3; 0.000000, 0.705560,-0.000000;;, - 146;3; 0.000000, 0.705560, 0.000000;;, - 147;3; 0.000000, 0.705560,-0.000000;;, - 148;3; 0.000000, 0.705560, 0.000000;;, - 149;3; 0.000000, 0.705560, 0.000000;;, - 150;3; 0.000000, 0.705560, 0.000000;;, - 151;3; 0.000000, 0.705560, 0.000000;;, - 152;3; 0.000000, 0.705560, 0.000000;;, - 153;3; 0.000000, 0.705560, 0.000000;;, - 154;3; 0.000000, 0.705560, 0.000000;;, - 155;3; 0.000000, 0.705560, 0.000000;;, - 156;3; 0.000000, 0.705560, 0.000000;;, - 157;3; 0.000000, 0.705560, 0.000000;;, - 158;3; 0.000000, 0.705560, 0.000000;;, - 159;3; 0.000000, 0.705560, 0.000000;;, - 160;3; 0.000000, 0.705560, 0.000000;;, - 161;3; 0.000000, 0.705560, 0.000000;;, - 162;3; 0.000000, 0.705560, 0.000000;;, - 163;3; 0.000000, 0.705560, 0.000000;;, - 164;3; 0.000000, 0.705560, 0.000000;;, - 165;3; 0.000000, 0.705560, 0.000000;;, - 166;3; 0.000000, 0.705560, 0.000000;;, - 167;3; 0.000000, 0.705560, 0.000000;;, - 168;3; 0.000000, 0.705560, 0.000000;;, - 169;3; 0.000000, 0.705560, 0.000000;;, - 170;3; 0.000000, 0.705560, 0.000000;;, - 171;3; 0.000000, 0.705560, 0.000000;;, - 172;3; 0.000000, 0.705560, 0.000000;;, - 173;3; 0.000000, 0.705560, 0.000000;;, - 174;3; 0.000000, 0.705560, 0.000000;;, - 175;3; 0.000000, 0.705560, 0.000000;;, - 176;3; 0.000000, 0.705560, 0.000000;;, - 177;3; 0.000000, 0.705560, 0.000000;;, - 178;3; 0.000000, 0.705560, 0.000000;;, - 179;3; 0.000000, 0.705560, 0.000000;;, - 180;3; 0.000000, 0.705560, 0.000000;;, - 181;3; 0.000000, 0.705560, 0.000000;;, - 182;3; 0.000000, 0.705560, 0.000000;;, - 183;3; 0.000000, 0.705560, 0.000000;;, - 184;3; 0.000000, 0.705560, 0.000000;;, - 185;3; 0.000000, 0.705560, 0.000000;;, - 186;3; 0.000000, 0.705560, 0.000000;;, - 187;3; 0.000000, 0.705560, 0.000000;;, - 188;3; 0.000000, 0.705560, 0.000000;;, - 189;3; 0.000000, 0.705560, 0.000000;;, - 190;3; 0.000000, 0.705560, 0.000000;;, - 191;3; 0.000000, 0.705560, 0.000000;;, - 192;3; 0.000000, 0.705560, 0.000000;;, - 193;3; 0.000000, 0.705560, 0.000000;;, - 194;3; 0.000000, 0.705560, 0.000000;;, - 195;3; 0.000000, 0.705560, 0.000000;;, - 196;3; 0.000000, 0.705560, 0.000000;;, - 197;3; 0.000000, 0.705560, 0.000000;;, - 198;3; 0.000000, 0.705560, 0.000000;;, - 199;3; 0.000000, 0.705560, 0.000000;;, - 200;3; 0.000000, 0.705560, 0.000000;;, - 201;3; 0.000000, 0.705560, 0.000000;;, - 202;3; 0.000000, 0.705560, 0.000000;;, - 203;3; 0.000000, 0.705560, 0.000000;;, - 204;3; 0.000000, 0.705560, 0.000000;;, - 205;3; 0.000000, 0.705560, 0.000000;;, - 206;3; 0.000000, 0.705560, 0.000000;;, - 207;3; 0.000000, 0.705560, 0.000000;;, - 208;3; 0.000000, 0.705560, 0.000000;;, - 209;3; 0.000000, 0.705560, 0.000000;;, - 210;3; 0.000000, 0.705560, 0.000000;;, - 211;3; 0.000000, 0.705560, 0.000000;;, - 212;3; 0.000000, 0.705560, 0.000000;;, - 213;3; 0.000000, 0.705560, 0.000000;;, - 214;3; 0.000000, 0.705560, 0.000000;;, - 215;3; 0.000000, 0.705560, 0.000000;;, - 216;3; 0.000000, 0.705560, 0.000000;;, - 217;3; 0.000000, 0.705560, 0.000000;;, - 218;3; 0.000000, 0.705560, 0.000000;;, - 219;3; 0.000000, 0.705560, 0.000000;;, - 220;3; 0.000000, 0.705560, 0.000000;;, - 221;3; 0.000000, 0.705560, 0.000000;;, - 222;3; 0.000000, 0.705560, 0.000000;;, - 223;3; 0.000000, 0.705560, 0.000000;;, - 224;3; 0.000000, 0.705560, 0.000000;;, - 225;3; 0.000000, 0.705560, 0.000000;;, - 226;3; 0.000000, 0.705560, 0.000000;;, - 227;3; 0.000000, 0.705560, 0.000000;;, - 228;3; 0.000000, 0.705560, 0.000000;;, - 229;3; 0.000000, 0.705560, 0.000000;;, - 230;3; 0.000000, 0.705560, 0.000000;;, - 231;3; 0.000000, 0.705560, 0.000000;;, - 232;3; 0.000000, 0.705560, 0.000000;;, - 233;3; 0.000000, 0.705560, 0.000000;;, - 234;3; 0.000000, 0.705560, 0.000000;;, - 235;3; 0.000000, 0.705560, 0.000000;;, - 236;3; 0.000000, 0.705560, 0.000000;;, - 237;3; 0.000000, 0.705560, 0.000000;;, - 238;3; 0.000000, 0.705560, 0.000000;;, - 239;3; 0.000000, 0.705560, 0.000000;;, - 240;3; 0.000000, 0.705560, 0.000000;;, - 241;3; 0.000000, 0.705560, 0.000000;;, - 242;3; 0.000000, 0.705560, 0.000000;;, - 243;3; 0.000000, 0.705560, 0.000000;;, - 244;3; 0.000000, 0.705560, 0.000000;;, - 245;3; 0.000000, 0.705560, 0.000000;;, - 246;3; 0.000000, 0.705560, 0.000000;;, - 247;3; 0.000000, 0.705560, 0.000000;;, - 248;3; 0.000000, 0.705560, 0.000000;;, - 249;3; 0.000000, 0.705560, 0.000000;;; - } - } - Animation { - {Armature_Bone_017} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.747733,-0.638280,-0.118820, 0.139195;;, - 1;4;-0.747885,-0.638095,-0.118786, 0.139223;;, - 2;4;-0.748346,-0.637533,-0.118681, 0.139309;;, - 3;4;-0.749115,-0.636595,-0.118507, 0.139452;;, - 4;4;-0.750186,-0.635288,-0.118263, 0.139651;;, - 5;4;-0.751544,-0.633631,-0.117955, 0.139904;;, - 6;4;-0.753162,-0.631657,-0.117587, 0.140205;;, - 7;4;-0.755000,-0.629414,-0.117170, 0.140548;;, - 8;4;-0.757006,-0.626967,-0.116714, 0.140921;;, - 9;4;-0.759119,-0.624389,-0.116234, 0.141314;;, - 10;4;-0.761267,-0.621768,-0.115747, 0.141714;;, - 11;4;-0.763379,-0.619191,-0.115267, 0.142107;;, - 12;4;-0.765386,-0.616743,-0.114811, 0.142481;;, - 13;4;-0.767224,-0.614501,-0.114394, 0.142823;;, - 14;4;-0.768841,-0.612527,-0.114026, 0.143124;;, - 15;4;-0.770200,-0.610870,-0.113718, 0.143377;;, - 16;4;-0.771271,-0.609563,-0.113474, 0.143577;;, - 17;4;-0.772040,-0.608624,-0.113300, 0.143720;;, - 18;4;-0.772500,-0.608063,-0.113195, 0.143805;;, - 19;4;-0.772653,-0.607877,-0.113161, 0.143834;;, - 20;4;-0.772515,-0.608045,-0.113192, 0.143808;;, - 21;4;-0.772100,-0.608551,-0.113286, 0.143731;;, - 22;4;-0.771406,-0.609398,-0.113444, 0.143602;;, - 23;4;-0.770437,-0.610580,-0.113664, 0.143421;;, - 24;4;-0.769207,-0.612081,-0.113943, 0.143192;;, - 25;4;-0.767734,-0.613878,-0.114278, 0.142918;;, - 26;4;-0.766051,-0.615931,-0.114660, 0.142605;;, - 27;4;-0.764198,-0.618192,-0.115081, 0.142260;;, - 28;4;-0.762226,-0.620598,-0.115529, 0.141893;;, - 29;4;-0.760193,-0.623079,-0.115990, 0.141514;;, - 30;4;-0.758159,-0.625560,-0.116452, 0.141136;;, - 31;4;-0.756187,-0.627966,-0.116900, 0.140769;;, - 32;4;-0.754335,-0.630226,-0.117321, 0.140424;;, - 33;4;-0.752652,-0.632280,-0.117703, 0.140110;;, - 34;4;-0.751179,-0.634076,-0.118038, 0.139836;;, - 35;4;-0.749948,-0.635578,-0.118317, 0.139607;;, - 36;4;-0.748980,-0.636759,-0.118537, 0.139427;;, - 37;4;-0.748286,-0.637606,-0.118695, 0.139298;;, - 38;4;-0.747871,-0.638113,-0.118789, 0.139220;;, - 39;4;-0.747733,-0.638280,-0.118820, 0.139195;;, - 40;4;-0.747963,-0.636174,-0.121121, 0.138465;;, - 41;4;-0.748661,-0.629808,-0.128075, 0.136234;;, - 42;4;-0.749838,-0.619163,-0.139703, 0.132452;;, - 43;4;-0.751497,-0.604310,-0.155928, 0.127089;;, - 44;4;-0.753628,-0.585433,-0.176549, 0.120150;;, - 45;4;-0.756210,-0.562853,-0.201216, 0.111673;;, - 46;4;-0.759205,-0.537041,-0.229412, 0.101749;;, - 47;4;-0.762560,-0.508627,-0.260449, 0.090515;;, - 48;4;-0.766204,-0.478386,-0.293485, 0.078162;;, - 49;4;-0.770054,-0.447199,-0.327552, 0.064927;;, - 50;4;-0.774019,-0.416013,-0.361619, 0.051079;;, - 51;4;-0.778003,-0.385771,-0.394654, 0.036902;;, - 52;4;-0.781913,-0.357358,-0.425692, 0.022680;;, - 53;4;-0.785668,-0.331546,-0.453888, 0.008676;;, - 54;4;-0.789196,-0.308966,-0.478554,-0.004880;;, - 55;4;-0.792440,-0.290089,-0.499175,-0.017798;;, - 56;4;-0.795359,-0.275236,-0.515400,-0.029932;;, - 57;4;-0.797925,-0.264591,-0.527028,-0.041175;;, - 58;4;-0.800122,-0.258225,-0.533982,-0.051458;;, - 59;4;-0.801944,-0.256119,-0.536283,-0.060742;;, - 60;4;-0.800005,-0.263646,-0.534161,-0.070631;;, - 61;4;-0.790863,-0.286301,-0.527775,-0.082637;;, - 62;4;-0.774925,-0.323136,-0.517392,-0.096390;;, - 63;4;-0.753483,-0.371314,-0.503811,-0.111178;;, - 64;4;-0.728826,-0.425893,-0.488426,-0.125956;;, - 65;4;-0.703941,-0.480471,-0.473041,-0.139515;;, - 66;4;-0.681841,-0.528650,-0.459460,-0.150769;;, - 67;4;-0.664874,-0.565485,-0.449077,-0.158993;;, - 68;4;-0.654408,-0.588139,-0.442691,-0.163883;;, - 69;4;-0.650923,-0.595667,-0.440569,-0.165469;;, - 70;4;-0.651325,-0.594837,-0.440803,-0.165392;;, - 71;4;-0.652538,-0.592333,-0.441509,-0.165152;;, - 72;4;-0.654566,-0.588139,-0.442691,-0.164734;;, - 73;4;-0.657408,-0.582255,-0.444350,-0.164125;;, - 74;4;-0.661053,-0.574692,-0.446482,-0.163308;;, - 75;4;-0.665484,-0.565485,-0.449077,-0.162270;;, - 76;4;-0.670670,-0.554686,-0.452121,-0.160994;;, - 77;4;-0.676569,-0.542373,-0.455592,-0.159466;;, - 78;4;-0.683126,-0.528650,-0.459460,-0.157673;;, - 79;4;-0.690275,-0.513648,-0.463689,-0.155602;;, - 80;4;-0.697931,-0.497527,-0.468234,-0.153242;;, - 81;4;-0.706002,-0.480471,-0.473041,-0.150587;;, - 82;4;-0.714381,-0.462692,-0.478053,-0.147631;;, - 83;4;-0.722951,-0.444418,-0.483204,-0.144373;;, - 84;4;-0.731592,-0.425893,-0.488426,-0.140815;;, - 85;4;-0.740178,-0.407368,-0.493648,-0.136963;;, - 86;4;-0.748585,-0.389094,-0.498799,-0.132826;;, - 87;4;-0.756692,-0.371314,-0.503811,-0.128416;;, - 88;4;-0.764388,-0.354259,-0.508619,-0.123748;;, - 89;4;-0.771571,-0.338138,-0.513163,-0.118840;;, - 90;4;-0.778149,-0.323136,-0.517392,-0.113710;;, - 91;4;-0.784048,-0.309413,-0.521260,-0.108379;;, - 92;4;-0.789206,-0.297100,-0.524731,-0.102866;;, - 93;4;-0.793572,-0.286301,-0.527775,-0.097190;;, - 94;4;-0.797113,-0.277093,-0.530370,-0.091373;;, - 95;4;-0.799805,-0.269531,-0.532502,-0.085430;;, - 96;4;-0.801634,-0.263646,-0.534161,-0.079381;;, - 97;4;-0.802597,-0.259452,-0.535343,-0.073240;;, - 98;4;-0.802697,-0.256948,-0.536049,-0.067023;;, - 99;4;-0.801944,-0.256119,-0.536283,-0.060742;;, - 100;4;-0.800640,-0.257668,-0.533879,-0.053742;;, - 101;4;-0.799070,-0.262388,-0.526618,-0.045365;;, - 102;4;-0.797229,-0.270360,-0.514492,-0.035638;;, - 103;4;-0.795115,-0.281608,-0.497596,-0.024624;;, - 104;4;-0.792734,-0.296091,-0.476158,-0.012430;;, - 105;4;-0.790097,-0.313678,-0.450561, 0.000785;;, - 106;4;-0.787227,-0.334133,-0.421368, 0.014808;;, - 107;4;-0.784152,-0.357113,-0.389319, 0.029373;;, - 108;4;-0.780914,-0.382163,-0.355317, 0.044166;;, - 109;4;-0.777558,-0.408739,-0.320392, 0.058846;;, - 110;4;-0.774138,-0.436233,-0.285638, 0.073058;;, - 111;4;-0.770706,-0.464013,-0.252144, 0.086459;;, - 112;4;-0.767316,-0.491463,-0.220927, 0.098743;;, - 113;4;-0.764014,-0.518023,-0.192870, 0.109652;;, - 114;4;-0.760839,-0.543211,-0.168689, 0.118989;;, - 115;4;-0.757825,-0.566641,-0.148916, 0.126619;;, - 116;4;-0.754995,-0.588023,-0.133906, 0.132464;;, - 117;4;-0.752365,-0.607160,-0.123859, 0.136495;;, - 118;4;-0.749943,-0.623930,-0.118842, 0.138725;;, - 119;4;-0.747733,-0.638280,-0.118820, 0.139195;;, - 120;4;-0.741650,-0.652308,-0.124355, 0.136528;;, - 121;4;-0.728529,-0.667032,-0.135330, 0.129518;;, - 122;4;-0.712797,-0.679718,-0.148265, 0.120066;;, - 123;4;-0.701085,-0.687660,-0.157977, 0.111524;;, - 124;4;-0.697398,-0.690151,-0.161364, 0.106251;;, - 125;4;-0.717624,-0.660551,-0.154773, 0.106530;;, - 126;4;-0.773414,-0.577178,-0.136205, 0.113656;;, - 127;4;-0.844752,-0.470127,-0.112365, 0.124396;;, - 128;4;-0.900219,-0.386754,-0.093798, 0.133257;;, - 129;4;-0.919895,-0.357155,-0.087207, 0.136487;;, - 130;4;-0.919895,-0.357155,-0.087207, 0.136487;;, - 131;4;-0.919895,-0.357155,-0.087207, 0.136487;;, - 132;4;-0.919895,-0.357155,-0.087207, 0.136487;;, - 133;4;-0.919895,-0.357155,-0.087207, 0.136487;;, - 134;4;-0.919895,-0.357155,-0.087207, 0.136487;;, - 135;4;-0.917620,-0.355053,-0.075650, 0.091210;;, - 136;4;-0.909416,-0.349687,-0.040126,-0.036655;;, - 137;4;-0.894066,-0.344282, 0.013468,-0.201729;;, - 138;4;-0.872735,-0.342965, 0.070742,-0.332038;;, - 139;4;-0.848124,-0.347752, 0.119303,-0.381473;;, - 140;4;-0.821274,-0.364797, 0.167927,-0.383888;;, - 141;4;-0.792953,-0.400293, 0.224950,-0.378078;;, - 142;4;-0.766789,-0.448286, 0.277082,-0.358502;;, - 143;4;-0.746586,-0.496441, 0.309246,-0.323337;;, - 144;4;-0.733548,-0.535025, 0.315573,-0.275806;;, - 145;4;-0.727851,-0.567407, 0.272641,-0.201542;;, - 146;4;-0.730120,-0.597538, 0.163084,-0.090746;;, - 147;4;-0.737627,-0.620903, 0.025266, 0.026836;;, - 148;4;-0.744906,-0.634326,-0.081180, 0.110720;;, - 149;4;-0.747733,-0.638280,-0.118820, 0.139195;;, - 150;4;-0.747733,-0.638280,-0.118820, 0.139195;;, - 151;4;-0.747733,-0.638280,-0.118820, 0.139195;;, - 152;4;-0.747733,-0.638280,-0.118820, 0.139195;;, - 153;4;-0.747733,-0.638280,-0.118820, 0.139195;;, - 154;4;-0.747733,-0.638280,-0.118820, 0.139195;;, - 155;4;-0.747733,-0.638280,-0.118820, 0.139195;;, - 156;4;-0.747733,-0.638280,-0.118820, 0.139195;;, - 157;4;-0.747733,-0.638280,-0.118820, 0.139195;;, - 158;4;-0.747733,-0.638280,-0.118820, 0.139195;;, - 159;4;-0.747733,-0.638280,-0.118820, 0.139195;;, - 160;4;-0.747733,-0.638280,-0.118820, 0.139195;;, - 161;4;-0.747733,-0.638280,-0.118820, 0.139195;;, - 162;4;-0.747733,-0.638280,-0.118820, 0.139195;;, - 163;4;-0.747733,-0.638280,-0.118820, 0.139195;;, - 164;4;-0.747733,-0.638280,-0.118820, 0.139195;;, - 165;4;-0.747733,-0.638280,-0.118820, 0.139195;;, - 166;4;-0.747733,-0.638280,-0.118820, 0.139195;;, - 167;4;-0.747733,-0.638280,-0.118820, 0.139195;;, - 168;4;-0.747733,-0.638280,-0.118820, 0.139195;;, - 169;4;-0.747733,-0.638280,-0.118820, 0.139195;;, - 170;4;-0.747733,-0.638280,-0.118820, 0.139195;;, - 171;4;-0.747733,-0.638280,-0.118820, 0.139195;;, - 172;4;-0.747733,-0.638280,-0.118820, 0.139195;;, - 173;4;-0.747733,-0.638280,-0.118820, 0.139195;;, - 174;4;-0.747733,-0.638280,-0.118820, 0.139195;;, - 175;4;-0.747733,-0.638280,-0.118820, 0.139195;;, - 176;4;-0.747733,-0.638280,-0.118820, 0.139195;;, - 177;4;-0.747733,-0.638280,-0.118820, 0.139195;;, - 178;4;-0.747733,-0.638280,-0.118820, 0.139195;;, - 179;4;-0.747733,-0.638280,-0.118820, 0.139195;;, - 180;4;-0.747733,-0.638280,-0.118820, 0.139195;;, - 181;4;-0.747733,-0.638280,-0.118820, 0.139195;;, - 182;4;-0.747733,-0.638280,-0.118820, 0.139195;;, - 183;4;-0.747733,-0.638280,-0.118820, 0.139195;;, - 184;4;-0.747733,-0.638280,-0.118820, 0.139195;;, - 185;4;-0.747733,-0.638280,-0.118820, 0.139195;;, - 186;4;-0.747733,-0.638280,-0.118820, 0.139195;;, - 187;4;-0.747733,-0.638280,-0.118820, 0.139195;;, - 188;4;-0.747733,-0.638280,-0.118820, 0.139195;;, - 189;4;-0.747733,-0.638280,-0.118820, 0.139195;;, - 190;4;-0.747733,-0.638280,-0.118820, 0.139195;;, - 191;4;-0.747733,-0.638280,-0.118820, 0.139195;;, - 192;4;-0.747733,-0.638280,-0.118820, 0.139195;;, - 193;4;-0.747733,-0.638280,-0.118820, 0.139195;;, - 194;4;-0.747733,-0.638280,-0.118820, 0.139195;;, - 195;4;-0.747733,-0.638280,-0.118820, 0.139195;;, - 196;4;-0.747733,-0.638280,-0.118820, 0.139195;;, - 197;4;-0.747733,-0.638280,-0.118820, 0.139195;;, - 198;4;-0.747733,-0.638280,-0.118820, 0.139195;;, - 199;4;-0.747733,-0.638280,-0.118820, 0.139195;;, - 200;4;-0.747733,-0.638280,-0.118820, 0.139195;;, - 201;4;-0.747733,-0.638280,-0.118820, 0.139195;;, - 202;4;-0.747733,-0.638280,-0.118820, 0.139195;;, - 203;4;-0.747733,-0.638280,-0.118820, 0.139195;;, - 204;4;-0.747733,-0.638280,-0.118820, 0.139195;;, - 205;4;-0.747733,-0.638280,-0.118820, 0.139195;;, - 206;4;-0.747733,-0.638280,-0.118820, 0.139195;;, - 207;4;-0.747733,-0.638280,-0.118820, 0.139195;;, - 208;4;-0.747733,-0.638280,-0.118820, 0.139195;;, - 209;4;-0.747733,-0.638280,-0.118820, 0.139195;;, - 210;4;-0.747733,-0.638280,-0.118820, 0.139195;;, - 211;4;-0.747733,-0.638280,-0.118820, 0.139195;;, - 212;4;-0.747733,-0.638280,-0.118820, 0.139195;;, - 213;4;-0.747733,-0.638280,-0.118820, 0.139195;;, - 214;4;-0.747733,-0.638280,-0.118820, 0.139195;;, - 215;4;-0.747733,-0.638280,-0.118820, 0.139195;;, - 216;4;-0.747733,-0.638280,-0.118820, 0.139195;;, - 217;4;-0.747733,-0.638280,-0.118820, 0.139195;;, - 218;4;-0.747733,-0.638280,-0.118820, 0.139195;;, - 219;4;-0.747733,-0.638280,-0.118820, 0.139195;;, - 220;4;-0.747733,-0.638280,-0.118820, 0.139195;;, - 221;4;-0.747733,-0.638280,-0.118820, 0.139195;;, - 222;4;-0.747733,-0.638280,-0.118820, 0.139195;;, - 223;4;-0.747733,-0.638280,-0.118820, 0.139195;;, - 224;4;-0.747733,-0.638280,-0.118820, 0.139195;;, - 225;4;-0.747733,-0.638280,-0.118820, 0.139195;;, - 226;4;-0.747733,-0.638280,-0.118820, 0.139195;;, - 227;4;-0.747733,-0.638280,-0.118820, 0.139195;;, - 228;4;-0.747733,-0.638280,-0.118820, 0.139195;;, - 229;4;-0.747733,-0.638280,-0.118820, 0.139195;;, - 230;4;-0.747733,-0.638280,-0.118820, 0.139195;;, - 231;4;-0.747733,-0.638280,-0.118820, 0.139195;;, - 232;4;-0.747733,-0.638280,-0.118820, 0.139195;;, - 233;4;-0.747733,-0.638280,-0.118820, 0.139195;;, - 234;4;-0.747733,-0.638280,-0.118820, 0.139195;;, - 235;4;-0.747733,-0.638280,-0.118820, 0.139195;;, - 236;4;-0.747733,-0.638280,-0.118820, 0.139195;;, - 237;4;-0.747733,-0.638280,-0.118820, 0.139195;;, - 238;4;-0.747733,-0.638280,-0.118820, 0.139195;;, - 239;4;-0.747733,-0.638280,-0.118820, 0.139195;;, - 240;4;-0.747733,-0.638280,-0.118820, 0.139195;;, - 241;4;-0.747733,-0.638280,-0.118820, 0.139195;;, - 242;4;-0.747733,-0.638280,-0.118820, 0.139195;;, - 243;4;-0.747733,-0.638280,-0.118820, 0.139195;;, - 244;4;-0.747733,-0.638280,-0.118820, 0.139195;;, - 245;4;-0.747733,-0.638280,-0.118820, 0.139195;;, - 246;4;-0.747733,-0.638280,-0.118820, 0.139195;;, - 247;4;-0.747733,-0.638280,-0.118820, 0.139195;;, - 248;4;-0.747733,-0.638280,-0.118820, 0.139195;;, - 249;4;-0.747733,-0.638280,-0.118820, 0.139195;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3; 0.000000, 1.094029, 0.000000;;, - 1;3; 0.000000, 1.094029, 0.000000;;, - 2;3; 0.000000, 1.094029, 0.000000;;, - 3;3; 0.000000, 1.094029, 0.000000;;, - 4;3; 0.000000, 1.094029, 0.000000;;, - 5;3; 0.000000, 1.094029, 0.000000;;, - 6;3; 0.000000, 1.094029, 0.000000;;, - 7;3; 0.000000, 1.094029, 0.000000;;, - 8;3; 0.000000, 1.094029, 0.000000;;, - 9;3; 0.000000, 1.094029, 0.000000;;, - 10;3; 0.000000, 1.094029, 0.000000;;, - 11;3; 0.000000, 1.094029, 0.000000;;, - 12;3; 0.000000, 1.094029, 0.000000;;, - 13;3; 0.000000, 1.094029, 0.000000;;, - 14;3; 0.000000, 1.094029, 0.000000;;, - 15;3; 0.000000, 1.094029, 0.000000;;, - 16;3; 0.000000, 1.094029, 0.000000;;, - 17;3; 0.000000, 1.094029, 0.000000;;, - 18;3; 0.000000, 1.094029, 0.000000;;, - 19;3; 0.000000, 1.094029, 0.000000;;, - 20;3; 0.000000, 1.094029, 0.000000;;, - 21;3; 0.000000, 1.094029, 0.000000;;, - 22;3; 0.000000, 1.094029, 0.000000;;, - 23;3; 0.000000, 1.094029, 0.000000;;, - 24;3; 0.000000, 1.094029, 0.000000;;, - 25;3; 0.000000, 1.094029, 0.000000;;, - 26;3; 0.000000, 1.094029, 0.000000;;, - 27;3; 0.000000, 1.094029, 0.000000;;, - 28;3; 0.000000, 1.094029, 0.000000;;, - 29;3; 0.000000, 1.094029, 0.000000;;, - 30;3; 0.000000, 1.094029, 0.000000;;, - 31;3; 0.000000, 1.094029, 0.000000;;, - 32;3; 0.000000, 1.094029, 0.000000;;, - 33;3; 0.000000, 1.094029, 0.000000;;, - 34;3; 0.000000, 1.094029, 0.000000;;, - 35;3; 0.000000, 1.094029, 0.000000;;, - 36;3; 0.000000, 1.094029, 0.000000;;, - 37;3; 0.000000, 1.094029, 0.000000;;, - 38;3; 0.000000, 1.094029, 0.000000;;, - 39;3; 0.000000, 1.094029, 0.000000;;, - 40;3; 0.000000, 1.094029, 0.000000;;, - 41;3;-0.000000, 1.094029, 0.000000;;, - 42;3;-0.000000, 1.094029,-0.000000;;, - 43;3;-0.000000, 1.094029,-0.000000;;, - 44;3;-0.000000, 1.094029,-0.000000;;, - 45;3; 0.000000, 1.094029,-0.000000;;, - 46;3;-0.000000, 1.094029, 0.000000;;, - 47;3; 0.000000, 1.094029,-0.000000;;, - 48;3; 0.000000, 1.094029, 0.000000;;, - 49;3; 0.000000, 1.094029,-0.000000;;, - 50;3;-0.000000, 1.094029, 0.000000;;, - 51;3;-0.000000, 1.094029, 0.000000;;, - 52;3;-0.000000, 1.094029,-0.000000;;, - 53;3; 0.000000, 1.094029, 0.000000;;, - 54;3;-0.000000, 1.094029,-0.000000;;, - 55;3; 0.000000, 1.094029,-0.000000;;, - 56;3; 0.000000, 1.094029, 0.000000;;, - 57;3; 0.000000, 1.094029,-0.000000;;, - 58;3; 0.000000, 1.094029,-0.000000;;, - 59;3;-0.000000, 1.094029, 0.000000;;, - 60;3;-0.000000, 1.094029, 0.000000;;, - 61;3; 0.000000, 1.094029,-0.000000;;, - 62;3;-0.000000, 1.094029,-0.000000;;, - 63;3;-0.000000, 1.094029, 0.000000;;, - 64;3;-0.000000, 1.094029, 0.000000;;, - 65;3;-0.000000, 1.094029,-0.000000;;, - 66;3;-0.000000, 1.094029, 0.000000;;, - 67;3;-0.000000, 1.094029, 0.000000;;, - 68;3;-0.000000, 1.094029, 0.000000;;, - 69;3; 0.000000, 1.094029,-0.000000;;, - 70;3;-0.000000, 1.094029, 0.000000;;, - 71;3;-0.000000, 1.094029,-0.000000;;, - 72;3;-0.000000, 1.094029,-0.000000;;, - 73;3;-0.000000, 1.094029,-0.000000;;, - 74;3;-0.000000, 1.094029,-0.000000;;, - 75;3;-0.000000, 1.094029, 0.000000;;, - 76;3;-0.000000, 1.094029, 0.000000;;, - 77;3; 0.000000, 1.094029, 0.000000;;, - 78;3;-0.000000, 1.094029, 0.000000;;, - 79;3;-0.000000, 1.094029, 0.000000;;, - 80;3;-0.000000, 1.094029, 0.000000;;, - 81;3;-0.000000, 1.094029,-0.000000;;, - 82;3;-0.000000, 1.094029, 0.000000;;, - 83;3;-0.000000, 1.094029, 0.000000;;, - 84;3;-0.000000, 1.094029, 0.000000;;, - 85;3;-0.000000, 1.094029,-0.000000;;, - 86;3; 0.000000, 1.094029,-0.000000;;, - 87;3;-0.000000, 1.094029, 0.000000;;, - 88;3;-0.000000, 1.094029,-0.000000;;, - 89;3;-0.000000, 1.094029,-0.000000;;, - 90;3;-0.000000, 1.094029,-0.000000;;, - 91;3;-0.000000, 1.094029,-0.000000;;, - 92;3;-0.000000, 1.094029,-0.000000;;, - 93;3;-0.000000, 1.094029,-0.000000;;, - 94;3;-0.000000, 1.094029,-0.000000;;, - 95;3;-0.000000, 1.094029,-0.000000;;, - 96;3;-0.000000, 1.094029, 0.000000;;, - 97;3;-0.000000, 1.094029,-0.000000;;, - 98;3;-0.000000, 1.094029,-0.000000;;, - 99;3;-0.000000, 1.094029, 0.000000;;, - 100;3; 0.000000, 1.094029, 0.000000;;, - 101;3;-0.000000, 1.094029, 0.000000;;, - 102;3;-0.000000, 1.094029, 0.000000;;, - 103;3;-0.000000, 1.094029,-0.000000;;, - 104;3; 0.000000, 1.094029, 0.000000;;, - 105;3;-0.000000, 1.094029,-0.000000;;, - 106;3; 0.000000, 1.094029,-0.000000;;, - 107;3;-0.000000, 1.094029, 0.000000;;, - 108;3;-0.000000, 1.094029,-0.000000;;, - 109;3;-0.000000, 1.094029,-0.000000;;, - 110;3;-0.000000, 1.094029,-0.000000;;, - 111;3; 0.000000, 1.094029,-0.000000;;, - 112;3; 0.000000, 1.094029, 0.000000;;, - 113;3; 0.000000, 1.094029, 0.000000;;, - 114;3;-0.000000, 1.094029, 0.000000;;, - 115;3;-0.000000, 1.094029, 0.000000;;, - 116;3;-0.000000, 1.094029, 0.000000;;, - 117;3; 0.000000, 1.094029,-0.000000;;, - 118;3;-0.000000, 1.094029,-0.000000;;, - 119;3; 0.000000, 1.094029, 0.000000;;, - 120;3;-0.000000, 1.094029,-0.000000;;, - 121;3; 0.000000, 1.094029,-0.000000;;, - 122;3;-0.000000, 1.094029, 0.000000;;, - 123;3;-0.000000, 1.094029, 0.000000;;, - 124;3; 0.000000, 1.094029, 0.000000;;, - 125;3; 0.000000, 1.094029,-0.000000;;, - 126;3;-0.000000, 1.094029,-0.000000;;, - 127;3; 0.000000, 1.094029,-0.000000;;, - 128;3;-0.000000, 1.094029, 0.000000;;, - 129;3; 0.000000, 1.094029, 0.000000;;, - 130;3;-0.000000, 1.094029, 0.000000;;, - 131;3; 0.000000, 1.094029, 0.000000;;, - 132;3;-0.000000, 1.094029, 0.000000;;, - 133;3;-0.000000, 1.094029, 0.000000;;, - 134;3; 0.000000, 1.094029, 0.000000;;, - 135;3;-0.000000, 1.094029, 0.000000;;, - 136;3;-0.000000, 1.094029, 0.000000;;, - 137;3; 0.000000, 1.094029, 0.000000;;, - 138;3; 0.000000, 1.094029, 0.000000;;, - 139;3; 0.000000, 1.094029, 0.000000;;, - 140;3;-0.000000, 1.094029,-0.000000;;, - 141;3;-0.000000, 1.094029, 0.000000;;, - 142;3; 0.000000, 1.094029,-0.000000;;, - 143;3;-0.000000, 1.094029,-0.000000;;, - 144;3;-0.000000, 1.094029, 0.000000;;, - 145;3;-0.000000, 1.094029, 0.000000;;, - 146;3; 0.000000, 1.094029, 0.000000;;, - 147;3;-0.000000, 1.094029,-0.000000;;, - 148;3; 0.000000, 1.094029, 0.000000;;, - 149;3; 0.000000, 1.094029, 0.000000;;, - 150;3; 0.000000, 1.094029, 0.000000;;, - 151;3; 0.000000, 1.094029, 0.000000;;, - 152;3; 0.000000, 1.094029, 0.000000;;, - 153;3; 0.000000, 1.094029, 0.000000;;, - 154;3; 0.000000, 1.094029, 0.000000;;, - 155;3; 0.000000, 1.094029, 0.000000;;, - 156;3; 0.000000, 1.094029, 0.000000;;, - 157;3; 0.000000, 1.094029, 0.000000;;, - 158;3; 0.000000, 1.094029, 0.000000;;, - 159;3; 0.000000, 1.094029, 0.000000;;, - 160;3; 0.000000, 1.094029, 0.000000;;, - 161;3; 0.000000, 1.094029, 0.000000;;, - 162;3; 0.000000, 1.094029, 0.000000;;, - 163;3; 0.000000, 1.094029, 0.000000;;, - 164;3; 0.000000, 1.094029, 0.000000;;, - 165;3; 0.000000, 1.094029, 0.000000;;, - 166;3; 0.000000, 1.094029, 0.000000;;, - 167;3; 0.000000, 1.094029, 0.000000;;, - 168;3; 0.000000, 1.094029, 0.000000;;, - 169;3; 0.000000, 1.094029, 0.000000;;, - 170;3; 0.000000, 1.094029, 0.000000;;, - 171;3; 0.000000, 1.094029, 0.000000;;, - 172;3; 0.000000, 1.094029, 0.000000;;, - 173;3; 0.000000, 1.094029, 0.000000;;, - 174;3; 0.000000, 1.094029, 0.000000;;, - 175;3; 0.000000, 1.094029, 0.000000;;, - 176;3; 0.000000, 1.094029, 0.000000;;, - 177;3; 0.000000, 1.094029, 0.000000;;, - 178;3; 0.000000, 1.094029, 0.000000;;, - 179;3; 0.000000, 1.094029, 0.000000;;, - 180;3; 0.000000, 1.094029, 0.000000;;, - 181;3; 0.000000, 1.094029, 0.000000;;, - 182;3; 0.000000, 1.094029, 0.000000;;, - 183;3; 0.000000, 1.094029, 0.000000;;, - 184;3; 0.000000, 1.094029, 0.000000;;, - 185;3; 0.000000, 1.094029, 0.000000;;, - 186;3; 0.000000, 1.094029, 0.000000;;, - 187;3; 0.000000, 1.094029, 0.000000;;, - 188;3; 0.000000, 1.094029, 0.000000;;, - 189;3; 0.000000, 1.094029, 0.000000;;, - 190;3; 0.000000, 1.094029, 0.000000;;, - 191;3; 0.000000, 1.094029, 0.000000;;, - 192;3; 0.000000, 1.094029, 0.000000;;, - 193;3; 0.000000, 1.094029, 0.000000;;, - 194;3; 0.000000, 1.094029, 0.000000;;, - 195;3; 0.000000, 1.094029, 0.000000;;, - 196;3; 0.000000, 1.094029, 0.000000;;, - 197;3; 0.000000, 1.094029, 0.000000;;, - 198;3; 0.000000, 1.094029, 0.000000;;, - 199;3; 0.000000, 1.094029, 0.000000;;, - 200;3; 0.000000, 1.094029, 0.000000;;, - 201;3; 0.000000, 1.094029, 0.000000;;, - 202;3; 0.000000, 1.094029, 0.000000;;, - 203;3; 0.000000, 1.094029, 0.000000;;, - 204;3; 0.000000, 1.094029, 0.000000;;, - 205;3; 0.000000, 1.094029, 0.000000;;, - 206;3; 0.000000, 1.094029, 0.000000;;, - 207;3; 0.000000, 1.094029, 0.000000;;, - 208;3; 0.000000, 1.094029, 0.000000;;, - 209;3; 0.000000, 1.094029, 0.000000;;, - 210;3; 0.000000, 1.094029, 0.000000;;, - 211;3; 0.000000, 1.094029, 0.000000;;, - 212;3; 0.000000, 1.094029, 0.000000;;, - 213;3; 0.000000, 1.094029, 0.000000;;, - 214;3; 0.000000, 1.094029, 0.000000;;, - 215;3; 0.000000, 1.094029, 0.000000;;, - 216;3; 0.000000, 1.094029, 0.000000;;, - 217;3; 0.000000, 1.094029, 0.000000;;, - 218;3; 0.000000, 1.094029, 0.000000;;, - 219;3; 0.000000, 1.094029, 0.000000;;, - 220;3; 0.000000, 1.094029, 0.000000;;, - 221;3; 0.000000, 1.094029, 0.000000;;, - 222;3; 0.000000, 1.094029, 0.000000;;, - 223;3; 0.000000, 1.094029, 0.000000;;, - 224;3; 0.000000, 1.094029, 0.000000;;, - 225;3; 0.000000, 1.094029, 0.000000;;, - 226;3; 0.000000, 1.094029, 0.000000;;, - 227;3; 0.000000, 1.094029, 0.000000;;, - 228;3; 0.000000, 1.094029, 0.000000;;, - 229;3; 0.000000, 1.094029, 0.000000;;, - 230;3; 0.000000, 1.094029, 0.000000;;, - 231;3; 0.000000, 1.094029, 0.000000;;, - 232;3; 0.000000, 1.094029, 0.000000;;, - 233;3; 0.000000, 1.094029, 0.000000;;, - 234;3; 0.000000, 1.094029, 0.000000;;, - 235;3; 0.000000, 1.094029, 0.000000;;, - 236;3; 0.000000, 1.094029, 0.000000;;, - 237;3; 0.000000, 1.094029, 0.000000;;, - 238;3; 0.000000, 1.094029, 0.000000;;, - 239;3; 0.000000, 1.094029, 0.000000;;, - 240;3; 0.000000, 1.094029, 0.000000;;, - 241;3; 0.000000, 1.094029, 0.000000;;, - 242;3; 0.000000, 1.094029, 0.000000;;, - 243;3; 0.000000, 1.094029, 0.000000;;, - 244;3; 0.000000, 1.094029, 0.000000;;, - 245;3; 0.000000, 1.094029, 0.000000;;, - 246;3; 0.000000, 1.094029, 0.000000;;, - 247;3; 0.000000, 1.094029, 0.000000;;, - 248;3; 0.000000, 1.094029, 0.000000;;, - 249;3; 0.000000, 1.094029, 0.000000;;; - } - } - Animation { - {Armature_Bone_019} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 1;4;-0.000112, 0.000019, 0.997570,-0.069603;;, - 2;4;-0.000444, 0.000078, 0.997507,-0.070277;;, - 3;4;-0.001000, 0.000177, 0.997403,-0.071404;;, - 4;4;-0.001775, 0.000315, 0.997258,-0.072974;;, - 5;4;-0.002757, 0.000489, 0.997073,-0.074964;;, - 6;4;-0.003926, 0.000696, 0.996854,-0.077334;;, - 7;4;-0.005255, 0.000932, 0.996604,-0.080027;;, - 8;4;-0.006705, 0.001189, 0.996332,-0.082967;;, - 9;4;-0.008232, 0.001460, 0.996046,-0.086062;;, - 10;4;-0.009786, 0.001736, 0.995754,-0.089210;;, - 11;4;-0.011313, 0.002007, 0.995467,-0.092305;;, - 12;4;-0.012763, 0.002264, 0.995195,-0.095245;;, - 13;4;-0.014092, 0.002500, 0.994946,-0.097938;;, - 14;4;-0.015261, 0.002708, 0.994726,-0.100308;;, - 15;4;-0.016243, 0.002882, 0.994542,-0.102298;;, - 16;4;-0.017018, 0.003019, 0.994397,-0.103868;;, - 17;4;-0.017574, 0.003118, 0.994292,-0.104995;;, - 18;4;-0.017906, 0.003177, 0.994230,-0.105669;;, - 19;4;-0.018016, 0.003197, 0.994209,-0.105892;;, - 20;4;-0.017917, 0.003179, 0.994228,-0.105691;;, - 21;4;-0.017617, 0.003126, 0.994284,-0.105083;;, - 22;4;-0.017115, 0.003037, 0.994379,-0.104066;;, - 23;4;-0.016415, 0.002912, 0.994510,-0.102647;;, - 24;4;-0.015525, 0.002754, 0.994677,-0.100843;;, - 25;4;-0.014461, 0.002566, 0.994877,-0.098686;;, - 26;4;-0.013244, 0.002350, 0.995105,-0.096220;;, - 27;4;-0.011905, 0.002112, 0.995356,-0.093505;;, - 28;4;-0.010479, 0.001859, 0.995624,-0.090616;;, - 29;4;-0.009009, 0.001598, 0.995900,-0.087636;;, - 30;4;-0.007539, 0.001337, 0.996176,-0.084656;;, - 31;4;-0.006113, 0.001084, 0.996443,-0.081767;;, - 32;4;-0.004774, 0.000847, 0.996695,-0.079053;;, - 33;4;-0.003557, 0.000631, 0.996923,-0.076586;;, - 34;4;-0.002493, 0.000442, 0.997123,-0.074429;;, - 35;4;-0.001603, 0.000284, 0.997290,-0.072626;;, - 36;4;-0.000903, 0.000160, 0.997421,-0.071206;;, - 37;4;-0.000401, 0.000071, 0.997515,-0.070189;;, - 38;4;-0.000101, 0.000018, 0.997572,-0.069581;;, - 39;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 40;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 41;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 42;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 43;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 44;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 45;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 46;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 47;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 48;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 49;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 50;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 51;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 52;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 53;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 54;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 55;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 56;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 57;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 58;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 59;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 60;4;-0.000213, 0.000091, 0.997631,-0.068560;;, - 61;4;-0.000847, 0.000366, 0.997753,-0.066091;;, - 62;4;-0.001879, 0.000813, 0.997952,-0.062077;;, - 63;4;-0.003229, 0.001398, 0.998212,-0.056827;;, - 64;4;-0.004758, 0.002060, 0.998506,-0.050880;;, - 65;4;-0.006287, 0.002722, 0.998800,-0.044933;;, - 66;4;-0.007637, 0.003307, 0.999060,-0.039683;;, - 67;4;-0.008669, 0.003754, 0.999259,-0.035669;;, - 68;4;-0.009303, 0.004029, 0.999381,-0.033201;;, - 69;4;-0.009514, 0.004120, 0.999422,-0.032380;;, - 70;4;-0.009491, 0.004110, 0.999417,-0.032471;;, - 71;4;-0.009421, 0.004080, 0.999404,-0.032744;;, - 72;4;-0.009303, 0.004029, 0.999381,-0.033201;;, - 73;4;-0.009139, 0.003958, 0.999349,-0.033842;;, - 74;4;-0.008927, 0.003866, 0.999309,-0.034666;;, - 75;4;-0.008669, 0.003754, 0.999259,-0.035669;;, - 76;4;-0.008366, 0.003623, 0.999201,-0.036846;;, - 77;4;-0.008021, 0.003474, 0.999134,-0.038188;;, - 78;4;-0.007637, 0.003307, 0.999060,-0.039683;;, - 79;4;-0.007217, 0.003125, 0.998980,-0.041318;;, - 80;4;-0.006765, 0.002929, 0.998892,-0.043075;;, - 81;4;-0.006287, 0.002722, 0.998800,-0.044933;;, - 82;4;-0.005789, 0.002507, 0.998705,-0.046870;;, - 83;4;-0.005277, 0.002285, 0.998606,-0.048862;;, - 84;4;-0.004758, 0.002060, 0.998506,-0.050880;;, - 85;4;-0.004239, 0.001835, 0.998406,-0.052899;;, - 86;4;-0.003727, 0.001614, 0.998308,-0.054890;;, - 87;4;-0.003229, 0.001398, 0.998212,-0.056827;;, - 88;4;-0.002751, 0.001191, 0.998120,-0.058686;;, - 89;4;-0.002300, 0.000995, 0.998033,-0.060443;;, - 90;4;-0.001879, 0.000813, 0.997952,-0.062077;;, - 91;4;-0.001495, 0.000647, 0.997878,-0.063573;;, - 92;4;-0.001150, 0.000497, 0.997811,-0.064914;;, - 93;4;-0.000847, 0.000366, 0.997753,-0.066091;;, - 94;4;-0.000589, 0.000254, 0.997703,-0.067094;;, - 95;4;-0.000377, 0.000163, 0.997663,-0.067919;;, - 96;4;-0.000213, 0.000091, 0.997631,-0.068560;;, - 97;4;-0.000095, 0.000040, 0.997608,-0.069017;;, - 98;4;-0.000025, 0.000010, 0.997595,-0.069290;;, - 99;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 100;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 101;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 102;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 103;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 104;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 105;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 106;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 107;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 108;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 109;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 110;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 111;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 112;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 113;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 114;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 115;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 116;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 117;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 118;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 119;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 120;4; 0.000062, 0.000006, 0.997594,-0.068576;;, - 121;4; 0.000613, 0.000057, 0.997623,-0.061624;;, - 122;4; 0.002317, 0.000214, 0.997712,-0.040119;;, - 123;4; 0.005585, 0.000515, 0.997884, 0.001115;;, - 124;4; 0.010271, 0.000947, 0.998130, 0.060247;;, - 125;4; 0.016994, 0.001567, 0.987817, 0.145828;;, - 126;4; 0.026464, 0.002441, 0.953622, 0.267742;;, - 127;4; 0.037379, 0.003447, 0.897171, 0.409435;;, - 128;4; 0.047529, 0.004384, 0.829003, 0.542292;;, - 129;4; 0.055409, 0.005110, 0.760888, 0.646493;;, - 130;4; 0.060254, 0.005557, 0.676745, 0.735061;;, - 131;4; 0.062232, 0.005740, 0.563412, 0.819198;;, - 132;4; 0.063661, 0.005871, 0.448917, 0.885756;;, - 133;4; 0.067704, 0.006244, 0.369415, 0.924667;;, - 134;4; 0.076065, 0.007015, 0.342831, 0.936287;;, - 135;4; 0.101564, 0.017369, 0.385350, 0.899686;;, - 136;4; 0.154897, 0.045860, 0.506947, 0.789957;;, - 137;4; 0.222345, 0.085120, 0.667995, 0.631245;;, - 138;4; 0.281054, 0.121668, 0.802994, 0.472952;;, - 139;4; 0.315699, 0.145729, 0.868318, 0.353725;;, - 140;4; 0.334393, 0.160494, 0.889159, 0.259183;;, - 141;4; 0.347429, 0.170791, 0.899784, 0.168216;;, - 142;4; 0.354227, 0.176161, 0.903606, 0.090036;;, - 143;4; 0.356425, 0.177897, 0.907564, 0.031514;;, - 144;4; 0.356679, 0.178098, 0.917061,-0.007828;;, - 145;4; 0.324974, 0.162267, 0.933574,-0.035686;;, - 146;4; 0.235671, 0.117676, 0.955461,-0.055225;;, - 147;4; 0.121007, 0.060422, 0.977387,-0.065530;;, - 148;4; 0.031703, 0.015831, 0.992538,-0.068949;;, - 149;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 150;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 151;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 152;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 153;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 154;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 155;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 156;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 157;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 158;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 159;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 160;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 161;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 162;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 163;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 164;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 165;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 166;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 167;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 168;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 169;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 170;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 171;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 172;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 173;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 174;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 175;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 176;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 177;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 178;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 179;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 180;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 181;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 182;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 183;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 184;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 185;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 186;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 187;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 188;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 189;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 190;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 191;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 192;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 193;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 194;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 195;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 196;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 197;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 198;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 199;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 200;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 201;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 202;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 203;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 204;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 205;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 206;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 207;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 208;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 209;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 210;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 211;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 212;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 213;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 214;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 215;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 216;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 217;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 218;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 219;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 220;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 221;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 222;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 223;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 224;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 225;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 226;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 227;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 228;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 229;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 230;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 231;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 232;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 233;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 234;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 235;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 236;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 237;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 238;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 239;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 240;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 241;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 242;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 243;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 244;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 245;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 246;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 247;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 248;4;-0.000002,-0.000000, 0.997590,-0.069380;;, - 249;4;-0.000002,-0.000000, 0.997590,-0.069380;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3;-0.000000, 2.352446, 0.000000;;, - 1;3;-0.000000, 2.352447,-0.000000;;, - 2;3;-0.000000, 2.352446, 0.000000;;, - 3;3;-0.000000, 2.352447,-0.000000;;, - 4;3;-0.000000, 2.352446,-0.000000;;, - 5;3;-0.000000, 2.352447,-0.000000;;, - 6;3;-0.000000, 2.352446,-0.000000;;, - 7;3; 0.000000, 2.352446,-0.000000;;, - 8;3;-0.000000, 2.352447,-0.000000;;, - 9;3;-0.000000, 2.352447, 0.000000;;, - 10;3;-0.000000, 2.352446,-0.000000;;, - 11;3; 0.000000, 2.352446, 0.000000;;, - 12;3;-0.000000, 2.352447, 0.000000;;, - 13;3; 0.000000, 2.352446, 0.000000;;, - 14;3;-0.000000, 2.352446, 0.000000;;, - 15;3;-0.000000, 2.352446, 0.000000;;, - 16;3;-0.000000, 2.352447, 0.000000;;, - 17;3; 0.000000, 2.352446, 0.000000;;, - 18;3; 0.000000, 2.352446, 0.000000;;, - 19;3;-0.000000, 2.352446,-0.000000;;, - 20;3; 0.000000, 2.352446,-0.000000;;, - 21;3;-0.000000, 2.352446,-0.000000;;, - 22;3; 0.000000, 2.352446, 0.000000;;, - 23;3;-0.000000, 2.352446,-0.000000;;, - 24;3;-0.000000, 2.352446, 0.000000;;, - 25;3;-0.000000, 2.352446,-0.000000;;, - 26;3; 0.000000, 2.352446, 0.000000;;, - 27;3; 0.000000, 2.352447, 0.000000;;, - 28;3; 0.000000, 2.352446,-0.000000;;, - 29;3;-0.000000, 2.352446, 0.000000;;, - 30;3; 0.000000, 2.352446,-0.000000;;, - 31;3; 0.000000, 2.352446,-0.000000;;, - 32;3; 0.000000, 2.352447,-0.000000;;, - 33;3; 0.000000, 2.352446, 0.000000;;, - 34;3; 0.000000, 2.352446, 0.000000;;, - 35;3; 0.000000, 2.352446,-0.000000;;, - 36;3; 0.000000, 2.352446, 0.000000;;, - 37;3;-0.000000, 2.352446,-0.000000;;, - 38;3; 0.000000, 2.352447, 0.000000;;, - 39;3;-0.000000, 2.352446, 0.000000;;, - 40;3;-0.000000, 2.352447,-0.000000;;, - 41;3;-0.000000, 2.352446,-0.000000;;, - 42;3; 0.000000, 2.352446, 0.000000;;, - 43;3; 0.000000, 2.352446, 0.000000;;, - 44;3; 0.000000, 2.352446,-0.000000;;, - 45;3;-0.000000, 2.352446, 0.000000;;, - 46;3;-0.000000, 2.352446, 0.000000;;, - 47;3;-0.000000, 2.352447,-0.000000;;, - 48;3; 0.000000, 2.352446,-0.000000;;, - 49;3;-0.000000, 2.352447,-0.000000;;, - 50;3; 0.000000, 2.352446, 0.000000;;, - 51;3; 0.000000, 2.352446, 0.000000;;, - 52;3; 0.000000, 2.352447, 0.000000;;, - 53;3;-0.000000, 2.352446, 0.000000;;, - 54;3;-0.000000, 2.352446, 0.000000;;, - 55;3;-0.000000, 2.352446,-0.000000;;, - 56;3;-0.000000, 2.352446, 0.000000;;, - 57;3;-0.000000, 2.352447, 0.000000;;, - 58;3; 0.000000, 2.352447,-0.000000;;, - 59;3;-0.000000, 2.352446, 0.000000;;, - 60;3; 0.000000, 2.352446, 0.000000;;, - 61;3; 0.000000, 2.352446, 0.000000;;, - 62;3;-0.000000, 2.352447, 0.000000;;, - 63;3; 0.000000, 2.352446,-0.000000;;, - 64;3; 0.000000, 2.352446,-0.000000;;, - 65;3;-0.000000, 2.352446,-0.000000;;, - 66;3;-0.000000, 2.352447,-0.000000;;, - 67;3;-0.000000, 2.352446, 0.000000;;, - 68;3; 0.000000, 2.352446, 0.000000;;, - 69;3; 0.000000, 2.352446, 0.000000;;, - 70;3;-0.000000, 2.352446,-0.000000;;, - 71;3;-0.000000, 2.352446, 0.000000;;, - 72;3;-0.000000, 2.352446,-0.000000;;, - 73;3;-0.000000, 2.352446,-0.000000;;, - 74;3; 0.000000, 2.352446, 0.000000;;, - 75;3;-0.000000, 2.352446, 0.000000;;, - 76;3;-0.000000, 2.352447,-0.000000;;, - 77;3;-0.000000, 2.352446, 0.000000;;, - 78;3; 0.000000, 2.352446, 0.000000;;, - 79;3;-0.000000, 2.352446, 0.000000;;, - 80;3;-0.000000, 2.352447,-0.000000;;, - 81;3; 0.000000, 2.352446, 0.000000;;, - 82;3; 0.000000, 2.352446,-0.000000;;, - 83;3; 0.000000, 2.352446, 0.000000;;, - 84;3; 0.000000, 2.352446, 0.000000;;, - 85;3;-0.000000, 2.352447, 0.000000;;, - 86;3; 0.000000, 2.352446,-0.000000;;, - 87;3;-0.000000, 2.352447, 0.000000;;, - 88;3;-0.000000, 2.352446, 0.000000;;, - 89;3;-0.000000, 2.352446,-0.000000;;, - 90;3; 0.000000, 2.352446, 0.000000;;, - 91;3;-0.000000, 2.352446, 0.000000;;, - 92;3; 0.000000, 2.352446, 0.000000;;, - 93;3; 0.000000, 2.352446,-0.000000;;, - 94;3; 0.000000, 2.352446,-0.000000;;, - 95;3; 0.000000, 2.352446, 0.000000;;, - 96;3;-0.000000, 2.352447,-0.000000;;, - 97;3; 0.000000, 2.352447,-0.000000;;, - 98;3;-0.000000, 2.352446,-0.000000;;, - 99;3;-0.000000, 2.352446, 0.000000;;, - 100;3;-0.000000, 2.352446, 0.000000;;, - 101;3;-0.000000, 2.352446, 0.000000;;, - 102;3; 0.000000, 2.352447, 0.000000;;, - 103;3; 0.000000, 2.352446, 0.000000;;, - 104;3; 0.000000, 2.352447, 0.000000;;, - 105;3;-0.000000, 2.352446, 0.000000;;, - 106;3; 0.000000, 2.352447, 0.000000;;, - 107;3; 0.000000, 2.352446, 0.000000;;, - 108;3; 0.000000, 2.352446,-0.000000;;, - 109;3; 0.000000, 2.352446, 0.000000;;, - 110;3; 0.000000, 2.352446, 0.000000;;, - 111;3; 0.000000, 2.352446, 0.000000;;, - 112;3;-0.000000, 2.352446,-0.000000;;, - 113;3; 0.000000, 2.352446, 0.000000;;, - 114;3; 0.000000, 2.352446,-0.000000;;, - 115;3;-0.000000, 2.352446, 0.000000;;, - 116;3; 0.000000, 2.352446,-0.000000;;, - 117;3; 0.000000, 2.352446, 0.000000;;, - 118;3; 0.000000, 2.352447,-0.000000;;, - 119;3;-0.000000, 2.352446, 0.000000;;, - 120;3;-0.000000, 2.352446,-0.000000;;, - 121;3;-0.000000, 2.352446,-0.000000;;, - 122;3;-0.000000, 2.352446,-0.000000;;, - 123;3;-0.000000, 2.352446, 0.000000;;, - 124;3;-0.000000, 2.352446,-0.000000;;, - 125;3; 0.000000, 2.352446,-0.000000;;, - 126;3; 0.000000, 2.352446,-0.000000;;, - 127;3; 0.000000, 2.352446, 0.000000;;, - 128;3; 0.000000, 2.352447, 0.000000;;, - 129;3; 0.000000, 2.352447,-0.000000;;, - 130;3;-0.000000, 2.352446, 0.000000;;, - 131;3;-0.000000, 2.352446,-0.000000;;, - 132;3;-0.000000, 2.352446,-0.000000;;, - 133;3;-0.000000, 2.352446,-0.000000;;, - 134;3;-0.000000, 2.352446,-0.000000;;, - 135;3;-0.000000, 2.352446, 0.000000;;, - 136;3;-0.000000, 2.352447,-0.000000;;, - 137;3; 0.000000, 2.352446, 0.000000;;, - 138;3; 0.000000, 2.352446,-0.000000;;, - 139;3; 0.000000, 2.352446, 0.000000;;, - 140;3; 0.000000, 2.352446,-0.000000;;, - 141;3;-0.000000, 2.352446,-0.000000;;, - 142;3; 0.000000, 2.352447,-0.000000;;, - 143;3;-0.000000, 2.352446, 0.000000;;, - 144;3;-0.000000, 2.352446,-0.000000;;, - 145;3; 0.000000, 2.352446, 0.000000;;, - 146;3; 0.000000, 2.352446, 0.000000;;, - 147;3; 0.000000, 2.352446,-0.000000;;, - 148;3;-0.000000, 2.352447,-0.000000;;, - 149;3;-0.000000, 2.352446, 0.000000;;, - 150;3;-0.000000, 2.352446, 0.000000;;, - 151;3;-0.000000, 2.352446, 0.000000;;, - 152;3;-0.000000, 2.352446, 0.000000;;, - 153;3;-0.000000, 2.352446, 0.000000;;, - 154;3;-0.000000, 2.352446, 0.000000;;, - 155;3;-0.000000, 2.352446, 0.000000;;, - 156;3;-0.000000, 2.352446, 0.000000;;, - 157;3;-0.000000, 2.352446, 0.000000;;, - 158;3;-0.000000, 2.352446, 0.000000;;, - 159;3;-0.000000, 2.352446, 0.000000;;, - 160;3;-0.000000, 2.352446, 0.000000;;, - 161;3;-0.000000, 2.352446, 0.000000;;, - 162;3;-0.000000, 2.352446, 0.000000;;, - 163;3;-0.000000, 2.352446, 0.000000;;, - 164;3;-0.000000, 2.352446, 0.000000;;, - 165;3;-0.000000, 2.352446, 0.000000;;, - 166;3;-0.000000, 2.352446, 0.000000;;, - 167;3;-0.000000, 2.352446, 0.000000;;, - 168;3;-0.000000, 2.352446, 0.000000;;, - 169;3;-0.000000, 2.352446, 0.000000;;, - 170;3;-0.000000, 2.352446, 0.000000;;, - 171;3;-0.000000, 2.352446, 0.000000;;, - 172;3;-0.000000, 2.352446, 0.000000;;, - 173;3;-0.000000, 2.352446, 0.000000;;, - 174;3;-0.000000, 2.352446, 0.000000;;, - 175;3;-0.000000, 2.352446, 0.000000;;, - 176;3;-0.000000, 2.352446, 0.000000;;, - 177;3;-0.000000, 2.352446, 0.000000;;, - 178;3;-0.000000, 2.352446, 0.000000;;, - 179;3;-0.000000, 2.352446, 0.000000;;, - 180;3;-0.000000, 2.352446, 0.000000;;, - 181;3;-0.000000, 2.352446, 0.000000;;, - 182;3;-0.000000, 2.352446, 0.000000;;, - 183;3;-0.000000, 2.352446, 0.000000;;, - 184;3;-0.000000, 2.352446, 0.000000;;, - 185;3;-0.000000, 2.352446, 0.000000;;, - 186;3;-0.000000, 2.352446, 0.000000;;, - 187;3;-0.000000, 2.352446, 0.000000;;, - 188;3;-0.000000, 2.352446, 0.000000;;, - 189;3;-0.000000, 2.352446, 0.000000;;, - 190;3;-0.000000, 2.352446, 0.000000;;, - 191;3;-0.000000, 2.352446, 0.000000;;, - 192;3;-0.000000, 2.352446, 0.000000;;, - 193;3;-0.000000, 2.352446, 0.000000;;, - 194;3;-0.000000, 2.352446, 0.000000;;, - 195;3;-0.000000, 2.352446, 0.000000;;, - 196;3;-0.000000, 2.352446, 0.000000;;, - 197;3;-0.000000, 2.352446, 0.000000;;, - 198;3;-0.000000, 2.352446, 0.000000;;, - 199;3;-0.000000, 2.352446, 0.000000;;, - 200;3;-0.000000, 2.352446, 0.000000;;, - 201;3;-0.000000, 2.352446, 0.000000;;, - 202;3;-0.000000, 2.352446, 0.000000;;, - 203;3;-0.000000, 2.352446, 0.000000;;, - 204;3;-0.000000, 2.352446, 0.000000;;, - 205;3;-0.000000, 2.352446, 0.000000;;, - 206;3;-0.000000, 2.352446, 0.000000;;, - 207;3;-0.000000, 2.352446, 0.000000;;, - 208;3;-0.000000, 2.352446, 0.000000;;, - 209;3;-0.000000, 2.352446, 0.000000;;, - 210;3;-0.000000, 2.352446, 0.000000;;, - 211;3;-0.000000, 2.352446, 0.000000;;, - 212;3;-0.000000, 2.352446, 0.000000;;, - 213;3;-0.000000, 2.352446, 0.000000;;, - 214;3;-0.000000, 2.352446, 0.000000;;, - 215;3;-0.000000, 2.352446, 0.000000;;, - 216;3;-0.000000, 2.352446, 0.000000;;, - 217;3;-0.000000, 2.352446, 0.000000;;, - 218;3;-0.000000, 2.352446, 0.000000;;, - 219;3;-0.000000, 2.352446, 0.000000;;, - 220;3;-0.000000, 2.352446, 0.000000;;, - 221;3;-0.000000, 2.352446, 0.000000;;, - 222;3;-0.000000, 2.352446, 0.000000;;, - 223;3;-0.000000, 2.352446, 0.000000;;, - 224;3;-0.000000, 2.352446, 0.000000;;, - 225;3;-0.000000, 2.352446, 0.000000;;, - 226;3;-0.000000, 2.352446, 0.000000;;, - 227;3;-0.000000, 2.352446, 0.000000;;, - 228;3;-0.000000, 2.352446, 0.000000;;, - 229;3;-0.000000, 2.352446, 0.000000;;, - 230;3;-0.000000, 2.352446, 0.000000;;, - 231;3;-0.000000, 2.352446, 0.000000;;, - 232;3;-0.000000, 2.352446, 0.000000;;, - 233;3;-0.000000, 2.352446, 0.000000;;, - 234;3;-0.000000, 2.352446, 0.000000;;, - 235;3;-0.000000, 2.352446, 0.000000;;, - 236;3;-0.000000, 2.352446, 0.000000;;, - 237;3;-0.000000, 2.352446, 0.000000;;, - 238;3;-0.000000, 2.352446, 0.000000;;, - 239;3;-0.000000, 2.352446, 0.000000;;, - 240;3;-0.000000, 2.352446, 0.000000;;, - 241;3;-0.000000, 2.352446, 0.000000;;, - 242;3;-0.000000, 2.352446, 0.000000;;, - 243;3;-0.000000, 2.352446, 0.000000;;, - 244;3;-0.000000, 2.352446, 0.000000;;, - 245;3;-0.000000, 2.352446, 0.000000;;, - 246;3;-0.000000, 2.352446, 0.000000;;, - 247;3;-0.000000, 2.352446, 0.000000;;, - 248;3;-0.000000, 2.352446, 0.000000;;, - 249;3;-0.000000, 2.352446, 0.000000;;; - } - } - Animation { - {Armature_Bone_021} - AnimationKey { // Rotation - 0; - 250; - 0;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 1;4; 0.000005,-0.000008, 0.987834, 0.155478;;, - 2;4; 0.000017,-0.000034, 0.987938, 0.154713;;, - 3;4; 0.000037,-0.000077, 0.988113, 0.153434;;, - 4;4; 0.000065,-0.000136, 0.988355, 0.151652;;, - 5;4; 0.000101,-0.000212, 0.988663, 0.149393;;, - 6;4; 0.000143,-0.000302, 0.989030, 0.146703;;, - 7;4; 0.000191,-0.000404, 0.989446, 0.143647;;, - 8;4; 0.000243,-0.000516, 0.989901, 0.140310;;, - 9;4; 0.000298,-0.000633, 0.990379, 0.136798;;, - 10;4; 0.000354,-0.000753, 0.990866, 0.133225;;, - 11;4; 0.000409,-0.000870, 0.991345, 0.129712;;, - 12;4; 0.000461,-0.000982, 0.991800, 0.126376;;, - 13;4; 0.000509,-0.001084, 0.992216, 0.123319;;, - 14;4; 0.000552,-0.001174, 0.992583, 0.120629;;, - 15;4; 0.000587,-0.001250, 0.992890, 0.118370;;, - 16;4; 0.000615,-0.001309, 0.993133, 0.116588;;, - 17;4; 0.000635,-0.001352, 0.993307, 0.115310;;, - 18;4; 0.000647,-0.001378, 0.993412, 0.114544;;, - 19;4; 0.000651,-0.001386, 0.993446, 0.114291;;, - 20;4; 0.000647,-0.001378, 0.993415, 0.114520;;, - 21;4; 0.000636,-0.001355, 0.993321, 0.115210;;, - 22;4; 0.000618,-0.001317, 0.993164, 0.116364;;, - 23;4; 0.000593,-0.001263, 0.992944, 0.117975;;, - 24;4; 0.000561,-0.001194, 0.992665, 0.120022;;, - 25;4; 0.000523,-0.001112, 0.992332, 0.122470;;, - 26;4; 0.000479,-0.001019, 0.991950, 0.125269;;, - 27;4; 0.000431,-0.000916, 0.991530, 0.128350;;, - 28;4; 0.000379,-0.000806, 0.991084, 0.131629;;, - 29;4; 0.000326,-0.000693, 0.990623, 0.135011;;, - 30;4; 0.000273,-0.000580, 0.990162, 0.138393;;, - 31;4; 0.000222,-0.000470, 0.989715, 0.141672;;, - 32;4; 0.000173,-0.000367, 0.989295, 0.144753;;, - 33;4; 0.000130,-0.000273, 0.988914, 0.147552;;, - 34;4; 0.000091,-0.000191, 0.988580, 0.150001;;, - 35;4; 0.000059,-0.000123, 0.988301, 0.152048;;, - 36;4; 0.000034,-0.000069, 0.988082, 0.153658;;, - 37;4; 0.000016,-0.000030, 0.987925, 0.154813;;, - 38;4; 0.000005,-0.000007, 0.987831, 0.155503;;, - 39;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 40;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 41;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 42;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 43;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 44;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 45;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 46;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 47;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 48;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 49;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 50;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 51;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 52;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 53;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 54;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 55;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 56;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 57;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 58;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 59;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 60;4;-0.000572,-0.000422, 0.988040, 0.153192;;, - 61;4;-0.002300,-0.001694, 0.988763, 0.145549;;, - 62;4;-0.005108,-0.003761, 0.989938, 0.133123;;, - 63;4;-0.008780,-0.006464, 0.991475, 0.116870;;, - 64;4;-0.012941,-0.009527, 0.993217, 0.098458;;, - 65;4;-0.017102,-0.012590, 0.994959, 0.080046;;, - 66;4;-0.020775,-0.015294, 0.996496, 0.063793;;, - 67;4;-0.023583,-0.017361, 0.997671, 0.051367;;, - 68;4;-0.025310,-0.018632, 0.998394, 0.043724;;, - 69;4;-0.025884,-0.019055, 0.998635, 0.041185;;, - 70;4;-0.025821,-0.019008, 0.998608, 0.041465;;, - 71;4;-0.025630,-0.018868, 0.998528, 0.042310;;, - 72;4;-0.025310,-0.018632, 0.998394, 0.043724;;, - 73;4;-0.024861,-0.018302, 0.998207, 0.045709;;, - 74;4;-0.024285,-0.017878, 0.997965, 0.048261;;, - 75;4;-0.023583,-0.017361, 0.997671, 0.051367;;, - 76;4;-0.022760,-0.016755, 0.997327, 0.055010;;, - 77;4;-0.021821,-0.016064, 0.996934, 0.059164;;, - 78;4;-0.020775,-0.015294, 0.996496, 0.063793;;, - 79;4;-0.019631,-0.014452, 0.996017, 0.068854;;, - 80;4;-0.018402,-0.013547, 0.995503, 0.074292;;, - 81;4;-0.017102,-0.012590, 0.994959, 0.080046;;, - 82;4;-0.015747,-0.011592, 0.994391, 0.086044;;, - 83;4;-0.014353,-0.010567, 0.993808, 0.092209;;, - 84;4;-0.012941,-0.009527, 0.993217, 0.098458;;, - 85;4;-0.011529,-0.008488, 0.992626, 0.104707;;, - 86;4;-0.010136,-0.007462, 0.992043, 0.110872;;, - 87;4;-0.008780,-0.006464, 0.991475, 0.116870;;, - 88;4;-0.007480,-0.005507, 0.990931, 0.122624;;, - 89;4;-0.006251,-0.004603, 0.990417, 0.128062;;, - 90;4;-0.005108,-0.003761, 0.989938, 0.133123;;, - 91;4;-0.004061,-0.002991, 0.989500, 0.137752;;, - 92;4;-0.003123,-0.002300, 0.989107, 0.141906;;, - 93;4;-0.002300,-0.001694, 0.988763, 0.145549;;, - 94;4;-0.001598,-0.001177, 0.988469, 0.148655;;, - 95;4;-0.001021,-0.000752, 0.988227, 0.151207;;, - 96;4;-0.000572,-0.000422, 0.988040, 0.153192;;, - 97;4;-0.000253,-0.000187, 0.987906, 0.154607;;, - 98;4;-0.000062,-0.000046, 0.987826, 0.155451;;, - 99;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 100;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 101;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 102;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 103;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 104;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 105;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 106;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 107;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 108;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 109;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 110;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 111;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 112;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 113;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 114;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 115;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 116;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 117;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 118;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 119;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 120;4; 0.001811, 0.000244, 0.988383, 0.132639;;, - 121;4; 0.006910, 0.000930, 0.990025, 0.067595;;, - 122;4; 0.013456, 0.001812, 0.992134,-0.015920;;, - 123;4; 0.018555, 0.002498, 0.993776,-0.080964;;, - 124;4; 0.020365, 0.002742, 0.994359,-0.104056;;, - 125;4; 0.020365, 0.002742, 0.994359,-0.104056;;, - 126;4; 0.020365, 0.002742, 0.994359,-0.104056;;, - 127;4; 0.020365, 0.002742, 0.994359,-0.104056;;, - 128;4; 0.020365, 0.002742, 0.994359,-0.104056;;, - 129;4; 0.020365, 0.002742, 0.994359,-0.104056;;, - 130;4; 0.022626, 0.003046, 0.985441,-0.134417;;, - 131;4; 0.028993, 0.003904, 0.960323,-0.219932;;, - 132;4; 0.037169, 0.005004, 0.928071,-0.329734;;, - 133;4; 0.043536, 0.005862, 0.902952,-0.415249;;, - 134;4; 0.045797, 0.006166, 0.894034,-0.445609;;, - 135;4; 0.043270, 0.002995, 0.898232,-0.438859;;, - 136;4; 0.035068,-0.007234, 0.910646,-0.416545;;, - 137;4; 0.021624,-0.023850, 0.928176,-0.379032;;, - 138;4; 0.005487,-0.043569, 0.944920,-0.332569;;, - 139;4;-0.010542,-0.062886, 0.956484,-0.284732;;, - 140;4;-0.030218,-0.086269, 0.963896,-0.231024;;, - 141;4;-0.056631,-0.117435, 0.969166,-0.164918;;, - 142;4;-0.083267,-0.148751, 0.972554,-0.093841;;, - 143;4;-0.101744,-0.170427, 0.975110,-0.029145;;, - 144;4;-0.107919,-0.177662, 0.977905, 0.022164;;, - 145;4;-0.098326,-0.161870, 0.981030, 0.065616;;, - 146;4;-0.071305,-0.117388, 0.983921, 0.104880;;, - 147;4;-0.036612,-0.060274, 0.986151, 0.134443;;, - 148;4;-0.009591,-0.015792, 0.987426, 0.150968;;, - 149;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 150;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 151;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 152;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 153;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 154;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 155;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 156;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 157;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 158;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 159;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 160;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 161;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 162;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 163;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 164;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 165;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 166;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 167;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 168;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 169;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 170;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 171;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 172;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 173;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 174;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 175;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 176;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 177;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 178;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 179;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 180;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 181;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 182;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 183;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 184;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 185;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 186;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 187;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 188;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 189;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 190;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 191;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 192;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 193;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 194;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 195;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 196;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 197;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 198;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 199;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 200;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 201;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 202;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 203;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 204;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 205;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 206;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 207;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 208;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 209;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 210;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 211;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 212;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 213;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 214;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 215;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 216;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 217;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 218;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 219;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 220;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 221;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 222;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 223;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 224;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 225;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 226;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 227;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 228;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 229;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 230;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 231;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 232;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 233;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 234;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 235;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 236;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 237;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 238;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 239;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 240;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 241;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 242;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 243;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 244;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 245;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 246;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 247;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 248;4; 0.000001, 0.000000, 0.987800, 0.155731;;, - 249;4; 0.000001, 0.000000, 0.987800, 0.155731;;; - } - AnimationKey { // Scale - 1; - 250; - 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.000001, 1.000000;;, - 44;3; 1.000000, 1.000000, 1.000000;;, - 45;3; 1.000000, 1.000000, 1.000000;;, - 46;3; 1.000000, 1.000001, 1.000000;;, - 47;3; 1.000000, 1.000000, 1.000000;;, - 48;3; 1.000000, 1.000000, 1.000000;;, - 49;3; 1.000000, 1.000001, 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.000001, 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3;-0.000000, 2.377757, 0.000000;;, - 1;3;-0.000000, 2.377757,-0.000000;;, - 2;3;-0.000000, 2.377757, 0.000000;;, - 3;3; 0.000000, 2.377757, 0.000000;;, - 4;3; 0.000000, 2.377757, 0.000000;;, - 5;3; 0.000000, 2.377757, 0.000000;;, - 6;3;-0.000000, 2.377757,-0.000000;;, - 7;3; 0.000000, 2.377758, 0.000000;;, - 8;3;-0.000000, 2.377758, 0.000000;;, - 9;3;-0.000000, 2.377757,-0.000000;;, - 10;3; 0.000000, 2.377757,-0.000000;;, - 11;3;-0.000000, 2.377757, 0.000000;;, - 12;3;-0.000000, 2.377757, 0.000000;;, - 13;3; 0.000000, 2.377757, 0.000000;;, - 14;3;-0.000000, 2.377758, 0.000000;;, - 15;3;-0.000000, 2.377757,-0.000000;;, - 16;3;-0.000000, 2.377757,-0.000000;;, - 17;3; 0.000000, 2.377757, 0.000000;;, - 18;3;-0.000000, 2.377757,-0.000000;;, - 19;3; 0.000000, 2.377758, 0.000000;;, - 20;3;-0.000000, 2.377758, 0.000000;;, - 21;3; 0.000000, 2.377758,-0.000000;;, - 22;3;-0.000000, 2.377757,-0.000000;;, - 23;3;-0.000000, 2.377757, 0.000000;;, - 24;3;-0.000000, 2.377757,-0.000000;;, - 25;3;-0.000000, 2.377757, 0.000000;;, - 26;3; 0.000000, 2.377758,-0.000000;;, - 27;3; 0.000000, 2.377757, 0.000000;;, - 28;3;-0.000000, 2.377757, 0.000000;;, - 29;3;-0.000000, 2.377757,-0.000000;;, - 30;3; 0.000000, 2.377758,-0.000000;;, - 31;3; 0.000000, 2.377757,-0.000000;;, - 32;3; 0.000000, 2.377757, 0.000000;;, - 33;3;-0.000000, 2.377757, 0.000000;;, - 34;3;-0.000000, 2.377757, 0.000000;;, - 35;3;-0.000000, 2.377757, 0.000000;;, - 36;3;-0.000000, 2.377757,-0.000000;;, - 37;3;-0.000000, 2.377757, 0.000000;;, - 38;3;-0.000000, 2.377757, 0.000000;;, - 39;3;-0.000000, 2.377757, 0.000000;;, - 40;3;-0.000000, 2.377758, 0.000000;;, - 41;3; 0.000000, 2.377757, 0.000000;;, - 42;3; 0.000000, 2.377758, 0.000000;;, - 43;3; 0.000000, 2.377757, 0.000000;;, - 44;3; 0.000000, 2.377757, 0.000000;;, - 45;3; 0.000000, 2.377757,-0.000000;;, - 46;3; 0.000000, 2.377758, 0.000000;;, - 47;3;-0.000000, 2.377757,-0.000000;;, - 48;3;-0.000000, 2.377758, 0.000000;;, - 49;3; 0.000000, 2.377757,-0.000000;;, - 50;3;-0.000000, 2.377758,-0.000000;;, - 51;3;-0.000000, 2.377757,-0.000000;;, - 52;3; 0.000000, 2.377758,-0.000000;;, - 53;3; 0.000000, 2.377757, 0.000000;;, - 54;3;-0.000000, 2.377757, 0.000000;;, - 55;3;-0.000000, 2.377757, 0.000000;;, - 56;3; 0.000000, 2.377757, 0.000000;;, - 57;3;-0.000000, 2.377758, 0.000000;;, - 58;3; 0.000000, 2.377757, 0.000000;;, - 59;3;-0.000000, 2.377757,-0.000000;;, - 60;3; 0.000000, 2.377757,-0.000001;;, - 61;3; 0.000000, 2.377757,-0.000000;;, - 62;3;-0.000000, 2.377757,-0.000000;;, - 63;3;-0.000000, 2.377757,-0.000000;;, - 64;3;-0.000000, 2.377758,-0.000000;;, - 65;3;-0.000000, 2.377758, 0.000000;;, - 66;3;-0.000000, 2.377758,-0.000000;;, - 67;3; 0.000000, 2.377757,-0.000000;;, - 68;3; 0.000000, 2.377757, 0.000000;;, - 69;3;-0.000000, 2.377757,-0.000000;;, - 70;3; 0.000000, 2.377758, 0.000000;;, - 71;3; 0.000000, 2.377758, 0.000000;;, - 72;3; 0.000000, 2.377757,-0.000000;;, - 73;3;-0.000000, 2.377757,-0.000000;;, - 74;3; 0.000000, 2.377757, 0.000000;;, - 75;3; 0.000000, 2.377757, 0.000000;;, - 76;3; 0.000000, 2.377757, 0.000000;;, - 77;3;-0.000000, 2.377758, 0.000000;;, - 78;3; 0.000000, 2.377758,-0.000000;;, - 79;3; 0.000000, 2.377757,-0.000000;;, - 80;3; 0.000000, 2.377758, 0.000000;;, - 81;3;-0.000000, 2.377757,-0.000000;;, - 82;3;-0.000000, 2.377758, 0.000000;;, - 83;3; 0.000000, 2.377757, 0.000000;;, - 84;3; 0.000000, 2.377757, 0.000000;;, - 85;3;-0.000000, 2.377757, 0.000000;;, - 86;3;-0.000000, 2.377758,-0.000000;;, - 87;3;-0.000000, 2.377758, 0.000000;;, - 88;3; 0.000000, 2.377757, 0.000000;;, - 89;3;-0.000000, 2.377757,-0.000000;;, - 90;3; 0.000000, 2.377757,-0.000000;;, - 91;3;-0.000000, 2.377758,-0.000000;;, - 92;3; 0.000000, 2.377757,-0.000000;;, - 93;3; 0.000000, 2.377758, 0.000000;;, - 94;3;-0.000000, 2.377758,-0.000000;;, - 95;3;-0.000000, 2.377757,-0.000000;;, - 96;3;-0.000000, 2.377757, 0.000000;;, - 97;3;-0.000000, 2.377758,-0.000000;;, - 98;3;-0.000000, 2.377758, 0.000000;;, - 99;3;-0.000000, 2.377757,-0.000000;;, - 100;3; 0.000000, 2.377757,-0.000000;;, - 101;3;-0.000000, 2.377757, 0.000001;;, - 102;3;-0.000000, 2.377758,-0.000000;;, - 103;3; 0.000000, 2.377758,-0.000000;;, - 104;3; 0.000000, 2.377758, 0.000000;;, - 105;3; 0.000000, 2.377757, 0.000000;;, - 106;3; 0.000000, 2.377757, 0.000000;;, - 107;3; 0.000000, 2.377757, 0.000000;;, - 108;3;-0.000000, 2.377757,-0.000000;;, - 109;3; 0.000000, 2.377757,-0.000000;;, - 110;3;-0.000000, 2.377757, 0.000000;;, - 111;3; 0.000000, 2.377758, 0.000000;;, - 112;3;-0.000000, 2.377758, 0.000000;;, - 113;3; 0.000000, 2.377757, 0.000000;;, - 114;3; 0.000000, 2.377758,-0.000000;;, - 115;3;-0.000000, 2.377757, 0.000000;;, - 116;3; 0.000000, 2.377757, 0.000000;;, - 117;3; 0.000000, 2.377758, 0.000000;;, - 118;3; 0.000000, 2.377757, 0.000000;;, - 119;3;-0.000000, 2.377757, 0.000000;;, - 120;3;-0.000000, 2.377757,-0.000000;;, - 121;3; 0.000000, 2.377758, 0.000000;;, - 122;3;-0.000000, 2.377757, 0.000000;;, - 123;3; 0.000000, 2.377757,-0.000000;;, - 124;3; 0.000000, 2.377757,-0.000000;;, - 125;3;-0.000000, 2.377758, 0.000000;;, - 126;3; 0.000000, 2.377757, 0.000000;;, - 127;3; 0.000000, 2.377757, 0.000000;;, - 128;3; 0.000000, 2.377757,-0.000000;;, - 129;3;-0.000000, 2.377757, 0.000000;;, - 130;3; 0.000000, 2.377757,-0.000000;;, - 131;3; 0.000000, 2.377757,-0.000000;;, - 132;3; 0.000000, 2.377757, 0.000000;;, - 133;3;-0.000000, 2.377757, 0.000000;;, - 134;3; 0.000000, 2.377757,-0.000000;;, - 135;3;-0.000000, 2.377758,-0.000000;;, - 136;3;-0.000000, 2.377757,-0.000000;;, - 137;3; 0.000000, 2.377757,-0.000000;;, - 138;3;-0.000000, 2.377757, 0.000000;;, - 139;3; 0.000000, 2.377758, 0.000000;;, - 140;3;-0.000000, 2.377757,-0.000000;;, - 141;3; 0.000000, 2.377757, 0.000000;;, - 142;3; 0.000000, 2.377757, 0.000000;;, - 143;3; 0.000000, 2.377757, 0.000000;;, - 144;3; 0.000000, 2.377757,-0.000000;;, - 145;3;-0.000000, 2.377758, 0.000000;;, - 146;3; 0.000000, 2.377757, 0.000000;;, - 147;3;-0.000000, 2.377758, 0.000000;;, - 148;3;-0.000000, 2.377757,-0.000000;;, - 149;3;-0.000000, 2.377757, 0.000000;;, - 150;3;-0.000000, 2.377757, 0.000000;;, - 151;3;-0.000000, 2.377757, 0.000000;;, - 152;3;-0.000000, 2.377757, 0.000000;;, - 153;3;-0.000000, 2.377757, 0.000000;;, - 154;3;-0.000000, 2.377757, 0.000000;;, - 155;3;-0.000000, 2.377757, 0.000000;;, - 156;3;-0.000000, 2.377757, 0.000000;;, - 157;3;-0.000000, 2.377757, 0.000000;;, - 158;3;-0.000000, 2.377757, 0.000000;;, - 159;3;-0.000000, 2.377757, 0.000000;;, - 160;3;-0.000000, 2.377757, 0.000000;;, - 161;3;-0.000000, 2.377757, 0.000000;;, - 162;3;-0.000000, 2.377757, 0.000000;;, - 163;3;-0.000000, 2.377757, 0.000000;;, - 164;3;-0.000000, 2.377757, 0.000000;;, - 165;3;-0.000000, 2.377757, 0.000000;;, - 166;3;-0.000000, 2.377757, 0.000000;;, - 167;3;-0.000000, 2.377757, 0.000000;;, - 168;3;-0.000000, 2.377757, 0.000000;;, - 169;3;-0.000000, 2.377757, 0.000000;;, - 170;3;-0.000000, 2.377757, 0.000000;;, - 171;3;-0.000000, 2.377757, 0.000000;;, - 172;3;-0.000000, 2.377757, 0.000000;;, - 173;3;-0.000000, 2.377757, 0.000000;;, - 174;3;-0.000000, 2.377757, 0.000000;;, - 175;3;-0.000000, 2.377757, 0.000000;;, - 176;3;-0.000000, 2.377757, 0.000000;;, - 177;3;-0.000000, 2.377757, 0.000000;;, - 178;3;-0.000000, 2.377757, 0.000000;;, - 179;3;-0.000000, 2.377757, 0.000000;;, - 180;3;-0.000000, 2.377757, 0.000000;;, - 181;3;-0.000000, 2.377757, 0.000000;;, - 182;3;-0.000000, 2.377757, 0.000000;;, - 183;3;-0.000000, 2.377757, 0.000000;;, - 184;3;-0.000000, 2.377757, 0.000000;;, - 185;3;-0.000000, 2.377757, 0.000000;;, - 186;3;-0.000000, 2.377757, 0.000000;;, - 187;3;-0.000000, 2.377757, 0.000000;;, - 188;3;-0.000000, 2.377757, 0.000000;;, - 189;3;-0.000000, 2.377757, 0.000000;;, - 190;3;-0.000000, 2.377757, 0.000000;;, - 191;3;-0.000000, 2.377757, 0.000000;;, - 192;3;-0.000000, 2.377757, 0.000000;;, - 193;3;-0.000000, 2.377757, 0.000000;;, - 194;3;-0.000000, 2.377757, 0.000000;;, - 195;3;-0.000000, 2.377757, 0.000000;;, - 196;3;-0.000000, 2.377757, 0.000000;;, - 197;3;-0.000000, 2.377757, 0.000000;;, - 198;3;-0.000000, 2.377757, 0.000000;;, - 199;3;-0.000000, 2.377757, 0.000000;;, - 200;3;-0.000000, 2.377757, 0.000000;;, - 201;3;-0.000000, 2.377757, 0.000000;;, - 202;3;-0.000000, 2.377757, 0.000000;;, - 203;3;-0.000000, 2.377757, 0.000000;;, - 204;3;-0.000000, 2.377757, 0.000000;;, - 205;3;-0.000000, 2.377757, 0.000000;;, - 206;3;-0.000000, 2.377757, 0.000000;;, - 207;3;-0.000000, 2.377757, 0.000000;;, - 208;3;-0.000000, 2.377757, 0.000000;;, - 209;3;-0.000000, 2.377757, 0.000000;;, - 210;3;-0.000000, 2.377757, 0.000000;;, - 211;3;-0.000000, 2.377757, 0.000000;;, - 212;3;-0.000000, 2.377757, 0.000000;;, - 213;3;-0.000000, 2.377757, 0.000000;;, - 214;3;-0.000000, 2.377757, 0.000000;;, - 215;3;-0.000000, 2.377757, 0.000000;;, - 216;3;-0.000000, 2.377757, 0.000000;;, - 217;3;-0.000000, 2.377757, 0.000000;;, - 218;3;-0.000000, 2.377757, 0.000000;;, - 219;3;-0.000000, 2.377757, 0.000000;;, - 220;3;-0.000000, 2.377757, 0.000000;;, - 221;3;-0.000000, 2.377757, 0.000000;;, - 222;3;-0.000000, 2.377757, 0.000000;;, - 223;3;-0.000000, 2.377757, 0.000000;;, - 224;3;-0.000000, 2.377757, 0.000000;;, - 225;3;-0.000000, 2.377757, 0.000000;;, - 226;3;-0.000000, 2.377757, 0.000000;;, - 227;3;-0.000000, 2.377757, 0.000000;;, - 228;3;-0.000000, 2.377757, 0.000000;;, - 229;3;-0.000000, 2.377757, 0.000000;;, - 230;3;-0.000000, 2.377757, 0.000000;;, - 231;3;-0.000000, 2.377757, 0.000000;;, - 232;3;-0.000000, 2.377757, 0.000000;;, - 233;3;-0.000000, 2.377757, 0.000000;;, - 234;3;-0.000000, 2.377757, 0.000000;;, - 235;3;-0.000000, 2.377757, 0.000000;;, - 236;3;-0.000000, 2.377757, 0.000000;;, - 237;3;-0.000000, 2.377757, 0.000000;;, - 238;3;-0.000000, 2.377757, 0.000000;;, - 239;3;-0.000000, 2.377757, 0.000000;;, - 240;3;-0.000000, 2.377757, 0.000000;;, - 241;3;-0.000000, 2.377757, 0.000000;;, - 242;3;-0.000000, 2.377757, 0.000000;;, - 243;3;-0.000000, 2.377757, 0.000000;;, - 244;3;-0.000000, 2.377757, 0.000000;;, - 245;3;-0.000000, 2.377757, 0.000000;;, - 246;3;-0.000000, 2.377757, 0.000000;;, - 247;3;-0.000000, 2.377757, 0.000000;;, - 248;3;-0.000000, 2.377757, 0.000000;;, - 249;3;-0.000000, 2.377757, 0.000000;;; - } - } - Animation { - {Armature_Bone_007} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 1;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 2;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 3;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 4;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 5;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 6;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 7;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 8;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 9;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 10;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 11;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 12;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 13;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 14;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 15;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 16;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 17;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 18;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 19;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 20;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 21;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 22;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 23;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 24;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 25;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 26;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 27;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 28;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 29;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 30;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 31;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 32;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 33;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 34;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 35;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 36;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 37;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 38;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 39;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 40;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 41;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 42;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 43;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 44;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 45;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 46;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 47;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 48;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 49;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 50;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 51;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 52;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 53;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 54;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 55;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 56;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 57;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 58;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 59;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 60;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 61;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 62;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 63;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 64;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 65;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 66;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 67;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 68;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 69;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 70;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 71;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 72;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 73;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 74;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 75;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 76;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 77;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 78;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 79;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 80;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 81;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 82;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 83;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 84;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 85;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 86;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 87;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 88;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 89;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 90;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 91;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 92;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 93;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 94;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 95;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 96;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 97;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 98;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 99;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 100;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 101;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 102;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 103;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 104;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 105;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 106;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 107;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 108;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 109;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 110;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 111;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 112;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 113;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 114;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 115;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 116;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 117;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 118;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 119;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 120;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 121;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 122;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 123;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 124;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 125;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 126;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 127;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 128;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 129;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 130;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 131;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 132;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 133;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 134;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 135;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 136;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 137;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 138;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 139;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 140;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 141;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 142;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 143;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 144;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 145;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 146;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 147;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 148;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 149;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 150;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 151;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 152;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 153;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 154;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 155;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 156;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 157;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 158;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 159;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 160;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 161;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 162;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 163;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 164;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 165;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 166;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 167;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 168;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 169;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 170;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 171;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 172;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 173;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 174;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 175;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 176;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 177;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 178;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 179;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 180;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 181;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 182;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 183;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 184;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 185;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 186;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 187;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 188;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 189;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 190;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 191;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 192;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 193;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 194;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 195;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 196;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 197;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 198;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 199;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 200;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 201;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 202;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 203;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 204;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 205;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 206;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 207;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 208;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 209;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 210;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 211;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 212;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 213;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 214;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 215;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 216;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 217;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 218;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 219;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 220;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 221;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 222;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 223;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 224;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 225;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 226;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 227;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 228;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 229;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 230;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 231;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 232;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 233;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 234;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 235;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 236;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 237;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 238;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 239;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 240;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 241;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 242;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 243;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 244;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 245;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 246;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 247;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 248;4;-0.876025, 0.000000, 0.000000, 0.482267;;, - 249;4;-0.876025, 0.000000, 0.000000, 0.482267;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3; 0.000000, 0.705560, 0.000000;;, - 1;3; 0.000000, 0.705560, 0.000000;;, - 2;3; 0.000000, 0.705560, 0.000000;;, - 3;3; 0.000000, 0.705560, 0.000000;;, - 4;3; 0.000000, 0.705560, 0.000000;;, - 5;3; 0.000000, 0.705560, 0.000000;;, - 6;3; 0.000000, 0.705560, 0.000000;;, - 7;3; 0.000000, 0.705560, 0.000000;;, - 8;3; 0.000000, 0.705560, 0.000000;;, - 9;3; 0.000000, 0.705560, 0.000000;;, - 10;3; 0.000000, 0.705560, 0.000000;;, - 11;3; 0.000000, 0.705560, 0.000000;;, - 12;3; 0.000000, 0.705560, 0.000000;;, - 13;3; 0.000000, 0.705560, 0.000000;;, - 14;3; 0.000000, 0.705560, 0.000000;;, - 15;3; 0.000000, 0.705560, 0.000000;;, - 16;3; 0.000000, 0.705560, 0.000000;;, - 17;3; 0.000000, 0.705560, 0.000000;;, - 18;3; 0.000000, 0.705560, 0.000000;;, - 19;3; 0.000000, 0.705560, 0.000000;;, - 20;3; 0.000000, 0.705560, 0.000000;;, - 21;3; 0.000000, 0.705560, 0.000000;;, - 22;3; 0.000000, 0.705560, 0.000000;;, - 23;3; 0.000000, 0.705560, 0.000000;;, - 24;3; 0.000000, 0.705560, 0.000000;;, - 25;3; 0.000000, 0.705560, 0.000000;;, - 26;3; 0.000000, 0.705560, 0.000000;;, - 27;3; 0.000000, 0.705560, 0.000000;;, - 28;3; 0.000000, 0.705560, 0.000000;;, - 29;3; 0.000000, 0.705560, 0.000000;;, - 30;3; 0.000000, 0.705560, 0.000000;;, - 31;3; 0.000000, 0.705560, 0.000000;;, - 32;3; 0.000000, 0.705560, 0.000000;;, - 33;3; 0.000000, 0.705560, 0.000000;;, - 34;3; 0.000000, 0.705560, 0.000000;;, - 35;3; 0.000000, 0.705560, 0.000000;;, - 36;3; 0.000000, 0.705560, 0.000000;;, - 37;3; 0.000000, 0.705560, 0.000000;;, - 38;3; 0.000000, 0.705560, 0.000000;;, - 39;3; 0.000000, 0.705560, 0.000000;;, - 40;3; 0.000000, 0.705560, 0.000000;;, - 41;3; 0.000000, 0.705559, 0.000000;;, - 42;3;-0.000000, 0.705560, 0.000000;;, - 43;3; 0.000000, 0.705560,-0.000000;;, - 44;3; 0.000000, 0.705560, 0.000000;;, - 45;3; 0.000000, 0.705560,-0.000000;;, - 46;3; 0.000000, 0.705559, 0.000000;;, - 47;3;-0.000000, 0.705560, 0.000000;;, - 48;3; 0.000000, 0.705560,-0.000000;;, - 49;3; 0.000000, 0.705560, 0.000000;;, - 50;3;-0.000000, 0.705559, 0.000000;;, - 51;3; 0.000000, 0.705560,-0.000000;;, - 52;3;-0.000000, 0.705560, 0.000000;;, - 53;3; 0.000000, 0.705560,-0.000000;;, - 54;3; 0.000000, 0.705560, 0.000000;;, - 55;3; 0.000000, 0.705560,-0.000000;;, - 56;3;-0.000000, 0.705560, 0.000000;;, - 57;3; 0.000000, 0.705559, 0.000000;;, - 58;3;-0.000000, 0.705560, 0.000000;;, - 59;3; 0.000000, 0.705560, 0.000000;;, - 60;3; 0.000000, 0.705560,-0.000000;;, - 61;3; 0.000000, 0.705560, 0.000000;;, - 62;3; 0.000000, 0.705560, 0.000000;;, - 63;3; 0.000000, 0.705560, 0.000000;;, - 64;3; 0.000000, 0.705560,-0.000000;;, - 65;3;-0.000000, 0.705560, 0.000000;;, - 66;3; 0.000000, 0.705560, 0.000000;;, - 67;3;-0.000000, 0.705560, 0.000000;;, - 68;3; 0.000000, 0.705559, 0.000000;;, - 69;3; 0.000000, 0.705560, 0.000000;;, - 70;3; 0.000000, 0.705560, 0.000000;;, - 71;3;-0.000000, 0.705560, 0.000000;;, - 72;3;-0.000000, 0.705560, 0.000000;;, - 73;3;-0.000000, 0.705560, 0.000000;;, - 74;3;-0.000000, 0.705560, 0.000000;;, - 75;3;-0.000000, 0.705560, 0.000000;;, - 76;3; 0.000000, 0.705559, 0.000000;;, - 77;3;-0.000000, 0.705560, 0.000000;;, - 78;3; 0.000000, 0.705560, 0.000000;;, - 79;3;-0.000000, 0.705559, 0.000000;;, - 80;3; 0.000000, 0.705560, 0.000000;;, - 81;3;-0.000000, 0.705560, 0.000000;;, - 82;3; 0.000000, 0.705560, 0.000000;;, - 83;3; 0.000000, 0.705560, 0.000000;;, - 84;3; 0.000000, 0.705560,-0.000000;;, - 85;3;-0.000000, 0.705560, 0.000000;;, - 86;3;-0.000000, 0.705560, 0.000000;;, - 87;3; 0.000000, 0.705560,-0.000000;;, - 88;3; 0.000000, 0.705560, 0.000000;;, - 89;3; 0.000000, 0.705560, 0.000000;;, - 90;3; 0.000000, 0.705560, 0.000000;;, - 91;3; 0.000000, 0.705560, 0.000000;;, - 92;3; 0.000000, 0.705560, 0.000000;;, - 93;3; 0.000000, 0.705560, 0.000000;;, - 94;3; 0.000000, 0.705560, 0.000000;;, - 95;3; 0.000000, 0.705560, 0.000000;;, - 96;3; 0.000000, 0.705560,-0.000000;;, - 97;3; 0.000000, 0.705560,-0.000000;;, - 98;3; 0.000000, 0.705560, 0.000000;;, - 99;3; 0.000000, 0.705560, 0.000000;;, - 100;3;-0.000000, 0.705560,-0.000000;;, - 101;3; 0.000000, 0.705560,-0.000000;;, - 102;3; 0.000000, 0.705559, 0.000000;;, - 103;3;-0.000000, 0.705560,-0.000000;;, - 104;3;-0.000000, 0.705559,-0.000000;;, - 105;3;-0.000000, 0.705560,-0.000000;;, - 106;3; 0.000000, 0.705560, 0.000000;;, - 107;3;-0.000000, 0.705559,-0.000000;;, - 108;3; 0.000000, 0.705560,-0.000000;;, - 109;3; 0.000000, 0.705559,-0.000000;;, - 110;3;-0.000000, 0.705559, 0.000000;;, - 111;3; 0.000000, 0.705560,-0.000000;;, - 112;3; 0.000000, 0.705560, 0.000000;;, - 113;3; 0.000000, 0.705560,-0.000000;;, - 114;3;-0.000000, 0.705559, 0.000000;;, - 115;3; 0.000000, 0.705560, 0.000000;;, - 116;3;-0.000000, 0.705560,-0.000000;;, - 117;3; 0.000000, 0.705560, 0.000000;;, - 118;3; 0.000000, 0.705560,-0.000000;;, - 119;3; 0.000000, 0.705560, 0.000000;;, - 120;3; 0.000000, 0.705560,-0.000000;;, - 121;3; 0.000000, 0.705560,-0.000000;;, - 122;3;-0.000000, 0.705560,-0.000000;;, - 123;3; 0.000000, 0.705560, 0.000000;;, - 124;3; 0.000000, 0.705560, 0.000000;;, - 125;3; 0.000000, 0.705560, 0.000000;;, - 126;3;-0.000000, 0.705560, 0.000000;;, - 127;3;-0.000000, 0.705560, 0.000000;;, - 128;3;-0.000000, 0.705560,-0.000000;;, - 129;3; 0.000000, 0.705560, 0.000000;;, - 130;3; 0.000000, 0.705559, 0.000000;;, - 131;3; 0.000000, 0.705560, 0.000000;;, - 132;3; 0.000000, 0.705560, 0.000000;;, - 133;3; 0.000000, 0.705560,-0.000000;;, - 134;3; 0.000000, 0.705560, 0.000000;;, - 135;3; 0.000000, 0.705560, 0.000000;;, - 136;3;-0.000000, 0.705560,-0.000000;;, - 137;3; 0.000000, 0.705560, 0.000000;;, - 138;3;-0.000000, 0.705559, 0.000000;;, - 139;3;-0.000000, 0.705560,-0.000000;;, - 140;3; 0.000000, 0.705560, 0.000000;;, - 141;3; 0.000000, 0.705560, 0.000000;;, - 142;3; 0.000000, 0.705560, 0.000000;;, - 143;3; 0.000000, 0.705560,-0.000000;;, - 144;3; 0.000000, 0.705560, 0.000000;;, - 145;3; 0.000000, 0.705560,-0.000000;;, - 146;3; 0.000000, 0.705560, 0.000000;;, - 147;3; 0.000000, 0.705560,-0.000000;;, - 148;3; 0.000000, 0.705560, 0.000000;;, - 149;3; 0.000000, 0.705560, 0.000000;;, - 150;3; 0.000000, 0.705560, 0.000000;;, - 151;3; 0.000000, 0.705560, 0.000000;;, - 152;3; 0.000000, 0.705560, 0.000000;;, - 153;3; 0.000000, 0.705560, 0.000000;;, - 154;3; 0.000000, 0.705560, 0.000000;;, - 155;3; 0.000000, 0.705560, 0.000000;;, - 156;3; 0.000000, 0.705560, 0.000000;;, - 157;3; 0.000000, 0.705560, 0.000000;;, - 158;3; 0.000000, 0.705560, 0.000000;;, - 159;3; 0.000000, 0.705560, 0.000000;;, - 160;3; 0.000000, 0.705560, 0.000000;;, - 161;3; 0.000000, 0.705560, 0.000000;;, - 162;3; 0.000000, 0.705560, 0.000000;;, - 163;3; 0.000000, 0.705560, 0.000000;;, - 164;3; 0.000000, 0.705560, 0.000000;;, - 165;3; 0.000000, 0.705560, 0.000000;;, - 166;3; 0.000000, 0.705560, 0.000000;;, - 167;3; 0.000000, 0.705560, 0.000000;;, - 168;3; 0.000000, 0.705560, 0.000000;;, - 169;3; 0.000000, 0.705560, 0.000000;;, - 170;3; 0.000000, 0.705560, 0.000000;;, - 171;3; 0.000000, 0.705560, 0.000000;;, - 172;3; 0.000000, 0.705560, 0.000000;;, - 173;3; 0.000000, 0.705560, 0.000000;;, - 174;3; 0.000000, 0.705560, 0.000000;;, - 175;3; 0.000000, 0.705560, 0.000000;;, - 176;3; 0.000000, 0.705560, 0.000000;;, - 177;3; 0.000000, 0.705560, 0.000000;;, - 178;3; 0.000000, 0.705560, 0.000000;;, - 179;3; 0.000000, 0.705560, 0.000000;;, - 180;3; 0.000000, 0.705560, 0.000000;;, - 181;3; 0.000000, 0.705560, 0.000000;;, - 182;3; 0.000000, 0.705560, 0.000000;;, - 183;3; 0.000000, 0.705560, 0.000000;;, - 184;3; 0.000000, 0.705560, 0.000000;;, - 185;3; 0.000000, 0.705560, 0.000000;;, - 186;3; 0.000000, 0.705560, 0.000000;;, - 187;3; 0.000000, 0.705560, 0.000000;;, - 188;3; 0.000000, 0.705560, 0.000000;;, - 189;3; 0.000000, 0.705560, 0.000000;;, - 190;3; 0.000000, 0.705560, 0.000000;;, - 191;3; 0.000000, 0.705560, 0.000000;;, - 192;3; 0.000000, 0.705560, 0.000000;;, - 193;3; 0.000000, 0.705560, 0.000000;;, - 194;3; 0.000000, 0.705560, 0.000000;;, - 195;3; 0.000000, 0.705560, 0.000000;;, - 196;3; 0.000000, 0.705560, 0.000000;;, - 197;3; 0.000000, 0.705560, 0.000000;;, - 198;3; 0.000000, 0.705560, 0.000000;;, - 199;3; 0.000000, 0.705560, 0.000000;;, - 200;3; 0.000000, 0.705560, 0.000000;;, - 201;3; 0.000000, 0.705560, 0.000000;;, - 202;3; 0.000000, 0.705560, 0.000000;;, - 203;3; 0.000000, 0.705560, 0.000000;;, - 204;3; 0.000000, 0.705560, 0.000000;;, - 205;3; 0.000000, 0.705560, 0.000000;;, - 206;3; 0.000000, 0.705560, 0.000000;;, - 207;3; 0.000000, 0.705560, 0.000000;;, - 208;3; 0.000000, 0.705560, 0.000000;;, - 209;3; 0.000000, 0.705560, 0.000000;;, - 210;3; 0.000000, 0.705560, 0.000000;;, - 211;3; 0.000000, 0.705560, 0.000000;;, - 212;3; 0.000000, 0.705560, 0.000000;;, - 213;3; 0.000000, 0.705560, 0.000000;;, - 214;3; 0.000000, 0.705560, 0.000000;;, - 215;3; 0.000000, 0.705560, 0.000000;;, - 216;3; 0.000000, 0.705560, 0.000000;;, - 217;3; 0.000000, 0.705560, 0.000000;;, - 218;3; 0.000000, 0.705560, 0.000000;;, - 219;3; 0.000000, 0.705560, 0.000000;;, - 220;3; 0.000000, 0.705560, 0.000000;;, - 221;3; 0.000000, 0.705560, 0.000000;;, - 222;3; 0.000000, 0.705560, 0.000000;;, - 223;3; 0.000000, 0.705560, 0.000000;;, - 224;3; 0.000000, 0.705560, 0.000000;;, - 225;3; 0.000000, 0.705560, 0.000000;;, - 226;3; 0.000000, 0.705560, 0.000000;;, - 227;3; 0.000000, 0.705560, 0.000000;;, - 228;3; 0.000000, 0.705560, 0.000000;;, - 229;3; 0.000000, 0.705560, 0.000000;;, - 230;3; 0.000000, 0.705560, 0.000000;;, - 231;3; 0.000000, 0.705560, 0.000000;;, - 232;3; 0.000000, 0.705560, 0.000000;;, - 233;3; 0.000000, 0.705560, 0.000000;;, - 234;3; 0.000000, 0.705560, 0.000000;;, - 235;3; 0.000000, 0.705560, 0.000000;;, - 236;3; 0.000000, 0.705560, 0.000000;;, - 237;3; 0.000000, 0.705560, 0.000000;;, - 238;3; 0.000000, 0.705560, 0.000000;;, - 239;3; 0.000000, 0.705560, 0.000000;;, - 240;3; 0.000000, 0.705560, 0.000000;;, - 241;3; 0.000000, 0.705560, 0.000000;;, - 242;3; 0.000000, 0.705560, 0.000000;;, - 243;3; 0.000000, 0.705560, 0.000000;;, - 244;3; 0.000000, 0.705560, 0.000000;;, - 245;3; 0.000000, 0.705560, 0.000000;;, - 246;3; 0.000000, 0.705560, 0.000000;;, - 247;3; 0.000000, 0.705560, 0.000000;;, - 248;3; 0.000000, 0.705560, 0.000000;;, - 249;3; 0.000000, 0.705560, 0.000000;;; - } - } - Animation { - {Armature_Bone_029} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.704993,-0.520003, 0.286271,-0.388111;;, - 1;4;-0.704853,-0.520186, 0.286371,-0.388033;;, - 2;4;-0.704427,-0.520737, 0.286675,-0.387799;;, - 3;4;-0.703716,-0.521659, 0.287182,-0.387408;;, - 4;4;-0.702725,-0.522943, 0.287889,-0.386862;;, - 5;4;-0.701470,-0.524571, 0.288786,-0.386171;;, - 6;4;-0.699974,-0.526511, 0.289853,-0.385348;;, - 7;4;-0.698274,-0.528714, 0.291066,-0.384412;;, - 8;4;-0.696419,-0.531119, 0.292390,-0.383391;;, - 9;4;-0.694466,-0.533650, 0.293784,-0.382316;;, - 10;4;-0.692480,-0.536226, 0.295201,-0.381222;;, - 11;4;-0.690527,-0.538758, 0.296595,-0.380147;;, - 12;4;-0.688672,-0.541162, 0.297919,-0.379125;;, - 13;4;-0.686972,-0.543365, 0.299132,-0.378190;;, - 14;4;-0.685476,-0.545305, 0.300200,-0.377366;;, - 15;4;-0.684220,-0.546933, 0.301096,-0.376675;;, - 16;4;-0.683230,-0.548217, 0.301803,-0.376130;;, - 17;4;-0.682519,-0.549139, 0.302310,-0.375738;;, - 18;4;-0.682093,-0.549690, 0.302614,-0.375504;;, - 19;4;-0.681952,-0.549873, 0.302714,-0.375426;;, - 20;4;-0.682000,-0.549871, 0.302713,-0.375453;;, - 21;4;-0.682151,-0.549854, 0.302704,-0.375536;;, - 22;4;-0.682413,-0.549803, 0.302676,-0.375680;;, - 23;4;-0.682797,-0.549694, 0.302616,-0.375892;;, - 24;4;-0.683312,-0.549502, 0.302510,-0.376175;;, - 25;4;-0.683965,-0.549196, 0.302342,-0.376534;;, - 26;4;-0.684761,-0.548743, 0.302092,-0.376973;;, - 27;4;-0.685703,-0.548109, 0.301743,-0.377491;;, - 28;4;-0.686790,-0.547261, 0.301277,-0.378090;;, - 29;4;-0.688016,-0.546170, 0.300676,-0.378765;;, - 30;4;-0.689373,-0.544811, 0.299928,-0.379511;;, - 31;4;-0.690847,-0.543166, 0.299022,-0.380323;;, - 32;4;-0.692423,-0.541227, 0.297955,-0.381191;;, - 33;4;-0.694085,-0.538991, 0.296724,-0.382106;;, - 34;4;-0.695817,-0.536465, 0.295333,-0.383059;;, - 35;4;-0.697601,-0.533659, 0.293789,-0.384041;;, - 36;4;-0.699423,-0.530592, 0.292100,-0.385044;;, - 37;4;-0.701269,-0.527280, 0.290277,-0.386061;;, - 38;4;-0.703129,-0.523744, 0.288330,-0.387085;;, - 39;4;-0.704993,-0.520003, 0.286271,-0.388111;;, - 40;4;-0.707647,-0.512608, 0.280938,-0.387847;;, - 41;4;-0.711902,-0.498035, 0.269077,-0.384976;;, - 42;4;-0.717771,-0.476293, 0.250630,-0.379489;;, - 43;4;-0.725237,-0.447550, 0.225672,-0.371434;;, - 44;4;-0.734239,-0.412174, 0.194449,-0.360927;;, - 45;4;-0.744668,-0.370768, 0.157405,-0.348169;;, - 46;4;-0.756356,-0.324203, 0.115217,-0.333456;;, - 47;4;-0.769080,-0.273614, 0.068799,-0.317178;;, - 48;4;-0.782562,-0.220378, 0.019285,-0.299815;;, - 49;4;-0.796479,-0.166054,-0.032017,-0.281912;;, - 50;4;-0.810487,-0.112290,-0.083699,-0.264052;;, - 51;4;-0.824238,-0.060722,-0.134341,-0.246816;;, - 52;4;-0.837402,-0.012866,-0.182608,-0.230748;;, - 53;4;-0.849692, 0.029968,-0.227319,-0.216321;;, - 54;4;-0.860869, 0.066728,-0.267506,-0.203920;;, - 55;4;-0.870752, 0.096636,-0.302428,-0.193832;;, - 56;4;-0.879216, 0.119186,-0.331574,-0.186252;;, - 57;4;-0.886185, 0.134104,-0.354637,-0.181288;;, - 58;4;-0.891626, 0.141312,-0.371480,-0.178982;;, - 59;4;-0.895541, 0.140884,-0.382104,-0.179318;;, - 60;4;-0.897098, 0.125652,-0.383212,-0.184541;;, - 61;4;-0.895398, 0.088289,-0.371288,-0.196940;;, - 62;4;-0.890560, 0.030294,-0.346944,-0.216019;;, - 63;4;-0.883080,-0.044033,-0.312354,-0.240376;;, - 64;4;-0.873896,-0.127290,-0.271471,-0.267599;;, - 65;4;-0.864274,-0.209965,-0.229542,-0.294594;;, - 66;4;-0.855523,-0.282605,-0.191915,-0.318290;;, - 67;4;-0.848696,-0.337960,-0.162821,-0.336335;;, - 68;4;-0.844437,-0.371924,-0.144782,-0.347402;;, - 69;4;-0.843007,-0.383191,-0.138755,-0.351072;;, - 70;4;-0.843189,-0.381955,-0.139430,-0.350681;;, - 71;4;-0.843736,-0.378223,-0.141462,-0.349499;;, - 72;4;-0.844648,-0.371969,-0.144859,-0.347518;;, - 73;4;-0.845920,-0.363188,-0.149616,-0.344733;;, - 74;4;-0.847545,-0.351894,-0.155713,-0.341149;;, - 75;4;-0.849509,-0.338133,-0.163117,-0.336779;;, - 76;4;-0.851797,-0.321979,-0.171775,-0.331644;;, - 77;4;-0.854382,-0.303542,-0.181615,-0.325778;;, - 78;4;-0.857237,-0.282970,-0.192540,-0.319225;;, - 79;4;-0.860325,-0.260455,-0.204434,-0.312044;;, - 80;4;-0.863603,-0.236225,-0.217156,-0.304306;;, - 81;4;-0.867023,-0.210552,-0.230544,-0.296094;;, - 82;4;-0.870532,-0.183742,-0.244416,-0.287504;;, - 83;4;-0.874072,-0.156131,-0.258576,-0.278639;;, - 84;4;-0.877585,-0.128077,-0.272816,-0.269612;;, - 85;4;-0.881009,-0.099950,-0.286925,-0.260538;;, - 86;4;-0.884286,-0.072120,-0.300692,-0.251534;;, - 87;4;-0.887359,-0.044946,-0.313914,-0.242712;;, - 88;4;-0.890175,-0.018770,-0.326402,-0.234179;;, - 89;4;-0.892689, 0.006096,-0.337985,-0.226034;;, - 90;4;-0.894859, 0.029376,-0.348512,-0.218366;;, - 91;4;-0.896653, 0.050831,-0.357856,-0.211249;;, - 92;4;-0.898043, 0.070265,-0.365914,-0.204748;;, - 93;4;-0.899011, 0.087518,-0.372605,-0.198911;;, - 94;4;-0.899542, 0.102474,-0.377873,-0.193779;;, - 95;4;-0.899630, 0.115048,-0.381679,-0.189379;;, - 96;4;-0.899270, 0.125189,-0.384004,-0.185727;;, - 97;4;-0.898465, 0.132872,-0.384842,-0.182833;;, - 98;4;-0.897219, 0.138098,-0.384203,-0.180699;;, - 99;4;-0.895541, 0.140884,-0.382104,-0.179318;;, - 100;4;-0.892727, 0.138712,-0.375792,-0.179532;;, - 101;4;-0.888054, 0.128951,-0.362424,-0.182213;;, - 102;4;-0.881523, 0.111562,-0.341984,-0.187379;;, - 103;4;-0.873176, 0.086660,-0.314605,-0.194994;;, - 104;4;-0.863108, 0.054561,-0.280613,-0.204959;;, - 105;4;-0.851474, 0.015824,-0.240561,-0.217096;;, - 106;4;-0.838496,-0.028723,-0.195257,-0.231141;;, - 107;4;-0.824468,-0.077975,-0.145771,-0.246738;;, - 108;4;-0.809744,-0.130568,-0.093409,-0.263449;;, - 109;4;-0.794726,-0.184943,-0.039659,-0.280770;;, - 110;4;-0.779841,-0.239428, 0.013894,-0.298162;;, - 111;4;-0.765510,-0.292350, 0.065670,-0.315082;;, - 112;4;-0.752126,-0.342138, 0.114196,-0.331021;;, - 113;4;-0.740028,-0.387418, 0.158189,-0.345533;;, - 114;4;-0.729489,-0.427068, 0.196609,-0.358252;;, - 115;4;-0.720709,-0.460240, 0.228680,-0.368902;;, - 116;4;-0.713823,-0.486358, 0.253883,-0.377293;;, - 117;4;-0.708900,-0.505088, 0.271926,-0.383314;;, - 118;4;-0.705963,-0.516294, 0.282707,-0.386918;;, - 119;4;-0.704993,-0.520003, 0.286271,-0.388111;;, - 120;4;-0.711363,-0.519362, 0.280800,-0.380526;;, - 121;4;-0.730077,-0.516320, 0.264016,-0.359582;;, - 122;4;-0.756183,-0.509092, 0.238772,-0.333816;;, - 123;4;-0.780559,-0.496997, 0.211924,-0.315939;;, - 124;4;-0.796561,-0.480954, 0.189332,-0.313573;;, - 125;4;-0.810081,-0.456227, 0.166718,-0.322386;;, - 126;4;-0.827465,-0.419671, 0.139810,-0.335998;;, - 127;4;-0.844594,-0.381036, 0.114488,-0.350662;;, - 128;4;-0.856317,-0.353533, 0.097643,-0.361206;;, - 129;4;-0.860204,-0.344208, 0.092151,-0.364801;;, - 130;4;-0.849864,-0.363077, 0.105794,-0.356978;;, - 131;4;-0.820741,-0.416227, 0.144221,-0.334945;;, - 132;4;-0.783348,-0.484472, 0.193561,-0.306654;;, - 133;4;-0.754225,-0.537621, 0.231989,-0.284621;;, - 134;4;-0.743886,-0.556491, 0.245631,-0.276798;;, - 135;4;-0.753367,-0.514166, 0.215534,-0.297647;;, - 136;4;-0.780072,-0.394949, 0.130760,-0.356371;;, - 137;4;-0.814361,-0.241875, 0.021910,-0.431773;;, - 138;4;-0.841067,-0.122658,-0.062864,-0.490497;;, - 139;4;-0.850548,-0.080333,-0.092961,-0.511346;;, - 140;4;-0.841076,-0.123591,-0.064558,-0.490481;;, - 141;4;-0.814392,-0.245027, 0.016186,-0.431717;;, - 142;4;-0.780120,-0.399855, 0.121848,-0.356284;;, - 143;4;-0.753407,-0.518308, 0.208010,-0.297574;;, - 144;4;-0.743886,-0.556491, 0.245631,-0.276798;;, - 145;4;-0.740388,-0.549106, 0.256768,-0.286767;;, - 146;4;-0.730643,-0.539206, 0.268330,-0.314650;;, - 147;4;-0.718157,-0.529231, 0.278208,-0.350403;;, - 148;4;-0.708441,-0.522314, 0.284352,-0.378233;;, - 149;4;-0.704993,-0.520003, 0.286271,-0.388111;;, - 150;4;-0.704993,-0.520003, 0.286271,-0.388111;;, - 151;4;-0.704993,-0.520003, 0.286271,-0.388111;;, - 152;4;-0.704993,-0.520003, 0.286271,-0.388111;;, - 153;4;-0.704993,-0.520003, 0.286271,-0.388111;;, - 154;4;-0.704993,-0.520003, 0.286271,-0.388111;;, - 155;4;-0.704993,-0.520003, 0.286271,-0.388111;;, - 156;4;-0.704993,-0.520003, 0.286271,-0.388111;;, - 157;4;-0.704993,-0.520003, 0.286271,-0.388111;;, - 158;4;-0.704993,-0.520003, 0.286271,-0.388111;;, - 159;4;-0.704993,-0.520003, 0.286271,-0.388111;;, - 160;4;-0.704993,-0.520003, 0.286271,-0.388111;;, - 161;4;-0.704993,-0.520003, 0.286271,-0.388111;;, - 162;4;-0.704993,-0.520003, 0.286271,-0.388111;;, - 163;4;-0.704993,-0.520003, 0.286271,-0.388111;;, - 164;4;-0.704993,-0.520003, 0.286271,-0.388111;;, - 165;4;-0.704993,-0.520003, 0.286271,-0.388111;;, - 166;4;-0.704993,-0.520003, 0.286271,-0.388111;;, - 167;4;-0.704993,-0.520003, 0.286271,-0.388111;;, - 168;4;-0.704993,-0.520003, 0.286271,-0.388111;;, - 169;4;-0.704993,-0.520003, 0.286271,-0.388111;;, - 170;4;-0.704993,-0.520003, 0.286271,-0.388111;;, - 171;4;-0.704993,-0.520003, 0.286271,-0.388111;;, - 172;4;-0.704993,-0.520003, 0.286271,-0.388111;;, - 173;4;-0.704993,-0.520003, 0.286271,-0.388111;;, - 174;4;-0.704993,-0.520003, 0.286271,-0.388111;;, - 175;4;-0.704993,-0.520003, 0.286271,-0.388111;;, - 176;4;-0.704993,-0.520003, 0.286271,-0.388111;;, - 177;4;-0.704993,-0.520003, 0.286271,-0.388111;;, - 178;4;-0.704993,-0.520003, 0.286271,-0.388111;;, - 179;4;-0.704993,-0.520003, 0.286271,-0.388111;;, - 180;4;-0.704993,-0.520003, 0.286271,-0.388111;;, - 181;4;-0.704993,-0.520003, 0.286271,-0.388111;;, - 182;4;-0.704993,-0.520003, 0.286271,-0.388111;;, - 183;4;-0.704993,-0.520003, 0.286271,-0.388111;;, - 184;4;-0.704993,-0.520003, 0.286271,-0.388111;;, - 185;4;-0.704993,-0.520003, 0.286271,-0.388111;;, - 186;4;-0.704993,-0.520003, 0.286271,-0.388111;;, - 187;4;-0.704993,-0.520003, 0.286271,-0.388111;;, - 188;4;-0.704993,-0.520003, 0.286271,-0.388111;;, - 189;4;-0.704993,-0.520003, 0.286271,-0.388111;;, - 190;4;-0.704993,-0.520003, 0.286271,-0.388111;;, - 191;4;-0.704993,-0.520003, 0.286271,-0.388111;;, - 192;4;-0.704993,-0.520003, 0.286271,-0.388111;;, - 193;4;-0.704993,-0.520003, 0.286271,-0.388111;;, - 194;4;-0.704993,-0.520003, 0.286271,-0.388111;;, - 195;4;-0.704993,-0.520003, 0.286271,-0.388111;;, - 196;4;-0.704993,-0.520003, 0.286271,-0.388111;;, - 197;4;-0.704993,-0.520003, 0.286271,-0.388111;;, - 198;4;-0.704993,-0.520003, 0.286271,-0.388111;;, - 199;4;-0.704993,-0.520003, 0.286271,-0.388111;;, - 200;4;-0.704993,-0.520003, 0.286271,-0.388111;;, - 201;4;-0.704993,-0.520003, 0.286271,-0.388111;;, - 202;4;-0.704993,-0.520003, 0.286271,-0.388111;;, - 203;4;-0.704993,-0.520003, 0.286271,-0.388111;;, - 204;4;-0.704993,-0.520003, 0.286271,-0.388111;;, - 205;4;-0.704993,-0.520003, 0.286271,-0.388111;;, - 206;4;-0.704993,-0.520003, 0.286271,-0.388111;;, - 207;4;-0.704993,-0.520003, 0.286271,-0.388111;;, - 208;4;-0.704993,-0.520003, 0.286271,-0.388111;;, - 209;4;-0.704993,-0.520003, 0.286271,-0.388111;;, - 210;4;-0.704993,-0.520003, 0.286271,-0.388111;;, - 211;4;-0.704993,-0.520003, 0.286271,-0.388111;;, - 212;4;-0.704993,-0.520003, 0.286271,-0.388111;;, - 213;4;-0.704993,-0.520003, 0.286271,-0.388111;;, - 214;4;-0.704993,-0.520003, 0.286271,-0.388111;;, - 215;4;-0.704993,-0.520003, 0.286271,-0.388111;;, - 216;4;-0.704993,-0.520003, 0.286271,-0.388111;;, - 217;4;-0.704993,-0.520003, 0.286271,-0.388111;;, - 218;4;-0.704993,-0.520003, 0.286271,-0.388111;;, - 219;4;-0.704993,-0.520003, 0.286271,-0.388111;;, - 220;4;-0.704993,-0.520003, 0.286271,-0.388111;;, - 221;4;-0.704993,-0.520003, 0.286271,-0.388111;;, - 222;4;-0.704993,-0.520003, 0.286271,-0.388111;;, - 223;4;-0.704993,-0.520003, 0.286271,-0.388111;;, - 224;4;-0.704993,-0.520003, 0.286271,-0.388111;;, - 225;4;-0.704993,-0.520003, 0.286271,-0.388111;;, - 226;4;-0.704993,-0.520003, 0.286271,-0.388111;;, - 227;4;-0.704993,-0.520003, 0.286271,-0.388111;;, - 228;4;-0.704993,-0.520003, 0.286271,-0.388111;;, - 229;4;-0.704993,-0.520003, 0.286271,-0.388111;;, - 230;4;-0.704993,-0.520003, 0.286271,-0.388111;;, - 231;4;-0.704993,-0.520003, 0.286271,-0.388111;;, - 232;4;-0.704993,-0.520003, 0.286271,-0.388111;;, - 233;4;-0.704993,-0.520003, 0.286271,-0.388111;;, - 234;4;-0.704993,-0.520003, 0.286271,-0.388111;;, - 235;4;-0.704993,-0.520003, 0.286271,-0.388111;;, - 236;4;-0.704993,-0.520003, 0.286271,-0.388111;;, - 237;4;-0.704993,-0.520003, 0.286271,-0.388111;;, - 238;4;-0.704993,-0.520003, 0.286271,-0.388111;;, - 239;4;-0.704993,-0.520003, 0.286271,-0.388111;;, - 240;4;-0.704993,-0.520003, 0.286271,-0.388111;;, - 241;4;-0.704993,-0.520003, 0.286271,-0.388111;;, - 242;4;-0.704993,-0.520003, 0.286271,-0.388111;;, - 243;4;-0.704993,-0.520003, 0.286271,-0.388111;;, - 244;4;-0.704993,-0.520003, 0.286271,-0.388111;;, - 245;4;-0.704993,-0.520003, 0.286271,-0.388111;;, - 246;4;-0.704993,-0.520003, 0.286271,-0.388111;;, - 247;4;-0.704993,-0.520003, 0.286271,-0.388111;;, - 248;4;-0.704993,-0.520003, 0.286271,-0.388111;;, - 249;4;-0.704993,-0.520003, 0.286271,-0.388111;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3;-0.000000, 1.026680, 0.000000;;, - 1;3;-0.000000, 1.026680, 0.000000;;, - 2;3;-0.000000, 1.026680, 0.000000;;, - 3;3;-0.000000, 1.026680, 0.000000;;, - 4;3;-0.000000, 1.026680, 0.000000;;, - 5;3;-0.000000, 1.026680, 0.000000;;, - 6;3;-0.000000, 1.026680, 0.000000;;, - 7;3;-0.000000, 1.026680, 0.000000;;, - 8;3;-0.000000, 1.026680, 0.000000;;, - 9;3;-0.000000, 1.026680, 0.000000;;, - 10;3;-0.000000, 1.026680, 0.000000;;, - 11;3;-0.000000, 1.026680, 0.000000;;, - 12;3;-0.000000, 1.026680, 0.000000;;, - 13;3;-0.000000, 1.026680, 0.000000;;, - 14;3;-0.000000, 1.026680, 0.000000;;, - 15;3;-0.000000, 1.026680, 0.000000;;, - 16;3;-0.000000, 1.026680, 0.000000;;, - 17;3;-0.000000, 1.026680, 0.000000;;, - 18;3;-0.000000, 1.026680, 0.000000;;, - 19;3;-0.000000, 1.026680, 0.000000;;, - 20;3;-0.000000, 1.026680, 0.000000;;, - 21;3;-0.000000, 1.026680, 0.000000;;, - 22;3;-0.000000, 1.026680, 0.000000;;, - 23;3;-0.000000, 1.026680, 0.000000;;, - 24;3;-0.000000, 1.026680, 0.000000;;, - 25;3;-0.000000, 1.026680, 0.000000;;, - 26;3;-0.000000, 1.026680, 0.000000;;, - 27;3;-0.000000, 1.026680, 0.000000;;, - 28;3;-0.000000, 1.026680, 0.000000;;, - 29;3;-0.000000, 1.026680, 0.000000;;, - 30;3;-0.000000, 1.026680, 0.000000;;, - 31;3;-0.000000, 1.026680, 0.000000;;, - 32;3;-0.000000, 1.026680, 0.000000;;, - 33;3;-0.000000, 1.026680, 0.000000;;, - 34;3;-0.000000, 1.026680, 0.000000;;, - 35;3;-0.000000, 1.026680, 0.000000;;, - 36;3;-0.000000, 1.026680, 0.000000;;, - 37;3;-0.000000, 1.026680, 0.000000;;, - 38;3;-0.000000, 1.026680, 0.000000;;, - 39;3;-0.000000, 1.026680, 0.000000;;, - 40;3; 0.000000, 1.026680,-0.000000;;, - 41;3; 0.000000, 1.026680, 0.000000;;, - 42;3; 0.000000, 1.026680,-0.000000;;, - 43;3;-0.000000, 1.026679,-0.000000;;, - 44;3;-0.000000, 1.026680,-0.000000;;, - 45;3;-0.000000, 1.026680, 0.000000;;, - 46;3; 0.000000, 1.026680,-0.000000;;, - 47;3; 0.000000, 1.026680, 0.000000;;, - 48;3; 0.000000, 1.026680,-0.000000;;, - 49;3; 0.000000, 1.026680,-0.000000;;, - 50;3; 0.000000, 1.026679,-0.000000;;, - 51;3; 0.000000, 1.026680,-0.000000;;, - 52;3; 0.000000, 1.026679, 0.000000;;, - 53;3; 0.000000, 1.026680,-0.000000;;, - 54;3; 0.000000, 1.026680, 0.000000;;, - 55;3; 0.000000, 1.026680,-0.000000;;, - 56;3; 0.000000, 1.026680,-0.000000;;, - 57;3;-0.000000, 1.026679, 0.000000;;, - 58;3;-0.000000, 1.026680,-0.000000;;, - 59;3;-0.000000, 1.026679,-0.000000;;, - 60;3; 0.000000, 1.026680,-0.000000;;, - 61;3;-0.000000, 1.026680,-0.000000;;, - 62;3;-0.000000, 1.026680,-0.000000;;, - 63;3; 0.000000, 1.026679,-0.000000;;, - 64;3; 0.000000, 1.026680,-0.000000;;, - 65;3; 0.000000, 1.026680,-0.000000;;, - 66;3;-0.000000, 1.026680, 0.000000;;, - 67;3;-0.000000, 1.026679, 0.000000;;, - 68;3; 0.000000, 1.026680,-0.000000;;, - 69;3; 0.000000, 1.026680, 0.000000;;, - 70;3; 0.000000, 1.026679,-0.000000;;, - 71;3; 0.000000, 1.026680,-0.000000;;, - 72;3; 0.000000, 1.026680,-0.000000;;, - 73;3; 0.000000, 1.026680,-0.000000;;, - 74;3; 0.000000, 1.026680,-0.000000;;, - 75;3; 0.000000, 1.026680,-0.000000;;, - 76;3; 0.000000, 1.026680,-0.000000;;, - 77;3; 0.000000, 1.026680,-0.000000;;, - 78;3;-0.000000, 1.026680, 0.000000;;, - 79;3;-0.000000, 1.026680,-0.000000;;, - 80;3; 0.000000, 1.026679,-0.000000;;, - 81;3; 0.000000, 1.026680,-0.000000;;, - 82;3; 0.000000, 1.026680,-0.000000;;, - 83;3; 0.000000, 1.026679,-0.000000;;, - 84;3; 0.000000, 1.026680,-0.000000;;, - 85;3; 0.000000, 1.026680,-0.000000;;, - 86;3; 0.000000, 1.026679,-0.000000;;, - 87;3; 0.000000, 1.026679,-0.000000;;, - 88;3; 0.000000, 1.026679,-0.000000;;, - 89;3; 0.000000, 1.026679,-0.000000;;, - 90;3; 0.000000, 1.026680,-0.000000;;, - 91;3; 0.000000, 1.026679,-0.000000;;, - 92;3; 0.000000, 1.026679,-0.000000;;, - 93;3;-0.000000, 1.026680,-0.000000;;, - 94;3; 0.000000, 1.026680,-0.000000;;, - 95;3; 0.000000, 1.026680,-0.000000;;, - 96;3; 0.000000, 1.026679,-0.000000;;, - 97;3;-0.000000, 1.026679,-0.000000;;, - 98;3;-0.000000, 1.026679, 0.000000;;, - 99;3;-0.000000, 1.026679,-0.000000;;, - 100;3; 0.000000, 1.026680, 0.000000;;, - 101;3;-0.000000, 1.026680,-0.000000;;, - 102;3; 0.000000, 1.026680,-0.000000;;, - 103;3; 0.000000, 1.026680,-0.000000;;, - 104;3; 0.000000, 1.026680, 0.000000;;, - 105;3; 0.000000, 1.026679, 0.000000;;, - 106;3; 0.000000, 1.026680, 0.000000;;, - 107;3; 0.000000, 1.026680, 0.000000;;, - 108;3; 0.000000, 1.026680, 0.000000;;, - 109;3;-0.000000, 1.026680, 0.000000;;, - 110;3;-0.000000, 1.026679, 0.000000;;, - 111;3;-0.000000, 1.026679,-0.000000;;, - 112;3;-0.000000, 1.026680, 0.000000;;, - 113;3; 0.000000, 1.026680, 0.000000;;, - 114;3; 0.000000, 1.026680,-0.000000;;, - 115;3; 0.000000, 1.026680, 0.000000;;, - 116;3; 0.000000, 1.026680, 0.000000;;, - 117;3;-0.000000, 1.026680, 0.000000;;, - 118;3; 0.000000, 1.026680, 0.000000;;, - 119;3;-0.000000, 1.026680, 0.000000;;, - 120;3;-0.000000, 1.026680, 0.000000;;, - 121;3; 0.000000, 1.026680, 0.000000;;, - 122;3;-0.000000, 1.026679, 0.000000;;, - 123;3; 0.000000, 1.026680, 0.000000;;, - 124;3;-0.000000, 1.026680,-0.000000;;, - 125;3;-0.000000, 1.026680,-0.000000;;, - 126;3;-0.000000, 1.026680,-0.000000;;, - 127;3; 0.000000, 1.026680,-0.000000;;, - 128;3; 0.000000, 1.026680,-0.000000;;, - 129;3;-0.000000, 1.026680, 0.000000;;, - 130;3;-0.000000, 1.026680, 0.000000;;, - 131;3;-0.000000, 1.026680, 0.000000;;, - 132;3;-0.000000, 1.026680, 0.000000;;, - 133;3;-0.000000, 1.026680, 0.000000;;, - 134;3;-0.000000, 1.026680, 0.000000;;, - 135;3;-0.000000, 1.026679, 0.000000;;, - 136;3; 0.000000, 1.026680, 0.000000;;, - 137;3; 0.000000, 1.026680, 0.000000;;, - 138;3; 0.000000, 1.026680, 0.000000;;, - 139;3; 0.000000, 1.026680, 0.000000;;, - 140;3;-0.000000, 1.026680,-0.000000;;, - 141;3;-0.000000, 1.026680, 0.000000;;, - 142;3;-0.000000, 1.026680, 0.000000;;, - 143;3; 0.000000, 1.026679, 0.000000;;, - 144;3; 0.000000, 1.026680, 0.000000;;, - 145;3; 0.000000, 1.026680,-0.000000;;, - 146;3;-0.000000, 1.026680, 0.000000;;, - 147;3;-0.000000, 1.026680,-0.000000;;, - 148;3; 0.000000, 1.026680, 0.000000;;, - 149;3;-0.000000, 1.026680, 0.000000;;, - 150;3;-0.000000, 1.026680, 0.000000;;, - 151;3;-0.000000, 1.026680, 0.000000;;, - 152;3;-0.000000, 1.026680, 0.000000;;, - 153;3;-0.000000, 1.026680, 0.000000;;, - 154;3;-0.000000, 1.026680, 0.000000;;, - 155;3;-0.000000, 1.026680, 0.000000;;, - 156;3;-0.000000, 1.026680, 0.000000;;, - 157;3;-0.000000, 1.026680, 0.000000;;, - 158;3;-0.000000, 1.026680, 0.000000;;, - 159;3;-0.000000, 1.026680, 0.000000;;, - 160;3;-0.000000, 1.026680, 0.000000;;, - 161;3;-0.000000, 1.026680, 0.000000;;, - 162;3;-0.000000, 1.026680, 0.000000;;, - 163;3;-0.000000, 1.026680, 0.000000;;, - 164;3;-0.000000, 1.026680, 0.000000;;, - 165;3;-0.000000, 1.026680, 0.000000;;, - 166;3;-0.000000, 1.026680, 0.000000;;, - 167;3;-0.000000, 1.026680, 0.000000;;, - 168;3;-0.000000, 1.026680, 0.000000;;, - 169;3;-0.000000, 1.026680, 0.000000;;, - 170;3;-0.000000, 1.026680, 0.000000;;, - 171;3;-0.000000, 1.026680, 0.000000;;, - 172;3;-0.000000, 1.026680, 0.000000;;, - 173;3;-0.000000, 1.026680, 0.000000;;, - 174;3;-0.000000, 1.026680, 0.000000;;, - 175;3;-0.000000, 1.026680, 0.000000;;, - 176;3;-0.000000, 1.026680, 0.000000;;, - 177;3;-0.000000, 1.026680, 0.000000;;, - 178;3;-0.000000, 1.026680, 0.000000;;, - 179;3;-0.000000, 1.026680, 0.000000;;, - 180;3;-0.000000, 1.026680, 0.000000;;, - 181;3;-0.000000, 1.026680, 0.000000;;, - 182;3;-0.000000, 1.026680, 0.000000;;, - 183;3;-0.000000, 1.026680, 0.000000;;, - 184;3;-0.000000, 1.026680, 0.000000;;, - 185;3;-0.000000, 1.026680, 0.000000;;, - 186;3;-0.000000, 1.026680, 0.000000;;, - 187;3;-0.000000, 1.026680, 0.000000;;, - 188;3;-0.000000, 1.026680, 0.000000;;, - 189;3;-0.000000, 1.026680, 0.000000;;, - 190;3;-0.000000, 1.026680, 0.000000;;, - 191;3;-0.000000, 1.026680, 0.000000;;, - 192;3;-0.000000, 1.026680, 0.000000;;, - 193;3;-0.000000, 1.026680, 0.000000;;, - 194;3;-0.000000, 1.026680, 0.000000;;, - 195;3;-0.000000, 1.026680, 0.000000;;, - 196;3;-0.000000, 1.026680, 0.000000;;, - 197;3;-0.000000, 1.026680, 0.000000;;, - 198;3;-0.000000, 1.026680, 0.000000;;, - 199;3;-0.000000, 1.026680, 0.000000;;, - 200;3;-0.000000, 1.026680, 0.000000;;, - 201;3;-0.000000, 1.026680, 0.000000;;, - 202;3;-0.000000, 1.026680, 0.000000;;, - 203;3;-0.000000, 1.026680, 0.000000;;, - 204;3;-0.000000, 1.026680, 0.000000;;, - 205;3;-0.000000, 1.026680, 0.000000;;, - 206;3;-0.000000, 1.026680, 0.000000;;, - 207;3;-0.000000, 1.026680, 0.000000;;, - 208;3;-0.000000, 1.026680, 0.000000;;, - 209;3;-0.000000, 1.026680, 0.000000;;, - 210;3;-0.000000, 1.026680, 0.000000;;, - 211;3;-0.000000, 1.026680, 0.000000;;, - 212;3;-0.000000, 1.026680, 0.000000;;, - 213;3;-0.000000, 1.026680, 0.000000;;, - 214;3;-0.000000, 1.026680, 0.000000;;, - 215;3;-0.000000, 1.026680, 0.000000;;, - 216;3;-0.000000, 1.026680, 0.000000;;, - 217;3;-0.000000, 1.026680, 0.000000;;, - 218;3;-0.000000, 1.026680, 0.000000;;, - 219;3;-0.000000, 1.026680, 0.000000;;, - 220;3;-0.000000, 1.026680, 0.000000;;, - 221;3;-0.000000, 1.026680, 0.000000;;, - 222;3;-0.000000, 1.026680, 0.000000;;, - 223;3;-0.000000, 1.026680, 0.000000;;, - 224;3;-0.000000, 1.026680, 0.000000;;, - 225;3;-0.000000, 1.026680, 0.000000;;, - 226;3;-0.000000, 1.026680, 0.000000;;, - 227;3;-0.000000, 1.026680, 0.000000;;, - 228;3;-0.000000, 1.026680, 0.000000;;, - 229;3;-0.000000, 1.026680, 0.000000;;, - 230;3;-0.000000, 1.026680, 0.000000;;, - 231;3;-0.000000, 1.026680, 0.000000;;, - 232;3;-0.000000, 1.026680, 0.000000;;, - 233;3;-0.000000, 1.026680, 0.000000;;, - 234;3;-0.000000, 1.026680, 0.000000;;, - 235;3;-0.000000, 1.026680, 0.000000;;, - 236;3;-0.000000, 1.026680, 0.000000;;, - 237;3;-0.000000, 1.026680, 0.000000;;, - 238;3;-0.000000, 1.026680, 0.000000;;, - 239;3;-0.000000, 1.026680, 0.000000;;, - 240;3;-0.000000, 1.026680, 0.000000;;, - 241;3;-0.000000, 1.026680, 0.000000;;, - 242;3;-0.000000, 1.026680, 0.000000;;, - 243;3;-0.000000, 1.026680, 0.000000;;, - 244;3;-0.000000, 1.026680, 0.000000;;, - 245;3;-0.000000, 1.026680, 0.000000;;, - 246;3;-0.000000, 1.026680, 0.000000;;, - 247;3;-0.000000, 1.026680, 0.000000;;, - 248;3;-0.000000, 1.026680, 0.000000;;, - 249;3;-0.000000, 1.026680, 0.000000;;; - } - } - Animation { - {Armature_Bone_033} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 1;4;-0.992075,-0.125566, 0.000000, 0.000000;;, - 2;4;-0.991913,-0.126609, 0.000000, 0.000000;;, - 3;4;-0.991642,-0.128353, 0.000000, 0.000000;;, - 4;4;-0.991265,-0.130782, 0.000000, 0.000000;;, - 5;4;-0.990786,-0.133861, 0.000000, 0.000000;;, - 6;4;-0.990217,-0.137529, 0.000000, 0.000000;;, - 7;4;-0.989569,-0.141695, 0.000000, 0.000000;;, - 8;4;-0.988863,-0.146244, 0.000000, 0.000000;;, - 9;4;-0.988119,-0.151032, 0.000000, 0.000000;;, - 10;4;-0.987362,-0.155903, 0.000000, 0.000000;;, - 11;4;-0.986618,-0.160692, 0.000000, 0.000000;;, - 12;4;-0.985911,-0.165240, 0.000000, 0.000000;;, - 13;4;-0.985264,-0.169407, 0.000000, 0.000000;;, - 14;4;-0.984694,-0.173075, 0.000000, 0.000000;;, - 15;4;-0.984215,-0.176154, 0.000000, 0.000000;;, - 16;4;-0.983838,-0.178583, 0.000000, 0.000000;;, - 17;4;-0.983567,-0.180326, 0.000000, 0.000000;;, - 18;4;-0.983405,-0.181369, 0.000000, 0.000000;;, - 19;4;-0.983351,-0.181715, 0.000000, 0.000000;;, - 20;4;-0.983400,-0.181403, 0.000000, 0.000000;;, - 21;4;-0.983546,-0.180462, 0.000000, 0.000000;;, - 22;4;-0.983790,-0.178889, 0.000000, 0.000000;;, - 23;4;-0.984132,-0.176693, 0.000000, 0.000000;;, - 24;4;-0.984565,-0.173902, 0.000000, 0.000000;;, - 25;4;-0.985084,-0.170564, 0.000000, 0.000000;;, - 26;4;-0.985677,-0.166749, 0.000000, 0.000000;;, - 27;4;-0.986329,-0.162548, 0.000000, 0.000000;;, - 28;4;-0.987024,-0.158078, 0.000000, 0.000000;;, - 29;4;-0.987740,-0.153468, 0.000000, 0.000000;;, - 30;4;-0.988456,-0.148858, 0.000000, 0.000000;;, - 31;4;-0.989151,-0.144387, 0.000000, 0.000000;;, - 32;4;-0.989804,-0.140187, 0.000000, 0.000000;;, - 33;4;-0.990396,-0.136371, 0.000000, 0.000000;;, - 34;4;-0.990915,-0.133033, 0.000000, 0.000000;;, - 35;4;-0.991349,-0.130243, 0.000000, 0.000000;;, - 36;4;-0.991690,-0.128047, 0.000000, 0.000000;;, - 37;4;-0.991934,-0.126473, 0.000000, 0.000000;;, - 38;4;-0.992081,-0.125532, 0.000000, 0.000000;;, - 39;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 40;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 41;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 42;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 43;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 44;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 45;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 46;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 47;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 48;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 49;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 50;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 51;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 52;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 53;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 54;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 55;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 56;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 57;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 58;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 59;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 60;4;-0.992197,-0.124554,-0.000012,-0.000513;;, - 61;4;-0.992402,-0.122546,-0.000048,-0.002055;;, - 62;4;-0.992734,-0.119281,-0.000106,-0.004564;;, - 63;4;-0.993170,-0.115010,-0.000183,-0.007845;;, - 64;4;-0.993663,-0.110173,-0.000269,-0.011562;;, - 65;4;-0.994156,-0.105335,-0.000356,-0.015279;;, - 66;4;-0.994591,-0.101065,-0.000432,-0.018560;;, - 67;4;-0.994924,-0.097800,-0.000490,-0.021069;;, - 68;4;-0.995129,-0.095792,-0.000526,-0.022612;;, - 69;4;-0.995197,-0.095124,-0.000538,-0.023124;;, - 70;4;-0.995189,-0.095198,-0.000537,-0.023068;;, - 71;4;-0.995167,-0.095420,-0.000533,-0.022897;;, - 72;4;-0.995129,-0.095792,-0.000526,-0.022612;;, - 73;4;-0.995075,-0.096313,-0.000517,-0.022211;;, - 74;4;-0.995007,-0.096984,-0.000505,-0.021696;;, - 75;4;-0.994924,-0.097800,-0.000490,-0.021069;;, - 76;4;-0.994826,-0.098757,-0.000473,-0.020333;;, - 77;4;-0.994715,-0.099848,-0.000454,-0.019495;;, - 78;4;-0.994591,-0.101065,-0.000432,-0.018560;;, - 79;4;-0.994456,-0.102394,-0.000408,-0.017539;;, - 80;4;-0.994310,-0.103823,-0.000383,-0.016441;;, - 81;4;-0.994156,-0.105335,-0.000356,-0.015279;;, - 82;4;-0.993995,-0.106911,-0.000327,-0.014068;;, - 83;4;-0.993830,-0.108531,-0.000298,-0.012824;;, - 84;4;-0.993663,-0.110173,-0.000269,-0.011562;;, - 85;4;-0.993495,-0.111815,-0.000240,-0.010301;;, - 86;4;-0.993330,-0.113435,-0.000211,-0.009056;;, - 87;4;-0.993170,-0.115010,-0.000183,-0.007845;;, - 88;4;-0.993016,-0.116522,-0.000156,-0.006684;;, - 89;4;-0.992870,-0.117951,-0.000130,-0.005586;;, - 90;4;-0.992734,-0.119281,-0.000106,-0.004564;;, - 91;4;-0.992610,-0.120497,-0.000084,-0.003629;;, - 92;4;-0.992499,-0.121589,-0.000065,-0.002791;;, - 93;4;-0.992402,-0.122546,-0.000048,-0.002055;;, - 94;4;-0.992318,-0.123362,-0.000033,-0.001428;;, - 95;4;-0.992250,-0.124032,-0.000021,-0.000913;;, - 96;4;-0.992197,-0.124554,-0.000012,-0.000513;;, - 97;4;-0.992159,-0.124926,-0.000005,-0.000227;;, - 98;4;-0.992136,-0.125148,-0.000001,-0.000056;;, - 99;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 100;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 101;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 102;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 103;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 104;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 105;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 106;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 107;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 108;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 109;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 110;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 111;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 112;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 113;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 114;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 115;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 116;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 117;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 118;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 119;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 120;4;-0.927564,-0.028398,-0.000000, 0.000000;;, - 121;4;-0.745705, 0.244322,-0.000000, 0.000000;;, - 122;4;-0.512200, 0.594492,-0.000000, 0.000000;;, - 123;4;-0.330341, 0.867212,-0.000000, 0.000000;;, - 124;4;-0.265777, 0.964035,-0.000000, 0.000000;;, - 125;4;-0.322534, 0.911755, 0.017574,-0.003845;;, - 126;4;-0.482401, 0.764499, 0.067074,-0.014674;;, - 127;4;-0.687670, 0.575424, 0.130631,-0.028579;;, - 128;4;-0.847538, 0.428169, 0.180131,-0.039409;;, - 129;4;-0.904295, 0.375889, 0.197705,-0.043254;;, - 130;4;-0.861244, 0.423056, 0.183864,-0.040226;;, - 131;4;-0.739984, 0.555910, 0.144877,-0.031696;;, - 132;4;-0.584287, 0.726495, 0.094819,-0.020744;;, - 133;4;-0.463027, 0.859350, 0.055833,-0.012215;;, - 134;4;-0.419977, 0.906517, 0.041991,-0.009187;;, - 135;4;-0.468199, 0.816668, 0.060015,-0.013130;;, - 136;4;-0.604025, 0.563593, 0.110782,-0.024237;;, - 137;4;-0.778424, 0.238647, 0.175967,-0.038498;;, - 138;4;-0.914250,-0.014428, 0.226734,-0.049605;;, - 139;4;-0.962472,-0.104276, 0.244758,-0.053548;;, - 140;4;-0.962472,-0.104276, 0.244758,-0.053548;;, - 141;4;-0.962472,-0.104276, 0.244758,-0.053548;;, - 142;4;-0.962472,-0.104276, 0.244758,-0.053548;;, - 143;4;-0.962472,-0.104276, 0.244758,-0.053548;;, - 144;4;-0.962472,-0.104276, 0.244758,-0.053548;;, - 145;4;-0.965108,-0.106138, 0.223002,-0.048788;;, - 146;4;-0.972534,-0.111382, 0.161721,-0.035381;;, - 147;4;-0.982067,-0.118115, 0.083037,-0.018167;;, - 148;4;-0.989493,-0.123359, 0.021756,-0.004760;;, - 149;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 150;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 151;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 152;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 153;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 154;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 155;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 156;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 157;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 158;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 159;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 160;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 161;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 162;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 163;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 164;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 165;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 166;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 167;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 168;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 169;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 170;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 171;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 172;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 173;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 174;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 175;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 176;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 177;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 178;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 179;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 180;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 181;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 182;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 183;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 184;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 185;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 186;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 187;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 188;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 189;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 190;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 191;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 192;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 193;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 194;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 195;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 196;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 197;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 198;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 199;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 200;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 201;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 202;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 203;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 204;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 205;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 206;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 207;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 208;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 209;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 210;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 211;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 212;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 213;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 214;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 215;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 216;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 217;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 218;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 219;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 220;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 221;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 222;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 223;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 224;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 225;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 226;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 227;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 228;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 229;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 230;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 231;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 232;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 233;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 234;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 235;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 236;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 237;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 238;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 239;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 240;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 241;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 242;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 243;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 244;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 245;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 246;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 247;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 248;4;-0.992129,-0.125221, 0.000000, 0.000000;;, - 249;4;-0.992129,-0.125221, 0.000000, 0.000000;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3; 0.000000, 2.406489, 0.000000;;, - 1;3; 0.000000, 2.406489, 0.000000;;, - 2;3;-0.000000, 2.406489, 0.000000;;, - 3;3;-0.000000, 2.406489, 0.000000;;, - 4;3; 0.000000, 2.406489,-0.000000;;, - 5;3; 0.000000, 2.406489,-0.000000;;, - 6;3; 0.000000, 2.406489, 0.000000;;, - 7;3; 0.000000, 2.406489,-0.000000;;, - 8;3;-0.000000, 2.406489,-0.000000;;, - 9;3; 0.000000, 2.406489, 0.000000;;, - 10;3; 0.000000, 2.406489,-0.000000;;, - 11;3; 0.000000, 2.406489,-0.000000;;, - 12;3; 0.000000, 2.406489, 0.000000;;, - 13;3; 0.000000, 2.406489, 0.000000;;, - 14;3; 0.000000, 2.406489,-0.000000;;, - 15;3; 0.000000, 2.406489,-0.000000;;, - 16;3; 0.000000, 2.406489, 0.000000;;, - 17;3; 0.000000, 2.406489,-0.000000;;, - 18;3; 0.000000, 2.406489, 0.000000;;, - 19;3; 0.000000, 2.406489, 0.000000;;, - 20;3;-0.000000, 2.406489,-0.000000;;, - 21;3;-0.000000, 2.406489, 0.000000;;, - 22;3; 0.000000, 2.406489, 0.000000;;, - 23;3;-0.000000, 2.406489,-0.000000;;, - 24;3; 0.000000, 2.406489, 0.000000;;, - 25;3; 0.000000, 2.406489, 0.000000;;, - 26;3; 0.000000, 2.406489,-0.000000;;, - 27;3; 0.000000, 2.406489,-0.000000;;, - 28;3; 0.000000, 2.406489, 0.000000;;, - 29;3; 0.000000, 2.406489, 0.000000;;, - 30;3; 0.000000, 2.406489,-0.000000;;, - 31;3;-0.000000, 2.406489, 0.000000;;, - 32;3; 0.000000, 2.406489, 0.000000;;, - 33;3; 0.000000, 2.406489, 0.000000;;, - 34;3;-0.000000, 2.406489,-0.000000;;, - 35;3; 0.000000, 2.406489, 0.000000;;, - 36;3; 0.000000, 2.406489, 0.000000;;, - 37;3; 0.000000, 2.406489,-0.000000;;, - 38;3; 0.000000, 2.406489,-0.000000;;, - 39;3; 0.000000, 2.406489, 0.000000;;, - 40;3; 0.000000, 2.406489,-0.000000;;, - 41;3; 0.000000, 2.406489,-0.000000;;, - 42;3;-0.000000, 2.406489,-0.000000;;, - 43;3; 0.000000, 2.406489, 0.000000;;, - 44;3; 0.000000, 2.406489,-0.000000;;, - 45;3;-0.000000, 2.406489, 0.000000;;, - 46;3; 0.000000, 2.406489, 0.000000;;, - 47;3; 0.000000, 2.406489,-0.000000;;, - 48;3; 0.000000, 2.406489, 0.000000;;, - 49;3; 0.000000, 2.406489,-0.000000;;, - 50;3; 0.000000, 2.406488,-0.000000;;, - 51;3;-0.000000, 2.406489,-0.000000;;, - 52;3;-0.000000, 2.406489,-0.000000;;, - 53;3; 0.000000, 2.406489, 0.000000;;, - 54;3; 0.000000, 2.406489, 0.000000;;, - 55;3; 0.000000, 2.406489, 0.000000;;, - 56;3;-0.000000, 2.406489, 0.000000;;, - 57;3;-0.000000, 2.406489,-0.000000;;, - 58;3;-0.000000, 2.406489, 0.000000;;, - 59;3; 0.000000, 2.406489, 0.000000;;, - 60;3;-0.000000, 2.406489, 0.000000;;, - 61;3;-0.000000, 2.406489,-0.000000;;, - 62;3; 0.000000, 2.406489,-0.000000;;, - 63;3; 0.000000, 2.406489, 0.000000;;, - 64;3;-0.000000, 2.406489, 0.000000;;, - 65;3;-0.000000, 2.406489,-0.000000;;, - 66;3;-0.000000, 2.406489, 0.000000;;, - 67;3; 0.000000, 2.406489, 0.000000;;, - 68;3; 0.000000, 2.406489,-0.000000;;, - 69;3; 0.000000, 2.406489, 0.000000;;, - 70;3;-0.000000, 2.406489, 0.000000;;, - 71;3; 0.000000, 2.406489, 0.000000;;, - 72;3; 0.000000, 2.406489,-0.000000;;, - 73;3;-0.000000, 2.406489,-0.000000;;, - 74;3;-0.000000, 2.406489,-0.000000;;, - 75;3;-0.000000, 2.406489,-0.000000;;, - 76;3;-0.000000, 2.406489, 0.000000;;, - 77;3;-0.000000, 2.406489, 0.000000;;, - 78;3;-0.000000, 2.406489, 0.000000;;, - 79;3; 0.000000, 2.406489,-0.000000;;, - 80;3; 0.000000, 2.406489, 0.000000;;, - 81;3; 0.000000, 2.406489,-0.000000;;, - 82;3; 0.000000, 2.406489,-0.000000;;, - 83;3;-0.000000, 2.406489, 0.000000;;, - 84;3; 0.000000, 2.406489, 0.000000;;, - 85;3; 0.000000, 2.406489,-0.000000;;, - 86;3; 0.000000, 2.406489, 0.000000;;, - 87;3;-0.000000, 2.406489, 0.000000;;, - 88;3; 0.000000, 2.406489,-0.000000;;, - 89;3; 0.000000, 2.406489, 0.000000;;, - 90;3; 0.000000, 2.406489, 0.000000;;, - 91;3;-0.000000, 2.406489,-0.000000;;, - 92;3;-0.000000, 2.406489,-0.000000;;, - 93;3; 0.000000, 2.406488, 0.000000;;, - 94;3;-0.000000, 2.406489,-0.000000;;, - 95;3;-0.000000, 2.406489, 0.000000;;, - 96;3;-0.000000, 2.406488, 0.000000;;, - 97;3; 0.000000, 2.406489,-0.000000;;, - 98;3;-0.000000, 2.406489,-0.000000;;, - 99;3; 0.000000, 2.406489, 0.000000;;, - 100;3;-0.000000, 2.406489,-0.000000;;, - 101;3; 0.000000, 2.406489, 0.000000;;, - 102;3;-0.000000, 2.406489,-0.000000;;, - 103;3;-0.000000, 2.406489,-0.000000;;, - 104;3; 0.000000, 2.406489,-0.000000;;, - 105;3; 0.000000, 2.406489,-0.000000;;, - 106;3; 0.000000, 2.406489,-0.000000;;, - 107;3; 0.000000, 2.406489, 0.000000;;, - 108;3; 0.000000, 2.406489, 0.000000;;, - 109;3; 0.000000, 2.406489, 0.000000;;, - 110;3; 0.000000, 2.406489, 0.000000;;, - 111;3;-0.000000, 2.406489,-0.000000;;, - 112;3; 0.000000, 2.406489,-0.000000;;, - 113;3;-0.000000, 2.406488, 0.000000;;, - 114;3;-0.000000, 2.406489, 0.000000;;, - 115;3; 0.000000, 2.406489,-0.000000;;, - 116;3; 0.000000, 2.406489,-0.000000;;, - 117;3; 0.000000, 2.406489, 0.000000;;, - 118;3;-0.000000, 2.406489, 0.000000;;, - 119;3; 0.000000, 2.406489, 0.000000;;, - 120;3; 0.000000, 2.406489, 0.000000;;, - 121;3;-0.000000, 2.406489,-0.000000;;, - 122;3;-0.000000, 2.406489,-0.000000;;, - 123;3; 0.000000, 2.406489, 0.000000;;, - 124;3; 0.000000, 2.406489,-0.000000;;, - 125;3;-0.000000, 2.406488, 0.000000;;, - 126;3; 0.000000, 2.406489,-0.000000;;, - 127;3; 0.000000, 2.406489,-0.000000;;, - 128;3;-0.000000, 2.406489, 0.000000;;, - 129;3; 0.000000, 2.406489,-0.000000;;, - 130;3; 0.000000, 2.406489,-0.000000;;, - 131;3;-0.000000, 2.406489,-0.000000;;, - 132;3;-0.000000, 2.406489,-0.000000;;, - 133;3; 0.000000, 2.406489,-0.000000;;, - 134;3; 0.000000, 2.406489,-0.000000;;, - 135;3;-0.000000, 2.406489, 0.000000;;, - 136;3;-0.000000, 2.406489,-0.000000;;, - 137;3; 0.000000, 2.406489,-0.000000;;, - 138;3;-0.000000, 2.406489,-0.000000;;, - 139;3; 0.000000, 2.406489, 0.000000;;, - 140;3;-0.000000, 2.406489, 0.000000;;, - 141;3; 0.000000, 2.406489, 0.000000;;, - 142;3;-0.000000, 2.406489, 0.000000;;, - 143;3; 0.000000, 2.406489, 0.000000;;, - 144;3; 0.000000, 2.406489, 0.000000;;, - 145;3;-0.000000, 2.406489,-0.000000;;, - 146;3; 0.000000, 2.406489, 0.000000;;, - 147;3; 0.000000, 2.406489,-0.000000;;, - 148;3;-0.000000, 2.406489, 0.000000;;, - 149;3; 0.000000, 2.406489, 0.000000;;, - 150;3; 0.000000, 2.406489, 0.000000;;, - 151;3; 0.000000, 2.406489, 0.000000;;, - 152;3; 0.000000, 2.406489, 0.000000;;, - 153;3; 0.000000, 2.406489, 0.000000;;, - 154;3; 0.000000, 2.406489, 0.000000;;, - 155;3; 0.000000, 2.406489, 0.000000;;, - 156;3; 0.000000, 2.406489, 0.000000;;, - 157;3; 0.000000, 2.406489, 0.000000;;, - 158;3; 0.000000, 2.406489, 0.000000;;, - 159;3; 0.000000, 2.406489, 0.000000;;, - 160;3; 0.000000, 2.406489, 0.000000;;, - 161;3; 0.000000, 2.406489, 0.000000;;, - 162;3; 0.000000, 2.406489, 0.000000;;, - 163;3; 0.000000, 2.406489, 0.000000;;, - 164;3; 0.000000, 2.406489, 0.000000;;, - 165;3; 0.000000, 2.406489, 0.000000;;, - 166;3; 0.000000, 2.406489, 0.000000;;, - 167;3; 0.000000, 2.406489, 0.000000;;, - 168;3; 0.000000, 2.406489, 0.000000;;, - 169;3; 0.000000, 2.406489, 0.000000;;, - 170;3; 0.000000, 2.406489, 0.000000;;, - 171;3; 0.000000, 2.406489, 0.000000;;, - 172;3; 0.000000, 2.406489, 0.000000;;, - 173;3; 0.000000, 2.406489, 0.000000;;, - 174;3; 0.000000, 2.406489, 0.000000;;, - 175;3; 0.000000, 2.406489, 0.000000;;, - 176;3; 0.000000, 2.406489, 0.000000;;, - 177;3; 0.000000, 2.406489, 0.000000;;, - 178;3; 0.000000, 2.406489, 0.000000;;, - 179;3; 0.000000, 2.406489, 0.000000;;, - 180;3; 0.000000, 2.406489, 0.000000;;, - 181;3; 0.000000, 2.406489, 0.000000;;, - 182;3; 0.000000, 2.406489, 0.000000;;, - 183;3; 0.000000, 2.406489, 0.000000;;, - 184;3; 0.000000, 2.406489, 0.000000;;, - 185;3; 0.000000, 2.406489, 0.000000;;, - 186;3; 0.000000, 2.406489, 0.000000;;, - 187;3; 0.000000, 2.406489, 0.000000;;, - 188;3; 0.000000, 2.406489, 0.000000;;, - 189;3; 0.000000, 2.406489, 0.000000;;, - 190;3; 0.000000, 2.406489, 0.000000;;, - 191;3; 0.000000, 2.406489, 0.000000;;, - 192;3; 0.000000, 2.406489, 0.000000;;, - 193;3; 0.000000, 2.406489, 0.000000;;, - 194;3; 0.000000, 2.406489, 0.000000;;, - 195;3; 0.000000, 2.406489, 0.000000;;, - 196;3; 0.000000, 2.406489, 0.000000;;, - 197;3; 0.000000, 2.406489, 0.000000;;, - 198;3; 0.000000, 2.406489, 0.000000;;, - 199;3; 0.000000, 2.406489, 0.000000;;, - 200;3; 0.000000, 2.406489, 0.000000;;, - 201;3; 0.000000, 2.406489, 0.000000;;, - 202;3; 0.000000, 2.406489, 0.000000;;, - 203;3; 0.000000, 2.406489, 0.000000;;, - 204;3; 0.000000, 2.406489, 0.000000;;, - 205;3; 0.000000, 2.406489, 0.000000;;, - 206;3; 0.000000, 2.406489, 0.000000;;, - 207;3; 0.000000, 2.406489, 0.000000;;, - 208;3; 0.000000, 2.406489, 0.000000;;, - 209;3; 0.000000, 2.406489, 0.000000;;, - 210;3; 0.000000, 2.406489, 0.000000;;, - 211;3; 0.000000, 2.406489, 0.000000;;, - 212;3; 0.000000, 2.406489, 0.000000;;, - 213;3; 0.000000, 2.406489, 0.000000;;, - 214;3; 0.000000, 2.406489, 0.000000;;, - 215;3; 0.000000, 2.406489, 0.000000;;, - 216;3; 0.000000, 2.406489, 0.000000;;, - 217;3; 0.000000, 2.406489, 0.000000;;, - 218;3; 0.000000, 2.406489, 0.000000;;, - 219;3; 0.000000, 2.406489, 0.000000;;, - 220;3; 0.000000, 2.406489, 0.000000;;, - 221;3; 0.000000, 2.406489, 0.000000;;, - 222;3; 0.000000, 2.406489, 0.000000;;, - 223;3; 0.000000, 2.406489, 0.000000;;, - 224;3; 0.000000, 2.406489, 0.000000;;, - 225;3; 0.000000, 2.406489, 0.000000;;, - 226;3; 0.000000, 2.406489, 0.000000;;, - 227;3; 0.000000, 2.406489, 0.000000;;, - 228;3; 0.000000, 2.406489, 0.000000;;, - 229;3; 0.000000, 2.406489, 0.000000;;, - 230;3; 0.000000, 2.406489, 0.000000;;, - 231;3; 0.000000, 2.406489, 0.000000;;, - 232;3; 0.000000, 2.406489, 0.000000;;, - 233;3; 0.000000, 2.406489, 0.000000;;, - 234;3; 0.000000, 2.406489, 0.000000;;, - 235;3; 0.000000, 2.406489, 0.000000;;, - 236;3; 0.000000, 2.406489, 0.000000;;, - 237;3; 0.000000, 2.406489, 0.000000;;, - 238;3; 0.000000, 2.406489, 0.000000;;, - 239;3; 0.000000, 2.406489, 0.000000;;, - 240;3; 0.000000, 2.406489, 0.000000;;, - 241;3; 0.000000, 2.406489, 0.000000;;, - 242;3; 0.000000, 2.406489, 0.000000;;, - 243;3; 0.000000, 2.406489, 0.000000;;, - 244;3; 0.000000, 2.406489, 0.000000;;, - 245;3; 0.000000, 2.406489, 0.000000;;, - 246;3; 0.000000, 2.406489, 0.000000;;, - 247;3; 0.000000, 2.406489, 0.000000;;, - 248;3; 0.000000, 2.406489, 0.000000;;, - 249;3; 0.000000, 2.406489, 0.000000;;; - } - } - Animation { - {Armature_Bone_037} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 1;4;-0.994188,-0.107614, 0.000000, 0.000000;;, - 2;4;-0.994253,-0.106869, 0.000000, 0.000000;;, - 3;4;-0.994363,-0.105623, 0.000000, 0.000000;;, - 4;4;-0.994516,-0.103888, 0.000000, 0.000000;;, - 5;4;-0.994710,-0.101689, 0.000000, 0.000000;;, - 6;4;-0.994940,-0.099069, 0.000000, 0.000000;;, - 7;4;-0.995202,-0.096092, 0.000000, 0.000000;;, - 8;4;-0.995488,-0.092843, 0.000000, 0.000000;;, - 9;4;-0.995789,-0.089422, 0.000000, 0.000000;;, - 10;4;-0.996096,-0.085943, 0.000000, 0.000000;;, - 11;4;-0.996397,-0.082522, 0.000000, 0.000000;;, - 12;4;-0.996683,-0.079273, 0.000000, 0.000000;;, - 13;4;-0.996945,-0.076297, 0.000000, 0.000000;;, - 14;4;-0.997176,-0.073677, 0.000000, 0.000000;;, - 15;4;-0.997369,-0.071478, 0.000000, 0.000000;;, - 16;4;-0.997522,-0.069742, 0.000000, 0.000000;;, - 17;4;-0.997632,-0.068497, 0.000000, 0.000000;;, - 18;4;-0.997697,-0.067752, 0.000000, 0.000000;;, - 19;4;-0.997719,-0.067505, 0.000000, 0.000000;;, - 20;4;-0.997699,-0.067728, 0.000000, 0.000000;;, - 21;4;-0.997640,-0.068400, 0.000000, 0.000000;;, - 22;4;-0.997541,-0.069524, 0.000000, 0.000000;;, - 23;4;-0.997403,-0.071092, 0.000000, 0.000000;;, - 24;4;-0.997228,-0.073086, 0.000000, 0.000000;;, - 25;4;-0.997018,-0.075470, 0.000000, 0.000000;;, - 26;4;-0.996778,-0.078196, 0.000000, 0.000000;;, - 27;4;-0.996514,-0.081196, 0.000000, 0.000000;;, - 28;4;-0.996233,-0.084390, 0.000000, 0.000000;;, - 29;4;-0.995943,-0.087683, 0.000000, 0.000000;;, - 30;4;-0.995653,-0.090976, 0.000000, 0.000000;;, - 31;4;-0.995372,-0.094169, 0.000000, 0.000000;;, - 32;4;-0.995107,-0.097170, 0.000000, 0.000000;;, - 33;4;-0.994867,-0.099895, 0.000000, 0.000000;;, - 34;4;-0.994657,-0.102280, 0.000000, 0.000000;;, - 35;4;-0.994482,-0.104273, 0.000000, 0.000000;;, - 36;4;-0.994344,-0.105842, 0.000000, 0.000000;;, - 37;4;-0.994245,-0.106966, 0.000000, 0.000000;;, - 38;4;-0.994186,-0.107638, 0.000000, 0.000000;;, - 39;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 40;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 41;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 42;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 43;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 44;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 45;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 46;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 47;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 48;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 49;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 50;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 51;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 52;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 53;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 54;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 55;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 56;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 57;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 58;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 59;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 60;4;-0.994230,-0.107053, 0.000129,-0.000606;;, - 61;4;-0.994423,-0.104622, 0.000519,-0.002429;;, - 62;4;-0.994736,-0.100669, 0.001152,-0.005393;;, - 63;4;-0.995146,-0.095499, 0.001979,-0.009270;;, - 64;4;-0.995610,-0.089643, 0.002917,-0.013663;;, - 65;4;-0.996075,-0.083787, 0.003855,-0.018055;;, - 66;4;-0.996485,-0.078617, 0.004683,-0.021932;;, - 67;4;-0.996798,-0.074664, 0.005316,-0.024896;;, - 68;4;-0.996991,-0.072233, 0.005705,-0.026719;;, - 69;4;-0.997055,-0.071426, 0.005834,-0.027325;;, - 70;4;-0.997048,-0.071515, 0.005820,-0.027258;;, - 71;4;-0.997026,-0.071783, 0.005777,-0.027057;;, - 72;4;-0.996991,-0.072233, 0.005705,-0.026719;;, - 73;4;-0.996941,-0.072865, 0.005604,-0.026246;;, - 74;4;-0.996876,-0.073676, 0.005474,-0.025637;;, - 75;4;-0.996798,-0.074664, 0.005316,-0.024896;;, - 76;4;-0.996706,-0.075823, 0.005130,-0.024027;;, - 77;4;-0.996601,-0.077144, 0.004918,-0.023036;;, - 78;4;-0.996485,-0.078617, 0.004683,-0.021932;;, - 79;4;-0.996357,-0.080227, 0.004425,-0.020725;;, - 80;4;-0.996220,-0.081956, 0.004148,-0.019427;;, - 81;4;-0.996075,-0.083787, 0.003855,-0.018055;;, - 82;4;-0.995923,-0.085694, 0.003549,-0.016624;;, - 83;4;-0.995768,-0.087655, 0.003235,-0.015153;;, - 84;4;-0.995610,-0.089643, 0.002917,-0.013663;;, - 85;4;-0.995453,-0.091631, 0.002599,-0.012172;;, - 86;4;-0.995297,-0.093592, 0.002285,-0.010701;;, - 87;4;-0.995146,-0.095499, 0.001979,-0.009270;;, - 88;4;-0.995001,-0.097330, 0.001686,-0.007898;;, - 89;4;-0.994864,-0.099059, 0.001409,-0.006600;;, - 90;4;-0.994736,-0.100669, 0.001152,-0.005393;;, - 91;4;-0.994620,-0.102142, 0.000916,-0.004289;;, - 92;4;-0.994515,-0.103463, 0.000704,-0.003298;;, - 93;4;-0.994423,-0.104622, 0.000519,-0.002429;;, - 94;4;-0.994345,-0.105610, 0.000360,-0.001688;;, - 95;4;-0.994280,-0.106421, 0.000230,-0.001079;;, - 96;4;-0.994230,-0.107053, 0.000129,-0.000606;;, - 97;4;-0.994195,-0.107503, 0.000057,-0.000268;;, - 98;4;-0.994173,-0.107771, 0.000014,-0.000067;;, - 99;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 100;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 101;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 102;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 103;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 104;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 105;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 106;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 107;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 108;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 109;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 110;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 111;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 112;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 113;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 114;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 115;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 116;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 117;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 118;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 119;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 120;4;-0.993119,-0.081663,-0.000000, 0.000000;;, - 121;4;-0.990170,-0.007871,-0.000000,-0.000000;;, - 122;4;-0.986382, 0.086876,-0.000000,-0.000000;;, - 123;4;-0.983433, 0.160668,-0.000000,-0.000000;;, - 124;4;-0.982386, 0.186866,-0.000000,-0.000000;;, - 125;4;-0.982386, 0.186866,-0.000000,-0.000000;;, - 126;4;-0.982386, 0.186866,-0.000000,-0.000000;;, - 127;4;-0.982386, 0.186866,-0.000000,-0.000000;;, - 128;4;-0.982386, 0.186866,-0.000000,-0.000000;;, - 129;4;-0.982386, 0.186866,-0.000000,-0.000000;;, - 130;4;-0.975150, 0.208368, 0.000055, 0.005840;;, - 131;4;-0.954768, 0.268933, 0.000531, 0.022289;;, - 132;4;-0.928598, 0.346699, 0.002004, 0.043410;;, - 133;4;-0.908216, 0.407264, 0.004829, 0.059860;;, - 134;4;-0.900980, 0.428767, 0.008880, 0.065699;;, - 135;4;-0.906992, 0.418320, 0.017847, 0.065048;;, - 136;4;-0.924199, 0.384746, 0.034519, 0.062125;;, - 137;4;-0.947029, 0.330503, 0.053772, 0.055453;;, - 138;4;-0.966241, 0.266583, 0.068095, 0.044578;;, - 139;4;-0.975662, 0.204504, 0.073067, 0.030396;;, - 140;4;-0.978819, 0.130044, 0.065510, 0.008798;;, - 141;4;-0.980519, 0.031250, 0.044227,-0.022966;;, - 142;4;-0.981214,-0.067772, 0.016899,-0.056459;;, - 143;4;-0.981865,-0.136221,-0.004384,-0.080270;;, - 144;4;-0.983238,-0.159049,-0.011940,-0.088338;;, - 145;4;-0.985536,-0.154499,-0.010879,-0.080486;;, - 146;4;-0.988517,-0.141683,-0.007889,-0.058369;;, - 147;4;-0.991468,-0.125227,-0.004051,-0.029970;;, - 148;4;-0.993493,-0.112410,-0.001061,-0.007852;;, - 149;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 150;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 151;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 152;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 153;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 154;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 155;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 156;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 157;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 158;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 159;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 160;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 161;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 162;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 163;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 164;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 165;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 166;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 167;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 168;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 169;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 170;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 171;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 172;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 173;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 174;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 175;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 176;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 177;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 178;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 179;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 180;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 181;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 182;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 183;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 184;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 185;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 186;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 187;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 188;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 189;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 190;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 191;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 192;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 193;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 194;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 195;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 196;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 197;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 198;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 199;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 200;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 201;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 202;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 203;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 204;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 205;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 206;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 207;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 208;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 209;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 210;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 211;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 212;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 213;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 214;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 215;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 216;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 217;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 218;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 219;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 220;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 221;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 222;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 223;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 224;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 225;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 226;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 227;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 228;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 229;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 230;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 231;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 232;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 233;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 234;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 235;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 236;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 237;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 238;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 239;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 240;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 241;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 242;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 243;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 244;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 245;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 246;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 247;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 248;4;-0.994166,-0.107860, 0.000000, 0.000000;;, - 249;4;-0.994166,-0.107860, 0.000000, 0.000000;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3;-0.000000, 2.366877, 0.000000;;, - 1;3;-0.000000, 2.366876, 0.000000;;, - 2;3; 0.000000, 2.366877, 0.000000;;, - 3;3; 0.000000, 2.366877, 0.000000;;, - 4;3;-0.000000, 2.366877, 0.000000;;, - 5;3; 0.000000, 2.366878, 0.000000;;, - 6;3; 0.000000, 2.366877, 0.000000;;, - 7;3; 0.000000, 2.366877,-0.000000;;, - 8;3;-0.000000, 2.366877,-0.000000;;, - 9;3; 0.000000, 2.366877,-0.000000;;, - 10;3; 0.000000, 2.366877, 0.000000;;, - 11;3; 0.000000, 2.366877, 0.000000;;, - 12;3; 0.000000, 2.366877,-0.000000;;, - 13;3;-0.000000, 2.366877,-0.000000;;, - 14;3; 0.000000, 2.366877,-0.000000;;, - 15;3; 0.000000, 2.366877, 0.000000;;, - 16;3; 0.000000, 2.366877,-0.000000;;, - 17;3; 0.000000, 2.366877,-0.000000;;, - 18;3;-0.000000, 2.366877,-0.000000;;, - 19;3; 0.000000, 2.366877,-0.000000;;, - 20;3;-0.000000, 2.366877,-0.000000;;, - 21;3; 0.000000, 2.366877,-0.000000;;, - 22;3; 0.000000, 2.366877, 0.000000;;, - 23;3;-0.000000, 2.366876, 0.000000;;, - 24;3; 0.000000, 2.366877,-0.000000;;, - 25;3; 0.000000, 2.366877,-0.000000;;, - 26;3; 0.000000, 2.366877,-0.000000;;, - 27;3; 0.000000, 2.366877,-0.000000;;, - 28;3;-0.000000, 2.366877, 0.000000;;, - 29;3; 0.000000, 2.366877, 0.000000;;, - 30;3; 0.000000, 2.366877,-0.000000;;, - 31;3; 0.000000, 2.366877,-0.000000;;, - 32;3; 0.000000, 2.366877, 0.000000;;, - 33;3; 0.000000, 2.366877, 0.000000;;, - 34;3; 0.000000, 2.366877,-0.000000;;, - 35;3; 0.000000, 2.366877, 0.000000;;, - 36;3; 0.000000, 2.366877,-0.000000;;, - 37;3; 0.000000, 2.366877,-0.000000;;, - 38;3; 0.000000, 2.366877, 0.000000;;, - 39;3;-0.000000, 2.366877, 0.000000;;, - 40;3;-0.000000, 2.366877, 0.000000;;, - 41;3;-0.000000, 2.366877,-0.000000;;, - 42;3;-0.000000, 2.366877, 0.000000;;, - 43;3;-0.000000, 2.366877,-0.000000;;, - 44;3;-0.000000, 2.366877, 0.000000;;, - 45;3; 0.000000, 2.366877, 0.000000;;, - 46;3; 0.000000, 2.366877,-0.000000;;, - 47;3; 0.000000, 2.366877,-0.000000;;, - 48;3; 0.000000, 2.366877, 0.000000;;, - 49;3; 0.000000, 2.366877, 0.000000;;, - 50;3; 0.000000, 2.366877,-0.000000;;, - 51;3;-0.000000, 2.366877,-0.000000;;, - 52;3;-0.000000, 2.366877,-0.000000;;, - 53;3;-0.000000, 2.366877, 0.000000;;, - 54;3; 0.000000, 2.366877, 0.000000;;, - 55;3; 0.000000, 2.366877, 0.000000;;, - 56;3; 0.000000, 2.366877, 0.000000;;, - 57;3;-0.000000, 2.366877,-0.000000;;, - 58;3;-0.000000, 2.366877, 0.000000;;, - 59;3; 0.000000, 2.366877, 0.000000;;, - 60;3;-0.000000, 2.366877,-0.000000;;, - 61;3;-0.000000, 2.366877, 0.000000;;, - 62;3; 0.000000, 2.366877,-0.000000;;, - 63;3;-0.000000, 2.366877, 0.000000;;, - 64;3;-0.000000, 2.366877, 0.000000;;, - 65;3; 0.000000, 2.366877, 0.000000;;, - 66;3;-0.000000, 2.366877,-0.000000;;, - 67;3;-0.000000, 2.366877, 0.000000;;, - 68;3;-0.000000, 2.366876, 0.000000;;, - 69;3;-0.000000, 2.366876,-0.000000;;, - 70;3;-0.000000, 2.366877, 0.000000;;, - 71;3; 0.000000, 2.366877, 0.000000;;, - 72;3;-0.000000, 2.366877,-0.000000;;, - 73;3;-0.000000, 2.366877,-0.000000;;, - 74;3; 0.000000, 2.366877, 0.000000;;, - 75;3;-0.000000, 2.366876, 0.000000;;, - 76;3; 0.000000, 2.366877, 0.000000;;, - 77;3;-0.000000, 2.366877,-0.000000;;, - 78;3;-0.000000, 2.366876,-0.000000;;, - 79;3; 0.000000, 2.366876,-0.000000;;, - 80;3;-0.000000, 2.366877,-0.000000;;, - 81;3; 0.000000, 2.366878,-0.000000;;, - 82;3; 0.000000, 2.366877,-0.000000;;, - 83;3; 0.000000, 2.366876,-0.000000;;, - 84;3; 0.000000, 2.366876, 0.000000;;, - 85;3;-0.000000, 2.366876, 0.000000;;, - 86;3; 0.000000, 2.366877, 0.000000;;, - 87;3; 0.000000, 2.366877, 0.000000;;, - 88;3;-0.000000, 2.366877,-0.000000;;, - 89;3; 0.000000, 2.366878,-0.000000;;, - 90;3; 0.000000, 2.366877, 0.000000;;, - 91;3; 0.000000, 2.366877, 0.000000;;, - 92;3; 0.000000, 2.366876,-0.000000;;, - 93;3;-0.000000, 2.366877, 0.000000;;, - 94;3;-0.000000, 2.366877, 0.000000;;, - 95;3;-0.000000, 2.366877, 0.000000;;, - 96;3;-0.000000, 2.366877,-0.000000;;, - 97;3;-0.000000, 2.366876,-0.000000;;, - 98;3;-0.000000, 2.366876, 0.000000;;, - 99;3; 0.000000, 2.366877, 0.000000;;, - 100;3;-0.000000, 2.366877, 0.000000;;, - 101;3;-0.000000, 2.366877, 0.000000;;, - 102;3;-0.000000, 2.366877, 0.000000;;, - 103;3; 0.000000, 2.366877, 0.000000;;, - 104;3;-0.000000, 2.366877,-0.000000;;, - 105;3; 0.000000, 2.366877, 0.000000;;, - 106;3;-0.000000, 2.366877, 0.000000;;, - 107;3; 0.000001, 2.366877, 0.000000;;, - 108;3;-0.000000, 2.366876, 0.000000;;, - 109;3; 0.000000, 2.366877, 0.000000;;, - 110;3;-0.000000, 2.366877,-0.000000;;, - 111;3; 0.000000, 2.366877, 0.000000;;, - 112;3; 0.000000, 2.366877,-0.000000;;, - 113;3;-0.000000, 2.366877, 0.000000;;, - 114;3;-0.000000, 2.366877,-0.000000;;, - 115;3; 0.000000, 2.366877,-0.000000;;, - 116;3; 0.000000, 2.366877,-0.000000;;, - 117;3;-0.000000, 2.366876,-0.000000;;, - 118;3;-0.000000, 2.366877,-0.000000;;, - 119;3;-0.000000, 2.366877, 0.000000;;, - 120;3; 0.000000, 2.366878, 0.000000;;, - 121;3; 0.000000, 2.366877,-0.000000;;, - 122;3;-0.000000, 2.366876, 0.000000;;, - 123;3;-0.000000, 2.366877, 0.000000;;, - 124;3; 0.000000, 2.366877,-0.000000;;, - 125;3; 0.000000, 2.366877,-0.000000;;, - 126;3;-0.000000, 2.366877,-0.000000;;, - 127;3; 0.000000, 2.366877, 0.000000;;, - 128;3; 0.000000, 2.366877, 0.000000;;, - 129;3; 0.000000, 2.366876, 0.000000;;, - 130;3;-0.000000, 2.366876,-0.000000;;, - 131;3; 0.000000, 2.366876, 0.000000;;, - 132;3; 0.000000, 2.366877, 0.000000;;, - 133;3;-0.000000, 2.366877,-0.000000;;, - 134;3;-0.000000, 2.366877, 0.000000;;, - 135;3; 0.000000, 2.366877,-0.000000;;, - 136;3;-0.000000, 2.366877,-0.000000;;, - 137;3; 0.000000, 2.366877,-0.000000;;, - 138;3;-0.000000, 2.366877, 0.000000;;, - 139;3; 0.000000, 2.366876,-0.000000;;, - 140;3; 0.000000, 2.366876, 0.000000;;, - 141;3;-0.000000, 2.366877, 0.000000;;, - 142;3; 0.000000, 2.366877,-0.000000;;, - 143;3; 0.000000, 2.366877, 0.000000;;, - 144;3; 0.000000, 2.366877,-0.000000;;, - 145;3; 0.000000, 2.366876,-0.000000;;, - 146;3; 0.000000, 2.366877, 0.000000;;, - 147;3;-0.000000, 2.366876,-0.000000;;, - 148;3;-0.000000, 2.366877,-0.000000;;, - 149;3;-0.000000, 2.366877, 0.000000;;, - 150;3;-0.000000, 2.366877, 0.000000;;, - 151;3;-0.000000, 2.366877, 0.000000;;, - 152;3;-0.000000, 2.366877, 0.000000;;, - 153;3;-0.000000, 2.366877, 0.000000;;, - 154;3;-0.000000, 2.366877, 0.000000;;, - 155;3;-0.000000, 2.366877, 0.000000;;, - 156;3;-0.000000, 2.366877, 0.000000;;, - 157;3;-0.000000, 2.366877, 0.000000;;, - 158;3;-0.000000, 2.366877, 0.000000;;, - 159;3;-0.000000, 2.366877, 0.000000;;, - 160;3;-0.000000, 2.366877, 0.000000;;, - 161;3;-0.000000, 2.366877, 0.000000;;, - 162;3;-0.000000, 2.366877, 0.000000;;, - 163;3;-0.000000, 2.366877, 0.000000;;, - 164;3;-0.000000, 2.366877, 0.000000;;, - 165;3;-0.000000, 2.366877, 0.000000;;, - 166;3;-0.000000, 2.366877, 0.000000;;, - 167;3;-0.000000, 2.366877, 0.000000;;, - 168;3;-0.000000, 2.366877, 0.000000;;, - 169;3;-0.000000, 2.366877, 0.000000;;, - 170;3;-0.000000, 2.366877, 0.000000;;, - 171;3;-0.000000, 2.366877, 0.000000;;, - 172;3;-0.000000, 2.366877, 0.000000;;, - 173;3;-0.000000, 2.366877, 0.000000;;, - 174;3;-0.000000, 2.366877, 0.000000;;, - 175;3;-0.000000, 2.366877, 0.000000;;, - 176;3;-0.000000, 2.366877, 0.000000;;, - 177;3;-0.000000, 2.366877, 0.000000;;, - 178;3;-0.000000, 2.366877, 0.000000;;, - 179;3;-0.000000, 2.366877, 0.000000;;, - 180;3;-0.000000, 2.366877, 0.000000;;, - 181;3;-0.000000, 2.366877, 0.000000;;, - 182;3;-0.000000, 2.366877, 0.000000;;, - 183;3;-0.000000, 2.366877, 0.000000;;, - 184;3;-0.000000, 2.366877, 0.000000;;, - 185;3;-0.000000, 2.366877, 0.000000;;, - 186;3;-0.000000, 2.366877, 0.000000;;, - 187;3;-0.000000, 2.366877, 0.000000;;, - 188;3;-0.000000, 2.366877, 0.000000;;, - 189;3;-0.000000, 2.366877, 0.000000;;, - 190;3;-0.000000, 2.366877, 0.000000;;, - 191;3;-0.000000, 2.366877, 0.000000;;, - 192;3;-0.000000, 2.366877, 0.000000;;, - 193;3;-0.000000, 2.366877, 0.000000;;, - 194;3;-0.000000, 2.366877, 0.000000;;, - 195;3;-0.000000, 2.366877, 0.000000;;, - 196;3;-0.000000, 2.366877, 0.000000;;, - 197;3;-0.000000, 2.366877, 0.000000;;, - 198;3;-0.000000, 2.366877, 0.000000;;, - 199;3;-0.000000, 2.366877, 0.000000;;, - 200;3;-0.000000, 2.366877, 0.000000;;, - 201;3;-0.000000, 2.366877, 0.000000;;, - 202;3;-0.000000, 2.366877, 0.000000;;, - 203;3;-0.000000, 2.366877, 0.000000;;, - 204;3;-0.000000, 2.366877, 0.000000;;, - 205;3;-0.000000, 2.366877, 0.000000;;, - 206;3;-0.000000, 2.366877, 0.000000;;, - 207;3;-0.000000, 2.366877, 0.000000;;, - 208;3;-0.000000, 2.366877, 0.000000;;, - 209;3;-0.000000, 2.366877, 0.000000;;, - 210;3;-0.000000, 2.366877, 0.000000;;, - 211;3;-0.000000, 2.366877, 0.000000;;, - 212;3;-0.000000, 2.366877, 0.000000;;, - 213;3;-0.000000, 2.366877, 0.000000;;, - 214;3;-0.000000, 2.366877, 0.000000;;, - 215;3;-0.000000, 2.366877, 0.000000;;, - 216;3;-0.000000, 2.366877, 0.000000;;, - 217;3;-0.000000, 2.366877, 0.000000;;, - 218;3;-0.000000, 2.366877, 0.000000;;, - 219;3;-0.000000, 2.366877, 0.000000;;, - 220;3;-0.000000, 2.366877, 0.000000;;, - 221;3;-0.000000, 2.366877, 0.000000;;, - 222;3;-0.000000, 2.366877, 0.000000;;, - 223;3;-0.000000, 2.366877, 0.000000;;, - 224;3;-0.000000, 2.366877, 0.000000;;, - 225;3;-0.000000, 2.366877, 0.000000;;, - 226;3;-0.000000, 2.366877, 0.000000;;, - 227;3;-0.000000, 2.366877, 0.000000;;, - 228;3;-0.000000, 2.366877, 0.000000;;, - 229;3;-0.000000, 2.366877, 0.000000;;, - 230;3;-0.000000, 2.366877, 0.000000;;, - 231;3;-0.000000, 2.366877, 0.000000;;, - 232;3;-0.000000, 2.366877, 0.000000;;, - 233;3;-0.000000, 2.366877, 0.000000;;, - 234;3;-0.000000, 2.366877, 0.000000;;, - 235;3;-0.000000, 2.366877, 0.000000;;, - 236;3;-0.000000, 2.366877, 0.000000;;, - 237;3;-0.000000, 2.366877, 0.000000;;, - 238;3;-0.000000, 2.366877, 0.000000;;, - 239;3;-0.000000, 2.366877, 0.000000;;, - 240;3;-0.000000, 2.366877, 0.000000;;, - 241;3;-0.000000, 2.366877, 0.000000;;, - 242;3;-0.000000, 2.366877, 0.000000;;, - 243;3;-0.000000, 2.366877, 0.000000;;, - 244;3;-0.000000, 2.366877, 0.000000;;, - 245;3;-0.000000, 2.366877, 0.000000;;, - 246;3;-0.000000, 2.366877, 0.000000;;, - 247;3;-0.000000, 2.366877, 0.000000;;, - 248;3;-0.000000, 2.366877, 0.000000;;, - 249;3;-0.000000, 2.366877, 0.000000;;; - } - } - Animation { - {Armature_Bone_008} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 1;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 2;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 3;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 4;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 5;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 6;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 7;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 8;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 9;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 10;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 11;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 12;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 13;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 14;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 15;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 16;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 17;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 18;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 19;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 20;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 21;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 22;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 23;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 24;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 25;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 26;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 27;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 28;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 29;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 30;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 31;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 32;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 33;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 34;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 35;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 36;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 37;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 38;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 39;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 40;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 41;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 42;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 43;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 44;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 45;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 46;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 47;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 48;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 49;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 50;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 51;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 52;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 53;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 54;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 55;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 56;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 57;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 58;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 59;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 60;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 61;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 62;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 63;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 64;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 65;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 66;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 67;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 68;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 69;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 70;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 71;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 72;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 73;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 74;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 75;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 76;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 77;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 78;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 79;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 80;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 81;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 82;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 83;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 84;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 85;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 86;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 87;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 88;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 89;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 90;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 91;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 92;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 93;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 94;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 95;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 96;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 97;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 98;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 99;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 100;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 101;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 102;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 103;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 104;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 105;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 106;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 107;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 108;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 109;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 110;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 111;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 112;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 113;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 114;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 115;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 116;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 117;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 118;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 119;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 120;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 121;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 122;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 123;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 124;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 125;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 126;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 127;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 128;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 129;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 130;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 131;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 132;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 133;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 134;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 135;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 136;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 137;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 138;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 139;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 140;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 141;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 142;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 143;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 144;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 145;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 146;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 147;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 148;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 149;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 150;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 151;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 152;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 153;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 154;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 155;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 156;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 157;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 158;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 159;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 160;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 161;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 162;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 163;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 164;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 165;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 166;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 167;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 168;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 169;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 170;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 171;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 172;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 173;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 174;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 175;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 176;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 177;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 178;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 179;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 180;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 181;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 182;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 183;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 184;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 185;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 186;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 187;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 188;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 189;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 190;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 191;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 192;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 193;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 194;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 195;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 196;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 197;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 198;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 199;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 200;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 201;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 202;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 203;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 204;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 205;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 206;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 207;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 208;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 209;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 210;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 211;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 212;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 213;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 214;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 215;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 216;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 217;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 218;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 219;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 220;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 221;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 222;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 223;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 224;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 225;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 226;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 227;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 228;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 229;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 230;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 231;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 232;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 233;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 234;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 235;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 236;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 237;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 238;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 239;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 240;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 241;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 242;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 243;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 244;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 245;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 246;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 247;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 248;4;-0.988879, 0.000000, 0.000000,-0.148725;;, - 249;4;-0.988879, 0.000000, 0.000000,-0.148725;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3; 0.000000, 0.705560, 0.000000;;, - 1;3; 0.000000, 0.705560, 0.000000;;, - 2;3; 0.000000, 0.705560, 0.000000;;, - 3;3; 0.000000, 0.705560, 0.000000;;, - 4;3; 0.000000, 0.705560, 0.000000;;, - 5;3; 0.000000, 0.705560, 0.000000;;, - 6;3; 0.000000, 0.705560, 0.000000;;, - 7;3; 0.000000, 0.705560, 0.000000;;, - 8;3; 0.000000, 0.705560, 0.000000;;, - 9;3; 0.000000, 0.705560, 0.000000;;, - 10;3; 0.000000, 0.705560, 0.000000;;, - 11;3; 0.000000, 0.705560, 0.000000;;, - 12;3; 0.000000, 0.705560, 0.000000;;, - 13;3; 0.000000, 0.705560, 0.000000;;, - 14;3; 0.000000, 0.705560, 0.000000;;, - 15;3; 0.000000, 0.705560, 0.000000;;, - 16;3; 0.000000, 0.705560, 0.000000;;, - 17;3; 0.000000, 0.705560, 0.000000;;, - 18;3; 0.000000, 0.705560, 0.000000;;, - 19;3; 0.000000, 0.705560, 0.000000;;, - 20;3; 0.000000, 0.705560, 0.000000;;, - 21;3; 0.000000, 0.705560, 0.000000;;, - 22;3; 0.000000, 0.705560, 0.000000;;, - 23;3; 0.000000, 0.705560, 0.000000;;, - 24;3; 0.000000, 0.705560, 0.000000;;, - 25;3; 0.000000, 0.705560, 0.000000;;, - 26;3; 0.000000, 0.705560, 0.000000;;, - 27;3; 0.000000, 0.705560, 0.000000;;, - 28;3; 0.000000, 0.705560, 0.000000;;, - 29;3; 0.000000, 0.705560, 0.000000;;, - 30;3; 0.000000, 0.705560, 0.000000;;, - 31;3; 0.000000, 0.705560, 0.000000;;, - 32;3; 0.000000, 0.705560, 0.000000;;, - 33;3; 0.000000, 0.705560, 0.000000;;, - 34;3; 0.000000, 0.705560, 0.000000;;, - 35;3; 0.000000, 0.705560, 0.000000;;, - 36;3; 0.000000, 0.705560, 0.000000;;, - 37;3; 0.000000, 0.705560, 0.000000;;, - 38;3; 0.000000, 0.705560, 0.000000;;, - 39;3; 0.000000, 0.705560, 0.000000;;, - 40;3; 0.000000, 0.705560, 0.000000;;, - 41;3; 0.000000, 0.705559, 0.000000;;, - 42;3;-0.000000, 0.705560, 0.000000;;, - 43;3; 0.000000, 0.705560,-0.000000;;, - 44;3; 0.000000, 0.705560, 0.000000;;, - 45;3; 0.000000, 0.705560,-0.000000;;, - 46;3; 0.000000, 0.705559, 0.000000;;, - 47;3;-0.000000, 0.705560, 0.000000;;, - 48;3; 0.000000, 0.705560,-0.000000;;, - 49;3; 0.000000, 0.705560, 0.000000;;, - 50;3;-0.000000, 0.705559, 0.000000;;, - 51;3; 0.000000, 0.705560,-0.000000;;, - 52;3;-0.000000, 0.705560, 0.000000;;, - 53;3; 0.000000, 0.705560,-0.000000;;, - 54;3; 0.000000, 0.705560, 0.000000;;, - 55;3; 0.000000, 0.705560,-0.000000;;, - 56;3;-0.000000, 0.705560, 0.000000;;, - 57;3; 0.000000, 0.705559, 0.000000;;, - 58;3;-0.000000, 0.705560, 0.000000;;, - 59;3; 0.000000, 0.705560, 0.000000;;, - 60;3; 0.000000, 0.705560,-0.000000;;, - 61;3; 0.000000, 0.705560, 0.000000;;, - 62;3; 0.000000, 0.705560, 0.000000;;, - 63;3; 0.000000, 0.705560, 0.000000;;, - 64;3; 0.000000, 0.705560,-0.000000;;, - 65;3;-0.000000, 0.705560, 0.000000;;, - 66;3; 0.000000, 0.705560, 0.000000;;, - 67;3;-0.000000, 0.705560, 0.000000;;, - 68;3; 0.000000, 0.705559, 0.000000;;, - 69;3; 0.000000, 0.705560, 0.000000;;, - 70;3; 0.000000, 0.705560, 0.000000;;, - 71;3;-0.000000, 0.705560, 0.000000;;, - 72;3;-0.000000, 0.705560, 0.000000;;, - 73;3;-0.000000, 0.705560, 0.000000;;, - 74;3;-0.000000, 0.705560, 0.000000;;, - 75;3;-0.000000, 0.705560, 0.000000;;, - 76;3; 0.000000, 0.705559, 0.000000;;, - 77;3;-0.000000, 0.705560, 0.000000;;, - 78;3; 0.000000, 0.705560, 0.000000;;, - 79;3;-0.000000, 0.705559, 0.000000;;, - 80;3; 0.000000, 0.705560, 0.000000;;, - 81;3;-0.000000, 0.705560, 0.000000;;, - 82;3; 0.000000, 0.705560, 0.000000;;, - 83;3; 0.000000, 0.705560, 0.000000;;, - 84;3; 0.000000, 0.705560,-0.000000;;, - 85;3;-0.000000, 0.705560, 0.000000;;, - 86;3;-0.000000, 0.705560, 0.000000;;, - 87;3; 0.000000, 0.705560,-0.000000;;, - 88;3; 0.000000, 0.705560, 0.000000;;, - 89;3; 0.000000, 0.705560, 0.000000;;, - 90;3; 0.000000, 0.705560, 0.000000;;, - 91;3; 0.000000, 0.705560, 0.000000;;, - 92;3; 0.000000, 0.705560, 0.000000;;, - 93;3; 0.000000, 0.705560, 0.000000;;, - 94;3; 0.000000, 0.705560, 0.000000;;, - 95;3; 0.000000, 0.705560, 0.000000;;, - 96;3; 0.000000, 0.705560,-0.000000;;, - 97;3; 0.000000, 0.705560,-0.000000;;, - 98;3; 0.000000, 0.705560, 0.000000;;, - 99;3; 0.000000, 0.705560, 0.000000;;, - 100;3;-0.000000, 0.705560,-0.000000;;, - 101;3; 0.000000, 0.705560,-0.000000;;, - 102;3; 0.000000, 0.705559, 0.000000;;, - 103;3;-0.000000, 0.705560,-0.000000;;, - 104;3;-0.000000, 0.705559,-0.000000;;, - 105;3;-0.000000, 0.705560,-0.000000;;, - 106;3; 0.000000, 0.705560, 0.000000;;, - 107;3;-0.000000, 0.705559,-0.000000;;, - 108;3; 0.000000, 0.705560,-0.000000;;, - 109;3; 0.000000, 0.705559,-0.000000;;, - 110;3;-0.000000, 0.705559, 0.000000;;, - 111;3; 0.000000, 0.705560,-0.000000;;, - 112;3; 0.000000, 0.705560, 0.000000;;, - 113;3; 0.000000, 0.705560,-0.000000;;, - 114;3;-0.000000, 0.705559, 0.000000;;, - 115;3; 0.000000, 0.705560, 0.000000;;, - 116;3;-0.000000, 0.705560,-0.000000;;, - 117;3; 0.000000, 0.705560, 0.000000;;, - 118;3; 0.000000, 0.705560,-0.000000;;, - 119;3; 0.000000, 0.705560, 0.000000;;, - 120;3; 0.000000, 0.705560,-0.000000;;, - 121;3; 0.000000, 0.705560,-0.000000;;, - 122;3;-0.000000, 0.705560,-0.000000;;, - 123;3; 0.000000, 0.705560, 0.000000;;, - 124;3; 0.000000, 0.705560, 0.000000;;, - 125;3; 0.000000, 0.705560, 0.000000;;, - 126;3;-0.000000, 0.705560, 0.000000;;, - 127;3;-0.000000, 0.705560, 0.000000;;, - 128;3;-0.000000, 0.705560,-0.000000;;, - 129;3; 0.000000, 0.705560, 0.000000;;, - 130;3; 0.000000, 0.705559, 0.000000;;, - 131;3; 0.000000, 0.705560, 0.000000;;, - 132;3; 0.000000, 0.705560, 0.000000;;, - 133;3; 0.000000, 0.705560,-0.000000;;, - 134;3; 0.000000, 0.705560, 0.000000;;, - 135;3; 0.000000, 0.705560, 0.000000;;, - 136;3;-0.000000, 0.705560,-0.000000;;, - 137;3; 0.000000, 0.705560, 0.000000;;, - 138;3;-0.000000, 0.705559, 0.000000;;, - 139;3;-0.000000, 0.705560,-0.000000;;, - 140;3; 0.000000, 0.705560, 0.000000;;, - 141;3; 0.000000, 0.705560, 0.000000;;, - 142;3; 0.000000, 0.705560, 0.000000;;, - 143;3; 0.000000, 0.705560,-0.000000;;, - 144;3; 0.000000, 0.705560, 0.000000;;, - 145;3; 0.000000, 0.705560,-0.000000;;, - 146;3; 0.000000, 0.705560, 0.000000;;, - 147;3; 0.000000, 0.705560,-0.000000;;, - 148;3; 0.000000, 0.705560, 0.000000;;, - 149;3; 0.000000, 0.705560, 0.000000;;, - 150;3; 0.000000, 0.705560, 0.000000;;, - 151;3; 0.000000, 0.705560, 0.000000;;, - 152;3; 0.000000, 0.705560, 0.000000;;, - 153;3; 0.000000, 0.705560, 0.000000;;, - 154;3; 0.000000, 0.705560, 0.000000;;, - 155;3; 0.000000, 0.705560, 0.000000;;, - 156;3; 0.000000, 0.705560, 0.000000;;, - 157;3; 0.000000, 0.705560, 0.000000;;, - 158;3; 0.000000, 0.705560, 0.000000;;, - 159;3; 0.000000, 0.705560, 0.000000;;, - 160;3; 0.000000, 0.705560, 0.000000;;, - 161;3; 0.000000, 0.705560, 0.000000;;, - 162;3; 0.000000, 0.705560, 0.000000;;, - 163;3; 0.000000, 0.705560, 0.000000;;, - 164;3; 0.000000, 0.705560, 0.000000;;, - 165;3; 0.000000, 0.705560, 0.000000;;, - 166;3; 0.000000, 0.705560, 0.000000;;, - 167;3; 0.000000, 0.705560, 0.000000;;, - 168;3; 0.000000, 0.705560, 0.000000;;, - 169;3; 0.000000, 0.705560, 0.000000;;, - 170;3; 0.000000, 0.705560, 0.000000;;, - 171;3; 0.000000, 0.705560, 0.000000;;, - 172;3; 0.000000, 0.705560, 0.000000;;, - 173;3; 0.000000, 0.705560, 0.000000;;, - 174;3; 0.000000, 0.705560, 0.000000;;, - 175;3; 0.000000, 0.705560, 0.000000;;, - 176;3; 0.000000, 0.705560, 0.000000;;, - 177;3; 0.000000, 0.705560, 0.000000;;, - 178;3; 0.000000, 0.705560, 0.000000;;, - 179;3; 0.000000, 0.705560, 0.000000;;, - 180;3; 0.000000, 0.705560, 0.000000;;, - 181;3; 0.000000, 0.705560, 0.000000;;, - 182;3; 0.000000, 0.705560, 0.000000;;, - 183;3; 0.000000, 0.705560, 0.000000;;, - 184;3; 0.000000, 0.705560, 0.000000;;, - 185;3; 0.000000, 0.705560, 0.000000;;, - 186;3; 0.000000, 0.705560, 0.000000;;, - 187;3; 0.000000, 0.705560, 0.000000;;, - 188;3; 0.000000, 0.705560, 0.000000;;, - 189;3; 0.000000, 0.705560, 0.000000;;, - 190;3; 0.000000, 0.705560, 0.000000;;, - 191;3; 0.000000, 0.705560, 0.000000;;, - 192;3; 0.000000, 0.705560, 0.000000;;, - 193;3; 0.000000, 0.705560, 0.000000;;, - 194;3; 0.000000, 0.705560, 0.000000;;, - 195;3; 0.000000, 0.705560, 0.000000;;, - 196;3; 0.000000, 0.705560, 0.000000;;, - 197;3; 0.000000, 0.705560, 0.000000;;, - 198;3; 0.000000, 0.705560, 0.000000;;, - 199;3; 0.000000, 0.705560, 0.000000;;, - 200;3; 0.000000, 0.705560, 0.000000;;, - 201;3; 0.000000, 0.705560, 0.000000;;, - 202;3; 0.000000, 0.705560, 0.000000;;, - 203;3; 0.000000, 0.705560, 0.000000;;, - 204;3; 0.000000, 0.705560, 0.000000;;, - 205;3; 0.000000, 0.705560, 0.000000;;, - 206;3; 0.000000, 0.705560, 0.000000;;, - 207;3; 0.000000, 0.705560, 0.000000;;, - 208;3; 0.000000, 0.705560, 0.000000;;, - 209;3; 0.000000, 0.705560, 0.000000;;, - 210;3; 0.000000, 0.705560, 0.000000;;, - 211;3; 0.000000, 0.705560, 0.000000;;, - 212;3; 0.000000, 0.705560, 0.000000;;, - 213;3; 0.000000, 0.705560, 0.000000;;, - 214;3; 0.000000, 0.705560, 0.000000;;, - 215;3; 0.000000, 0.705560, 0.000000;;, - 216;3; 0.000000, 0.705560, 0.000000;;, - 217;3; 0.000000, 0.705560, 0.000000;;, - 218;3; 0.000000, 0.705560, 0.000000;;, - 219;3; 0.000000, 0.705560, 0.000000;;, - 220;3; 0.000000, 0.705560, 0.000000;;, - 221;3; 0.000000, 0.705560, 0.000000;;, - 222;3; 0.000000, 0.705560, 0.000000;;, - 223;3; 0.000000, 0.705560, 0.000000;;, - 224;3; 0.000000, 0.705560, 0.000000;;, - 225;3; 0.000000, 0.705560, 0.000000;;, - 226;3; 0.000000, 0.705560, 0.000000;;, - 227;3; 0.000000, 0.705560, 0.000000;;, - 228;3; 0.000000, 0.705560, 0.000000;;, - 229;3; 0.000000, 0.705560, 0.000000;;, - 230;3; 0.000000, 0.705560, 0.000000;;, - 231;3; 0.000000, 0.705560, 0.000000;;, - 232;3; 0.000000, 0.705560, 0.000000;;, - 233;3; 0.000000, 0.705560, 0.000000;;, - 234;3; 0.000000, 0.705560, 0.000000;;, - 235;3; 0.000000, 0.705560, 0.000000;;, - 236;3; 0.000000, 0.705560, 0.000000;;, - 237;3; 0.000000, 0.705560, 0.000000;;, - 238;3; 0.000000, 0.705560, 0.000000;;, - 239;3; 0.000000, 0.705560, 0.000000;;, - 240;3; 0.000000, 0.705560, 0.000000;;, - 241;3; 0.000000, 0.705560, 0.000000;;, - 242;3; 0.000000, 0.705560, 0.000000;;, - 243;3; 0.000000, 0.705560, 0.000000;;, - 244;3; 0.000000, 0.705560, 0.000000;;, - 245;3; 0.000000, 0.705560, 0.000000;;, - 246;3; 0.000000, 0.705560, 0.000000;;, - 247;3; 0.000000, 0.705560, 0.000000;;, - 248;3; 0.000000, 0.705560, 0.000000;;, - 249;3; 0.000000, 0.705560, 0.000000;;; - } - } - Animation { - {Armature_Bone_030} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.803352,-0.576633,-0.086724, 0.120822;;, - 1;4;-0.803211,-0.576823,-0.086753, 0.120801;;, - 2;4;-0.802781,-0.577397,-0.086839, 0.120736;;, - 3;4;-0.802064,-0.578355,-0.086983, 0.120629;;, - 4;4;-0.801065,-0.579691,-0.087184, 0.120478;;, - 5;4;-0.799799,-0.581384,-0.087439, 0.120288;;, - 6;4;-0.798291,-0.583401,-0.087742, 0.120061;;, - 7;4;-0.796577,-0.585692,-0.088087, 0.119803;;, - 8;4;-0.794707,-0.588193,-0.088463, 0.119522;;, - 9;4;-0.792737,-0.590826,-0.088859, 0.119226;;, - 10;4;-0.790734,-0.593504,-0.089262, 0.118925;;, - 11;4;-0.788765,-0.596137,-0.089658, 0.118628;;, - 12;4;-0.786894,-0.598638,-0.090034, 0.118347;;, - 13;4;-0.785181,-0.600929,-0.090378, 0.118089;;, - 14;4;-0.783672,-0.602946,-0.090682, 0.117862;;, - 15;4;-0.782406,-0.604639,-0.090936, 0.117672;;, - 16;4;-0.781407,-0.605975,-0.091137, 0.117522;;, - 17;4;-0.780690,-0.606933,-0.091281, 0.117414;;, - 18;4;-0.780261,-0.607507,-0.091368, 0.117349;;, - 19;4;-0.780119,-0.607697,-0.091396, 0.117328;;, - 20;4;-0.780121,-0.607694,-0.091396, 0.117328;;, - 21;4;-0.780135,-0.607675,-0.091393, 0.117331;;, - 22;4;-0.780177,-0.607620,-0.091385, 0.117337;;, - 23;4;-0.780263,-0.607504,-0.091367, 0.117350;;, - 24;4;-0.780415,-0.607300,-0.091337, 0.117373;;, - 25;4;-0.780657,-0.606978,-0.091288, 0.117409;;, - 26;4;-0.781013,-0.606502,-0.091216, 0.117462;;, - 27;4;-0.781509,-0.605838,-0.091117, 0.117537;;, - 28;4;-0.782171,-0.604952,-0.090983, 0.117637;;, - 29;4;-0.783023,-0.603814,-0.090812, 0.117765;;, - 30;4;-0.784083,-0.602397,-0.090599, 0.117924;;, - 31;4;-0.785363,-0.600685,-0.090342, 0.118117;;, - 32;4;-0.786873,-0.598667,-0.090038, 0.118344;;, - 33;4;-0.788611,-0.596342,-0.089688, 0.118605;;, - 34;4;-0.790575,-0.593717,-0.089294, 0.118901;;, - 35;4;-0.792754,-0.590804,-0.088855, 0.119228;;, - 36;4;-0.795136,-0.587619,-0.088376, 0.119587;;, - 37;4;-0.797707,-0.584181,-0.087860, 0.119973;;, - 38;4;-0.800451,-0.580513,-0.087308, 0.120386;;, - 39;4;-0.803352,-0.576633,-0.086724, 0.120822;;, - 40;4;-0.806645,-0.567860,-0.084996, 0.121023;;, - 41;4;-0.810580,-0.549399,-0.080985, 0.120726;;, - 42;4;-0.815166,-0.521229,-0.074684, 0.119930;;, - 43;4;-0.820397,-0.483533,-0.066133, 0.118642;;, - 44;4;-0.826253,-0.436760,-0.055437, 0.116887;;, - 45;4;-0.832691,-0.381669,-0.042772, 0.114702;;, - 46;4;-0.839649,-0.319374,-0.028396, 0.112144;;, - 47;4;-0.847040,-0.251342,-0.012653, 0.109287;;, - 48;4;-0.854755,-0.179369, 0.004038, 0.106225;;, - 49;4;-0.862669,-0.105500, 0.021197, 0.103060;;, - 50;4;-0.870646,-0.031911, 0.038313, 0.099904;;, - 51;4;-0.878547, 0.039227, 0.054878, 0.096870;;, - 52;4;-0.886244, 0.105891, 0.070416, 0.094059;;, - 53;4;-0.893619, 0.166320, 0.084511, 0.091564;;, - 54;4;-0.900576, 0.219086, 0.096827, 0.089457;;, - 55;4;-0.907043, 0.263124, 0.107111, 0.087794;;, - 56;4;-0.912967, 0.297721, 0.115196, 0.086610;;, - 57;4;-0.918316, 0.322478, 0.120984, 0.085928;;, - 58;4;-0.923075, 0.337254, 0.124441, 0.085755;;, - 59;4;-0.927242, 0.342113, 0.125580, 0.086088;;, - 60;4;-0.930925, 0.327489, 0.122110, 0.086937;;, - 61;4;-0.934175, 0.283552, 0.111677, 0.088313;;, - 62;4;-0.936914, 0.212139, 0.094718, 0.090168;;, - 63;4;-0.939084, 0.118747, 0.072537, 0.092382;;, - 64;4;-0.940671, 0.012958, 0.047412, 0.094759;;, - 65;4;-0.941721,-0.092826, 0.022288, 0.097056;;, - 66;4;-0.942332,-0.186203, 0.000110, 0.099035;;, - 67;4;-0.942631,-0.257592,-0.016846, 0.100523;;, - 68;4;-0.942741,-0.301498,-0.027274, 0.101427;;, - 69;4;-0.942760,-0.316087,-0.030739, 0.101725;;, - 70;4;-0.942780,-0.314479,-0.030357, 0.101696;;, - 71;4;-0.942839,-0.309626,-0.029204, 0.101606;;, - 72;4;-0.942931,-0.301500,-0.027274, 0.101456;;, - 73;4;-0.943054,-0.290096,-0.024566, 0.101244;;, - 74;4;-0.943201,-0.275442,-0.021085, 0.100970;;, - 75;4;-0.943365,-0.257599,-0.016847, 0.100634;;, - 76;4;-0.943538,-0.236672,-0.011876, 0.100237;;, - 77;4;-0.943713,-0.212811,-0.006209, 0.099781;;, - 78;4;-0.943878,-0.186218, 0.000108, 0.099268;;, - 79;4;-0.944022,-0.157145, 0.007013, 0.098702;;, - 80;4;-0.944134,-0.125903, 0.014434, 0.098087;;, - 81;4;-0.944200,-0.092850, 0.022284, 0.097428;;, - 82;4;-0.944209,-0.058394, 0.030468, 0.096733;;, - 83;4;-0.944146,-0.022978, 0.038880, 0.096008;;, - 84;4;-0.943999, 0.012925, 0.047407, 0.095260;;, - 85;4;-0.943757, 0.048829, 0.055935, 0.094498;;, - 86;4;-0.943408, 0.084248, 0.064347, 0.093729;;, - 87;4;-0.942944, 0.118709, 0.072532, 0.092963;;, - 88;4;-0.942357, 0.151768, 0.080383, 0.092206;;, - 89;4;-0.941642, 0.183019, 0.087805, 0.091467;;, - 90;4;-0.940793, 0.212101, 0.094712, 0.090751;;, - 91;4;-0.939809, 0.238706, 0.101030, 0.090066;;, - 92;4;-0.938689, 0.262579, 0.106699, 0.089415;;, - 93;4;-0.937434, 0.283521, 0.111672, 0.088803;;, - 94;4;-0.936046, 0.301378, 0.115913, 0.088234;;, - 95;4;-0.934528, 0.316049, 0.119396, 0.087709;;, - 96;4;-0.932885, 0.327470, 0.122107, 0.087231;;, - 97;4;-0.931119, 0.335614, 0.124040, 0.086801;;, - 98;4;-0.929236, 0.340486, 0.125195, 0.086420;;, - 99;4;-0.927242, 0.342113, 0.125580, 0.086088;;, - 100;4;-0.924653, 0.337074, 0.124414, 0.085992;;, - 101;4;-0.920978, 0.321801, 0.120882, 0.086329;;, - 102;4;-0.916221, 0.296249, 0.114974, 0.087100;;, - 103;4;-0.910412, 0.260585, 0.106729, 0.088300;;, - 104;4;-0.903612, 0.215252, 0.096250, 0.089914;;, - 105;4;-0.895919, 0.161017, 0.083713, 0.091910;;, - 106;4;-0.887471, 0.099015, 0.069382, 0.094244;;, - 107;4;-0.878447, 0.030758, 0.053605, 0.096855;;, - 108;4;-0.869063,-0.041900, 0.036811, 0.099666;;, - 109;4;-0.859560,-0.116837, 0.019492, 0.102592;;, - 110;4;-0.850194,-0.191783, 0.002171, 0.105539;;, - 111;4;-0.841217,-0.264471,-0.014627, 0.108412;;, - 112;4;-0.832860,-0.332778,-0.030412, 0.111123;;, - 113;4;-0.825323,-0.394846,-0.044753, 0.113593;;, - 114;4;-0.818763,-0.449165,-0.057303, 0.115760;;, - 115;4;-0.813298,-0.494597,-0.067797, 0.117574;;, - 116;4;-0.809001,-0.530372,-0.076059, 0.119002;;, - 117;4;-0.805909,-0.556047,-0.081985, 0.120024;;, - 118;4;-0.804032,-0.571453,-0.085537, 0.120630;;, - 119;4;-0.803352,-0.576633,-0.086724, 0.120822;;, - 120;4;-0.803273,-0.576744,-0.086741, 0.120810;;, - 121;4;-0.803217,-0.576821,-0.086753, 0.120802;;, - 122;4;-0.803188,-0.576862,-0.086759, 0.120798;;, - 123;4;-0.803179,-0.576875,-0.086761, 0.120796;;, - 124;4;-0.803178,-0.576876,-0.086761, 0.120796;;, - 125;4;-0.803178,-0.576876,-0.086761, 0.120796;;, - 126;4;-0.803178,-0.576876,-0.086761, 0.120796;;, - 127;4;-0.803178,-0.576876,-0.086761, 0.120796;;, - 128;4;-0.803178,-0.576876,-0.086761, 0.120796;;, - 129;4;-0.803178,-0.576876,-0.086761, 0.120796;;, - 130;4;-0.803178,-0.576876,-0.086761, 0.120796;;, - 131;4;-0.803178,-0.576876,-0.086761, 0.120796;;, - 132;4;-0.803178,-0.576876,-0.086761, 0.120796;;, - 133;4;-0.803178,-0.576876,-0.086761, 0.120796;;, - 134;4;-0.803178,-0.576876,-0.086761, 0.120796;;, - 135;4;-0.803178,-0.576876,-0.086761, 0.120796;;, - 136;4;-0.803178,-0.576876,-0.086761, 0.120796;;, - 137;4;-0.803178,-0.576876,-0.086761, 0.120796;;, - 138;4;-0.803178,-0.576876,-0.086761, 0.120796;;, - 139;4;-0.803178,-0.576876,-0.086761, 0.120796;;, - 140;4;-0.803178,-0.576876,-0.086761, 0.120796;;, - 141;4;-0.803178,-0.576876,-0.086761, 0.120796;;, - 142;4;-0.803178,-0.576876,-0.086761, 0.120796;;, - 143;4;-0.803178,-0.576876,-0.086761, 0.120796;;, - 144;4;-0.803178,-0.576876,-0.086761, 0.120796;;, - 145;4;-0.803194,-0.576855,-0.086758, 0.120798;;, - 146;4;-0.803237,-0.576794,-0.086748, 0.120805;;, - 147;4;-0.803293,-0.576715,-0.086737, 0.120813;;, - 148;4;-0.803337,-0.576655,-0.086728, 0.120820;;, - 149;4;-0.803352,-0.576633,-0.086724, 0.120822;;, - 150;4;-0.803352,-0.576633,-0.086724, 0.120822;;, - 151;4;-0.803352,-0.576633,-0.086724, 0.120822;;, - 152;4;-0.803352,-0.576633,-0.086724, 0.120822;;, - 153;4;-0.803352,-0.576633,-0.086724, 0.120822;;, - 154;4;-0.803352,-0.576633,-0.086724, 0.120822;;, - 155;4;-0.803352,-0.576633,-0.086724, 0.120822;;, - 156;4;-0.803352,-0.576633,-0.086724, 0.120822;;, - 157;4;-0.803352,-0.576633,-0.086724, 0.120822;;, - 158;4;-0.803352,-0.576633,-0.086724, 0.120822;;, - 159;4;-0.803352,-0.576633,-0.086724, 0.120822;;, - 160;4;-0.803352,-0.576633,-0.086724, 0.120822;;, - 161;4;-0.803352,-0.576633,-0.086724, 0.120822;;, - 162;4;-0.803352,-0.576633,-0.086724, 0.120822;;, - 163;4;-0.803352,-0.576633,-0.086724, 0.120822;;, - 164;4;-0.803352,-0.576633,-0.086724, 0.120822;;, - 165;4;-0.803352,-0.576633,-0.086724, 0.120822;;, - 166;4;-0.803352,-0.576633,-0.086724, 0.120822;;, - 167;4;-0.803352,-0.576633,-0.086724, 0.120822;;, - 168;4;-0.803352,-0.576633,-0.086724, 0.120822;;, - 169;4;-0.803352,-0.576633,-0.086724, 0.120822;;, - 170;4;-0.803352,-0.576633,-0.086724, 0.120822;;, - 171;4;-0.803352,-0.576633,-0.086724, 0.120822;;, - 172;4;-0.803352,-0.576633,-0.086724, 0.120822;;, - 173;4;-0.803352,-0.576633,-0.086724, 0.120822;;, - 174;4;-0.803352,-0.576633,-0.086724, 0.120822;;, - 175;4;-0.803352,-0.576633,-0.086724, 0.120822;;, - 176;4;-0.803352,-0.576633,-0.086724, 0.120822;;, - 177;4;-0.803352,-0.576633,-0.086724, 0.120822;;, - 178;4;-0.803352,-0.576633,-0.086724, 0.120822;;, - 179;4;-0.803352,-0.576633,-0.086724, 0.120822;;, - 180;4;-0.803352,-0.576633,-0.086724, 0.120822;;, - 181;4;-0.803352,-0.576633,-0.086724, 0.120822;;, - 182;4;-0.803352,-0.576633,-0.086724, 0.120822;;, - 183;4;-0.803352,-0.576633,-0.086724, 0.120822;;, - 184;4;-0.803352,-0.576633,-0.086724, 0.120822;;, - 185;4;-0.803352,-0.576633,-0.086724, 0.120822;;, - 186;4;-0.803352,-0.576633,-0.086724, 0.120822;;, - 187;4;-0.803352,-0.576633,-0.086724, 0.120822;;, - 188;4;-0.803352,-0.576633,-0.086724, 0.120822;;, - 189;4;-0.803352,-0.576633,-0.086724, 0.120822;;, - 190;4;-0.803352,-0.576633,-0.086724, 0.120822;;, - 191;4;-0.803352,-0.576633,-0.086724, 0.120822;;, - 192;4;-0.803352,-0.576633,-0.086724, 0.120822;;, - 193;4;-0.803352,-0.576633,-0.086724, 0.120822;;, - 194;4;-0.803352,-0.576633,-0.086724, 0.120822;;, - 195;4;-0.803352,-0.576633,-0.086724, 0.120822;;, - 196;4;-0.803352,-0.576633,-0.086724, 0.120822;;, - 197;4;-0.803352,-0.576633,-0.086724, 0.120822;;, - 198;4;-0.803352,-0.576633,-0.086724, 0.120822;;, - 199;4;-0.803352,-0.576633,-0.086724, 0.120822;;, - 200;4;-0.803352,-0.576633,-0.086724, 0.120822;;, - 201;4;-0.803352,-0.576633,-0.086724, 0.120822;;, - 202;4;-0.803352,-0.576633,-0.086724, 0.120822;;, - 203;4;-0.803352,-0.576633,-0.086724, 0.120822;;, - 204;4;-0.803352,-0.576633,-0.086724, 0.120822;;, - 205;4;-0.803352,-0.576633,-0.086724, 0.120822;;, - 206;4;-0.803352,-0.576633,-0.086724, 0.120822;;, - 207;4;-0.803352,-0.576633,-0.086724, 0.120822;;, - 208;4;-0.803352,-0.576633,-0.086724, 0.120822;;, - 209;4;-0.803352,-0.576633,-0.086724, 0.120822;;, - 210;4;-0.803352,-0.576633,-0.086724, 0.120822;;, - 211;4;-0.803352,-0.576633,-0.086724, 0.120822;;, - 212;4;-0.803352,-0.576633,-0.086724, 0.120822;;, - 213;4;-0.803352,-0.576633,-0.086724, 0.120822;;, - 214;4;-0.803352,-0.576633,-0.086724, 0.120822;;, - 215;4;-0.803352,-0.576633,-0.086724, 0.120822;;, - 216;4;-0.803352,-0.576633,-0.086724, 0.120822;;, - 217;4;-0.803352,-0.576633,-0.086724, 0.120822;;, - 218;4;-0.803352,-0.576633,-0.086724, 0.120822;;, - 219;4;-0.803352,-0.576633,-0.086724, 0.120822;;, - 220;4;-0.803352,-0.576633,-0.086724, 0.120822;;, - 221;4;-0.803352,-0.576633,-0.086724, 0.120822;;, - 222;4;-0.803352,-0.576633,-0.086724, 0.120822;;, - 223;4;-0.803352,-0.576633,-0.086724, 0.120822;;, - 224;4;-0.803352,-0.576633,-0.086724, 0.120822;;, - 225;4;-0.803352,-0.576633,-0.086724, 0.120822;;, - 226;4;-0.803352,-0.576633,-0.086724, 0.120822;;, - 227;4;-0.803352,-0.576633,-0.086724, 0.120822;;, - 228;4;-0.803352,-0.576633,-0.086724, 0.120822;;, - 229;4;-0.803352,-0.576633,-0.086724, 0.120822;;, - 230;4;-0.803352,-0.576633,-0.086724, 0.120822;;, - 231;4;-0.803352,-0.576633,-0.086724, 0.120822;;, - 232;4;-0.803352,-0.576633,-0.086724, 0.120822;;, - 233;4;-0.803352,-0.576633,-0.086724, 0.120822;;, - 234;4;-0.803352,-0.576633,-0.086724, 0.120822;;, - 235;4;-0.803352,-0.576633,-0.086724, 0.120822;;, - 236;4;-0.803352,-0.576633,-0.086724, 0.120822;;, - 237;4;-0.803352,-0.576633,-0.086724, 0.120822;;, - 238;4;-0.803352,-0.576633,-0.086724, 0.120822;;, - 239;4;-0.803352,-0.576633,-0.086724, 0.120822;;, - 240;4;-0.803352,-0.576633,-0.086724, 0.120822;;, - 241;4;-0.803352,-0.576633,-0.086724, 0.120822;;, - 242;4;-0.803352,-0.576633,-0.086724, 0.120822;;, - 243;4;-0.803352,-0.576633,-0.086724, 0.120822;;, - 244;4;-0.803352,-0.576633,-0.086724, 0.120822;;, - 245;4;-0.803352,-0.576633,-0.086724, 0.120822;;, - 246;4;-0.803352,-0.576633,-0.086724, 0.120822;;, - 247;4;-0.803352,-0.576633,-0.086724, 0.120822;;, - 248;4;-0.803352,-0.576633,-0.086724, 0.120822;;, - 249;4;-0.803352,-0.576633,-0.086724, 0.120822;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3; 0.000000, 0.605340,-0.000000;;, - 1;3; 0.000000, 0.605340,-0.000000;;, - 2;3; 0.000000, 0.605340,-0.000000;;, - 3;3; 0.000000, 0.605340,-0.000000;;, - 4;3; 0.000000, 0.605340,-0.000000;;, - 5;3; 0.000000, 0.605340,-0.000000;;, - 6;3; 0.000000, 0.605340,-0.000000;;, - 7;3; 0.000000, 0.605340,-0.000000;;, - 8;3; 0.000000, 0.605340,-0.000000;;, - 9;3; 0.000000, 0.605340,-0.000000;;, - 10;3; 0.000000, 0.605340,-0.000000;;, - 11;3; 0.000000, 0.605340,-0.000000;;, - 12;3; 0.000000, 0.605340,-0.000000;;, - 13;3; 0.000000, 0.605340,-0.000000;;, - 14;3; 0.000000, 0.605340,-0.000000;;, - 15;3; 0.000000, 0.605340,-0.000000;;, - 16;3; 0.000000, 0.605340,-0.000000;;, - 17;3; 0.000000, 0.605340,-0.000000;;, - 18;3; 0.000000, 0.605340,-0.000000;;, - 19;3; 0.000000, 0.605340,-0.000000;;, - 20;3; 0.000000, 0.605340,-0.000000;;, - 21;3; 0.000000, 0.605340,-0.000000;;, - 22;3; 0.000000, 0.605340,-0.000000;;, - 23;3; 0.000000, 0.605340,-0.000000;;, - 24;3; 0.000000, 0.605340,-0.000000;;, - 25;3; 0.000000, 0.605340,-0.000000;;, - 26;3; 0.000000, 0.605340,-0.000000;;, - 27;3; 0.000000, 0.605340,-0.000000;;, - 28;3; 0.000000, 0.605340,-0.000000;;, - 29;3; 0.000000, 0.605340,-0.000000;;, - 30;3; 0.000000, 0.605340,-0.000000;;, - 31;3; 0.000000, 0.605340,-0.000000;;, - 32;3; 0.000000, 0.605340,-0.000000;;, - 33;3; 0.000000, 0.605340,-0.000000;;, - 34;3; 0.000000, 0.605340,-0.000000;;, - 35;3; 0.000000, 0.605340,-0.000000;;, - 36;3; 0.000000, 0.605340,-0.000000;;, - 37;3; 0.000000, 0.605340,-0.000000;;, - 38;3; 0.000000, 0.605340,-0.000000;;, - 39;3; 0.000000, 0.605340,-0.000000;;, - 40;3;-0.000000, 0.605340, 0.000000;;, - 41;3;-0.000000, 0.605340, 0.000000;;, - 42;3; 0.000000, 0.605340, 0.000000;;, - 43;3; 0.000000, 0.605340, 0.000000;;, - 44;3; 0.000000, 0.605340,-0.000000;;, - 45;3; 0.000000, 0.605341, 0.000000;;, - 46;3;-0.000000, 0.605341, 0.000000;;, - 47;3; 0.000000, 0.605340,-0.000000;;, - 48;3;-0.000000, 0.605340, 0.000000;;, - 49;3;-0.000000, 0.605341,-0.000000;;, - 50;3;-0.000000, 0.605340,-0.000000;;, - 51;3;-0.000000, 0.605340, 0.000000;;, - 52;3; 0.000000, 0.605340, 0.000000;;, - 53;3;-0.000000, 0.605340,-0.000000;;, - 54;3;-0.000000, 0.605340, 0.000000;;, - 55;3; 0.000000, 0.605340, 0.000000;;, - 56;3; 0.000000, 0.605340, 0.000000;;, - 57;3;-0.000000, 0.605340, 0.000000;;, - 58;3; 0.000000, 0.605340, 0.000000;;, - 59;3; 0.000000, 0.605340, 0.000000;;, - 60;3; 0.000000, 0.605340, 0.000000;;, - 61;3; 0.000000, 0.605340,-0.000000;;, - 62;3; 0.000000, 0.605340, 0.000000;;, - 63;3; 0.000000, 0.605340,-0.000000;;, - 64;3; 0.000000, 0.605340,-0.000000;;, - 65;3;-0.000000, 0.605340,-0.000000;;, - 66;3; 0.000000, 0.605340, 0.000000;;, - 67;3; 0.000000, 0.605340, 0.000000;;, - 68;3; 0.000000, 0.605340, 0.000000;;, - 69;3; 0.000000, 0.605340,-0.000000;;, - 70;3; 0.000000, 0.605340, 0.000000;;, - 71;3;-0.000000, 0.605340,-0.000000;;, - 72;3;-0.000000, 0.605340, 0.000000;;, - 73;3;-0.000000, 0.605340, 0.000000;;, - 74;3;-0.000000, 0.605340, 0.000000;;, - 75;3;-0.000000, 0.605340,-0.000000;;, - 76;3; 0.000000, 0.605340, 0.000000;;, - 77;3; 0.000000, 0.605340, 0.000000;;, - 78;3; 0.000000, 0.605340, 0.000000;;, - 79;3; 0.000000, 0.605340, 0.000000;;, - 80;3;-0.000000, 0.605340, 0.000000;;, - 81;3;-0.000000, 0.605340,-0.000000;;, - 82;3; 0.000000, 0.605340, 0.000000;;, - 83;3;-0.000000, 0.605340, 0.000000;;, - 84;3; 0.000000, 0.605340,-0.000000;;, - 85;3; 0.000000, 0.605340, 0.000000;;, - 86;3;-0.000000, 0.605340,-0.000000;;, - 87;3;-0.000000, 0.605340,-0.000000;;, - 88;3;-0.000000, 0.605340, 0.000000;;, - 89;3; 0.000000, 0.605340,-0.000000;;, - 90;3; 0.000000, 0.605340, 0.000000;;, - 91;3;-0.000000, 0.605340,-0.000000;;, - 92;3; 0.000000, 0.605340,-0.000000;;, - 93;3; 0.000000, 0.605340, 0.000000;;, - 94;3;-0.000000, 0.605340, 0.000000;;, - 95;3; 0.000000, 0.605340, 0.000000;;, - 96;3; 0.000000, 0.605340, 0.000000;;, - 97;3; 0.000000, 0.605340, 0.000000;;, - 98;3; 0.000000, 0.605340, 0.000000;;, - 99;3; 0.000000, 0.605340, 0.000000;;, - 100;3;-0.000000, 0.605340,-0.000000;;, - 101;3; 0.000000, 0.605340, 0.000000;;, - 102;3;-0.000000, 0.605340, 0.000000;;, - 103;3;-0.000000, 0.605340,-0.000000;;, - 104;3;-0.000000, 0.605340, 0.000000;;, - 105;3;-0.000000, 0.605340, 0.000000;;, - 106;3;-0.000000, 0.605340,-0.000000;;, - 107;3; 0.000000, 0.605340, 0.000000;;, - 108;3; 0.000000, 0.605340, 0.000000;;, - 109;3; 0.000000, 0.605340,-0.000000;;, - 110;3; 0.000000, 0.605340,-0.000000;;, - 111;3; 0.000000, 0.605340, 0.000000;;, - 112;3;-0.000000, 0.605340, 0.000000;;, - 113;3;-0.000000, 0.605340,-0.000000;;, - 114;3;-0.000000, 0.605340, 0.000000;;, - 115;3; 0.000000, 0.605340,-0.000000;;, - 116;3;-0.000000, 0.605340,-0.000000;;, - 117;3;-0.000000, 0.605340,-0.000000;;, - 118;3;-0.000000, 0.605340, 0.000000;;, - 119;3; 0.000000, 0.605340,-0.000000;;, - 120;3;-0.000000, 0.605340, 0.000000;;, - 121;3; 0.000000, 0.605340,-0.000000;;, - 122;3;-0.000000, 0.605340,-0.000000;;, - 123;3;-0.000000, 0.605341,-0.000000;;, - 124;3; 0.000000, 0.605340, 0.000000;;, - 125;3;-0.000000, 0.605340,-0.000000;;, - 126;3;-0.000000, 0.605340, 0.000000;;, - 127;3; 0.000000, 0.605340,-0.000000;;, - 128;3; 0.000000, 0.605340, 0.000000;;, - 129;3;-0.000000, 0.605340, 0.000000;;, - 130;3;-0.000000, 0.605340,-0.000000;;, - 131;3; 0.000000, 0.605340, 0.000000;;, - 132;3; 0.000000, 0.605340, 0.000000;;, - 133;3;-0.000000, 0.605340, 0.000000;;, - 134;3; 0.000000, 0.605340,-0.000000;;, - 135;3; 0.000000, 0.605340, 0.000000;;, - 136;3;-0.000000, 0.605340, 0.000000;;, - 137;3; 0.000000, 0.605340, 0.000000;;, - 138;3; 0.000000, 0.605340,-0.000000;;, - 139;3; 0.000000, 0.605340,-0.000000;;, - 140;3; 0.000000, 0.605340, 0.000000;;, - 141;3; 0.000000, 0.605340, 0.000000;;, - 142;3; 0.000000, 0.605340, 0.000000;;, - 143;3;-0.000000, 0.605340,-0.000000;;, - 144;3;-0.000000, 0.605340,-0.000000;;, - 145;3;-0.000000, 0.605340,-0.000000;;, - 146;3; 0.000000, 0.605340, 0.000000;;, - 147;3; 0.000000, 0.605340,-0.000000;;, - 148;3;-0.000000, 0.605340, 0.000000;;, - 149;3; 0.000000, 0.605340,-0.000000;;, - 150;3; 0.000000, 0.605340,-0.000000;;, - 151;3; 0.000000, 0.605340,-0.000000;;, - 152;3; 0.000000, 0.605340,-0.000000;;, - 153;3; 0.000000, 0.605340,-0.000000;;, - 154;3; 0.000000, 0.605340,-0.000000;;, - 155;3; 0.000000, 0.605340,-0.000000;;, - 156;3; 0.000000, 0.605340,-0.000000;;, - 157;3; 0.000000, 0.605340,-0.000000;;, - 158;3; 0.000000, 0.605340,-0.000000;;, - 159;3; 0.000000, 0.605340,-0.000000;;, - 160;3; 0.000000, 0.605340,-0.000000;;, - 161;3; 0.000000, 0.605340,-0.000000;;, - 162;3; 0.000000, 0.605340,-0.000000;;, - 163;3; 0.000000, 0.605340,-0.000000;;, - 164;3; 0.000000, 0.605340,-0.000000;;, - 165;3; 0.000000, 0.605340,-0.000000;;, - 166;3; 0.000000, 0.605340,-0.000000;;, - 167;3; 0.000000, 0.605340,-0.000000;;, - 168;3; 0.000000, 0.605340,-0.000000;;, - 169;3; 0.000000, 0.605340,-0.000000;;, - 170;3; 0.000000, 0.605340,-0.000000;;, - 171;3; 0.000000, 0.605340,-0.000000;;, - 172;3; 0.000000, 0.605340,-0.000000;;, - 173;3; 0.000000, 0.605340,-0.000000;;, - 174;3; 0.000000, 0.605340,-0.000000;;, - 175;3; 0.000000, 0.605340,-0.000000;;, - 176;3; 0.000000, 0.605340,-0.000000;;, - 177;3; 0.000000, 0.605340,-0.000000;;, - 178;3; 0.000000, 0.605340,-0.000000;;, - 179;3; 0.000000, 0.605340,-0.000000;;, - 180;3; 0.000000, 0.605340,-0.000000;;, - 181;3; 0.000000, 0.605340,-0.000000;;, - 182;3; 0.000000, 0.605340,-0.000000;;, - 183;3; 0.000000, 0.605340,-0.000000;;, - 184;3; 0.000000, 0.605340,-0.000000;;, - 185;3; 0.000000, 0.605340,-0.000000;;, - 186;3; 0.000000, 0.605340,-0.000000;;, - 187;3; 0.000000, 0.605340,-0.000000;;, - 188;3; 0.000000, 0.605340,-0.000000;;, - 189;3; 0.000000, 0.605340,-0.000000;;, - 190;3; 0.000000, 0.605340,-0.000000;;, - 191;3; 0.000000, 0.605340,-0.000000;;, - 192;3; 0.000000, 0.605340,-0.000000;;, - 193;3; 0.000000, 0.605340,-0.000000;;, - 194;3; 0.000000, 0.605340,-0.000000;;, - 195;3; 0.000000, 0.605340,-0.000000;;, - 196;3; 0.000000, 0.605340,-0.000000;;, - 197;3; 0.000000, 0.605340,-0.000000;;, - 198;3; 0.000000, 0.605340,-0.000000;;, - 199;3; 0.000000, 0.605340,-0.000000;;, - 200;3; 0.000000, 0.605340,-0.000000;;, - 201;3; 0.000000, 0.605340,-0.000000;;, - 202;3; 0.000000, 0.605340,-0.000000;;, - 203;3; 0.000000, 0.605340,-0.000000;;, - 204;3; 0.000000, 0.605340,-0.000000;;, - 205;3; 0.000000, 0.605340,-0.000000;;, - 206;3; 0.000000, 0.605340,-0.000000;;, - 207;3; 0.000000, 0.605340,-0.000000;;, - 208;3; 0.000000, 0.605340,-0.000000;;, - 209;3; 0.000000, 0.605340,-0.000000;;, - 210;3; 0.000000, 0.605340,-0.000000;;, - 211;3; 0.000000, 0.605340,-0.000000;;, - 212;3; 0.000000, 0.605340,-0.000000;;, - 213;3; 0.000000, 0.605340,-0.000000;;, - 214;3; 0.000000, 0.605340,-0.000000;;, - 215;3; 0.000000, 0.605340,-0.000000;;, - 216;3; 0.000000, 0.605340,-0.000000;;, - 217;3; 0.000000, 0.605340,-0.000000;;, - 218;3; 0.000000, 0.605340,-0.000000;;, - 219;3; 0.000000, 0.605340,-0.000000;;, - 220;3; 0.000000, 0.605340,-0.000000;;, - 221;3; 0.000000, 0.605340,-0.000000;;, - 222;3; 0.000000, 0.605340,-0.000000;;, - 223;3; 0.000000, 0.605340,-0.000000;;, - 224;3; 0.000000, 0.605340,-0.000000;;, - 225;3; 0.000000, 0.605340,-0.000000;;, - 226;3; 0.000000, 0.605340,-0.000000;;, - 227;3; 0.000000, 0.605340,-0.000000;;, - 228;3; 0.000000, 0.605340,-0.000000;;, - 229;3; 0.000000, 0.605340,-0.000000;;, - 230;3; 0.000000, 0.605340,-0.000000;;, - 231;3; 0.000000, 0.605340,-0.000000;;, - 232;3; 0.000000, 0.605340,-0.000000;;, - 233;3; 0.000000, 0.605340,-0.000000;;, - 234;3; 0.000000, 0.605340,-0.000000;;, - 235;3; 0.000000, 0.605340,-0.000000;;, - 236;3; 0.000000, 0.605340,-0.000000;;, - 237;3; 0.000000, 0.605340,-0.000000;;, - 238;3; 0.000000, 0.605340,-0.000000;;, - 239;3; 0.000000, 0.605340,-0.000000;;, - 240;3; 0.000000, 0.605340,-0.000000;;, - 241;3; 0.000000, 0.605340,-0.000000;;, - 242;3; 0.000000, 0.605340,-0.000000;;, - 243;3; 0.000000, 0.605340,-0.000000;;, - 244;3; 0.000000, 0.605340,-0.000000;;, - 245;3; 0.000000, 0.605340,-0.000000;;, - 246;3; 0.000000, 0.605340,-0.000000;;, - 247;3; 0.000000, 0.605340,-0.000000;;, - 248;3; 0.000000, 0.605340,-0.000000;;, - 249;3; 0.000000, 0.605340,-0.000000;;; - } - } - Animation { - {Armature_Bone_034} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 1;4;-0.992859,-0.119279, 0.000000, 0.000000;;, - 2;4;-0.992912,-0.118772, 0.000000, 0.000000;;, - 3;4;-0.993003,-0.117925, 0.000000, 0.000000;;, - 4;4;-0.993128,-0.116744, 0.000000, 0.000000;;, - 5;4;-0.993287,-0.115248, 0.000000, 0.000000;;, - 6;4;-0.993477,-0.113466, 0.000000, 0.000000;;, - 7;4;-0.993692,-0.111441, 0.000000, 0.000000;;, - 8;4;-0.993927,-0.109231, 0.000000, 0.000000;;, - 9;4;-0.994174,-0.106904, 0.000000, 0.000000;;, - 10;4;-0.994426,-0.104537, 0.000000, 0.000000;;, - 11;4;-0.994673,-0.102210, 0.000000, 0.000000;;, - 12;4;-0.994908,-0.100000, 0.000000, 0.000000;;, - 13;4;-0.995124,-0.097976, 0.000000, 0.000000;;, - 14;4;-0.995313,-0.096193, 0.000000, 0.000000;;, - 15;4;-0.995472,-0.094697, 0.000000, 0.000000;;, - 16;4;-0.995598,-0.093517, 0.000000, 0.000000;;, - 17;4;-0.995688,-0.092670, 0.000000, 0.000000;;, - 18;4;-0.995742,-0.092163, 0.000000, 0.000000;;, - 19;4;-0.995760,-0.091995, 0.000000, 0.000000;;, - 20;4;-0.995744,-0.092146, 0.000000, 0.000000;;, - 21;4;-0.995695,-0.092604, 0.000000, 0.000000;;, - 22;4;-0.995614,-0.093368, 0.000000, 0.000000;;, - 23;4;-0.995500,-0.094435, 0.000000, 0.000000;;, - 24;4;-0.995356,-0.095791, 0.000000, 0.000000;;, - 25;4;-0.995183,-0.097413, 0.000000, 0.000000;;, - 26;4;-0.994986,-0.099267, 0.000000, 0.000000;;, - 27;4;-0.994769,-0.101308, 0.000000, 0.000000;;, - 28;4;-0.994538,-0.103481, 0.000000, 0.000000;;, - 29;4;-0.994300,-0.105721, 0.000000, 0.000000;;, - 30;4;-0.994062,-0.107961, 0.000000, 0.000000;;, - 31;4;-0.993831,-0.110133, 0.000000, 0.000000;;, - 32;4;-0.993614,-0.112174, 0.000000, 0.000000;;, - 33;4;-0.993417,-0.114028, 0.000000, 0.000000;;, - 34;4;-0.993244,-0.115650, 0.000000, 0.000000;;, - 35;4;-0.993100,-0.117006, 0.000000, 0.000000;;, - 36;4;-0.992987,-0.118073, 0.000000, 0.000000;;, - 37;4;-0.992905,-0.118838, 0.000000, 0.000000;;, - 38;4;-0.992857,-0.119295, 0.000000, 0.000000;;, - 39;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 40;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 41;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 42;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 43;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 44;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 45;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 46;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 47;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 48;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 49;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 50;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 51;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 52;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 53;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 54;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 55;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 56;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 57;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 58;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 59;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 60;4;-0.992982,-0.117611, 0.000286, 0.000197;;, - 61;4;-0.993406,-0.112086, 0.001145, 0.000790;;, - 62;4;-0.994097,-0.103103, 0.002542, 0.001754;;, - 63;4;-0.995000,-0.091355, 0.004370, 0.003015;;, - 64;4;-0.996023,-0.078045, 0.006440, 0.004443;;, - 65;4;-0.997046,-0.064735, 0.008510, 0.005872;;, - 66;4;-0.997950,-0.052986, 0.010338, 0.007133;;, - 67;4;-0.998640,-0.044004, 0.011735, 0.008097;;, - 68;4;-0.999065,-0.038479, 0.012594, 0.008690;;, - 69;4;-0.999206,-0.036643, 0.012880, 0.008887;;, - 70;4;-0.999190,-0.036846, 0.012848, 0.008865;;, - 71;4;-0.999143,-0.037456, 0.012753, 0.008799;;, - 72;4;-0.999065,-0.038479, 0.012594, 0.008690;;, - 73;4;-0.998954,-0.039914, 0.012371, 0.008536;;, - 74;4;-0.998813,-0.041758, 0.012084, 0.008338;;, - 75;4;-0.998640,-0.044004, 0.011735, 0.008097;;, - 76;4;-0.998438,-0.046637, 0.011325, 0.007814;;, - 77;4;-0.998207,-0.049640, 0.010858, 0.007492;;, - 78;4;-0.997950,-0.052986, 0.010338, 0.007133;;, - 79;4;-0.997668,-0.056645, 0.009769, 0.006740;;, - 80;4;-0.997366,-0.060576, 0.009157, 0.006318;;, - 81;4;-0.997046,-0.064735, 0.008510, 0.005872;;, - 82;4;-0.996713,-0.069071, 0.007836, 0.005406;;, - 83;4;-0.996371,-0.073527, 0.007143, 0.004928;;, - 84;4;-0.996023,-0.078045, 0.006440, 0.004443;;, - 85;4;-0.995676,-0.082562, 0.005737, 0.003958;;, - 86;4;-0.995333,-0.087019, 0.005044, 0.003480;;, - 87;4;-0.995000,-0.091355, 0.004370, 0.003015;;, - 88;4;-0.994680,-0.095514, 0.003723, 0.002569;;, - 89;4;-0.994378,-0.099445, 0.003111, 0.002147;;, - 90;4;-0.994097,-0.103103, 0.002542, 0.001754;;, - 91;4;-0.993840,-0.106450, 0.002022, 0.001395;;, - 92;4;-0.993609,-0.109453, 0.001555, 0.001073;;, - 93;4;-0.993406,-0.112086, 0.001145, 0.000790;;, - 94;4;-0.993234,-0.114331, 0.000796, 0.000549;;, - 95;4;-0.993092,-0.116176, 0.000509, 0.000351;;, - 96;4;-0.992982,-0.117611, 0.000286, 0.000197;;, - 97;4;-0.992903,-0.118633, 0.000126, 0.000087;;, - 98;4;-0.992856,-0.119244, 0.000031, 0.000022;;, - 99;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 100;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 101;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 102;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 103;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 104;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 105;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 106;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 107;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 108;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 109;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 110;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 111;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 112;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 113;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 114;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 115;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 116;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 117;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 118;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 119;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 120;4;-0.992879,-0.109668, 0.000000, 0.000000;;, - 121;4;-0.992934,-0.076835, 0.000000, 0.000000;;, - 122;4;-0.992866,-0.020469, 0.000000, 0.000000;;, - 123;4;-0.992543, 0.051082, 0.000000,-0.000000;;, - 124;4;-0.991937, 0.126735, 0.000000,-0.000000;;, - 125;4;-0.980642, 0.212991, 0.000000,-0.000000;;, - 126;4;-0.946598, 0.319705, 0.000000,-0.000000;;, - 127;4;-0.893536, 0.435438, 0.000000,-0.000000;;, - 128;4;-0.833439, 0.542183, 0.000000,-0.000000;;, - 129;4;-0.777816, 0.628492, 0.000000,-0.000000;;, - 130;4;-0.714630, 0.704421, 0.000000,-0.000000;;, - 131;4;-0.633281, 0.776638, 0.000000,-0.000000;;, - 132;4;-0.553069, 0.833831, 0.000000,-0.000000;;, - 133;4;-0.498153, 0.867300, 0.000000,-0.000000;;, - 134;4;-0.479938, 0.877302, 0.000000,-0.000000;;, - 135;4;-0.501692, 0.866777, 0.000000,-0.000000;;, - 136;4;-0.566574, 0.830018, 0.000000,-0.000000;;, - 137;4;-0.659571, 0.763725, 0.000000,-0.000000;;, - 138;4;-0.750859, 0.674931, 0.000000,-0.000000;;, - 139;4;-0.817540, 0.575872, 0.000000,-0.000000;;, - 140;4;-0.869543, 0.440806, 0.000000,-0.000000;;, - 141;4;-0.919544, 0.250588, 0.000000,-0.000000;;, - 142;4;-0.959676, 0.054071, 0.000000,-0.000000;;, - 143;4;-0.983672,-0.084107, 0.000000, 0.000000;;, - 144;4;-0.991431,-0.130633, 0.000000, 0.000000;;, - 145;4;-0.992114,-0.129634, 0.000000, 0.000000;;, - 146;4;-0.992570,-0.126832, 0.000000, 0.000000;;, - 147;4;-0.992787,-0.123238, 0.000000, 0.000000;;, - 148;4;-0.992841,-0.120440, 0.000000, 0.000000;;, - 149;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 150;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 151;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 152;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 153;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 154;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 155;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 156;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 157;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 158;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 159;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 160;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 161;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 162;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 163;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 164;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 165;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 166;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 167;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 168;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 169;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 170;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 171;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 172;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 173;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 174;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 175;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 176;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 177;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 178;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 179;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 180;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 181;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 182;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 183;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 184;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 185;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 186;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 187;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 188;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 189;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 190;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 191;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 192;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 193;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 194;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 195;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 196;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 197;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 198;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 199;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 200;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 201;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 202;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 203;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 204;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 205;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 206;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 207;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 208;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 209;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 210;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 211;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 212;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 213;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 214;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 215;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 216;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 217;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 218;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 219;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 220;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 221;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 222;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 223;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 224;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 225;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 226;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 227;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 228;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 229;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 230;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 231;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 232;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 233;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 234;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 235;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 236;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 237;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 238;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 239;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 240;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 241;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 242;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 243;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 244;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 245;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 246;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 247;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 248;4;-0.992841,-0.119446, 0.000000, 0.000000;;, - 249;4;-0.992841,-0.119446, 0.000000, 0.000000;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3;-0.000000, 2.406491, 0.000000;;, - 1;3; 0.000000, 2.406491,-0.000000;;, - 2;3;-0.000000, 2.406491,-0.000000;;, - 3;3;-0.000000, 2.406491,-0.000000;;, - 4;3; 0.000000, 2.406491,-0.000000;;, - 5;3; 0.000000, 2.406491,-0.000000;;, - 6;3; 0.000000, 2.406491, 0.000000;;, - 7;3; 0.000000, 2.406491, 0.000000;;, - 8;3;-0.000000, 2.406491, 0.000000;;, - 9;3; 0.000000, 2.406491,-0.000000;;, - 10;3; 0.000000, 2.406491, 0.000000;;, - 11;3;-0.000000, 2.406491, 0.000000;;, - 12;3; 0.000000, 2.406491,-0.000000;;, - 13;3;-0.000000, 2.406491, 0.000000;;, - 14;3; 0.000000, 2.406491, 0.000000;;, - 15;3; 0.000000, 2.406491,-0.000000;;, - 16;3; 0.000000, 2.406491,-0.000000;;, - 17;3;-0.000000, 2.406491,-0.000000;;, - 18;3; 0.000000, 2.406491, 0.000000;;, - 19;3; 0.000000, 2.406491,-0.000000;;, - 20;3;-0.000000, 2.406491, 0.000000;;, - 21;3; 0.000000, 2.406491,-0.000000;;, - 22;3; 0.000000, 2.406491,-0.000000;;, - 23;3; 0.000000, 2.406491,-0.000000;;, - 24;3; 0.000000, 2.406491, 0.000000;;, - 25;3; 0.000000, 2.406491, 0.000000;;, - 26;3; 0.000000, 2.406491, 0.000000;;, - 27;3; 0.000000, 2.406491,-0.000000;;, - 28;3;-0.000000, 2.406491, 0.000000;;, - 29;3;-0.000000, 2.406491,-0.000000;;, - 30;3; 0.000000, 2.406491,-0.000000;;, - 31;3; 0.000000, 2.406491,-0.000000;;, - 32;3; 0.000000, 2.406491, 0.000000;;, - 33;3; 0.000000, 2.406491,-0.000000;;, - 34;3; 0.000000, 2.406491,-0.000000;;, - 35;3; 0.000000, 2.406491, 0.000000;;, - 36;3; 0.000000, 2.406491, 0.000000;;, - 37;3; 0.000000, 2.406491, 0.000000;;, - 38;3; 0.000000, 2.406491, 0.000000;;, - 39;3;-0.000000, 2.406491, 0.000000;;, - 40;3;-0.000000, 2.406491,-0.000000;;, - 41;3;-0.000000, 2.406491,-0.000000;;, - 42;3; 0.000000, 2.406491,-0.000000;;, - 43;3; 0.000000, 2.406491,-0.000000;;, - 44;3;-0.000000, 2.406491,-0.000000;;, - 45;3; 0.000000, 2.406491,-0.000000;;, - 46;3; 0.000000, 2.406491, 0.000000;;, - 47;3;-0.000000, 2.406491, 0.000000;;, - 48;3; 0.000000, 2.406491, 0.000000;;, - 49;3; 0.000000, 2.406491, 0.000000;;, - 50;3;-0.000000, 2.406491, 0.000000;;, - 51;3;-0.000000, 2.406491,-0.000000;;, - 52;3;-0.000000, 2.406491,-0.000000;;, - 53;3; 0.000000, 2.406491, 0.000000;;, - 54;3; 0.000000, 2.406491,-0.000000;;, - 55;3; 0.000000, 2.406491, 0.000000;;, - 56;3;-0.000000, 2.406491,-0.000000;;, - 57;3;-0.000000, 2.406491,-0.000000;;, - 58;3; 0.000000, 2.406491,-0.000000;;, - 59;3;-0.000000, 2.406491, 0.000000;;, - 60;3; 0.000000, 2.406491, 0.000000;;, - 61;3;-0.000000, 2.406491, 0.000000;;, - 62;3; 0.000000, 2.406491, 0.000000;;, - 63;3; 0.000000, 2.406491,-0.000000;;, - 64;3;-0.000000, 2.406491, 0.000000;;, - 65;3; 0.000000, 2.406490, 0.000000;;, - 66;3; 0.000000, 2.406491,-0.000000;;, - 67;3;-0.000000, 2.406491,-0.000000;;, - 68;3;-0.000000, 2.406491, 0.000000;;, - 69;3;-0.000000, 2.406491, 0.000000;;, - 70;3;-0.000000, 2.406491,-0.000000;;, - 71;3;-0.000000, 2.406491, 0.000000;;, - 72;3;-0.000000, 2.406491, 0.000000;;, - 73;3; 0.000000, 2.406491, 0.000000;;, - 74;3; 0.000000, 2.406491,-0.000000;;, - 75;3;-0.000000, 2.406491,-0.000000;;, - 76;3;-0.000000, 2.406491, 0.000000;;, - 77;3;-0.000000, 2.406491,-0.000000;;, - 78;3;-0.000000, 2.406491,-0.000000;;, - 79;3; 0.000000, 2.406491,-0.000000;;, - 80;3; 0.000000, 2.406491,-0.000000;;, - 81;3; 0.000000, 2.406491, 0.000000;;, - 82;3; 0.000000, 2.406491,-0.000000;;, - 83;3; 0.000000, 2.406491, 0.000000;;, - 84;3;-0.000000, 2.406491, 0.000000;;, - 85;3; 0.000000, 2.406491,-0.000000;;, - 86;3; 0.000000, 2.406491,-0.000000;;, - 87;3;-0.000000, 2.406491,-0.000000;;, - 88;3; 0.000000, 2.406491, 0.000000;;, - 89;3;-0.000000, 2.406491,-0.000000;;, - 90;3;-0.000000, 2.406491,-0.000000;;, - 91;3; 0.000000, 2.406491,-0.000000;;, - 92;3; 0.000000, 2.406491, 0.000000;;, - 93;3;-0.000000, 2.406491, 0.000000;;, - 94;3;-0.000000, 2.406491, 0.000000;;, - 95;3; 0.000000, 2.406491,-0.000000;;, - 96;3; 0.000000, 2.406491, 0.000000;;, - 97;3;-0.000000, 2.406491,-0.000000;;, - 98;3; 0.000000, 2.406491, 0.000000;;, - 99;3;-0.000000, 2.406491, 0.000000;;, - 100;3; 0.000000, 2.406491,-0.000000;;, - 101;3; 0.000000, 2.406491, 0.000000;;, - 102;3; 0.000000, 2.406491,-0.000000;;, - 103;3;-0.000000, 2.406491,-0.000000;;, - 104;3; 0.000000, 2.406491,-0.000000;;, - 105;3; 0.000000, 2.406491, 0.000000;;, - 106;3; 0.000000, 2.406491, 0.000000;;, - 107;3;-0.000000, 2.406491,-0.000000;;, - 108;3; 0.000000, 2.406491,-0.000000;;, - 109;3; 0.000000, 2.406491, 0.000000;;, - 110;3; 0.000000, 2.406491,-0.000000;;, - 111;3;-0.000000, 2.406491, 0.000000;;, - 112;3;-0.000000, 2.406491,-0.000000;;, - 113;3;-0.000000, 2.406491,-0.000000;;, - 114;3;-0.000000, 2.406491, 0.000000;;, - 115;3; 0.000000, 2.406491,-0.000000;;, - 116;3; 0.000000, 2.406491,-0.000000;;, - 117;3; 0.000000, 2.406491,-0.000000;;, - 118;3;-0.000000, 2.406491, 0.000000;;, - 119;3;-0.000000, 2.406491, 0.000000;;, - 120;3; 0.000000, 2.406491,-0.000000;;, - 121;3;-0.000000, 2.406491,-0.000000;;, - 122;3; 0.000000, 2.406491, 0.000000;;, - 123;3; 0.000000, 2.406491,-0.000000;;, - 124;3;-0.000000, 2.406491,-0.000000;;, - 125;3;-0.000000, 2.406491, 0.000000;;, - 126;3;-0.000000, 2.406491, 0.000000;;, - 127;3;-0.000000, 2.406491,-0.000000;;, - 128;3; 0.000000, 2.406491,-0.000000;;, - 129;3; 0.000000, 2.406491,-0.000000;;, - 130;3; 0.000000, 2.406491,-0.000000;;, - 131;3;-0.000000, 2.406491,-0.000000;;, - 132;3;-0.000000, 2.406491,-0.000000;;, - 133;3; 0.000000, 2.406491, 0.000000;;, - 134;3; 0.000000, 2.406491, 0.000000;;, - 135;3;-0.000000, 2.406491, 0.000000;;, - 136;3; 0.000000, 2.406491, 0.000000;;, - 137;3;-0.000000, 2.406491,-0.000000;;, - 138;3;-0.000000, 2.406491,-0.000000;;, - 139;3;-0.000000, 2.406491,-0.000000;;, - 140;3; 0.000000, 2.406491,-0.000000;;, - 141;3;-0.000000, 2.406491,-0.000000;;, - 142;3;-0.000000, 2.406491,-0.000000;;, - 143;3;-0.000000, 2.406491,-0.000000;;, - 144;3;-0.000000, 2.406491,-0.000000;;, - 145;3;-0.000000, 2.406491, 0.000000;;, - 146;3; 0.000000, 2.406491, 0.000000;;, - 147;3; 0.000000, 2.406491, 0.000000;;, - 148;3;-0.000000, 2.406491, 0.000000;;, - 149;3;-0.000000, 2.406491, 0.000000;;, - 150;3;-0.000000, 2.406491, 0.000000;;, - 151;3;-0.000000, 2.406491, 0.000000;;, - 152;3;-0.000000, 2.406491, 0.000000;;, - 153;3;-0.000000, 2.406491, 0.000000;;, - 154;3;-0.000000, 2.406491, 0.000000;;, - 155;3;-0.000000, 2.406491, 0.000000;;, - 156;3;-0.000000, 2.406491, 0.000000;;, - 157;3;-0.000000, 2.406491, 0.000000;;, - 158;3;-0.000000, 2.406491, 0.000000;;, - 159;3;-0.000000, 2.406491, 0.000000;;, - 160;3;-0.000000, 2.406491, 0.000000;;, - 161;3;-0.000000, 2.406491, 0.000000;;, - 162;3;-0.000000, 2.406491, 0.000000;;, - 163;3;-0.000000, 2.406491, 0.000000;;, - 164;3;-0.000000, 2.406491, 0.000000;;, - 165;3;-0.000000, 2.406491, 0.000000;;, - 166;3;-0.000000, 2.406491, 0.000000;;, - 167;3;-0.000000, 2.406491, 0.000000;;, - 168;3;-0.000000, 2.406491, 0.000000;;, - 169;3;-0.000000, 2.406491, 0.000000;;, - 170;3;-0.000000, 2.406491, 0.000000;;, - 171;3;-0.000000, 2.406491, 0.000000;;, - 172;3;-0.000000, 2.406491, 0.000000;;, - 173;3;-0.000000, 2.406491, 0.000000;;, - 174;3;-0.000000, 2.406491, 0.000000;;, - 175;3;-0.000000, 2.406491, 0.000000;;, - 176;3;-0.000000, 2.406491, 0.000000;;, - 177;3;-0.000000, 2.406491, 0.000000;;, - 178;3;-0.000000, 2.406491, 0.000000;;, - 179;3;-0.000000, 2.406491, 0.000000;;, - 180;3;-0.000000, 2.406491, 0.000000;;, - 181;3;-0.000000, 2.406491, 0.000000;;, - 182;3;-0.000000, 2.406491, 0.000000;;, - 183;3;-0.000000, 2.406491, 0.000000;;, - 184;3;-0.000000, 2.406491, 0.000000;;, - 185;3;-0.000000, 2.406491, 0.000000;;, - 186;3;-0.000000, 2.406491, 0.000000;;, - 187;3;-0.000000, 2.406491, 0.000000;;, - 188;3;-0.000000, 2.406491, 0.000000;;, - 189;3;-0.000000, 2.406491, 0.000000;;, - 190;3;-0.000000, 2.406491, 0.000000;;, - 191;3;-0.000000, 2.406491, 0.000000;;, - 192;3;-0.000000, 2.406491, 0.000000;;, - 193;3;-0.000000, 2.406491, 0.000000;;, - 194;3;-0.000000, 2.406491, 0.000000;;, - 195;3;-0.000000, 2.406491, 0.000000;;, - 196;3;-0.000000, 2.406491, 0.000000;;, - 197;3;-0.000000, 2.406491, 0.000000;;, - 198;3;-0.000000, 2.406491, 0.000000;;, - 199;3;-0.000000, 2.406491, 0.000000;;, - 200;3;-0.000000, 2.406491, 0.000000;;, - 201;3;-0.000000, 2.406491, 0.000000;;, - 202;3;-0.000000, 2.406491, 0.000000;;, - 203;3;-0.000000, 2.406491, 0.000000;;, - 204;3;-0.000000, 2.406491, 0.000000;;, - 205;3;-0.000000, 2.406491, 0.000000;;, - 206;3;-0.000000, 2.406491, 0.000000;;, - 207;3;-0.000000, 2.406491, 0.000000;;, - 208;3;-0.000000, 2.406491, 0.000000;;, - 209;3;-0.000000, 2.406491, 0.000000;;, - 210;3;-0.000000, 2.406491, 0.000000;;, - 211;3;-0.000000, 2.406491, 0.000000;;, - 212;3;-0.000000, 2.406491, 0.000000;;, - 213;3;-0.000000, 2.406491, 0.000000;;, - 214;3;-0.000000, 2.406491, 0.000000;;, - 215;3;-0.000000, 2.406491, 0.000000;;, - 216;3;-0.000000, 2.406491, 0.000000;;, - 217;3;-0.000000, 2.406491, 0.000000;;, - 218;3;-0.000000, 2.406491, 0.000000;;, - 219;3;-0.000000, 2.406491, 0.000000;;, - 220;3;-0.000000, 2.406491, 0.000000;;, - 221;3;-0.000000, 2.406491, 0.000000;;, - 222;3;-0.000000, 2.406491, 0.000000;;, - 223;3;-0.000000, 2.406491, 0.000000;;, - 224;3;-0.000000, 2.406491, 0.000000;;, - 225;3;-0.000000, 2.406491, 0.000000;;, - 226;3;-0.000000, 2.406491, 0.000000;;, - 227;3;-0.000000, 2.406491, 0.000000;;, - 228;3;-0.000000, 2.406491, 0.000000;;, - 229;3;-0.000000, 2.406491, 0.000000;;, - 230;3;-0.000000, 2.406491, 0.000000;;, - 231;3;-0.000000, 2.406491, 0.000000;;, - 232;3;-0.000000, 2.406491, 0.000000;;, - 233;3;-0.000000, 2.406491, 0.000000;;, - 234;3;-0.000000, 2.406491, 0.000000;;, - 235;3;-0.000000, 2.406491, 0.000000;;, - 236;3;-0.000000, 2.406491, 0.000000;;, - 237;3;-0.000000, 2.406491, 0.000000;;, - 238;3;-0.000000, 2.406491, 0.000000;;, - 239;3;-0.000000, 2.406491, 0.000000;;, - 240;3;-0.000000, 2.406491, 0.000000;;, - 241;3;-0.000000, 2.406491, 0.000000;;, - 242;3;-0.000000, 2.406491, 0.000000;;, - 243;3;-0.000000, 2.406491, 0.000000;;, - 244;3;-0.000000, 2.406491, 0.000000;;, - 245;3;-0.000000, 2.406491, 0.000000;;, - 246;3;-0.000000, 2.406491, 0.000000;;, - 247;3;-0.000000, 2.406491, 0.000000;;, - 248;3;-0.000000, 2.406491, 0.000000;;, - 249;3;-0.000000, 2.406491, 0.000000;;; - } - } - Animation { - {Armature_Bone_038} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 1;4;-0.995791,-0.091647, 0.000000, 0.000000;;, - 2;4;-0.995815,-0.091359, 0.000000, 0.000000;;, - 3;4;-0.995856,-0.090877, 0.000000, 0.000000;;, - 4;4;-0.995912,-0.090205, 0.000000, 0.000000;;, - 5;4;-0.995984,-0.089354, 0.000000, 0.000000;;, - 6;4;-0.996069,-0.088341, 0.000000, 0.000000;;, - 7;4;-0.996166,-0.087189, 0.000000, 0.000000;;, - 8;4;-0.996272,-0.085932, 0.000000, 0.000000;;, - 9;4;-0.996384,-0.084608, 0.000000, 0.000000;;, - 10;4;-0.996497,-0.083262, 0.000000, 0.000000;;, - 11;4;-0.996609,-0.081939, 0.000000, 0.000000;;, - 12;4;-0.996715,-0.080681, 0.000000, 0.000000;;, - 13;4;-0.996812,-0.079530, 0.000000, 0.000000;;, - 14;4;-0.996897,-0.078516, 0.000000, 0.000000;;, - 15;4;-0.996969,-0.077665, 0.000000, 0.000000;;, - 16;4;-0.997025,-0.076994, 0.000000, 0.000000;;, - 17;4;-0.997066,-0.076512, 0.000000, 0.000000;;, - 18;4;-0.997090,-0.076223, 0.000000, 0.000000;;, - 19;4;-0.997098,-0.076128, 0.000000, 0.000000;;, - 20;4;-0.997091,-0.076214, 0.000000, 0.000000;;, - 21;4;-0.997069,-0.076474, 0.000000, 0.000000;;, - 22;4;-0.997032,-0.076909, 0.000000, 0.000000;;, - 23;4;-0.996981,-0.077516, 0.000000, 0.000000;;, - 24;4;-0.996916,-0.078287, 0.000000, 0.000000;;, - 25;4;-0.996839,-0.079210, 0.000000, 0.000000;;, - 26;4;-0.996750,-0.080264, 0.000000, 0.000000;;, - 27;4;-0.996652,-0.081425, 0.000000, 0.000000;;, - 28;4;-0.996548,-0.082661, 0.000000, 0.000000;;, - 29;4;-0.996440,-0.083935, 0.000000, 0.000000;;, - 30;4;-0.996333,-0.085209, 0.000000, 0.000000;;, - 31;4;-0.996229,-0.086445, 0.000000, 0.000000;;, - 32;4;-0.996131,-0.087606, 0.000000, 0.000000;;, - 33;4;-0.996042,-0.088661, 0.000000, 0.000000;;, - 34;4;-0.995965,-0.089583, 0.000000, 0.000000;;, - 35;4;-0.995900,-0.090354, 0.000000, 0.000000;;, - 36;4;-0.995849,-0.090961, 0.000000, 0.000000;;, - 37;4;-0.995812,-0.091396, 0.000000, 0.000000;;, - 38;4;-0.995790,-0.091656, 0.000000, 0.000000;;, - 39;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 40;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 41;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 42;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 43;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 44;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 45;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 46;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 47;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 48;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 49;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 50;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 51;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 52;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 53;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 54;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 55;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 56;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 57;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 58;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 59;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 60;4;-0.995865,-0.089200, 0.000328, 0.000349;;, - 61;4;-0.996113,-0.081547, 0.001316, 0.001398;;, - 62;4;-0.996517,-0.069104, 0.002923, 0.003105;;, - 63;4;-0.997045,-0.052830, 0.005024, 0.005337;;, - 64;4;-0.997643,-0.034394, 0.007405, 0.007865;;, - 65;4;-0.998241,-0.015958, 0.009785, 0.010394;;, - 66;4;-0.998769, 0.000316, 0.011886, 0.012626;;, - 67;4;-0.999172, 0.012759, 0.013493, 0.014332;;, - 68;4;-0.999421, 0.020412, 0.014481, 0.015382;;, - 69;4;-0.999503, 0.022954, 0.014809, 0.015731;;, - 70;4;-0.999494, 0.022674, 0.014773, 0.015692;;, - 71;4;-0.999467, 0.021828, 0.014664, 0.015576;;, - 72;4;-0.999421, 0.020412, 0.014481, 0.015382;;, - 73;4;-0.999356, 0.018424, 0.014224, 0.015109;;, - 74;4;-0.999273, 0.015869, 0.013894, 0.014759;;, - 75;4;-0.999172, 0.012759, 0.013493, 0.014332;;, - 76;4;-0.999054, 0.009111, 0.013022, 0.013832;;, - 77;4;-0.998919, 0.004952, 0.012485, 0.013262;;, - 78;4;-0.998769, 0.000316, 0.011886, 0.012626;;, - 79;4;-0.998604,-0.004751, 0.011232, 0.011931;;, - 80;4;-0.998428,-0.010197, 0.010529, 0.011184;;, - 81;4;-0.998241,-0.015958, 0.009785, 0.010394;;, - 82;4;-0.998046,-0.021964, 0.009010, 0.009570;;, - 83;4;-0.997846,-0.028136, 0.008213, 0.008723;;, - 84;4;-0.997643,-0.034394, 0.007405, 0.007865;;, - 85;4;-0.997440,-0.040652, 0.006597, 0.007007;;, - 86;4;-0.997240,-0.046824, 0.005800, 0.006160;;, - 87;4;-0.997045,-0.052830, 0.005024, 0.005337;;, - 88;4;-0.996858,-0.058591, 0.004280, 0.004547;;, - 89;4;-0.996681,-0.064037, 0.003577, 0.003800;;, - 90;4;-0.996517,-0.069105, 0.002923, 0.003105;;, - 91;4;-0.996367,-0.073740, 0.002324, 0.002469;;, - 92;4;-0.996232,-0.077899, 0.001787, 0.001899;;, - 93;4;-0.996113,-0.081547, 0.001316, 0.001398;;, - 94;4;-0.996013,-0.084657, 0.000915, 0.000972;;, - 95;4;-0.995930,-0.087212, 0.000585, 0.000621;;, - 96;4;-0.995865,-0.089200, 0.000328, 0.000349;;, - 97;4;-0.995819,-0.090616, 0.000145, 0.000154;;, - 98;4;-0.995792,-0.091462, 0.000036, 0.000038;;, - 99;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 100;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 101;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 102;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 103;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 104;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 105;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 106;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 107;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 108;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 109;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 110;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 111;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 112;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 113;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 114;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 115;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 116;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 117;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 118;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 119;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 120;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 121;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 122;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 123;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 124;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 125;4;-0.975771,-0.026943, 0.000000, 0.000000;;, - 126;4;-0.919405, 0.155578, 0.000000, 0.000000;;, - 127;4;-0.847032, 0.389933, 0.000000, 0.000000;;, - 128;4;-0.790666, 0.572454,-0.000000, 0.000000;;, - 129;4;-0.770654, 0.637253,-0.000000, 0.000000;;, - 130;4;-0.770654, 0.637253,-0.000000, 0.000000;;, - 131;4;-0.770654, 0.637253,-0.000000, 0.000000;;, - 132;4;-0.770654, 0.637253,-0.000000, 0.000000;;, - 133;4;-0.770654, 0.637253,-0.000000, 0.000000;;, - 134;4;-0.770654, 0.637253,-0.000000, 0.000000;;, - 135;4;-0.791009, 0.596312, 0.000000, 0.000000;;, - 136;4;-0.848342, 0.475164, 0.000000,-0.000000;;, - 137;4;-0.921957, 0.303958, 0.000000,-0.000000;;, - 138;4;-0.979290, 0.140156, 0.000000,-0.000000;;, - 139;4;-0.999645, 0.026644, 0.000000,-0.000000;;, - 140;4;-0.998075,-0.051756, 0.000000,-0.000000;;, - 141;4;-0.993654,-0.116657, 0.000000,-0.000000;;, - 142;4;-0.987977,-0.160876, 0.000000,-0.000000;;, - 143;4;-0.983556,-0.183124, 0.000000,-0.000000;;, - 144;4;-0.981986,-0.188953, 0.000000,-0.000000;;, - 145;4;-0.983213,-0.180312, 0.000000,-0.000000;;, - 146;4;-0.986667,-0.155973, 0.000000,-0.000000;;, - 147;4;-0.991102,-0.124722, 0.000000,-0.000000;;, - 148;4;-0.994556,-0.100383, 0.000000,-0.000000;;, - 149;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 150;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 151;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 152;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 153;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 154;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 155;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 156;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 157;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 158;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 159;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 160;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 161;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 162;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 163;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 164;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 165;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 166;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 167;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 168;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 169;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 170;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 171;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 172;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 173;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 174;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 175;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 176;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 177;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 178;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 179;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 180;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 181;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 182;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 183;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 184;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 185;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 186;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 187;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 188;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 189;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 190;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 191;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 192;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 193;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 194;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 195;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 196;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 197;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 198;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 199;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 200;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 201;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 202;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 203;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 204;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 205;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 206;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 207;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 208;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 209;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 210;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 211;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 212;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 213;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 214;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 215;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 216;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 217;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 218;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 219;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 220;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 221;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 222;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 223;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 224;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 225;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 226;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 227;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 228;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 229;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 230;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 231;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 232;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 233;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 234;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 235;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 236;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 237;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 238;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 239;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 240;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 241;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 242;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 243;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 244;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 245;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 246;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 247;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 248;4;-0.995783,-0.091742, 0.000000, 0.000000;;, - 249;4;-0.995783,-0.091742, 0.000000, 0.000000;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3; 0.000000, 2.366877, 0.000000;;, - 1;3; 0.000000, 2.366877, 0.000000;;, - 2;3;-0.000000, 2.366877, 0.000000;;, - 3;3; 0.000000, 2.366877,-0.000000;;, - 4;3; 0.000000, 2.366877, 0.000000;;, - 5;3; 0.000000, 2.366877, 0.000000;;, - 6;3; 0.000000, 2.366877, 0.000000;;, - 7;3; 0.000000, 2.366877,-0.000000;;, - 8;3; 0.000000, 2.366877, 0.000000;;, - 9;3; 0.000000, 2.366877, 0.000000;;, - 10;3; 0.000000, 2.366877,-0.000000;;, - 11;3;-0.000000, 2.366877, 0.000000;;, - 12;3; 0.000000, 2.366877, 0.000000;;, - 13;3; 0.000000, 2.366878, 0.000000;;, - 14;3; 0.000000, 2.366877,-0.000000;;, - 15;3;-0.000000, 2.366877,-0.000000;;, - 16;3;-0.000000, 2.366878,-0.000000;;, - 17;3;-0.000000, 2.366877,-0.000000;;, - 18;3; 0.000000, 2.366877, 0.000000;;, - 19;3;-0.000000, 2.366878, 0.000000;;, - 20;3; 0.000000, 2.366877, 0.000000;;, - 21;3; 0.000000, 2.366877,-0.000000;;, - 22;3;-0.000000, 2.366877, 0.000000;;, - 23;3;-0.000000, 2.366877,-0.000000;;, - 24;3;-0.000000, 2.366877,-0.000000;;, - 25;3; 0.000000, 2.366877, 0.000000;;, - 26;3; 0.000000, 2.366877, 0.000000;;, - 27;3;-0.000000, 2.366877,-0.000000;;, - 28;3; 0.000000, 2.366877,-0.000000;;, - 29;3; 0.000000, 2.366877,-0.000000;;, - 30;3; 0.000000, 2.366877,-0.000000;;, - 31;3; 0.000000, 2.366877,-0.000000;;, - 32;3;-0.000000, 2.366877, 0.000000;;, - 33;3; 0.000000, 2.366877, 0.000000;;, - 34;3; 0.000000, 2.366877,-0.000000;;, - 35;3; 0.000000, 2.366877,-0.000000;;, - 36;3; 0.000000, 2.366877,-0.000000;;, - 37;3;-0.000000, 2.366877, 0.000000;;, - 38;3; 0.000000, 2.366877, 0.000000;;, - 39;3; 0.000000, 2.366877, 0.000000;;, - 40;3;-0.000000, 2.366877,-0.000000;;, - 41;3;-0.000000, 2.366877,-0.000000;;, - 42;3; 0.000000, 2.366877, 0.000000;;, - 43;3; 0.000000, 2.366877,-0.000000;;, - 44;3;-0.000000, 2.366876,-0.000000;;, - 45;3;-0.000000, 2.366877, 0.000000;;, - 46;3;-0.000000, 2.366877, 0.000000;;, - 47;3; 0.000000, 2.366877,-0.000000;;, - 48;3; 0.000000, 2.366877, 0.000000;;, - 49;3; 0.000000, 2.366877,-0.000000;;, - 50;3; 0.000000, 2.366877, 0.000000;;, - 51;3;-0.000000, 2.366877,-0.000000;;, - 52;3;-0.000000, 2.366877, 0.000000;;, - 53;3;-0.000000, 2.366877, 0.000000;;, - 54;3; 0.000000, 2.366877, 0.000000;;, - 55;3;-0.000000, 2.366877,-0.000000;;, - 56;3;-0.000000, 2.366878,-0.000000;;, - 57;3;-0.000000, 2.366877, 0.000000;;, - 58;3; 0.000000, 2.366877, 0.000000;;, - 59;3;-0.000000, 2.366877, 0.000000;;, - 60;3; 0.000000, 2.366877, 0.000000;;, - 61;3;-0.000000, 2.366877, 0.000000;;, - 62;3; 0.000000, 2.366877, 0.000000;;, - 63;3;-0.000000, 2.366878,-0.000000;;, - 64;3; 0.000000, 2.366877, 0.000000;;, - 65;3;-0.000000, 2.366877,-0.000000;;, - 66;3;-0.000000, 2.366877,-0.000000;;, - 67;3;-0.000000, 2.366877,-0.000000;;, - 68;3; 0.000000, 2.366877, 0.000000;;, - 69;3;-0.000000, 2.366877,-0.000000;;, - 70;3; 0.000000, 2.366877,-0.000000;;, - 71;3;-0.000000, 2.366877, 0.000000;;, - 72;3; 0.000000, 2.366876, 0.000000;;, - 73;3;-0.000000, 2.366877,-0.000000;;, - 74;3;-0.000000, 2.366877, 0.000000;;, - 75;3; 0.000000, 2.366876,-0.000000;;, - 76;3;-0.000000, 2.366877, 0.000000;;, - 77;3;-0.000000, 2.366877, 0.000000;;, - 78;3;-0.000000, 2.366876, 0.000000;;, - 79;3; 0.000000, 2.366877, 0.000000;;, - 80;3; 0.000000, 2.366877,-0.000000;;, - 81;3;-0.000000, 2.366876, 0.000000;;, - 82;3; 0.000000, 2.366877, 0.000000;;, - 83;3; 0.000000, 2.366877,-0.000000;;, - 84;3;-0.000000, 2.366877,-0.000000;;, - 85;3; 0.000000, 2.366877, 0.000000;;, - 86;3;-0.000000, 2.366877, 0.000000;;, - 87;3;-0.000000, 2.366877,-0.000000;;, - 88;3;-0.000000, 2.366877,-0.000000;;, - 89;3; 0.000000, 2.366877, 0.000000;;, - 90;3; 0.000000, 2.366877, 0.000000;;, - 91;3; 0.000000, 2.366877, 0.000000;;, - 92;3;-0.000000, 2.366877, 0.000000;;, - 93;3; 0.000000, 2.366877,-0.000000;;, - 94;3;-0.000000, 2.366877,-0.000000;;, - 95;3;-0.000000, 2.366877, 0.000000;;, - 96;3;-0.000000, 2.366877,-0.000000;;, - 97;3; 0.000000, 2.366877,-0.000000;;, - 98;3; 0.000000, 2.366877,-0.000000;;, - 99;3;-0.000000, 2.366877, 0.000000;;, - 100;3;-0.000000, 2.366877,-0.000000;;, - 101;3;-0.000000, 2.366877,-0.000000;;, - 102;3; 0.000000, 2.366877, 0.000000;;, - 103;3; 0.000000, 2.366877,-0.000000;;, - 104;3;-0.000000, 2.366877,-0.000000;;, - 105;3; 0.000000, 2.366877,-0.000000;;, - 106;3; 0.000000, 2.366877,-0.000000;;, - 107;3;-0.000000, 2.366877,-0.000000;;, - 108;3; 0.000000, 2.366877,-0.000000;;, - 109;3;-0.000000, 2.366877,-0.000000;;, - 110;3;-0.000000, 2.366877, 0.000000;;, - 111;3;-0.000000, 2.366877, 0.000000;;, - 112;3; 0.000000, 2.366877,-0.000000;;, - 113;3; 0.000000, 2.366877, 0.000000;;, - 114;3;-0.000000, 2.366877, 0.000000;;, - 115;3;-0.000000, 2.366877, 0.000000;;, - 116;3; 0.000000, 2.366877, 0.000000;;, - 117;3;-0.000000, 2.366877,-0.000000;;, - 118;3;-0.000000, 2.366877,-0.000000;;, - 119;3; 0.000000, 2.366877, 0.000000;;, - 120;3; 0.000000, 2.366877,-0.000000;;, - 121;3; 0.000000, 2.366877, 0.000000;;, - 122;3;-0.000000, 2.366877, 0.000000;;, - 123;3; 0.000000, 2.366877,-0.000000;;, - 124;3; 0.000000, 2.366877,-0.000000;;, - 125;3; 0.000000, 2.366877,-0.000000;;, - 126;3; 0.000000, 2.366877,-0.000000;;, - 127;3; 0.000000, 2.366876, 0.000000;;, - 128;3; 0.000000, 2.366877,-0.000000;;, - 129;3; 0.000000, 2.366877, 0.000000;;, - 130;3;-0.000000, 2.366877,-0.000000;;, - 131;3; 0.000000, 2.366877,-0.000000;;, - 132;3; 0.000000, 2.366877, 0.000000;;, - 133;3;-0.000000, 2.366877, 0.000000;;, - 134;3; 0.000000, 2.366877, 0.000000;;, - 135;3; 0.000000, 2.366877, 0.000000;;, - 136;3; 0.000000, 2.366877, 0.000000;;, - 137;3;-0.000000, 2.366877, 0.000000;;, - 138;3;-0.000000, 2.366876,-0.000000;;, - 139;3;-0.000000, 2.366877, 0.000000;;, - 140;3; 0.000000, 2.366877, 0.000000;;, - 141;3;-0.000000, 2.366876, 0.000000;;, - 142;3;-0.000000, 2.366877, 0.000000;;, - 143;3; 0.000000, 2.366877,-0.000000;;, - 144;3;-0.000000, 2.366878,-0.000000;;, - 145;3; 0.000000, 2.366878,-0.000000;;, - 146;3; 0.000000, 2.366877, 0.000000;;, - 147;3; 0.000000, 2.366877, 0.000000;;, - 148;3; 0.000000, 2.366877,-0.000000;;, - 149;3; 0.000000, 2.366877, 0.000000;;, - 150;3; 0.000000, 2.366877, 0.000000;;, - 151;3; 0.000000, 2.366877, 0.000000;;, - 152;3; 0.000000, 2.366877, 0.000000;;, - 153;3; 0.000000, 2.366877, 0.000000;;, - 154;3; 0.000000, 2.366877, 0.000000;;, - 155;3; 0.000000, 2.366877, 0.000000;;, - 156;3; 0.000000, 2.366877, 0.000000;;, - 157;3; 0.000000, 2.366877, 0.000000;;, - 158;3; 0.000000, 2.366877, 0.000000;;, - 159;3; 0.000000, 2.366877, 0.000000;;, - 160;3; 0.000000, 2.366877, 0.000000;;, - 161;3; 0.000000, 2.366877, 0.000000;;, - 162;3; 0.000000, 2.366877, 0.000000;;, - 163;3; 0.000000, 2.366877, 0.000000;;, - 164;3; 0.000000, 2.366877, 0.000000;;, - 165;3; 0.000000, 2.366877, 0.000000;;, - 166;3; 0.000000, 2.366877, 0.000000;;, - 167;3; 0.000000, 2.366877, 0.000000;;, - 168;3; 0.000000, 2.366877, 0.000000;;, - 169;3; 0.000000, 2.366877, 0.000000;;, - 170;3; 0.000000, 2.366877, 0.000000;;, - 171;3; 0.000000, 2.366877, 0.000000;;, - 172;3; 0.000000, 2.366877, 0.000000;;, - 173;3; 0.000000, 2.366877, 0.000000;;, - 174;3; 0.000000, 2.366877, 0.000000;;, - 175;3; 0.000000, 2.366877, 0.000000;;, - 176;3; 0.000000, 2.366877, 0.000000;;, - 177;3; 0.000000, 2.366877, 0.000000;;, - 178;3; 0.000000, 2.366877, 0.000000;;, - 179;3; 0.000000, 2.366877, 0.000000;;, - 180;3; 0.000000, 2.366877, 0.000000;;, - 181;3; 0.000000, 2.366877, 0.000000;;, - 182;3; 0.000000, 2.366877, 0.000000;;, - 183;3; 0.000000, 2.366877, 0.000000;;, - 184;3; 0.000000, 2.366877, 0.000000;;, - 185;3; 0.000000, 2.366877, 0.000000;;, - 186;3; 0.000000, 2.366877, 0.000000;;, - 187;3; 0.000000, 2.366877, 0.000000;;, - 188;3; 0.000000, 2.366877, 0.000000;;, - 189;3; 0.000000, 2.366877, 0.000000;;, - 190;3; 0.000000, 2.366877, 0.000000;;, - 191;3; 0.000000, 2.366877, 0.000000;;, - 192;3; 0.000000, 2.366877, 0.000000;;, - 193;3; 0.000000, 2.366877, 0.000000;;, - 194;3; 0.000000, 2.366877, 0.000000;;, - 195;3; 0.000000, 2.366877, 0.000000;;, - 196;3; 0.000000, 2.366877, 0.000000;;, - 197;3; 0.000000, 2.366877, 0.000000;;, - 198;3; 0.000000, 2.366877, 0.000000;;, - 199;3; 0.000000, 2.366877, 0.000000;;, - 200;3; 0.000000, 2.366877, 0.000000;;, - 201;3; 0.000000, 2.366877, 0.000000;;, - 202;3; 0.000000, 2.366877, 0.000000;;, - 203;3; 0.000000, 2.366877, 0.000000;;, - 204;3; 0.000000, 2.366877, 0.000000;;, - 205;3; 0.000000, 2.366877, 0.000000;;, - 206;3; 0.000000, 2.366877, 0.000000;;, - 207;3; 0.000000, 2.366877, 0.000000;;, - 208;3; 0.000000, 2.366877, 0.000000;;, - 209;3; 0.000000, 2.366877, 0.000000;;, - 210;3; 0.000000, 2.366877, 0.000000;;, - 211;3; 0.000000, 2.366877, 0.000000;;, - 212;3; 0.000000, 2.366877, 0.000000;;, - 213;3; 0.000000, 2.366877, 0.000000;;, - 214;3; 0.000000, 2.366877, 0.000000;;, - 215;3; 0.000000, 2.366877, 0.000000;;, - 216;3; 0.000000, 2.366877, 0.000000;;, - 217;3; 0.000000, 2.366877, 0.000000;;, - 218;3; 0.000000, 2.366877, 0.000000;;, - 219;3; 0.000000, 2.366877, 0.000000;;, - 220;3; 0.000000, 2.366877, 0.000000;;, - 221;3; 0.000000, 2.366877, 0.000000;;, - 222;3; 0.000000, 2.366877, 0.000000;;, - 223;3; 0.000000, 2.366877, 0.000000;;, - 224;3; 0.000000, 2.366877, 0.000000;;, - 225;3; 0.000000, 2.366877, 0.000000;;, - 226;3; 0.000000, 2.366877, 0.000000;;, - 227;3; 0.000000, 2.366877, 0.000000;;, - 228;3; 0.000000, 2.366877, 0.000000;;, - 229;3; 0.000000, 2.366877, 0.000000;;, - 230;3; 0.000000, 2.366877, 0.000000;;, - 231;3; 0.000000, 2.366877, 0.000000;;, - 232;3; 0.000000, 2.366877, 0.000000;;, - 233;3; 0.000000, 2.366877, 0.000000;;, - 234;3; 0.000000, 2.366877, 0.000000;;, - 235;3; 0.000000, 2.366877, 0.000000;;, - 236;3; 0.000000, 2.366877, 0.000000;;, - 237;3; 0.000000, 2.366877, 0.000000;;, - 238;3; 0.000000, 2.366877, 0.000000;;, - 239;3; 0.000000, 2.366877, 0.000000;;, - 240;3; 0.000000, 2.366877, 0.000000;;, - 241;3; 0.000000, 2.366877, 0.000000;;, - 242;3; 0.000000, 2.366877, 0.000000;;, - 243;3; 0.000000, 2.366877, 0.000000;;, - 244;3; 0.000000, 2.366877, 0.000000;;, - 245;3; 0.000000, 2.366877, 0.000000;;, - 246;3; 0.000000, 2.366877, 0.000000;;, - 247;3; 0.000000, 2.366877, 0.000000;;, - 248;3; 0.000000, 2.366877, 0.000000;;, - 249;3; 0.000000, 2.366877, 0.000000;;; - } - } - Animation { - {Armature_Bone_009} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 1;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 2;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 3;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 4;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 5;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 6;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 7;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 8;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 9;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 10;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 11;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 12;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 13;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 14;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 15;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 16;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 17;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 18;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 19;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 20;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 21;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 22;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 23;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 24;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 25;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 26;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 27;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 28;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 29;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 30;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 31;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 32;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 33;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 34;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 35;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 36;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 37;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 38;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 39;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 40;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 41;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 42;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 43;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 44;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 45;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 46;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 47;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 48;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 49;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 50;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 51;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 52;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 53;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 54;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 55;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 56;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 57;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 58;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 59;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 60;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 61;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 62;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 63;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 64;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 65;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 66;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 67;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 68;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 69;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 70;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 71;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 72;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 73;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 74;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 75;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 76;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 77;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 78;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 79;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 80;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 81;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 82;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 83;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 84;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 85;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 86;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 87;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 88;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 89;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 90;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 91;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 92;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 93;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 94;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 95;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 96;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 97;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 98;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 99;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 100;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 101;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 102;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 103;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 104;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 105;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 106;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 107;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 108;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 109;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 110;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 111;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 112;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 113;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 114;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 115;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 116;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 117;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 118;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 119;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 120;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 121;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 122;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 123;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 124;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 125;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 126;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 127;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 128;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 129;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 130;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 131;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 132;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 133;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 134;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 135;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 136;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 137;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 138;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 139;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 140;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 141;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 142;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 143;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 144;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 145;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 146;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 147;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 148;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 149;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 150;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 151;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 152;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 153;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 154;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 155;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 156;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 157;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 158;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 159;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 160;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 161;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 162;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 163;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 164;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 165;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 166;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 167;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 168;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 169;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 170;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 171;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 172;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 173;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 174;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 175;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 176;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 177;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 178;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 179;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 180;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 181;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 182;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 183;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 184;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 185;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 186;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 187;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 188;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 189;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 190;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 191;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 192;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 193;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 194;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 195;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 196;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 197;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 198;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 199;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 200;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 201;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 202;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 203;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 204;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 205;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 206;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 207;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 208;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 209;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 210;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 211;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 212;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 213;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 214;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 215;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 216;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 217;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 218;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 219;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 220;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 221;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 222;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 223;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 224;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 225;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 226;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 227;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 228;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 229;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 230;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 231;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 232;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 233;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 234;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 235;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 236;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 237;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 238;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 239;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 240;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 241;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 242;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 243;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 244;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 245;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 246;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 247;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 248;4;-0.965533, 0.000000, 0.000000, 0.260280;;, - 249;4;-0.965533, 0.000000, 0.000000, 0.260280;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3; 0.000000, 0.705560, 0.000000;;, - 1;3; 0.000000, 0.705560, 0.000000;;, - 2;3; 0.000000, 0.705560, 0.000000;;, - 3;3; 0.000000, 0.705560, 0.000000;;, - 4;3; 0.000000, 0.705560, 0.000000;;, - 5;3; 0.000000, 0.705560, 0.000000;;, - 6;3; 0.000000, 0.705560, 0.000000;;, - 7;3; 0.000000, 0.705560, 0.000000;;, - 8;3; 0.000000, 0.705560, 0.000000;;, - 9;3; 0.000000, 0.705560, 0.000000;;, - 10;3; 0.000000, 0.705560, 0.000000;;, - 11;3; 0.000000, 0.705560, 0.000000;;, - 12;3; 0.000000, 0.705560, 0.000000;;, - 13;3; 0.000000, 0.705560, 0.000000;;, - 14;3; 0.000000, 0.705560, 0.000000;;, - 15;3; 0.000000, 0.705560, 0.000000;;, - 16;3; 0.000000, 0.705560, 0.000000;;, - 17;3; 0.000000, 0.705560, 0.000000;;, - 18;3; 0.000000, 0.705560, 0.000000;;, - 19;3; 0.000000, 0.705560, 0.000000;;, - 20;3; 0.000000, 0.705560, 0.000000;;, - 21;3; 0.000000, 0.705560, 0.000000;;, - 22;3; 0.000000, 0.705560, 0.000000;;, - 23;3; 0.000000, 0.705560, 0.000000;;, - 24;3; 0.000000, 0.705560, 0.000000;;, - 25;3; 0.000000, 0.705560, 0.000000;;, - 26;3; 0.000000, 0.705560, 0.000000;;, - 27;3; 0.000000, 0.705560, 0.000000;;, - 28;3; 0.000000, 0.705560, 0.000000;;, - 29;3; 0.000000, 0.705560, 0.000000;;, - 30;3; 0.000000, 0.705560, 0.000000;;, - 31;3; 0.000000, 0.705560, 0.000000;;, - 32;3; 0.000000, 0.705560, 0.000000;;, - 33;3; 0.000000, 0.705560, 0.000000;;, - 34;3; 0.000000, 0.705560, 0.000000;;, - 35;3; 0.000000, 0.705560, 0.000000;;, - 36;3; 0.000000, 0.705560, 0.000000;;, - 37;3; 0.000000, 0.705560, 0.000000;;, - 38;3; 0.000000, 0.705560, 0.000000;;, - 39;3; 0.000000, 0.705560, 0.000000;;, - 40;3; 0.000000, 0.705560, 0.000000;;, - 41;3; 0.000000, 0.705559, 0.000000;;, - 42;3;-0.000000, 0.705560, 0.000000;;, - 43;3; 0.000000, 0.705560,-0.000000;;, - 44;3; 0.000000, 0.705560, 0.000000;;, - 45;3; 0.000000, 0.705560,-0.000000;;, - 46;3; 0.000000, 0.705559, 0.000000;;, - 47;3;-0.000000, 0.705560, 0.000000;;, - 48;3; 0.000000, 0.705560,-0.000000;;, - 49;3; 0.000000, 0.705560, 0.000000;;, - 50;3;-0.000000, 0.705559, 0.000000;;, - 51;3; 0.000000, 0.705560,-0.000000;;, - 52;3;-0.000000, 0.705560, 0.000000;;, - 53;3; 0.000000, 0.705560,-0.000000;;, - 54;3; 0.000000, 0.705560, 0.000000;;, - 55;3; 0.000000, 0.705560,-0.000000;;, - 56;3;-0.000000, 0.705560, 0.000000;;, - 57;3; 0.000000, 0.705559, 0.000000;;, - 58;3;-0.000000, 0.705560, 0.000000;;, - 59;3; 0.000000, 0.705560, 0.000000;;, - 60;3; 0.000000, 0.705560,-0.000000;;, - 61;3; 0.000000, 0.705560, 0.000000;;, - 62;3; 0.000000, 0.705560, 0.000000;;, - 63;3; 0.000000, 0.705560, 0.000000;;, - 64;3; 0.000000, 0.705560,-0.000000;;, - 65;3;-0.000000, 0.705560, 0.000000;;, - 66;3; 0.000000, 0.705560, 0.000000;;, - 67;3;-0.000000, 0.705560, 0.000000;;, - 68;3; 0.000000, 0.705559, 0.000000;;, - 69;3; 0.000000, 0.705560, 0.000000;;, - 70;3; 0.000000, 0.705560, 0.000000;;, - 71;3;-0.000000, 0.705560, 0.000000;;, - 72;3;-0.000000, 0.705560, 0.000000;;, - 73;3;-0.000000, 0.705560, 0.000000;;, - 74;3;-0.000000, 0.705560, 0.000000;;, - 75;3;-0.000000, 0.705560, 0.000000;;, - 76;3; 0.000000, 0.705559, 0.000000;;, - 77;3;-0.000000, 0.705560, 0.000000;;, - 78;3; 0.000000, 0.705560, 0.000000;;, - 79;3;-0.000000, 0.705559, 0.000000;;, - 80;3; 0.000000, 0.705560, 0.000000;;, - 81;3;-0.000000, 0.705560, 0.000000;;, - 82;3; 0.000000, 0.705560, 0.000000;;, - 83;3; 0.000000, 0.705560, 0.000000;;, - 84;3; 0.000000, 0.705560,-0.000000;;, - 85;3;-0.000000, 0.705560, 0.000000;;, - 86;3;-0.000000, 0.705560, 0.000000;;, - 87;3; 0.000000, 0.705560,-0.000000;;, - 88;3; 0.000000, 0.705560, 0.000000;;, - 89;3; 0.000000, 0.705560, 0.000000;;, - 90;3; 0.000000, 0.705560, 0.000000;;, - 91;3; 0.000000, 0.705560, 0.000000;;, - 92;3; 0.000000, 0.705560, 0.000000;;, - 93;3; 0.000000, 0.705560, 0.000000;;, - 94;3; 0.000000, 0.705560, 0.000000;;, - 95;3; 0.000000, 0.705560, 0.000000;;, - 96;3; 0.000000, 0.705560,-0.000000;;, - 97;3; 0.000000, 0.705560,-0.000000;;, - 98;3; 0.000000, 0.705560, 0.000000;;, - 99;3; 0.000000, 0.705560, 0.000000;;, - 100;3;-0.000000, 0.705560,-0.000000;;, - 101;3; 0.000000, 0.705560,-0.000000;;, - 102;3; 0.000000, 0.705559, 0.000000;;, - 103;3;-0.000000, 0.705560,-0.000000;;, - 104;3;-0.000000, 0.705559,-0.000000;;, - 105;3;-0.000000, 0.705560,-0.000000;;, - 106;3; 0.000000, 0.705560, 0.000000;;, - 107;3;-0.000000, 0.705559,-0.000000;;, - 108;3; 0.000000, 0.705560,-0.000000;;, - 109;3; 0.000000, 0.705559,-0.000000;;, - 110;3;-0.000000, 0.705559, 0.000000;;, - 111;3; 0.000000, 0.705560,-0.000000;;, - 112;3; 0.000000, 0.705560, 0.000000;;, - 113;3; 0.000000, 0.705560,-0.000000;;, - 114;3;-0.000000, 0.705559, 0.000000;;, - 115;3; 0.000000, 0.705560, 0.000000;;, - 116;3;-0.000000, 0.705560,-0.000000;;, - 117;3; 0.000000, 0.705560, 0.000000;;, - 118;3; 0.000000, 0.705560,-0.000000;;, - 119;3; 0.000000, 0.705560, 0.000000;;, - 120;3; 0.000000, 0.705560,-0.000000;;, - 121;3; 0.000000, 0.705560,-0.000000;;, - 122;3;-0.000000, 0.705560,-0.000000;;, - 123;3; 0.000000, 0.705560, 0.000000;;, - 124;3; 0.000000, 0.705560, 0.000000;;, - 125;3; 0.000000, 0.705560, 0.000000;;, - 126;3;-0.000000, 0.705560, 0.000000;;, - 127;3;-0.000000, 0.705560, 0.000000;;, - 128;3;-0.000000, 0.705560,-0.000000;;, - 129;3; 0.000000, 0.705560, 0.000000;;, - 130;3; 0.000000, 0.705559, 0.000000;;, - 131;3; 0.000000, 0.705560, 0.000000;;, - 132;3; 0.000000, 0.705560, 0.000000;;, - 133;3; 0.000000, 0.705560,-0.000000;;, - 134;3; 0.000000, 0.705560, 0.000000;;, - 135;3; 0.000000, 0.705560, 0.000000;;, - 136;3;-0.000000, 0.705560,-0.000000;;, - 137;3; 0.000000, 0.705560, 0.000000;;, - 138;3;-0.000000, 0.705559, 0.000000;;, - 139;3;-0.000000, 0.705560,-0.000000;;, - 140;3; 0.000000, 0.705560, 0.000000;;, - 141;3; 0.000000, 0.705560, 0.000000;;, - 142;3; 0.000000, 0.705560, 0.000000;;, - 143;3; 0.000000, 0.705560,-0.000000;;, - 144;3; 0.000000, 0.705560, 0.000000;;, - 145;3; 0.000000, 0.705560,-0.000000;;, - 146;3; 0.000000, 0.705560, 0.000000;;, - 147;3; 0.000000, 0.705560,-0.000000;;, - 148;3; 0.000000, 0.705560, 0.000000;;, - 149;3; 0.000000, 0.705560, 0.000000;;, - 150;3; 0.000000, 0.705560, 0.000000;;, - 151;3; 0.000000, 0.705560, 0.000000;;, - 152;3; 0.000000, 0.705560, 0.000000;;, - 153;3; 0.000000, 0.705560, 0.000000;;, - 154;3; 0.000000, 0.705560, 0.000000;;, - 155;3; 0.000000, 0.705560, 0.000000;;, - 156;3; 0.000000, 0.705560, 0.000000;;, - 157;3; 0.000000, 0.705560, 0.000000;;, - 158;3; 0.000000, 0.705560, 0.000000;;, - 159;3; 0.000000, 0.705560, 0.000000;;, - 160;3; 0.000000, 0.705560, 0.000000;;, - 161;3; 0.000000, 0.705560, 0.000000;;, - 162;3; 0.000000, 0.705560, 0.000000;;, - 163;3; 0.000000, 0.705560, 0.000000;;, - 164;3; 0.000000, 0.705560, 0.000000;;, - 165;3; 0.000000, 0.705560, 0.000000;;, - 166;3; 0.000000, 0.705560, 0.000000;;, - 167;3; 0.000000, 0.705560, 0.000000;;, - 168;3; 0.000000, 0.705560, 0.000000;;, - 169;3; 0.000000, 0.705560, 0.000000;;, - 170;3; 0.000000, 0.705560, 0.000000;;, - 171;3; 0.000000, 0.705560, 0.000000;;, - 172;3; 0.000000, 0.705560, 0.000000;;, - 173;3; 0.000000, 0.705560, 0.000000;;, - 174;3; 0.000000, 0.705560, 0.000000;;, - 175;3; 0.000000, 0.705560, 0.000000;;, - 176;3; 0.000000, 0.705560, 0.000000;;, - 177;3; 0.000000, 0.705560, 0.000000;;, - 178;3; 0.000000, 0.705560, 0.000000;;, - 179;3; 0.000000, 0.705560, 0.000000;;, - 180;3; 0.000000, 0.705560, 0.000000;;, - 181;3; 0.000000, 0.705560, 0.000000;;, - 182;3; 0.000000, 0.705560, 0.000000;;, - 183;3; 0.000000, 0.705560, 0.000000;;, - 184;3; 0.000000, 0.705560, 0.000000;;, - 185;3; 0.000000, 0.705560, 0.000000;;, - 186;3; 0.000000, 0.705560, 0.000000;;, - 187;3; 0.000000, 0.705560, 0.000000;;, - 188;3; 0.000000, 0.705560, 0.000000;;, - 189;3; 0.000000, 0.705560, 0.000000;;, - 190;3; 0.000000, 0.705560, 0.000000;;, - 191;3; 0.000000, 0.705560, 0.000000;;, - 192;3; 0.000000, 0.705560, 0.000000;;, - 193;3; 0.000000, 0.705560, 0.000000;;, - 194;3; 0.000000, 0.705560, 0.000000;;, - 195;3; 0.000000, 0.705560, 0.000000;;, - 196;3; 0.000000, 0.705560, 0.000000;;, - 197;3; 0.000000, 0.705560, 0.000000;;, - 198;3; 0.000000, 0.705560, 0.000000;;, - 199;3; 0.000000, 0.705560, 0.000000;;, - 200;3; 0.000000, 0.705560, 0.000000;;, - 201;3; 0.000000, 0.705560, 0.000000;;, - 202;3; 0.000000, 0.705560, 0.000000;;, - 203;3; 0.000000, 0.705560, 0.000000;;, - 204;3; 0.000000, 0.705560, 0.000000;;, - 205;3; 0.000000, 0.705560, 0.000000;;, - 206;3; 0.000000, 0.705560, 0.000000;;, - 207;3; 0.000000, 0.705560, 0.000000;;, - 208;3; 0.000000, 0.705560, 0.000000;;, - 209;3; 0.000000, 0.705560, 0.000000;;, - 210;3; 0.000000, 0.705560, 0.000000;;, - 211;3; 0.000000, 0.705560, 0.000000;;, - 212;3; 0.000000, 0.705560, 0.000000;;, - 213;3; 0.000000, 0.705560, 0.000000;;, - 214;3; 0.000000, 0.705560, 0.000000;;, - 215;3; 0.000000, 0.705560, 0.000000;;, - 216;3; 0.000000, 0.705560, 0.000000;;, - 217;3; 0.000000, 0.705560, 0.000000;;, - 218;3; 0.000000, 0.705560, 0.000000;;, - 219;3; 0.000000, 0.705560, 0.000000;;, - 220;3; 0.000000, 0.705560, 0.000000;;, - 221;3; 0.000000, 0.705560, 0.000000;;, - 222;3; 0.000000, 0.705560, 0.000000;;, - 223;3; 0.000000, 0.705560, 0.000000;;, - 224;3; 0.000000, 0.705560, 0.000000;;, - 225;3; 0.000000, 0.705560, 0.000000;;, - 226;3; 0.000000, 0.705560, 0.000000;;, - 227;3; 0.000000, 0.705560, 0.000000;;, - 228;3; 0.000000, 0.705560, 0.000000;;, - 229;3; 0.000000, 0.705560, 0.000000;;, - 230;3; 0.000000, 0.705560, 0.000000;;, - 231;3; 0.000000, 0.705560, 0.000000;;, - 232;3; 0.000000, 0.705560, 0.000000;;, - 233;3; 0.000000, 0.705560, 0.000000;;, - 234;3; 0.000000, 0.705560, 0.000000;;, - 235;3; 0.000000, 0.705560, 0.000000;;, - 236;3; 0.000000, 0.705560, 0.000000;;, - 237;3; 0.000000, 0.705560, 0.000000;;, - 238;3; 0.000000, 0.705560, 0.000000;;, - 239;3; 0.000000, 0.705560, 0.000000;;, - 240;3; 0.000000, 0.705560, 0.000000;;, - 241;3; 0.000000, 0.705560, 0.000000;;, - 242;3; 0.000000, 0.705560, 0.000000;;, - 243;3; 0.000000, 0.705560, 0.000000;;, - 244;3; 0.000000, 0.705560, 0.000000;;, - 245;3; 0.000000, 0.705560, 0.000000;;, - 246;3; 0.000000, 0.705560, 0.000000;;, - 247;3; 0.000000, 0.705560, 0.000000;;, - 248;3; 0.000000, 0.705560, 0.000000;;, - 249;3; 0.000000, 0.705560, 0.000000;;; - } - } - Animation { - {Armature_Bone_031} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 1;4;-0.782410,-0.565761, 0.152513,-0.210916;;, - 2;4;-0.782167,-0.566089, 0.152602,-0.210850;;, - 3;4;-0.781760,-0.566639, 0.152750,-0.210740;;, - 4;4;-0.781194,-0.567404, 0.152956,-0.210588;;, - 5;4;-0.780475,-0.568374, 0.153217,-0.210394;;, - 6;4;-0.779620,-0.569529, 0.153529,-0.210163;;, - 7;4;-0.778648,-0.570841, 0.153883,-0.209901;;, - 8;4;-0.777587,-0.572274, 0.154269,-0.209615;;, - 9;4;-0.776470,-0.573783, 0.154676,-0.209314;;, - 10;4;-0.775334,-0.575317, 0.155089,-0.209008;;, - 11;4;-0.774217,-0.576825, 0.155496,-0.208707;;, - 12;4;-0.773156,-0.578258, 0.155882,-0.208421;;, - 13;4;-0.772184,-0.579571, 0.156236,-0.208159;;, - 14;4;-0.771329,-0.580726, 0.156547,-0.207928;;, - 15;4;-0.770611,-0.581696, 0.156809,-0.207735;;, - 16;4;-0.770044,-0.582461, 0.157015,-0.207582;;, - 17;4;-0.769638,-0.583010, 0.157163,-0.207472;;, - 18;4;-0.769394,-0.583339, 0.157252,-0.207407;;, - 19;4;-0.769314,-0.583447, 0.157281,-0.207385;;, - 20;4;-0.769315,-0.583446, 0.157280,-0.207385;;, - 21;4;-0.769323,-0.583435, 0.157278,-0.207388;;, - 22;4;-0.769346,-0.583403, 0.157269,-0.207394;;, - 23;4;-0.769395,-0.583337, 0.157251,-0.207407;;, - 24;4;-0.769482,-0.583220, 0.157220,-0.207430;;, - 25;4;-0.769619,-0.583035, 0.157170,-0.207467;;, - 26;4;-0.769821,-0.582763, 0.157096,-0.207522;;, - 27;4;-0.770102,-0.582383, 0.156994,-0.207598;;, - 28;4;-0.770478,-0.581875, 0.156857,-0.207699;;, - 29;4;-0.770961,-0.581223, 0.156681,-0.207829;;, - 30;4;-0.771562,-0.580411, 0.156462,-0.207991;;, - 31;4;-0.772288,-0.579430, 0.156198,-0.208187;;, - 32;4;-0.773144,-0.578274, 0.155886,-0.208418;;, - 33;4;-0.774130,-0.576943, 0.155527,-0.208684;;, - 34;4;-0.775244,-0.575439, 0.155122,-0.208984;;, - 35;4;-0.776480,-0.573770, 0.154672,-0.209317;;, - 36;4;-0.777831,-0.571945, 0.154180,-0.209681;;, - 37;4;-0.779289,-0.569976, 0.153649,-0.210074;;, - 38;4;-0.780845,-0.567875, 0.153083,-0.210494;;, - 39;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 40;4;-0.784615,-0.558689, 0.149850,-0.210607;;, - 41;4;-0.787631,-0.542257, 0.143134,-0.208693;;, - 42;4;-0.791558,-0.516327, 0.132321,-0.205191;;, - 43;4;-0.796402,-0.481069, 0.117481,-0.200132;;, - 44;4;-0.802147,-0.436909, 0.098797,-0.193593;;, - 45;4;-0.808751,-0.384579, 0.076579,-0.185698;;, - 46;4;-0.816145,-0.325150, 0.051287,-0.176632;;, - 47;4;-0.824227,-0.260042, 0.023531,-0.166636;;, - 48;4;-0.832864,-0.190997,-0.005944,-0.156007;;, - 49;4;-0.841900,-0.119997,-0.036286,-0.145081;;, - 50;4;-0.851160,-0.049160,-0.066583,-0.134214;;, - 51;4;-0.860463, 0.019402,-0.095928,-0.123765;;, - 52;4;-0.869635, 0.083718,-0.123471,-0.114063;;, - 53;4;-0.878518, 0.142065,-0.148471,-0.105398;;, - 54;4;-0.886976, 0.193049,-0.170325,-0.098003;;, - 55;4;-0.894902, 0.235624,-0.188583,-0.092052;;, - 56;4;-0.902217, 0.269086,-0.202938,-0.087660;;, - 57;4;-0.908867, 0.293039,-0.213219,-0.084891;;, - 58;4;-0.914822, 0.307336,-0.219359,-0.083769;;, - 59;4;-0.920067, 0.312031,-0.221382,-0.084280;;, - 60;4;-0.924508, 0.298929,-0.217160,-0.088840;;, - 61;4;-0.927979, 0.259592,-0.204481,-0.099894;;, - 62;4;-0.930409, 0.195664,-0.183873,-0.117002;;, - 63;4;-0.931805, 0.112066,-0.156924,-0.138898;;, - 64;4;-0.932285, 0.017374,-0.126399,-0.163406;;, - 65;4;-0.932086,-0.077311,-0.095875,-0.187730;;, - 66;4;-0.931513,-0.160889,-0.068931,-0.209095;;, - 67;4;-0.930862,-0.224787,-0.048332,-0.225373;;, - 68;4;-0.930368,-0.264085,-0.035663,-0.235359;;, - 69;4;-0.930183,-0.277143,-0.031453,-0.238671;;, - 70;4;-0.930245,-0.275704,-0.031917,-0.238317;;, - 71;4;-0.930431,-0.271361,-0.033317,-0.237249;;, - 72;4;-0.930735,-0.264089,-0.035662,-0.235457;;, - 73;4;-0.931150,-0.253883,-0.038952,-0.232941;;, - 74;4;-0.931667,-0.240769,-0.043180,-0.229702;;, - 75;4;-0.932274,-0.224801,-0.048328,-0.225753;;, - 76;4;-0.932959,-0.206073,-0.054366,-0.221114;;, - 77;4;-0.933703,-0.184718,-0.061250,-0.215815;;, - 78;4;-0.934488,-0.160918,-0.068923,-0.209897;;, - 79;4;-0.935292,-0.134900,-0.077311,-0.203413;;, - 80;4;-0.936091,-0.106939,-0.086325,-0.196428;;, - 81;4;-0.936859,-0.077357,-0.095862,-0.189017;;, - 82;4;-0.937566,-0.046519,-0.105804,-0.181266;;, - 83;4;-0.938186,-0.014822,-0.116022,-0.173271;;, - 84;4;-0.938690, 0.017312,-0.126382,-0.165132;;, - 85;4;-0.939049, 0.049447,-0.136741,-0.156955;;, - 86;4;-0.939238, 0.081148,-0.146961,-0.148843;;, - 87;4;-0.939234, 0.111993,-0.156905,-0.140901;;, - 88;4;-0.939016, 0.141584,-0.166444,-0.133224;;, - 89;4;-0.938568, 0.169557,-0.175461,-0.125902;;, - 90;4;-0.937875, 0.195590,-0.183853,-0.119015;;, - 91;4;-0.936928, 0.219408,-0.191531,-0.112630;;, - 92;4;-0.935721, 0.240781,-0.198420,-0.106805;;, - 93;4;-0.934252, 0.259530,-0.204464,-0.101585;;, - 94;4;-0.932520, 0.275521,-0.209618,-0.097006;;, - 95;4;-0.930528, 0.288660,-0.213853,-0.093091;;, - 96;4;-0.928279, 0.298892,-0.217150,-0.089856;;, - 97;4;-0.925782, 0.306192,-0.219502,-0.087310;;, - 98;4;-0.923041, 0.310563,-0.220910,-0.085453;;, - 99;4;-0.920067, 0.312031,-0.221382,-0.084280;;, - 100;4;-0.916430, 0.307223,-0.219329,-0.084202;;, - 101;4;-0.911692, 0.292626,-0.213107,-0.085653;;, - 102;4;-0.905863, 0.268198,-0.202699,-0.088642;;, - 103;4;-0.898981, 0.234102,-0.188172,-0.093151;;, - 104;4;-0.891115, 0.190758,-0.169708,-0.099119;;, - 105;4;-0.882373, 0.138905,-0.147619,-0.106437;;, - 106;4;-0.872905, 0.079626,-0.122368,-0.114945;;, - 107;4;-0.862903, 0.014370,-0.094571,-0.124422;;, - 108;4;-0.852594,-0.055090,-0.064984,-0.134601;;, - 109;4;-0.842236,-0.126722,-0.034473,-0.145171;;, - 110;4;-0.832093,-0.198356,-0.003961,-0.155799;;, - 111;4;-0.822427,-0.267822, 0.025628,-0.166151;;, - 112;4;-0.813476,-0.333089, 0.053428,-0.175912;;, - 113;4;-0.805443,-0.392381, 0.078682,-0.184806;;, - 114;4;-0.798488,-0.444253, 0.100776,-0.192607;;, - 115;4;-0.792726,-0.487616, 0.119246,-0.199141;;, - 116;4;-0.788226,-0.521736, 0.133779,-0.204292;;, - 117;4;-0.785023,-0.546190, 0.144194,-0.207990;;, - 118;4;-0.783118,-0.560814, 0.150423,-0.210204;;, - 119;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 120;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 121;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 122;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 123;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 124;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 125;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 126;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 127;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 128;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 129;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 130;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 131;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 132;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 133;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 134;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 135;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 136;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 137;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 138;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 139;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 140;4;-0.796732,-0.533923, 0.143931,-0.214776;;, - 141;4;-0.836846,-0.444553, 0.119839,-0.225590;;, - 142;4;-0.888352,-0.329802, 0.088905,-0.239475;;, - 143;4;-0.928466,-0.240432, 0.064814,-0.250288;;, - 144;4;-0.942707,-0.208703, 0.056260,-0.254127;;, - 145;4;-0.928466,-0.240432, 0.064814,-0.250288;;, - 146;4;-0.888352,-0.329802, 0.088905,-0.239475;;, - 147;4;-0.836846,-0.444553, 0.119839,-0.225590;;, - 148;4;-0.796732,-0.533923, 0.143931,-0.214776;;, - 149;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 150;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 151;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 152;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 153;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 154;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 155;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 156;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 157;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 158;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 159;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 160;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 161;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 162;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 163;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 164;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 165;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 166;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 167;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 168;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 169;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 170;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 171;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 172;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 173;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 174;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 175;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 176;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 177;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 178;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 179;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 180;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 181;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 182;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 183;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 184;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 185;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 186;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 187;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 188;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 189;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 190;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 191;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 192;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 193;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 194;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 195;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 196;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 197;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 198;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 199;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 200;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 201;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 202;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 203;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 204;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 205;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 206;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 207;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 208;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 209;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 210;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 211;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 212;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 213;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 214;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 215;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 216;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 217;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 218;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 219;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 220;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 221;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 222;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 223;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 224;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 225;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 226;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 227;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 228;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 229;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 230;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 231;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 232;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 233;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 234;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 235;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 236;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 237;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 238;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 239;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 240;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 241;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 242;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 243;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 244;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 245;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 246;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 247;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 248;4;-0.782491,-0.565652, 0.152484,-0.210937;;, - 249;4;-0.782491,-0.565652, 0.152484,-0.210937;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3; 0.000000, 0.657669,-0.000000;;, - 1;3; 0.000000, 0.657669,-0.000000;;, - 2;3; 0.000000, 0.657669,-0.000000;;, - 3;3; 0.000000, 0.657669,-0.000000;;, - 4;3; 0.000000, 0.657669,-0.000000;;, - 5;3; 0.000000, 0.657669,-0.000000;;, - 6;3; 0.000000, 0.657669,-0.000000;;, - 7;3; 0.000000, 0.657669,-0.000000;;, - 8;3; 0.000000, 0.657669,-0.000000;;, - 9;3; 0.000000, 0.657669,-0.000000;;, - 10;3; 0.000000, 0.657669,-0.000000;;, - 11;3; 0.000000, 0.657669,-0.000000;;, - 12;3; 0.000000, 0.657669,-0.000000;;, - 13;3; 0.000000, 0.657669,-0.000000;;, - 14;3; 0.000000, 0.657669,-0.000000;;, - 15;3; 0.000000, 0.657669,-0.000000;;, - 16;3; 0.000000, 0.657669,-0.000000;;, - 17;3; 0.000000, 0.657669,-0.000000;;, - 18;3; 0.000000, 0.657669,-0.000000;;, - 19;3; 0.000000, 0.657669,-0.000000;;, - 20;3; 0.000000, 0.657669,-0.000000;;, - 21;3; 0.000000, 0.657669,-0.000000;;, - 22;3; 0.000000, 0.657669,-0.000000;;, - 23;3; 0.000000, 0.657669,-0.000000;;, - 24;3; 0.000000, 0.657669,-0.000000;;, - 25;3; 0.000000, 0.657669,-0.000000;;, - 26;3; 0.000000, 0.657669,-0.000000;;, - 27;3; 0.000000, 0.657669,-0.000000;;, - 28;3; 0.000000, 0.657669,-0.000000;;, - 29;3; 0.000000, 0.657669,-0.000000;;, - 30;3; 0.000000, 0.657669,-0.000000;;, - 31;3; 0.000000, 0.657669,-0.000000;;, - 32;3; 0.000000, 0.657669,-0.000000;;, - 33;3; 0.000000, 0.657669,-0.000000;;, - 34;3; 0.000000, 0.657669,-0.000000;;, - 35;3; 0.000000, 0.657669,-0.000000;;, - 36;3; 0.000000, 0.657669,-0.000000;;, - 37;3; 0.000000, 0.657669,-0.000000;;, - 38;3; 0.000000, 0.657669,-0.000000;;, - 39;3; 0.000000, 0.657669,-0.000000;;, - 40;3; 0.000000, 0.657669, 0.000000;;, - 41;3; 0.000000, 0.657669,-0.000000;;, - 42;3;-0.000000, 0.657669, 0.000000;;, - 43;3;-0.000000, 0.657669,-0.000000;;, - 44;3; 0.000000, 0.657669, 0.000000;;, - 45;3;-0.000000, 0.657669,-0.000000;;, - 46;3;-0.000000, 0.657669,-0.000000;;, - 47;3; 0.000000, 0.657669,-0.000000;;, - 48;3; 0.000000, 0.657669,-0.000000;;, - 49;3; 0.000000, 0.657669,-0.000000;;, - 50;3;-0.000000, 0.657669, 0.000000;;, - 51;3;-0.000000, 0.657669, 0.000000;;, - 52;3; 0.000000, 0.657669, 0.000000;;, - 53;3;-0.000000, 0.657669,-0.000000;;, - 54;3; 0.000000, 0.657669, 0.000000;;, - 55;3; 0.000000, 0.657669,-0.000000;;, - 56;3; 0.000000, 0.657669, 0.000000;;, - 57;3;-0.000000, 0.657669, 0.000000;;, - 58;3; 0.000000, 0.657669,-0.000000;;, - 59;3;-0.000000, 0.657669,-0.000000;;, - 60;3;-0.000000, 0.657669, 0.000000;;, - 61;3;-0.000000, 0.657669,-0.000000;;, - 62;3;-0.000000, 0.657669,-0.000000;;, - 63;3; 0.000000, 0.657669, 0.000000;;, - 64;3; 0.000000, 0.657669,-0.000000;;, - 65;3; 0.000000, 0.657669, 0.000000;;, - 66;3; 0.000000, 0.657669,-0.000000;;, - 67;3;-0.000000, 0.657669, 0.000000;;, - 68;3; 0.000000, 0.657669, 0.000000;;, - 69;3; 0.000000, 0.657669, 0.000000;;, - 70;3; 0.000000, 0.657669, 0.000000;;, - 71;3; 0.000000, 0.657669,-0.000000;;, - 72;3; 0.000000, 0.657669,-0.000000;;, - 73;3; 0.000000, 0.657669,-0.000000;;, - 74;3; 0.000000, 0.657669,-0.000000;;, - 75;3; 0.000000, 0.657669, 0.000000;;, - 76;3; 0.000000, 0.657669, 0.000000;;, - 77;3; 0.000000, 0.657669, 0.000000;;, - 78;3; 0.000000, 0.657669,-0.000000;;, - 79;3; 0.000000, 0.657669, 0.000000;;, - 80;3; 0.000000, 0.657669,-0.000000;;, - 81;3; 0.000000, 0.657669, 0.000000;;, - 82;3; 0.000000, 0.657669,-0.000000;;, - 83;3; 0.000000, 0.657669,-0.000000;;, - 84;3; 0.000000, 0.657669,-0.000000;;, - 85;3; 0.000000, 0.657669, 0.000000;;, - 86;3;-0.000000, 0.657669,-0.000000;;, - 87;3; 0.000000, 0.657669, 0.000000;;, - 88;3; 0.000000, 0.657669,-0.000000;;, - 89;3; 0.000000, 0.657669,-0.000000;;, - 90;3;-0.000000, 0.657669,-0.000000;;, - 91;3;-0.000000, 0.657669,-0.000000;;, - 92;3;-0.000000, 0.657669, 0.000000;;, - 93;3;-0.000000, 0.657669,-0.000000;;, - 94;3; 0.000000, 0.657669,-0.000000;;, - 95;3;-0.000000, 0.657669, 0.000000;;, - 96;3; 0.000000, 0.657669,-0.000000;;, - 97;3; 0.000000, 0.657669,-0.000000;;, - 98;3; 0.000000, 0.657669,-0.000000;;, - 99;3;-0.000000, 0.657669,-0.000000;;, - 100;3;-0.000000, 0.657669,-0.000000;;, - 101;3;-0.000000, 0.657669,-0.000000;;, - 102;3; 0.000000, 0.657669, 0.000000;;, - 103;3;-0.000000, 0.657669, 0.000000;;, - 104;3;-0.000000, 0.657669,-0.000000;;, - 105;3;-0.000000, 0.657669,-0.000000;;, - 106;3;-0.000000, 0.657669, 0.000000;;, - 107;3; 0.000000, 0.657669, 0.000000;;, - 108;3;-0.000000, 0.657669, 0.000000;;, - 109;3; 0.000000, 0.657669,-0.000000;;, - 110;3; 0.000000, 0.657669,-0.000000;;, - 111;3;-0.000000, 0.657669,-0.000000;;, - 112;3;-0.000000, 0.657669, 0.000000;;, - 113;3; 0.000000, 0.657669,-0.000000;;, - 114;3;-0.000000, 0.657669,-0.000000;;, - 115;3;-0.000000, 0.657669, 0.000000;;, - 116;3;-0.000000, 0.657669,-0.000000;;, - 117;3;-0.000000, 0.657669,-0.000000;;, - 118;3;-0.000000, 0.657669,-0.000000;;, - 119;3; 0.000000, 0.657669,-0.000000;;, - 120;3; 0.000000, 0.657669, 0.000000;;, - 121;3;-0.000000, 0.657669, 0.000000;;, - 122;3;-0.000000, 0.657669, 0.000000;;, - 123;3; 0.000000, 0.657669, 0.000000;;, - 124;3; 0.000000, 0.657669, 0.000000;;, - 125;3;-0.000000, 0.657669, 0.000000;;, - 126;3; 0.000000, 0.657669, 0.000000;;, - 127;3; 0.000000, 0.657669,-0.000000;;, - 128;3;-0.000000, 0.657669, 0.000000;;, - 129;3; 0.000000, 0.657669, 0.000000;;, - 130;3; 0.000000, 0.657669,-0.000000;;, - 131;3;-0.000000, 0.657669, 0.000000;;, - 132;3; 0.000000, 0.657669, 0.000000;;, - 133;3; 0.000000, 0.657669,-0.000000;;, - 134;3; 0.000000, 0.657669,-0.000000;;, - 135;3; 0.000000, 0.657669,-0.000000;;, - 136;3; 0.000000, 0.657669, 0.000000;;, - 137;3;-0.000000, 0.657669, 0.000000;;, - 138;3; 0.000000, 0.657669, 0.000000;;, - 139;3; 0.000000, 0.657669, 0.000000;;, - 140;3;-0.000000, 0.657669,-0.000000;;, - 141;3;-0.000000, 0.657669,-0.000000;;, - 142;3; 0.000000, 0.657669, 0.000000;;, - 143;3; 0.000000, 0.657669, 0.000000;;, - 144;3; 0.000000, 0.657669, 0.000000;;, - 145;3; 0.000000, 0.657669,-0.000000;;, - 146;3; 0.000000, 0.657669,-0.000000;;, - 147;3; 0.000000, 0.657669,-0.000000;;, - 148;3; 0.000000, 0.657669, 0.000000;;, - 149;3; 0.000000, 0.657669,-0.000000;;, - 150;3; 0.000000, 0.657669,-0.000000;;, - 151;3; 0.000000, 0.657669,-0.000000;;, - 152;3; 0.000000, 0.657669,-0.000000;;, - 153;3; 0.000000, 0.657669,-0.000000;;, - 154;3; 0.000000, 0.657669,-0.000000;;, - 155;3; 0.000000, 0.657669,-0.000000;;, - 156;3; 0.000000, 0.657669,-0.000000;;, - 157;3; 0.000000, 0.657669,-0.000000;;, - 158;3; 0.000000, 0.657669,-0.000000;;, - 159;3; 0.000000, 0.657669,-0.000000;;, - 160;3; 0.000000, 0.657669,-0.000000;;, - 161;3; 0.000000, 0.657669,-0.000000;;, - 162;3; 0.000000, 0.657669,-0.000000;;, - 163;3; 0.000000, 0.657669,-0.000000;;, - 164;3; 0.000000, 0.657669,-0.000000;;, - 165;3; 0.000000, 0.657669,-0.000000;;, - 166;3; 0.000000, 0.657669,-0.000000;;, - 167;3; 0.000000, 0.657669,-0.000000;;, - 168;3; 0.000000, 0.657669,-0.000000;;, - 169;3; 0.000000, 0.657669,-0.000000;;, - 170;3; 0.000000, 0.657669,-0.000000;;, - 171;3; 0.000000, 0.657669,-0.000000;;, - 172;3; 0.000000, 0.657669,-0.000000;;, - 173;3; 0.000000, 0.657669,-0.000000;;, - 174;3; 0.000000, 0.657669,-0.000000;;, - 175;3; 0.000000, 0.657669,-0.000000;;, - 176;3; 0.000000, 0.657669,-0.000000;;, - 177;3; 0.000000, 0.657669,-0.000000;;, - 178;3; 0.000000, 0.657669,-0.000000;;, - 179;3; 0.000000, 0.657669,-0.000000;;, - 180;3; 0.000000, 0.657669,-0.000000;;, - 181;3; 0.000000, 0.657669,-0.000000;;, - 182;3; 0.000000, 0.657669,-0.000000;;, - 183;3; 0.000000, 0.657669,-0.000000;;, - 184;3; 0.000000, 0.657669,-0.000000;;, - 185;3; 0.000000, 0.657669,-0.000000;;, - 186;3; 0.000000, 0.657669,-0.000000;;, - 187;3; 0.000000, 0.657669,-0.000000;;, - 188;3; 0.000000, 0.657669,-0.000000;;, - 189;3; 0.000000, 0.657669,-0.000000;;, - 190;3; 0.000000, 0.657669,-0.000000;;, - 191;3; 0.000000, 0.657669,-0.000000;;, - 192;3; 0.000000, 0.657669,-0.000000;;, - 193;3; 0.000000, 0.657669,-0.000000;;, - 194;3; 0.000000, 0.657669,-0.000000;;, - 195;3; 0.000000, 0.657669,-0.000000;;, - 196;3; 0.000000, 0.657669,-0.000000;;, - 197;3; 0.000000, 0.657669,-0.000000;;, - 198;3; 0.000000, 0.657669,-0.000000;;, - 199;3; 0.000000, 0.657669,-0.000000;;, - 200;3; 0.000000, 0.657669,-0.000000;;, - 201;3; 0.000000, 0.657669,-0.000000;;, - 202;3; 0.000000, 0.657669,-0.000000;;, - 203;3; 0.000000, 0.657669,-0.000000;;, - 204;3; 0.000000, 0.657669,-0.000000;;, - 205;3; 0.000000, 0.657669,-0.000000;;, - 206;3; 0.000000, 0.657669,-0.000000;;, - 207;3; 0.000000, 0.657669,-0.000000;;, - 208;3; 0.000000, 0.657669,-0.000000;;, - 209;3; 0.000000, 0.657669,-0.000000;;, - 210;3; 0.000000, 0.657669,-0.000000;;, - 211;3; 0.000000, 0.657669,-0.000000;;, - 212;3; 0.000000, 0.657669,-0.000000;;, - 213;3; 0.000000, 0.657669,-0.000000;;, - 214;3; 0.000000, 0.657669,-0.000000;;, - 215;3; 0.000000, 0.657669,-0.000000;;, - 216;3; 0.000000, 0.657669,-0.000000;;, - 217;3; 0.000000, 0.657669,-0.000000;;, - 218;3; 0.000000, 0.657669,-0.000000;;, - 219;3; 0.000000, 0.657669,-0.000000;;, - 220;3; 0.000000, 0.657669,-0.000000;;, - 221;3; 0.000000, 0.657669,-0.000000;;, - 222;3; 0.000000, 0.657669,-0.000000;;, - 223;3; 0.000000, 0.657669,-0.000000;;, - 224;3; 0.000000, 0.657669,-0.000000;;, - 225;3; 0.000000, 0.657669,-0.000000;;, - 226;3; 0.000000, 0.657669,-0.000000;;, - 227;3; 0.000000, 0.657669,-0.000000;;, - 228;3; 0.000000, 0.657669,-0.000000;;, - 229;3; 0.000000, 0.657669,-0.000000;;, - 230;3; 0.000000, 0.657669,-0.000000;;, - 231;3; 0.000000, 0.657669,-0.000000;;, - 232;3; 0.000000, 0.657669,-0.000000;;, - 233;3; 0.000000, 0.657669,-0.000000;;, - 234;3; 0.000000, 0.657669,-0.000000;;, - 235;3; 0.000000, 0.657669,-0.000000;;, - 236;3; 0.000000, 0.657669,-0.000000;;, - 237;3; 0.000000, 0.657669,-0.000000;;, - 238;3; 0.000000, 0.657669,-0.000000;;, - 239;3; 0.000000, 0.657669,-0.000000;;, - 240;3; 0.000000, 0.657669,-0.000000;;, - 241;3; 0.000000, 0.657669,-0.000000;;, - 242;3; 0.000000, 0.657669,-0.000000;;, - 243;3; 0.000000, 0.657669,-0.000000;;, - 244;3; 0.000000, 0.657669,-0.000000;;, - 245;3; 0.000000, 0.657669,-0.000000;;, - 246;3; 0.000000, 0.657669,-0.000000;;, - 247;3; 0.000000, 0.657669,-0.000000;;, - 248;3; 0.000000, 0.657669,-0.000000;;, - 249;3; 0.000000, 0.657669,-0.000000;;; - } - } - Animation { - {Armature_Bone_035} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 1;4;-0.987909,-0.155034, 0.000000,-0.000000;;, - 2;4;-0.987887,-0.155170, 0.000000,-0.000000;;, - 3;4;-0.987851,-0.155396, 0.000000,-0.000000;;, - 4;4;-0.987800,-0.155713, 0.000000,-0.000000;;, - 5;4;-0.987736,-0.156114, 0.000000,-0.000000;;, - 6;4;-0.987659,-0.156591, 0.000000,-0.000000;;, - 7;4;-0.987572,-0.157133, 0.000000,-0.000000;;, - 8;4;-0.987476,-0.157725, 0.000000,-0.000000;;, - 9;4;-0.987376,-0.158349, 0.000000,-0.000000;;, - 10;4;-0.987274,-0.158983, 0.000000,-0.000000;;, - 11;4;-0.987174,-0.159606, 0.000000,-0.000000;;, - 12;4;-0.987079,-0.160198, 0.000000,-0.000000;;, - 13;4;-0.986992,-0.160741, 0.000000,-0.000000;;, - 14;4;-0.986915,-0.161218, 0.000000,-0.000000;;, - 15;4;-0.986851,-0.161619, 0.000000,-0.000000;;, - 16;4;-0.986800,-0.161935, 0.000000,-0.000000;;, - 17;4;-0.986763,-0.162162, 0.000000,-0.000000;;, - 18;4;-0.986742,-0.162298, 0.000000,-0.000000;;, - 19;4;-0.986734,-0.162343, 0.000000,-0.000000;;, - 20;4;-0.986741,-0.162302, 0.000000,-0.000000;;, - 21;4;-0.986761,-0.162180, 0.000000,-0.000000;;, - 22;4;-0.986794,-0.161975, 0.000000,-0.000000;;, - 23;4;-0.986839,-0.161689, 0.000000,-0.000000;;, - 24;4;-0.986898,-0.161326, 0.000000,-0.000000;;, - 25;4;-0.986968,-0.160891, 0.000000,-0.000000;;, - 26;4;-0.987047,-0.160395, 0.000000,-0.000000;;, - 27;4;-0.987135,-0.159848, 0.000000,-0.000000;;, - 28;4;-0.987229,-0.159266, 0.000000,-0.000000;;, - 29;4;-0.987325,-0.158666, 0.000000,-0.000000;;, - 30;4;-0.987422,-0.158066, 0.000000,-0.000000;;, - 31;4;-0.987515,-0.157484, 0.000000,-0.000000;;, - 32;4;-0.987603,-0.156937, 0.000000,-0.000000;;, - 33;4;-0.987683,-0.156440, 0.000000,-0.000000;;, - 34;4;-0.987753,-0.156006, 0.000000,-0.000000;;, - 35;4;-0.987811,-0.155642, 0.000000,-0.000000;;, - 36;4;-0.987857,-0.155357, 0.000000,-0.000000;;, - 37;4;-0.987890,-0.155152, 0.000000,-0.000000;;, - 38;4;-0.987910,-0.155029, 0.000000,-0.000000;;, - 39;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 40;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 41;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 42;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 43;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 44;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 45;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 46;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 47;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 48;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 49;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 50;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 51;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 52;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 53;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 54;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 55;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 56;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 57;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 58;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 59;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 60;4;-0.988099,-0.153467, 0.000000,-0.000319;;, - 61;4;-0.988649,-0.148885, 0.000001,-0.001280;;, - 62;4;-0.989544,-0.141437, 0.000002,-0.002842;;, - 63;4;-0.990714,-0.131694, 0.000003,-0.004886;;, - 64;4;-0.992040,-0.120657, 0.000004,-0.007201;;, - 65;4;-0.993365,-0.109620, 0.000005,-0.009515;;, - 66;4;-0.994535,-0.099878, 0.000006,-0.011559;;, - 67;4;-0.995430,-0.092429, 0.000007,-0.013121;;, - 68;4;-0.995980,-0.087848, 0.000008,-0.014082;;, - 69;4;-0.996163,-0.086325, 0.000008,-0.014401;;, - 70;4;-0.996143,-0.086493, 0.000008,-0.014366;;, - 71;4;-0.996082,-0.087000, 0.000008,-0.014260;;, - 72;4;-0.995980,-0.087848, 0.000008,-0.014082;;, - 73;4;-0.995837,-0.089038, 0.000007,-0.013832;;, - 74;4;-0.995654,-0.090567, 0.000007,-0.013512;;, - 75;4;-0.995430,-0.092429, 0.000007,-0.013121;;, - 76;4;-0.995168,-0.094613, 0.000007,-0.012663;;, - 77;4;-0.994869,-0.097103, 0.000006,-0.012141;;, - 78;4;-0.994535,-0.099878, 0.000006,-0.011559;;, - 79;4;-0.994171,-0.102911, 0.000006,-0.010923;;, - 80;4;-0.993779,-0.106171, 0.000005,-0.010239;;, - 81;4;-0.993365,-0.109620, 0.000005,-0.009515;;, - 82;4;-0.992933,-0.113216, 0.000005,-0.008761;;, - 83;4;-0.992490,-0.116911, 0.000004,-0.007986;;, - 84;4;-0.992040,-0.120657, 0.000004,-0.007201;;, - 85;4;-0.991590,-0.124403, 0.000003,-0.006415;;, - 86;4;-0.991146,-0.128099, 0.000003,-0.005640;;, - 87;4;-0.990714,-0.131694, 0.000003,-0.004886;;, - 88;4;-0.990300,-0.135143, 0.000002,-0.004162;;, - 89;4;-0.989908,-0.138403, 0.000002,-0.003479;;, - 90;4;-0.989544,-0.141437, 0.000002,-0.002842;;, - 91;4;-0.989211,-0.144212, 0.000001,-0.002260;;, - 92;4;-0.988912,-0.146702, 0.000001,-0.001738;;, - 93;4;-0.988649,-0.148885, 0.000001,-0.001280;;, - 94;4;-0.988426,-0.150747, 0.000000,-0.000890;;, - 95;4;-0.988242,-0.152277, 0.000000,-0.000569;;, - 96;4;-0.988099,-0.153467, 0.000000,-0.000319;;, - 97;4;-0.987997,-0.154315, 0.000000,-0.000141;;, - 98;4;-0.987936,-0.154821, 0.000000,-0.000035;;, - 99;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 100;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 101;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 102;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 103;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 104;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 105;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 106;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 107;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 108;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 109;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 110;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 111;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 112;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 113;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 114;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 115;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 116;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 117;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 118;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 119;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 120;4;-0.988834,-0.135946, 0.000000,-0.000000;;, - 121;4;-0.991420,-0.082310, 0.000000,-0.000000;;, - 122;4;-0.994740,-0.013440, 0.000000,-0.000000;;, - 123;4;-0.997326, 0.040196, 0.000000,-0.000000;;, - 124;4;-0.998244, 0.059239, 0.000000,-0.000000;;, - 125;4;-0.998244, 0.059239, 0.000000,-0.000000;;, - 126;4;-0.998244, 0.059239, 0.000000,-0.000000;;, - 127;4;-0.998244, 0.059239, 0.000000,-0.000000;;, - 128;4;-0.998244, 0.059239, 0.000000,-0.000000;;, - 129;4;-0.998244, 0.059239, 0.000000,-0.000000;;, - 130;4;-0.998244, 0.059239, 0.000000,-0.000000;;, - 131;4;-0.998244, 0.059239, 0.000000,-0.000000;;, - 132;4;-0.998244, 0.059239, 0.000000,-0.000000;;, - 133;4;-0.998244, 0.059239, 0.000000,-0.000000;;, - 134;4;-0.998244, 0.059239, 0.000000,-0.000000;;, - 135;4;-0.957797, 0.128604, 0.000000,-0.000000;;, - 136;4;-0.843869, 0.323984, 0.000000,-0.000000;;, - 137;4;-0.697587, 0.574850, 0.000000,-0.000000;;, - 138;4;-0.583660, 0.770230, 0.000000,-0.000000;;, - 139;4;-0.543213, 0.839595, 0.000000,-0.000000;;, - 140;4;-0.582031, 0.797360, 0.000000,-0.000000;;, - 141;4;-0.691492, 0.671349, 0.000000,-0.000000;;, - 142;4;-0.832372, 0.490631, 0.000000,-0.000000;;, - 143;4;-0.942738, 0.313058,-0.000000,-0.000000;;, - 144;4;-0.983095, 0.183095,-0.000000,-0.000000;;, - 145;4;-0.984780, 0.081436,-0.000000,-0.000000;;, - 146;4;-0.986219,-0.016414,-0.000000,-0.000000;;, - 147;4;-0.987236,-0.094769, 0.000000,-0.000000;;, - 148;4;-0.987771,-0.141057, 0.000000,-0.000000;;, - 149;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 150;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 151;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 152;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 153;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 154;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 155;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 156;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 157;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 158;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 159;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 160;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 161;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 162;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 163;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 164;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 165;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 166;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 167;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 168;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 169;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 170;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 171;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 172;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 173;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 174;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 175;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 176;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 177;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 178;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 179;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 180;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 181;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 182;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 183;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 184;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 185;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 186;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 187;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 188;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 189;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 190;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 191;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 192;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 193;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 194;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 195;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 196;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 197;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 198;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 199;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 200;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 201;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 202;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 203;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 204;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 205;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 206;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 207;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 208;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 209;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 210;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 211;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 212;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 213;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 214;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 215;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 216;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 217;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 218;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 219;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 220;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 221;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 222;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 223;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 224;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 225;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 226;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 227;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 228;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 229;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 230;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 231;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 232;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 233;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 234;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 235;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 236;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 237;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 238;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 239;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 240;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 241;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 242;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 243;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 244;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 245;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 246;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 247;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 248;4;-0.987916,-0.154989, 0.000000,-0.000000;;, - 249;4;-0.987916,-0.154989, 0.000000,-0.000000;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3;-0.000000, 2.406491,-0.000000;;, - 1;3; 0.000000, 2.406491, 0.000000;;, - 2;3; 0.000000, 2.406491,-0.000000;;, - 3;3; 0.000000, 2.406491, 0.000000;;, - 4;3; 0.000000, 2.406491,-0.000000;;, - 5;3; 0.000000, 2.406491,-0.000000;;, - 6;3; 0.000000, 2.406491,-0.000000;;, - 7;3; 0.000000, 2.406491, 0.000000;;, - 8;3; 0.000000, 2.406491, 0.000000;;, - 9;3; 0.000000, 2.406491, 0.000000;;, - 10;3;-0.000000, 2.406491, 0.000000;;, - 11;3; 0.000000, 2.406491,-0.000000;;, - 12;3;-0.000000, 2.406491,-0.000000;;, - 13;3; 0.000000, 2.406491,-0.000000;;, - 14;3; 0.000000, 2.406491, 0.000000;;, - 15;3; 0.000000, 2.406491,-0.000000;;, - 16;3;-0.000000, 2.406491, 0.000000;;, - 17;3; 0.000000, 2.406491, 0.000000;;, - 18;3; 0.000000, 2.406491, 0.000000;;, - 19;3; 0.000000, 2.406491,-0.000000;;, - 20;3; 0.000000, 2.406491,-0.000000;;, - 21;3;-0.000000, 2.406491,-0.000000;;, - 22;3; 0.000000, 2.406491,-0.000000;;, - 23;3; 0.000000, 2.406491, 0.000000;;, - 24;3; 0.000000, 2.406491, 0.000000;;, - 25;3; 0.000000, 2.406491,-0.000000;;, - 26;3; 0.000000, 2.406491, 0.000000;;, - 27;3; 0.000000, 2.406491, 0.000000;;, - 28;3; 0.000000, 2.406491, 0.000000;;, - 29;3;-0.000000, 2.406491, 0.000000;;, - 30;3; 0.000000, 2.406491, 0.000000;;, - 31;3; 0.000000, 2.406491, 0.000000;;, - 32;3; 0.000000, 2.406491,-0.000000;;, - 33;3; 0.000000, 2.406491, 0.000000;;, - 34;3; 0.000000, 2.406491, 0.000000;;, - 35;3; 0.000000, 2.406491, 0.000000;;, - 36;3; 0.000000, 2.406491,-0.000000;;, - 37;3; 0.000000, 2.406491, 0.000000;;, - 38;3; 0.000000, 2.406491, 0.000000;;, - 39;3;-0.000000, 2.406491,-0.000000;;, - 40;3;-0.000000, 2.406491,-0.000000;;, - 41;3; 0.000000, 2.406491,-0.000000;;, - 42;3;-0.000000, 2.406491,-0.000000;;, - 43;3;-0.000000, 2.406491,-0.000000;;, - 44;3; 0.000000, 2.406491,-0.000000;;, - 45;3;-0.000000, 2.406491, 0.000000;;, - 46;3; 0.000000, 2.406491,-0.000000;;, - 47;3;-0.000000, 2.406491, 0.000000;;, - 48;3; 0.000000, 2.406491,-0.000000;;, - 49;3; 0.000000, 2.406491,-0.000000;;, - 50;3;-0.000000, 2.406491,-0.000000;;, - 51;3;-0.000000, 2.406491,-0.000000;;, - 52;3;-0.000000, 2.406491,-0.000000;;, - 53;3; 0.000000, 2.406491, 0.000000;;, - 54;3; 0.000000, 2.406491, 0.000000;;, - 55;3;-0.000000, 2.406491,-0.000000;;, - 56;3; 0.000000, 2.406491, 0.000000;;, - 57;3; 0.000000, 2.406491, 0.000000;;, - 58;3; 0.000000, 2.406491,-0.000000;;, - 59;3; 0.000000, 2.406491, 0.000000;;, - 60;3; 0.000000, 2.406492,-0.000000;;, - 61;3;-0.000000, 2.406491,-0.000000;;, - 62;3; 0.000000, 2.406491,-0.000000;;, - 63;3;-0.000000, 2.406491, 0.000000;;, - 64;3;-0.000000, 2.406491, 0.000000;;, - 65;3; 0.000000, 2.406491,-0.000000;;, - 66;3; 0.000000, 2.406491, 0.000000;;, - 67;3; 0.000000, 2.406491, 0.000000;;, - 68;3; 0.000000, 2.406491, 0.000000;;, - 69;3; 0.000000, 2.406491, 0.000000;;, - 70;3; 0.000000, 2.406491, 0.000000;;, - 71;3; 0.000000, 2.406491, 0.000000;;, - 72;3; 0.000000, 2.406491,-0.000000;;, - 73;3; 0.000000, 2.406491,-0.000000;;, - 74;3; 0.000000, 2.406491, 0.000000;;, - 75;3; 0.000000, 2.406491, 0.000000;;, - 76;3; 0.000000, 2.406491,-0.000000;;, - 77;3; 0.000000, 2.406491,-0.000000;;, - 78;3; 0.000000, 2.406491,-0.000000;;, - 79;3; 0.000000, 2.406491, 0.000000;;, - 80;3;-0.000000, 2.406491, 0.000000;;, - 81;3; 0.000000, 2.406491, 0.000000;;, - 82;3; 0.000000, 2.406491, 0.000000;;, - 83;3; 0.000000, 2.406491, 0.000000;;, - 84;3; 0.000000, 2.406491, 0.000000;;, - 85;3;-0.000000, 2.406491, 0.000000;;, - 86;3;-0.000000, 2.406491, 0.000000;;, - 87;3; 0.000000, 2.406491,-0.000000;;, - 88;3;-0.000000, 2.406491,-0.000000;;, - 89;3; 0.000000, 2.406491, 0.000000;;, - 90;3;-0.000000, 2.406491,-0.000000;;, - 91;3;-0.000000, 2.406491, 0.000000;;, - 92;3;-0.000000, 2.406491, 0.000000;;, - 93;3;-0.000000, 2.406491,-0.000000;;, - 94;3;-0.000000, 2.406492,-0.000000;;, - 95;3; 0.000000, 2.406491,-0.000000;;, - 96;3;-0.000000, 2.406491,-0.000000;;, - 97;3; 0.000000, 2.406491,-0.000000;;, - 98;3;-0.000000, 2.406491,-0.000000;;, - 99;3; 0.000000, 2.406491, 0.000000;;, - 100;3;-0.000000, 2.406491, 0.000000;;, - 101;3; 0.000000, 2.406491, 0.000000;;, - 102;3; 0.000000, 2.406491,-0.000000;;, - 103;3;-0.000000, 2.406491, 0.000000;;, - 104;3; 0.000000, 2.406491, 0.000000;;, - 105;3;-0.000000, 2.406491, 0.000000;;, - 106;3;-0.000000, 2.406491, 0.000000;;, - 107;3; 0.000000, 2.406491,-0.000000;;, - 108;3;-0.000000, 2.406491,-0.000000;;, - 109;3;-0.000000, 2.406491,-0.000000;;, - 110;3;-0.000000, 2.406491, 0.000000;;, - 111;3; 0.000000, 2.406491,-0.000000;;, - 112;3;-0.000000, 2.406491,-0.000000;;, - 113;3; 0.000000, 2.406491, 0.000000;;, - 114;3;-0.000000, 2.406491, 0.000000;;, - 115;3;-0.000000, 2.406491, 0.000000;;, - 116;3;-0.000000, 2.406491, 0.000000;;, - 117;3;-0.000000, 2.406491, 0.000000;;, - 118;3;-0.000000, 2.406491, 0.000000;;, - 119;3;-0.000000, 2.406491,-0.000000;;, - 120;3;-0.000000, 2.406491,-0.000000;;, - 121;3; 0.000000, 2.406491, 0.000000;;, - 122;3;-0.000000, 2.406491,-0.000000;;, - 123;3; 0.000000, 2.406491, 0.000000;;, - 124;3; 0.000000, 2.406491,-0.000000;;, - 125;3; 0.000000, 2.406491, 0.000000;;, - 126;3;-0.000000, 2.406491,-0.000000;;, - 127;3;-0.000000, 2.406491,-0.000000;;, - 128;3; 0.000000, 2.406491,-0.000000;;, - 129;3;-0.000000, 2.406491, 0.000000;;, - 130;3;-0.000000, 2.406491,-0.000000;;, - 131;3; 0.000000, 2.406491,-0.000000;;, - 132;3;-0.000000, 2.406491, 0.000000;;, - 133;3;-0.000000, 2.406491, 0.000000;;, - 134;3;-0.000000, 2.406491,-0.000000;;, - 135;3; 0.000000, 2.406491, 0.000000;;, - 136;3;-0.000000, 2.406491,-0.000000;;, - 137;3;-0.000000, 2.406491, 0.000000;;, - 138;3; 0.000000, 2.406491, 0.000000;;, - 139;3;-0.000000, 2.406491, 0.000000;;, - 140;3; 0.000000, 2.406491, 0.000000;;, - 141;3; 0.000000, 2.406491,-0.000000;;, - 142;3; 0.000000, 2.406491, 0.000000;;, - 143;3;-0.000000, 2.406491, 0.000000;;, - 144;3; 0.000000, 2.406492, 0.000000;;, - 145;3;-0.000000, 2.406491, 0.000000;;, - 146;3;-0.000000, 2.406491, 0.000000;;, - 147;3; 0.000000, 2.406491,-0.000000;;, - 148;3; 0.000000, 2.406491,-0.000000;;, - 149;3;-0.000000, 2.406491,-0.000000;;, - 150;3;-0.000000, 2.406491,-0.000000;;, - 151;3;-0.000000, 2.406491,-0.000000;;, - 152;3;-0.000000, 2.406491,-0.000000;;, - 153;3;-0.000000, 2.406491,-0.000000;;, - 154;3;-0.000000, 2.406491,-0.000000;;, - 155;3;-0.000000, 2.406491,-0.000000;;, - 156;3;-0.000000, 2.406491,-0.000000;;, - 157;3;-0.000000, 2.406491,-0.000000;;, - 158;3;-0.000000, 2.406491,-0.000000;;, - 159;3;-0.000000, 2.406491,-0.000000;;, - 160;3;-0.000000, 2.406491,-0.000000;;, - 161;3;-0.000000, 2.406491,-0.000000;;, - 162;3;-0.000000, 2.406491,-0.000000;;, - 163;3;-0.000000, 2.406491,-0.000000;;, - 164;3;-0.000000, 2.406491,-0.000000;;, - 165;3;-0.000000, 2.406491,-0.000000;;, - 166;3;-0.000000, 2.406491,-0.000000;;, - 167;3;-0.000000, 2.406491,-0.000000;;, - 168;3;-0.000000, 2.406491,-0.000000;;, - 169;3;-0.000000, 2.406491,-0.000000;;, - 170;3;-0.000000, 2.406491,-0.000000;;, - 171;3;-0.000000, 2.406491,-0.000000;;, - 172;3;-0.000000, 2.406491,-0.000000;;, - 173;3;-0.000000, 2.406491,-0.000000;;, - 174;3;-0.000000, 2.406491,-0.000000;;, - 175;3;-0.000000, 2.406491,-0.000000;;, - 176;3;-0.000000, 2.406491,-0.000000;;, - 177;3;-0.000000, 2.406491,-0.000000;;, - 178;3;-0.000000, 2.406491,-0.000000;;, - 179;3;-0.000000, 2.406491,-0.000000;;, - 180;3;-0.000000, 2.406491,-0.000000;;, - 181;3;-0.000000, 2.406491,-0.000000;;, - 182;3;-0.000000, 2.406491,-0.000000;;, - 183;3;-0.000000, 2.406491,-0.000000;;, - 184;3;-0.000000, 2.406491,-0.000000;;, - 185;3;-0.000000, 2.406491,-0.000000;;, - 186;3;-0.000000, 2.406491,-0.000000;;, - 187;3;-0.000000, 2.406491,-0.000000;;, - 188;3;-0.000000, 2.406491,-0.000000;;, - 189;3;-0.000000, 2.406491,-0.000000;;, - 190;3;-0.000000, 2.406491,-0.000000;;, - 191;3;-0.000000, 2.406491,-0.000000;;, - 192;3;-0.000000, 2.406491,-0.000000;;, - 193;3;-0.000000, 2.406491,-0.000000;;, - 194;3;-0.000000, 2.406491,-0.000000;;, - 195;3;-0.000000, 2.406491,-0.000000;;, - 196;3;-0.000000, 2.406491,-0.000000;;, - 197;3;-0.000000, 2.406491,-0.000000;;, - 198;3;-0.000000, 2.406491,-0.000000;;, - 199;3;-0.000000, 2.406491,-0.000000;;, - 200;3;-0.000000, 2.406491,-0.000000;;, - 201;3;-0.000000, 2.406491,-0.000000;;, - 202;3;-0.000000, 2.406491,-0.000000;;, - 203;3;-0.000000, 2.406491,-0.000000;;, - 204;3;-0.000000, 2.406491,-0.000000;;, - 205;3;-0.000000, 2.406491,-0.000000;;, - 206;3;-0.000000, 2.406491,-0.000000;;, - 207;3;-0.000000, 2.406491,-0.000000;;, - 208;3;-0.000000, 2.406491,-0.000000;;, - 209;3;-0.000000, 2.406491,-0.000000;;, - 210;3;-0.000000, 2.406491,-0.000000;;, - 211;3;-0.000000, 2.406491,-0.000000;;, - 212;3;-0.000000, 2.406491,-0.000000;;, - 213;3;-0.000000, 2.406491,-0.000000;;, - 214;3;-0.000000, 2.406491,-0.000000;;, - 215;3;-0.000000, 2.406491,-0.000000;;, - 216;3;-0.000000, 2.406491,-0.000000;;, - 217;3;-0.000000, 2.406491,-0.000000;;, - 218;3;-0.000000, 2.406491,-0.000000;;, - 219;3;-0.000000, 2.406491,-0.000000;;, - 220;3;-0.000000, 2.406491,-0.000000;;, - 221;3;-0.000000, 2.406491,-0.000000;;, - 222;3;-0.000000, 2.406491,-0.000000;;, - 223;3;-0.000000, 2.406491,-0.000000;;, - 224;3;-0.000000, 2.406491,-0.000000;;, - 225;3;-0.000000, 2.406491,-0.000000;;, - 226;3;-0.000000, 2.406491,-0.000000;;, - 227;3;-0.000000, 2.406491,-0.000000;;, - 228;3;-0.000000, 2.406491,-0.000000;;, - 229;3;-0.000000, 2.406491,-0.000000;;, - 230;3;-0.000000, 2.406491,-0.000000;;, - 231;3;-0.000000, 2.406491,-0.000000;;, - 232;3;-0.000000, 2.406491,-0.000000;;, - 233;3;-0.000000, 2.406491,-0.000000;;, - 234;3;-0.000000, 2.406491,-0.000000;;, - 235;3;-0.000000, 2.406491,-0.000000;;, - 236;3;-0.000000, 2.406491,-0.000000;;, - 237;3;-0.000000, 2.406491,-0.000000;;, - 238;3;-0.000000, 2.406491,-0.000000;;, - 239;3;-0.000000, 2.406491,-0.000000;;, - 240;3;-0.000000, 2.406491,-0.000000;;, - 241;3;-0.000000, 2.406491,-0.000000;;, - 242;3;-0.000000, 2.406491,-0.000000;;, - 243;3;-0.000000, 2.406491,-0.000000;;, - 244;3;-0.000000, 2.406491,-0.000000;;, - 245;3;-0.000000, 2.406491,-0.000000;;, - 246;3;-0.000000, 2.406491,-0.000000;;, - 247;3;-0.000000, 2.406491,-0.000000;;, - 248;3;-0.000000, 2.406491,-0.000000;;, - 249;3;-0.000000, 2.406491,-0.000000;;; - } - } - Animation { - {Armature_Bone_039} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 1;4;-0.982329,-0.187065, 0.000000,-0.000000;;, - 2;4;-0.982545,-0.185626, 0.000000,-0.000000;;, - 3;4;-0.982906,-0.183221, 0.000000,-0.000000;;, - 4;4;-0.983410,-0.179871, 0.000000,-0.000000;;, - 5;4;-0.984049,-0.175624, 0.000000,-0.000000;;, - 6;4;-0.984809,-0.170566, 0.000000,-0.000000;;, - 7;4;-0.985674,-0.164819, 0.000000,-0.000000;;, - 8;4;-0.986617,-0.158545, 0.000000,-0.000000;;, - 9;4;-0.987610,-0.151940, 0.000000,-0.000000;;, - 10;4;-0.988620,-0.145222, 0.000000,-0.000000;;, - 11;4;-0.989613,-0.138618, 0.000000,-0.000000;;, - 12;4;-0.990557,-0.132344, 0.000000,-0.000000;;, - 13;4;-0.991421,-0.126597, 0.000000,-0.000000;;, - 14;4;-0.992182,-0.121539, 0.000000,-0.000000;;, - 15;4;-0.992820,-0.117292, 0.000000,-0.000000;;, - 16;4;-0.993324,-0.113942, 0.000000,-0.000000;;, - 17;4;-0.993685,-0.111537, 0.000000,-0.000000;;, - 18;4;-0.993902,-0.110098, 0.000000,-0.000000;;, - 19;4;-0.993973,-0.109622, 0.000000,-0.000000;;, - 20;4;-0.993909,-0.110052, 0.000000,-0.000000;;, - 21;4;-0.993714,-0.111349, 0.000000,-0.000000;;, - 22;4;-0.993387,-0.113520, 0.000000,-0.000000;;, - 23;4;-0.992932,-0.116548, 0.000000,-0.000000;;, - 24;4;-0.992353,-0.120397, 0.000000,-0.000000;;, - 25;4;-0.991661,-0.125001, 0.000000,-0.000000;;, - 26;4;-0.990870,-0.130264, 0.000000,-0.000000;;, - 27;4;-0.989998,-0.136057, 0.000000,-0.000000;;, - 28;4;-0.989071,-0.142223, 0.000000,-0.000000;;, - 29;4;-0.988115,-0.148581, 0.000000,-0.000000;;, - 30;4;-0.987159,-0.154940, 0.000000,-0.000000;;, - 31;4;-0.986232,-0.161106, 0.000000,-0.000000;;, - 32;4;-0.985361,-0.166899, 0.000000,-0.000000;;, - 33;4;-0.984569,-0.172162, 0.000000,-0.000000;;, - 34;4;-0.983877,-0.176766, 0.000000,-0.000000;;, - 35;4;-0.983298,-0.180615, 0.000000,-0.000000;;, - 36;4;-0.982843,-0.183643, 0.000000,-0.000000;;, - 37;4;-0.982517,-0.185813, 0.000000,-0.000000;;, - 38;4;-0.982322,-0.187111, 0.000000,-0.000000;;, - 39;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 40;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 41;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 42;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 43;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 44;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 45;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 46;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 47;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 48;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 49;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 50;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 51;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 52;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 53;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 54;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 55;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 56;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 57;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 58;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 59;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 60;4;-0.982563,-0.185292, 0.000160,-0.000444;;, - 61;4;-0.983484,-0.178526, 0.000640,-0.001782;;, - 62;4;-0.984981,-0.167523, 0.001421,-0.003956;;, - 63;4;-0.986939,-0.153133, 0.002442,-0.006800;;, - 64;4;-0.989157,-0.136831, 0.003599,-0.010022;;, - 65;4;-0.991375,-0.120529, 0.004757,-0.013244;;, - 66;4;-0.993333,-0.106139, 0.005778,-0.016088;;, - 67;4;-0.994830,-0.095137, 0.006559,-0.018262;;, - 68;4;-0.995751,-0.088370, 0.007039,-0.019600;;, - 69;4;-0.996057,-0.086122, 0.007199,-0.020044;;, - 70;4;-0.996023,-0.086370, 0.007181,-0.019995;;, - 71;4;-0.995922,-0.087118, 0.007128,-0.019847;;, - 72;4;-0.995751,-0.088370, 0.007039,-0.019600;;, - 73;4;-0.995512,-0.090128, 0.006915,-0.019252;;, - 74;4;-0.995205,-0.092387, 0.006754,-0.018806;;, - 75;4;-0.994830,-0.095137, 0.006559,-0.018262;;, - 76;4;-0.994391,-0.098362, 0.006330,-0.017625;;, - 77;4;-0.993891,-0.102040, 0.006069,-0.016898;;, - 78;4;-0.993333,-0.106139, 0.005778,-0.016088;;, - 79;4;-0.992724,-0.110620, 0.005460,-0.015202;;, - 80;4;-0.992068,-0.115435, 0.005118,-0.014251;;, - 81;4;-0.991375,-0.120529, 0.004757,-0.013244;;, - 82;4;-0.990653,-0.125840, 0.004380,-0.012194;;, - 83;4;-0.989910,-0.131298, 0.003992,-0.011116;;, - 84;4;-0.989157,-0.136831, 0.003599,-0.010022;;, - 85;4;-0.988404,-0.142364, 0.003207,-0.008928;;, - 86;4;-0.987661,-0.147823, 0.002819,-0.007850;;, - 87;4;-0.986939,-0.153133, 0.002442,-0.006800;;, - 88;4;-0.986246,-0.158227, 0.002081,-0.005793;;, - 89;4;-0.985590,-0.163043, 0.001739,-0.004842;;, - 90;4;-0.984981,-0.167523, 0.001421,-0.003956;;, - 91;4;-0.984423,-0.171622, 0.001130,-0.003146;;, - 92;4;-0.983923,-0.175300, 0.000869,-0.002419;;, - 93;4;-0.983484,-0.178526, 0.000640,-0.001782;;, - 94;4;-0.983109,-0.181276, 0.000445,-0.001238;;, - 95;4;-0.982802,-0.183535, 0.000284,-0.000792;;, - 96;4;-0.982563,-0.185292, 0.000160,-0.000444;;, - 97;4;-0.982392,-0.186545, 0.000071,-0.000197;;, - 98;4;-0.982291,-0.187293, 0.000018,-0.000049;;, - 99;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 100;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 101;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 102;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 103;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 104;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 105;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 106;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 107;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 108;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 109;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 110;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 111;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 112;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 113;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 114;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 115;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 116;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 117;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 118;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 119;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 120;4;-0.983833,-0.170459, 0.000000,-0.000000;;, - 121;4;-0.988273,-0.122345, 0.000000,-0.000000;;, - 122;4;-0.993973,-0.060567, 0.000000,-0.000000;;, - 123;4;-0.998413,-0.012453, 0.000000, 0.000000;;, - 124;4;-0.999989, 0.004628, 0.000000, 0.000000;;, - 125;4;-0.999215,-0.007501, 0.000000, 0.000000;;, - 126;4;-0.997032,-0.041664, 0.000000,-0.000000;;, - 127;4;-0.994230,-0.085530, 0.000000,-0.000000;;, - 128;4;-0.992048,-0.119694, 0.000000,-0.000000;;, - 129;4;-0.991273,-0.131823, 0.000000,-0.000000;;, - 130;4;-0.992048,-0.130976, 0.000000,-0.000000;;, - 131;4;-0.994230,-0.123659, 0.000000,-0.000000;;, - 132;4;-0.997032,-0.101021, 0.000000,-0.000000;;, - 133;4;-0.999215,-0.057617, 0.000000, 0.000000;;, - 134;4;-0.999989, 0.004628, 0.000000, 0.000000;;, - 135;4;-0.969713, 0.121161, 0.000000, 0.000000;;, - 136;4;-0.884434, 0.317475, 0.000000, 0.000000;;, - 137;4;-0.774936, 0.536448, 0.000000,-0.000000;;, - 138;4;-0.689657, 0.696676, 0.000000,-0.000000;;, - 139;4;-0.659381, 0.751809, 0.000000,-0.000000;;, - 140;4;-0.689050, 0.710526, 0.000000, 0.000000;;, - 141;4;-0.772618, 0.587614,-0.000000, 0.000000;;, - 142;4;-0.879918, 0.412002,-0.000000, 0.000000;;, - 143;4;-0.963486, 0.240596,-0.000000, 0.000000;;, - 144;4;-0.993155, 0.116803,-0.000000, 0.000000;;, - 145;4;-0.992186, 0.022403,-0.000000, 0.000000;;, - 146;4;-0.989458,-0.066214,-0.000000, 0.000000;;, - 147;4;-0.985954,-0.135526,-0.000000, 0.000000;;, - 148;4;-0.983226,-0.175649, 0.000000,-0.000000;;, - 149;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 150;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 151;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 152;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 153;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 154;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 155;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 156;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 157;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 158;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 159;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 160;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 161;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 162;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 163;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 164;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 165;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 166;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 167;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 168;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 169;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 170;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 171;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 172;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 173;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 174;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 175;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 176;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 177;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 178;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 179;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 180;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 181;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 182;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 183;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 184;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 185;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 186;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 187;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 188;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 189;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 190;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 191;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 192;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 193;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 194;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 195;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 196;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 197;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 198;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 199;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 200;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 201;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 202;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 203;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 204;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 205;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 206;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 207;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 208;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 209;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 210;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 211;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 212;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 213;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 214;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 215;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 216;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 217;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 218;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 219;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 220;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 221;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 222;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 223;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 224;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 225;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 226;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 227;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 228;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 229;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 230;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 231;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 232;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 233;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 234;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 235;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 236;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 237;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 238;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 239;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 240;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 241;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 242;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 243;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 244;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 245;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 246;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 247;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 248;4;-0.982257,-0.187541, 0.000000,-0.000000;;, - 249;4;-0.982257,-0.187541, 0.000000,-0.000000;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3;-0.000000, 2.366877,-0.000000;;, - 1;3;-0.000000, 2.366877,-0.000000;;, - 2;3;-0.000000, 2.366877,-0.000000;;, - 3;3;-0.000000, 2.366877,-0.000000;;, - 4;3;-0.000000, 2.366877, 0.000000;;, - 5;3;-0.000000, 2.366877,-0.000000;;, - 6;3;-0.000000, 2.366877,-0.000000;;, - 7;3;-0.000000, 2.366877,-0.000000;;, - 8;3; 0.000000, 2.366877,-0.000000;;, - 9;3;-0.000000, 2.366876,-0.000000;;, - 10;3;-0.000000, 2.366877,-0.000000;;, - 11;3;-0.000000, 2.366877,-0.000000;;, - 12;3;-0.000000, 2.366877, 0.000000;;, - 13;3;-0.000000, 2.366877, 0.000000;;, - 14;3;-0.000000, 2.366877,-0.000000;;, - 15;3;-0.000000, 2.366877, 0.000000;;, - 16;3;-0.000000, 2.366877, 0.000000;;, - 17;3;-0.000000, 2.366877, 0.000000;;, - 18;3;-0.000000, 2.366877, 0.000000;;, - 19;3;-0.000000, 2.366877,-0.000000;;, - 20;3;-0.000000, 2.366877, 0.000000;;, - 21;3;-0.000000, 2.366876, 0.000000;;, - 22;3;-0.000000, 2.366877,-0.000000;;, - 23;3;-0.000000, 2.366877,-0.000000;;, - 24;3;-0.000000, 2.366877,-0.000000;;, - 25;3;-0.000000, 2.366877,-0.000000;;, - 26;3;-0.000000, 2.366877, 0.000000;;, - 27;3;-0.000000, 2.366877, 0.000000;;, - 28;3;-0.000000, 2.366876,-0.000000;;, - 29;3;-0.000000, 2.366877, 0.000000;;, - 30;3;-0.000000, 2.366877,-0.000000;;, - 31;3;-0.000000, 2.366877, 0.000000;;, - 32;3;-0.000000, 2.366877, 0.000000;;, - 33;3; 0.000000, 2.366877,-0.000000;;, - 34;3;-0.000000, 2.366877,-0.000000;;, - 35;3;-0.000000, 2.366877,-0.000000;;, - 36;3;-0.000000, 2.366877,-0.000000;;, - 37;3;-0.000000, 2.366877,-0.000000;;, - 38;3;-0.000000, 2.366877,-0.000000;;, - 39;3;-0.000000, 2.366877,-0.000000;;, - 40;3; 0.000000, 2.366876, 0.000000;;, - 41;3; 0.000000, 2.366878, 0.000000;;, - 42;3; 0.000000, 2.366877,-0.000000;;, - 43;3;-0.000000, 2.366877, 0.000000;;, - 44;3; 0.000000, 2.366876,-0.000000;;, - 45;3; 0.000000, 2.366877, 0.000000;;, - 46;3; 0.000000, 2.366877, 0.000000;;, - 47;3;-0.000000, 2.366877, 0.000000;;, - 48;3; 0.000000, 2.366877, 0.000000;;, - 49;3;-0.000000, 2.366877, 0.000000;;, - 50;3; 0.000000, 2.366877, 0.000000;;, - 51;3; 0.000000, 2.366877, 0.000000;;, - 52;3;-0.000000, 2.366877,-0.000000;;, - 53;3; 0.000000, 2.366877, 0.000000;;, - 54;3;-0.000000, 2.366877,-0.000000;;, - 55;3; 0.000000, 2.366876,-0.000000;;, - 56;3;-0.000000, 2.366877, 0.000000;;, - 57;3;-0.000000, 2.366877,-0.000000;;, - 58;3;-0.000000, 2.366877,-0.000000;;, - 59;3;-0.000000, 2.366877, 0.000000;;, - 60;3;-0.000000, 2.366877, 0.000000;;, - 61;3;-0.000000, 2.366876,-0.000000;;, - 62;3; 0.000000, 2.366877,-0.000000;;, - 63;3; 0.000000, 2.366876, 0.000000;;, - 64;3; 0.000000, 2.366877,-0.000000;;, - 65;3; 0.000000, 2.366877,-0.000000;;, - 66;3; 0.000000, 2.366876, 0.000000;;, - 67;3; 0.000000, 2.366877, 0.000000;;, - 68;3;-0.000000, 2.366877, 0.000000;;, - 69;3;-0.000000, 2.366877,-0.000000;;, - 70;3;-0.000000, 2.366877, 0.000000;;, - 71;3;-0.000000, 2.366877, 0.000000;;, - 72;3;-0.000000, 2.366877, 0.000000;;, - 73;3;-0.000000, 2.366877, 0.000000;;, - 74;3;-0.000000, 2.366876, 0.000000;;, - 75;3; 0.000000, 2.366877,-0.000000;;, - 76;3; 0.000000, 2.366877, 0.000000;;, - 77;3;-0.000000, 2.366877, 0.000000;;, - 78;3; 0.000000, 2.366877,-0.000000;;, - 79;3; 0.000000, 2.366876,-0.000000;;, - 80;3;-0.000000, 2.366877,-0.000000;;, - 81;3; 0.000000, 2.366877,-0.000000;;, - 82;3;-0.000000, 2.366877,-0.000000;;, - 83;3;-0.000000, 2.366876, 0.000000;;, - 84;3; 0.000000, 2.366877,-0.000000;;, - 85;3;-0.000000, 2.366877,-0.000000;;, - 86;3; 0.000000, 2.366878, 0.000000;;, - 87;3;-0.000000, 2.366877, 0.000001;;, - 88;3; 0.000000, 2.366877,-0.000000;;, - 89;3;-0.000000, 2.366877, 0.000000;;, - 90;3;-0.000000, 2.366877,-0.000000;;, - 91;3; 0.000000, 2.366877, 0.000000;;, - 92;3; 0.000000, 2.366877, 0.000001;;, - 93;3; 0.000000, 2.366877,-0.000000;;, - 94;3; 0.000000, 2.366877,-0.000000;;, - 95;3; 0.000000, 2.366877, 0.000000;;, - 96;3; 0.000000, 2.366876,-0.000000;;, - 97;3; 0.000000, 2.366876, 0.000000;;, - 98;3; 0.000000, 2.366877, 0.000000;;, - 99;3;-0.000000, 2.366877, 0.000000;;, - 100;3; 0.000000, 2.366877,-0.000000;;, - 101;3;-0.000000, 2.366877, 0.000000;;, - 102;3; 0.000000, 2.366876,-0.000000;;, - 103;3; 0.000000, 2.366877, 0.000000;;, - 104;3;-0.000000, 2.366877,-0.000000;;, - 105;3;-0.000000, 2.366877,-0.000000;;, - 106;3;-0.000000, 2.366877, 0.000000;;, - 107;3;-0.000001, 2.366877,-0.000000;;, - 108;3; 0.000000, 2.366877,-0.000000;;, - 109;3; 0.000000, 2.366878, 0.000000;;, - 110;3; 0.000000, 2.366878, 0.000000;;, - 111;3; 0.000000, 2.366877,-0.000000;;, - 112;3; 0.000000, 2.366877, 0.000000;;, - 113;3;-0.000000, 2.366877, 0.000000;;, - 114;3;-0.000000, 2.366877,-0.000000;;, - 115;3; 0.000000, 2.366877, 0.000000;;, - 116;3; 0.000000, 2.366877, 0.000000;;, - 117;3; 0.000000, 2.366877, 0.000000;;, - 118;3; 0.000000, 2.366877,-0.000000;;, - 119;3;-0.000000, 2.366877,-0.000000;;, - 120;3;-0.000000, 2.366877, 0.000000;;, - 121;3; 0.000000, 2.366877,-0.000000;;, - 122;3; 0.000000, 2.366877, 0.000000;;, - 123;3; 0.000000, 2.366877, 0.000000;;, - 124;3; 0.000000, 2.366877, 0.000000;;, - 125;3; 0.000000, 2.366877, 0.000000;;, - 126;3; 0.000000, 2.366877, 0.000000;;, - 127;3;-0.000000, 2.366877,-0.000000;;, - 128;3; 0.000000, 2.366877, 0.000000;;, - 129;3;-0.000000, 2.366877, 0.000000;;, - 130;3; 0.000000, 2.366877,-0.000000;;, - 131;3;-0.000000, 2.366877,-0.000000;;, - 132;3;-0.000000, 2.366877, 0.000000;;, - 133;3; 0.000000, 2.366877,-0.000000;;, - 134;3;-0.000000, 2.366877,-0.000000;;, - 135;3;-0.000000, 2.366877, 0.000000;;, - 136;3; 0.000000, 2.366877,-0.000000;;, - 137;3; 0.000000, 2.366877, 0.000000;;, - 138;3; 0.000000, 2.366877, 0.000000;;, - 139;3;-0.000000, 2.366877, 0.000000;;, - 140;3; 0.000000, 2.366877,-0.000000;;, - 141;3; 0.000000, 2.366877,-0.000000;;, - 142;3; 0.000000, 2.366877,-0.000000;;, - 143;3;-0.000000, 2.366876, 0.000000;;, - 144;3; 0.000000, 2.366877,-0.000000;;, - 145;3; 0.000000, 2.366877, 0.000000;;, - 146;3;-0.000000, 2.366877,-0.000000;;, - 147;3; 0.000000, 2.366877, 0.000000;;, - 148;3; 0.000000, 2.366877, 0.000000;;, - 149;3;-0.000000, 2.366877,-0.000000;;, - 150;3;-0.000000, 2.366877,-0.000000;;, - 151;3;-0.000000, 2.366877,-0.000000;;, - 152;3;-0.000000, 2.366877,-0.000000;;, - 153;3;-0.000000, 2.366877,-0.000000;;, - 154;3;-0.000000, 2.366877,-0.000000;;, - 155;3;-0.000000, 2.366877,-0.000000;;, - 156;3;-0.000000, 2.366877,-0.000000;;, - 157;3;-0.000000, 2.366877,-0.000000;;, - 158;3;-0.000000, 2.366877,-0.000000;;, - 159;3;-0.000000, 2.366877,-0.000000;;, - 160;3;-0.000000, 2.366877,-0.000000;;, - 161;3;-0.000000, 2.366877,-0.000000;;, - 162;3;-0.000000, 2.366877,-0.000000;;, - 163;3;-0.000000, 2.366877,-0.000000;;, - 164;3;-0.000000, 2.366877,-0.000000;;, - 165;3;-0.000000, 2.366877,-0.000000;;, - 166;3;-0.000000, 2.366877,-0.000000;;, - 167;3;-0.000000, 2.366877,-0.000000;;, - 168;3;-0.000000, 2.366877,-0.000000;;, - 169;3;-0.000000, 2.366877,-0.000000;;, - 170;3;-0.000000, 2.366877,-0.000000;;, - 171;3;-0.000000, 2.366877,-0.000000;;, - 172;3;-0.000000, 2.366877,-0.000000;;, - 173;3;-0.000000, 2.366877,-0.000000;;, - 174;3;-0.000000, 2.366877,-0.000000;;, - 175;3;-0.000000, 2.366877,-0.000000;;, - 176;3;-0.000000, 2.366877,-0.000000;;, - 177;3;-0.000000, 2.366877,-0.000000;;, - 178;3;-0.000000, 2.366877,-0.000000;;, - 179;3;-0.000000, 2.366877,-0.000000;;, - 180;3;-0.000000, 2.366877,-0.000000;;, - 181;3;-0.000000, 2.366877,-0.000000;;, - 182;3;-0.000000, 2.366877,-0.000000;;, - 183;3;-0.000000, 2.366877,-0.000000;;, - 184;3;-0.000000, 2.366877,-0.000000;;, - 185;3;-0.000000, 2.366877,-0.000000;;, - 186;3;-0.000000, 2.366877,-0.000000;;, - 187;3;-0.000000, 2.366877,-0.000000;;, - 188;3;-0.000000, 2.366877,-0.000000;;, - 189;3;-0.000000, 2.366877,-0.000000;;, - 190;3;-0.000000, 2.366877,-0.000000;;, - 191;3;-0.000000, 2.366877,-0.000000;;, - 192;3;-0.000000, 2.366877,-0.000000;;, - 193;3;-0.000000, 2.366877,-0.000000;;, - 194;3;-0.000000, 2.366877,-0.000000;;, - 195;3;-0.000000, 2.366877,-0.000000;;, - 196;3;-0.000000, 2.366877,-0.000000;;, - 197;3;-0.000000, 2.366877,-0.000000;;, - 198;3;-0.000000, 2.366877,-0.000000;;, - 199;3;-0.000000, 2.366877,-0.000000;;, - 200;3;-0.000000, 2.366877,-0.000000;;, - 201;3;-0.000000, 2.366877,-0.000000;;, - 202;3;-0.000000, 2.366877,-0.000000;;, - 203;3;-0.000000, 2.366877,-0.000000;;, - 204;3;-0.000000, 2.366877,-0.000000;;, - 205;3;-0.000000, 2.366877,-0.000000;;, - 206;3;-0.000000, 2.366877,-0.000000;;, - 207;3;-0.000000, 2.366877,-0.000000;;, - 208;3;-0.000000, 2.366877,-0.000000;;, - 209;3;-0.000000, 2.366877,-0.000000;;, - 210;3;-0.000000, 2.366877,-0.000000;;, - 211;3;-0.000000, 2.366877,-0.000000;;, - 212;3;-0.000000, 2.366877,-0.000000;;, - 213;3;-0.000000, 2.366877,-0.000000;;, - 214;3;-0.000000, 2.366877,-0.000000;;, - 215;3;-0.000000, 2.366877,-0.000000;;, - 216;3;-0.000000, 2.366877,-0.000000;;, - 217;3;-0.000000, 2.366877,-0.000000;;, - 218;3;-0.000000, 2.366877,-0.000000;;, - 219;3;-0.000000, 2.366877,-0.000000;;, - 220;3;-0.000000, 2.366877,-0.000000;;, - 221;3;-0.000000, 2.366877,-0.000000;;, - 222;3;-0.000000, 2.366877,-0.000000;;, - 223;3;-0.000000, 2.366877,-0.000000;;, - 224;3;-0.000000, 2.366877,-0.000000;;, - 225;3;-0.000000, 2.366877,-0.000000;;, - 226;3;-0.000000, 2.366877,-0.000000;;, - 227;3;-0.000000, 2.366877,-0.000000;;, - 228;3;-0.000000, 2.366877,-0.000000;;, - 229;3;-0.000000, 2.366877,-0.000000;;, - 230;3;-0.000000, 2.366877,-0.000000;;, - 231;3;-0.000000, 2.366877,-0.000000;;, - 232;3;-0.000000, 2.366877,-0.000000;;, - 233;3;-0.000000, 2.366877,-0.000000;;, - 234;3;-0.000000, 2.366877,-0.000000;;, - 235;3;-0.000000, 2.366877,-0.000000;;, - 236;3;-0.000000, 2.366877,-0.000000;;, - 237;3;-0.000000, 2.366877,-0.000000;;, - 238;3;-0.000000, 2.366877,-0.000000;;, - 239;3;-0.000000, 2.366877,-0.000000;;, - 240;3;-0.000000, 2.366877,-0.000000;;, - 241;3;-0.000000, 2.366877,-0.000000;;, - 242;3;-0.000000, 2.366877,-0.000000;;, - 243;3;-0.000000, 2.366877,-0.000000;;, - 244;3;-0.000000, 2.366877,-0.000000;;, - 245;3;-0.000000, 2.366877,-0.000000;;, - 246;3;-0.000000, 2.366877,-0.000000;;, - 247;3;-0.000000, 2.366877,-0.000000;;, - 248;3;-0.000000, 2.366877,-0.000000;;, - 249;3;-0.000000, 2.366877,-0.000000;;; - } - } - Animation { - {Armature_Bone_010} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 1;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 2;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 3;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 4;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 5;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 6;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 7;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 8;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 9;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 10;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 11;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 12;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 13;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 14;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 15;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 16;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 17;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 18;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 19;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 20;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 21;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 22;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 23;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 24;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 25;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 26;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 27;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 28;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 29;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 30;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 31;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 32;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 33;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 34;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 35;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 36;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 37;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 38;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 39;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 40;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 41;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 42;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 43;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 44;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 45;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 46;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 47;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 48;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 49;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 50;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 51;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 52;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 53;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 54;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 55;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 56;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 57;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 58;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 59;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 60;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 61;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 62;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 63;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 64;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 65;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 66;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 67;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 68;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 69;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 70;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 71;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 72;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 73;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 74;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 75;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 76;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 77;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 78;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 79;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 80;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 81;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 82;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 83;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 84;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 85;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 86;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 87;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 88;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 89;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 90;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 91;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 92;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 93;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 94;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 95;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 96;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 97;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 98;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 99;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 100;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 101;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 102;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 103;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 104;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 105;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 106;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 107;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 108;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 109;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 110;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 111;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 112;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 113;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 114;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 115;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 116;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 117;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 118;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 119;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 120;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 121;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 122;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 123;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 124;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 125;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 126;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 127;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 128;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 129;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 130;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 131;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 132;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 133;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 134;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 135;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 136;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 137;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 138;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 139;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 140;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 141;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 142;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 143;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 144;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 145;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 146;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 147;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 148;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 149;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 150;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 151;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 152;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 153;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 154;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 155;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 156;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 157;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 158;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 159;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 160;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 161;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 162;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 163;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 164;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 165;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 166;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 167;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 168;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 169;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 170;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 171;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 172;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 173;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 174;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 175;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 176;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 177;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 178;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 179;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 180;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 181;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 182;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 183;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 184;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 185;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 186;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 187;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 188;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 189;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 190;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 191;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 192;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 193;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 194;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 195;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 196;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 197;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 198;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 199;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 200;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 201;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 202;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 203;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 204;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 205;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 206;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 207;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 208;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 209;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 210;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 211;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 212;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 213;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 214;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 215;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 216;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 217;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 218;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 219;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 220;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 221;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 222;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 223;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 224;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 225;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 226;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 227;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 228;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 229;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 230;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 231;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 232;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 233;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 234;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 235;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 236;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 237;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 238;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 239;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 240;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 241;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 242;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 243;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 244;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 245;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 246;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 247;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 248;4;-0.548103,-0.446747, 0.548103,-0.446747;;, - 249;4;-0.548103,-0.446747, 0.548103,-0.446747;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3; 0.000000, 0.705560, 0.000000;;, - 1;3; 0.000000, 0.705560, 0.000000;;, - 2;3; 0.000000, 0.705560, 0.000000;;, - 3;3; 0.000000, 0.705560, 0.000000;;, - 4;3; 0.000000, 0.705560, 0.000000;;, - 5;3; 0.000000, 0.705560, 0.000000;;, - 6;3; 0.000000, 0.705560, 0.000000;;, - 7;3; 0.000000, 0.705560, 0.000000;;, - 8;3; 0.000000, 0.705560, 0.000000;;, - 9;3; 0.000000, 0.705560, 0.000000;;, - 10;3; 0.000000, 0.705560, 0.000000;;, - 11;3; 0.000000, 0.705560, 0.000000;;, - 12;3; 0.000000, 0.705560, 0.000000;;, - 13;3; 0.000000, 0.705560, 0.000000;;, - 14;3; 0.000000, 0.705560, 0.000000;;, - 15;3; 0.000000, 0.705560, 0.000000;;, - 16;3; 0.000000, 0.705560, 0.000000;;, - 17;3; 0.000000, 0.705560, 0.000000;;, - 18;3; 0.000000, 0.705560, 0.000000;;, - 19;3; 0.000000, 0.705560, 0.000000;;, - 20;3; 0.000000, 0.705560, 0.000000;;, - 21;3; 0.000000, 0.705560, 0.000000;;, - 22;3; 0.000000, 0.705560, 0.000000;;, - 23;3; 0.000000, 0.705560, 0.000000;;, - 24;3; 0.000000, 0.705560, 0.000000;;, - 25;3; 0.000000, 0.705560, 0.000000;;, - 26;3; 0.000000, 0.705560, 0.000000;;, - 27;3; 0.000000, 0.705560, 0.000000;;, - 28;3; 0.000000, 0.705560, 0.000000;;, - 29;3; 0.000000, 0.705560, 0.000000;;, - 30;3; 0.000000, 0.705560, 0.000000;;, - 31;3; 0.000000, 0.705560, 0.000000;;, - 32;3; 0.000000, 0.705560, 0.000000;;, - 33;3; 0.000000, 0.705560, 0.000000;;, - 34;3; 0.000000, 0.705560, 0.000000;;, - 35;3; 0.000000, 0.705560, 0.000000;;, - 36;3; 0.000000, 0.705560, 0.000000;;, - 37;3; 0.000000, 0.705560, 0.000000;;, - 38;3; 0.000000, 0.705560, 0.000000;;, - 39;3; 0.000000, 0.705560, 0.000000;;, - 40;3; 0.000000, 0.705560, 0.000000;;, - 41;3; 0.000000, 0.705559, 0.000000;;, - 42;3;-0.000000, 0.705560, 0.000000;;, - 43;3; 0.000000, 0.705560,-0.000000;;, - 44;3; 0.000000, 0.705560, 0.000000;;, - 45;3; 0.000000, 0.705560,-0.000000;;, - 46;3; 0.000000, 0.705559, 0.000000;;, - 47;3;-0.000000, 0.705560, 0.000000;;, - 48;3; 0.000000, 0.705560,-0.000000;;, - 49;3; 0.000000, 0.705560, 0.000000;;, - 50;3;-0.000000, 0.705559, 0.000000;;, - 51;3; 0.000000, 0.705560,-0.000000;;, - 52;3;-0.000000, 0.705560, 0.000000;;, - 53;3; 0.000000, 0.705560,-0.000000;;, - 54;3; 0.000000, 0.705560, 0.000000;;, - 55;3; 0.000000, 0.705560,-0.000000;;, - 56;3;-0.000000, 0.705560, 0.000000;;, - 57;3; 0.000000, 0.705559, 0.000000;;, - 58;3;-0.000000, 0.705560, 0.000000;;, - 59;3; 0.000000, 0.705560, 0.000000;;, - 60;3; 0.000000, 0.705560,-0.000000;;, - 61;3; 0.000000, 0.705560, 0.000000;;, - 62;3; 0.000000, 0.705560, 0.000000;;, - 63;3; 0.000000, 0.705560, 0.000000;;, - 64;3; 0.000000, 0.705560,-0.000000;;, - 65;3;-0.000000, 0.705560, 0.000000;;, - 66;3; 0.000000, 0.705560, 0.000000;;, - 67;3;-0.000000, 0.705560, 0.000000;;, - 68;3; 0.000000, 0.705559, 0.000000;;, - 69;3; 0.000000, 0.705560, 0.000000;;, - 70;3; 0.000000, 0.705560, 0.000000;;, - 71;3;-0.000000, 0.705560, 0.000000;;, - 72;3;-0.000000, 0.705560, 0.000000;;, - 73;3;-0.000000, 0.705560, 0.000000;;, - 74;3;-0.000000, 0.705560, 0.000000;;, - 75;3;-0.000000, 0.705560, 0.000000;;, - 76;3; 0.000000, 0.705559, 0.000000;;, - 77;3;-0.000000, 0.705560, 0.000000;;, - 78;3; 0.000000, 0.705560, 0.000000;;, - 79;3;-0.000000, 0.705559, 0.000000;;, - 80;3; 0.000000, 0.705560, 0.000000;;, - 81;3;-0.000000, 0.705560, 0.000000;;, - 82;3; 0.000000, 0.705560, 0.000000;;, - 83;3; 0.000000, 0.705560, 0.000000;;, - 84;3; 0.000000, 0.705560,-0.000000;;, - 85;3;-0.000000, 0.705560, 0.000000;;, - 86;3;-0.000000, 0.705560, 0.000000;;, - 87;3; 0.000000, 0.705560,-0.000000;;, - 88;3; 0.000000, 0.705560, 0.000000;;, - 89;3; 0.000000, 0.705560, 0.000000;;, - 90;3; 0.000000, 0.705560, 0.000000;;, - 91;3; 0.000000, 0.705560, 0.000000;;, - 92;3; 0.000000, 0.705560, 0.000000;;, - 93;3; 0.000000, 0.705560, 0.000000;;, - 94;3; 0.000000, 0.705560, 0.000000;;, - 95;3; 0.000000, 0.705560, 0.000000;;, - 96;3; 0.000000, 0.705560,-0.000000;;, - 97;3; 0.000000, 0.705560,-0.000000;;, - 98;3; 0.000000, 0.705560, 0.000000;;, - 99;3; 0.000000, 0.705560, 0.000000;;, - 100;3;-0.000000, 0.705560,-0.000000;;, - 101;3; 0.000000, 0.705560,-0.000000;;, - 102;3; 0.000000, 0.705559, 0.000000;;, - 103;3;-0.000000, 0.705560,-0.000000;;, - 104;3;-0.000000, 0.705559,-0.000000;;, - 105;3;-0.000000, 0.705560,-0.000000;;, - 106;3; 0.000000, 0.705560, 0.000000;;, - 107;3;-0.000000, 0.705559,-0.000000;;, - 108;3; 0.000000, 0.705560,-0.000000;;, - 109;3; 0.000000, 0.705559,-0.000000;;, - 110;3;-0.000000, 0.705559, 0.000000;;, - 111;3; 0.000000, 0.705560,-0.000000;;, - 112;3; 0.000000, 0.705560, 0.000000;;, - 113;3; 0.000000, 0.705560,-0.000000;;, - 114;3;-0.000000, 0.705559, 0.000000;;, - 115;3; 0.000000, 0.705560, 0.000000;;, - 116;3;-0.000000, 0.705560,-0.000000;;, - 117;3; 0.000000, 0.705560, 0.000000;;, - 118;3; 0.000000, 0.705560,-0.000000;;, - 119;3; 0.000000, 0.705560, 0.000000;;, - 120;3; 0.000000, 0.705560,-0.000000;;, - 121;3; 0.000000, 0.705560,-0.000000;;, - 122;3;-0.000000, 0.705560,-0.000000;;, - 123;3; 0.000000, 0.705560, 0.000000;;, - 124;3; 0.000000, 0.705560, 0.000000;;, - 125;3; 0.000000, 0.705560, 0.000000;;, - 126;3;-0.000000, 0.705560, 0.000000;;, - 127;3;-0.000000, 0.705560, 0.000000;;, - 128;3;-0.000000, 0.705560,-0.000000;;, - 129;3; 0.000000, 0.705560, 0.000000;;, - 130;3; 0.000000, 0.705559, 0.000000;;, - 131;3; 0.000000, 0.705560, 0.000000;;, - 132;3; 0.000000, 0.705560, 0.000000;;, - 133;3; 0.000000, 0.705560,-0.000000;;, - 134;3; 0.000000, 0.705560, 0.000000;;, - 135;3; 0.000000, 0.705560, 0.000000;;, - 136;3;-0.000000, 0.705560,-0.000000;;, - 137;3; 0.000000, 0.705560, 0.000000;;, - 138;3;-0.000000, 0.705559, 0.000000;;, - 139;3;-0.000000, 0.705560,-0.000000;;, - 140;3; 0.000000, 0.705560, 0.000000;;, - 141;3; 0.000000, 0.705560, 0.000000;;, - 142;3; 0.000000, 0.705560, 0.000000;;, - 143;3; 0.000000, 0.705560,-0.000000;;, - 144;3; 0.000000, 0.705560, 0.000000;;, - 145;3; 0.000000, 0.705560,-0.000000;;, - 146;3; 0.000000, 0.705560, 0.000000;;, - 147;3; 0.000000, 0.705560,-0.000000;;, - 148;3; 0.000000, 0.705560, 0.000000;;, - 149;3; 0.000000, 0.705560, 0.000000;;, - 150;3; 0.000000, 0.705560, 0.000000;;, - 151;3; 0.000000, 0.705560, 0.000000;;, - 152;3; 0.000000, 0.705560, 0.000000;;, - 153;3; 0.000000, 0.705560, 0.000000;;, - 154;3; 0.000000, 0.705560, 0.000000;;, - 155;3; 0.000000, 0.705560, 0.000000;;, - 156;3; 0.000000, 0.705560, 0.000000;;, - 157;3; 0.000000, 0.705560, 0.000000;;, - 158;3; 0.000000, 0.705560, 0.000000;;, - 159;3; 0.000000, 0.705560, 0.000000;;, - 160;3; 0.000000, 0.705560, 0.000000;;, - 161;3; 0.000000, 0.705560, 0.000000;;, - 162;3; 0.000000, 0.705560, 0.000000;;, - 163;3; 0.000000, 0.705560, 0.000000;;, - 164;3; 0.000000, 0.705560, 0.000000;;, - 165;3; 0.000000, 0.705560, 0.000000;;, - 166;3; 0.000000, 0.705560, 0.000000;;, - 167;3; 0.000000, 0.705560, 0.000000;;, - 168;3; 0.000000, 0.705560, 0.000000;;, - 169;3; 0.000000, 0.705560, 0.000000;;, - 170;3; 0.000000, 0.705560, 0.000000;;, - 171;3; 0.000000, 0.705560, 0.000000;;, - 172;3; 0.000000, 0.705560, 0.000000;;, - 173;3; 0.000000, 0.705560, 0.000000;;, - 174;3; 0.000000, 0.705560, 0.000000;;, - 175;3; 0.000000, 0.705560, 0.000000;;, - 176;3; 0.000000, 0.705560, 0.000000;;, - 177;3; 0.000000, 0.705560, 0.000000;;, - 178;3; 0.000000, 0.705560, 0.000000;;, - 179;3; 0.000000, 0.705560, 0.000000;;, - 180;3; 0.000000, 0.705560, 0.000000;;, - 181;3; 0.000000, 0.705560, 0.000000;;, - 182;3; 0.000000, 0.705560, 0.000000;;, - 183;3; 0.000000, 0.705560, 0.000000;;, - 184;3; 0.000000, 0.705560, 0.000000;;, - 185;3; 0.000000, 0.705560, 0.000000;;, - 186;3; 0.000000, 0.705560, 0.000000;;, - 187;3; 0.000000, 0.705560, 0.000000;;, - 188;3; 0.000000, 0.705560, 0.000000;;, - 189;3; 0.000000, 0.705560, 0.000000;;, - 190;3; 0.000000, 0.705560, 0.000000;;, - 191;3; 0.000000, 0.705560, 0.000000;;, - 192;3; 0.000000, 0.705560, 0.000000;;, - 193;3; 0.000000, 0.705560, 0.000000;;, - 194;3; 0.000000, 0.705560, 0.000000;;, - 195;3; 0.000000, 0.705560, 0.000000;;, - 196;3; 0.000000, 0.705560, 0.000000;;, - 197;3; 0.000000, 0.705560, 0.000000;;, - 198;3; 0.000000, 0.705560, 0.000000;;, - 199;3; 0.000000, 0.705560, 0.000000;;, - 200;3; 0.000000, 0.705560, 0.000000;;, - 201;3; 0.000000, 0.705560, 0.000000;;, - 202;3; 0.000000, 0.705560, 0.000000;;, - 203;3; 0.000000, 0.705560, 0.000000;;, - 204;3; 0.000000, 0.705560, 0.000000;;, - 205;3; 0.000000, 0.705560, 0.000000;;, - 206;3; 0.000000, 0.705560, 0.000000;;, - 207;3; 0.000000, 0.705560, 0.000000;;, - 208;3; 0.000000, 0.705560, 0.000000;;, - 209;3; 0.000000, 0.705560, 0.000000;;, - 210;3; 0.000000, 0.705560, 0.000000;;, - 211;3; 0.000000, 0.705560, 0.000000;;, - 212;3; 0.000000, 0.705560, 0.000000;;, - 213;3; 0.000000, 0.705560, 0.000000;;, - 214;3; 0.000000, 0.705560, 0.000000;;, - 215;3; 0.000000, 0.705560, 0.000000;;, - 216;3; 0.000000, 0.705560, 0.000000;;, - 217;3; 0.000000, 0.705560, 0.000000;;, - 218;3; 0.000000, 0.705560, 0.000000;;, - 219;3; 0.000000, 0.705560, 0.000000;;, - 220;3; 0.000000, 0.705560, 0.000000;;, - 221;3; 0.000000, 0.705560, 0.000000;;, - 222;3; 0.000000, 0.705560, 0.000000;;, - 223;3; 0.000000, 0.705560, 0.000000;;, - 224;3; 0.000000, 0.705560, 0.000000;;, - 225;3; 0.000000, 0.705560, 0.000000;;, - 226;3; 0.000000, 0.705560, 0.000000;;, - 227;3; 0.000000, 0.705560, 0.000000;;, - 228;3; 0.000000, 0.705560, 0.000000;;, - 229;3; 0.000000, 0.705560, 0.000000;;, - 230;3; 0.000000, 0.705560, 0.000000;;, - 231;3; 0.000000, 0.705560, 0.000000;;, - 232;3; 0.000000, 0.705560, 0.000000;;, - 233;3; 0.000000, 0.705560, 0.000000;;, - 234;3; 0.000000, 0.705560, 0.000000;;, - 235;3; 0.000000, 0.705560, 0.000000;;, - 236;3; 0.000000, 0.705560, 0.000000;;, - 237;3; 0.000000, 0.705560, 0.000000;;, - 238;3; 0.000000, 0.705560, 0.000000;;, - 239;3; 0.000000, 0.705560, 0.000000;;, - 240;3; 0.000000, 0.705560, 0.000000;;, - 241;3; 0.000000, 0.705560, 0.000000;;, - 242;3; 0.000000, 0.705560, 0.000000;;, - 243;3; 0.000000, 0.705560, 0.000000;;, - 244;3; 0.000000, 0.705560, 0.000000;;, - 245;3; 0.000000, 0.705560, 0.000000;;, - 246;3; 0.000000, 0.705560, 0.000000;;, - 247;3; 0.000000, 0.705560, 0.000000;;, - 248;3; 0.000000, 0.705560, 0.000000;;, - 249;3; 0.000000, 0.705560, 0.000000;;; - } - } - Animation { - {Armature_Bone_011} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 1;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 2;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 3;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 4;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 5;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 6;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 7;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 8;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 9;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 10;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 11;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 12;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 13;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 14;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 15;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 16;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 17;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 18;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 19;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 20;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 21;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 22;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 23;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 24;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 25;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 26;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 27;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 28;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 29;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 30;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 31;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 32;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 33;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 34;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 35;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 36;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 37;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 38;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 39;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 40;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 41;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 42;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 43;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 44;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 45;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 46;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 47;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 48;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 49;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 50;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 51;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 52;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 53;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 54;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 55;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 56;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 57;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 58;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 59;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 60;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 61;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 62;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 63;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 64;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 65;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 66;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 67;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 68;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 69;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 70;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 71;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 72;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 73;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 74;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 75;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 76;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 77;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 78;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 79;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 80;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 81;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 82;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 83;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 84;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 85;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 86;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 87;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 88;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 89;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 90;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 91;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 92;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 93;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 94;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 95;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 96;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 97;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 98;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 99;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 100;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 101;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 102;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 103;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 104;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 105;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 106;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 107;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 108;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 109;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 110;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 111;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 112;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 113;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 114;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 115;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 116;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 117;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 118;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 119;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 120;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 121;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 122;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 123;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 124;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 125;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 126;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 127;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 128;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 129;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 130;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 131;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 132;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 133;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 134;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 135;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 136;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 137;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 138;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 139;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 140;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 141;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 142;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 143;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 144;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 145;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 146;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 147;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 148;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 149;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 150;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 151;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 152;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 153;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 154;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 155;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 156;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 157;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 158;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 159;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 160;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 161;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 162;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 163;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 164;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 165;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 166;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 167;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 168;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 169;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 170;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 171;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 172;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 173;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 174;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 175;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 176;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 177;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 178;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 179;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 180;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 181;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 182;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 183;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 184;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 185;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 186;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 187;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 188;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 189;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 190;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 191;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 192;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 193;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 194;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 195;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 196;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 197;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 198;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 199;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 200;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 201;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 202;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 203;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 204;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 205;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 206;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 207;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 208;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 209;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 210;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 211;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 212;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 213;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 214;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 215;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 216;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 217;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 218;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 219;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 220;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 221;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 222;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 223;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 224;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 225;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 226;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 227;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 228;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 229;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 230;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 231;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 232;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 233;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 234;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 235;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 236;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 237;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 238;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 239;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 240;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 241;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 242;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 243;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 244;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 245;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 246;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 247;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 248;4;-0.444510,-0.549669, 0.449764,-0.545882;;, - 249;4;-0.444510,-0.549669, 0.449764,-0.545882;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3; 0.000000, 0.705560, 0.000000;;, - 1;3; 0.000000, 0.705560, 0.000000;;, - 2;3; 0.000000, 0.705560, 0.000000;;, - 3;3; 0.000000, 0.705560, 0.000000;;, - 4;3; 0.000000, 0.705560, 0.000000;;, - 5;3; 0.000000, 0.705560, 0.000000;;, - 6;3; 0.000000, 0.705560, 0.000000;;, - 7;3; 0.000000, 0.705560, 0.000000;;, - 8;3; 0.000000, 0.705560, 0.000000;;, - 9;3; 0.000000, 0.705560, 0.000000;;, - 10;3; 0.000000, 0.705560, 0.000000;;, - 11;3; 0.000000, 0.705560, 0.000000;;, - 12;3; 0.000000, 0.705560, 0.000000;;, - 13;3; 0.000000, 0.705560, 0.000000;;, - 14;3; 0.000000, 0.705560, 0.000000;;, - 15;3; 0.000000, 0.705560, 0.000000;;, - 16;3; 0.000000, 0.705560, 0.000000;;, - 17;3; 0.000000, 0.705560, 0.000000;;, - 18;3; 0.000000, 0.705560, 0.000000;;, - 19;3; 0.000000, 0.705560, 0.000000;;, - 20;3; 0.000000, 0.705560, 0.000000;;, - 21;3; 0.000000, 0.705560, 0.000000;;, - 22;3; 0.000000, 0.705560, 0.000000;;, - 23;3; 0.000000, 0.705560, 0.000000;;, - 24;3; 0.000000, 0.705560, 0.000000;;, - 25;3; 0.000000, 0.705560, 0.000000;;, - 26;3; 0.000000, 0.705560, 0.000000;;, - 27;3; 0.000000, 0.705560, 0.000000;;, - 28;3; 0.000000, 0.705560, 0.000000;;, - 29;3; 0.000000, 0.705560, 0.000000;;, - 30;3; 0.000000, 0.705560, 0.000000;;, - 31;3; 0.000000, 0.705560, 0.000000;;, - 32;3; 0.000000, 0.705560, 0.000000;;, - 33;3; 0.000000, 0.705560, 0.000000;;, - 34;3; 0.000000, 0.705560, 0.000000;;, - 35;3; 0.000000, 0.705560, 0.000000;;, - 36;3; 0.000000, 0.705560, 0.000000;;, - 37;3; 0.000000, 0.705560, 0.000000;;, - 38;3; 0.000000, 0.705560, 0.000000;;, - 39;3; 0.000000, 0.705560, 0.000000;;, - 40;3; 0.000000, 0.705560, 0.000000;;, - 41;3; 0.000000, 0.705559, 0.000000;;, - 42;3;-0.000000, 0.705560, 0.000000;;, - 43;3; 0.000000, 0.705560,-0.000000;;, - 44;3; 0.000000, 0.705560, 0.000000;;, - 45;3; 0.000000, 0.705560,-0.000000;;, - 46;3; 0.000000, 0.705559, 0.000000;;, - 47;3;-0.000000, 0.705560, 0.000000;;, - 48;3; 0.000000, 0.705560,-0.000000;;, - 49;3; 0.000000, 0.705560, 0.000000;;, - 50;3;-0.000000, 0.705559, 0.000000;;, - 51;3; 0.000000, 0.705560,-0.000000;;, - 52;3;-0.000000, 0.705560, 0.000000;;, - 53;3; 0.000000, 0.705560,-0.000000;;, - 54;3; 0.000000, 0.705560, 0.000000;;, - 55;3; 0.000000, 0.705560,-0.000000;;, - 56;3;-0.000000, 0.705560, 0.000000;;, - 57;3; 0.000000, 0.705559, 0.000000;;, - 58;3;-0.000000, 0.705560, 0.000000;;, - 59;3; 0.000000, 0.705560, 0.000000;;, - 60;3; 0.000000, 0.705560,-0.000000;;, - 61;3; 0.000000, 0.705560, 0.000000;;, - 62;3; 0.000000, 0.705560, 0.000000;;, - 63;3; 0.000000, 0.705560, 0.000000;;, - 64;3; 0.000000, 0.705560,-0.000000;;, - 65;3;-0.000000, 0.705560, 0.000000;;, - 66;3; 0.000000, 0.705560, 0.000000;;, - 67;3;-0.000000, 0.705560, 0.000000;;, - 68;3; 0.000000, 0.705559, 0.000000;;, - 69;3; 0.000000, 0.705560, 0.000000;;, - 70;3; 0.000000, 0.705560, 0.000000;;, - 71;3;-0.000000, 0.705560, 0.000000;;, - 72;3;-0.000000, 0.705560, 0.000000;;, - 73;3;-0.000000, 0.705560, 0.000000;;, - 74;3;-0.000000, 0.705560, 0.000000;;, - 75;3;-0.000000, 0.705560, 0.000000;;, - 76;3; 0.000000, 0.705559, 0.000000;;, - 77;3;-0.000000, 0.705560, 0.000000;;, - 78;3; 0.000000, 0.705560, 0.000000;;, - 79;3;-0.000000, 0.705559, 0.000000;;, - 80;3; 0.000000, 0.705560, 0.000000;;, - 81;3;-0.000000, 0.705560, 0.000000;;, - 82;3; 0.000000, 0.705560, 0.000000;;, - 83;3; 0.000000, 0.705560, 0.000000;;, - 84;3; 0.000000, 0.705560,-0.000000;;, - 85;3;-0.000000, 0.705560, 0.000000;;, - 86;3;-0.000000, 0.705560, 0.000000;;, - 87;3; 0.000000, 0.705560,-0.000000;;, - 88;3; 0.000000, 0.705560, 0.000000;;, - 89;3; 0.000000, 0.705560, 0.000000;;, - 90;3; 0.000000, 0.705560, 0.000000;;, - 91;3; 0.000000, 0.705560, 0.000000;;, - 92;3; 0.000000, 0.705560, 0.000000;;, - 93;3; 0.000000, 0.705560, 0.000000;;, - 94;3; 0.000000, 0.705560, 0.000000;;, - 95;3; 0.000000, 0.705560, 0.000000;;, - 96;3; 0.000000, 0.705560,-0.000000;;, - 97;3; 0.000000, 0.705560,-0.000000;;, - 98;3; 0.000000, 0.705560, 0.000000;;, - 99;3; 0.000000, 0.705560, 0.000000;;, - 100;3;-0.000000, 0.705560,-0.000000;;, - 101;3; 0.000000, 0.705560,-0.000000;;, - 102;3; 0.000000, 0.705559, 0.000000;;, - 103;3;-0.000000, 0.705560,-0.000000;;, - 104;3;-0.000000, 0.705559,-0.000000;;, - 105;3;-0.000000, 0.705560,-0.000000;;, - 106;3; 0.000000, 0.705560, 0.000000;;, - 107;3;-0.000000, 0.705559,-0.000000;;, - 108;3; 0.000000, 0.705560,-0.000000;;, - 109;3; 0.000000, 0.705559,-0.000000;;, - 110;3;-0.000000, 0.705559, 0.000000;;, - 111;3; 0.000000, 0.705560,-0.000000;;, - 112;3; 0.000000, 0.705560, 0.000000;;, - 113;3; 0.000000, 0.705560,-0.000000;;, - 114;3;-0.000000, 0.705559, 0.000000;;, - 115;3; 0.000000, 0.705560, 0.000000;;, - 116;3;-0.000000, 0.705560,-0.000000;;, - 117;3; 0.000000, 0.705560, 0.000000;;, - 118;3; 0.000000, 0.705560,-0.000000;;, - 119;3; 0.000000, 0.705560, 0.000000;;, - 120;3; 0.000000, 0.705560,-0.000000;;, - 121;3; 0.000000, 0.705560,-0.000000;;, - 122;3;-0.000000, 0.705560,-0.000000;;, - 123;3; 0.000000, 0.705560, 0.000000;;, - 124;3; 0.000000, 0.705560, 0.000000;;, - 125;3; 0.000000, 0.705560, 0.000000;;, - 126;3;-0.000000, 0.705560, 0.000000;;, - 127;3;-0.000000, 0.705560, 0.000000;;, - 128;3;-0.000000, 0.705560,-0.000000;;, - 129;3; 0.000000, 0.705560, 0.000000;;, - 130;3; 0.000000, 0.705559, 0.000000;;, - 131;3; 0.000000, 0.705560, 0.000000;;, - 132;3; 0.000000, 0.705560, 0.000000;;, - 133;3; 0.000000, 0.705560,-0.000000;;, - 134;3; 0.000000, 0.705560, 0.000000;;, - 135;3; 0.000000, 0.705560, 0.000000;;, - 136;3;-0.000000, 0.705560,-0.000000;;, - 137;3; 0.000000, 0.705560, 0.000000;;, - 138;3;-0.000000, 0.705559, 0.000000;;, - 139;3;-0.000000, 0.705560,-0.000000;;, - 140;3; 0.000000, 0.705560, 0.000000;;, - 141;3; 0.000000, 0.705560, 0.000000;;, - 142;3; 0.000000, 0.705560, 0.000000;;, - 143;3; 0.000000, 0.705560,-0.000000;;, - 144;3; 0.000000, 0.705560, 0.000000;;, - 145;3; 0.000000, 0.705560,-0.000000;;, - 146;3; 0.000000, 0.705560, 0.000000;;, - 147;3; 0.000000, 0.705560,-0.000000;;, - 148;3; 0.000000, 0.705560, 0.000000;;, - 149;3; 0.000000, 0.705560, 0.000000;;, - 150;3; 0.000000, 0.705560, 0.000000;;, - 151;3; 0.000000, 0.705560, 0.000000;;, - 152;3; 0.000000, 0.705560, 0.000000;;, - 153;3; 0.000000, 0.705560, 0.000000;;, - 154;3; 0.000000, 0.705560, 0.000000;;, - 155;3; 0.000000, 0.705560, 0.000000;;, - 156;3; 0.000000, 0.705560, 0.000000;;, - 157;3; 0.000000, 0.705560, 0.000000;;, - 158;3; 0.000000, 0.705560, 0.000000;;, - 159;3; 0.000000, 0.705560, 0.000000;;, - 160;3; 0.000000, 0.705560, 0.000000;;, - 161;3; 0.000000, 0.705560, 0.000000;;, - 162;3; 0.000000, 0.705560, 0.000000;;, - 163;3; 0.000000, 0.705560, 0.000000;;, - 164;3; 0.000000, 0.705560, 0.000000;;, - 165;3; 0.000000, 0.705560, 0.000000;;, - 166;3; 0.000000, 0.705560, 0.000000;;, - 167;3; 0.000000, 0.705560, 0.000000;;, - 168;3; 0.000000, 0.705560, 0.000000;;, - 169;3; 0.000000, 0.705560, 0.000000;;, - 170;3; 0.000000, 0.705560, 0.000000;;, - 171;3; 0.000000, 0.705560, 0.000000;;, - 172;3; 0.000000, 0.705560, 0.000000;;, - 173;3; 0.000000, 0.705560, 0.000000;;, - 174;3; 0.000000, 0.705560, 0.000000;;, - 175;3; 0.000000, 0.705560, 0.000000;;, - 176;3; 0.000000, 0.705560, 0.000000;;, - 177;3; 0.000000, 0.705560, 0.000000;;, - 178;3; 0.000000, 0.705560, 0.000000;;, - 179;3; 0.000000, 0.705560, 0.000000;;, - 180;3; 0.000000, 0.705560, 0.000000;;, - 181;3; 0.000000, 0.705560, 0.000000;;, - 182;3; 0.000000, 0.705560, 0.000000;;, - 183;3; 0.000000, 0.705560, 0.000000;;, - 184;3; 0.000000, 0.705560, 0.000000;;, - 185;3; 0.000000, 0.705560, 0.000000;;, - 186;3; 0.000000, 0.705560, 0.000000;;, - 187;3; 0.000000, 0.705560, 0.000000;;, - 188;3; 0.000000, 0.705560, 0.000000;;, - 189;3; 0.000000, 0.705560, 0.000000;;, - 190;3; 0.000000, 0.705560, 0.000000;;, - 191;3; 0.000000, 0.705560, 0.000000;;, - 192;3; 0.000000, 0.705560, 0.000000;;, - 193;3; 0.000000, 0.705560, 0.000000;;, - 194;3; 0.000000, 0.705560, 0.000000;;, - 195;3; 0.000000, 0.705560, 0.000000;;, - 196;3; 0.000000, 0.705560, 0.000000;;, - 197;3; 0.000000, 0.705560, 0.000000;;, - 198;3; 0.000000, 0.705560, 0.000000;;, - 199;3; 0.000000, 0.705560, 0.000000;;, - 200;3; 0.000000, 0.705560, 0.000000;;, - 201;3; 0.000000, 0.705560, 0.000000;;, - 202;3; 0.000000, 0.705560, 0.000000;;, - 203;3; 0.000000, 0.705560, 0.000000;;, - 204;3; 0.000000, 0.705560, 0.000000;;, - 205;3; 0.000000, 0.705560, 0.000000;;, - 206;3; 0.000000, 0.705560, 0.000000;;, - 207;3; 0.000000, 0.705560, 0.000000;;, - 208;3; 0.000000, 0.705560, 0.000000;;, - 209;3; 0.000000, 0.705560, 0.000000;;, - 210;3; 0.000000, 0.705560, 0.000000;;, - 211;3; 0.000000, 0.705560, 0.000000;;, - 212;3; 0.000000, 0.705560, 0.000000;;, - 213;3; 0.000000, 0.705560, 0.000000;;, - 214;3; 0.000000, 0.705560, 0.000000;;, - 215;3; 0.000000, 0.705560, 0.000000;;, - 216;3; 0.000000, 0.705560, 0.000000;;, - 217;3; 0.000000, 0.705560, 0.000000;;, - 218;3; 0.000000, 0.705560, 0.000000;;, - 219;3; 0.000000, 0.705560, 0.000000;;, - 220;3; 0.000000, 0.705560, 0.000000;;, - 221;3; 0.000000, 0.705560, 0.000000;;, - 222;3; 0.000000, 0.705560, 0.000000;;, - 223;3; 0.000000, 0.705560, 0.000000;;, - 224;3; 0.000000, 0.705560, 0.000000;;, - 225;3; 0.000000, 0.705560, 0.000000;;, - 226;3; 0.000000, 0.705560, 0.000000;;, - 227;3; 0.000000, 0.705560, 0.000000;;, - 228;3; 0.000000, 0.705560, 0.000000;;, - 229;3; 0.000000, 0.705560, 0.000000;;, - 230;3; 0.000000, 0.705560, 0.000000;;, - 231;3; 0.000000, 0.705560, 0.000000;;, - 232;3; 0.000000, 0.705560, 0.000000;;, - 233;3; 0.000000, 0.705560, 0.000000;;, - 234;3; 0.000000, 0.705560, 0.000000;;, - 235;3; 0.000000, 0.705560, 0.000000;;, - 236;3; 0.000000, 0.705560, 0.000000;;, - 237;3; 0.000000, 0.705560, 0.000000;;, - 238;3; 0.000000, 0.705560, 0.000000;;, - 239;3; 0.000000, 0.705560, 0.000000;;, - 240;3; 0.000000, 0.705560, 0.000000;;, - 241;3; 0.000000, 0.705560, 0.000000;;, - 242;3; 0.000000, 0.705560, 0.000000;;, - 243;3; 0.000000, 0.705560, 0.000000;;, - 244;3; 0.000000, 0.705560, 0.000000;;, - 245;3; 0.000000, 0.705560, 0.000000;;, - 246;3; 0.000000, 0.705560, 0.000000;;, - 247;3; 0.000000, 0.705560, 0.000000;;, - 248;3; 0.000000, 0.705560, 0.000000;;, - 249;3; 0.000000, 0.705560, 0.000000;;; - } - } - Animation { - {Armature_Bone_012} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 1;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 2;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 3;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 4;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 5;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 6;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 7;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 8;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 9;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 10;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 11;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 12;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 13;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 14;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 15;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 16;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 17;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 18;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 19;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 20;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 21;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 22;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 23;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 24;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 25;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 26;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 27;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 28;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 29;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 30;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 31;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 32;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 33;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 34;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 35;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 36;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 37;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 38;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 39;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 40;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 41;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 42;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 43;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 44;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 45;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 46;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 47;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 48;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 49;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 50;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 51;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 52;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 53;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 54;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 55;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 56;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 57;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 58;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 59;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 60;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 61;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 62;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 63;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 64;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 65;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 66;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 67;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 68;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 69;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 70;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 71;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 72;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 73;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 74;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 75;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 76;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 77;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 78;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 79;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 80;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 81;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 82;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 83;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 84;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 85;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 86;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 87;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 88;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 89;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 90;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 91;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 92;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 93;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 94;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 95;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 96;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 97;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 98;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 99;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 100;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 101;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 102;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 103;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 104;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 105;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 106;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 107;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 108;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 109;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 110;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 111;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 112;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 113;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 114;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 115;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 116;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 117;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 118;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 119;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 120;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 121;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 122;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 123;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 124;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 125;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 126;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 127;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 128;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 129;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 130;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 131;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 132;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 133;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 134;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 135;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 136;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 137;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 138;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 139;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 140;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 141;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 142;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 143;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 144;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 145;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 146;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 147;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 148;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 149;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 150;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 151;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 152;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 153;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 154;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 155;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 156;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 157;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 158;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 159;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 160;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 161;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 162;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 163;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 164;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 165;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 166;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 167;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 168;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 169;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 170;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 171;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 172;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 173;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 174;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 175;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 176;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 177;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 178;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 179;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 180;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 181;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 182;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 183;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 184;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 185;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 186;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 187;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 188;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 189;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 190;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 191;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 192;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 193;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 194;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 195;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 196;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 197;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 198;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 199;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 200;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 201;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 202;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 203;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 204;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 205;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 206;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 207;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 208;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 209;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 210;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 211;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 212;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 213;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 214;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 215;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 216;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 217;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 218;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 219;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 220;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 221;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 222;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 223;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 224;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 225;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 226;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 227;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 228;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 229;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 230;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 231;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 232;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 233;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 234;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 235;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 236;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 237;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 238;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 239;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 240;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 241;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 242;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 243;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 244;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 245;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 246;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 247;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 248;4;-0.261556, 0.654903,-0.563708,-0.430027;;, - 249;4;-0.261556, 0.654903,-0.563708,-0.430027;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3; 0.000000, 0.705560, 0.000000;;, - 1;3; 0.000000, 0.705560, 0.000000;;, - 2;3; 0.000000, 0.705560, 0.000000;;, - 3;3; 0.000000, 0.705560, 0.000000;;, - 4;3; 0.000000, 0.705560, 0.000000;;, - 5;3; 0.000000, 0.705560, 0.000000;;, - 6;3; 0.000000, 0.705560, 0.000000;;, - 7;3; 0.000000, 0.705560, 0.000000;;, - 8;3; 0.000000, 0.705560, 0.000000;;, - 9;3; 0.000000, 0.705560, 0.000000;;, - 10;3; 0.000000, 0.705560, 0.000000;;, - 11;3; 0.000000, 0.705560, 0.000000;;, - 12;3; 0.000000, 0.705560, 0.000000;;, - 13;3; 0.000000, 0.705560, 0.000000;;, - 14;3; 0.000000, 0.705560, 0.000000;;, - 15;3; 0.000000, 0.705560, 0.000000;;, - 16;3; 0.000000, 0.705560, 0.000000;;, - 17;3; 0.000000, 0.705560, 0.000000;;, - 18;3; 0.000000, 0.705560, 0.000000;;, - 19;3; 0.000000, 0.705560, 0.000000;;, - 20;3; 0.000000, 0.705560, 0.000000;;, - 21;3; 0.000000, 0.705560, 0.000000;;, - 22;3; 0.000000, 0.705560, 0.000000;;, - 23;3; 0.000000, 0.705560, 0.000000;;, - 24;3; 0.000000, 0.705560, 0.000000;;, - 25;3; 0.000000, 0.705560, 0.000000;;, - 26;3; 0.000000, 0.705560, 0.000000;;, - 27;3; 0.000000, 0.705560, 0.000000;;, - 28;3; 0.000000, 0.705560, 0.000000;;, - 29;3; 0.000000, 0.705560, 0.000000;;, - 30;3; 0.000000, 0.705560, 0.000000;;, - 31;3; 0.000000, 0.705560, 0.000000;;, - 32;3; 0.000000, 0.705560, 0.000000;;, - 33;3; 0.000000, 0.705560, 0.000000;;, - 34;3; 0.000000, 0.705560, 0.000000;;, - 35;3; 0.000000, 0.705560, 0.000000;;, - 36;3; 0.000000, 0.705560, 0.000000;;, - 37;3; 0.000000, 0.705560, 0.000000;;, - 38;3; 0.000000, 0.705560, 0.000000;;, - 39;3; 0.000000, 0.705560, 0.000000;;, - 40;3; 0.000000, 0.705560, 0.000000;;, - 41;3; 0.000000, 0.705559, 0.000000;;, - 42;3;-0.000000, 0.705560, 0.000000;;, - 43;3; 0.000000, 0.705560,-0.000000;;, - 44;3; 0.000000, 0.705560, 0.000000;;, - 45;3; 0.000000, 0.705560,-0.000000;;, - 46;3; 0.000000, 0.705559, 0.000000;;, - 47;3;-0.000000, 0.705560, 0.000000;;, - 48;3; 0.000000, 0.705560,-0.000000;;, - 49;3; 0.000000, 0.705560, 0.000000;;, - 50;3;-0.000000, 0.705559, 0.000000;;, - 51;3; 0.000000, 0.705560,-0.000000;;, - 52;3;-0.000000, 0.705560, 0.000000;;, - 53;3; 0.000000, 0.705560,-0.000000;;, - 54;3; 0.000000, 0.705560, 0.000000;;, - 55;3; 0.000000, 0.705560,-0.000000;;, - 56;3;-0.000000, 0.705560, 0.000000;;, - 57;3; 0.000000, 0.705559, 0.000000;;, - 58;3;-0.000000, 0.705560, 0.000000;;, - 59;3; 0.000000, 0.705560, 0.000000;;, - 60;3; 0.000000, 0.705560,-0.000000;;, - 61;3; 0.000000, 0.705560, 0.000000;;, - 62;3; 0.000000, 0.705560, 0.000000;;, - 63;3; 0.000000, 0.705560, 0.000000;;, - 64;3; 0.000000, 0.705560,-0.000000;;, - 65;3;-0.000000, 0.705560, 0.000000;;, - 66;3; 0.000000, 0.705560, 0.000000;;, - 67;3;-0.000000, 0.705560, 0.000000;;, - 68;3; 0.000000, 0.705559, 0.000000;;, - 69;3; 0.000000, 0.705560, 0.000000;;, - 70;3; 0.000000, 0.705560, 0.000000;;, - 71;3;-0.000000, 0.705560, 0.000000;;, - 72;3;-0.000000, 0.705560, 0.000000;;, - 73;3;-0.000000, 0.705560, 0.000000;;, - 74;3;-0.000000, 0.705560, 0.000000;;, - 75;3;-0.000000, 0.705560, 0.000000;;, - 76;3; 0.000000, 0.705559, 0.000000;;, - 77;3;-0.000000, 0.705560, 0.000000;;, - 78;3; 0.000000, 0.705560, 0.000000;;, - 79;3;-0.000000, 0.705559, 0.000000;;, - 80;3; 0.000000, 0.705560, 0.000000;;, - 81;3;-0.000000, 0.705560, 0.000000;;, - 82;3; 0.000000, 0.705560, 0.000000;;, - 83;3; 0.000000, 0.705560, 0.000000;;, - 84;3; 0.000000, 0.705560,-0.000000;;, - 85;3;-0.000000, 0.705560, 0.000000;;, - 86;3;-0.000000, 0.705560, 0.000000;;, - 87;3; 0.000000, 0.705560,-0.000000;;, - 88;3; 0.000000, 0.705560, 0.000000;;, - 89;3; 0.000000, 0.705560, 0.000000;;, - 90;3; 0.000000, 0.705560, 0.000000;;, - 91;3; 0.000000, 0.705560, 0.000000;;, - 92;3; 0.000000, 0.705560, 0.000000;;, - 93;3; 0.000000, 0.705560, 0.000000;;, - 94;3; 0.000000, 0.705560, 0.000000;;, - 95;3; 0.000000, 0.705560, 0.000000;;, - 96;3; 0.000000, 0.705560,-0.000000;;, - 97;3; 0.000000, 0.705560,-0.000000;;, - 98;3; 0.000000, 0.705560, 0.000000;;, - 99;3; 0.000000, 0.705560, 0.000000;;, - 100;3;-0.000000, 0.705560,-0.000000;;, - 101;3; 0.000000, 0.705560,-0.000000;;, - 102;3; 0.000000, 0.705559, 0.000000;;, - 103;3;-0.000000, 0.705560,-0.000000;;, - 104;3;-0.000000, 0.705559,-0.000000;;, - 105;3;-0.000000, 0.705560,-0.000000;;, - 106;3; 0.000000, 0.705560, 0.000000;;, - 107;3;-0.000000, 0.705559,-0.000000;;, - 108;3; 0.000000, 0.705560,-0.000000;;, - 109;3; 0.000000, 0.705559,-0.000000;;, - 110;3;-0.000000, 0.705559, 0.000000;;, - 111;3; 0.000000, 0.705560,-0.000000;;, - 112;3; 0.000000, 0.705560, 0.000000;;, - 113;3; 0.000000, 0.705560,-0.000000;;, - 114;3;-0.000000, 0.705559, 0.000000;;, - 115;3; 0.000000, 0.705560, 0.000000;;, - 116;3;-0.000000, 0.705560,-0.000000;;, - 117;3; 0.000000, 0.705560, 0.000000;;, - 118;3; 0.000000, 0.705560,-0.000000;;, - 119;3; 0.000000, 0.705560, 0.000000;;, - 120;3; 0.000000, 0.705560,-0.000000;;, - 121;3; 0.000000, 0.705560,-0.000000;;, - 122;3;-0.000000, 0.705560,-0.000000;;, - 123;3; 0.000000, 0.705560, 0.000000;;, - 124;3; 0.000000, 0.705560, 0.000000;;, - 125;3; 0.000000, 0.705560, 0.000000;;, - 126;3;-0.000000, 0.705560, 0.000000;;, - 127;3;-0.000000, 0.705560, 0.000000;;, - 128;3;-0.000000, 0.705560,-0.000000;;, - 129;3; 0.000000, 0.705560, 0.000000;;, - 130;3; 0.000000, 0.705559, 0.000000;;, - 131;3; 0.000000, 0.705560, 0.000000;;, - 132;3; 0.000000, 0.705560, 0.000000;;, - 133;3; 0.000000, 0.705560,-0.000000;;, - 134;3; 0.000000, 0.705560, 0.000000;;, - 135;3; 0.000000, 0.705560, 0.000000;;, - 136;3;-0.000000, 0.705560,-0.000000;;, - 137;3; 0.000000, 0.705560, 0.000000;;, - 138;3;-0.000000, 0.705559, 0.000000;;, - 139;3;-0.000000, 0.705560,-0.000000;;, - 140;3; 0.000000, 0.705560, 0.000000;;, - 141;3; 0.000000, 0.705560, 0.000000;;, - 142;3; 0.000000, 0.705560, 0.000000;;, - 143;3; 0.000000, 0.705560,-0.000000;;, - 144;3; 0.000000, 0.705560, 0.000000;;, - 145;3; 0.000000, 0.705560,-0.000000;;, - 146;3; 0.000000, 0.705560, 0.000000;;, - 147;3; 0.000000, 0.705560,-0.000000;;, - 148;3; 0.000000, 0.705560, 0.000000;;, - 149;3; 0.000000, 0.705560, 0.000000;;, - 150;3; 0.000000, 0.705560, 0.000000;;, - 151;3; 0.000000, 0.705560, 0.000000;;, - 152;3; 0.000000, 0.705560, 0.000000;;, - 153;3; 0.000000, 0.705560, 0.000000;;, - 154;3; 0.000000, 0.705560, 0.000000;;, - 155;3; 0.000000, 0.705560, 0.000000;;, - 156;3; 0.000000, 0.705560, 0.000000;;, - 157;3; 0.000000, 0.705560, 0.000000;;, - 158;3; 0.000000, 0.705560, 0.000000;;, - 159;3; 0.000000, 0.705560, 0.000000;;, - 160;3; 0.000000, 0.705560, 0.000000;;, - 161;3; 0.000000, 0.705560, 0.000000;;, - 162;3; 0.000000, 0.705560, 0.000000;;, - 163;3; 0.000000, 0.705560, 0.000000;;, - 164;3; 0.000000, 0.705560, 0.000000;;, - 165;3; 0.000000, 0.705560, 0.000000;;, - 166;3; 0.000000, 0.705560, 0.000000;;, - 167;3; 0.000000, 0.705560, 0.000000;;, - 168;3; 0.000000, 0.705560, 0.000000;;, - 169;3; 0.000000, 0.705560, 0.000000;;, - 170;3; 0.000000, 0.705560, 0.000000;;, - 171;3; 0.000000, 0.705560, 0.000000;;, - 172;3; 0.000000, 0.705560, 0.000000;;, - 173;3; 0.000000, 0.705560, 0.000000;;, - 174;3; 0.000000, 0.705560, 0.000000;;, - 175;3; 0.000000, 0.705560, 0.000000;;, - 176;3; 0.000000, 0.705560, 0.000000;;, - 177;3; 0.000000, 0.705560, 0.000000;;, - 178;3; 0.000000, 0.705560, 0.000000;;, - 179;3; 0.000000, 0.705560, 0.000000;;, - 180;3; 0.000000, 0.705560, 0.000000;;, - 181;3; 0.000000, 0.705560, 0.000000;;, - 182;3; 0.000000, 0.705560, 0.000000;;, - 183;3; 0.000000, 0.705560, 0.000000;;, - 184;3; 0.000000, 0.705560, 0.000000;;, - 185;3; 0.000000, 0.705560, 0.000000;;, - 186;3; 0.000000, 0.705560, 0.000000;;, - 187;3; 0.000000, 0.705560, 0.000000;;, - 188;3; 0.000000, 0.705560, 0.000000;;, - 189;3; 0.000000, 0.705560, 0.000000;;, - 190;3; 0.000000, 0.705560, 0.000000;;, - 191;3; 0.000000, 0.705560, 0.000000;;, - 192;3; 0.000000, 0.705560, 0.000000;;, - 193;3; 0.000000, 0.705560, 0.000000;;, - 194;3; 0.000000, 0.705560, 0.000000;;, - 195;3; 0.000000, 0.705560, 0.000000;;, - 196;3; 0.000000, 0.705560, 0.000000;;, - 197;3; 0.000000, 0.705560, 0.000000;;, - 198;3; 0.000000, 0.705560, 0.000000;;, - 199;3; 0.000000, 0.705560, 0.000000;;, - 200;3; 0.000000, 0.705560, 0.000000;;, - 201;3; 0.000000, 0.705560, 0.000000;;, - 202;3; 0.000000, 0.705560, 0.000000;;, - 203;3; 0.000000, 0.705560, 0.000000;;, - 204;3; 0.000000, 0.705560, 0.000000;;, - 205;3; 0.000000, 0.705560, 0.000000;;, - 206;3; 0.000000, 0.705560, 0.000000;;, - 207;3; 0.000000, 0.705560, 0.000000;;, - 208;3; 0.000000, 0.705560, 0.000000;;, - 209;3; 0.000000, 0.705560, 0.000000;;, - 210;3; 0.000000, 0.705560, 0.000000;;, - 211;3; 0.000000, 0.705560, 0.000000;;, - 212;3; 0.000000, 0.705560, 0.000000;;, - 213;3; 0.000000, 0.705560, 0.000000;;, - 214;3; 0.000000, 0.705560, 0.000000;;, - 215;3; 0.000000, 0.705560, 0.000000;;, - 216;3; 0.000000, 0.705560, 0.000000;;, - 217;3; 0.000000, 0.705560, 0.000000;;, - 218;3; 0.000000, 0.705560, 0.000000;;, - 219;3; 0.000000, 0.705560, 0.000000;;, - 220;3; 0.000000, 0.705560, 0.000000;;, - 221;3; 0.000000, 0.705560, 0.000000;;, - 222;3; 0.000000, 0.705560, 0.000000;;, - 223;3; 0.000000, 0.705560, 0.000000;;, - 224;3; 0.000000, 0.705560, 0.000000;;, - 225;3; 0.000000, 0.705560, 0.000000;;, - 226;3; 0.000000, 0.705560, 0.000000;;, - 227;3; 0.000000, 0.705560, 0.000000;;, - 228;3; 0.000000, 0.705560, 0.000000;;, - 229;3; 0.000000, 0.705560, 0.000000;;, - 230;3; 0.000000, 0.705560, 0.000000;;, - 231;3; 0.000000, 0.705560, 0.000000;;, - 232;3; 0.000000, 0.705560, 0.000000;;, - 233;3; 0.000000, 0.705560, 0.000000;;, - 234;3; 0.000000, 0.705560, 0.000000;;, - 235;3; 0.000000, 0.705560, 0.000000;;, - 236;3; 0.000000, 0.705560, 0.000000;;, - 237;3; 0.000000, 0.705560, 0.000000;;, - 238;3; 0.000000, 0.705560, 0.000000;;, - 239;3; 0.000000, 0.705560, 0.000000;;, - 240;3; 0.000000, 0.705560, 0.000000;;, - 241;3; 0.000000, 0.705560, 0.000000;;, - 242;3; 0.000000, 0.705560, 0.000000;;, - 243;3; 0.000000, 0.705560, 0.000000;;, - 244;3; 0.000000, 0.705560, 0.000000;;, - 245;3; 0.000000, 0.705560, 0.000000;;, - 246;3; 0.000000, 0.705560, 0.000000;;, - 247;3; 0.000000, 0.705560, 0.000000;;, - 248;3; 0.000000, 0.705560, 0.000000;;, - 249;3; 0.000000, 0.705560, 0.000000;;; - } - } - Animation { - {Armature_Bone_013} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 1;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 2;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 3;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 4;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 5;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 6;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 7;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 8;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 9;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 10;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 11;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 12;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 13;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 14;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 15;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 16;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 17;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 18;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 19;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 20;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 21;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 22;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 23;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 24;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 25;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 26;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 27;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 28;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 29;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 30;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 31;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 32;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 33;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 34;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 35;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 36;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 37;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 38;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 39;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 40;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 41;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 42;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 43;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 44;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 45;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 46;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 47;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 48;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 49;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 50;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 51;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 52;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 53;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 54;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 55;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 56;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 57;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 58;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 59;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 60;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 61;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 62;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 63;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 64;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 65;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 66;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 67;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 68;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 69;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 70;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 71;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 72;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 73;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 74;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 75;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 76;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 77;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 78;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 79;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 80;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 81;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 82;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 83;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 84;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 85;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 86;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 87;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 88;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 89;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 90;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 91;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 92;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 93;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 94;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 95;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 96;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 97;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 98;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 99;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 100;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 101;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 102;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 103;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 104;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 105;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 106;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 107;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 108;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 109;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 110;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 111;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 112;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 113;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 114;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 115;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 116;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 117;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 118;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 119;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 120;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 121;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 122;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 123;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 124;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 125;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 126;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 127;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 128;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 129;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 130;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 131;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 132;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 133;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 134;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 135;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 136;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 137;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 138;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 139;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 140;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 141;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 142;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 143;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 144;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 145;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 146;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 147;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 148;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 149;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 150;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 151;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 152;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 153;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 154;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 155;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 156;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 157;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 158;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 159;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 160;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 161;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 162;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 163;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 164;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 165;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 166;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 167;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 168;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 169;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 170;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 171;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 172;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 173;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 174;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 175;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 176;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 177;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 178;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 179;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 180;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 181;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 182;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 183;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 184;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 185;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 186;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 187;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 188;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 189;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 190;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 191;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 192;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 193;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 194;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 195;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 196;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 197;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 198;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 199;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 200;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 201;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 202;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 203;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 204;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 205;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 206;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 207;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 208;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 209;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 210;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 211;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 212;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 213;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 214;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 215;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 216;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 217;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 218;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 219;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 220;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 221;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 222;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 223;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 224;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 225;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 226;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 227;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 228;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 229;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 230;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 231;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 232;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 233;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 234;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 235;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 236;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 237;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 238;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 239;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 240;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 241;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 242;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 243;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 244;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 245;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 246;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 247;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 248;4;-0.516917, 0.413523,-0.319374,-0.678083;;, - 249;4;-0.516917, 0.413523,-0.319374,-0.678083;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3; 0.000000, 0.705560, 0.000000;;, - 1;3; 0.000000, 0.705560, 0.000000;;, - 2;3; 0.000000, 0.705560, 0.000000;;, - 3;3; 0.000000, 0.705560, 0.000000;;, - 4;3; 0.000000, 0.705560, 0.000000;;, - 5;3; 0.000000, 0.705560, 0.000000;;, - 6;3; 0.000000, 0.705560, 0.000000;;, - 7;3; 0.000000, 0.705560, 0.000000;;, - 8;3; 0.000000, 0.705560, 0.000000;;, - 9;3; 0.000000, 0.705560, 0.000000;;, - 10;3; 0.000000, 0.705560, 0.000000;;, - 11;3; 0.000000, 0.705560, 0.000000;;, - 12;3; 0.000000, 0.705560, 0.000000;;, - 13;3; 0.000000, 0.705560, 0.000000;;, - 14;3; 0.000000, 0.705560, 0.000000;;, - 15;3; 0.000000, 0.705560, 0.000000;;, - 16;3; 0.000000, 0.705560, 0.000000;;, - 17;3; 0.000000, 0.705560, 0.000000;;, - 18;3; 0.000000, 0.705560, 0.000000;;, - 19;3; 0.000000, 0.705560, 0.000000;;, - 20;3; 0.000000, 0.705560, 0.000000;;, - 21;3; 0.000000, 0.705560, 0.000000;;, - 22;3; 0.000000, 0.705560, 0.000000;;, - 23;3; 0.000000, 0.705560, 0.000000;;, - 24;3; 0.000000, 0.705560, 0.000000;;, - 25;3; 0.000000, 0.705560, 0.000000;;, - 26;3; 0.000000, 0.705560, 0.000000;;, - 27;3; 0.000000, 0.705560, 0.000000;;, - 28;3; 0.000000, 0.705560, 0.000000;;, - 29;3; 0.000000, 0.705560, 0.000000;;, - 30;3; 0.000000, 0.705560, 0.000000;;, - 31;3; 0.000000, 0.705560, 0.000000;;, - 32;3; 0.000000, 0.705560, 0.000000;;, - 33;3; 0.000000, 0.705560, 0.000000;;, - 34;3; 0.000000, 0.705560, 0.000000;;, - 35;3; 0.000000, 0.705560, 0.000000;;, - 36;3; 0.000000, 0.705560, 0.000000;;, - 37;3; 0.000000, 0.705560, 0.000000;;, - 38;3; 0.000000, 0.705560, 0.000000;;, - 39;3; 0.000000, 0.705560, 0.000000;;, - 40;3; 0.000000, 0.705560, 0.000000;;, - 41;3; 0.000000, 0.705559, 0.000000;;, - 42;3;-0.000000, 0.705560, 0.000000;;, - 43;3; 0.000000, 0.705560,-0.000000;;, - 44;3; 0.000000, 0.705560, 0.000000;;, - 45;3; 0.000000, 0.705560,-0.000000;;, - 46;3; 0.000000, 0.705559, 0.000000;;, - 47;3;-0.000000, 0.705560, 0.000000;;, - 48;3; 0.000000, 0.705560,-0.000000;;, - 49;3; 0.000000, 0.705560, 0.000000;;, - 50;3;-0.000000, 0.705559, 0.000000;;, - 51;3; 0.000000, 0.705560,-0.000000;;, - 52;3;-0.000000, 0.705560, 0.000000;;, - 53;3; 0.000000, 0.705560,-0.000000;;, - 54;3; 0.000000, 0.705560, 0.000000;;, - 55;3; 0.000000, 0.705560,-0.000000;;, - 56;3;-0.000000, 0.705560, 0.000000;;, - 57;3; 0.000000, 0.705559, 0.000000;;, - 58;3;-0.000000, 0.705560, 0.000000;;, - 59;3; 0.000000, 0.705560, 0.000000;;, - 60;3; 0.000000, 0.705560,-0.000000;;, - 61;3; 0.000000, 0.705560, 0.000000;;, - 62;3; 0.000000, 0.705560, 0.000000;;, - 63;3; 0.000000, 0.705560, 0.000000;;, - 64;3; 0.000000, 0.705560,-0.000000;;, - 65;3;-0.000000, 0.705560, 0.000000;;, - 66;3; 0.000000, 0.705560, 0.000000;;, - 67;3;-0.000000, 0.705560, 0.000000;;, - 68;3; 0.000000, 0.705559, 0.000000;;, - 69;3; 0.000000, 0.705560, 0.000000;;, - 70;3; 0.000000, 0.705560, 0.000000;;, - 71;3;-0.000000, 0.705560, 0.000000;;, - 72;3;-0.000000, 0.705560, 0.000000;;, - 73;3;-0.000000, 0.705560, 0.000000;;, - 74;3;-0.000000, 0.705560, 0.000000;;, - 75;3;-0.000000, 0.705560, 0.000000;;, - 76;3; 0.000000, 0.705559, 0.000000;;, - 77;3;-0.000000, 0.705560, 0.000000;;, - 78;3; 0.000000, 0.705560, 0.000000;;, - 79;3;-0.000000, 0.705559, 0.000000;;, - 80;3; 0.000000, 0.705560, 0.000000;;, - 81;3;-0.000000, 0.705560, 0.000000;;, - 82;3; 0.000000, 0.705560, 0.000000;;, - 83;3; 0.000000, 0.705560, 0.000000;;, - 84;3; 0.000000, 0.705560,-0.000000;;, - 85;3;-0.000000, 0.705560, 0.000000;;, - 86;3;-0.000000, 0.705560, 0.000000;;, - 87;3; 0.000000, 0.705560,-0.000000;;, - 88;3; 0.000000, 0.705560, 0.000000;;, - 89;3; 0.000000, 0.705560, 0.000000;;, - 90;3; 0.000000, 0.705560, 0.000000;;, - 91;3; 0.000000, 0.705560, 0.000000;;, - 92;3; 0.000000, 0.705560, 0.000000;;, - 93;3; 0.000000, 0.705560, 0.000000;;, - 94;3; 0.000000, 0.705560, 0.000000;;, - 95;3; 0.000000, 0.705560, 0.000000;;, - 96;3; 0.000000, 0.705560,-0.000000;;, - 97;3; 0.000000, 0.705560,-0.000000;;, - 98;3; 0.000000, 0.705560, 0.000000;;, - 99;3; 0.000000, 0.705560, 0.000000;;, - 100;3;-0.000000, 0.705560,-0.000000;;, - 101;3; 0.000000, 0.705560,-0.000000;;, - 102;3; 0.000000, 0.705559, 0.000000;;, - 103;3;-0.000000, 0.705560,-0.000000;;, - 104;3;-0.000000, 0.705559,-0.000000;;, - 105;3;-0.000000, 0.705560,-0.000000;;, - 106;3; 0.000000, 0.705560, 0.000000;;, - 107;3;-0.000000, 0.705559,-0.000000;;, - 108;3; 0.000000, 0.705560,-0.000000;;, - 109;3; 0.000000, 0.705559,-0.000000;;, - 110;3;-0.000000, 0.705559, 0.000000;;, - 111;3; 0.000000, 0.705560,-0.000000;;, - 112;3; 0.000000, 0.705560, 0.000000;;, - 113;3; 0.000000, 0.705560,-0.000000;;, - 114;3;-0.000000, 0.705559, 0.000000;;, - 115;3; 0.000000, 0.705560, 0.000000;;, - 116;3;-0.000000, 0.705560,-0.000000;;, - 117;3; 0.000000, 0.705560, 0.000000;;, - 118;3; 0.000000, 0.705560,-0.000000;;, - 119;3; 0.000000, 0.705560, 0.000000;;, - 120;3; 0.000000, 0.705560,-0.000000;;, - 121;3; 0.000000, 0.705560,-0.000000;;, - 122;3;-0.000000, 0.705560,-0.000000;;, - 123;3; 0.000000, 0.705560, 0.000000;;, - 124;3; 0.000000, 0.705560, 0.000000;;, - 125;3; 0.000000, 0.705560, 0.000000;;, - 126;3;-0.000000, 0.705560, 0.000000;;, - 127;3;-0.000000, 0.705560, 0.000000;;, - 128;3;-0.000000, 0.705560,-0.000000;;, - 129;3; 0.000000, 0.705560, 0.000000;;, - 130;3; 0.000000, 0.705559, 0.000000;;, - 131;3; 0.000000, 0.705560, 0.000000;;, - 132;3; 0.000000, 0.705560, 0.000000;;, - 133;3; 0.000000, 0.705560,-0.000000;;, - 134;3; 0.000000, 0.705560, 0.000000;;, - 135;3; 0.000000, 0.705560, 0.000000;;, - 136;3;-0.000000, 0.705560,-0.000000;;, - 137;3; 0.000000, 0.705560, 0.000000;;, - 138;3;-0.000000, 0.705559, 0.000000;;, - 139;3;-0.000000, 0.705560,-0.000000;;, - 140;3; 0.000000, 0.705560, 0.000000;;, - 141;3; 0.000000, 0.705560, 0.000000;;, - 142;3; 0.000000, 0.705560, 0.000000;;, - 143;3; 0.000000, 0.705560,-0.000000;;, - 144;3; 0.000000, 0.705560, 0.000000;;, - 145;3; 0.000000, 0.705560,-0.000000;;, - 146;3; 0.000000, 0.705560, 0.000000;;, - 147;3; 0.000000, 0.705560,-0.000000;;, - 148;3; 0.000000, 0.705560, 0.000000;;, - 149;3; 0.000000, 0.705560, 0.000000;;, - 150;3; 0.000000, 0.705560, 0.000000;;, - 151;3; 0.000000, 0.705560, 0.000000;;, - 152;3; 0.000000, 0.705560, 0.000000;;, - 153;3; 0.000000, 0.705560, 0.000000;;, - 154;3; 0.000000, 0.705560, 0.000000;;, - 155;3; 0.000000, 0.705560, 0.000000;;, - 156;3; 0.000000, 0.705560, 0.000000;;, - 157;3; 0.000000, 0.705560, 0.000000;;, - 158;3; 0.000000, 0.705560, 0.000000;;, - 159;3; 0.000000, 0.705560, 0.000000;;, - 160;3; 0.000000, 0.705560, 0.000000;;, - 161;3; 0.000000, 0.705560, 0.000000;;, - 162;3; 0.000000, 0.705560, 0.000000;;, - 163;3; 0.000000, 0.705560, 0.000000;;, - 164;3; 0.000000, 0.705560, 0.000000;;, - 165;3; 0.000000, 0.705560, 0.000000;;, - 166;3; 0.000000, 0.705560, 0.000000;;, - 167;3; 0.000000, 0.705560, 0.000000;;, - 168;3; 0.000000, 0.705560, 0.000000;;, - 169;3; 0.000000, 0.705560, 0.000000;;, - 170;3; 0.000000, 0.705560, 0.000000;;, - 171;3; 0.000000, 0.705560, 0.000000;;, - 172;3; 0.000000, 0.705560, 0.000000;;, - 173;3; 0.000000, 0.705560, 0.000000;;, - 174;3; 0.000000, 0.705560, 0.000000;;, - 175;3; 0.000000, 0.705560, 0.000000;;, - 176;3; 0.000000, 0.705560, 0.000000;;, - 177;3; 0.000000, 0.705560, 0.000000;;, - 178;3; 0.000000, 0.705560, 0.000000;;, - 179;3; 0.000000, 0.705560, 0.000000;;, - 180;3; 0.000000, 0.705560, 0.000000;;, - 181;3; 0.000000, 0.705560, 0.000000;;, - 182;3; 0.000000, 0.705560, 0.000000;;, - 183;3; 0.000000, 0.705560, 0.000000;;, - 184;3; 0.000000, 0.705560, 0.000000;;, - 185;3; 0.000000, 0.705560, 0.000000;;, - 186;3; 0.000000, 0.705560, 0.000000;;, - 187;3; 0.000000, 0.705560, 0.000000;;, - 188;3; 0.000000, 0.705560, 0.000000;;, - 189;3; 0.000000, 0.705560, 0.000000;;, - 190;3; 0.000000, 0.705560, 0.000000;;, - 191;3; 0.000000, 0.705560, 0.000000;;, - 192;3; 0.000000, 0.705560, 0.000000;;, - 193;3; 0.000000, 0.705560, 0.000000;;, - 194;3; 0.000000, 0.705560, 0.000000;;, - 195;3; 0.000000, 0.705560, 0.000000;;, - 196;3; 0.000000, 0.705560, 0.000000;;, - 197;3; 0.000000, 0.705560, 0.000000;;, - 198;3; 0.000000, 0.705560, 0.000000;;, - 199;3; 0.000000, 0.705560, 0.000000;;, - 200;3; 0.000000, 0.705560, 0.000000;;, - 201;3; 0.000000, 0.705560, 0.000000;;, - 202;3; 0.000000, 0.705560, 0.000000;;, - 203;3; 0.000000, 0.705560, 0.000000;;, - 204;3; 0.000000, 0.705560, 0.000000;;, - 205;3; 0.000000, 0.705560, 0.000000;;, - 206;3; 0.000000, 0.705560, 0.000000;;, - 207;3; 0.000000, 0.705560, 0.000000;;, - 208;3; 0.000000, 0.705560, 0.000000;;, - 209;3; 0.000000, 0.705560, 0.000000;;, - 210;3; 0.000000, 0.705560, 0.000000;;, - 211;3; 0.000000, 0.705560, 0.000000;;, - 212;3; 0.000000, 0.705560, 0.000000;;, - 213;3; 0.000000, 0.705560, 0.000000;;, - 214;3; 0.000000, 0.705560, 0.000000;;, - 215;3; 0.000000, 0.705560, 0.000000;;, - 216;3; 0.000000, 0.705560, 0.000000;;, - 217;3; 0.000000, 0.705560, 0.000000;;, - 218;3; 0.000000, 0.705560, 0.000000;;, - 219;3; 0.000000, 0.705560, 0.000000;;, - 220;3; 0.000000, 0.705560, 0.000000;;, - 221;3; 0.000000, 0.705560, 0.000000;;, - 222;3; 0.000000, 0.705560, 0.000000;;, - 223;3; 0.000000, 0.705560, 0.000000;;, - 224;3; 0.000000, 0.705560, 0.000000;;, - 225;3; 0.000000, 0.705560, 0.000000;;, - 226;3; 0.000000, 0.705560, 0.000000;;, - 227;3; 0.000000, 0.705560, 0.000000;;, - 228;3; 0.000000, 0.705560, 0.000000;;, - 229;3; 0.000000, 0.705560, 0.000000;;, - 230;3; 0.000000, 0.705560, 0.000000;;, - 231;3; 0.000000, 0.705560, 0.000000;;, - 232;3; 0.000000, 0.705560, 0.000000;;, - 233;3; 0.000000, 0.705560, 0.000000;;, - 234;3; 0.000000, 0.705560, 0.000000;;, - 235;3; 0.000000, 0.705560, 0.000000;;, - 236;3; 0.000000, 0.705560, 0.000000;;, - 237;3; 0.000000, 0.705560, 0.000000;;, - 238;3; 0.000000, 0.705560, 0.000000;;, - 239;3; 0.000000, 0.705560, 0.000000;;, - 240;3; 0.000000, 0.705560, 0.000000;;, - 241;3; 0.000000, 0.705560, 0.000000;;, - 242;3; 0.000000, 0.705560, 0.000000;;, - 243;3; 0.000000, 0.705560, 0.000000;;, - 244;3; 0.000000, 0.705560, 0.000000;;, - 245;3; 0.000000, 0.705560, 0.000000;;, - 246;3; 0.000000, 0.705560, 0.000000;;, - 247;3; 0.000000, 0.705560, 0.000000;;, - 248;3; 0.000000, 0.705560, 0.000000;;, - 249;3; 0.000000, 0.705560, 0.000000;;; - } - } - Animation { - {Cube} - AnimationKey { // Rotation - 0; - 250; - 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;;, - 189;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 190;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 191;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 192;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 193;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 194;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 195;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 196;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 197;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 198;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 199;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 200;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 201;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 202;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 203;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 204;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 205;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 206;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 207;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 208;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 209;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 210;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 211;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 212;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 213;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 214;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 215;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 216;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 217;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 218;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 219;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 220;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 221;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 222;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 223;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 224;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 225;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 226;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 227;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 228;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 229;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 230;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 231;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 232;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 233;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 234;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 235;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 236;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 237;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 238;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 239;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 240;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 241;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 242;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 243;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 244;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 245;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 246;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 247;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 248;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 249;4;-1.000000, 0.000000, 0.000000, 0.000000;;; - } - AnimationKey { // Scale - 1; - 250; - 0;3; 0.594084, 1.000000, 0.474968;;, - 1;3; 0.594084, 1.000000, 0.474968;;, - 2;3; 0.594084, 1.000000, 0.474968;;, - 3;3; 0.594084, 1.000000, 0.474968;;, - 4;3; 0.594084, 1.000000, 0.474968;;, - 5;3; 0.594084, 1.000000, 0.474968;;, - 6;3; 0.594084, 1.000000, 0.474968;;, - 7;3; 0.594084, 1.000000, 0.474968;;, - 8;3; 0.594084, 1.000000, 0.474968;;, - 9;3; 0.594084, 1.000000, 0.474968;;, - 10;3; 0.594084, 1.000000, 0.474968;;, - 11;3; 0.594084, 1.000000, 0.474968;;, - 12;3; 0.594084, 1.000000, 0.474968;;, - 13;3; 0.594084, 1.000000, 0.474968;;, - 14;3; 0.594084, 1.000000, 0.474968;;, - 15;3; 0.594084, 1.000000, 0.474968;;, - 16;3; 0.594084, 1.000000, 0.474968;;, - 17;3; 0.594084, 1.000000, 0.474968;;, - 18;3; 0.594084, 1.000000, 0.474968;;, - 19;3; 0.594084, 1.000000, 0.474968;;, - 20;3; 0.594084, 1.000000, 0.474968;;, - 21;3; 0.594084, 1.000000, 0.474968;;, - 22;3; 0.594084, 1.000000, 0.474968;;, - 23;3; 0.594084, 1.000000, 0.474968;;, - 24;3; 0.594084, 1.000000, 0.474968;;, - 25;3; 0.594084, 1.000000, 0.474968;;, - 26;3; 0.594084, 1.000000, 0.474968;;, - 27;3; 0.594084, 1.000000, 0.474968;;, - 28;3; 0.594084, 1.000000, 0.474968;;, - 29;3; 0.594084, 1.000000, 0.474968;;, - 30;3; 0.594084, 1.000000, 0.474968;;, - 31;3; 0.594084, 1.000000, 0.474968;;, - 32;3; 0.594084, 1.000000, 0.474968;;, - 33;3; 0.594084, 1.000000, 0.474968;;, - 34;3; 0.594084, 1.000000, 0.474968;;, - 35;3; 0.594084, 1.000000, 0.474968;;, - 36;3; 0.594084, 1.000000, 0.474968;;, - 37;3; 0.594084, 1.000000, 0.474968;;, - 38;3; 0.594084, 1.000000, 0.474968;;, - 39;3; 0.594084, 1.000000, 0.474968;;, - 40;3; 0.594084, 1.000000, 0.474968;;, - 41;3; 0.594084, 1.000000, 0.474968;;, - 42;3; 0.594084, 1.000000, 0.474968;;, - 43;3; 0.594084, 1.000000, 0.474968;;, - 44;3; 0.594084, 1.000000, 0.474968;;, - 45;3; 0.594084, 1.000000, 0.474968;;, - 46;3; 0.594084, 1.000000, 0.474968;;, - 47;3; 0.594084, 1.000000, 0.474968;;, - 48;3; 0.594084, 1.000000, 0.474968;;, - 49;3; 0.594084, 1.000000, 0.474968;;, - 50;3; 0.594084, 1.000000, 0.474968;;, - 51;3; 0.594084, 1.000000, 0.474968;;, - 52;3; 0.594084, 1.000000, 0.474968;;, - 53;3; 0.594084, 1.000000, 0.474968;;, - 54;3; 0.594084, 1.000000, 0.474968;;, - 55;3; 0.594084, 1.000000, 0.474968;;, - 56;3; 0.594084, 1.000000, 0.474968;;, - 57;3; 0.594084, 1.000000, 0.474968;;, - 58;3; 0.594084, 1.000000, 0.474968;;, - 59;3; 0.594084, 1.000000, 0.474968;;, - 60;3; 0.594084, 1.000000, 0.474968;;, - 61;3; 0.594084, 1.000000, 0.474968;;, - 62;3; 0.594084, 1.000000, 0.474968;;, - 63;3; 0.594084, 1.000000, 0.474968;;, - 64;3; 0.594084, 1.000000, 0.474968;;, - 65;3; 0.594084, 1.000000, 0.474968;;, - 66;3; 0.594084, 1.000000, 0.474968;;, - 67;3; 0.594084, 1.000000, 0.474968;;, - 68;3; 0.594084, 1.000000, 0.474968;;, - 69;3; 0.594084, 1.000000, 0.474968;;, - 70;3; 0.594084, 1.000000, 0.474968;;, - 71;3; 0.594084, 1.000000, 0.474968;;, - 72;3; 0.594084, 1.000000, 0.474968;;, - 73;3; 0.594084, 1.000000, 0.474968;;, - 74;3; 0.594084, 1.000000, 0.474968;;, - 75;3; 0.594084, 1.000000, 0.474968;;, - 76;3; 0.594084, 1.000000, 0.474968;;, - 77;3; 0.594084, 1.000000, 0.474968;;, - 78;3; 0.594084, 1.000000, 0.474968;;, - 79;3; 0.594084, 1.000000, 0.474968;;, - 80;3; 0.594084, 1.000000, 0.474968;;, - 81;3; 0.594084, 1.000000, 0.474968;;, - 82;3; 0.594084, 1.000000, 0.474968;;, - 83;3; 0.594084, 1.000000, 0.474968;;, - 84;3; 0.594084, 1.000000, 0.474968;;, - 85;3; 0.594084, 1.000000, 0.474968;;, - 86;3; 0.594084, 1.000000, 0.474968;;, - 87;3; 0.594084, 1.000000, 0.474968;;, - 88;3; 0.594084, 1.000000, 0.474968;;, - 89;3; 0.594084, 1.000000, 0.474968;;, - 90;3; 0.594084, 1.000000, 0.474968;;, - 91;3; 0.594084, 1.000000, 0.474968;;, - 92;3; 0.594084, 1.000000, 0.474968;;, - 93;3; 0.594084, 1.000000, 0.474968;;, - 94;3; 0.594084, 1.000000, 0.474968;;, - 95;3; 0.594084, 1.000000, 0.474968;;, - 96;3; 0.594084, 1.000000, 0.474968;;, - 97;3; 0.594084, 1.000000, 0.474968;;, - 98;3; 0.594084, 1.000000, 0.474968;;, - 99;3; 0.594084, 1.000000, 0.474968;;, - 100;3; 0.594084, 1.000000, 0.474968;;, - 101;3; 0.594084, 1.000000, 0.474968;;, - 102;3; 0.594084, 1.000000, 0.474968;;, - 103;3; 0.594084, 1.000000, 0.474968;;, - 104;3; 0.594084, 1.000000, 0.474968;;, - 105;3; 0.594084, 1.000000, 0.474968;;, - 106;3; 0.594084, 1.000000, 0.474968;;, - 107;3; 0.594084, 1.000000, 0.474968;;, - 108;3; 0.594084, 1.000000, 0.474968;;, - 109;3; 0.594084, 1.000000, 0.474968;;, - 110;3; 0.594084, 1.000000, 0.474968;;, - 111;3; 0.594084, 1.000000, 0.474968;;, - 112;3; 0.594084, 1.000000, 0.474968;;, - 113;3; 0.594084, 1.000000, 0.474968;;, - 114;3; 0.594084, 1.000000, 0.474968;;, - 115;3; 0.594084, 1.000000, 0.474968;;, - 116;3; 0.594084, 1.000000, 0.474968;;, - 117;3; 0.594084, 1.000000, 0.474968;;, - 118;3; 0.594084, 1.000000, 0.474968;;, - 119;3; 0.594084, 1.000000, 0.474968;;, - 120;3; 0.594084, 1.000000, 0.474968;;, - 121;3; 0.594084, 1.000000, 0.474968;;, - 122;3; 0.594084, 1.000000, 0.474968;;, - 123;3; 0.594084, 1.000000, 0.474968;;, - 124;3; 0.594084, 1.000000, 0.474968;;, - 125;3; 0.594084, 1.000000, 0.474968;;, - 126;3; 0.594084, 1.000000, 0.474968;;, - 127;3; 0.594084, 1.000000, 0.474968;;, - 128;3; 0.594084, 1.000000, 0.474968;;, - 129;3; 0.594084, 1.000000, 0.474968;;, - 130;3; 0.594084, 1.000000, 0.474968;;, - 131;3; 0.594084, 1.000000, 0.474968;;, - 132;3; 0.594084, 1.000000, 0.474968;;, - 133;3; 0.594084, 1.000000, 0.474968;;, - 134;3; 0.594084, 1.000000, 0.474968;;, - 135;3; 0.594084, 1.000000, 0.474968;;, - 136;3; 0.594084, 1.000000, 0.474968;;, - 137;3; 0.594084, 1.000000, 0.474968;;, - 138;3; 0.594084, 1.000000, 0.474968;;, - 139;3; 0.594084, 1.000000, 0.474968;;, - 140;3; 0.594084, 1.000000, 0.474968;;, - 141;3; 0.594084, 1.000000, 0.474968;;, - 142;3; 0.594084, 1.000000, 0.474968;;, - 143;3; 0.594084, 1.000000, 0.474968;;, - 144;3; 0.594084, 1.000000, 0.474968;;, - 145;3; 0.594084, 1.000000, 0.474968;;, - 146;3; 0.594084, 1.000000, 0.474968;;, - 147;3; 0.594084, 1.000000, 0.474968;;, - 148;3; 0.594084, 1.000000, 0.474968;;, - 149;3; 0.594084, 1.000000, 0.474968;;, - 150;3; 0.594084, 1.000000, 0.474968;;, - 151;3; 0.594084, 1.000000, 0.474968;;, - 152;3; 0.594084, 1.000000, 0.474968;;, - 153;3; 0.594084, 1.000000, 0.474968;;, - 154;3; 0.594084, 1.000000, 0.474968;;, - 155;3; 0.594084, 1.000000, 0.474968;;, - 156;3; 0.594084, 1.000000, 0.474968;;, - 157;3; 0.594084, 1.000000, 0.474968;;, - 158;3; 0.594084, 1.000000, 0.474968;;, - 159;3; 0.594084, 1.000000, 0.474968;;, - 160;3; 0.594084, 1.000000, 0.474968;;, - 161;3; 0.594084, 1.000000, 0.474968;;, - 162;3; 0.594084, 1.000000, 0.474968;;, - 163;3; 0.594084, 1.000000, 0.474968;;, - 164;3; 0.594084, 1.000000, 0.474968;;, - 165;3; 0.594084, 1.000000, 0.474968;;, - 166;3; 0.594084, 1.000000, 0.474968;;, - 167;3; 0.594084, 1.000000, 0.474968;;, - 168;3; 0.594084, 1.000000, 0.474968;;, - 169;3; 0.594084, 1.000000, 0.474968;;, - 170;3; 0.594084, 1.000000, 0.474968;;, - 171;3; 0.594084, 1.000000, 0.474968;;, - 172;3; 0.594084, 1.000000, 0.474968;;, - 173;3; 0.594084, 1.000000, 0.474968;;, - 174;3; 0.594084, 1.000000, 0.474968;;, - 175;3; 0.594084, 1.000000, 0.474968;;, - 176;3; 0.594084, 1.000000, 0.474968;;, - 177;3; 0.594084, 1.000000, 0.474968;;, - 178;3; 0.594084, 1.000000, 0.474968;;, - 179;3; 0.594084, 1.000000, 0.474968;;, - 180;3; 0.594084, 1.000000, 0.474968;;, - 181;3; 0.594084, 1.000000, 0.474968;;, - 182;3; 0.594084, 1.000000, 0.474968;;, - 183;3; 0.594084, 1.000000, 0.474968;;, - 184;3; 0.594084, 1.000000, 0.474968;;, - 185;3; 0.594084, 1.000000, 0.474968;;, - 186;3; 0.594084, 1.000000, 0.474968;;, - 187;3; 0.594084, 1.000000, 0.474968;;, - 188;3; 0.594084, 1.000000, 0.474968;;, - 189;3; 0.594084, 1.000000, 0.474968;;, - 190;3; 0.594084, 1.000000, 0.474968;;, - 191;3; 0.594084, 1.000000, 0.474968;;, - 192;3; 0.594084, 1.000000, 0.474968;;, - 193;3; 0.594084, 1.000000, 0.474968;;, - 194;3; 0.594084, 1.000000, 0.474968;;, - 195;3; 0.594084, 1.000000, 0.474968;;, - 196;3; 0.594084, 1.000000, 0.474968;;, - 197;3; 0.594084, 1.000000, 0.474968;;, - 198;3; 0.594084, 1.000000, 0.474968;;, - 199;3; 0.594084, 1.000000, 0.474968;;, - 200;3; 0.594084, 1.000000, 0.474968;;, - 201;3; 0.594084, 1.000000, 0.474968;;, - 202;3; 0.594084, 1.000000, 0.474968;;, - 203;3; 0.594084, 1.000000, 0.474968;;, - 204;3; 0.594084, 1.000000, 0.474968;;, - 205;3; 0.594084, 1.000000, 0.474968;;, - 206;3; 0.594084, 1.000000, 0.474968;;, - 207;3; 0.594084, 1.000000, 0.474968;;, - 208;3; 0.594084, 1.000000, 0.474968;;, - 209;3; 0.594084, 1.000000, 0.474968;;, - 210;3; 0.594084, 1.000000, 0.474968;;, - 211;3; 0.594084, 1.000000, 0.474968;;, - 212;3; 0.594084, 1.000000, 0.474968;;, - 213;3; 0.594084, 1.000000, 0.474968;;, - 214;3; 0.594084, 1.000000, 0.474968;;, - 215;3; 0.594084, 1.000000, 0.474968;;, - 216;3; 0.594084, 1.000000, 0.474968;;, - 217;3; 0.594084, 1.000000, 0.474968;;, - 218;3; 0.594084, 1.000000, 0.474968;;, - 219;3; 0.594084, 1.000000, 0.474968;;, - 220;3; 0.594084, 1.000000, 0.474968;;, - 221;3; 0.594084, 1.000000, 0.474968;;, - 222;3; 0.594084, 1.000000, 0.474968;;, - 223;3; 0.594084, 1.000000, 0.474968;;, - 224;3; 0.594084, 1.000000, 0.474968;;, - 225;3; 0.594084, 1.000000, 0.474968;;, - 226;3; 0.594084, 1.000000, 0.474968;;, - 227;3; 0.594084, 1.000000, 0.474968;;, - 228;3; 0.594084, 1.000000, 0.474968;;, - 229;3; 0.594084, 1.000000, 0.474968;;, - 230;3; 0.594084, 1.000000, 0.474968;;, - 231;3; 0.594084, 1.000000, 0.474968;;, - 232;3; 0.594084, 1.000000, 0.474968;;, - 233;3; 0.594084, 1.000000, 0.474968;;, - 234;3; 0.594084, 1.000000, 0.474968;;, - 235;3; 0.594084, 1.000000, 0.474968;;, - 236;3; 0.594084, 1.000000, 0.474968;;, - 237;3; 0.594084, 1.000000, 0.474968;;, - 238;3; 0.594084, 1.000000, 0.474968;;, - 239;3; 0.594084, 1.000000, 0.474968;;, - 240;3; 0.594084, 1.000000, 0.474968;;, - 241;3; 0.594084, 1.000000, 0.474968;;, - 242;3; 0.594084, 1.000000, 0.474968;;, - 243;3; 0.594084, 1.000000, 0.474968;;, - 244;3; 0.594084, 1.000000, 0.474968;;, - 245;3; 0.594084, 1.000000, 0.474968;;, - 246;3; 0.594084, 1.000000, 0.474968;;, - 247;3; 0.594084, 1.000000, 0.474968;;, - 248;3; 0.594084, 1.000000, 0.474968;;, - 249;3; 0.594084, 1.000000, 0.474968;;; - } - AnimationKey { // Position - 2; - 250; - 0;3;-0.790636,-0.072915,-0.120927;;, - 1;3;-0.790636,-0.072915,-0.120927;;, - 2;3;-0.790636,-0.072915,-0.120927;;, - 3;3;-0.790636,-0.072915,-0.120927;;, - 4;3;-0.790636,-0.072915,-0.120927;;, - 5;3;-0.790636,-0.072915,-0.120927;;, - 6;3;-0.790636,-0.072915,-0.120927;;, - 7;3;-0.790636,-0.072915,-0.120927;;, - 8;3;-0.790636,-0.072915,-0.120927;;, - 9;3;-0.790636,-0.072915,-0.120927;;, - 10;3;-0.790636,-0.072915,-0.120927;;, - 11;3;-0.790636,-0.072915,-0.120927;;, - 12;3;-0.790636,-0.072915,-0.120927;;, - 13;3;-0.790636,-0.072915,-0.120927;;, - 14;3;-0.790636,-0.072915,-0.120927;;, - 15;3;-0.790636,-0.072915,-0.120927;;, - 16;3;-0.790636,-0.072915,-0.120927;;, - 17;3;-0.790636,-0.072915,-0.120927;;, - 18;3;-0.790636,-0.072915,-0.120927;;, - 19;3;-0.790636,-0.072915,-0.120927;;, - 20;3;-0.790636,-0.072915,-0.120927;;, - 21;3;-0.790636,-0.072915,-0.120927;;, - 22;3;-0.790636,-0.072915,-0.120927;;, - 23;3;-0.790636,-0.072915,-0.120927;;, - 24;3;-0.790636,-0.072915,-0.120927;;, - 25;3;-0.790636,-0.072915,-0.120927;;, - 26;3;-0.790636,-0.072915,-0.120927;;, - 27;3;-0.790636,-0.072915,-0.120927;;, - 28;3;-0.790636,-0.072915,-0.120927;;, - 29;3;-0.790636,-0.072915,-0.120927;;, - 30;3;-0.790636,-0.072915,-0.120927;;, - 31;3;-0.790636,-0.072915,-0.120927;;, - 32;3;-0.790636,-0.072915,-0.120927;;, - 33;3;-0.790636,-0.072915,-0.120927;;, - 34;3;-0.790636,-0.072915,-0.120927;;, - 35;3;-0.790636,-0.072915,-0.120927;;, - 36;3;-0.790636,-0.072915,-0.120927;;, - 37;3;-0.790636,-0.072915,-0.120927;;, - 38;3;-0.790636,-0.072915,-0.120927;;, - 39;3;-0.790636,-0.072915,-0.120927;;, - 40;3;-0.790636,-0.072915,-0.120927;;, - 41;3;-0.790636,-0.072915,-0.120927;;, - 42;3;-0.790636,-0.072915,-0.120927;;, - 43;3;-0.790636,-0.072915,-0.120927;;, - 44;3;-0.790636,-0.072915,-0.120927;;, - 45;3;-0.790636,-0.072915,-0.120927;;, - 46;3;-0.790636,-0.072915,-0.120927;;, - 47;3;-0.790636,-0.072915,-0.120927;;, - 48;3;-0.790636,-0.072915,-0.120927;;, - 49;3;-0.790636,-0.072915,-0.120927;;, - 50;3;-0.790636,-0.072915,-0.120927;;, - 51;3;-0.790636,-0.072915,-0.120927;;, - 52;3;-0.790636,-0.072915,-0.120927;;, - 53;3;-0.790636,-0.072915,-0.120927;;, - 54;3;-0.790636,-0.072915,-0.120927;;, - 55;3;-0.790636,-0.072915,-0.120927;;, - 56;3;-0.790636,-0.072915,-0.120927;;, - 57;3;-0.790636,-0.072915,-0.120927;;, - 58;3;-0.790636,-0.072915,-0.120927;;, - 59;3;-0.790636,-0.072915,-0.120927;;, - 60;3;-0.790636,-0.072915,-0.120927;;, - 61;3;-0.790636,-0.072915,-0.120927;;, - 62;3;-0.790636,-0.072915,-0.120927;;, - 63;3;-0.790636,-0.072915,-0.120927;;, - 64;3;-0.790636,-0.072915,-0.120927;;, - 65;3;-0.790636,-0.072915,-0.120927;;, - 66;3;-0.790636,-0.072915,-0.120927;;, - 67;3;-0.790636,-0.072915,-0.120927;;, - 68;3;-0.790636,-0.072915,-0.120927;;, - 69;3;-0.790636,-0.072915,-0.120927;;, - 70;3;-0.790636,-0.072915,-0.120927;;, - 71;3;-0.790636,-0.072915,-0.120927;;, - 72;3;-0.790636,-0.072915,-0.120927;;, - 73;3;-0.790636,-0.072915,-0.120927;;, - 74;3;-0.790636,-0.072915,-0.120927;;, - 75;3;-0.790636,-0.072915,-0.120927;;, - 76;3;-0.790636,-0.072915,-0.120927;;, - 77;3;-0.790636,-0.072915,-0.120927;;, - 78;3;-0.790636,-0.072915,-0.120927;;, - 79;3;-0.790636,-0.072915,-0.120927;;, - 80;3;-0.790636,-0.072915,-0.120927;;, - 81;3;-0.790636,-0.072915,-0.120927;;, - 82;3;-0.790636,-0.072915,-0.120927;;, - 83;3;-0.790636,-0.072915,-0.120927;;, - 84;3;-0.790636,-0.072915,-0.120927;;, - 85;3;-0.790636,-0.072915,-0.120927;;, - 86;3;-0.790636,-0.072915,-0.120927;;, - 87;3;-0.790636,-0.072915,-0.120927;;, - 88;3;-0.790636,-0.072915,-0.120927;;, - 89;3;-0.790636,-0.072915,-0.120927;;, - 90;3;-0.790636,-0.072915,-0.120927;;, - 91;3;-0.790636,-0.072915,-0.120927;;, - 92;3;-0.790636,-0.072915,-0.120927;;, - 93;3;-0.790636,-0.072915,-0.120927;;, - 94;3;-0.790636,-0.072915,-0.120927;;, - 95;3;-0.790636,-0.072915,-0.120927;;, - 96;3;-0.790636,-0.072915,-0.120927;;, - 97;3;-0.790636,-0.072915,-0.120927;;, - 98;3;-0.790636,-0.072915,-0.120927;;, - 99;3;-0.790636,-0.072915,-0.120927;;, - 100;3;-0.790636,-0.072915,-0.120927;;, - 101;3;-0.790636,-0.072915,-0.120927;;, - 102;3;-0.790636,-0.072915,-0.120927;;, - 103;3;-0.790636,-0.072915,-0.120927;;, - 104;3;-0.790636,-0.072915,-0.120927;;, - 105;3;-0.790636,-0.072915,-0.120927;;, - 106;3;-0.790636,-0.072915,-0.120927;;, - 107;3;-0.790636,-0.072915,-0.120927;;, - 108;3;-0.790636,-0.072915,-0.120927;;, - 109;3;-0.790636,-0.072915,-0.120927;;, - 110;3;-0.790636,-0.072915,-0.120927;;, - 111;3;-0.790636,-0.072915,-0.120927;;, - 112;3;-0.790636,-0.072915,-0.120927;;, - 113;3;-0.790636,-0.072915,-0.120927;;, - 114;3;-0.790636,-0.072915,-0.120927;;, - 115;3;-0.790636,-0.072915,-0.120927;;, - 116;3;-0.790636,-0.072915,-0.120927;;, - 117;3;-0.790636,-0.072915,-0.120927;;, - 118;3;-0.790636,-0.072915,-0.120927;;, - 119;3;-0.790636,-0.072915,-0.120927;;, - 120;3;-0.790636,-0.072915,-0.120927;;, - 121;3;-0.790636,-0.072915,-0.120927;;, - 122;3;-0.790636,-0.072915,-0.120927;;, - 123;3;-0.790636,-0.072915,-0.120927;;, - 124;3;-0.790636,-0.072915,-0.120927;;, - 125;3;-0.790636,-0.072915,-0.120927;;, - 126;3;-0.790636,-0.072915,-0.120927;;, - 127;3;-0.790636,-0.072915,-0.120927;;, - 128;3;-0.790636,-0.072915,-0.120927;;, - 129;3;-0.790636,-0.072915,-0.120927;;, - 130;3;-0.790636,-0.072915,-0.120927;;, - 131;3;-0.790636,-0.072915,-0.120927;;, - 132;3;-0.790636,-0.072915,-0.120927;;, - 133;3;-0.790636,-0.072915,-0.120927;;, - 134;3;-0.790636,-0.072915,-0.120927;;, - 135;3;-0.790636,-0.072915,-0.120927;;, - 136;3;-0.790636,-0.072915,-0.120927;;, - 137;3;-0.790636,-0.072915,-0.120927;;, - 138;3;-0.790636,-0.072915,-0.120927;;, - 139;3;-0.790636,-0.072915,-0.120927;;, - 140;3;-0.790636,-0.072915,-0.120927;;, - 141;3;-0.790636,-0.072915,-0.120927;;, - 142;3;-0.790636,-0.072915,-0.120927;;, - 143;3;-0.790636,-0.072915,-0.120927;;, - 144;3;-0.790636,-0.072915,-0.120927;;, - 145;3;-0.790636,-0.072915,-0.120927;;, - 146;3;-0.790636,-0.072915,-0.120927;;, - 147;3;-0.790636,-0.072915,-0.120927;;, - 148;3;-0.790636,-0.072915,-0.120927;;, - 149;3;-0.790636,-0.072915,-0.120927;;, - 150;3;-0.790636,-0.072915,-0.120927;;, - 151;3;-0.790636,-0.072915,-0.120927;;, - 152;3;-0.790636,-0.072915,-0.120927;;, - 153;3;-0.790636,-0.072915,-0.120927;;, - 154;3;-0.790636,-0.072915,-0.120927;;, - 155;3;-0.790636,-0.072915,-0.120927;;, - 156;3;-0.790636,-0.072915,-0.120927;;, - 157;3;-0.790636,-0.072915,-0.120927;;, - 158;3;-0.790636,-0.072915,-0.120927;;, - 159;3;-0.790636,-0.072915,-0.120927;;, - 160;3;-0.790636,-0.072915,-0.120927;;, - 161;3;-0.790636,-0.072915,-0.120927;;, - 162;3;-0.790636,-0.072915,-0.120927;;, - 163;3;-0.790636,-0.072915,-0.120927;;, - 164;3;-0.790636,-0.072915,-0.120927;;, - 165;3;-0.790636,-0.072915,-0.120927;;, - 166;3;-0.790636,-0.072915,-0.120927;;, - 167;3;-0.790636,-0.072915,-0.120927;;, - 168;3;-0.790636,-0.072915,-0.120927;;, - 169;3;-0.790636,-0.072915,-0.120927;;, - 170;3;-0.790636,-0.072915,-0.120927;;, - 171;3;-0.790636,-0.072915,-0.120927;;, - 172;3;-0.790636,-0.072915,-0.120927;;, - 173;3;-0.790636,-0.072915,-0.120927;;, - 174;3;-0.790636,-0.072915,-0.120927;;, - 175;3;-0.790636,-0.072915,-0.120927;;, - 176;3;-0.790636,-0.072915,-0.120927;;, - 177;3;-0.790636,-0.072915,-0.120927;;, - 178;3;-0.790636,-0.072915,-0.120927;;, - 179;3;-0.790636,-0.072915,-0.120927;;, - 180;3;-0.790636,-0.072915,-0.120927;;, - 181;3;-0.790636,-0.072915,-0.120927;;, - 182;3;-0.790636,-0.072915,-0.120927;;, - 183;3;-0.790636,-0.072915,-0.120927;;, - 184;3;-0.790636,-0.072915,-0.120927;;, - 185;3;-0.790636,-0.072915,-0.120927;;, - 186;3;-0.790636,-0.072915,-0.120927;;, - 187;3;-0.790636,-0.072915,-0.120927;;, - 188;3;-0.790636,-0.072915,-0.120927;;, - 189;3;-0.790636,-0.072915,-0.120927;;, - 190;3;-0.790636,-0.072915,-0.120927;;, - 191;3;-0.790636,-0.072915,-0.120927;;, - 192;3;-0.790636,-0.072915,-0.120927;;, - 193;3;-0.790636,-0.072915,-0.120927;;, - 194;3;-0.790636,-0.072915,-0.120927;;, - 195;3;-0.790636,-0.072915,-0.120927;;, - 196;3;-0.790636,-0.072915,-0.120927;;, - 197;3;-0.790636,-0.072915,-0.120927;;, - 198;3;-0.790636,-0.072915,-0.120927;;, - 199;3;-0.790636,-0.072915,-0.120927;;, - 200;3;-0.790636,-0.072915,-0.120927;;, - 201;3;-0.790636,-0.072915,-0.120927;;, - 202;3;-0.790636,-0.072915,-0.120927;;, - 203;3;-0.790636,-0.072915,-0.120927;;, - 204;3;-0.790636,-0.072915,-0.120927;;, - 205;3;-0.790636,-0.072915,-0.120927;;, - 206;3;-0.790636,-0.072915,-0.120927;;, - 207;3;-0.790636,-0.072915,-0.120927;;, - 208;3;-0.790636,-0.072915,-0.120927;;, - 209;3;-0.790636,-0.072915,-0.120927;;, - 210;3;-0.790636,-0.072915,-0.120927;;, - 211;3;-0.790636,-0.072915,-0.120927;;, - 212;3;-0.790636,-0.072915,-0.120927;;, - 213;3;-0.790636,-0.072915,-0.120927;;, - 214;3;-0.790636,-0.072915,-0.120927;;, - 215;3;-0.790636,-0.072915,-0.120927;;, - 216;3;-0.790636,-0.072915,-0.120927;;, - 217;3;-0.790636,-0.072915,-0.120927;;, - 218;3;-0.790636,-0.072915,-0.120927;;, - 219;3;-0.790636,-0.072915,-0.120927;;, - 220;3;-0.790636,-0.072915,-0.120927;;, - 221;3;-0.790636,-0.072915,-0.120927;;, - 222;3;-0.790636,-0.072915,-0.120927;;, - 223;3;-0.790636,-0.072915,-0.120927;;, - 224;3;-0.790636,-0.072915,-0.120927;;, - 225;3;-0.790636,-0.072915,-0.120927;;, - 226;3;-0.790636,-0.072915,-0.120927;;, - 227;3;-0.790636,-0.072915,-0.120927;;, - 228;3;-0.790636,-0.072915,-0.120927;;, - 229;3;-0.790636,-0.072915,-0.120927;;, - 230;3;-0.790636,-0.072915,-0.120927;;, - 231;3;-0.790636,-0.072915,-0.120927;;, - 232;3;-0.790636,-0.072915,-0.120927;;, - 233;3;-0.790636,-0.072915,-0.120927;;, - 234;3;-0.790636,-0.072915,-0.120927;;, - 235;3;-0.790636,-0.072915,-0.120927;;, - 236;3;-0.790636,-0.072915,-0.120927;;, - 237;3;-0.790636,-0.072915,-0.120927;;, - 238;3;-0.790636,-0.072915,-0.120927;;, - 239;3;-0.790636,-0.072915,-0.120927;;, - 240;3;-0.790636,-0.072915,-0.120927;;, - 241;3;-0.790636,-0.072915,-0.120927;;, - 242;3;-0.790636,-0.072915,-0.120927;;, - 243;3;-0.790636,-0.072915,-0.120927;;, - 244;3;-0.790636,-0.072915,-0.120927;;, - 245;3;-0.790636,-0.072915,-0.120927;;, - 246;3;-0.790636,-0.072915,-0.120927;;, - 247;3;-0.790636,-0.072915,-0.120927;;, - 248;3;-0.790636,-0.072915,-0.120927;;, - 249;3;-0.790636,-0.072915,-0.120927;;; - } - } -} // End of AnimationSet Global diff --git a/mods/_various/mobs/models/tarantula.x b/mods/_various/mobs/models/tarantula.x deleted file mode 100644 index a361791f6..000000000 --- a/mods/_various/mobs/models/tarantula.x +++ /dev/null @@ -1,37588 +0,0 @@ -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.672467,-1.528196,-0.828771, 1.000000;; - } - Frame Armature_Bone { - FrameTransformMatrix { - -0.022287, 0.000001,-0.999752, 0.000000, - 0.999752, 0.000000,-0.022287, 0.000000, - -0.000000,-1.000000,-0.000001, 0.000000, - 0.506179, 1.550838, 1.103719, 1.000000;; - } - Frame Armature_Bone_002 { - FrameTransformMatrix { - -0.000001,-0.000000, 1.000000, 0.000000, - -0.022286, 0.999752,-0.000000, 0.000000, - -0.999752,-0.022287,-0.000001, 0.000000, - 0.000000, 0.344354,-0.000000, 1.000000;; - } - Frame Armature_Bone_003 { - FrameTransformMatrix { - 0.920869,-0.389858, 0.003366, 0.000000, - 0.374396, 0.886689, 0.271313, 0.000000, - -0.108759,-0.248583, 0.962485, 0.000000, - 0.000000, 0.826434, 0.000000, 1.000000;; - } - Frame Armature_Bone_005 { - FrameTransformMatrix { - -0.387537, 0.916651,-0.097809, 0.000000, - -0.044231,-0.124468,-0.991237, 0.000000, - -0.920793,-0.379815, 0.088780, 0.000000, - 0.000000, 0.761776, 0.000000, 1.000000;; - } - Frame Armature_Bone_006 { - FrameTransformMatrix { - 0.994682, 0.102985,-0.000918, 0.000000, - -0.102944, 0.994472, 0.020679, 0.000000, - 0.003042,-0.020475, 0.999786, 0.000000, - 0.000000, 0.660698, 0.000000, 1.000000;; - } - } // End of Armature_Bone_006 - } // End of Armature_Bone_005 - } // End of Armature_Bone_003 - Frame Armature_Bone_004 { - FrameTransformMatrix { - 0.936957, 0.349445, 0.000925, 0.000000, - -0.333569, 0.893594, 0.300370, 0.000000, - 0.104136,-0.281742, 0.953822, 0.000000, - 0.000000, 0.826434, 0.000000, 1.000000;; - } - Frame Armature_Bone_007 { - FrameTransformMatrix { - 0.341940, 0.931761,-0.122062, 0.000000, - 0.074553,-0.156381,-0.984879, 0.000000, - -0.936760, 0.327669,-0.122939, 0.000000, - -0.000000, 0.747179,-0.000000, 1.000000;; - } - Frame Armature_Bone_008 { - FrameTransformMatrix { - 0.994198, 0.107557,-0.001024, 0.000000, - -0.107516, 0.994008, 0.019680, 0.000000, - 0.003134,-0.019455, 0.999806, 0.000000, - 0.000000, 0.672674, 0.000000, 1.000000;; - } - } // End of Armature_Bone_008 - } // End of Armature_Bone_007 - } // End of Armature_Bone_004 - Frame Armature_Bone_009 { - FrameTransformMatrix { - -0.738149, 0.674637, 0.000000, 0.000000, - -0.674637,-0.738150,-0.000000, 0.000000, - 0.000000,-0.000000, 1.000000, 0.000000, - 0.000000, 0.826434, 0.000000, 1.000000;; - } - Frame Armature_Bone_029 { - FrameTransformMatrix { - 0.674637,-0.738150,-0.000000, 0.000000, - 0.738150, 0.674637, 0.000000, 0.000000, - 0.000000,-0.000000, 1.000000, 0.000000, - 0.000000, 0.868658, 0.000000, 1.000000;; - } - Frame Armature_Bone_033 { - 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, 1.279916, 0.000000, 1.000000;; - } - Frame Armature_Bone_037 { - 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, 1.228417, 0.000000, 1.000000;; - } - } // End of Armature_Bone_037 - } // End of Armature_Bone_033 - } // End of Armature_Bone_029 - } // End of Armature_Bone_009 - Frame Armature_Bone_010 { - FrameTransformMatrix { - -0.443098, 0.896473, 0.000000, 0.000000, - -0.896473,-0.443098, 0.000000, 0.000000, - 0.000000,-0.000000, 1.000000, 0.000000, - 0.000000, 0.826434, 0.000000, 1.000000;; - } - Frame Armature_Bone_030 { - FrameTransformMatrix { - 0.896473,-0.443098,-0.000000, 0.000000, - 0.443098, 0.896473, 0.000000, 0.000000, - 0.000000,-0.000000, 1.000000, 0.000000, - 0.000000, 0.666142,-0.000000, 1.000000;; - } - Frame Armature_Bone_034 { - 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, 1.279916, 0.000000, 1.000000;; - } - Frame Armature_Bone_038 { - 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, 1.228416,-0.000000, 1.000000;; - } - } // End of Armature_Bone_038 - } // End of Armature_Bone_034 - } // End of Armature_Bone_030 - } // End of Armature_Bone_010 - Frame Armature_Bone_011 { - FrameTransformMatrix { - 0.142387, 0.989811,-0.000000, 0.000000, - -0.989811, 0.142387, 0.000000, 0.000000, - 0.000000, 0.000000, 1.000000, 0.000000, - 0.000000, 0.826434, 0.000000, 1.000000;; - } - Frame Armature_Bone_031 { - FrameTransformMatrix { - 0.989811, 0.142387, 0.000000, 0.000000, - -0.142387, 0.989811,-0.000000, 0.000000, - -0.000000,-0.000000, 1.000000, 0.000000, - 0.000000, 0.586459, 0.000000, 1.000000;; - } - Frame Armature_Bone_035 { - 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, 1.279916, 0.000000, 1.000000;; - } - Frame Armature_Bone_039 { - 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, 1.228416,-0.000000, 1.000000;; - } - } // End of Armature_Bone_039 - } // End of Armature_Bone_035 - } // End of Armature_Bone_031 - } // End of Armature_Bone_011 - Frame Armature_Bone_012 { - FrameTransformMatrix { - 0.577704, 0.816246,-0.000000, 0.000000, - -0.816246, 0.577704,-0.000000, 0.000000, - 0.000000, 0.000000, 1.000000, 0.000000, - 0.000000, 0.826434, 0.000000, 1.000000;; - } - Frame Armature_Bone_032 { - FrameTransformMatrix { - 0.816246, 0.577704, 0.000000, 0.000000, - -0.577704, 0.816246,-0.000000, 0.000000, - -0.000000,-0.000000, 1.000000, 0.000000, - -0.000000, 0.690756, 0.000000, 1.000000;; - } - Frame Armature_Bone_036 { - 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, 1.279916, 0.000000, 1.000000;; - } - Frame Armature_Bone_040 { - 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, 1.228417, 0.000000, 1.000000;; - } - } // End of Armature_Bone_040 - } // End of Armature_Bone_036 - } // End of Armature_Bone_032 - } // End of Armature_Bone_012 - Frame Armature_Bone_013 { - FrameTransformMatrix { - -0.724868,-0.688888, 0.000000, 0.000000, - 0.688888,-0.724868, 0.000000, 0.000000, - 0.000000, 0.000000, 1.000000, 0.000000, - 0.000000, 0.826434, 0.000000, 1.000000;; - } - Frame Armature_Bone_017 { - FrameTransformMatrix { - 0.688888, 0.724868,-0.000000, 0.000000, - -0.724868, 0.688888, 0.000000, 0.000000, - 0.000000, 0.000000, 1.000000, 0.000000, - -0.000000, 0.893468, 0.000000, 1.000000;; - } - Frame Armature_Bone_021 { - 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, 1.294482,-0.000000, 1.000000;; - } - Frame Armature_Bone_025 { - 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, 1.228822,-0.000000, 1.000000;; - } - } // End of Armature_Bone_025 - } // End of Armature_Bone_021 - } // End of Armature_Bone_017 - } // End of Armature_Bone_013 - Frame Armature_Bone_014 { - FrameTransformMatrix { - 0.525789,-0.850615,-0.000000, 0.000000, - 0.850615, 0.525789, 0.000000, 0.000000, - 0.000000,-0.000000, 1.000000, 0.000000, - 0.000000, 0.826434, 0.000000, 1.000000;; - } - Frame Armature_Bone_018 { - FrameTransformMatrix { - 0.850615,-0.525789, 0.000000, 0.000000, - 0.525789, 0.850615,-0.000000, 0.000000, - -0.000000, 0.000000, 1.000000, 0.000000, - -0.000000, 0.680634,-0.000000, 1.000000;; - } - Frame Armature_Bone_022 { - 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, 1.294481,-0.000000, 1.000000;; - } - Frame Armature_Bone_026 { - 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, 1.228822,-0.000000, 1.000000;; - } - } // End of Armature_Bone_026 - } // End of Armature_Bone_022 - } // End of Armature_Bone_018 - } // End of Armature_Bone_014 - Frame Armature_Bone_015 { - FrameTransformMatrix { - 0.077964,-0.996956,-0.000000, 0.000000, - 0.996956, 0.077964, 0.000000, 0.000000, - 0.000000,-0.000000, 1.000000, 0.000000, - 0.000000, 0.826434, 0.000000, 1.000000;; - } - Frame Armature_Bone_019 { - FrameTransformMatrix { - 0.996956,-0.077964, 0.000000, 0.000000, - 0.077964, 0.996956,-0.000000, 0.000000, - -0.000000, 0.000000, 1.000000, 0.000000, - -0.000000, 0.592826, 0.000000, 1.000000;; - } - Frame Armature_Bone_023 { - 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, 1.294482,-0.000000, 1.000000;; - } - Frame Armature_Bone_027 { - 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, 1.228822,-0.000000, 1.000000;; - } - } // End of Armature_Bone_027 - } // End of Armature_Bone_023 - } // End of Armature_Bone_019 - } // End of Armature_Bone_015 - Frame Armature_Bone_016 { - FrameTransformMatrix { - -0.449112,-0.893475, 0.000000, 0.000000, - 0.893475,-0.449113, 0.000000, 0.000000, - 0.000000, 0.000000, 1.000000, 0.000000, - 0.000000, 0.826434, 0.000000, 1.000000;; - } - Frame Armature_Bone_020 { - FrameTransformMatrix { - 0.893475, 0.449112,-0.000000, 0.000000, - -0.449112, 0.893475,-0.000000, 0.000000, - 0.000000, 0.000000, 1.000000, 0.000000, - 0.000000, 0.683319, 0.000000, 1.000000;; - } - Frame Armature_Bone_024 { - 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, 1.294482,-0.000000, 1.000000;; - } - Frame Armature_Bone_028 { - 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, 1.228822,-0.000000, 1.000000;; - } - } // End of Armature_Bone_028 - } // End of Armature_Bone_024 - } // End of Armature_Bone_020 - } // End of Armature_Bone_016 - } // End of Armature_Bone_002 - } // End of Armature_Bone - Frame Armature_Bone_001 { - FrameTransformMatrix { - 0.000000, 1.000000, 0.000000, 0.000000, - -1.000000, 0.000000, 0.000000, 0.000000, - 0.000000, 0.000000, 1.000000, 0.000000, - 0.506179, 1.550838, 1.103719, 1.000000;; - } - } // End of Armature_Bone_001 - Frame Cube_001 { - FrameTransformMatrix { - -0.165085,-0.000000, 0.000000, 0.000000, - 0.000000,-0.348037, 0.000000, 0.000000, - 0.000000, 0.000000, 0.189174, 0.000000, - 0.672467, 1.528196, 1.101588, 1.000000;; - } - Mesh { // Cube_001 mesh - 744; - -7.525823; 8.883257;-0.581474;, - -7.525823; 5.349147;-0.581474;, - -8.858474; 5.349147;-0.581474;, - -8.858473; 8.883258;-0.581474;, - -7.525823; 8.883256; 0.581474;, - -8.858474; 8.883257; 0.581474;, - -8.858474; 5.349147; 0.581474;, - -7.525823; 5.349146; 0.581474;, - -7.525823; 8.883257;-0.581474;, - -7.525823; 8.883256; 0.581474;, - -7.525823; 5.349146; 0.581474;, - -7.525823; 5.349147;-0.581474;, - -7.525823; 5.349147;-0.581474;, - -7.525823; 5.349146; 0.581474;, - -8.858474; 5.349147; 0.581474;, - -8.858474; 5.349147;-0.581474;, - -8.858474; 5.349147;-0.581474;, - -8.858474; 5.349147; 0.581474;, - -8.858474; 8.883257; 0.581474;, - -8.858473; 8.883258;-0.581474;, - -7.525823; 8.883256; 0.581474;, - -7.525823; 8.883257;-0.581474;, - -8.858473; 8.883258;-0.581474;, - -8.858474; 8.883257; 0.581474;, - -7.404673; 5.325300;-0.687197;, - -7.404673; 1.791190;-0.687197;, - -8.979624; 1.791191;-0.687197;, - -8.979624; 5.325301;-0.687197;, - -7.404673; 5.325299; 0.687197;, - -8.979624; 5.325300; 0.687197;, - -8.979624; 1.791191; 0.687197;, - -7.404673; 1.791189; 0.687197;, - -7.404673; 5.325300;-0.687197;, - -7.404673; 5.325299; 0.687197;, - -7.404673; 1.791189; 0.687197;, - -7.404673; 1.791190;-0.687197;, - -7.404673; 1.791190;-0.687197;, - -7.404673; 1.791189; 0.687197;, - -8.979624; 1.791191; 0.687197;, - -8.979624; 1.791191;-0.687197;, - -8.979624; 1.791191;-0.687197;, - -8.979624; 1.791191; 0.687197;, - -8.979624; 5.325300; 0.687197;, - -8.979624; 5.325301;-0.687197;, - -7.404673; 5.325299; 0.687197;, - -7.404673; 5.325300;-0.687197;, - -8.979624; 5.325301;-0.687197;, - -8.979624; 5.325300; 0.687197;, - -7.586398;10.606580;-0.528613;, - -7.586398; 8.904172;-0.528613;, - -8.797898; 8.904172;-0.528613;, - -8.797898;10.606581;-0.528613;, - -7.586398;10.606580; 0.528613;, - -8.797898;10.606580; 0.528613;, - -8.797899; 8.904172; 0.528613;, - -7.586398; 8.904171; 0.528613;, - -7.586398;10.606580;-0.528613;, - -7.586398;10.606580; 0.528613;, - -7.586398; 8.904171; 0.528613;, - -7.586398; 8.904172;-0.528613;, - -7.586398; 8.904172;-0.528613;, - -7.586398; 8.904171; 0.528613;, - -8.797899; 8.904172; 0.528613;, - -8.797898; 8.904172;-0.528613;, - -8.797898; 8.904172;-0.528613;, - -8.797899; 8.904172; 0.528613;, - -8.797898;10.606580; 0.528613;, - -8.797898;10.606581;-0.528613;, - -7.586398;10.606580; 0.528613;, - -7.586398;10.606580;-0.528613;, - -8.797898;10.606581;-0.528613;, - -8.797898;10.606580; 0.528613;, - -5.594649;10.606580;-0.528613;, - -5.594649; 8.904172;-0.528613;, - -6.927300; 8.904172;-0.528613;, - -6.927299;10.606581;-0.528613;, - -5.594649;10.606580; 0.528613;, - -6.927299;10.606580; 0.528613;, - -6.927300; 8.904172; 0.528613;, - -5.594649; 8.904171; 0.528613;, - -5.594649;10.606580;-0.528613;, - -5.594649;10.606580; 0.528613;, - -5.594649; 8.904171; 0.528613;, - -5.594649; 8.904172;-0.528613;, - -5.594649; 8.904172;-0.528613;, - -5.594649; 8.904171; 0.528613;, - -6.927300; 8.904172; 0.528613;, - -6.927300; 8.904172;-0.528613;, - -6.927300; 8.904172;-0.528613;, - -6.927300; 8.904172; 0.528613;, - -6.927299;10.606580; 0.528613;, - -6.927299;10.606581;-0.528613;, - -5.594649;10.606580; 0.528613;, - -5.594649;10.606580;-0.528613;, - -6.927299;10.606581;-0.528613;, - -6.927299;10.606580; 0.528613;, - -5.473499; 5.325300;-0.687197;, - -5.473499; 1.791190;-0.687197;, - -7.048450; 1.791191;-0.687197;, - -7.048450; 5.325301;-0.687197;, - -5.473498; 5.325299; 0.687197;, - -7.048450; 5.325300; 0.687197;, - -7.048450; 1.791191; 0.687197;, - -5.473499; 1.791189; 0.687197;, - -5.473499; 5.325300;-0.687197;, - -5.473498; 5.325299; 0.687197;, - -5.473499; 1.791189; 0.687197;, - -5.473499; 1.791190;-0.687197;, - -5.473499; 1.791190;-0.687197;, - -5.473499; 1.791189; 0.687197;, - -7.048450; 1.791191; 0.687197;, - -7.048450; 1.791191;-0.687197;, - -7.048450; 1.791191;-0.687197;, - -7.048450; 1.791191; 0.687197;, - -7.048450; 5.325300; 0.687197;, - -7.048450; 5.325301;-0.687197;, - -5.473498; 5.325299; 0.687197;, - -5.473499; 5.325300;-0.687197;, - -7.048450; 5.325301;-0.687197;, - -7.048450; 5.325300; 0.687197;, - -5.594649; 8.883257;-0.581474;, - -5.594649; 5.349147;-0.581474;, - -6.927300; 5.349147;-0.581474;, - -6.927299; 8.883258;-0.581474;, - -5.594649; 8.883256; 0.581474;, - -6.927299; 8.883257; 0.581474;, - -6.927300; 5.349147; 0.581474;, - -5.594649; 5.349146; 0.581474;, - -5.594649; 8.883257;-0.581474;, - -5.594649; 8.883256; 0.581474;, - -5.594649; 5.349146; 0.581474;, - -5.594649; 5.349147;-0.581474;, - -5.594649; 5.349147;-0.581474;, - -5.594649; 5.349146; 0.581474;, - -6.927300; 5.349147; 0.581474;, - -6.927300; 5.349147;-0.581474;, - -6.927300; 5.349147;-0.581474;, - -6.927300; 5.349147; 0.581474;, - -6.927299; 8.883257; 0.581474;, - -6.927299; 8.883258;-0.581474;, - -5.594649; 8.883256; 0.581474;, - -5.594649; 8.883257;-0.581474;, - -6.927299; 8.883258;-0.581474;, - -6.927299; 8.883257; 0.581474;, - -3.424468; 8.883257;-0.581474;, - -3.424468; 5.349147;-0.581474;, - -4.757119; 5.349147;-0.581474;, - -4.757119; 8.883258;-0.581474;, - -3.424468; 8.883256; 0.581474;, - -4.757119; 8.883257; 0.581474;, - -4.757119; 5.349147; 0.581474;, - -3.424469; 5.349146; 0.581474;, - -3.424468; 8.883257;-0.581474;, - -3.424468; 8.883256; 0.581474;, - -3.424469; 5.349146; 0.581474;, - -3.424468; 5.349147;-0.581474;, - -3.424468; 5.349147;-0.581474;, - -3.424469; 5.349146; 0.581474;, - -4.757119; 5.349147; 0.581474;, - -4.757119; 5.349147;-0.581474;, - -4.757119; 5.349147;-0.581474;, - -4.757119; 5.349147; 0.581474;, - -4.757119; 8.883257; 0.581474;, - -4.757119; 8.883258;-0.581474;, - -3.424468; 8.883256; 0.581474;, - -3.424468; 8.883257;-0.581474;, - -4.757119; 8.883258;-0.581474;, - -4.757119; 8.883257; 0.581474;, - -3.303318; 5.325300;-0.687197;, - -3.303318; 1.791190;-0.687197;, - -4.878269; 1.791191;-0.687197;, - -4.878269; 5.325301;-0.687197;, - -3.303318; 5.325299; 0.687197;, - -4.878269; 5.325300; 0.687197;, - -4.878269; 1.791191; 0.687197;, - -3.303319; 1.791189; 0.687197;, - -3.303318; 5.325300;-0.687197;, - -3.303318; 5.325299; 0.687197;, - -3.303319; 1.791189; 0.687197;, - -3.303318; 1.791190;-0.687197;, - -3.303318; 1.791190;-0.687197;, - -3.303319; 1.791189; 0.687197;, - -4.878269; 1.791191; 0.687197;, - -4.878269; 1.791191;-0.687197;, - -4.878269; 1.791191;-0.687197;, - -4.878269; 1.791191; 0.687197;, - -4.878269; 5.325300; 0.687197;, - -4.878269; 5.325301;-0.687197;, - -3.303318; 5.325299; 0.687197;, - -3.303318; 5.325300;-0.687197;, - -4.878269; 5.325301;-0.687197;, - -4.878269; 5.325300; 0.687197;, - -3.485043;10.606580;-0.528613;, - -3.485043; 8.904172;-0.528613;, - -4.696544; 8.904172;-0.528613;, - -4.696544;10.606581;-0.528613;, - -3.485043;10.606580; 0.528613;, - -4.696544;10.606580; 0.528613;, - -4.696544; 8.904172; 0.528613;, - -3.485044; 8.904171; 0.528613;, - -3.485043;10.606580;-0.528613;, - -3.485043;10.606580; 0.528613;, - -3.485044; 8.904171; 0.528613;, - -3.485043; 8.904172;-0.528613;, - -3.485043; 8.904172;-0.528613;, - -3.485044; 8.904171; 0.528613;, - -4.696544; 8.904172; 0.528613;, - -4.696544; 8.904172;-0.528613;, - -4.696544; 8.904172;-0.528613;, - -4.696544; 8.904172; 0.528613;, - -4.696544;10.606580; 0.528613;, - -4.696544;10.606581;-0.528613;, - -3.485043;10.606580; 0.528613;, - -3.485043;10.606580;-0.528613;, - -4.696544;10.606581;-0.528613;, - -4.696544;10.606580; 0.528613;, - -1.540829;10.606580;-0.528613;, - -1.540829; 8.904172;-0.528613;, - -2.752330; 8.904172;-0.528613;, - -2.752330;10.606581;-0.528613;, - -1.540829;10.606580; 0.528613;, - -2.752330;10.606580; 0.528613;, - -2.752330; 8.904172; 0.528613;, - -1.540830; 8.904171; 0.528613;, - -1.540829;10.606580;-0.528613;, - -1.540829;10.606580; 0.528613;, - -1.540830; 8.904171; 0.528613;, - -1.540829; 8.904172;-0.528613;, - -1.540829; 8.904172;-0.528613;, - -1.540830; 8.904171; 0.528613;, - -2.752330; 8.904172; 0.528613;, - -2.752330; 8.904172;-0.528613;, - -2.752330; 8.904172;-0.528613;, - -2.752330; 8.904172; 0.528613;, - -2.752330;10.606580; 0.528613;, - -2.752330;10.606581;-0.528613;, - -1.540829;10.606580; 0.528613;, - -1.540829;10.606580;-0.528613;, - -2.752330;10.606581;-0.528613;, - -2.752330;10.606580; 0.528613;, - -1.298529; 5.325300;-0.687197;, - -1.298529; 1.791190;-0.687197;, - -2.994630; 1.791191;-0.687197;, - -2.994630; 5.325301;-0.687197;, - -1.298529; 5.325299; 0.687197;, - -2.994630; 5.325300; 0.687197;, - -2.994631; 1.791191; 0.687197;, - -1.298530; 1.791189; 0.687197;, - -1.298529; 5.325300;-0.687197;, - -1.298529; 5.325299; 0.687197;, - -1.298530; 1.791189; 0.687197;, - -1.298529; 1.791190;-0.687197;, - -1.298529; 1.791190;-0.687197;, - -1.298530; 1.791189; 0.687197;, - -2.994631; 1.791191; 0.687197;, - -2.994630; 1.791191;-0.687197;, - -2.994630; 1.791191;-0.687197;, - -2.994631; 1.791191; 0.687197;, - -2.994630; 5.325300; 0.687197;, - -2.994630; 5.325301;-0.687197;, - -1.298529; 5.325299; 0.687197;, - -1.298529; 5.325300;-0.687197;, - -2.994630; 5.325301;-0.687197;, - -2.994630; 5.325300; 0.687197;, - -1.480254; 8.883257;-0.581474;, - -1.480254; 5.349147;-0.581474;, - -2.812905; 5.349147;-0.581474;, - -2.812905; 8.883258;-0.581474;, - -1.480254; 8.883256; 0.581474;, - -2.812905; 8.883257; 0.581474;, - -2.812905; 5.349147; 0.581474;, - -1.480255; 5.349146; 0.581474;, - -1.480254; 8.883257;-0.581474;, - -1.480254; 8.883256; 0.581474;, - -1.480255; 5.349146; 0.581474;, - -1.480254; 5.349147;-0.581474;, - -1.480254; 5.349147;-0.581474;, - -1.480255; 5.349146; 0.581474;, - -2.812905; 5.349147; 0.581474;, - -2.812905; 5.349147;-0.581474;, - -2.812905; 5.349147;-0.581474;, - -2.812905; 5.349147; 0.581474;, - -2.812905; 8.883257; 0.581474;, - -2.812905; 8.883258;-0.581474;, - -1.480254; 8.883256; 0.581474;, - -1.480254; 8.883257;-0.581474;, - -2.812905; 8.883258;-0.581474;, - -2.812905; 8.883257; 0.581474;, - -1.359104;-1.799264;-0.634335;, - -1.359104;-5.333374;-0.634335;, - -2.934055;-5.333374;-0.634335;, - -2.934055;-1.799264;-0.634335;, - -1.359104;-1.799265; 0.634335;, - -2.934055;-1.799264; 0.634335;, - -2.934056;-5.333374; 0.634335;, - -1.359105;-5.333375; 0.634335;, - -1.359104;-1.799264;-0.634335;, - -1.359104;-1.799265; 0.634335;, - -1.359105;-5.333375; 0.634335;, - -1.359104;-5.333374;-0.634335;, - -1.359104;-5.333374;-0.634335;, - -1.359105;-5.333375; 0.634335;, - -2.934056;-5.333374; 0.634335;, - -2.934055;-5.333374;-0.634335;, - -2.934055;-5.333374;-0.634335;, - -2.934056;-5.333374; 0.634335;, - -2.934055;-1.799264; 0.634335;, - -2.934055;-1.799264;-0.634335;, - -1.359104;-1.799265; 0.634335;, - -1.359104;-1.799264;-0.634335;, - -2.934055;-1.799264;-0.634335;, - -2.934055;-1.799264; 0.634335;, - -1.480254;-5.357221;-0.581474;, - -1.480254;-8.891331;-0.581474;, - -2.812905;-8.891331;-0.581474;, - -2.812905;-5.357221;-0.581474;, - -1.480254;-5.357222; 0.581474;, - -2.812905;-5.357221; 0.581474;, - -2.812905;-8.891331; 0.581474;, - -1.480255;-8.891333; 0.581474;, - -1.480254;-5.357221;-0.581474;, - -1.480254;-5.357222; 0.581474;, - -1.480255;-8.891333; 0.581474;, - -1.480254;-8.891331;-0.581474;, - -1.480254;-8.891331;-0.581474;, - -1.480255;-8.891333; 0.581474;, - -2.812905;-8.891331; 0.581474;, - -2.812905;-8.891331;-0.581474;, - -2.812905;-8.891331;-0.581474;, - -2.812905;-8.891331; 0.581474;, - -2.812905;-5.357221; 0.581474;, - -2.812905;-5.357221;-0.581474;, - -1.480254;-5.357222; 0.581474;, - -1.480254;-5.357221;-0.581474;, - -2.812905;-5.357221;-0.581474;, - -2.812905;-5.357221; 0.581474;, - -1.540829;-8.911617;-0.528613;, - -1.540829;-10.614025;-0.528613;, - -2.752330;-10.614025;-0.528613;, - -2.752330;-8.911616;-0.528613;, - -1.540829;-8.911617; 0.528613;, - -2.752330;-8.911617; 0.528613;, - -2.752330;-10.614025; 0.528613;, - -1.540830;-10.614026; 0.528613;, - -1.540829;-8.911617;-0.528613;, - -1.540829;-8.911617; 0.528613;, - -1.540830;-10.614026; 0.528613;, - -1.540829;-10.614025;-0.528613;, - -1.540829;-10.614025;-0.528613;, - -1.540830;-10.614026; 0.528613;, - -2.752330;-10.614025; 0.528613;, - -2.752330;-10.614025;-0.528613;, - -2.752330;-10.614025;-0.528613;, - -2.752330;-10.614025; 0.528613;, - -2.752330;-8.911617; 0.528613;, - -2.752330;-8.911616;-0.528613;, - -1.540829;-8.911617; 0.528613;, - -1.540829;-8.911617;-0.528613;, - -2.752330;-8.911616;-0.528613;, - -2.752330;-8.911617; 0.528613;, - -3.470963;-8.911617;-0.528613;, - -3.470963;-10.614025;-0.528613;, - -4.682464;-10.614025;-0.528613;, - -4.682464;-8.911616;-0.528613;, - -3.470963;-8.911617; 0.528613;, - -4.682464;-8.911617; 0.528613;, - -4.682464;-10.614025; 0.528613;, - -3.470964;-10.614026; 0.528613;, - -3.470963;-8.911617;-0.528613;, - -3.470963;-8.911617; 0.528613;, - -3.470964;-10.614026; 0.528613;, - -3.470963;-10.614025;-0.528613;, - -3.470963;-10.614025;-0.528613;, - -3.470964;-10.614026; 0.528613;, - -4.682464;-10.614025; 0.528613;, - -4.682464;-10.614025;-0.528613;, - -4.682464;-10.614025;-0.528613;, - -4.682464;-10.614025; 0.528613;, - -4.682464;-8.911617; 0.528613;, - -4.682464;-8.911616;-0.528613;, - -3.470963;-8.911617; 0.528613;, - -3.470963;-8.911617;-0.528613;, - -4.682464;-8.911616;-0.528613;, - -4.682464;-8.911617; 0.528613;, - -3.410388;-5.357221;-0.581474;, - -3.410388;-8.891331;-0.581474;, - -4.743039;-8.891331;-0.581474;, - -4.743039;-5.357221;-0.581474;, - -3.410388;-5.357222; 0.581474;, - -4.743039;-5.357221; 0.581474;, - -4.743039;-8.891331; 0.581474;, - -3.410389;-8.891333; 0.581474;, - -3.410388;-5.357221;-0.581474;, - -3.410388;-5.357222; 0.581474;, - -3.410389;-8.891333; 0.581474;, - -3.410388;-8.891331;-0.581474;, - -3.410388;-8.891331;-0.581474;, - -3.410389;-8.891333; 0.581474;, - -4.743039;-8.891331; 0.581474;, - -4.743039;-8.891331;-0.581474;, - -4.743039;-8.891331;-0.581474;, - -4.743039;-8.891331; 0.581474;, - -4.743039;-5.357221; 0.581474;, - -4.743039;-5.357221;-0.581474;, - -3.410388;-5.357222; 0.581474;, - -3.410388;-5.357221;-0.581474;, - -4.743039;-5.357221;-0.581474;, - -4.743039;-5.357221; 0.581474;, - -3.289238;-1.799264;-0.687197;, - -3.289238;-5.333374;-0.687197;, - -4.864189;-5.333374;-0.687197;, - -4.864189;-1.799264;-0.687197;, - -3.289238;-1.799265; 0.687197;, - -4.864189;-1.799264; 0.687197;, - -4.864189;-5.333374; 0.687197;, - -3.289239;-5.333375; 0.687197;, - -3.289238;-1.799264;-0.687197;, - -3.289238;-1.799265; 0.687197;, - -3.289239;-5.333375; 0.687197;, - -3.289238;-5.333374;-0.687197;, - -3.289238;-5.333374;-0.687197;, - -3.289239;-5.333375; 0.687197;, - -4.864189;-5.333374; 0.687197;, - -4.864189;-5.333374;-0.687197;, - -4.864189;-5.333374;-0.687197;, - -4.864189;-5.333374; 0.687197;, - -4.864189;-1.799264; 0.687197;, - -4.864189;-1.799264;-0.687197;, - -3.289238;-1.799265; 0.687197;, - -3.289238;-1.799264;-0.687197;, - -4.864189;-1.799264;-0.687197;, - -4.864189;-1.799264; 0.687197;, - -5.629385;-1.799264;-0.687197;, - -5.629385;-5.333374;-0.687197;, - -7.204336;-5.333374;-0.687197;, - -7.204336;-1.799264;-0.687197;, - -5.629385;-1.799265; 0.687197;, - -7.204336;-1.799264; 0.687197;, - -7.204336;-5.333374; 0.687197;, - -5.629385;-5.333375; 0.687197;, - -5.629385;-1.799264;-0.687197;, - -5.629385;-1.799265; 0.687197;, - -5.629385;-5.333375; 0.687197;, - -5.629385;-5.333374;-0.687197;, - -5.629385;-5.333374;-0.687197;, - -5.629385;-5.333375; 0.687197;, - -7.204336;-5.333374; 0.687197;, - -7.204336;-5.333374;-0.687197;, - -7.204336;-5.333374;-0.687197;, - -7.204336;-5.333374; 0.687197;, - -7.204336;-1.799264; 0.687197;, - -7.204336;-1.799264;-0.687197;, - -5.629385;-1.799265; 0.687197;, - -5.629385;-1.799264;-0.687197;, - -7.204336;-1.799264;-0.687197;, - -7.204336;-1.799264; 0.687197;, - -5.750535;-5.357221;-0.581474;, - -5.750535;-8.891331;-0.581474;, - -7.083186;-8.891331;-0.581474;, - -7.083186;-5.357221;-0.581474;, - -5.750535;-5.357222; 0.581474;, - -7.083186;-5.357221; 0.581474;, - -7.083186;-8.891331; 0.581474;, - -5.750535;-8.891333; 0.581474;, - -5.750535;-5.357221;-0.581474;, - -5.750535;-5.357222; 0.581474;, - -5.750535;-8.891333; 0.581474;, - -5.750535;-8.891331;-0.581474;, - -5.750535;-8.891331;-0.581474;, - -5.750535;-8.891333; 0.581474;, - -7.083186;-8.891331; 0.581474;, - -7.083186;-8.891331;-0.581474;, - -7.083186;-8.891331;-0.581474;, - -7.083186;-8.891331; 0.581474;, - -7.083186;-5.357221; 0.581474;, - -7.083186;-5.357221;-0.581474;, - -5.750535;-5.357222; 0.581474;, - -5.750535;-5.357221;-0.581474;, - -7.083186;-5.357221;-0.581474;, - -7.083186;-5.357221; 0.581474;, - -5.811110;-8.911617;-0.528613;, - -5.811110;-10.614025;-0.528613;, - -7.022611;-10.614025;-0.528613;, - -7.022611;-8.911616;-0.528613;, - -5.811110;-8.911617; 0.528613;, - -7.022611;-8.911617; 0.528613;, - -7.022611;-10.614025; 0.528613;, - -5.811110;-10.614026; 0.528613;, - -5.811110;-8.911617;-0.528613;, - -5.811110;-8.911617; 0.528613;, - -5.811110;-10.614026; 0.528613;, - -5.811110;-10.614025;-0.528613;, - -5.811110;-10.614025;-0.528613;, - -5.811110;-10.614026; 0.528613;, - -7.022611;-10.614025; 0.528613;, - -7.022611;-10.614025;-0.528613;, - -7.022611;-10.614025;-0.528613;, - -7.022611;-10.614025; 0.528613;, - -7.022611;-8.911617; 0.528613;, - -7.022611;-8.911616;-0.528613;, - -5.811110;-8.911617; 0.528613;, - -5.811110;-8.911617;-0.528613;, - -7.022611;-8.911616;-0.528613;, - -7.022611;-8.911617; 0.528613;, - -7.868211;-8.911617;-0.528613;, - -7.868211;-10.614025;-0.528613;, - -9.079711;-10.614025;-0.528613;, - -9.079711;-8.911616;-0.528613;, - -7.868210;-8.911617; 0.528613;, - -9.079711;-8.911617; 0.528613;, - -9.079712;-10.614025; 0.528613;, - -7.868211;-10.614026; 0.528613;, - -7.868211;-8.911617;-0.528613;, - -7.868210;-8.911617; 0.528613;, - -7.868211;-10.614026; 0.528613;, - -7.868211;-10.614025;-0.528613;, - -7.868211;-10.614025;-0.528613;, - -7.868211;-10.614026; 0.528613;, - -9.079712;-10.614025; 0.528613;, - -9.079711;-10.614025;-0.528613;, - -9.079711;-10.614025;-0.528613;, - -9.079712;-10.614025; 0.528613;, - -9.079711;-8.911617; 0.528613;, - -9.079711;-8.911616;-0.528613;, - -7.868210;-8.911617; 0.528613;, - -7.868211;-8.911617;-0.528613;, - -9.079711;-8.911616;-0.528613;, - -9.079711;-8.911617; 0.528613;, - -7.807635;-5.357221;-0.581474;, - -7.807635;-8.891331;-0.581474;, - -9.140286;-8.891331;-0.581474;, - -9.140285;-5.357221;-0.581474;, - -7.807635;-5.357222; 0.581474;, - -9.140286;-5.357221; 0.581474;, - -9.140286;-8.891331; 0.581474;, - -7.807636;-8.891333; 0.581474;, - -7.807635;-5.357221;-0.581474;, - -7.807635;-5.357222; 0.581474;, - -7.807636;-8.891333; 0.581474;, - -7.807635;-8.891331;-0.581474;, - -7.807635;-8.891331;-0.581474;, - -7.807636;-8.891333; 0.581474;, - -9.140286;-8.891331; 0.581474;, - -9.140286;-8.891331;-0.581474;, - -9.140286;-8.891331;-0.581474;, - -9.140286;-8.891331; 0.581474;, - -9.140286;-5.357221; 0.581474;, - -9.140285;-5.357221;-0.581474;, - -7.807635;-5.357222; 0.581474;, - -7.807635;-5.357221;-0.581474;, - -9.140285;-5.357221;-0.581474;, - -9.140286;-5.357221; 0.581474;, - -7.686485;-1.799264;-0.687197;, - -7.686485;-5.333374;-0.687197;, - -9.261436;-5.333374;-0.687197;, - -9.261436;-1.799264;-0.687197;, - -7.686485;-1.799265; 0.687197;, - -9.261436;-1.799264; 0.687197;, - -9.261436;-5.333374; 0.687197;, - -7.686486;-5.333375; 0.687197;, - -7.686485;-1.799264;-0.687197;, - -7.686485;-1.799265; 0.687197;, - -7.686486;-5.333375; 0.687197;, - -7.686485;-5.333374;-0.687197;, - -7.686485;-5.333374;-0.687197;, - -7.686486;-5.333375; 0.687197;, - -9.261436;-5.333374; 0.687197;, - -9.261436;-5.333374;-0.687197;, - -9.261436;-5.333374;-0.687197;, - -9.261436;-5.333374; 0.687197;, - -9.261436;-1.799264; 0.687197;, - -9.261436;-1.799264;-0.687197;, - -7.686485;-1.799265; 0.687197;, - -7.686485;-1.799264;-0.687197;, - -9.261436;-1.799264;-0.687197;, - -9.261436;-1.799264; 0.687197;, - -10.782356;-0.636671;-4.141139;, - -10.782356;-0.845377;-4.141139;, - -11.024656;-0.845377;-4.141139;, - -11.024656;-0.636671;-4.141139;, - -10.782356;-0.636671;-2.555301;, - -11.024656;-0.636671;-2.555301;, - -11.024656;-0.845377;-2.555301;, - -10.782356;-0.845377;-2.555301;, - -10.782356;-0.636671;-4.141139;, - -10.782356;-0.636671;-2.555301;, - -10.782356;-0.845377;-2.555301;, - -10.782356;-0.845377;-4.141139;, - -10.782356;-0.845377;-4.141139;, - -10.782356;-0.845377;-2.555301;, - -11.024656;-0.845377;-2.555301;, - -11.024656;-0.845377;-4.141139;, - -11.024656;-0.845377;-4.141139;, - -11.024656;-0.845377;-2.555301;, - -11.024656;-0.636671;-2.555301;, - -11.024656;-0.636671;-4.141139;, - -10.782356;-0.636671;-2.555301;, - -10.782356;-0.636671;-4.141139;, - -11.024656;-0.636671;-4.141139;, - -11.024656;-0.636671;-2.555301;, - -10.782356; 0.889617;-4.134565;, - -10.782356; 0.658270;-4.134565;, - -11.024656; 0.658270;-4.134565;, - -11.024656; 0.889617;-4.134565;, - -10.782356; 0.889617;-2.548727;, - -11.024656; 0.889617;-2.548727;, - -11.024656; 0.658270;-2.548727;, - -10.782356; 0.658270;-2.548727;, - -10.782356; 0.889617;-4.134565;, - -10.782356; 0.889617;-2.548727;, - -10.782356; 0.658270;-2.548727;, - -10.782356; 0.658270;-4.134565;, - -10.782356; 0.658270;-4.134565;, - -10.782356; 0.658270;-2.548727;, - -11.024656; 0.658270;-2.548727;, - -11.024656; 0.658270;-4.134565;, - -11.024656; 0.658270;-4.134565;, - -11.024656; 0.658270;-2.548727;, - -11.024656; 0.889617;-2.548727;, - -11.024656; 0.889617;-4.134565;, - -10.782356; 0.889617;-2.548727;, - -10.782356; 0.889617;-4.134565;, - -11.024656; 0.889617;-4.134565;, - -11.024656; 0.889617;-2.548727;, - -9.828722; 1.200663;-2.663285;, - -9.828722; 0.309838;-2.663285;, - -11.094425; 0.309838;-2.663285;, - -11.094424; 1.200664;-2.663285;, - -9.828722; 1.200663; 1.618752;, - -11.094424; 1.200663; 1.618752;, - -11.094425; 0.309838; 1.618752;, - -9.828723; 0.309838; 1.618752;, - -9.828722; 1.200663;-2.663285;, - -9.828722; 1.200663; 1.618752;, - -9.828723; 0.309838; 1.618752;, - -9.828722; 0.309838;-2.663285;, - -9.828722; 0.309838;-2.663285;, - -9.828723; 0.309838; 1.618752;, - -11.094425; 0.309838; 1.618752;, - -11.094425; 0.309838;-2.663285;, - -11.094425; 0.309838;-2.663285;, - -11.094425; 0.309838; 1.618752;, - -11.094424; 1.200663; 1.618752;, - -11.094424; 1.200664;-2.663285;, - -9.828722; 1.200663; 1.618752;, - -9.828722; 1.200663;-2.663285;, - -11.094424; 1.200664;-2.663285;, - -11.094424; 1.200663; 1.618752;, - -9.850704;-0.280658;-2.654951;, - -9.850704;-1.200378;-2.654951;, - -11.116406;-1.200378;-2.654951;, - -11.116405;-0.280658;-2.654951;, - -9.850703;-0.280658; 1.574314;, - -11.116405;-0.280658; 1.574314;, - -11.116406;-1.200378; 1.574314;, - -9.850704;-1.200378; 1.574314;, - -9.850704;-0.280658;-2.654951;, - -9.850703;-0.280658; 1.574314;, - -9.850704;-1.200378; 1.574314;, - -9.850704;-1.200378;-2.654951;, - -9.850704;-1.200378;-2.654951;, - -9.850704;-1.200378; 1.574314;, - -11.116406;-1.200378; 1.574314;, - -11.116406;-1.200378;-2.654951;, - -11.116406;-1.200378;-2.654951;, - -11.116406;-1.200378; 1.574314;, - -11.116405;-0.280658; 1.574314;, - -11.116405;-0.280658;-2.654951;, - -9.850703;-0.280658; 1.574314;, - -9.850704;-0.280658;-2.654951;, - -11.116405;-0.280658;-2.654951;, - -11.116405;-0.280658; 1.574314;, - -1.067807; 1.767679;-1.336698;, - -1.067807;-1.767679;-1.336698;, - -9.790613;-1.767679;-1.336698;, - -9.790611; 1.767680;-1.336698;, - -1.067805; 1.767678; 3.491477;, - -9.790613; 1.767679; 3.491477;, - -9.790615;-1.767679; 3.491477;, - -1.067810;-1.767680; 3.491477;, - -1.067807; 1.767679;-1.336698;, - -1.067805; 1.767678; 3.491477;, - -1.067810;-1.767680; 3.491477;, - -1.067807;-1.767679;-1.336698;, - -1.067807;-1.767679;-1.336698;, - -1.067810;-1.767680; 3.491477;, - -9.790615;-1.767679; 3.491477;, - -9.790613;-1.767679;-1.336698;, - -9.790613;-1.767679;-1.336698;, - -9.790615;-1.767679; 3.491477;, - -9.790613; 1.767679; 3.491477;, - -9.790611; 1.767680;-1.336698;, - -1.067805; 1.767678; 3.491477;, - -1.067807; 1.767679;-1.336698;, - -9.790611; 1.767680;-1.336698;, - -9.790613; 1.767679; 3.491477;, - 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.999999; 1.000000;, - -1.000000; 1.000000; 1.000000;, - -1.000000;-1.000000; 1.000000;, - 0.999999;-1.000001; 1.000000;, - 1.000000; 1.000000;-1.000000;, - 1.000000; 0.999999; 1.000000;, - 0.999999;-1.000001; 1.000000;, - 1.000000;-1.000000;-1.000000;, - 1.000000;-1.000000;-1.000000;, - 0.999999;-1.000001; 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.999999; 1.000000;, - 1.000000; 1.000000;-1.000000;, - -1.000000; 1.000000;-1.000000;, - -1.000000; 1.000000; 1.000000;, - 11.575288; 2.184071;-1.156314;, - 11.575288;-2.184071;-1.156314;, - 1.099999;-2.184071;-1.156314;, - 1.100001; 2.184072;-1.156314;, - 11.575291; 2.184070; 2.951054;, - 1.100000; 2.184071; 2.951054;, - 1.099998;-2.184071; 2.951054;, - 11.575285;-2.184072; 2.951054;, - 11.575288; 2.184071;-1.156314;, - 11.575291; 2.184070; 2.951054;, - 11.575285;-2.184072; 2.951054;, - 11.575288;-2.184071;-1.156314;, - 11.575288;-2.184071;-1.156314;, - 11.575285;-2.184072; 2.951054;, - 1.099998;-2.184071; 2.951054;, - 1.099999;-2.184071;-1.156314;, - 1.099999;-2.184071;-1.156314;, - 1.099998;-2.184071; 2.951054;, - 1.100000; 2.184071; 2.951054;, - 1.100001; 2.184072;-1.156314;, - 11.575291; 2.184070; 2.951054;, - 11.575288; 2.184071;-1.156314;, - 1.100001; 2.184072;-1.156314;, - 1.100000; 2.184071; 2.951054;; - 186; - 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;, - 4;351,350,349,348;, - 4;355,354,353,352;, - 4;359,358,357,356;, - 4;363,362,361,360;, - 4;367,366,365,364;, - 4;371,370,369,368;, - 4;375,374,373,372;, - 4;379,378,377,376;, - 4;383,382,381,380;, - 4;387,386,385,384;, - 4;391,390,389,388;, - 4;395,394,393,392;, - 4;399,398,397,396;, - 4;403,402,401,400;, - 4;407,406,405,404;, - 4;411,410,409,408;, - 4;415,414,413,412;, - 4;419,418,417,416;, - 4;423,422,421,420;, - 4;427,426,425,424;, - 4;431,430,429,428;, - 4;435,434,433,432;, - 4;439,438,437,436;, - 4;443,442,441,440;, - 4;447,446,445,444;, - 4;451,450,449,448;, - 4;455,454,453,452;, - 4;459,458,457,456;, - 4;463,462,461,460;, - 4;467,466,465,464;, - 4;471,470,469,468;, - 4;475,474,473,472;, - 4;479,478,477,476;, - 4;483,482,481,480;, - 4;487,486,485,484;, - 4;491,490,489,488;, - 4;495,494,493,492;, - 4;499,498,497,496;, - 4;503,502,501,500;, - 4;507,506,505,504;, - 4;511,510,509,508;, - 4;515,514,513,512;, - 4;519,518,517,516;, - 4;523,522,521,520;, - 4;527,526,525,524;, - 4;531,530,529,528;, - 4;535,534,533,532;, - 4;539,538,537,536;, - 4;543,542,541,540;, - 4;547,546,545,544;, - 4;551,550,549,548;, - 4;555,554,553,552;, - 4;559,558,557,556;, - 4;563,562,561,560;, - 4;567,566,565,564;, - 4;571,570,569,568;, - 4;575,574,573,572;, - 4;579,578,577,576;, - 4;583,582,581,580;, - 4;587,586,585,584;, - 4;591,590,589,588;, - 4;595,594,593,592;, - 4;599,598,597,596;, - 4;603,602,601,600;, - 4;607,606,605,604;, - 4;611,610,609,608;, - 4;615,614,613,612;, - 4;619,618,617,616;, - 4;623,622,621,620;, - 4;627,626,625,624;, - 4;631,630,629,628;, - 4;635,634,633,632;, - 4;639,638,637,636;, - 4;643,642,641,640;, - 4;647,646,645,644;, - 4;651,650,649,648;, - 4;655,654,653,652;, - 4;659,658,657,656;, - 4;663,662,661,660;, - 4;667,666,665,664;, - 4;671,670,669,668;, - 4;675,674,673,672;, - 4;679,678,677,676;, - 4;683,682,681,680;, - 4;687,686,685,684;, - 4;691,690,689,688;, - 4;695,694,693,692;, - 4;699,698,697,696;, - 4;703,702,701,700;, - 4;707,706,705,704;, - 4;711,710,709,708;, - 4;715,714,713,712;, - 4;719,718,717,716;, - 4;723,722,721,720;, - 4;727,726,725,724;, - 4;731,730,729,728;, - 4;735,734,733,732;, - 4;739,738,737,736;, - 4;743,742,741,740;; - MeshNormals { // Cube_001 normals - 186; - 0.000000; 0.000000;-1.000000;, - 0.000000;-0.000000; 1.000000;, - 1.000000;-0.000000; 0.000000;, - -0.000001;-1.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - 0.000001; 1.000000; 0.000001;, - 0.000000; 0.000000;-1.000000;, - 0.000000;-0.000000; 1.000000;, - 1.000000;-0.000000; 0.000000;, - -0.000001;-1.000000;-0.000000;, - -1.000000;-0.000000; 0.000000;, - 0.000000; 1.000000; 0.000001;, - 0.000000; 0.000000;-1.000000;, - 0.000000;-0.000000; 1.000000;, - 1.000000;-0.000000;-0.000000;, - -0.000000;-1.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 0.000000;-1.000000;, - 0.000000;-0.000000; 1.000000;, - 1.000000;-0.000000;-0.000000;, - -0.000000;-1.000000;-0.000000;, - -1.000000; 0.000000; 0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 0.000000;-1.000000;, - 0.000000;-0.000000; 1.000000;, - 1.000000;-0.000000;-0.000000;, - -0.000001;-1.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - 0.000000; 1.000000; 0.000001;, - 0.000000; 0.000000;-1.000000;, - 0.000000;-0.000000; 1.000000;, - 1.000000;-0.000000;-0.000000;, - -0.000001;-1.000000;-0.000000;, - -1.000000; 0.000000; 0.000000;, - 0.000001; 1.000000; 0.000001;, - 0.000000; 0.000000;-1.000000;, - 0.000000;-0.000000; 1.000000;, - 1.000000;-0.000000; 0.000000;, - -0.000001;-1.000000;-0.000000;, - -1.000000; 0.000000; 0.000000;, - 0.000001; 1.000000; 0.000001;, - 0.000000; 0.000000;-1.000000;, - 0.000000;-0.000000; 1.000000;, - 1.000000;-0.000000; 0.000000;, - -0.000001;-1.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - 0.000000; 1.000000; 0.000001;, - 0.000000; 0.000000;-1.000000;, - 0.000000;-0.000000; 1.000000;, - 1.000000;-0.000000; 0.000000;, - -0.000000;-1.000000;-0.000000;, - -1.000000; 0.000000; 0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 0.000000;-1.000000;, - 0.000000;-0.000000; 1.000000;, - 1.000000;-0.000000; 0.000000;, - -0.000000;-1.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 0.000000;-1.000000;, - 0.000000;-0.000000; 1.000000;, - 1.000000;-0.000000; 0.000000;, - -0.000001;-1.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - 0.000000; 1.000000; 0.000001;, - 0.000000; 0.000000;-1.000000;, - 0.000000;-0.000000; 1.000000;, - 1.000000;-0.000000; 0.000000;, - -0.000001;-1.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - 0.000001; 1.000000; 0.000001;, - 0.000000; 0.000000;-1.000000;, - 0.000000;-0.000000; 1.000000;, - 1.000000;-0.000000; 0.000000;, - -0.000001;-1.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - 0.000001; 1.000000; 0.000001;, - 0.000000; 0.000000;-1.000000;, - 0.000000;-0.000000; 1.000000;, - 1.000000;-0.000000; 0.000000;, - -0.000001;-1.000000;-0.000001;, - -1.000000; 0.000000;-0.000000;, - 0.000001; 1.000000; 0.000001;, - 0.000000; 0.000000;-1.000000;, - 0.000000;-0.000000; 1.000000;, - 1.000000;-0.000000; 0.000000;, - -0.000000;-1.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 0.000000;-1.000000;, - 0.000000;-0.000000; 1.000000;, - 1.000000;-0.000000; 0.000000;, - -0.000000;-1.000000;-0.000000;, - -1.000000; 0.000000; 0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 0.000000;-1.000000;, - 0.000000;-0.000000; 1.000000;, - 1.000000;-0.000000; 0.000000;, - -0.000001;-1.000000;-0.000001;, - -1.000000; 0.000000; 0.000000;, - 0.000001; 1.000000; 0.000001;, - 0.000000; 0.000000;-1.000000;, - 0.000000;-0.000000; 1.000000;, - 1.000000;-0.000000; 0.000000;, - -0.000001;-1.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - 0.000001; 1.000000; 0.000001;, - 0.000000; 0.000000;-1.000000;, - 0.000000;-0.000000; 1.000000;, - 1.000000;-0.000000; 0.000000;, - -0.000001;-1.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - 0.000001; 1.000000; 0.000001;, - 0.000000; 0.000000;-1.000000;, - 0.000000;-0.000000; 1.000000;, - 1.000000;-0.000000; 0.000000;, - -0.000001;-1.000000;-0.000001;, - -1.000000; 0.000000; 0.000000;, - 0.000001; 1.000000; 0.000001;, - 0.000000; 0.000000;-1.000000;, - 0.000000;-0.000000; 1.000000;, - 1.000000;-0.000000;-0.000000;, - -0.000000;-1.000000;-0.000000;, - -1.000000; 0.000000; 0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 0.000000;-1.000000;, - 0.000000;-0.000000; 1.000000;, - 1.000000;-0.000000;-0.000000;, - -0.000000;-1.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 0.000000;-1.000000;, - 0.000000;-0.000000; 1.000000;, - 1.000000;-0.000000; 0.000000;, - -0.000001;-1.000000;-0.000001;, - -1.000000; 0.000000;-0.000000;, - 0.000001; 1.000000; 0.000001;, - 0.000000; 0.000000;-1.000000;, - 0.000000;-0.000000; 1.000000;, - 1.000000;-0.000000; 0.000000;, - -0.000001;-1.000000;-0.000000;, - -1.000000;-0.000000; 0.000000;, - 0.000001; 1.000000; 0.000001;, - 0.000000; 0.000000;-1.000000;, - 0.000000;-0.000000; 1.000000;, - 1.000000;-0.000000; 0.000000;, - -0.000000;-1.000000; 0.000000;, - -1.000000;-0.000000; 0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 0.000000;-1.000000;, - 0.000000;-0.000000; 1.000000;, - 1.000000;-0.000000; 0.000000;, - -0.000000;-1.000000; 0.000000;, - -1.000000;-0.000000; 0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 0.000000;-1.000000;, - 0.000000;-0.000000; 1.000000;, - 1.000000;-0.000001; 0.000000;, - -0.000000;-1.000000;-0.000000;, - -1.000000; 0.000001; 0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 0.000000;-1.000000;, - 0.000000;-0.000000; 1.000000;, - 1.000000;-0.000001;-0.000000;, - -0.000000;-1.000000;-0.000000;, - -1.000000; 0.000001; 0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 0.000000;-1.000000;, - 0.000000;-0.000000; 1.000000;, - 1.000000;-0.000001; 0.000000;, - -0.000000;-1.000000;-0.000000;, - -1.000000; 0.000001;-0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 0.000000;-1.000000;, - 0.000000;-0.000000; 1.000000;, - 1.000000;-0.000000; 0.000000;, - -0.000000;-1.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 0.000000;-1.000000;, - 0.000000;-0.000000; 1.000000;, - 1.000000;-0.000001;-0.000000;, - -0.000000;-1.000000;-0.000000;, - -1.000000; 0.000001;-0.000000;, - 0.000000; 1.000000; 0.000000;; - 186; - 4;0,0,0,0;, - 4;1,1,1,1;, - 4;2,2,2,2;, - 4;3,3,3,3;, - 4;4,4,4,4;, - 4;5,5,5,5;, - 4;6,6,6,6;, - 4;7,7,7,7;, - 4;8,8,8,8;, - 4;9,9,9,9;, - 4;10,10,10,10;, - 4;11,11,11,11;, - 4;12,12,12,12;, - 4;13,13,13,13;, - 4;14,14,14,14;, - 4;15,15,15,15;, - 4;16,16,16,16;, - 4;17,17,17,17;, - 4;18,18,18,18;, - 4;19,19,19,19;, - 4;20,20,20,20;, - 4;21,21,21,21;, - 4;22,22,22,22;, - 4;23,23,23,23;, - 4;24,24,24,24;, - 4;25,25,25,25;, - 4;26,26,26,26;, - 4;27,27,27,27;, - 4;28,28,28,28;, - 4;29,29,29,29;, - 4;30,30,30,30;, - 4;31,31,31,31;, - 4;32,32,32,32;, - 4;33,33,33,33;, - 4;34,34,34,34;, - 4;35,35,35,35;, - 4;36,36,36,36;, - 4;37,37,37,37;, - 4;38,38,38,38;, - 4;39,39,39,39;, - 4;40,40,40,40;, - 4;41,41,41,41;, - 4;42,42,42,42;, - 4;43,43,43,43;, - 4;44,44,44,44;, - 4;45,45,45,45;, - 4;46,46,46,46;, - 4;47,47,47,47;, - 4;48,48,48,48;, - 4;49,49,49,49;, - 4;50,50,50,50;, - 4;51,51,51,51;, - 4;52,52,52,52;, - 4;53,53,53,53;, - 4;54,54,54,54;, - 4;55,55,55,55;, - 4;56,56,56,56;, - 4;57,57,57,57;, - 4;58,58,58,58;, - 4;59,59,59,59;, - 4;60,60,60,60;, - 4;61,61,61,61;, - 4;62,62,62,62;, - 4;63,63,63,63;, - 4;64,64,64,64;, - 4;65,65,65,65;, - 4;66,66,66,66;, - 4;67,67,67,67;, - 4;68,68,68,68;, - 4;69,69,69,69;, - 4;70,70,70,70;, - 4;71,71,71,71;, - 4;72,72,72,72;, - 4;73,73,73,73;, - 4;74,74,74,74;, - 4;75,75,75,75;, - 4;76,76,76,76;, - 4;77,77,77,77;, - 4;78,78,78,78;, - 4;79,79,79,79;, - 4;80,80,80,80;, - 4;81,81,81,81;, - 4;82,82,82,82;, - 4;83,83,83,83;, - 4;84,84,84,84;, - 4;85,85,85,85;, - 4;86,86,86,86;, - 4;87,87,87,87;, - 4;88,88,88,88;, - 4;89,89,89,89;, - 4;90,90,90,90;, - 4;91,91,91,91;, - 4;92,92,92,92;, - 4;93,93,93,93;, - 4;94,94,94,94;, - 4;95,95,95,95;, - 4;96,96,96,96;, - 4;97,97,97,97;, - 4;98,98,98,98;, - 4;99,99,99,99;, - 4;100,100,100,100;, - 4;101,101,101,101;, - 4;102,102,102,102;, - 4;103,103,103,103;, - 4;104,104,104,104;, - 4;105,105,105,105;, - 4;106,106,106,106;, - 4;107,107,107,107;, - 4;108,108,108,108;, - 4;109,109,109,109;, - 4;110,110,110,110;, - 4;111,111,111,111;, - 4;112,112,112,112;, - 4;113,113,113,113;, - 4;114,114,114,114;, - 4;115,115,115,115;, - 4;116,116,116,116;, - 4;117,117,117,117;, - 4;118,118,118,118;, - 4;119,119,119,119;, - 4;120,120,120,120;, - 4;121,121,121,121;, - 4;122,122,122,122;, - 4;123,123,123,123;, - 4;124,124,124,124;, - 4;125,125,125,125;, - 4;126,126,126,126;, - 4;127,127,127,127;, - 4;128,128,128,128;, - 4;129,129,129,129;, - 4;130,130,130,130;, - 4;131,131,131,131;, - 4;132,132,132,132;, - 4;133,133,133,133;, - 4;134,134,134,134;, - 4;135,135,135,135;, - 4;136,136,136,136;, - 4;137,137,137,137;, - 4;138,138,138,138;, - 4;139,139,139,139;, - 4;140,140,140,140;, - 4;141,141,141,141;, - 4;142,142,142,142;, - 4;143,143,143,143;, - 4;144,144,144,144;, - 4;145,145,145,145;, - 4;146,146,146,146;, - 4;147,147,147,147;, - 4;148,148,148,148;, - 4;149,149,149,149;, - 4;150,150,150,150;, - 4;151,151,151,151;, - 4;152,152,152,152;, - 4;153,153,153,153;, - 4;154,154,154,154;, - 4;155,155,155,155;, - 4;156,156,156,156;, - 4;157,157,157,157;, - 4;158,158,158,158;, - 4;159,159,159,159;, - 4;160,160,160,160;, - 4;161,161,161,161;, - 4;162,162,162,162;, - 4;163,163,163,163;, - 4;164,164,164,164;, - 4;165,165,165,165;, - 4;166,166,166,166;, - 4;167,167,167,167;, - 4;168,168,168,168;, - 4;169,169,169,169;, - 4;170,170,170,170;, - 4;171,171,171,171;, - 4;172,172,172,172;, - 4;173,173,173,173;, - 4;174,174,174,174;, - 4;175,175,175,175;, - 4;176,176,176,176;, - 4;177,177,177,177;, - 4;178,178,178,178;, - 4;179,179,179,179;, - 4;180,180,180,180;, - 4;181,181,181,181;, - 4;182,182,182,182;, - 4;183,183,183,183;, - 4;184,184,184,184;, - 4;185,185,185,185;; - } // End of Cube_001 normals - MeshTextureCoords { // Cube_001 UV coordinates - 744; - 0.302262; 0.155803;, - 0.302262; 0.269389;, - 0.345250; 0.269389;, - 0.345250; 0.155802;, - 0.087322; 0.155803;, - 0.044334; 0.155803;, - 0.044334; 0.269389;, - 0.087322; 0.269389;, - 0.882562; 0.772828;, - 0.845048; 0.772828;, - 0.845048; 0.886414;, - 0.882562; 0.886414;, - 0.987958; 0.452192;, - 0.950444; 0.452192;, - 0.950444; 0.495024;, - 0.987958; 0.495024;, - 0.848057; 0.322567;, - 0.885571; 0.322567;, - 0.885571; 0.208981;, - 0.848058; 0.208981;, - 0.898216; 0.663600;, - 0.860703; 0.663600;, - 0.860703; 0.706431;, - 0.898216; 0.706431;, - 0.508039; 0.382975;, - 0.508039; 0.269389;, - 0.457235; 0.269389;, - 0.457235; 0.382975;, - 0.000000; 0.382975;, - 0.050804; 0.382975;, - 0.050804; 0.269389;, - 0.000000; 0.269389;, - 0.760735; 0.208981;, - 0.716401; 0.208981;, - 0.716401; 0.322567;, - 0.760735; 0.322567;, - 0.478320; 0.054565;, - 0.433985; 0.054565;, - 0.433985; 0.105184;, - 0.478319; 0.105184;, - 0.000000; 0.269389;, - 0.044334; 0.269389;, - 0.044334; 0.155803;, - 0.000000; 0.155803;, - 0.590377; 0.133027;, - 0.634711; 0.133027;, - 0.634711; 0.082408;, - 0.590377; 0.082408;, - 0.965897; 0.099550;, - 0.965897; 0.044835;, - 0.926817; 0.044835;, - 0.926817; 0.099550;, - 0.539573; 0.104751;, - 0.578653; 0.104751;, - 0.578653; 0.050035;, - 0.539573; 0.050035;, - 0.984548; 0.495024;, - 0.950444; 0.495024;, - 0.950444; 0.549739;, - 0.984548; 0.549739;, - 0.672066; 0.040680;, - 0.706170; 0.040680;, - 0.706170; 0.001742;, - 0.672066; 0.001742;, - 0.668815; 0.023597;, - 0.634711; 0.023597;, - 0.634711; 0.078312;, - 0.668815; 0.078312;, - 0.965897; 0.170043;, - 1.000000; 0.170043;, - 1.000000; 0.131106;, - 0.965897; 0.131106;, - 0.863882; 0.763263;, - 0.863882; 0.708548;, - 0.820894; 0.708548;, - 0.820894; 0.763263;, - 0.748161; 0.663600;, - 0.705173; 0.663600;, - 0.705173; 0.718315;, - 0.748161; 0.718315;, - 0.288185; 0.036807;, - 0.254082; 0.036807;, - 0.254082; 0.091523;, - 0.288185; 0.091523;, - 0.962566; 0.957169;, - 0.996669; 0.957169;, - 0.996669; 0.914337;, - 0.962566; 0.914337;, - 0.322288; 0.036807;, - 0.288185; 0.036807;, - 0.288185; 0.091523;, - 0.322288; 0.091523;, - 0.996669; 0.957169;, - 0.962566; 0.957169;, - 0.962566; 1.000000;, - 0.996669; 1.000000;, - 0.590377; 0.382541;, - 0.590377; 0.268955;, - 0.539573; 0.268955;, - 0.539573; 0.382541;, - 0.722870; 0.549739;, - 0.672066; 0.549739;, - 0.672066; 0.663325;, - 0.722870; 0.663325;, - 0.767205; 0.322567;, - 0.722870; 0.322567;, - 0.722870; 0.436153;, - 0.767205; 0.436153;, - 0.478319; 0.155802;, - 0.522654; 0.155802;, - 0.522654; 0.105184;, - 0.478320; 0.105184;, - 0.811539; 0.436153;, - 0.767205; 0.436153;, - 0.767205; 0.549739;, - 0.811539; 0.549739;, - 0.433985; 0.105184;, - 0.389651; 0.105184;, - 0.389651; 0.155802;, - 0.433985; 0.155802;, - 0.173298; 0.155803;, - 0.173298; 0.269389;, - 0.216286; 0.269389;, - 0.216286; 0.155802;, - 0.539573; 0.268955;, - 0.582561; 0.268955;, - 0.582561; 0.155369;, - 0.539573; 0.155369;, - 0.892041; 0.322567;, - 0.854527; 0.322567;, - 0.854527; 0.436153;, - 0.892041; 0.436153;, - 0.959156; 0.748790;, - 0.996669; 0.748790;, - 0.996669; 0.705958;, - 0.959156; 0.705958;, - 0.859635; 0.095395;, - 0.822121; 0.095395;, - 0.822121; 0.208981;, - 0.859635; 0.208981;, - 0.382830; 0.011734;, - 0.345316; 0.011734;, - 0.345316; 0.054565;, - 0.382830; 0.054565;, - 0.854527; 0.663325;, - 0.854527; 0.549739;, - 0.811539; 0.549739;, - 0.811539; 0.663325;, - 0.388238; 0.269389;, - 0.431226; 0.269389;, - 0.431226; 0.155803;, - 0.388238; 0.155803;, - 0.892041; 0.436153;, - 0.854527; 0.436153;, - 0.854527; 0.549739;, - 0.892041; 0.549739;, - 0.962165; 0.322567;, - 0.999679; 0.322567;, - 0.999679; 0.279736;, - 0.962165; 0.279736;, - 0.709580; 0.208981;, - 0.747094; 0.208981;, - 0.747094; 0.095395;, - 0.709580; 0.095395;, - 0.495371; 0.054565;, - 0.532885; 0.054565;, - 0.532885; 0.011734;, - 0.495371; 0.011734;, - 0.457235; 0.382975;, - 0.457235; 0.269389;, - 0.406431; 0.269389;, - 0.406431; 0.382975;, - 0.101608; 0.269389;, - 0.050804; 0.269389;, - 0.050804; 0.382975;, - 0.101608; 0.382975;, - 0.716401; 0.208981;, - 0.672066; 0.208981;, - 0.672066; 0.322567;, - 0.716401; 0.322567;, - 0.863882; 0.763263;, - 0.908217; 0.763263;, - 0.908217; 0.712645;, - 0.863882; 0.712645;, - 0.845048; 0.772828;, - 0.800714; 0.772828;, - 0.800714; 0.886414;, - 0.845048; 0.886414;, - 0.389651; 0.105184;, - 0.345316; 0.105184;, - 0.345316; 0.155802;, - 0.389651; 0.155802;, - 0.962566; 1.000000;, - 0.962566; 0.945285;, - 0.923486; 0.945285;, - 0.923486; 1.000000;, - 0.750226; 0.040680;, - 0.711146; 0.040680;, - 0.711146; 0.095395;, - 0.750226; 0.095395;, - 0.963658; 0.553894;, - 0.929555; 0.553894;, - 0.929555; 0.608610;, - 0.963658; 0.608610;, - 0.965897; 0.131106;, - 1.000000; 0.131106;, - 1.000000; 0.092168;, - 0.965897; 0.092168;, - 0.185875; 0.036807;, - 0.151771; 0.036807;, - 0.151771; 0.091523;, - 0.185875; 0.091523;, - 0.965897; 0.208981;, - 1.000000; 0.208981;, - 1.000000; 0.170043;, - 0.965897; 0.170043;, - 0.867466; 0.095395;, - 0.867466; 0.040680;, - 0.828386; 0.040680;, - 0.828386; 0.095395;, - 0.962566; 0.890569;, - 0.923486; 0.890569;, - 0.923486; 0.945285;, - 0.962566; 0.945285;, - 0.668815; 0.078312;, - 0.634711; 0.078312;, - 0.634711; 0.133027;, - 0.668815; 0.133027;, - 0.997761; 0.624387;, - 0.963658; 0.624388;, - 0.963658; 0.663325;, - 0.997761; 0.663325;, - 0.150055; 0.036807;, - 0.115952; 0.036807;, - 0.115952; 0.091523;, - 0.150055; 0.091523;, - 0.995023; 0.005898;, - 0.960920; 0.005898;, - 0.960920; 0.044835;, - 0.995023; 0.044835;, - 0.715551; 0.886414;, - 0.715551; 0.772828;, - 0.660839; 0.772828;, - 0.660839; 0.886414;, - 0.715551; 0.886414;, - 0.660839; 0.886414;, - 0.660839; 1.000000;, - 0.715551; 1.000000;, - 0.800714; 0.886414;, - 0.756379; 0.886414;, - 0.756379; 1.000000;, - 0.800714; 1.000000;, - 0.660839; 0.772828;, - 0.705173; 0.772828;, - 0.705173; 0.718315;, - 0.660839; 0.718315;, - 0.767205; 0.549739;, - 0.722870; 0.549739;, - 0.722870; 0.663325;, - 0.767205; 0.663325;, - 0.660839; 0.718315;, - 0.705173; 0.718315;, - 0.705173; 0.663803;, - 0.660839; 0.663803;, - 0.302262; 0.269389;, - 0.302262; 0.155803;, - 0.259274; 0.155803;, - 0.259274; 0.269389;, - 0.811539; 0.549739;, - 0.854527; 0.549739;, - 0.854527; 0.436153;, - 0.811539; 0.436153;, - 0.822121; 0.095395;, - 0.784607; 0.095395;, - 0.784608; 0.208981;, - 0.822121; 0.208981;, - 0.577087; 0.007204;, - 0.539573; 0.007204;, - 0.539573; 0.050035;, - 0.577087; 0.050035;, - 0.920076; 0.772828;, - 0.882562; 0.772828;, - 0.882562; 0.886414;, - 0.920076; 0.886414;, - 0.860703; 0.663600;, - 0.823189; 0.663600;, - 0.823189; 0.706431;, - 0.860703; 0.706431;, - 0.355628; 0.382975;, - 0.355628; 0.269389;, - 0.304824; 0.269389;, - 0.304824; 0.382975;, - 0.101608; 0.382975;, - 0.152412; 0.382975;, - 0.152412; 0.269389;, - 0.101608; 0.269389;, - 0.885972; 0.886414;, - 0.845048; 0.886414;, - 0.845048; 1.000000;, - 0.885972; 1.000000;, - 0.000000; 0.091523;, - 0.040924; 0.091523;, - 0.040924; 0.040904;, - 0.000000; 0.040904;, - 0.631301; 0.133027;, - 0.590377; 0.133027;, - 0.590377; 0.246613;, - 0.631301; 0.246613;, - 0.040924; 0.091523;, - 0.081848; 0.091523;, - 0.081848; 0.040904;, - 0.040924; 0.040904;, - 0.848057; 0.322567;, - 0.848057; 0.208981;, - 0.805070; 0.208981;, - 0.805070; 0.322567;, - 0.216286; 0.269389;, - 0.259274; 0.269389;, - 0.259274; 0.155803;, - 0.216286; 0.155803;, - 0.784607; 0.095395;, - 0.747094; 0.095395;, - 0.747094; 0.208981;, - 0.784607; 0.208981;, - 0.823189; 0.663600;, - 0.785675; 0.663600;, - 0.785675; 0.706431;, - 0.823189; 0.706431;, - 0.923085; 0.208981;, - 0.885571; 0.208981;, - 0.885571; 0.322567;, - 0.923085; 0.322567;, - 0.495371; 0.011734;, - 0.457857; 0.011734;, - 0.457857; 0.054565;, - 0.495371; 0.054565;, - 0.828386; 0.095395;, - 0.828386; 0.040680;, - 0.789306; 0.040680;, - 0.789306; 0.095395;, - 0.959156; 0.694074;, - 0.920076; 0.694074;, - 0.920076; 0.748790;, - 0.959156; 0.748790;, - 0.115952; 0.036807;, - 0.081848; 0.036807;, - 0.081848; 0.091523;, - 0.115952; 0.091523;, - 0.960920; 0.005898;, - 0.926817; 0.005898;, - 0.926817; 0.044835;, - 0.960920; 0.044835;, - 0.963658; 0.608610;, - 0.929555; 0.608610;, - 0.929555; 0.663325;, - 0.963658; 0.663325;, - 0.997761; 0.585450;, - 0.963658; 0.585450;, - 0.963658; 0.624387;, - 0.997761; 0.624387;, - 0.711146; 0.095395;, - 0.711146; 0.040680;, - 0.672066; 0.040680;, - 0.672066; 0.095395;, - 0.789306; 0.040680;, - 0.750226; 0.040680;, - 0.750226; 0.095395;, - 0.789306; 0.095395;, - 0.254082; 0.036807;, - 0.219978; 0.036807;, - 0.219978; 0.091523;, - 0.254082; 0.091523;, - 0.706170; 0.040680;, - 0.740273; 0.040680;, - 0.740273; 0.001742;, - 0.706170; 0.001742;, - 0.219978; 0.036807;, - 0.185875; 0.036807;, - 0.185875; 0.091523;, - 0.219978; 0.091523;, - 0.000000; 0.040904;, - 0.034103; 0.040904;, - 0.034103; 0.001966;, - 0.000000; 0.001966;, - 0.517202; 0.269389;, - 0.517202; 0.155803;, - 0.474214; 0.155803;, - 0.474214; 0.269389;, - 0.345250; 0.269389;, - 0.388238; 0.269389;, - 0.388238; 0.155803;, - 0.345250; 0.155803;, - 0.892041; 0.549739;, - 0.854527; 0.549739;, - 0.854527; 0.663325;, - 0.892041; 0.663325;, - 0.926817; 0.030221;, - 0.889303; 0.030221;, - 0.889303; 0.073053;, - 0.926817; 0.073053;, - 0.923486; 0.886414;, - 0.885972; 0.886414;, - 0.885972; 1.000000;, - 0.923486; 1.000000;, - 0.987958; 0.409361;, - 0.950444; 0.409361;, - 0.950444; 0.452192;, - 0.987958; 0.452192;, - 0.254020; 0.269389;, - 0.254020; 0.382975;, - 0.304824; 0.382975;, - 0.304824; 0.269389;, - 0.722870; 0.436153;, - 0.672066; 0.436153;, - 0.672066; 0.549739;, - 0.722870; 0.549739;, - 0.800714; 0.772828;, - 0.756379; 0.772828;, - 0.756379; 0.886414;, - 0.800714; 0.886414;, - 0.936375; 0.322567;, - 0.892041; 0.322567;, - 0.892041; 0.373186;, - 0.936375; 0.373186;, - 0.845048; 0.886414;, - 0.800714; 0.886414;, - 0.800714; 1.000000;, - 0.845048; 1.000000;, - 0.345316; 0.105184;, - 0.389651; 0.105184;, - 0.389651; 0.054565;, - 0.345316; 0.054565;, - 0.406431; 0.382975;, - 0.406431; 0.269389;, - 0.355628; 0.269389;, - 0.355628; 0.382975;, - 0.203216; 0.382975;, - 0.254020; 0.382975;, - 0.254020; 0.269389;, - 0.203216; 0.269389;, - 0.767205; 0.436153;, - 0.722870; 0.436153;, - 0.722870; 0.549739;, - 0.767205; 0.549739;, - 0.583907; 0.104751;, - 0.539573; 0.104751;, - 0.539573; 0.155369;, - 0.583907; 0.155369;, - 0.811539; 0.322567;, - 0.767205; 0.322567;, - 0.767205; 0.436153;, - 0.811539; 0.436153;, - 0.389651; 0.105184;, - 0.433985; 0.105184;, - 0.433985; 0.054565;, - 0.389651; 0.054565;, - 0.854527; 0.436153;, - 0.854527; 0.322567;, - 0.811539; 0.322567;, - 0.811539; 0.436153;, - 0.474214; 0.155803;, - 0.431226; 0.155803;, - 0.431226; 0.269389;, - 0.474214; 0.269389;, - 0.709580; 0.095395;, - 0.672066; 0.095395;, - 0.672066; 0.208981;, - 0.709580; 0.208981;, - 0.420344; 0.011734;, - 0.382830; 0.011734;, - 0.382830; 0.054565;, - 0.420344; 0.054565;, - 0.929554; 0.549739;, - 0.892041; 0.549739;, - 0.892041; 0.663325;, - 0.929554; 0.663325;, - 0.962165; 0.279736;, - 0.999679; 0.279736;, - 0.999679; 0.236904;, - 0.962165; 0.236904;, - 0.965897; 0.154266;, - 0.965897; 0.099550;, - 0.926817; 0.099550;, - 0.926817; 0.154266;, - 0.962165; 0.213136;, - 0.923085; 0.213136;, - 0.923085; 0.267852;, - 0.962165; 0.267852;, - 0.982915; 0.831699;, - 0.948811; 0.831699;, - 0.948811; 0.886414;, - 0.982915; 0.886414;, - 0.034103; 0.040904;, - 0.068207; 0.040904;, - 0.068207; 0.001966;, - 0.034103; 0.001966;, - 0.970479; 0.322567;, - 0.936375; 0.322567;, - 0.936375; 0.377282;, - 0.970479; 0.377282;, - 0.740273; 0.040680;, - 0.774376; 0.040680;, - 0.774376; 0.001742;, - 0.740273; 0.001742;, - 0.962165; 0.322567;, - 0.962165; 0.267852;, - 0.923085; 0.267852;, - 0.923085; 0.322567;, - 0.965897; 0.154266;, - 0.926817; 0.154266;, - 0.926817; 0.208981;, - 0.965897; 0.208981;, - 0.624480; 0.027693;, - 0.590377; 0.027693;, - 0.590377; 0.082408;, - 0.624480; 0.082408;, - 0.993259; 0.667021;, - 0.959156; 0.667021;, - 0.959156; 0.705958;, - 0.993259; 0.705958;, - 0.982915; 0.776983;, - 0.948811; 0.776983;, - 0.948811; 0.831699;, - 0.982915; 0.831699;, - 0.965897; 0.092168;, - 1.000000; 0.092168;, - 1.000000; 0.053231;, - 0.965897; 0.053231;, - 0.130310; 0.155803;, - 0.130310; 0.269389;, - 0.173298; 0.269389;, - 0.173298; 0.155803;, - 0.130310; 0.155803;, - 0.087322; 0.155802;, - 0.087322; 0.269389;, - 0.130310; 0.269389;, - 0.668815; 0.133027;, - 0.631301; 0.133027;, - 0.631301; 0.246613;, - 0.668815; 0.246613;, - 0.457857; 0.011734;, - 0.420344; 0.011734;, - 0.420344; 0.054565;, - 0.457857; 0.054565;, - 0.897149; 0.095395;, - 0.859635; 0.095395;, - 0.859635; 0.208981;, - 0.897149; 0.208981;, - 0.748161; 0.706431;, - 0.785675; 0.706431;, - 0.785675; 0.663600;, - 0.748161; 0.663600;, - 0.722870; 0.436153;, - 0.722870; 0.322567;, - 0.672066; 0.322567;, - 0.672066; 0.436153;, - 0.152412; 0.382975;, - 0.203216; 0.382975;, - 0.203216; 0.269389;, - 0.152412; 0.269389;, - 0.805070; 0.208981;, - 0.760735; 0.208981;, - 0.760735; 0.322567;, - 0.805070; 0.322567;, - 0.478319; 0.105184;, - 0.522654; 0.105184;, - 0.522654; 0.054565;, - 0.478320; 0.054565;, - 0.811539; 0.549739;, - 0.767205; 0.549739;, - 0.767205; 0.663325;, - 0.811539; 0.663325;, - 0.433985; 0.155802;, - 0.478319; 0.155802;, - 0.478319; 0.105184;, - 0.433985; 0.105184;, - 0.553530; 0.666283;, - 0.546797; 0.666283;, - 0.546797; 0.674071;, - 0.553530; 0.674071;, - 0.560262; 0.674071;, - 0.560262; 0.666283;, - 0.553530; 0.666283;, - 0.553530; 0.674071;, - 0.582561; 0.167018;, - 0.582561; 0.217987;, - 0.589293; 0.217987;, - 0.589293; 0.167018;, - 0.582561; 0.217987;, - 0.582561; 0.268955;, - 0.590377; 0.268955;, - 0.590377; 0.217987;, - 0.536270; 0.199678;, - 0.536270; 0.148709;, - 0.529538; 0.148709;, - 0.529538; 0.199678;, - 0.529891; 0.250647;, - 0.529891; 0.301616;, - 0.537707; 0.301616;, - 0.537707; 0.250647;, - 0.554260; 0.681858;, - 0.546797; 0.681858;, - 0.546797; 0.689646;, - 0.554260; 0.689646;, - 0.554260; 0.681858;, - 0.554260; 0.674071;, - 0.546797; 0.674071;, - 0.546797; 0.681858;, - 0.529891; 0.199678;, - 0.529891; 0.250647;, - 0.537354; 0.250647;, - 0.537354; 0.199678;, - 0.705173; 0.721859;, - 0.705173; 0.772828;, - 0.712989; 0.772828;, - 0.712989; 0.721859;, - 0.522075; 0.199678;, - 0.522075; 0.250647;, - 0.529538; 0.250647;, - 0.529538; 0.199678;, - 0.529891; 0.301616;, - 0.529891; 0.250647;, - 0.522075; 0.250647;, - 0.522075; 0.301616;, - 0.970479; 0.377282;, - 0.999214; 0.377282;, - 0.999214; 0.336603;, - 0.970479; 0.336603;, - 0.774376; 0.000000;, - 0.774376; 0.040680;, - 0.803112; 0.040680;, - 0.803112; 0.000000;, - 0.950444; 0.549739;, - 0.950444; 0.412115;, - 0.921709; 0.412115;, - 0.921709; 0.549739;, - 0.715551; 0.724751;, - 0.715551; 0.862376;, - 0.756379; 0.862376;, - 0.756379; 0.724751;, - 0.920076; 0.748790;, - 0.920076; 0.886414;, - 0.948811; 0.886414;, - 0.948811; 0.748790;, - 0.756379; 1.000000;, - 0.756379; 0.862376;, - 0.715551; 0.862376;, - 0.715551; 1.000000;, - 0.537707; 0.342295;, - 0.508039; 0.342295;, - 0.508039; 0.382975;, - 0.537707; 0.382975;, - 0.537707; 0.342295;, - 0.537707; 0.301616;, - 0.508039; 0.301616;, - 0.508039; 0.342295;, - 0.892041; 0.413811;, - 0.892041; 0.549739;, - 0.921709; 0.549739;, - 0.921709; 0.413811;, - 0.590377; 0.246613;, - 0.590377; 0.382541;, - 0.631205; 0.382541;, - 0.631205; 0.246613;, - 0.926817; 0.208981;, - 0.926817; 0.073053;, - 0.897149; 0.073053;, - 0.897149; 0.208981;, - 0.672033; 0.382541;, - 0.672033; 0.246613;, - 0.631205; 0.246613;, - 0.631205; 0.382541;, - 0.425531; 0.663325;, - 0.539573; 0.663325;, - 0.539573; 0.382975;, - 0.425531; 0.382975;, - 0.311489; 0.382975;, - 0.311489; 0.663325;, - 0.425531; 0.663325;, - 0.425531; 0.382975;, - 0.660839; 1.000000;, - 0.660839; 0.844823;, - 0.546797; 0.844823;, - 0.546797; 1.000000;, - 0.311489; 0.382975;, - 0.155745; 0.382975;, - 0.155745; 0.663325;, - 0.311489; 0.663325;, - 0.546797; 0.689646;, - 0.546797; 0.844823;, - 0.660839; 0.844823;, - 0.660839; 0.689646;, - 0.000000; 0.663325;, - 0.155745; 0.663325;, - 0.155745; 0.382975;, - 0.000000; 0.382975;, - 0.280801; 0.155802;, - 0.345316; 0.155802;, - 0.345316; 0.091523;, - 0.280801; 0.091523;, - 0.280801; 0.155802;, - 0.280801; 0.091523;, - 0.216286; 0.091523;, - 0.216286; 0.155802;, - 0.820894; 0.708548;, - 0.756379; 0.708548;, - 0.756379; 0.772828;, - 0.820894; 0.772828;, - 0.000000; 0.091523;, - 0.000000; 0.155802;, - 0.064515; 0.155803;, - 0.064515; 0.091523;, - 0.216286; 0.091523;, - 0.151771; 0.091523;, - 0.151771; 0.155802;, - 0.216286; 0.155802;, - 0.064515; 0.155803;, - 0.129030; 0.155803;, - 0.129030; 0.091523;, - 0.064515; 0.091523;, - 0.140905; 1.000000;, - 0.281810; 1.000000;, - 0.281810; 0.663325;, - 0.140905; 0.663325;, - 0.000000; 0.663325;, - 0.000000; 1.000000;, - 0.140905; 1.000000;, - 0.140905; 0.663325;, - 0.672066; 0.522933;, - 0.539573; 0.522933;, - 0.539573; 0.663325;, - 0.672066; 0.663325;, - 0.546797; 0.663325;, - 0.414304; 0.663325;, - 0.414304; 1.000000;, - 0.546797; 1.000000;, - 0.672066; 0.382541;, - 0.539573; 0.382541;, - 0.539573; 0.522933;, - 0.672066; 0.522933;, - 0.281810; 1.000000;, - 0.414304; 1.000000;, - 0.414304; 0.663325;, - 0.281811; 0.663325;; - } // End of Cube_001 UV coordinates - MeshMaterialList { // Cube_001 material list - 1; - 186; - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0;; - Material Material { - 0.640000; 0.640000; 0.640000; 1.000000;; - 96.078431; - 0.500000; 0.500000; 0.500000;; - 0.000000; 0.000000; 0.000000;; - TextureFilename {"tarantula.png";} - } - } // End of Cube_001 material list - XSkinMeshHeader { - 4; - 12; - 41; - } - SkinWeights { - "Armature_Bone_010"; - 0; - -0.147994, 0.073149, 0.000000, 0.000000, - -0.154214,-0.312006,-0.000000, 0.000000, - 0.000000,-0.000000, 0.189174, 0.000000, - -0.910463, 0.424756, 0.005543, 1.000000;; - } // End of Armature_Bone_010 skin weights - SkinWeights { - "Armature_Bone_017"; - 24; - 240, - 241, - 242, - 243, - 244, - 245, - 246, - 247, - 248, - 249, - 250, - 251, - 252, - 253, - 254, - 255, - 256, - 257, - 258, - 259, - 260, - 261, - 262, - 263; - 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.165085, 0.000000, 0.000000, 0.000000, - -0.000000, 0.348037,-0.000000, 0.000000, - -0.000000, 0.000000, 0.189174, 0.000000, - 0.356768,-0.592857, 0.005543, 1.000000;; - } // End of Armature_Bone_017 skin weights - SkinWeights { - "Armature_Bone_003"; - 15; - 627, - 628, - 629, - 630, - 631, - 633, - 634, - 637, - 638, - 641, - 642, - 643, - 644, - 646, - 647; - 0.052897, - 0.473024, - 0.484951, - 0.442607, - 0.133675, - 0.473024, - 0.133675, - 0.133675, - 0.442607, - 0.442607, - 0.484951, - 0.052897, - 0.473024, - 0.052897, - 0.484951; - 0.064360,-0.146379, 0.041037, 0.000000, - 0.320496, 0.130304,-0.037852, 0.000000, - 0.000637, 0.051325, 0.182078, 0.000000, - 0.412448,-0.880622, 0.252553, 1.000000;; - } // End of Armature_Bone_003 skin weights - SkinWeights { - "Armature_Bone_014"; - 15; - 674, - 675, - 676, - 677, - 678, - 681, - 686, - 687, - 688, - 689, - 690, - 691, - 692, - 694, - 695; - 0.004078, - 0.931183, - 0.030704, - 0.478693, - 0.161453, - 0.030704, - 0.161453, - 0.004078, - 0.004078, - 0.161453, - 0.478693, - 0.931183, - 0.030704, - 0.931183, - 0.478693; - 0.140423,-0.086800, 0.000000, 0.000000, - 0.182994, 0.296045,-0.000000, 0.000000, - 0.000000, 0.000000, 0.189174, 0.000000, - 0.866275,-0.508851, 0.005543, 1.000000;; - } // End of Armature_Bone_014 skin weights - SkinWeights { - "Armature_Bone_015"; - 0; - 0.164582,-0.012871, 0.000000, 0.000000, - 0.027134, 0.346977,-0.000000, 0.000000, - -0.000000, 0.000000, 0.189174, 0.000000, - 1.003122,-0.055735, 0.005543, 1.000000;; - } // End of Armature_Bone_015 skin weights - SkinWeights { - "Armature_Bone_002"; - 0; - 0.000000,-0.165085, 0.000000, 0.000000, - 0.348037, 0.000000,-0.000000, 0.000000, - 0.000000,-0.000000, 0.189174, 0.000000, - 0.022642,-0.177981, 0.005543, 1.000000;; - } // End of Armature_Bone_002 skin weights - SkinWeights { - "Armature_Bone_004"; - 18; - 648, - 651, - 652, - 653, - 654, - 655, - 656, - 657, - 658, - 661, - 662, - 665, - 666, - 667, - 668, - 669, - 670, - 671; - 0.003960, - 0.057195, - 0.454296, - 0.485190, - 0.490017, - 0.491403, - 0.003960, - 0.454296, - 0.491403, - 0.491403, - 0.490017, - 0.490017, - 0.485190, - 0.057195, - 0.454296, - 0.003960, - 0.057195, - 0.485190; - -0.057688,-0.147519, 0.046511, 0.000000, - 0.326095,-0.116094, 0.036243, 0.000000, - 0.000175, 0.056822, 0.180439, 0.000000, - -0.329768,-0.903427, 0.290631, 1.000000;; - } // End of Armature_Bone_004 skin weights - SkinWeights { - "Armature_Bone_009"; - 18; - 673, - 674, - 676, - 677, - 678, - 679, - 681, - 682, - 683, - 684, - 685, - 686, - 687, - 688, - 689, - 690, - 692, - 695; - 0.979223, - 0.001095, - 0.092727, - 0.095615, - 0.235740, - 0.845827, - 0.092727, - 0.845827, - 0.979223, - 0.979223, - 0.845827, - 0.235740, - 0.001095, - 0.001095, - 0.235740, - 0.095615, - 0.092727, - 0.095615; - -0.111372, 0.121857, 0.000000, 0.000000, - -0.256903,-0.234799,-0.000000, 0.000000, - 0.000000,-0.000000, 0.189174, 0.000000, - -0.694329, 0.726133, 0.005543, 1.000000;; - } // End of Armature_Bone_009 skin weights - SkinWeights { - "Armature_Bone_036"; - 24; - 528, - 529, - 530, - 531, - 532, - 533, - 534, - 535, - 536, - 537, - 538, - 539, - 540, - 541, - 542, - 543, - 544, - 545, - 546, - 547, - 548, - 549, - 550, - 551; - 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.165085,-0.000000, 0.000000, 0.000000, - 0.000000,-0.348037,-0.000000, 0.000000, - 0.000000,-0.000000, 0.189174, 0.000000, - -1.403467,-1.866385, 0.005543, 1.000000;; - } // End of Armature_Bone_036 skin weights - SkinWeights { - "Armature_Bone_026"; - 24; - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71; - 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.165085,-0.000000, 0.000000, 0.000000, - 0.000000, 0.348037,-0.000000, 0.000000, - 0.000000, 0.000000, 0.189174, 0.000000, - 1.362284,-3.079619, 0.005543, 1.000000;; - } // End of Armature_Bone_026 skin weights - SkinWeights { - "Armature_Bone_040"; - 24; - 504, - 505, - 506, - 507, - 508, - 509, - 510, - 511, - 512, - 513, - 514, - 515, - 516, - 517, - 518, - 519, - 520, - 521, - 522, - 523, - 524, - 525, - 526, - 527; - 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.165085,-0.000000, 0.000000, 0.000000, - 0.000000,-0.348037,-0.000000, 0.000000, - 0.000000,-0.000000, 0.189174, 0.000000, - -1.403467,-3.094802, 0.005543, 1.000000;; - } // End of Armature_Bone_040 skin weights - SkinWeights { - "Armature_Bone_037"; - 24; - 336, - 337, - 338, - 339, - 340, - 341, - 342, - 343, - 344, - 345, - 346, - 347, - 348, - 349, - 350, - 351, - 352, - 353, - 354, - 355, - 356, - 357, - 358, - 359; - 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.165085,-0.000000, 0.000000, 0.000000, - 0.000000,-0.348037,-0.000000, 0.000000, - 0.000000,-0.000000, 0.189174, 0.000000, - -0.363215,-3.117004, 0.005543, 1.000000;; - } // End of Armature_Bone_037 skin weights - SkinWeights { - "Armature_Bone_020"; - 24; - 168, - 169, - 170, - 171, - 172, - 173, - 174, - 175, - 176, - 177, - 178, - 179, - 180, - 181, - 182, - 183, - 184, - 185, - 186, - 187, - 188, - 189, - 190, - 191; - 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.165085, 0.000000, 0.000000, 0.000000, - -0.000000, 0.348037,-0.000000, 0.000000, - -0.000000, 0.000000, 0.189174, 0.000000, - 0.697527,-0.587887, 0.005543, 1.000000;; - } // End of Armature_Bone_020 skin weights - SkinWeights { - "Armature_Bone_023"; - 24; - 120, - 121, - 122, - 123, - 124, - 125, - 126, - 127, - 128, - 129, - 130, - 131, - 132, - 133, - 134, - 135, - 136, - 137, - 138, - 139, - 140, - 141, - 142, - 143; - 0.476087, - 0.980288, - 1.000000, - 0.130105, - 0.498086, - 0.478004, - 1.000000, - 0.980912, - 0.476087, - 0.498086, - 0.980912, - 0.980288, - 0.980288, - 0.980912, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 0.478004, - 0.130105, - 0.498086, - 0.476087, - 0.130105, - 0.478004; - 0.165085, 0.000000, 0.000000, 0.000000, - -0.000000, 0.348037,-0.000000, 0.000000, - -0.000000, 0.000000, 0.189174, 0.000000, - 1.050634,-1.862861, 0.005543, 1.000000;; - } // End of Armature_Bone_023 skin weights - SkinWeights { - "Armature_Bone_038"; - 24; - 360, - 361, - 362, - 363, - 364, - 365, - 366, - 367, - 368, - 369, - 370, - 371, - 372, - 373, - 374, - 375, - 376, - 377, - 378, - 379, - 380, - 381, - 382, - 383; - 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.165085, 0.000000, 0.000000, 0.000000, - 0.000000,-0.348037,-0.000000, 0.000000, - 0.000000,-0.000000, 0.189174, 0.000000, - -0.709249,-3.128153, 0.005543, 1.000000;; - } // End of Armature_Bone_038 skin weights - SkinWeights { - "Armature_Bone"; - 24; - 696, - 697, - 698, - 699, - 700, - 701, - 702, - 703, - 704, - 705, - 706, - 707, - 708, - 709, - 710, - 711, - 712, - 713, - 714, - 715, - 716, - 717, - 718, - 719; - 0.888201, - 0.918337, - 0.958788, - 0.943487, - 0.620861, - 0.868517, - 0.905544, - 0.646406, - 0.888201, - 0.620861, - 0.646406, - 0.918337, - 0.918337, - 0.646406, - 0.905544, - 0.958788, - 0.958788, - 0.905544, - 0.868517, - 0.943487, - 0.620861, - 0.888201, - 0.943487, - 0.868517; - 0.003679,-0.165043, 0.000000, 0.000000, - -0.000000, 0.000000, 0.348037, 0.000000, - -0.189127,-0.004216,-0.000000, 0.000000, - -0.001575, 0.166294, 0.022642, 1.000000;; - } // End of Armature_Bone skin weights - SkinWeights { - "Armature_Bone_027"; - 42; - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 120, - 121, - 123, - 124, - 125, - 127, - 128, - 129, - 130, - 131, - 132, - 133, - 138, - 139, - 140, - 141, - 142, - 143; - 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.523913, - 0.019712, - 0.869895, - 0.501914, - 0.521996, - 0.019088, - 0.523913, - 0.501914, - 0.019088, - 0.019712, - 0.019712, - 0.019088, - 0.521996, - 0.869895, - 0.501914, - 0.523913, - 0.869895, - 0.521996; - 0.165085, 0.000000, 0.000000, 0.000000, - -0.000000, 0.348037,-0.000000, 0.000000, - -0.000000, 0.000000, 0.189174, 0.000000, - 1.050634,-3.091683, 0.005543, 1.000000;; - } // End of Armature_Bone_027 skin weights - SkinWeights { - "Armature_Bone_016"; - 0; - 0.147499, 0.074142,-0.000000, 0.000000, - -0.156308, 0.310962,-0.000000, 0.000000, - -0.000000, 0.000000, 0.189174, 0.000000, - 0.887251, 0.471325, 0.005543, 1.000000;; - } // End of Armature_Bone_016 skin weights - SkinWeights { - "Armature_Bone_006"; - 24; - 600, - 601, - 602, - 603, - 604, - 605, - 606, - 607, - 608, - 609, - 610, - 611, - 612, - 613, - 614, - 615, - 616, - 617, - 618, - 619, - 620, - 621, - 622, - 623; - 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.164872,-0.008372,-0.000000, 0.000000, - 0.000000, 0.000000,-0.348037, 0.000000, - 0.009593,-0.188931, 0.000000, 0.000000, - -1.755953,-0.541359, 0.276091, 1.000000;; - } // End of Armature_Bone_006 skin weights - SkinWeights { - "Armature_Bone_018"; - 24; - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47; - 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.165085,-0.000000, 0.000000, 0.000000, - 0.000000, 0.348037,-0.000000, 0.000000, - 0.000000, 0.000000, 0.189174, 0.000000, - 1.362284,-0.556315, 0.005543, 1.000000;; - } // End of Armature_Bone_018 skin weights - SkinWeights { - "Armature_Bone_031"; - 24; - 432, - 433, - 434, - 435, - 436, - 437, - 438, - 439, - 440, - 441, - 442, - 443, - 444, - 445, - 446, - 447, - 448, - 449, - 450, - 451, - 452, - 453, - 454, - 455; - 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.165084,-0.000000, 0.000000, 0.000000, - 0.000000,-0.348037,-0.000000, 0.000000, - 0.000000,-0.000000, 0.189174, 0.000000, - -1.087919,-0.603126, 0.005543, 1.000000;; - } // End of Armature_Bone_031 skin weights - SkinWeights { - "Armature_Bone_001"; - 48; - 696, - 697, - 698, - 699, - 700, - 701, - 702, - 703, - 704, - 705, - 706, - 707, - 708, - 709, - 710, - 711, - 712, - 713, - 714, - 715, - 716, - 717, - 718, - 719, - 720, - 721, - 722, - 723, - 724, - 725, - 726, - 727, - 728, - 729, - 730, - 731, - 732, - 733, - 734, - 735, - 736, - 737, - 738, - 739, - 740, - 741, - 742, - 743; - 0.111799, - 0.081663, - 0.041212, - 0.056513, - 0.379139, - 0.131483, - 0.094456, - 0.353594, - 0.111799, - 0.379139, - 0.353594, - 0.081663, - 0.081663, - 0.353594, - 0.094456, - 0.041212, - 0.041212, - 0.094456, - 0.131483, - 0.056513, - 0.379139, - 0.111799, - 0.056513, - 0.131483, - 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.165085, 0.000000, 0.000000, - -0.348037,-0.000000, 0.000000, 0.000000, - 0.000000, 0.000000, 0.189174, 0.000000, - -0.022642,-0.166288,-0.002131, 1.000000;; - } // End of Armature_Bone_001 skin weights - SkinWeights { - "Armature_Bone_007"; - 24; - 648, - 649, - 650, - 651, - 652, - 653, - 654, - 655, - 656, - 657, - 658, - 659, - 660, - 661, - 662, - 663, - 664, - 665, - 666, - 667, - 668, - 669, - 670, - 671; - 0.996040, - 1.000000, - 1.000000, - 0.942805, - 0.545704, - 0.514810, - 0.509983, - 0.508597, - 0.996040, - 0.545704, - 0.508597, - 1.000000, - 1.000000, - 0.508597, - 0.509983, - 1.000000, - 1.000000, - 0.509983, - 0.514810, - 0.942805, - 0.545704, - 0.996040, - 0.942805, - 0.514810; - -0.162855,-0.027040,-0.000016, 0.000000, - -0.001091, 0.006771,-0.347969, 0.000000, - 0.030980,-0.186583,-0.003728, 0.000000, - -1.686205,-0.052699,-0.267670, 1.000000;; - } // End of Armature_Bone_007 skin weights - SkinWeights { - "Armature_Bone_024"; - 24; - 144, - 145, - 146, - 147, - 148, - 149, - 150, - 151, - 152, - 153, - 154, - 155, - 156, - 157, - 158, - 159, - 160, - 161, - 162, - 163, - 164, - 165, - 166, - 167; - 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.165085, 0.000000, 0.000000, 0.000000, - -0.000000, 0.348037,-0.000000, 0.000000, - -0.000000, 0.000000, 0.189174, 0.000000, - 0.697527,-1.882368, 0.005543, 1.000000;; - } // End of Armature_Bone_024 skin weights - SkinWeights { - "Armature_Bone_012"; - 18; - 673, - 674, - 675, - 677, - 678, - 679, - 682, - 683, - 684, - 685, - 686, - 687, - 688, - 689, - 690, - 691, - 694, - 695; - 0.000132, - 0.994826, - 0.037213, - 0.175329, - 0.499827, - 0.046383, - 0.046383, - 0.000132, - 0.000132, - 0.046383, - 0.499827, - 0.994826, - 0.994826, - 0.499827, - 0.175329, - 0.037213, - 0.037213, - 0.175329; - -0.134750,-0.095370,-0.000000, 0.000000, - 0.201062,-0.284084,-0.000000, 0.000000, - 0.000000,-0.000000, 0.189174, 0.000000, - -0.806769,-0.598736, 0.005543, 1.000000;; - } // End of Armature_Bone_012 skin weights - SkinWeights { - "Armature_Bone_025"; - 24; - 216, - 217, - 218, - 219, - 220, - 221, - 222, - 223, - 224, - 225, - 226, - 227, - 228, - 229, - 230, - 231, - 232, - 233, - 234, - 235, - 236, - 237, - 238, - 239; - 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.165085, 0.000000, 0.000000, 0.000000, - -0.000000, 0.348037,-0.000000, 0.000000, - -0.000000, 0.000000, 0.189174, 0.000000, - 0.356768,-3.116160, 0.005543, 1.000000;; - } // End of Armature_Bone_025 skin weights - SkinWeights { - "Armature_Bone_021"; - 24; - 264, - 265, - 266, - 267, - 268, - 269, - 270, - 271, - 272, - 273, - 274, - 275, - 276, - 277, - 278, - 279, - 280, - 281, - 282, - 283, - 284, - 285, - 286, - 287; - 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.165085, 0.000000, 0.000000, 0.000000, - -0.000000, 0.348037,-0.000000, 0.000000, - -0.000000, 0.000000, 0.189174, 0.000000, - 0.356768,-1.887338, 0.005543, 1.000000;; - } // End of Armature_Bone_021 skin weights - SkinWeights { - "Armature_Bone_008"; - 24; - 576, - 577, - 578, - 579, - 580, - 581, - 582, - 583, - 584, - 585, - 586, - 587, - 588, - 589, - 590, - 591, - 592, - 593, - 594, - 595, - 596, - 597, - 598, - 599; - 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.164818,-0.009368,-0.000000, 0.000000, - 0.000000, 0.000000,-0.348037, 0.000000, - 0.010735,-0.188870, 0.000000, 0.000000, - -1.754168,-0.545000,-0.258790, 1.000000;; - } // End of Armature_Bone_008 skin weights - SkinWeights { - "Armature_Bone_022"; - 24; - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23; - 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.165085,-0.000000, 0.000000, 0.000000, - 0.000000, 0.348037,-0.000000, 0.000000, - 0.000000, 0.000000, 0.189174, 0.000000, - 1.362284,-1.850797, 0.005543, 1.000000;; - } // End of Armature_Bone_022 skin weights - SkinWeights { - "Armature_Bone_039"; - 24; - 480, - 481, - 482, - 483, - 484, - 485, - 486, - 487, - 488, - 489, - 490, - 491, - 492, - 493, - 494, - 495, - 496, - 497, - 498, - 499, - 500, - 501, - 502, - 503; - 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.165084,-0.000000, 0.000000, 0.000000, - 0.000000,-0.348037,-0.000000, 0.000000, - 0.000000,-0.000000, 0.189174, 0.000000, - -1.087919,-3.111459, 0.005543, 1.000000;; - } // End of Armature_Bone_039 skin weights - SkinWeights { - "Armature_Bone_034"; - 24; - 384, - 385, - 386, - 387, - 388, - 389, - 390, - 391, - 392, - 393, - 394, - 395, - 396, - 397, - 398, - 399, - 400, - 401, - 402, - 403, - 404, - 405, - 406, - 407; - 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.165085, 0.000000, 0.000000, 0.000000, - 0.000000,-0.348037,-0.000000, 0.000000, - 0.000000,-0.000000, 0.189174, 0.000000, - -0.709248,-1.899737, 0.005543, 1.000000;; - } // End of Armature_Bone_034 skin weights - SkinWeights { - "Armature_Bone_035"; - 24; - 456, - 457, - 458, - 459, - 460, - 461, - 462, - 463, - 464, - 465, - 466, - 467, - 468, - 469, - 470, - 471, - 472, - 473, - 474, - 475, - 476, - 477, - 478, - 479; - 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.165084,-0.000000, 0.000000, 0.000000, - 0.000000,-0.348037,-0.000000, 0.000000, - 0.000000,-0.000000, 0.189174, 0.000000, - -1.087919,-1.883042, 0.005543, 1.000000;; - } // End of Armature_Bone_035 skin weights - SkinWeights { - "Armature_Bone_029"; - 24; - 288, - 289, - 290, - 291, - 292, - 293, - 294, - 295, - 296, - 297, - 298, - 299, - 300, - 301, - 302, - 303, - 304, - 305, - 306, - 307, - 308, - 309, - 310, - 311; - 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.165085,-0.000000, 0.000000, 0.000000, - 0.000000,-0.348037,-0.000000, 0.000000, - 0.000000,-0.000000, 0.189174, 0.000000, - -0.363215,-0.608671, 0.005543, 1.000000;; - } // End of Armature_Bone_029 skin weights - SkinWeights { - "Armature_Bone_013"; - 21; - 672, - 673, - 675, - 676, - 677, - 678, - 679, - 680, - 681, - 682, - 683, - 684, - 685, - 686, - 689, - 690, - 691, - 692, - 693, - 694, - 695; - 1.000000, - 0.020645, - 0.031604, - 0.876569, - 0.250363, - 0.102980, - 0.107790, - 1.000000, - 0.876569, - 0.107790, - 0.020645, - 0.020645, - 0.107790, - 0.102980, - 0.102980, - 0.250363, - 0.031604, - 0.876569, - 1.000000, - 0.031604, - 0.250363; - 0.113725, 0.119665,-0.000000, 0.000000, - -0.252281, 0.239758,-0.000000, 0.000000, - 0.000000, 0.000000, 0.189174, 0.000000, - 0.675516, 0.743666, 0.005543, 1.000000;; - } // End of Armature_Bone_013 skin weights - SkinWeights { - "Armature_Bone_032"; - 24; - 552, - 553, - 554, - 555, - 556, - 557, - 558, - 559, - 560, - 561, - 562, - 563, - 564, - 565, - 566, - 567, - 568, - 569, - 570, - 571, - 572, - 573, - 574, - 575; - 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.165085,-0.000000, 0.000000, 0.000000, - 0.000000,-0.348037,-0.000000, 0.000000, - 0.000000,-0.000000, 0.189174, 0.000000, - -1.403467,-0.586469, 0.005543, 1.000000;; - } // End of Armature_Bone_032 skin weights - SkinWeights { - "Armature_Bone_030"; - 24; - 408, - 409, - 410, - 411, - 412, - 413, - 414, - 415, - 416, - 417, - 418, - 419, - 420, - 421, - 422, - 423, - 424, - 425, - 426, - 427, - 428, - 429, - 430, - 431; - 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.165085, 0.000000, 0.000000, 0.000000, - 0.000000,-0.348037,-0.000000, 0.000000, - 0.000000,-0.000000, 0.189174, 0.000000, - -0.709248,-0.619820, 0.005543, 1.000000;; - } // End of Armature_Bone_030 skin weights - SkinWeights { - "Armature_Bone_005"; - 24; - 624, - 625, - 626, - 627, - 628, - 629, - 630, - 631, - 632, - 633, - 634, - 635, - 636, - 637, - 638, - 639, - 640, - 641, - 642, - 643, - 644, - 645, - 646, - 647; - 1.000000, - 1.000000, - 1.000000, - 0.947103, - 0.526976, - 0.515049, - 0.557393, - 0.866325, - 1.000000, - 0.526976, - 0.866325, - 1.000000, - 1.000000, - 0.866325, - 0.557393, - 1.000000, - 1.000000, - 0.557393, - 0.515049, - 0.947103, - 0.526976, - 1.000000, - 0.947103, - 0.515049; - -0.163134,-0.025305,-0.000022, 0.000000, - -0.001059, 0.007126,-0.347962, 0.000000, - 0.028992,-0.186899,-0.003916, 0.000000, - -1.690046,-0.064158, 0.266449, 1.000000;; - } // End of Armature_Bone_005 skin weights - SkinWeights { - "Armature_Bone_019"; - 24; - 96, - 97, - 98, - 99, - 100, - 101, - 102, - 103, - 104, - 105, - 106, - 107, - 108, - 109, - 110, - 111, - 112, - 113, - 114, - 115, - 116, - 117, - 118, - 119; - 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.165085, 0.000000, 0.000000, 0.000000, - -0.000000, 0.348037,-0.000000, 0.000000, - -0.000000, 0.000000, 0.189174, 0.000000, - 1.050634,-0.568380, 0.005543, 1.000000;; - } // End of Armature_Bone_019 skin weights - SkinWeights { - "Armature_Bone_033"; - 24; - 312, - 313, - 314, - 315, - 316, - 317, - 318, - 319, - 320, - 321, - 322, - 323, - 324, - 325, - 326, - 327, - 328, - 329, - 330, - 331, - 332, - 333, - 334, - 335; - 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.165085,-0.000000, 0.000000, 0.000000, - 0.000000,-0.348037,-0.000000, 0.000000, - 0.000000,-0.000000, 0.189174, 0.000000, - -0.363215,-1.888587, 0.005543, 1.000000;; - } // End of Armature_Bone_033 skin weights - SkinWeights { - "Armature_Bone_011"; - 0; - -0.163402,-0.023506,-0.000000, 0.000000, - 0.049556,-0.344491,-0.000000, 0.000000, - 0.000000,-0.000000, 0.189174, 0.000000, - -0.990957,-0.165427, 0.005543, 1.000000;; - } // End of Armature_Bone_011 skin weights - SkinWeights { - "Armature_Bone_028"; - 24; - 192, - 193, - 194, - 195, - 196, - 197, - 198, - 199, - 200, - 201, - 202, - 203, - 204, - 205, - 206, - 207, - 208, - 209, - 210, - 211, - 212, - 213, - 214, - 215; - 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.165085, 0.000000, 0.000000, 0.000000, - -0.000000, 0.348037,-0.000000, 0.000000, - -0.000000, 0.000000, 0.189174, 0.000000, - 0.697527,-3.111190, 0.005543, 1.000000;; - } // End of Armature_Bone_028 skin weights - } // End of Cube_001 mesh - } // End of Cube_001 - } // End of Armature -} // End of Root -AnimationSet Global { - Animation { - {Armature} - AnimationKey { // Rotation - 0; - 250; - 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;;, - 189;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 190;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 191;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 192;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 193;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 194;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 195;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 196;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 197;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 198;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 199;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 200;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 201;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 202;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 203;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 204;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 205;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 206;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 207;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 208;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 209;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 210;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 211;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 212;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 213;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 214;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 215;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 216;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 217;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 218;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 219;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 220;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 221;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 222;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 223;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 224;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 225;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 226;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 227;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 228;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 229;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 230;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 231;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 232;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 233;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 234;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 235;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 236;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 237;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 238;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 239;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 240;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 241;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 242;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 243;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 244;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 245;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 246;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 247;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 248;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 249;4;-1.000000, 0.000000, 0.000000, 0.000000;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3;-0.672467,-1.528196,-0.828771;;, - 1;3;-0.672467,-1.528196,-0.828771;;, - 2;3;-0.672467,-1.528196,-0.828771;;, - 3;3;-0.672467,-1.528196,-0.828771;;, - 4;3;-0.672467,-1.528196,-0.828771;;, - 5;3;-0.672467,-1.528196,-0.828771;;, - 6;3;-0.672467,-1.528196,-0.828771;;, - 7;3;-0.672467,-1.528196,-0.828771;;, - 8;3;-0.672467,-1.528196,-0.828771;;, - 9;3;-0.672467,-1.528196,-0.828771;;, - 10;3;-0.672467,-1.528196,-0.828771;;, - 11;3;-0.672467,-1.528196,-0.828771;;, - 12;3;-0.672467,-1.528196,-0.828771;;, - 13;3;-0.672467,-1.528196,-0.828771;;, - 14;3;-0.672467,-1.528196,-0.828771;;, - 15;3;-0.672467,-1.528196,-0.828771;;, - 16;3;-0.672467,-1.528196,-0.828771;;, - 17;3;-0.672467,-1.528196,-0.828771;;, - 18;3;-0.672467,-1.528196,-0.828771;;, - 19;3;-0.672467,-1.528196,-0.828771;;, - 20;3;-0.672467,-1.528196,-0.828771;;, - 21;3;-0.672467,-1.528196,-0.828771;;, - 22;3;-0.672467,-1.528196,-0.828771;;, - 23;3;-0.672467,-1.528196,-0.828771;;, - 24;3;-0.672467,-1.528196,-0.828771;;, - 25;3;-0.672467,-1.528196,-0.828771;;, - 26;3;-0.672467,-1.528196,-0.828771;;, - 27;3;-0.672467,-1.528196,-0.828771;;, - 28;3;-0.672467,-1.528196,-0.828771;;, - 29;3;-0.672467,-1.528196,-0.828771;;, - 30;3;-0.672467,-1.528196,-0.828771;;, - 31;3;-0.672467,-1.528196,-0.828771;;, - 32;3;-0.672467,-1.528196,-0.828771;;, - 33;3;-0.672467,-1.528196,-0.828771;;, - 34;3;-0.672467,-1.528196,-0.828771;;, - 35;3;-0.672467,-1.528196,-0.828771;;, - 36;3;-0.672467,-1.528196,-0.828771;;, - 37;3;-0.672467,-1.528196,-0.828771;;, - 38;3;-0.672467,-1.528196,-0.828771;;, - 39;3;-0.672467,-1.528196,-0.828771;;, - 40;3;-0.672467,-1.528196,-0.828771;;, - 41;3;-0.672467,-1.528196,-0.828771;;, - 42;3;-0.672467,-1.528196,-0.828771;;, - 43;3;-0.672467,-1.528196,-0.828771;;, - 44;3;-0.672467,-1.528196,-0.828771;;, - 45;3;-0.672467,-1.528196,-0.828771;;, - 46;3;-0.672467,-1.528196,-0.828771;;, - 47;3;-0.672467,-1.528196,-0.828771;;, - 48;3;-0.672467,-1.528196,-0.828771;;, - 49;3;-0.672467,-1.528196,-0.828771;;, - 50;3;-0.672467,-1.528196,-0.828771;;, - 51;3;-0.672467,-1.528196,-0.828771;;, - 52;3;-0.672467,-1.528196,-0.828771;;, - 53;3;-0.672467,-1.528196,-0.828771;;, - 54;3;-0.672467,-1.528196,-0.828771;;, - 55;3;-0.672467,-1.528196,-0.828771;;, - 56;3;-0.672467,-1.528196,-0.828771;;, - 57;3;-0.672467,-1.528196,-0.828771;;, - 58;3;-0.672467,-1.528196,-0.828771;;, - 59;3;-0.672467,-1.528196,-0.828771;;, - 60;3;-0.672467,-1.528196,-0.828771;;, - 61;3;-0.672467,-1.528196,-0.828771;;, - 62;3;-0.672467,-1.528196,-0.828771;;, - 63;3;-0.672467,-1.528196,-0.828771;;, - 64;3;-0.672467,-1.528196,-0.828771;;, - 65;3;-0.672467,-1.528196,-0.828771;;, - 66;3;-0.672467,-1.528196,-0.828771;;, - 67;3;-0.672467,-1.528196,-0.828771;;, - 68;3;-0.672467,-1.528196,-0.828771;;, - 69;3;-0.672467,-1.528196,-0.828771;;, - 70;3;-0.672467,-1.528196,-0.828771;;, - 71;3;-0.672467,-1.528196,-0.828771;;, - 72;3;-0.672467,-1.528196,-0.828771;;, - 73;3;-0.672467,-1.528196,-0.828771;;, - 74;3;-0.672467,-1.528196,-0.828771;;, - 75;3;-0.672467,-1.528196,-0.828771;;, - 76;3;-0.672467,-1.528196,-0.828771;;, - 77;3;-0.672467,-1.528196,-0.828771;;, - 78;3;-0.672467,-1.528196,-0.828771;;, - 79;3;-0.672467,-1.528196,-0.828771;;, - 80;3;-0.672467,-1.528196,-0.828771;;, - 81;3;-0.672467,-1.528196,-0.828771;;, - 82;3;-0.672467,-1.528196,-0.828771;;, - 83;3;-0.672467,-1.528196,-0.828771;;, - 84;3;-0.672467,-1.528196,-0.828771;;, - 85;3;-0.672467,-1.528196,-0.828771;;, - 86;3;-0.672467,-1.528196,-0.828771;;, - 87;3;-0.672467,-1.528196,-0.828771;;, - 88;3;-0.672467,-1.528196,-0.828771;;, - 89;3;-0.672467,-1.528196,-0.828771;;, - 90;3;-0.672467,-1.528196,-0.828771;;, - 91;3;-0.672467,-1.528196,-0.828771;;, - 92;3;-0.672467,-1.528196,-0.828771;;, - 93;3;-0.672467,-1.528196,-0.828771;;, - 94;3;-0.672467,-1.528196,-0.828771;;, - 95;3;-0.672467,-1.528196,-0.828771;;, - 96;3;-0.672467,-1.528196,-0.828771;;, - 97;3;-0.672467,-1.528196,-0.828771;;, - 98;3;-0.672467,-1.528196,-0.828771;;, - 99;3;-0.672467,-1.528196,-0.828771;;, - 100;3;-0.672467,-1.528196,-0.828771;;, - 101;3;-0.672467,-1.528196,-0.828771;;, - 102;3;-0.672467,-1.528196,-0.828771;;, - 103;3;-0.672467,-1.528196,-0.828771;;, - 104;3;-0.672467,-1.528196,-0.828771;;, - 105;3;-0.672467,-1.528196,-0.828771;;, - 106;3;-0.672467,-1.528196,-0.828771;;, - 107;3;-0.672467,-1.528196,-0.828771;;, - 108;3;-0.672467,-1.528196,-0.828771;;, - 109;3;-0.672467,-1.528196,-0.828771;;, - 110;3;-0.672467,-1.528196,-0.828771;;, - 111;3;-0.672467,-1.528196,-0.828771;;, - 112;3;-0.672467,-1.528196,-0.828771;;, - 113;3;-0.672467,-1.528196,-0.828771;;, - 114;3;-0.672467,-1.528196,-0.828771;;, - 115;3;-0.672467,-1.528196,-0.828771;;, - 116;3;-0.672467,-1.528196,-0.828771;;, - 117;3;-0.672467,-1.528196,-0.828771;;, - 118;3;-0.672467,-1.528196,-0.828771;;, - 119;3;-0.672467,-1.528196,-0.828771;;, - 120;3;-0.672467,-1.528196,-0.828771;;, - 121;3;-0.672467,-1.528196,-0.828771;;, - 122;3;-0.672467,-1.528196,-0.828771;;, - 123;3;-0.672467,-1.528196,-0.828771;;, - 124;3;-0.672467,-1.528196,-0.828771;;, - 125;3;-0.672467,-1.528196,-0.828771;;, - 126;3;-0.672467,-1.528196,-0.828771;;, - 127;3;-0.672467,-1.528196,-0.828771;;, - 128;3;-0.672467,-1.528196,-0.828771;;, - 129;3;-0.672467,-1.528196,-0.828771;;, - 130;3;-0.672467,-1.528196,-0.828771;;, - 131;3;-0.672467,-1.528196,-0.828771;;, - 132;3;-0.672467,-1.528196,-0.828771;;, - 133;3;-0.672467,-1.528196,-0.828771;;, - 134;3;-0.672467,-1.528196,-0.828771;;, - 135;3;-0.672467,-1.528196,-0.828771;;, - 136;3;-0.672467,-1.528196,-0.828771;;, - 137;3;-0.672467,-1.528196,-0.828771;;, - 138;3;-0.672467,-1.528196,-0.828771;;, - 139;3;-0.672467,-1.528196,-0.828771;;, - 140;3;-0.672467,-1.528196,-0.828771;;, - 141;3;-0.672467,-1.528196,-0.828771;;, - 142;3;-0.672467,-1.528196,-0.828771;;, - 143;3;-0.672467,-1.528196,-0.828771;;, - 144;3;-0.672467,-1.528196,-0.828771;;, - 145;3;-0.672467,-1.528196,-0.828771;;, - 146;3;-0.672467,-1.528196,-0.828771;;, - 147;3;-0.672467,-1.528196,-0.828771;;, - 148;3;-0.672467,-1.528196,-0.828771;;, - 149;3;-0.672467,-1.528196,-0.828771;;, - 150;3;-0.672467,-1.528196,-0.828771;;, - 151;3;-0.672467,-1.528196,-0.828771;;, - 152;3;-0.672467,-1.528196,-0.828771;;, - 153;3;-0.672467,-1.528196,-0.828771;;, - 154;3;-0.672467,-1.528196,-0.828771;;, - 155;3;-0.672467,-1.528196,-0.828771;;, - 156;3;-0.672467,-1.528196,-0.828771;;, - 157;3;-0.672467,-1.528196,-0.828771;;, - 158;3;-0.672467,-1.528196,-0.828771;;, - 159;3;-0.672467,-1.528196,-0.828771;;, - 160;3;-0.672467,-1.528196,-0.828771;;, - 161;3;-0.672467,-1.528196,-0.828771;;, - 162;3;-0.672467,-1.528196,-0.828771;;, - 163;3;-0.672467,-1.528196,-0.828771;;, - 164;3;-0.672467,-1.528196,-0.828771;;, - 165;3;-0.672467,-1.528196,-0.828771;;, - 166;3;-0.672467,-1.528196,-0.828771;;, - 167;3;-0.672467,-1.528196,-0.828771;;, - 168;3;-0.672467,-1.528196,-0.828771;;, - 169;3;-0.672467,-1.528196,-0.828771;;, - 170;3;-0.672467,-1.528196,-0.828771;;, - 171;3;-0.672467,-1.528196,-0.828771;;, - 172;3;-0.672467,-1.528196,-0.828771;;, - 173;3;-0.672467,-1.528196,-0.828771;;, - 174;3;-0.672467,-1.528196,-0.828771;;, - 175;3;-0.672467,-1.528196,-0.828771;;, - 176;3;-0.672467,-1.528196,-0.828771;;, - 177;3;-0.672467,-1.528196,-0.828771;;, - 178;3;-0.672467,-1.528196,-0.828771;;, - 179;3;-0.672467,-1.528196,-0.828771;;, - 180;3;-0.672467,-1.528196,-0.828771;;, - 181;3;-0.672467,-1.528196,-0.828771;;, - 182;3;-0.672467,-1.528196,-0.828771;;, - 183;3;-0.672467,-1.528196,-0.828771;;, - 184;3;-0.672467,-1.528196,-0.828771;;, - 185;3;-0.672467,-1.528196,-0.828771;;, - 186;3;-0.672467,-1.528196,-0.828771;;, - 187;3;-0.672467,-1.528196,-0.828771;;, - 188;3;-0.672467,-1.528196,-0.828771;;, - 189;3;-0.672467,-1.528196,-0.828771;;, - 190;3;-0.672467,-1.528196,-0.828771;;, - 191;3;-0.672467,-1.528196,-0.828771;;, - 192;3;-0.672467,-1.528196,-0.828771;;, - 193;3;-0.672467,-1.528196,-0.828771;;, - 194;3;-0.672467,-1.528196,-0.828771;;, - 195;3;-0.672467,-1.528196,-0.828771;;, - 196;3;-0.672467,-1.528196,-0.828771;;, - 197;3;-0.672467,-1.528196,-0.828771;;, - 198;3;-0.672467,-1.528196,-0.828771;;, - 199;3;-0.672467,-1.528196,-0.828771;;, - 200;3;-0.672467,-1.528196,-0.828771;;, - 201;3;-0.672467,-1.528196,-0.828771;;, - 202;3;-0.672467,-1.528196,-0.828771;;, - 203;3;-0.672467,-1.528196,-0.828771;;, - 204;3;-0.672467,-1.528196,-0.828771;;, - 205;3;-0.672467,-1.528196,-0.828771;;, - 206;3;-0.672467,-1.528196,-0.828771;;, - 207;3;-0.672467,-1.528196,-0.828771;;, - 208;3;-0.672467,-1.528196,-0.828771;;, - 209;3;-0.672467,-1.528196,-0.828771;;, - 210;3;-0.672467,-1.528196,-0.828771;;, - 211;3;-0.672467,-1.528196,-0.828771;;, - 212;3;-0.672467,-1.528196,-0.828771;;, - 213;3;-0.672467,-1.528196,-0.828771;;, - 214;3;-0.672467,-1.528196,-0.828771;;, - 215;3;-0.672467,-1.528196,-0.828771;;, - 216;3;-0.672467,-1.528196,-0.828771;;, - 217;3;-0.672467,-1.528196,-0.828771;;, - 218;3;-0.672467,-1.528196,-0.828771;;, - 219;3;-0.672467,-1.528196,-0.828771;;, - 220;3;-0.672467,-1.528196,-0.828771;;, - 221;3;-0.672467,-1.528196,-0.828771;;, - 222;3;-0.672467,-1.528196,-0.828771;;, - 223;3;-0.672467,-1.528196,-0.828771;;, - 224;3;-0.672467,-1.528196,-0.828771;;, - 225;3;-0.672467,-1.528196,-0.828771;;, - 226;3;-0.672467,-1.528196,-0.828771;;, - 227;3;-0.672467,-1.528196,-0.828771;;, - 228;3;-0.672467,-1.528196,-0.828771;;, - 229;3;-0.672467,-1.528196,-0.828771;;, - 230;3;-0.672467,-1.528196,-0.828771;;, - 231;3;-0.672467,-1.528196,-0.828771;;, - 232;3;-0.672467,-1.528196,-0.828771;;, - 233;3;-0.672467,-1.528196,-0.828771;;, - 234;3;-0.672467,-1.528196,-0.828771;;, - 235;3;-0.672467,-1.528196,-0.828771;;, - 236;3;-0.672467,-1.528196,-0.828771;;, - 237;3;-0.672467,-1.528196,-0.828771;;, - 238;3;-0.672467,-1.528196,-0.828771;;, - 239;3;-0.672467,-1.528196,-0.828771;;, - 240;3;-0.672467,-1.528196,-0.828771;;, - 241;3;-0.672467,-1.528196,-0.828771;;, - 242;3;-0.672467,-1.528196,-0.828771;;, - 243;3;-0.672467,-1.528196,-0.828771;;, - 244;3;-0.672467,-1.528196,-0.828771;;, - 245;3;-0.672467,-1.528196,-0.828771;;, - 246;3;-0.672467,-1.528196,-0.828771;;, - 247;3;-0.672467,-1.528196,-0.828771;;, - 248;3;-0.672467,-1.528196,-0.828771;;, - 249;3;-0.672467,-1.528196,-0.828771;;; - } - } - Animation { - {Armature_Bone} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 1;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 2;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 3;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 4;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 5;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 6;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 7;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 8;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 9;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 10;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 11;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 12;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 13;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 14;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 15;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 16;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 17;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 18;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 19;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 20;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 21;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 22;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 23;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 24;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 25;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 26;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 27;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 28;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 29;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 30;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 31;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 32;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 33;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 34;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 35;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 36;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 37;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 38;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 39;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 40;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 41;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 42;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 43;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 44;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 45;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 46;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 47;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 48;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 49;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 50;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 51;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 52;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 53;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 54;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 55;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 56;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 57;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 58;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 59;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 60;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 61;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 62;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 63;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 64;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 65;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 66;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 67;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 68;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 69;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 70;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 71;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 72;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 73;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 74;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 75;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 76;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 77;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 78;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 79;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 80;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 81;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 82;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 83;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 84;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 85;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 86;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 87;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 88;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 89;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 90;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 91;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 92;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 93;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 94;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 95;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 96;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 97;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 98;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 99;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 100;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 101;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 102;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 103;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 104;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 105;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 106;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 107;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 108;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 109;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 110;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 111;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 112;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 113;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 114;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 115;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 116;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 117;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 118;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 119;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 120;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 121;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 122;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 123;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 124;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 125;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 126;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 127;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 128;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 129;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 130;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 131;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 132;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 133;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 134;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 135;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 136;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 137;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 138;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 139;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 140;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 141;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 142;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 143;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 144;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 145;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 146;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 147;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 148;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 149;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 150;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 151;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 152;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 153;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 154;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 155;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 156;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 157;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 158;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 159;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 160;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 161;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 162;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 163;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 164;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 165;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 166;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 167;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 168;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 169;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 170;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 171;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 172;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 173;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 174;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 175;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 176;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 177;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 178;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 179;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 180;4;-0.498303, 0.498304, 0.499305,-0.499305;;, - 181;4;-0.510060, 0.510060, 0.480538,-0.480538;;, - 182;4;-0.529175, 0.529175, 0.450023,-0.450023;;, - 183;4;-0.554177, 0.554177, 0.410112,-0.410111;;, - 184;4;-0.582500, 0.582501, 0.364898,-0.364898;;, - 185;4;-0.610824, 0.610824, 0.319685,-0.319685;;, - 186;4;-0.635826, 0.635826, 0.279773,-0.279773;;, - 187;4;-0.654941, 0.654941, 0.249259,-0.249258;;, - 188;4;-0.666697, 0.666698, 0.230492,-0.230491;;, - 189;4;-0.670604, 0.670604, 0.224256,-0.224255;;, - 190;4;-0.670604, 0.670604, 0.224256,-0.224255;;, - 191;4;-0.670604, 0.670604, 0.224256,-0.224255;;, - 192;4;-0.670604, 0.670604, 0.224256,-0.224255;;, - 193;4;-0.670604, 0.670604, 0.224256,-0.224255;;, - 194;4;-0.670604, 0.670604, 0.224256,-0.224255;;, - 195;4;-0.654941, 0.654941, 0.249259,-0.249258;;, - 196;4;-0.610824, 0.610824, 0.319685,-0.319685;;, - 197;4;-0.554177, 0.554177, 0.410112,-0.410111;;, - 198;4;-0.510060, 0.510060, 0.480538,-0.480538;;, - 199;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 200;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 201;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 202;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 203;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 204;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 205;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 206;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 207;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 208;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 209;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 210;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 211;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 212;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 213;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 214;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 215;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 216;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 217;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 218;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 219;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 220;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 221;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 222;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 223;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 224;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 225;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 226;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 227;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 228;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 229;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 230;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 231;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 232;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 233;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 234;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 235;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 236;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 237;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 238;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 239;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 240;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 241;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 242;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 243;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 244;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 245;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 246;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 247;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 248;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 249;4;-0.494397, 0.494397, 0.505541,-0.505541;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3; 0.506179, 1.550838, 1.183012;;, - 1;3; 0.506179, 1.550838, 1.183012;;, - 2;3; 0.506179, 1.550838, 1.183012;;, - 3;3; 0.506179, 1.550838, 1.183012;;, - 4;3; 0.506179, 1.550838, 1.183012;;, - 5;3; 0.506179, 1.550838, 1.183012;;, - 6;3; 0.506179, 1.550838, 1.183012;;, - 7;3; 0.506179, 1.550838, 1.183012;;, - 8;3; 0.506179, 1.550838, 1.183012;;, - 9;3; 0.506179, 1.550838, 1.183012;;, - 10;3; 0.506179, 1.550838, 1.183012;;, - 11;3; 0.506179, 1.550838, 1.183012;;, - 12;3; 0.506179, 1.550838, 1.183012;;, - 13;3; 0.506179, 1.550838, 1.183012;;, - 14;3; 0.506179, 1.550838, 1.183012;;, - 15;3; 0.506179, 1.550838, 1.183012;;, - 16;3; 0.506179, 1.550838, 1.183012;;, - 17;3; 0.506179, 1.550838, 1.183012;;, - 18;3; 0.506179, 1.550838, 1.183012;;, - 19;3; 0.506179, 1.550838, 1.183012;;, - 20;3; 0.506179, 1.550838, 1.183012;;, - 21;3; 0.506179, 1.550838, 1.183012;;, - 22;3; 0.506179, 1.550838, 1.183012;;, - 23;3; 0.506179, 1.550838, 1.183012;;, - 24;3; 0.506179, 1.550838, 1.183012;;, - 25;3; 0.506179, 1.550838, 1.183012;;, - 26;3; 0.506179, 1.550838, 1.183012;;, - 27;3; 0.506179, 1.550838, 1.183012;;, - 28;3; 0.506179, 1.550838, 1.183012;;, - 29;3; 0.506179, 1.550838, 1.183012;;, - 30;3; 0.506179, 1.550838, 1.183012;;, - 31;3; 0.506179, 1.550838, 1.183012;;, - 32;3; 0.506179, 1.550838, 1.183012;;, - 33;3; 0.506179, 1.550838, 1.183012;;, - 34;3; 0.506179, 1.550838, 1.183012;;, - 35;3; 0.506179, 1.550838, 1.183012;;, - 36;3; 0.506179, 1.550838, 1.183012;;, - 37;3; 0.506179, 1.550838, 1.183012;;, - 38;3; 0.506179, 1.550838, 1.183012;;, - 39;3; 0.506179, 1.550838, 1.183012;;, - 40;3; 0.506179, 1.550838, 1.183012;;, - 41;3; 0.506179, 1.550838, 1.183012;;, - 42;3; 0.506179, 1.550838, 1.183012;;, - 43;3; 0.506179, 1.550838, 1.183012;;, - 44;3; 0.506179, 1.550838, 1.183012;;, - 45;3; 0.506179, 1.550838, 1.183012;;, - 46;3; 0.506179, 1.550838, 1.183012;;, - 47;3; 0.506179, 1.550838, 1.183012;;, - 48;3; 0.506179, 1.550838, 1.183012;;, - 49;3; 0.506179, 1.550838, 1.183012;;, - 50;3; 0.506179, 1.550838, 1.183012;;, - 51;3; 0.506179, 1.550838, 1.183012;;, - 52;3; 0.506179, 1.550838, 1.183012;;, - 53;3; 0.506179, 1.550838, 1.183012;;, - 54;3; 0.506179, 1.550838, 1.183012;;, - 55;3; 0.506179, 1.550838, 1.183012;;, - 56;3; 0.506179, 1.550838, 1.183012;;, - 57;3; 0.506179, 1.550838, 1.183012;;, - 58;3; 0.506179, 1.550838, 1.183012;;, - 59;3; 0.506179, 1.550838, 1.183012;;, - 60;3; 0.506179, 1.550838, 1.183012;;, - 61;3; 0.506179, 1.550838, 1.183012;;, - 62;3; 0.506179, 1.550838, 1.183012;;, - 63;3; 0.506179, 1.550838, 1.183012;;, - 64;3; 0.506179, 1.550838, 1.183012;;, - 65;3; 0.506179, 1.550838, 1.183012;;, - 66;3; 0.506179, 1.550838, 1.183012;;, - 67;3; 0.506179, 1.550838, 1.183012;;, - 68;3; 0.506179, 1.550838, 1.183012;;, - 69;3; 0.506179, 1.550838, 1.183012;;, - 70;3; 0.506179, 1.550838, 1.183012;;, - 71;3; 0.506179, 1.550838, 1.183012;;, - 72;3; 0.506179, 1.550838, 1.183012;;, - 73;3; 0.506179, 1.550838, 1.183012;;, - 74;3; 0.506179, 1.550838, 1.183012;;, - 75;3; 0.506179, 1.550838, 1.183012;;, - 76;3; 0.506179, 1.550838, 1.183012;;, - 77;3; 0.506179, 1.550838, 1.183012;;, - 78;3; 0.506179, 1.550838, 1.183012;;, - 79;3; 0.506179, 1.550838, 1.183012;;, - 80;3; 0.506179, 1.550838, 1.183012;;, - 81;3; 0.506179, 1.550838, 1.183012;;, - 82;3; 0.506179, 1.550838, 1.183012;;, - 83;3; 0.506179, 1.550838, 1.183012;;, - 84;3; 0.506179, 1.550838, 1.183012;;, - 85;3; 0.506179, 1.550838, 1.183012;;, - 86;3; 0.506179, 1.550838, 1.183012;;, - 87;3; 0.506179, 1.550838, 1.183012;;, - 88;3; 0.506179, 1.550838, 1.183012;;, - 89;3; 0.506179, 1.550838, 1.183012;;, - 90;3; 0.506179, 1.550838, 1.183012;;, - 91;3; 0.506179, 1.550838, 1.183012;;, - 92;3; 0.506179, 1.550838, 1.183012;;, - 93;3; 0.506179, 1.550838, 1.183012;;, - 94;3; 0.506179, 1.550838, 1.183012;;, - 95;3; 0.506179, 1.550838, 1.183012;;, - 96;3; 0.506179, 1.550838, 1.183012;;, - 97;3; 0.506179, 1.550838, 1.183012;;, - 98;3; 0.506179, 1.550838, 1.183012;;, - 99;3; 0.506179, 1.550838, 1.183012;;, - 100;3; 0.506179, 1.550838, 1.183012;;, - 101;3; 0.506179, 1.550838, 1.183012;;, - 102;3; 0.506179, 1.550838, 1.183012;;, - 103;3; 0.506179, 1.550838, 1.183012;;, - 104;3; 0.506179, 1.550838, 1.183012;;, - 105;3; 0.506179, 1.550838, 1.183012;;, - 106;3; 0.506179, 1.550838, 1.183012;;, - 107;3; 0.506179, 1.550838, 1.183012;;, - 108;3; 0.506179, 1.550838, 1.183012;;, - 109;3; 0.506179, 1.550838, 1.183012;;, - 110;3; 0.506179, 1.550838, 1.183012;;, - 111;3; 0.506179, 1.550838, 1.183012;;, - 112;3; 0.506179, 1.550838, 1.183012;;, - 113;3; 0.506179, 1.550838, 1.183012;;, - 114;3; 0.506179, 1.550838, 1.183012;;, - 115;3; 0.506179, 1.550838, 1.183012;;, - 116;3; 0.506179, 1.550838, 1.183012;;, - 117;3; 0.506179, 1.550838, 1.183012;;, - 118;3; 0.506179, 1.550838, 1.183012;;, - 119;3; 0.506179, 1.550838, 1.183012;;, - 120;3; 0.506179, 1.550838, 1.183012;;, - 121;3; 0.506179, 1.550838, 1.183012;;, - 122;3; 0.506179, 1.550838, 1.183012;;, - 123;3; 0.506179, 1.550838, 1.183012;;, - 124;3; 0.506179, 1.550838, 1.183012;;, - 125;3; 0.506179, 1.550838, 1.183012;;, - 126;3; 0.506179, 1.550838, 1.183012;;, - 127;3; 0.506179, 1.550838, 1.183012;;, - 128;3; 0.506179, 1.550838, 1.183012;;, - 129;3; 0.506179, 1.550838, 1.183012;;, - 130;3; 0.506179, 1.550838, 1.183012;;, - 131;3; 0.506179, 1.550838, 1.183012;;, - 132;3; 0.506179, 1.550838, 1.183012;;, - 133;3; 0.506179, 1.550838, 1.183012;;, - 134;3; 0.506179, 1.550838, 1.183012;;, - 135;3; 0.506179, 1.550838, 1.183012;;, - 136;3; 0.506179, 1.550838, 1.183012;;, - 137;3; 0.506179, 1.550838, 1.183012;;, - 138;3; 0.506179, 1.550838, 1.183012;;, - 139;3; 0.506179, 1.550838, 1.183012;;, - 140;3; 0.506179, 1.550838, 1.183012;;, - 141;3; 0.506179, 1.550838, 1.183012;;, - 142;3; 0.506179, 1.550838, 1.183012;;, - 143;3; 0.506179, 1.550838, 1.183012;;, - 144;3; 0.506179, 1.550838, 1.183012;;, - 145;3; 0.506179, 1.550838, 1.183012;;, - 146;3; 0.506179, 1.550838, 1.183012;;, - 147;3; 0.506179, 1.550838, 1.183012;;, - 148;3; 0.506179, 1.550838, 1.183012;;, - 149;3; 0.506179, 1.550838, 1.183012;;, - 150;3; 0.506179, 1.550838, 1.183012;;, - 151;3; 0.506179, 1.550838, 1.183012;;, - 152;3; 0.506179, 1.550838, 1.183012;;, - 153;3; 0.506179, 1.550838, 1.183012;;, - 154;3; 0.506179, 1.550838, 1.183012;;, - 155;3; 0.506179, 1.550838, 1.183012;;, - 156;3; 0.506179, 1.550838, 1.183012;;, - 157;3; 0.506179, 1.550838, 1.183012;;, - 158;3; 0.506179, 1.550838, 1.183012;;, - 159;3; 0.506179, 1.550838, 1.183012;;, - 160;3; 0.506179, 1.550838, 1.183012;;, - 161;3; 0.506179, 1.550838, 1.183012;;, - 162;3; 0.506179, 1.550838, 1.183012;;, - 163;3; 0.506179, 1.550838, 1.183012;;, - 164;3; 0.506179, 1.550838, 1.183012;;, - 165;3; 0.506179, 1.550838, 1.183012;;, - 166;3; 0.506179, 1.550838, 1.183012;;, - 167;3; 0.506179, 1.550838, 1.183012;;, - 168;3; 0.506179, 1.550838, 1.183012;;, - 169;3; 0.506179, 1.550838, 1.183012;;, - 170;3; 0.506179, 1.550838, 1.183012;;, - 171;3; 0.506179, 1.550838, 1.183012;;, - 172;3; 0.506179, 1.550838, 1.183012;;, - 173;3; 0.506179, 1.550838, 1.183012;;, - 174;3; 0.506179, 1.550838, 1.183012;;, - 175;3; 0.506179, 1.550838, 1.183012;;, - 176;3; 0.506179, 1.550838, 1.183012;;, - 177;3; 0.506179, 1.550838, 1.183012;;, - 178;3; 0.506179, 1.550838, 1.183012;;, - 179;3; 0.506179, 1.550838, 1.183012;;, - 180;3; 0.534224, 1.550838, 1.200614;;, - 181;3; 0.618629, 1.550838, 1.253590;;, - 182;3; 0.755866, 1.550838, 1.339727;;, - 183;3; 0.935366, 1.550838, 1.452389;;, - 184;3; 1.138711, 1.550838, 1.580017;;, - 185;3; 1.342055, 1.550838, 1.707644;;, - 186;3; 1.521555, 1.550838, 1.820307;;, - 187;3; 1.658792, 1.550838, 1.906443;;, - 188;3; 1.743197, 1.550838, 1.959419;;, - 189;3; 1.771243, 1.550838, 1.977021;;, - 190;3; 1.771243, 1.550838, 1.977021;;, - 191;3; 1.771243, 1.550838, 1.977021;;, - 192;3; 1.771243, 1.550838, 1.977021;;, - 193;3; 1.771243, 1.550838, 1.977021;;, - 194;3; 1.771243, 1.550838, 1.977021;;, - 195;3; 1.658792, 1.550838, 1.906443;;, - 196;3; 1.342055, 1.550838, 1.707644;;, - 197;3; 0.935367, 1.550838, 1.452389;;, - 198;3; 0.618629, 1.550838, 1.253590;;, - 199;3; 0.506179, 1.550838, 1.183012;;, - 200;3; 0.506179, 1.550838, 1.183012;;, - 201;3; 0.506179, 1.550838, 1.183012;;, - 202;3; 0.506179, 1.550838, 1.183012;;, - 203;3; 0.506179, 1.550838, 1.183012;;, - 204;3; 0.506179, 1.550838, 1.183012;;, - 205;3; 0.506179, 1.550838, 1.183012;;, - 206;3; 0.506179, 1.550838, 1.183012;;, - 207;3; 0.506179, 1.550838, 1.183012;;, - 208;3; 0.506179, 1.550838, 1.183012;;, - 209;3; 0.506179, 1.550838, 1.183012;;, - 210;3; 0.506179, 1.550838, 1.183012;;, - 211;3; 0.506179, 1.550838, 1.183012;;, - 212;3; 0.506179, 1.550838, 1.183012;;, - 213;3; 0.506179, 1.550838, 1.183012;;, - 214;3; 0.506179, 1.550838, 1.183012;;, - 215;3; 0.506179, 1.550838, 1.183012;;, - 216;3; 0.506179, 1.550838, 1.183012;;, - 217;3; 0.506179, 1.550838, 1.183012;;, - 218;3; 0.506179, 1.550838, 1.183012;;, - 219;3; 0.506179, 1.550838, 1.183012;;, - 220;3; 0.506179, 1.550838, 1.183012;;, - 221;3; 0.506179, 1.550838, 1.183012;;, - 222;3; 0.506179, 1.550838, 1.183012;;, - 223;3; 0.506179, 1.550838, 1.183012;;, - 224;3; 0.506179, 1.550838, 1.183012;;, - 225;3; 0.506179, 1.550838, 1.183012;;, - 226;3; 0.506179, 1.550838, 1.183012;;, - 227;3; 0.506179, 1.550838, 1.183012;;, - 228;3; 0.506179, 1.550838, 1.183012;;, - 229;3; 0.506179, 1.550838, 1.183012;;, - 230;3; 0.506179, 1.550838, 1.183012;;, - 231;3; 0.506179, 1.550838, 1.183012;;, - 232;3; 0.506179, 1.550838, 1.183012;;, - 233;3; 0.506179, 1.550838, 1.183012;;, - 234;3; 0.506179, 1.550838, 1.183012;;, - 235;3; 0.506179, 1.550838, 1.183012;;, - 236;3; 0.506179, 1.550838, 1.183012;;, - 237;3; 0.506179, 1.550838, 1.183012;;, - 238;3; 0.506179, 1.550838, 1.183012;;, - 239;3; 0.506179, 1.550838, 1.183012;;, - 240;3; 0.506179, 1.550838, 1.183012;;, - 241;3; 0.506179, 1.550838, 1.183012;;, - 242;3; 0.506179, 1.550838, 1.183012;;, - 243;3; 0.506179, 1.550838, 1.183012;;, - 244;3; 0.506179, 1.550838, 1.183012;;, - 245;3; 0.506179, 1.550838, 1.183012;;, - 246;3; 0.506179, 1.550838, 1.183012;;, - 247;3; 0.506179, 1.550838, 1.183012;;, - 248;3; 0.506179, 1.550838, 1.183012;;, - 249;3; 0.506179, 1.550838, 1.183012;;; - } - } - Animation { - {Armature_Bone_002} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 1;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 2;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 3;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 4;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 5;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 6;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 7;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 8;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 9;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 10;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 11;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 12;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 13;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 14;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 15;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 16;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 17;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 18;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 19;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 20;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 21;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 22;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 23;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 24;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 25;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 26;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 27;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 28;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 29;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 30;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 31;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 32;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 33;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 34;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 35;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 36;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 37;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 38;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 39;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 40;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 41;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 42;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 43;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 44;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 45;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 46;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 47;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 48;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 49;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 50;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 51;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 52;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 53;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 54;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 55;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 56;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 57;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 58;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 59;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 60;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 61;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 62;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 63;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 64;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 65;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 66;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 67;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 68;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 69;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 70;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 71;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 72;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 73;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 74;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 75;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 76;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 77;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 78;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 79;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 80;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 81;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 82;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 83;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 84;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 85;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 86;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 87;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 88;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 89;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 90;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 91;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 92;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 93;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 94;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 95;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 96;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 97;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 98;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 99;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 100;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 101;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 102;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 103;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 104;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 105;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 106;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 107;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 108;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 109;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 110;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 111;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 112;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 113;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 114;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 115;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 116;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 117;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 118;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 119;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 120;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 121;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 122;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 123;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 124;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 125;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 126;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 127;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 128;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 129;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 130;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 131;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 132;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 133;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 134;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 135;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 136;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 137;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 138;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 139;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 140;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 141;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 142;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 143;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 144;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 145;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 146;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 147;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 148;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 149;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 150;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 151;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 152;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 153;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 154;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 155;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 156;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 157;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 158;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 159;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 160;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 161;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 162;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 163;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 164;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 165;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 166;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 167;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 168;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 169;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 170;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 171;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 172;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 173;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 174;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 175;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 176;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 177;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 178;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 179;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 180;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 181;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 182;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 183;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 184;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 185;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 186;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 187;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 188;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 189;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 190;4;-0.702411,-0.016559,-0.702412,-0.016559;;, - 191;4;-0.689311,-0.085395,-0.689311,-0.085395;;, - 192;4;-0.672490,-0.173780,-0.672490,-0.173780;;, - 193;4;-0.659389,-0.242616,-0.659389,-0.242616;;, - 194;4;-0.654738,-0.267054,-0.654738,-0.267055;;, - 195;4;-0.659389,-0.242616,-0.659389,-0.242616;;, - 196;4;-0.672490,-0.173780,-0.672490,-0.173780;;, - 197;4;-0.689311,-0.085395,-0.689311,-0.085395;;, - 198;4;-0.702411,-0.016559,-0.702412,-0.016559;;, - 199;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 200;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 201;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 202;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 203;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 204;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 205;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 206;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 207;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 208;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 209;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 210;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 211;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 212;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 213;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 214;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 215;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 216;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 217;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 218;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 219;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 220;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 221;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 222;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 223;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 224;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 225;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 226;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 227;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 228;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 229;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 230;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 231;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 232;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 233;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 234;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 235;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 236;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 237;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 238;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 239;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 240;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 241;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 242;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 243;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 244;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 245;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 246;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 247;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 248;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 249;4;-0.707063, 0.007880,-0.707063, 0.007880;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3; 0.000000, 0.344354,-0.000000;;, - 1;3; 0.000000, 0.344354,-0.000000;;, - 2;3; 0.000000, 0.344354,-0.000000;;, - 3;3; 0.000000, 0.344354,-0.000000;;, - 4;3; 0.000000, 0.344354,-0.000000;;, - 5;3; 0.000000, 0.344354,-0.000000;;, - 6;3; 0.000000, 0.344354,-0.000000;;, - 7;3; 0.000000, 0.344354,-0.000000;;, - 8;3; 0.000000, 0.344354,-0.000000;;, - 9;3; 0.000000, 0.344354,-0.000000;;, - 10;3; 0.000000, 0.344354,-0.000000;;, - 11;3; 0.000000, 0.344354,-0.000000;;, - 12;3; 0.000000, 0.344354,-0.000000;;, - 13;3; 0.000000, 0.344354,-0.000000;;, - 14;3; 0.000000, 0.344354,-0.000000;;, - 15;3; 0.000000, 0.344354,-0.000000;;, - 16;3; 0.000000, 0.344354,-0.000000;;, - 17;3; 0.000000, 0.344354,-0.000000;;, - 18;3; 0.000000, 0.344354,-0.000000;;, - 19;3; 0.000000, 0.344354,-0.000000;;, - 20;3; 0.000000, 0.344354,-0.000000;;, - 21;3; 0.000000, 0.344354,-0.000000;;, - 22;3; 0.000000, 0.344354,-0.000000;;, - 23;3; 0.000000, 0.344354,-0.000000;;, - 24;3; 0.000000, 0.344354,-0.000000;;, - 25;3; 0.000000, 0.344354,-0.000000;;, - 26;3; 0.000000, 0.344354,-0.000000;;, - 27;3; 0.000000, 0.344354,-0.000000;;, - 28;3; 0.000000, 0.344354,-0.000000;;, - 29;3; 0.000000, 0.344354,-0.000000;;, - 30;3; 0.000000, 0.344354,-0.000000;;, - 31;3; 0.000000, 0.344354,-0.000000;;, - 32;3; 0.000000, 0.344354,-0.000000;;, - 33;3; 0.000000, 0.344354,-0.000000;;, - 34;3; 0.000000, 0.344354,-0.000000;;, - 35;3; 0.000000, 0.344354,-0.000000;;, - 36;3; 0.000000, 0.344354,-0.000000;;, - 37;3; 0.000000, 0.344354,-0.000000;;, - 38;3; 0.000000, 0.344354,-0.000000;;, - 39;3; 0.000000, 0.344354,-0.000000;;, - 40;3; 0.000000, 0.344354,-0.000000;;, - 41;3; 0.000000, 0.344354,-0.000000;;, - 42;3; 0.000000, 0.344354,-0.000000;;, - 43;3; 0.000000, 0.344354,-0.000000;;, - 44;3; 0.000000, 0.344354,-0.000000;;, - 45;3; 0.000000, 0.344354,-0.000000;;, - 46;3; 0.000000, 0.344354,-0.000000;;, - 47;3; 0.000000, 0.344354,-0.000000;;, - 48;3; 0.000000, 0.344354,-0.000000;;, - 49;3; 0.000000, 0.344354,-0.000000;;, - 50;3; 0.000000, 0.344354,-0.000000;;, - 51;3; 0.000000, 0.344354,-0.000000;;, - 52;3; 0.000000, 0.344354,-0.000000;;, - 53;3; 0.000000, 0.344354,-0.000000;;, - 54;3; 0.000000, 0.344354,-0.000000;;, - 55;3; 0.000000, 0.344354,-0.000000;;, - 56;3; 0.000000, 0.344354,-0.000000;;, - 57;3; 0.000000, 0.344354,-0.000000;;, - 58;3; 0.000000, 0.344354,-0.000000;;, - 59;3; 0.000000, 0.344354,-0.000000;;, - 60;3; 0.000000, 0.344354,-0.000000;;, - 61;3; 0.000000, 0.344354,-0.000000;;, - 62;3; 0.000000, 0.344354,-0.000000;;, - 63;3; 0.000000, 0.344354,-0.000000;;, - 64;3; 0.000000, 0.344354,-0.000000;;, - 65;3; 0.000000, 0.344354,-0.000000;;, - 66;3; 0.000000, 0.344354,-0.000000;;, - 67;3; 0.000000, 0.344354,-0.000000;;, - 68;3; 0.000000, 0.344354,-0.000000;;, - 69;3; 0.000000, 0.344354,-0.000000;;, - 70;3; 0.000000, 0.344354,-0.000000;;, - 71;3; 0.000000, 0.344354,-0.000000;;, - 72;3; 0.000000, 0.344354,-0.000000;;, - 73;3; 0.000000, 0.344354,-0.000000;;, - 74;3; 0.000000, 0.344354,-0.000000;;, - 75;3; 0.000000, 0.344354,-0.000000;;, - 76;3; 0.000000, 0.344354,-0.000000;;, - 77;3; 0.000000, 0.344354,-0.000000;;, - 78;3; 0.000000, 0.344354,-0.000000;;, - 79;3; 0.000000, 0.344354,-0.000000;;, - 80;3; 0.000000, 0.344354,-0.000000;;, - 81;3; 0.000000, 0.344354,-0.000000;;, - 82;3; 0.000000, 0.344354,-0.000000;;, - 83;3; 0.000000, 0.344354,-0.000000;;, - 84;3; 0.000000, 0.344354,-0.000000;;, - 85;3; 0.000000, 0.344354,-0.000000;;, - 86;3; 0.000000, 0.344354,-0.000000;;, - 87;3; 0.000000, 0.344354,-0.000000;;, - 88;3; 0.000000, 0.344354,-0.000000;;, - 89;3; 0.000000, 0.344354,-0.000000;;, - 90;3; 0.000000, 0.344354,-0.000000;;, - 91;3; 0.000000, 0.344354,-0.000000;;, - 92;3; 0.000000, 0.344354,-0.000000;;, - 93;3; 0.000000, 0.344354,-0.000000;;, - 94;3; 0.000000, 0.344354,-0.000000;;, - 95;3; 0.000000, 0.344354,-0.000000;;, - 96;3; 0.000000, 0.344354,-0.000000;;, - 97;3; 0.000000, 0.344354,-0.000000;;, - 98;3; 0.000000, 0.344354,-0.000000;;, - 99;3; 0.000000, 0.344354,-0.000000;;, - 100;3; 0.000000, 0.344354,-0.000000;;, - 101;3; 0.000000, 0.344354,-0.000000;;, - 102;3; 0.000000, 0.344354,-0.000000;;, - 103;3; 0.000000, 0.344354,-0.000000;;, - 104;3; 0.000000, 0.344354,-0.000000;;, - 105;3; 0.000000, 0.344354,-0.000000;;, - 106;3; 0.000000, 0.344354,-0.000000;;, - 107;3; 0.000000, 0.344354,-0.000000;;, - 108;3; 0.000000, 0.344354,-0.000000;;, - 109;3; 0.000000, 0.344354,-0.000000;;, - 110;3; 0.000000, 0.344354,-0.000000;;, - 111;3; 0.000000, 0.344354,-0.000000;;, - 112;3; 0.000000, 0.344354,-0.000000;;, - 113;3; 0.000000, 0.344354,-0.000000;;, - 114;3; 0.000000, 0.344354,-0.000000;;, - 115;3; 0.000000, 0.344354,-0.000000;;, - 116;3; 0.000000, 0.344354,-0.000000;;, - 117;3; 0.000000, 0.344354,-0.000000;;, - 118;3; 0.000000, 0.344354,-0.000000;;, - 119;3; 0.000000, 0.344354,-0.000000;;, - 120;3; 0.000000, 0.344354,-0.000000;;, - 121;3; 0.000000, 0.344354,-0.000000;;, - 122;3; 0.000000, 0.344354,-0.000000;;, - 123;3; 0.000000, 0.344354,-0.000000;;, - 124;3; 0.000000, 0.344354,-0.000000;;, - 125;3; 0.000000, 0.344354,-0.000000;;, - 126;3; 0.000000, 0.344354,-0.000000;;, - 127;3; 0.000000, 0.344354,-0.000000;;, - 128;3; 0.000000, 0.344354,-0.000000;;, - 129;3; 0.000000, 0.344354,-0.000000;;, - 130;3; 0.000000, 0.344354,-0.000000;;, - 131;3; 0.000000, 0.344354,-0.000000;;, - 132;3; 0.000000, 0.344354,-0.000000;;, - 133;3; 0.000000, 0.344354,-0.000000;;, - 134;3; 0.000000, 0.344354,-0.000000;;, - 135;3; 0.000000, 0.344354,-0.000000;;, - 136;3; 0.000000, 0.344354,-0.000000;;, - 137;3; 0.000000, 0.344354,-0.000000;;, - 138;3; 0.000000, 0.344354,-0.000000;;, - 139;3; 0.000000, 0.344354,-0.000000;;, - 140;3; 0.000000, 0.344354,-0.000000;;, - 141;3; 0.000000, 0.344354,-0.000000;;, - 142;3; 0.000000, 0.344354,-0.000000;;, - 143;3; 0.000000, 0.344354,-0.000000;;, - 144;3; 0.000000, 0.344354,-0.000000;;, - 145;3; 0.000000, 0.344354,-0.000000;;, - 146;3; 0.000000, 0.344354,-0.000000;;, - 147;3; 0.000000, 0.344354,-0.000000;;, - 148;3; 0.000000, 0.344354,-0.000000;;, - 149;3; 0.000000, 0.344354,-0.000000;;, - 150;3; 0.000000, 0.344354,-0.000000;;, - 151;3; 0.000000, 0.344354,-0.000000;;, - 152;3; 0.000000, 0.344354,-0.000000;;, - 153;3; 0.000000, 0.344354,-0.000000;;, - 154;3; 0.000000, 0.344354,-0.000000;;, - 155;3; 0.000000, 0.344354,-0.000000;;, - 156;3; 0.000000, 0.344354,-0.000000;;, - 157;3; 0.000000, 0.344354,-0.000000;;, - 158;3; 0.000000, 0.344354,-0.000000;;, - 159;3; 0.000000, 0.344354,-0.000000;;, - 160;3; 0.000000, 0.344354,-0.000000;;, - 161;3; 0.000000, 0.344354,-0.000000;;, - 162;3; 0.000000, 0.344354,-0.000000;;, - 163;3; 0.000000, 0.344354,-0.000000;;, - 164;3; 0.000000, 0.344354,-0.000000;;, - 165;3; 0.000000, 0.344354,-0.000000;;, - 166;3; 0.000000, 0.344354,-0.000000;;, - 167;3; 0.000000, 0.344354,-0.000000;;, - 168;3; 0.000000, 0.344354,-0.000000;;, - 169;3; 0.000000, 0.344354,-0.000000;;, - 170;3; 0.000000, 0.344354,-0.000000;;, - 171;3; 0.000000, 0.344354,-0.000000;;, - 172;3; 0.000000, 0.344354,-0.000000;;, - 173;3; 0.000000, 0.344354,-0.000000;;, - 174;3; 0.000000, 0.344354,-0.000000;;, - 175;3; 0.000000, 0.344354,-0.000000;;, - 176;3; 0.000000, 0.344354,-0.000000;;, - 177;3; 0.000000, 0.344354,-0.000000;;, - 178;3; 0.000000, 0.344354,-0.000000;;, - 179;3; 0.000000, 0.344354,-0.000000;;, - 180;3;-0.000000, 0.344354, 0.000000;;, - 181;3;-0.000000, 0.344354, 0.000000;;, - 182;3;-0.000000, 0.344354,-0.000000;;, - 183;3; 0.000000, 0.344354, 0.000000;;, - 184;3;-0.000000, 0.344355,-0.000000;;, - 185;3; 0.000000, 0.344354, 0.000000;;, - 186;3;-0.000000, 0.344355,-0.000000;;, - 187;3; 0.000000, 0.344354,-0.000000;;, - 188;3;-0.000000, 0.344354,-0.000000;;, - 189;3;-0.000000, 0.344355, 0.000000;;, - 190;3;-0.000000, 0.344355, 0.000000;;, - 191;3;-0.000000, 0.344355, 0.000000;;, - 192;3;-0.000000, 0.344355, 0.000000;;, - 193;3;-0.000000, 0.344355, 0.000000;;, - 194;3;-0.000000, 0.344355, 0.000000;;, - 195;3; 0.000000, 0.344354,-0.000000;;, - 196;3; 0.000000, 0.344355, 0.000000;;, - 197;3; 0.000000, 0.344354, 0.000000;;, - 198;3;-0.000000, 0.344354, 0.000000;;, - 199;3; 0.000000, 0.344354,-0.000000;;, - 200;3; 0.000000, 0.344354,-0.000000;;, - 201;3; 0.000000, 0.344354,-0.000000;;, - 202;3; 0.000000, 0.344354,-0.000000;;, - 203;3; 0.000000, 0.344354,-0.000000;;, - 204;3; 0.000000, 0.344354,-0.000000;;, - 205;3; 0.000000, 0.344354,-0.000000;;, - 206;3; 0.000000, 0.344354,-0.000000;;, - 207;3; 0.000000, 0.344354,-0.000000;;, - 208;3; 0.000000, 0.344354,-0.000000;;, - 209;3; 0.000000, 0.344354,-0.000000;;, - 210;3; 0.000000, 0.344354,-0.000000;;, - 211;3; 0.000000, 0.344354,-0.000000;;, - 212;3; 0.000000, 0.344354,-0.000000;;, - 213;3; 0.000000, 0.344354,-0.000000;;, - 214;3; 0.000000, 0.344354,-0.000000;;, - 215;3; 0.000000, 0.344354,-0.000000;;, - 216;3; 0.000000, 0.344354,-0.000000;;, - 217;3; 0.000000, 0.344354,-0.000000;;, - 218;3; 0.000000, 0.344354,-0.000000;;, - 219;3; 0.000000, 0.344354,-0.000000;;, - 220;3; 0.000000, 0.344354,-0.000000;;, - 221;3; 0.000000, 0.344354,-0.000000;;, - 222;3; 0.000000, 0.344354,-0.000000;;, - 223;3; 0.000000, 0.344354,-0.000000;;, - 224;3; 0.000000, 0.344354,-0.000000;;, - 225;3; 0.000000, 0.344354,-0.000000;;, - 226;3; 0.000000, 0.344354,-0.000000;;, - 227;3; 0.000000, 0.344354,-0.000000;;, - 228;3; 0.000000, 0.344354,-0.000000;;, - 229;3; 0.000000, 0.344354,-0.000000;;, - 230;3; 0.000000, 0.344354,-0.000000;;, - 231;3; 0.000000, 0.344354,-0.000000;;, - 232;3; 0.000000, 0.344354,-0.000000;;, - 233;3; 0.000000, 0.344354,-0.000000;;, - 234;3; 0.000000, 0.344354,-0.000000;;, - 235;3; 0.000000, 0.344354,-0.000000;;, - 236;3; 0.000000, 0.344354,-0.000000;;, - 237;3; 0.000000, 0.344354,-0.000000;;, - 238;3; 0.000000, 0.344354,-0.000000;;, - 239;3; 0.000000, 0.344354,-0.000000;;, - 240;3; 0.000000, 0.344354,-0.000000;;, - 241;3; 0.000000, 0.344354,-0.000000;;, - 242;3; 0.000000, 0.344354,-0.000000;;, - 243;3; 0.000000, 0.344354,-0.000000;;, - 244;3; 0.000000, 0.344354,-0.000000;;, - 245;3; 0.000000, 0.344354,-0.000000;;, - 246;3; 0.000000, 0.344354,-0.000000;;, - 247;3; 0.000000, 0.344354,-0.000000;;, - 248;3; 0.000000, 0.344354,-0.000000;;, - 249;3; 0.000000, 0.344354,-0.000000;;; - } - } - Animation { - {Armature_Bone_003} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 1;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 2;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 3;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 4;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 5;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 6;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 7;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 8;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 9;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 10;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 11;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 12;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 13;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 14;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 15;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 16;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 17;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 18;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 19;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 20;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 21;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 22;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 23;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 24;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 25;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 26;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 27;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 28;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 29;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 30;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 31;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 32;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 33;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 34;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 35;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 36;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 37;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 38;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 39;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 40;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 41;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 42;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 43;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 44;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 45;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 46;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 47;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 48;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 49;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 50;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 51;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 52;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 53;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 54;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 55;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 56;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 57;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 58;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 59;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 60;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 61;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 62;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 63;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 64;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 65;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 66;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 67;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 68;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 69;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 70;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 71;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 72;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 73;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 74;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 75;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 76;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 77;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 78;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 79;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 80;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 81;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 82;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 83;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 84;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 85;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 86;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 87;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 88;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 89;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 90;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 91;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 92;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 93;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 94;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 95;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 96;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 97;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 98;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 99;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 100;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 101;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 102;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 103;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 104;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 105;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 106;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 107;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 108;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 109;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 110;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 111;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 112;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 113;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 114;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 115;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 116;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 117;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 118;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 119;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 120;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 121;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 122;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 123;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 124;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 125;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 126;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 127;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 128;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 129;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 130;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 131;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 132;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 133;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 134;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 135;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 136;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 137;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 138;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 139;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 140;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 141;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 142;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 143;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 144;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 145;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 146;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 147;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 148;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 149;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 150;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 151;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 152;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 153;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 154;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 155;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 156;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 157;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 158;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 159;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 160;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 161;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 162;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 163;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 164;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 165;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 166;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 167;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 168;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 169;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 170;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 171;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 172;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 173;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 174;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 175;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 176;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 177;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 178;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 179;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 180;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 181;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 182;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 183;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 184;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 185;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 186;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 187;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 188;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 189;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 190;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 191;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 192;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 193;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 194;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 195;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 196;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 197;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 198;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 199;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 200;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 201;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 202;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 203;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 204;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 205;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 206;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 207;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 208;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 209;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 210;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 211;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 212;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 213;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 214;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 215;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 216;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 217;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 218;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 219;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 220;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 221;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 222;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 223;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 224;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 225;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 226;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 227;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 228;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 229;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 230;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 231;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 232;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 233;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 234;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 235;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 236;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 237;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 238;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 239;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 240;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 241;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 242;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 243;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 244;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 245;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 246;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 247;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 248;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 249;4;-0.970830, 0.133879,-0.028874,-0.196804;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3; 0.000000, 0.826434, 0.000000;;, - 1;3; 0.000000, 0.826434, 0.000000;;, - 2;3; 0.000000, 0.826434, 0.000000;;, - 3;3; 0.000000, 0.826434, 0.000000;;, - 4;3; 0.000000, 0.826434, 0.000000;;, - 5;3; 0.000000, 0.826434, 0.000000;;, - 6;3; 0.000000, 0.826434, 0.000000;;, - 7;3; 0.000000, 0.826434, 0.000000;;, - 8;3; 0.000000, 0.826434, 0.000000;;, - 9;3; 0.000000, 0.826434, 0.000000;;, - 10;3; 0.000000, 0.826434, 0.000000;;, - 11;3; 0.000000, 0.826434, 0.000000;;, - 12;3; 0.000000, 0.826434, 0.000000;;, - 13;3; 0.000000, 0.826434, 0.000000;;, - 14;3; 0.000000, 0.826434, 0.000000;;, - 15;3; 0.000000, 0.826434, 0.000000;;, - 16;3; 0.000000, 0.826434, 0.000000;;, - 17;3; 0.000000, 0.826434, 0.000000;;, - 18;3; 0.000000, 0.826434, 0.000000;;, - 19;3; 0.000000, 0.826434, 0.000000;;, - 20;3; 0.000000, 0.826434, 0.000000;;, - 21;3; 0.000000, 0.826434, 0.000000;;, - 22;3; 0.000000, 0.826434, 0.000000;;, - 23;3; 0.000000, 0.826434, 0.000000;;, - 24;3; 0.000000, 0.826434, 0.000000;;, - 25;3; 0.000000, 0.826434, 0.000000;;, - 26;3; 0.000000, 0.826434, 0.000000;;, - 27;3; 0.000000, 0.826434, 0.000000;;, - 28;3; 0.000000, 0.826434, 0.000000;;, - 29;3; 0.000000, 0.826434, 0.000000;;, - 30;3; 0.000000, 0.826434, 0.000000;;, - 31;3; 0.000000, 0.826434, 0.000000;;, - 32;3; 0.000000, 0.826434, 0.000000;;, - 33;3; 0.000000, 0.826434, 0.000000;;, - 34;3; 0.000000, 0.826434, 0.000000;;, - 35;3; 0.000000, 0.826434, 0.000000;;, - 36;3; 0.000000, 0.826434, 0.000000;;, - 37;3; 0.000000, 0.826434, 0.000000;;, - 38;3; 0.000000, 0.826434, 0.000000;;, - 39;3; 0.000000, 0.826434, 0.000000;;, - 40;3; 0.000000, 0.826434, 0.000000;;, - 41;3; 0.000000, 0.826434, 0.000000;;, - 42;3; 0.000000, 0.826434, 0.000000;;, - 43;3; 0.000000, 0.826434, 0.000000;;, - 44;3; 0.000000, 0.826434, 0.000000;;, - 45;3; 0.000000, 0.826434, 0.000000;;, - 46;3; 0.000000, 0.826434, 0.000000;;, - 47;3; 0.000000, 0.826434, 0.000000;;, - 48;3; 0.000000, 0.826434, 0.000000;;, - 49;3; 0.000000, 0.826434, 0.000000;;, - 50;3; 0.000000, 0.826434, 0.000000;;, - 51;3; 0.000000, 0.826434, 0.000000;;, - 52;3; 0.000000, 0.826434, 0.000000;;, - 53;3; 0.000000, 0.826434, 0.000000;;, - 54;3; 0.000000, 0.826434, 0.000000;;, - 55;3; 0.000000, 0.826434, 0.000000;;, - 56;3; 0.000000, 0.826434, 0.000000;;, - 57;3; 0.000000, 0.826434, 0.000000;;, - 58;3; 0.000000, 0.826434, 0.000000;;, - 59;3; 0.000000, 0.826434, 0.000000;;, - 60;3; 0.000000, 0.826434, 0.000000;;, - 61;3; 0.000000, 0.826434, 0.000000;;, - 62;3; 0.000000, 0.826434, 0.000000;;, - 63;3; 0.000000, 0.826434, 0.000000;;, - 64;3; 0.000000, 0.826434, 0.000000;;, - 65;3; 0.000000, 0.826434, 0.000000;;, - 66;3; 0.000000, 0.826434, 0.000000;;, - 67;3; 0.000000, 0.826434, 0.000000;;, - 68;3; 0.000000, 0.826434, 0.000000;;, - 69;3; 0.000000, 0.826434, 0.000000;;, - 70;3; 0.000000, 0.826434, 0.000000;;, - 71;3; 0.000000, 0.826434, 0.000000;;, - 72;3; 0.000000, 0.826434, 0.000000;;, - 73;3; 0.000000, 0.826434, 0.000000;;, - 74;3; 0.000000, 0.826434, 0.000000;;, - 75;3; 0.000000, 0.826434, 0.000000;;, - 76;3; 0.000000, 0.826434, 0.000000;;, - 77;3; 0.000000, 0.826434, 0.000000;;, - 78;3; 0.000000, 0.826434, 0.000000;;, - 79;3; 0.000000, 0.826434, 0.000000;;, - 80;3; 0.000000, 0.826434, 0.000000;;, - 81;3; 0.000000, 0.826434, 0.000000;;, - 82;3; 0.000000, 0.826434, 0.000000;;, - 83;3; 0.000000, 0.826434, 0.000000;;, - 84;3; 0.000000, 0.826434, 0.000000;;, - 85;3; 0.000000, 0.826434, 0.000000;;, - 86;3; 0.000000, 0.826434, 0.000000;;, - 87;3; 0.000000, 0.826434, 0.000000;;, - 88;3; 0.000000, 0.826434, 0.000000;;, - 89;3; 0.000000, 0.826434, 0.000000;;, - 90;3; 0.000000, 0.826434, 0.000000;;, - 91;3; 0.000000, 0.826434, 0.000000;;, - 92;3; 0.000000, 0.826434, 0.000000;;, - 93;3; 0.000000, 0.826434, 0.000000;;, - 94;3; 0.000000, 0.826434, 0.000000;;, - 95;3; 0.000000, 0.826434, 0.000000;;, - 96;3; 0.000000, 0.826434, 0.000000;;, - 97;3; 0.000000, 0.826434, 0.000000;;, - 98;3; 0.000000, 0.826434, 0.000000;;, - 99;3; 0.000000, 0.826434, 0.000000;;, - 100;3; 0.000000, 0.826434, 0.000000;;, - 101;3; 0.000000, 0.826434, 0.000000;;, - 102;3; 0.000000, 0.826434, 0.000000;;, - 103;3; 0.000000, 0.826434, 0.000000;;, - 104;3; 0.000000, 0.826434, 0.000000;;, - 105;3; 0.000000, 0.826434, 0.000000;;, - 106;3; 0.000000, 0.826434, 0.000000;;, - 107;3; 0.000000, 0.826434, 0.000000;;, - 108;3; 0.000000, 0.826434, 0.000000;;, - 109;3; 0.000000, 0.826434, 0.000000;;, - 110;3; 0.000000, 0.826434, 0.000000;;, - 111;3; 0.000000, 0.826434, 0.000000;;, - 112;3; 0.000000, 0.826434, 0.000000;;, - 113;3; 0.000000, 0.826434, 0.000000;;, - 114;3; 0.000000, 0.826434, 0.000000;;, - 115;3; 0.000000, 0.826434, 0.000000;;, - 116;3; 0.000000, 0.826434, 0.000000;;, - 117;3; 0.000000, 0.826434, 0.000000;;, - 118;3; 0.000000, 0.826434, 0.000000;;, - 119;3; 0.000000, 0.826434, 0.000000;;, - 120;3; 0.000000, 0.826434, 0.000000;;, - 121;3; 0.000000, 0.826434, 0.000000;;, - 122;3; 0.000000, 0.826434, 0.000000;;, - 123;3; 0.000000, 0.826434, 0.000000;;, - 124;3; 0.000000, 0.826434, 0.000000;;, - 125;3; 0.000000, 0.826434, 0.000000;;, - 126;3; 0.000000, 0.826434, 0.000000;;, - 127;3; 0.000000, 0.826434, 0.000000;;, - 128;3; 0.000000, 0.826434, 0.000000;;, - 129;3; 0.000000, 0.826434, 0.000000;;, - 130;3; 0.000000, 0.826434, 0.000000;;, - 131;3; 0.000000, 0.826434, 0.000000;;, - 132;3; 0.000000, 0.826434, 0.000000;;, - 133;3; 0.000000, 0.826434, 0.000000;;, - 134;3; 0.000000, 0.826434, 0.000000;;, - 135;3; 0.000000, 0.826434, 0.000000;;, - 136;3; 0.000000, 0.826434, 0.000000;;, - 137;3; 0.000000, 0.826434, 0.000000;;, - 138;3; 0.000000, 0.826434, 0.000000;;, - 139;3; 0.000000, 0.826434, 0.000000;;, - 140;3; 0.000000, 0.826434, 0.000000;;, - 141;3; 0.000000, 0.826434, 0.000000;;, - 142;3; 0.000000, 0.826434, 0.000000;;, - 143;3; 0.000000, 0.826434, 0.000000;;, - 144;3; 0.000000, 0.826434, 0.000000;;, - 145;3; 0.000000, 0.826434, 0.000000;;, - 146;3; 0.000000, 0.826434, 0.000000;;, - 147;3; 0.000000, 0.826434, 0.000000;;, - 148;3; 0.000000, 0.826434, 0.000000;;, - 149;3; 0.000000, 0.826434, 0.000000;;, - 150;3; 0.000000, 0.826434, 0.000000;;, - 151;3; 0.000000, 0.826434, 0.000000;;, - 152;3; 0.000000, 0.826434, 0.000000;;, - 153;3; 0.000000, 0.826434, 0.000000;;, - 154;3; 0.000000, 0.826434, 0.000000;;, - 155;3; 0.000000, 0.826434, 0.000000;;, - 156;3; 0.000000, 0.826434, 0.000000;;, - 157;3; 0.000000, 0.826434, 0.000000;;, - 158;3; 0.000000, 0.826434, 0.000000;;, - 159;3; 0.000000, 0.826434, 0.000000;;, - 160;3; 0.000000, 0.826434, 0.000000;;, - 161;3; 0.000000, 0.826434, 0.000000;;, - 162;3; 0.000000, 0.826434, 0.000000;;, - 163;3; 0.000000, 0.826434, 0.000000;;, - 164;3; 0.000000, 0.826434, 0.000000;;, - 165;3; 0.000000, 0.826434, 0.000000;;, - 166;3; 0.000000, 0.826434, 0.000000;;, - 167;3; 0.000000, 0.826434, 0.000000;;, - 168;3; 0.000000, 0.826434, 0.000000;;, - 169;3; 0.000000, 0.826434, 0.000000;;, - 170;3; 0.000000, 0.826434, 0.000000;;, - 171;3; 0.000000, 0.826434, 0.000000;;, - 172;3; 0.000000, 0.826434, 0.000000;;, - 173;3; 0.000000, 0.826434, 0.000000;;, - 174;3; 0.000000, 0.826434, 0.000000;;, - 175;3; 0.000000, 0.826434, 0.000000;;, - 176;3; 0.000000, 0.826434, 0.000000;;, - 177;3; 0.000000, 0.826434, 0.000000;;, - 178;3; 0.000000, 0.826434, 0.000000;;, - 179;3; 0.000000, 0.826434, 0.000000;;, - 180;3; 0.000000, 0.826434, 0.000000;;, - 181;3; 0.000000, 0.826434, 0.000000;;, - 182;3; 0.000000, 0.826434, 0.000000;;, - 183;3; 0.000000, 0.826434, 0.000000;;, - 184;3; 0.000000, 0.826434, 0.000000;;, - 185;3; 0.000000, 0.826434, 0.000000;;, - 186;3;-0.000000, 0.826434,-0.000000;;, - 187;3;-0.000000, 0.826434,-0.000000;;, - 188;3;-0.000000, 0.826434, 0.000000;;, - 189;3;-0.000000, 0.826434, 0.000000;;, - 190;3;-0.000000, 0.826434,-0.000000;;, - 191;3; 0.000000, 0.826434, 0.000000;;, - 192;3; 0.000000, 0.826434, 0.000000;;, - 193;3; 0.000000, 0.826434, 0.000000;;, - 194;3; 0.000000, 0.826434,-0.000000;;, - 195;3; 0.000000, 0.826434,-0.000000;;, - 196;3; 0.000000, 0.826434, 0.000000;;, - 197;3; 0.000000, 0.826434,-0.000000;;, - 198;3; 0.000000, 0.826434,-0.000000;;, - 199;3; 0.000000, 0.826434, 0.000000;;, - 200;3; 0.000000, 0.826434, 0.000000;;, - 201;3; 0.000000, 0.826434, 0.000000;;, - 202;3; 0.000000, 0.826434, 0.000000;;, - 203;3; 0.000000, 0.826434, 0.000000;;, - 204;3; 0.000000, 0.826434, 0.000000;;, - 205;3; 0.000000, 0.826434, 0.000000;;, - 206;3; 0.000000, 0.826434, 0.000000;;, - 207;3; 0.000000, 0.826434, 0.000000;;, - 208;3; 0.000000, 0.826434, 0.000000;;, - 209;3; 0.000000, 0.826434, 0.000000;;, - 210;3; 0.000000, 0.826434, 0.000000;;, - 211;3; 0.000000, 0.826434, 0.000000;;, - 212;3; 0.000000, 0.826434, 0.000000;;, - 213;3; 0.000000, 0.826434, 0.000000;;, - 214;3; 0.000000, 0.826434, 0.000000;;, - 215;3; 0.000000, 0.826434, 0.000000;;, - 216;3; 0.000000, 0.826434, 0.000000;;, - 217;3; 0.000000, 0.826434, 0.000000;;, - 218;3; 0.000000, 0.826434, 0.000000;;, - 219;3; 0.000000, 0.826434, 0.000000;;, - 220;3; 0.000000, 0.826434, 0.000000;;, - 221;3; 0.000000, 0.826434, 0.000000;;, - 222;3; 0.000000, 0.826434, 0.000000;;, - 223;3; 0.000000, 0.826434, 0.000000;;, - 224;3; 0.000000, 0.826434, 0.000000;;, - 225;3; 0.000000, 0.826434, 0.000000;;, - 226;3; 0.000000, 0.826434, 0.000000;;, - 227;3; 0.000000, 0.826434, 0.000000;;, - 228;3; 0.000000, 0.826434, 0.000000;;, - 229;3; 0.000000, 0.826434, 0.000000;;, - 230;3; 0.000000, 0.826434, 0.000000;;, - 231;3; 0.000000, 0.826434, 0.000000;;, - 232;3; 0.000000, 0.826434, 0.000000;;, - 233;3; 0.000000, 0.826434, 0.000000;;, - 234;3; 0.000000, 0.826434, 0.000000;;, - 235;3; 0.000000, 0.826434, 0.000000;;, - 236;3; 0.000000, 0.826434, 0.000000;;, - 237;3; 0.000000, 0.826434, 0.000000;;, - 238;3; 0.000000, 0.826434, 0.000000;;, - 239;3; 0.000000, 0.826434, 0.000000;;, - 240;3; 0.000000, 0.826434, 0.000000;;, - 241;3; 0.000000, 0.826434, 0.000000;;, - 242;3; 0.000000, 0.826434, 0.000000;;, - 243;3; 0.000000, 0.826434, 0.000000;;, - 244;3; 0.000000, 0.826434, 0.000000;;, - 245;3; 0.000000, 0.826434, 0.000000;;, - 246;3; 0.000000, 0.826434, 0.000000;;, - 247;3; 0.000000, 0.826434, 0.000000;;, - 248;3; 0.000000, 0.826434, 0.000000;;, - 249;3; 0.000000, 0.826434, 0.000000;;; - } - } - Animation { - {Armature_Bone_005} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 1;4;-0.380162,-0.402155,-0.542078, 0.632313;;, - 2;4;-0.381472,-0.400992,-0.542850, 0.631414;;, - 3;4;-0.383661,-0.399049,-0.544140, 0.629912;;, - 4;4;-0.386712,-0.396342,-0.545936, 0.627819;;, - 5;4;-0.390578,-0.392911,-0.548214, 0.625166;;, - 6;4;-0.395184,-0.388825,-0.550926, 0.622006;;, - 7;4;-0.400416,-0.384182,-0.554008, 0.618416;;, - 8;4;-0.406128,-0.379113,-0.557373, 0.614497;;, - 9;4;-0.412141,-0.373777,-0.560915, 0.610370;;, - 10;4;-0.418257,-0.368350,-0.564517, 0.606174;;, - 11;4;-0.424271,-0.363013,-0.568059, 0.602047;;, - 12;4;-0.429982,-0.357945,-0.571424, 0.598128;;, - 13;4;-0.435214,-0.353302,-0.574506, 0.594538;;, - 14;4;-0.439820,-0.349215,-0.577218, 0.591378;;, - 15;4;-0.443686,-0.345784,-0.579496, 0.588725;;, - 16;4;-0.446737,-0.343077,-0.581293, 0.586632;;, - 17;4;-0.448926,-0.341134,-0.582582, 0.585130;;, - 18;4;-0.450236,-0.339972,-0.583354, 0.584231;;, - 19;4;-0.450669,-0.339587,-0.583609, 0.583933;;, - 20;4;-0.450231,-0.339962,-0.583344, 0.584216;;, - 21;4;-0.448905,-0.341094,-0.582544, 0.585072;;, - 22;4;-0.446688,-0.342987,-0.581207, 0.586504;;, - 23;4;-0.443596,-0.345630,-0.579341, 0.588503;;, - 24;4;-0.439666,-0.348989,-0.576972, 0.591046;;, - 25;4;-0.434967,-0.353009,-0.574139, 0.594089;;, - 26;4;-0.429597,-0.357605,-0.570904, 0.597570;;, - 27;4;-0.423689,-0.362668,-0.567346, 0.601405;;, - 28;4;-0.417402,-0.368059,-0.563562, 0.605493;;, - 29;4;-0.410923,-0.373622,-0.559666, 0.609713;;, - 30;4;-0.404448,-0.379190,-0.555776, 0.613941;;, - 31;4;-0.398175,-0.384594,-0.552011, 0.618050;;, - 32;4;-0.392288,-0.389679,-0.548482, 0.621921;;, - 33;4;-0.386947,-0.394306,-0.545288, 0.625451;;, - 34;4;-0.382284,-0.398364,-0.542507, 0.628553;;, - 35;4;-0.378397,-0.401769,-0.540198, 0.631166;;, - 36;4;-0.375352,-0.404462,-0.538402, 0.633245;;, - 37;4;-0.373188,-0.406411,-0.537140, 0.634765;;, - 38;4;-0.371920,-0.407604,-0.536421, 0.635717;;, - 39;4;-0.371542,-0.408043,-0.536243, 0.636101;;, - 40;4;-0.371645,-0.408074,-0.536356, 0.636178;;, - 41;4;-0.371830,-0.408034,-0.536520, 0.636202;;, - 42;4;-0.372099,-0.407924,-0.536732, 0.636172;;, - 43;4;-0.372448,-0.407743,-0.536993, 0.636088;;, - 44;4;-0.372874,-0.407494,-0.537300, 0.635951;;, - 45;4;-0.373370,-0.407182,-0.537647, 0.635766;;, - 46;4;-0.373926,-0.406814,-0.538029, 0.635536;;, - 47;4;-0.374531,-0.406400,-0.538437, 0.635269;;, - 48;4;-0.375167,-0.405952,-0.538862, 0.634973;;, - 49;4;-0.375817,-0.405484,-0.539293, 0.634659;;, - 50;4;-0.376464,-0.405012,-0.539717, 0.634338;;, - 51;4;-0.377087,-0.404550,-0.540124, 0.634021;;, - 52;4;-0.377670,-0.404114,-0.540502, 0.633718;;, - 53;4;-0.378197,-0.403715,-0.540842, 0.633440;;, - 54;4;-0.378658,-0.403365,-0.541138, 0.633195;;, - 55;4;-0.379041,-0.403071,-0.541384, 0.632988;;, - 56;4;-0.379342,-0.402839,-0.541577, 0.632823;;, - 57;4;-0.379558,-0.402672,-0.541714, 0.632705;;, - 58;4;-0.379686,-0.402572,-0.541796, 0.632634;;, - 59;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 60;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 61;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 62;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 63;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 64;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 65;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 66;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 67;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 68;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 69;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 70;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 71;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 72;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 73;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 74;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 75;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 76;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 77;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 78;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 79;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 80;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 81;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 82;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 83;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 84;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 85;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 86;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 87;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 88;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 89;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 90;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 91;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 92;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 93;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 94;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 95;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 96;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 97;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 98;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 99;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 100;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 101;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 102;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 103;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 104;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 105;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 106;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 107;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 108;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 109;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 110;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 111;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 112;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 113;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 114;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 115;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 116;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 117;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 118;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 119;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 120;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 121;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 122;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 123;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 124;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 125;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 126;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 127;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 128;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 129;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 130;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 131;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 132;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 133;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 134;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 135;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 136;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 137;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 138;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 139;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 140;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 141;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 142;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 143;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 144;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 145;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 146;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 147;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 148;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 149;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 150;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 151;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 152;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 153;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 154;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 155;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 156;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 157;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 158;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 159;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 160;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 161;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 162;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 163;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 164;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 165;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 166;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 167;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 168;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 169;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 170;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 171;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 172;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 173;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 174;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 175;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 176;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 177;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 178;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 179;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 180;4;-0.383627,-0.398602,-0.543913, 0.629358;;, - 181;4;-0.395358,-0.386753,-0.550205, 0.619571;;, - 182;4;-0.414433,-0.367486,-0.560434, 0.603656;;, - 183;4;-0.439382,-0.342286,-0.573813, 0.582841;;, - 184;4;-0.467646,-0.313739,-0.588969, 0.559260;;, - 185;4;-0.495909,-0.285192,-0.604126, 0.535680;;, - 186;4;-0.520858,-0.259993,-0.617505, 0.514865;;, - 187;4;-0.539933,-0.240726,-0.627734, 0.498951;;, - 188;4;-0.551665,-0.228877,-0.634025, 0.489163;;, - 189;4;-0.555563,-0.224940,-0.636116, 0.485911;;, - 190;4;-0.549242,-0.232253,-0.633125, 0.492305;;, - 191;4;-0.530164,-0.254070,-0.623991, 0.511300;;, - 192;4;-0.502253,-0.285357,-0.610356, 0.538326;;, - 193;4;-0.473867,-0.316098,-0.596023, 0.564508;;, - 194;4;-0.451706,-0.338592,-0.584188, 0.583131;;, - 195;4;-0.432380,-0.356668,-0.573202, 0.597511;;, - 196;4;-0.411975,-0.374964,-0.561264, 0.611740;;, - 197;4;-0.394312,-0.390272,-0.550703, 0.623418;;, - 198;4;-0.383216,-0.399645,-0.543964, 0.630459;;, - 199;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 200;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 201;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 202;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 203;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 204;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 205;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 206;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 207;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 208;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 209;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 210;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 211;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 212;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 213;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 214;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 215;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 216;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 217;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 218;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 219;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 220;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 221;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 222;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 223;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 224;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 225;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 226;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 227;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 228;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 229;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 230;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 231;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 232;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 233;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 234;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 235;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 236;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 237;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 238;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 239;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 240;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 241;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 242;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 243;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 244;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 245;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 246;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 247;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 248;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 249;4;-0.379729,-0.402539,-0.541823, 0.632611;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3; 0.000000, 0.761776, 0.000000;;, - 1;3; 0.000000, 0.761776, 0.000000;;, - 2;3; 0.000000, 0.761776, 0.000000;;, - 3;3; 0.000000, 0.761776, 0.000000;;, - 4;3; 0.000000, 0.761776, 0.000000;;, - 5;3; 0.000000, 0.761776, 0.000000;;, - 6;3; 0.000000, 0.761776, 0.000000;;, - 7;3; 0.000000, 0.761776, 0.000000;;, - 8;3; 0.000000, 0.761776, 0.000000;;, - 9;3; 0.000000, 0.761776, 0.000000;;, - 10;3; 0.000000, 0.761776, 0.000000;;, - 11;3; 0.000000, 0.761776, 0.000000;;, - 12;3; 0.000000, 0.761776, 0.000000;;, - 13;3; 0.000000, 0.761776, 0.000000;;, - 14;3; 0.000000, 0.761776, 0.000000;;, - 15;3; 0.000000, 0.761776, 0.000000;;, - 16;3; 0.000000, 0.761776, 0.000000;;, - 17;3; 0.000000, 0.761776, 0.000000;;, - 18;3; 0.000000, 0.761776, 0.000000;;, - 19;3; 0.000000, 0.761776, 0.000000;;, - 20;3; 0.000000, 0.761776, 0.000000;;, - 21;3; 0.000000, 0.761776, 0.000000;;, - 22;3; 0.000000, 0.761776, 0.000000;;, - 23;3; 0.000000, 0.761776, 0.000000;;, - 24;3; 0.000000, 0.761776, 0.000000;;, - 25;3; 0.000000, 0.761776, 0.000000;;, - 26;3; 0.000000, 0.761776, 0.000000;;, - 27;3; 0.000000, 0.761776, 0.000000;;, - 28;3; 0.000000, 0.761776, 0.000000;;, - 29;3; 0.000000, 0.761776, 0.000000;;, - 30;3; 0.000000, 0.761776, 0.000000;;, - 31;3; 0.000000, 0.761776, 0.000000;;, - 32;3; 0.000000, 0.761776, 0.000000;;, - 33;3; 0.000000, 0.761776, 0.000000;;, - 34;3; 0.000000, 0.761776, 0.000000;;, - 35;3; 0.000000, 0.761776, 0.000000;;, - 36;3; 0.000000, 0.761776, 0.000000;;, - 37;3; 0.000000, 0.761776, 0.000000;;, - 38;3; 0.000000, 0.761776, 0.000000;;, - 39;3; 0.000000, 0.761776, 0.000000;;, - 40;3; 0.000000, 0.761776, 0.000000;;, - 41;3; 0.000000, 0.761776, 0.000000;;, - 42;3; 0.000000, 0.761776, 0.000000;;, - 43;3; 0.000000, 0.761776, 0.000000;;, - 44;3; 0.000000, 0.761776, 0.000000;;, - 45;3; 0.000000, 0.761776, 0.000000;;, - 46;3; 0.000000, 0.761776, 0.000000;;, - 47;3; 0.000000, 0.761776, 0.000000;;, - 48;3; 0.000000, 0.761776, 0.000000;;, - 49;3; 0.000000, 0.761776, 0.000000;;, - 50;3; 0.000000, 0.761776, 0.000000;;, - 51;3; 0.000000, 0.761776, 0.000000;;, - 52;3; 0.000000, 0.761776, 0.000000;;, - 53;3; 0.000000, 0.761776, 0.000000;;, - 54;3; 0.000000, 0.761776, 0.000000;;, - 55;3; 0.000000, 0.761776, 0.000000;;, - 56;3; 0.000000, 0.761776, 0.000000;;, - 57;3; 0.000000, 0.761776, 0.000000;;, - 58;3; 0.000000, 0.761776, 0.000000;;, - 59;3; 0.000000, 0.761776, 0.000000;;, - 60;3; 0.000000, 0.761776, 0.000000;;, - 61;3; 0.000000, 0.761776, 0.000000;;, - 62;3; 0.000000, 0.761776, 0.000000;;, - 63;3; 0.000000, 0.761776, 0.000000;;, - 64;3; 0.000000, 0.761776, 0.000000;;, - 65;3; 0.000000, 0.761776, 0.000000;;, - 66;3; 0.000000, 0.761776, 0.000000;;, - 67;3; 0.000000, 0.761776, 0.000000;;, - 68;3; 0.000000, 0.761776, 0.000000;;, - 69;3; 0.000000, 0.761776, 0.000000;;, - 70;3; 0.000000, 0.761776, 0.000000;;, - 71;3; 0.000000, 0.761776, 0.000000;;, - 72;3; 0.000000, 0.761776, 0.000000;;, - 73;3; 0.000000, 0.761776, 0.000000;;, - 74;3; 0.000000, 0.761776, 0.000000;;, - 75;3; 0.000000, 0.761776, 0.000000;;, - 76;3; 0.000000, 0.761776, 0.000000;;, - 77;3; 0.000000, 0.761776, 0.000000;;, - 78;3; 0.000000, 0.761776, 0.000000;;, - 79;3; 0.000000, 0.761776, 0.000000;;, - 80;3; 0.000000, 0.761776, 0.000000;;, - 81;3; 0.000000, 0.761776, 0.000000;;, - 82;3; 0.000000, 0.761776, 0.000000;;, - 83;3; 0.000000, 0.761776, 0.000000;;, - 84;3; 0.000000, 0.761776, 0.000000;;, - 85;3; 0.000000, 0.761776, 0.000000;;, - 86;3; 0.000000, 0.761776, 0.000000;;, - 87;3; 0.000000, 0.761776, 0.000000;;, - 88;3; 0.000000, 0.761776, 0.000000;;, - 89;3; 0.000000, 0.761776, 0.000000;;, - 90;3; 0.000000, 0.761776, 0.000000;;, - 91;3; 0.000000, 0.761776, 0.000000;;, - 92;3; 0.000000, 0.761776, 0.000000;;, - 93;3; 0.000000, 0.761776, 0.000000;;, - 94;3; 0.000000, 0.761776, 0.000000;;, - 95;3; 0.000000, 0.761776, 0.000000;;, - 96;3; 0.000000, 0.761776, 0.000000;;, - 97;3; 0.000000, 0.761776, 0.000000;;, - 98;3; 0.000000, 0.761776, 0.000000;;, - 99;3; 0.000000, 0.761776, 0.000000;;, - 100;3; 0.000000, 0.761776, 0.000000;;, - 101;3; 0.000000, 0.761776, 0.000000;;, - 102;3; 0.000000, 0.761776, 0.000000;;, - 103;3; 0.000000, 0.761776, 0.000000;;, - 104;3; 0.000000, 0.761776, 0.000000;;, - 105;3; 0.000000, 0.761776, 0.000000;;, - 106;3; 0.000000, 0.761776, 0.000000;;, - 107;3; 0.000000, 0.761776, 0.000000;;, - 108;3; 0.000000, 0.761776, 0.000000;;, - 109;3; 0.000000, 0.761776, 0.000000;;, - 110;3; 0.000000, 0.761776, 0.000000;;, - 111;3; 0.000000, 0.761776, 0.000000;;, - 112;3; 0.000000, 0.761776, 0.000000;;, - 113;3; 0.000000, 0.761776, 0.000000;;, - 114;3; 0.000000, 0.761776, 0.000000;;, - 115;3; 0.000000, 0.761776, 0.000000;;, - 116;3; 0.000000, 0.761776, 0.000000;;, - 117;3; 0.000000, 0.761776, 0.000000;;, - 118;3; 0.000000, 0.761776, 0.000000;;, - 119;3; 0.000000, 0.761776, 0.000000;;, - 120;3; 0.000000, 0.761776, 0.000000;;, - 121;3; 0.000000, 0.761776, 0.000000;;, - 122;3; 0.000000, 0.761776, 0.000000;;, - 123;3; 0.000000, 0.761776, 0.000000;;, - 124;3; 0.000000, 0.761776, 0.000000;;, - 125;3; 0.000000, 0.761776, 0.000000;;, - 126;3; 0.000000, 0.761776, 0.000000;;, - 127;3; 0.000000, 0.761776, 0.000000;;, - 128;3; 0.000000, 0.761776, 0.000000;;, - 129;3; 0.000000, 0.761776, 0.000000;;, - 130;3; 0.000000, 0.761776, 0.000000;;, - 131;3; 0.000000, 0.761776, 0.000000;;, - 132;3; 0.000000, 0.761776, 0.000000;;, - 133;3; 0.000000, 0.761776, 0.000000;;, - 134;3; 0.000000, 0.761776, 0.000000;;, - 135;3; 0.000000, 0.761776, 0.000000;;, - 136;3; 0.000000, 0.761776, 0.000000;;, - 137;3; 0.000000, 0.761776, 0.000000;;, - 138;3; 0.000000, 0.761776, 0.000000;;, - 139;3; 0.000000, 0.761776, 0.000000;;, - 140;3; 0.000000, 0.761776, 0.000000;;, - 141;3; 0.000000, 0.761776, 0.000000;;, - 142;3; 0.000000, 0.761776, 0.000000;;, - 143;3; 0.000000, 0.761776, 0.000000;;, - 144;3; 0.000000, 0.761776, 0.000000;;, - 145;3; 0.000000, 0.761776, 0.000000;;, - 146;3; 0.000000, 0.761776, 0.000000;;, - 147;3; 0.000000, 0.761776, 0.000000;;, - 148;3; 0.000000, 0.761776, 0.000000;;, - 149;3; 0.000000, 0.761776, 0.000000;;, - 150;3; 0.000000, 0.761776, 0.000000;;, - 151;3; 0.000000, 0.761776, 0.000000;;, - 152;3; 0.000000, 0.761776, 0.000000;;, - 153;3; 0.000000, 0.761776, 0.000000;;, - 154;3; 0.000000, 0.761776, 0.000000;;, - 155;3; 0.000000, 0.761776, 0.000000;;, - 156;3; 0.000000, 0.761776, 0.000000;;, - 157;3; 0.000000, 0.761776, 0.000000;;, - 158;3; 0.000000, 0.761776, 0.000000;;, - 159;3; 0.000000, 0.761776, 0.000000;;, - 160;3; 0.000000, 0.761776, 0.000000;;, - 161;3; 0.000000, 0.761776, 0.000000;;, - 162;3; 0.000000, 0.761776, 0.000000;;, - 163;3; 0.000000, 0.761776, 0.000000;;, - 164;3; 0.000000, 0.761776, 0.000000;;, - 165;3; 0.000000, 0.761776, 0.000000;;, - 166;3; 0.000000, 0.761776, 0.000000;;, - 167;3; 0.000000, 0.761776, 0.000000;;, - 168;3; 0.000000, 0.761776, 0.000000;;, - 169;3; 0.000000, 0.761776, 0.000000;;, - 170;3; 0.000000, 0.761776, 0.000000;;, - 171;3; 0.000000, 0.761776, 0.000000;;, - 172;3; 0.000000, 0.761776, 0.000000;;, - 173;3; 0.000000, 0.761776, 0.000000;;, - 174;3; 0.000000, 0.761776, 0.000000;;, - 175;3; 0.000000, 0.761776, 0.000000;;, - 176;3; 0.000000, 0.761776, 0.000000;;, - 177;3; 0.000000, 0.761776, 0.000000;;, - 178;3; 0.000000, 0.761776, 0.000000;;, - 179;3; 0.000000, 0.761776, 0.000000;;, - 180;3; 0.000000, 0.761776,-0.000000;;, - 181;3; 0.000000, 0.761775, 0.000000;;, - 182;3;-0.000000, 0.761776,-0.000000;;, - 183;3;-0.000000, 0.761776, 0.000000;;, - 184;3; 0.000000, 0.761776, 0.000000;;, - 185;3; 0.000000, 0.761776,-0.000000;;, - 186;3;-0.000000, 0.761776, 0.000000;;, - 187;3; 0.000000, 0.761775, 0.000000;;, - 188;3;-0.000000, 0.761776, 0.000000;;, - 189;3;-0.000000, 0.761775, 0.000000;;, - 190;3;-0.000000, 0.761775,-0.000000;;, - 191;3; 0.000000, 0.761776, 0.000000;;, - 192;3; 0.000000, 0.761776,-0.000000;;, - 193;3; 0.000000, 0.761775,-0.000000;;, - 194;3;-0.000000, 0.761775, 0.000000;;, - 195;3; 0.000000, 0.761775,-0.000000;;, - 196;3; 0.000000, 0.761776, 0.000000;;, - 197;3; 0.000000, 0.761776, 0.000000;;, - 198;3;-0.000000, 0.761776, 0.000000;;, - 199;3; 0.000000, 0.761776, 0.000000;;, - 200;3; 0.000000, 0.761776, 0.000000;;, - 201;3; 0.000000, 0.761776, 0.000000;;, - 202;3; 0.000000, 0.761776, 0.000000;;, - 203;3; 0.000000, 0.761776, 0.000000;;, - 204;3; 0.000000, 0.761776, 0.000000;;, - 205;3; 0.000000, 0.761776, 0.000000;;, - 206;3; 0.000000, 0.761776, 0.000000;;, - 207;3; 0.000000, 0.761776, 0.000000;;, - 208;3; 0.000000, 0.761776, 0.000000;;, - 209;3; 0.000000, 0.761776, 0.000000;;, - 210;3; 0.000000, 0.761776, 0.000000;;, - 211;3; 0.000000, 0.761776, 0.000000;;, - 212;3; 0.000000, 0.761776, 0.000000;;, - 213;3; 0.000000, 0.761776, 0.000000;;, - 214;3; 0.000000, 0.761776, 0.000000;;, - 215;3; 0.000000, 0.761776, 0.000000;;, - 216;3; 0.000000, 0.761776, 0.000000;;, - 217;3; 0.000000, 0.761776, 0.000000;;, - 218;3; 0.000000, 0.761776, 0.000000;;, - 219;3; 0.000000, 0.761776, 0.000000;;, - 220;3; 0.000000, 0.761776, 0.000000;;, - 221;3; 0.000000, 0.761776, 0.000000;;, - 222;3; 0.000000, 0.761776, 0.000000;;, - 223;3; 0.000000, 0.761776, 0.000000;;, - 224;3; 0.000000, 0.761776, 0.000000;;, - 225;3; 0.000000, 0.761776, 0.000000;;, - 226;3; 0.000000, 0.761776, 0.000000;;, - 227;3; 0.000000, 0.761776, 0.000000;;, - 228;3; 0.000000, 0.761776, 0.000000;;, - 229;3; 0.000000, 0.761776, 0.000000;;, - 230;3; 0.000000, 0.761776, 0.000000;;, - 231;3; 0.000000, 0.761776, 0.000000;;, - 232;3; 0.000000, 0.761776, 0.000000;;, - 233;3; 0.000000, 0.761776, 0.000000;;, - 234;3; 0.000000, 0.761776, 0.000000;;, - 235;3; 0.000000, 0.761776, 0.000000;;, - 236;3; 0.000000, 0.761776, 0.000000;;, - 237;3; 0.000000, 0.761776, 0.000000;;, - 238;3; 0.000000, 0.761776, 0.000000;;, - 239;3; 0.000000, 0.761776, 0.000000;;, - 240;3; 0.000000, 0.761776, 0.000000;;, - 241;3; 0.000000, 0.761776, 0.000000;;, - 242;3; 0.000000, 0.761776, 0.000000;;, - 243;3; 0.000000, 0.761776, 0.000000;;, - 244;3; 0.000000, 0.761776, 0.000000;;, - 245;3; 0.000000, 0.761776, 0.000000;;, - 246;3; 0.000000, 0.761776, 0.000000;;, - 247;3; 0.000000, 0.761776, 0.000000;;, - 248;3; 0.000000, 0.761776, 0.000000;;, - 249;3; 0.000000, 0.761776, 0.000000;;; - } - } - Animation { - {Armature_Bone_006} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 1;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 2;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 3;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 4;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 5;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 6;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 7;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 8;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 9;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 10;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 11;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 12;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 13;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 14;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 15;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 16;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 17;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 18;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 19;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 20;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 21;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 22;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 23;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 24;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 25;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 26;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 27;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 28;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 29;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 30;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 31;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 32;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 33;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 34;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 35;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 36;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 37;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 38;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 39;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 40;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 41;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 42;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 43;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 44;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 45;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 46;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 47;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 48;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 49;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 50;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 51;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 52;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 53;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 54;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 55;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 56;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 57;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 58;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 59;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 60;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 61;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 62;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 63;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 64;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 65;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 66;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 67;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 68;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 69;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 70;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 71;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 72;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 73;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 74;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 75;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 76;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 77;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 78;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 79;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 80;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 81;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 82;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 83;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 84;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 85;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 86;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 87;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 88;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 89;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 90;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 91;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 92;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 93;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 94;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 95;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 96;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 97;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 98;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 99;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 100;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 101;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 102;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 103;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 104;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 105;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 106;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 107;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 108;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 109;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 110;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 111;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 112;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 113;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 114;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 115;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 116;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 117;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 118;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 119;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 120;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 121;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 122;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 123;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 124;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 125;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 126;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 127;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 128;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 129;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 130;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 131;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 132;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 133;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 134;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 135;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 136;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 137;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 138;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 139;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 140;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 141;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 142;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 143;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 144;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 145;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 146;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 147;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 148;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 149;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 150;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 151;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 152;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 153;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 154;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 155;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 156;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 157;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 158;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 159;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 160;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 161;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 162;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 163;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 164;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 165;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 166;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 167;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 168;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 169;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 170;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 171;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 172;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 173;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 174;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 175;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 176;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 177;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 178;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 179;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 180;4;-0.996222, 0.010292, 0.000896, 0.060490;;, - 181;4;-0.989016, 0.010259, 0.000610, 0.087384;;, - 182;4;-0.977300, 0.010205, 0.000144, 0.131113;;, - 183;4;-0.961975, 0.010136,-0.000464, 0.188308;;, - 184;4;-0.944614, 0.010056,-0.001154, 0.253100;;, - 185;4;-0.927254, 0.009977,-0.001844, 0.317893;;, - 186;4;-0.911929, 0.009907,-0.002453, 0.375088;;, - 187;4;-0.900212, 0.009854,-0.002918, 0.418816;;, - 188;4;-0.893006, 0.009821,-0.003205, 0.445711;;, - 189;4;-0.890612, 0.009810,-0.003300, 0.454647;;, - 190;4;-0.890612, 0.009810,-0.003300, 0.454647;;, - 191;4;-0.890612, 0.009810,-0.003300, 0.454647;;, - 192;4;-0.890612, 0.009810,-0.003300, 0.454647;;, - 193;4;-0.890612, 0.009810,-0.003300, 0.454647;;, - 194;4;-0.890612, 0.009810,-0.003300, 0.454647;;, - 195;4;-0.900212, 0.009854,-0.002918, 0.418816;;, - 196;4;-0.927254, 0.009977,-0.001844, 0.317893;;, - 197;4;-0.961975, 0.010136,-0.000464, 0.188308;;, - 198;4;-0.989016, 0.010259, 0.000610, 0.087384;;, - 199;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 200;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 201;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 202;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 203;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 204;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 205;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 206;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 207;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 208;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 209;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 210;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 211;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 212;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 213;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 214;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 215;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 216;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 217;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 218;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 219;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 220;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 221;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 222;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 223;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 224;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 225;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 226;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 227;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 228;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 229;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 230;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 231;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 232;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 233;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 234;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 235;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 236;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 237;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 238;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 239;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 240;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 241;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 242;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 243;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 244;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 245;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 246;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 247;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 248;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 249;4;-0.998617, 0.010303, 0.000991, 0.051554;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3;-0.000000, 0.660698,-0.000000;;, - 1;3;-0.000000, 0.660698,-0.000000;;, - 2;3;-0.000000, 0.660698,-0.000000;;, - 3;3;-0.000000, 0.660698,-0.000000;;, - 4;3; 0.000000, 0.660698,-0.000000;;, - 5;3;-0.000000, 0.660698,-0.000000;;, - 6;3;-0.000000, 0.660698,-0.000000;;, - 7;3; 0.000000, 0.660698,-0.000000;;, - 8;3;-0.000000, 0.660698,-0.000000;;, - 9;3; 0.000000, 0.660698,-0.000000;;, - 10;3;-0.000000, 0.660698,-0.000000;;, - 11;3; 0.000000, 0.660698, 0.000000;;, - 12;3;-0.000000, 0.660698,-0.000000;;, - 13;3;-0.000000, 0.660698,-0.000000;;, - 14;3; 0.000000, 0.660698, 0.000000;;, - 15;3; 0.000000, 0.660698,-0.000000;;, - 16;3;-0.000000, 0.660698,-0.000000;;, - 17;3;-0.000000, 0.660698,-0.000000;;, - 18;3;-0.000000, 0.660698,-0.000000;;, - 19;3;-0.000000, 0.660698,-0.000000;;, - 20;3;-0.000000, 0.660698,-0.000000;;, - 21;3; 0.000000, 0.660698,-0.000000;;, - 22;3;-0.000000, 0.660698, 0.000000;;, - 23;3; 0.000000, 0.660698,-0.000000;;, - 24;3;-0.000000, 0.660698,-0.000000;;, - 25;3; 0.000000, 0.660698,-0.000000;;, - 26;3;-0.000000, 0.660698,-0.000000;;, - 27;3; 0.000000, 0.660698,-0.000000;;, - 28;3; 0.000000, 0.660698,-0.000000;;, - 29;3; 0.000000, 0.660698,-0.000000;;, - 30;3; 0.000000, 0.660698,-0.000000;;, - 31;3;-0.000000, 0.660698, 0.000000;;, - 32;3; 0.000000, 0.660698,-0.000000;;, - 33;3; 0.000000, 0.660698,-0.000000;;, - 34;3; 0.000000, 0.660698,-0.000000;;, - 35;3; 0.000000, 0.660698,-0.000000;;, - 36;3; 0.000000, 0.660698,-0.000000;;, - 37;3; 0.000000, 0.660698,-0.000000;;, - 38;3; 0.000000, 0.660698,-0.000000;;, - 39;3; 0.000000, 0.660698,-0.000000;;, - 40;3;-0.000000, 0.660698,-0.000000;;, - 41;3;-0.000000, 0.660698,-0.000000;;, - 42;3; 0.000000, 0.660698,-0.000000;;, - 43;3;-0.000000, 0.660698,-0.000000;;, - 44;3; 0.000000, 0.660698,-0.000000;;, - 45;3;-0.000000, 0.660698,-0.000000;;, - 46;3; 0.000000, 0.660698,-0.000000;;, - 47;3;-0.000000, 0.660698,-0.000000;;, - 48;3;-0.000000, 0.660698,-0.000000;;, - 49;3;-0.000000, 0.660698,-0.000000;;, - 50;3;-0.000000, 0.660698,-0.000000;;, - 51;3; 0.000000, 0.660698,-0.000000;;, - 52;3; 0.000000, 0.660698,-0.000000;;, - 53;3;-0.000000, 0.660698,-0.000000;;, - 54;3;-0.000000, 0.660698,-0.000000;;, - 55;3; 0.000000, 0.660698,-0.000000;;, - 56;3; 0.000000, 0.660698,-0.000000;;, - 57;3; 0.000000, 0.660698,-0.000000;;, - 58;3;-0.000000, 0.660698,-0.000000;;, - 59;3;-0.000000, 0.660698,-0.000000;;, - 60;3;-0.000000, 0.660698,-0.000000;;, - 61;3;-0.000000, 0.660698,-0.000000;;, - 62;3;-0.000000, 0.660698,-0.000000;;, - 63;3;-0.000000, 0.660698,-0.000000;;, - 64;3;-0.000000, 0.660698,-0.000000;;, - 65;3;-0.000000, 0.660698,-0.000000;;, - 66;3;-0.000000, 0.660698,-0.000000;;, - 67;3;-0.000000, 0.660698,-0.000000;;, - 68;3;-0.000000, 0.660698,-0.000000;;, - 69;3;-0.000000, 0.660698,-0.000000;;, - 70;3;-0.000000, 0.660698,-0.000000;;, - 71;3;-0.000000, 0.660698,-0.000000;;, - 72;3;-0.000000, 0.660698,-0.000000;;, - 73;3;-0.000000, 0.660698,-0.000000;;, - 74;3;-0.000000, 0.660698,-0.000000;;, - 75;3;-0.000000, 0.660698,-0.000000;;, - 76;3;-0.000000, 0.660698,-0.000000;;, - 77;3;-0.000000, 0.660698,-0.000000;;, - 78;3;-0.000000, 0.660698,-0.000000;;, - 79;3;-0.000000, 0.660698,-0.000000;;, - 80;3;-0.000000, 0.660698,-0.000000;;, - 81;3;-0.000000, 0.660698,-0.000000;;, - 82;3;-0.000000, 0.660698,-0.000000;;, - 83;3;-0.000000, 0.660698,-0.000000;;, - 84;3;-0.000000, 0.660698,-0.000000;;, - 85;3;-0.000000, 0.660698,-0.000000;;, - 86;3;-0.000000, 0.660698,-0.000000;;, - 87;3;-0.000000, 0.660698,-0.000000;;, - 88;3;-0.000000, 0.660698,-0.000000;;, - 89;3;-0.000000, 0.660698,-0.000000;;, - 90;3;-0.000000, 0.660698,-0.000000;;, - 91;3;-0.000000, 0.660698,-0.000000;;, - 92;3;-0.000000, 0.660698,-0.000000;;, - 93;3;-0.000000, 0.660698,-0.000000;;, - 94;3;-0.000000, 0.660698,-0.000000;;, - 95;3;-0.000000, 0.660698,-0.000000;;, - 96;3;-0.000000, 0.660698,-0.000000;;, - 97;3;-0.000000, 0.660698,-0.000000;;, - 98;3;-0.000000, 0.660698,-0.000000;;, - 99;3;-0.000000, 0.660698,-0.000000;;, - 100;3;-0.000000, 0.660698,-0.000000;;, - 101;3;-0.000000, 0.660698,-0.000000;;, - 102;3;-0.000000, 0.660698,-0.000000;;, - 103;3;-0.000000, 0.660698,-0.000000;;, - 104;3;-0.000000, 0.660698,-0.000000;;, - 105;3;-0.000000, 0.660698,-0.000000;;, - 106;3;-0.000000, 0.660698,-0.000000;;, - 107;3;-0.000000, 0.660698,-0.000000;;, - 108;3;-0.000000, 0.660698,-0.000000;;, - 109;3;-0.000000, 0.660698,-0.000000;;, - 110;3;-0.000000, 0.660698,-0.000000;;, - 111;3;-0.000000, 0.660698,-0.000000;;, - 112;3;-0.000000, 0.660698,-0.000000;;, - 113;3;-0.000000, 0.660698,-0.000000;;, - 114;3;-0.000000, 0.660698,-0.000000;;, - 115;3;-0.000000, 0.660698,-0.000000;;, - 116;3;-0.000000, 0.660698,-0.000000;;, - 117;3;-0.000000, 0.660698,-0.000000;;, - 118;3;-0.000000, 0.660698,-0.000000;;, - 119;3;-0.000000, 0.660698,-0.000000;;, - 120;3;-0.000000, 0.660698,-0.000000;;, - 121;3;-0.000000, 0.660698,-0.000000;;, - 122;3;-0.000000, 0.660698,-0.000000;;, - 123;3;-0.000000, 0.660698,-0.000000;;, - 124;3;-0.000000, 0.660698,-0.000000;;, - 125;3;-0.000000, 0.660698,-0.000000;;, - 126;3;-0.000000, 0.660698,-0.000000;;, - 127;3;-0.000000, 0.660698,-0.000000;;, - 128;3;-0.000000, 0.660698,-0.000000;;, - 129;3;-0.000000, 0.660698,-0.000000;;, - 130;3;-0.000000, 0.660698,-0.000000;;, - 131;3;-0.000000, 0.660698,-0.000000;;, - 132;3;-0.000000, 0.660698,-0.000000;;, - 133;3;-0.000000, 0.660698,-0.000000;;, - 134;3;-0.000000, 0.660698,-0.000000;;, - 135;3;-0.000000, 0.660698,-0.000000;;, - 136;3;-0.000000, 0.660698,-0.000000;;, - 137;3;-0.000000, 0.660698,-0.000000;;, - 138;3;-0.000000, 0.660698,-0.000000;;, - 139;3;-0.000000, 0.660698,-0.000000;;, - 140;3;-0.000000, 0.660698,-0.000000;;, - 141;3;-0.000000, 0.660698,-0.000000;;, - 142;3;-0.000000, 0.660698,-0.000000;;, - 143;3;-0.000000, 0.660698,-0.000000;;, - 144;3;-0.000000, 0.660698,-0.000000;;, - 145;3;-0.000000, 0.660698,-0.000000;;, - 146;3;-0.000000, 0.660698,-0.000000;;, - 147;3;-0.000000, 0.660698,-0.000000;;, - 148;3;-0.000000, 0.660698,-0.000000;;, - 149;3;-0.000000, 0.660698,-0.000000;;, - 150;3;-0.000000, 0.660698,-0.000000;;, - 151;3;-0.000000, 0.660698,-0.000000;;, - 152;3;-0.000000, 0.660698,-0.000000;;, - 153;3;-0.000000, 0.660698,-0.000000;;, - 154;3;-0.000000, 0.660698,-0.000000;;, - 155;3;-0.000000, 0.660698,-0.000000;;, - 156;3;-0.000000, 0.660698,-0.000000;;, - 157;3;-0.000000, 0.660698,-0.000000;;, - 158;3;-0.000000, 0.660698,-0.000000;;, - 159;3;-0.000000, 0.660698,-0.000000;;, - 160;3;-0.000000, 0.660698,-0.000000;;, - 161;3;-0.000000, 0.660698,-0.000000;;, - 162;3;-0.000000, 0.660698,-0.000000;;, - 163;3;-0.000000, 0.660698,-0.000000;;, - 164;3;-0.000000, 0.660698,-0.000000;;, - 165;3;-0.000000, 0.660698,-0.000000;;, - 166;3;-0.000000, 0.660698,-0.000000;;, - 167;3;-0.000000, 0.660698,-0.000000;;, - 168;3;-0.000000, 0.660698,-0.000000;;, - 169;3;-0.000000, 0.660698,-0.000000;;, - 170;3;-0.000000, 0.660698,-0.000000;;, - 171;3;-0.000000, 0.660698,-0.000000;;, - 172;3;-0.000000, 0.660698,-0.000000;;, - 173;3;-0.000000, 0.660698,-0.000000;;, - 174;3;-0.000000, 0.660698,-0.000000;;, - 175;3;-0.000000, 0.660698,-0.000000;;, - 176;3;-0.000000, 0.660698,-0.000000;;, - 177;3;-0.000000, 0.660698,-0.000000;;, - 178;3;-0.000000, 0.660698,-0.000000;;, - 179;3;-0.000000, 0.660698,-0.000000;;, - 180;3;-0.000000, 0.660698,-0.000000;;, - 181;3; 0.000000, 0.660698,-0.000000;;, - 182;3; 0.000000, 0.660698,-0.000000;;, - 183;3;-0.000000, 0.660698,-0.000000;;, - 184;3; 0.000000, 0.660699,-0.000000;;, - 185;3;-0.000000, 0.660699,-0.000000;;, - 186;3;-0.000000, 0.660698,-0.000000;;, - 187;3;-0.000000, 0.660698,-0.000000;;, - 188;3; 0.000000, 0.660698, 0.000000;;, - 189;3;-0.000000, 0.660698,-0.000000;;, - 190;3;-0.000000, 0.660699,-0.000000;;, - 191;3;-0.000000, 0.660698,-0.000000;;, - 192;3;-0.000000, 0.660698,-0.000000;;, - 193;3; 0.000000, 0.660698,-0.000000;;, - 194;3;-0.000000, 0.660698,-0.000000;;, - 195;3;-0.000001, 0.660698, 0.000000;;, - 196;3; 0.000000, 0.660698, 0.000000;;, - 197;3; 0.000000, 0.660698,-0.000000;;, - 198;3;-0.000000, 0.660698,-0.000000;;, - 199;3;-0.000000, 0.660698,-0.000000;;, - 200;3;-0.000000, 0.660698,-0.000000;;, - 201;3;-0.000000, 0.660698,-0.000000;;, - 202;3;-0.000000, 0.660698,-0.000000;;, - 203;3;-0.000000, 0.660698,-0.000000;;, - 204;3;-0.000000, 0.660698,-0.000000;;, - 205;3;-0.000000, 0.660698,-0.000000;;, - 206;3;-0.000000, 0.660698,-0.000000;;, - 207;3;-0.000000, 0.660698,-0.000000;;, - 208;3;-0.000000, 0.660698,-0.000000;;, - 209;3;-0.000000, 0.660698,-0.000000;;, - 210;3;-0.000000, 0.660698,-0.000000;;, - 211;3;-0.000000, 0.660698,-0.000000;;, - 212;3;-0.000000, 0.660698,-0.000000;;, - 213;3;-0.000000, 0.660698,-0.000000;;, - 214;3;-0.000000, 0.660698,-0.000000;;, - 215;3;-0.000000, 0.660698,-0.000000;;, - 216;3;-0.000000, 0.660698,-0.000000;;, - 217;3;-0.000000, 0.660698,-0.000000;;, - 218;3;-0.000000, 0.660698,-0.000000;;, - 219;3;-0.000000, 0.660698,-0.000000;;, - 220;3;-0.000000, 0.660698,-0.000000;;, - 221;3;-0.000000, 0.660698,-0.000000;;, - 222;3;-0.000000, 0.660698,-0.000000;;, - 223;3;-0.000000, 0.660698,-0.000000;;, - 224;3;-0.000000, 0.660698,-0.000000;;, - 225;3;-0.000000, 0.660698,-0.000000;;, - 226;3;-0.000000, 0.660698,-0.000000;;, - 227;3;-0.000000, 0.660698,-0.000000;;, - 228;3;-0.000000, 0.660698,-0.000000;;, - 229;3;-0.000000, 0.660698,-0.000000;;, - 230;3;-0.000000, 0.660698,-0.000000;;, - 231;3;-0.000000, 0.660698,-0.000000;;, - 232;3;-0.000000, 0.660698,-0.000000;;, - 233;3;-0.000000, 0.660698,-0.000000;;, - 234;3;-0.000000, 0.660698,-0.000000;;, - 235;3;-0.000000, 0.660698,-0.000000;;, - 236;3;-0.000000, 0.660698,-0.000000;;, - 237;3;-0.000000, 0.660698,-0.000000;;, - 238;3;-0.000000, 0.660698,-0.000000;;, - 239;3;-0.000000, 0.660698,-0.000000;;, - 240;3;-0.000000, 0.660698,-0.000000;;, - 241;3;-0.000000, 0.660698,-0.000000;;, - 242;3;-0.000000, 0.660698,-0.000000;;, - 243;3;-0.000000, 0.660698,-0.000000;;, - 244;3;-0.000000, 0.660698,-0.000000;;, - 245;3;-0.000000, 0.660698,-0.000000;;, - 246;3;-0.000000, 0.660698,-0.000000;;, - 247;3;-0.000000, 0.660698,-0.000000;;, - 248;3;-0.000000, 0.660698,-0.000000;;, - 249;3;-0.000000, 0.660698,-0.000000;;; - } - } - Animation { - {Armature_Bone_004} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 1;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 2;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 3;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 4;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 5;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 6;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 7;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 8;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 9;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 10;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 11;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 12;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 13;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 14;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 15;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 16;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 17;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 18;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 19;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 20;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 21;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 22;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 23;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 24;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 25;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 26;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 27;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 28;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 29;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 30;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 31;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 32;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 33;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 34;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 35;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 36;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 37;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 38;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 39;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 40;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 41;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 42;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 43;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 44;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 45;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 46;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 47;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 48;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 49;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 50;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 51;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 52;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 53;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 54;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 55;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 56;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 57;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 58;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 59;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 60;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 61;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 62;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 63;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 64;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 65;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 66;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 67;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 68;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 69;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 70;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 71;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 72;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 73;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 74;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 75;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 76;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 77;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 78;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 79;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 80;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 81;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 82;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 83;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 84;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 85;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 86;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 87;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 88;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 89;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 90;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 91;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 92;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 93;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 94;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 95;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 96;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 97;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 98;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 99;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 100;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 101;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 102;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 103;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 104;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 105;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 106;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 107;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 108;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 109;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 110;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 111;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 112;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 113;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 114;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 115;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 116;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 117;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 118;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 119;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 120;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 121;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 122;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 123;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 124;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 125;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 126;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 127;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 128;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 129;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 130;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 131;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 132;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 133;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 134;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 135;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 136;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 137;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 138;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 139;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 140;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 141;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 142;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 143;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 144;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 145;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 146;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 147;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 148;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 149;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 150;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 151;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 152;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 153;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 154;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 155;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 156;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 157;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 158;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 159;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 160;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 161;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 162;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 163;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 164;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 165;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 166;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 167;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 168;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 169;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 170;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 171;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 172;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 173;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 174;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 175;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 176;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 177;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 178;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 179;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 180;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 181;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 182;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 183;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 184;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 185;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 186;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 187;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 188;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 189;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 190;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 191;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 192;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 193;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 194;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 195;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 196;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 197;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 198;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 199;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 200;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 201;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 202;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 203;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 204;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 205;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 206;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 207;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 208;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 209;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 210;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 211;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 212;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 213;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 214;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 215;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 216;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 217;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 218;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 219;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 220;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 221;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 222;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 223;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 224;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 225;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 226;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 227;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 228;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 229;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 230;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 231;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 232;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 233;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 234;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 235;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 236;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 237;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 238;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 239;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 240;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 241;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 242;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 243;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 244;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 245;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 246;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 247;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 248;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 249;4;-0.972673, 0.149616, 0.026528, 0.175551;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3; 0.000000, 0.826434, 0.000000;;, - 1;3; 0.000000, 0.826434, 0.000000;;, - 2;3; 0.000000, 0.826434, 0.000000;;, - 3;3; 0.000000, 0.826434, 0.000000;;, - 4;3; 0.000000, 0.826434, 0.000000;;, - 5;3; 0.000000, 0.826434, 0.000000;;, - 6;3; 0.000000, 0.826434, 0.000000;;, - 7;3; 0.000000, 0.826434, 0.000000;;, - 8;3; 0.000000, 0.826434, 0.000000;;, - 9;3; 0.000000, 0.826434, 0.000000;;, - 10;3; 0.000000, 0.826434, 0.000000;;, - 11;3; 0.000000, 0.826434, 0.000000;;, - 12;3; 0.000000, 0.826434, 0.000000;;, - 13;3; 0.000000, 0.826434, 0.000000;;, - 14;3; 0.000000, 0.826434, 0.000000;;, - 15;3; 0.000000, 0.826434, 0.000000;;, - 16;3; 0.000000, 0.826434, 0.000000;;, - 17;3; 0.000000, 0.826434, 0.000000;;, - 18;3; 0.000000, 0.826434, 0.000000;;, - 19;3; 0.000000, 0.826434, 0.000000;;, - 20;3; 0.000000, 0.826434, 0.000000;;, - 21;3; 0.000000, 0.826434, 0.000000;;, - 22;3; 0.000000, 0.826434, 0.000000;;, - 23;3; 0.000000, 0.826434, 0.000000;;, - 24;3; 0.000000, 0.826434, 0.000000;;, - 25;3; 0.000000, 0.826434, 0.000000;;, - 26;3; 0.000000, 0.826434, 0.000000;;, - 27;3; 0.000000, 0.826434, 0.000000;;, - 28;3; 0.000000, 0.826434, 0.000000;;, - 29;3; 0.000000, 0.826434, 0.000000;;, - 30;3; 0.000000, 0.826434, 0.000000;;, - 31;3; 0.000000, 0.826434, 0.000000;;, - 32;3; 0.000000, 0.826434, 0.000000;;, - 33;3; 0.000000, 0.826434, 0.000000;;, - 34;3; 0.000000, 0.826434, 0.000000;;, - 35;3; 0.000000, 0.826434, 0.000000;;, - 36;3; 0.000000, 0.826434, 0.000000;;, - 37;3; 0.000000, 0.826434, 0.000000;;, - 38;3; 0.000000, 0.826434, 0.000000;;, - 39;3; 0.000000, 0.826434, 0.000000;;, - 40;3; 0.000000, 0.826434, 0.000000;;, - 41;3; 0.000000, 0.826434, 0.000000;;, - 42;3; 0.000000, 0.826434, 0.000000;;, - 43;3; 0.000000, 0.826434, 0.000000;;, - 44;3; 0.000000, 0.826434, 0.000000;;, - 45;3; 0.000000, 0.826434, 0.000000;;, - 46;3; 0.000000, 0.826434, 0.000000;;, - 47;3; 0.000000, 0.826434, 0.000000;;, - 48;3; 0.000000, 0.826434, 0.000000;;, - 49;3; 0.000000, 0.826434, 0.000000;;, - 50;3; 0.000000, 0.826434, 0.000000;;, - 51;3; 0.000000, 0.826434, 0.000000;;, - 52;3; 0.000000, 0.826434, 0.000000;;, - 53;3; 0.000000, 0.826434, 0.000000;;, - 54;3; 0.000000, 0.826434, 0.000000;;, - 55;3; 0.000000, 0.826434, 0.000000;;, - 56;3; 0.000000, 0.826434, 0.000000;;, - 57;3; 0.000000, 0.826434, 0.000000;;, - 58;3; 0.000000, 0.826434, 0.000000;;, - 59;3; 0.000000, 0.826434, 0.000000;;, - 60;3; 0.000000, 0.826434, 0.000000;;, - 61;3; 0.000000, 0.826434, 0.000000;;, - 62;3; 0.000000, 0.826434, 0.000000;;, - 63;3; 0.000000, 0.826434, 0.000000;;, - 64;3; 0.000000, 0.826434, 0.000000;;, - 65;3; 0.000000, 0.826434, 0.000000;;, - 66;3; 0.000000, 0.826434, 0.000000;;, - 67;3; 0.000000, 0.826434, 0.000000;;, - 68;3; 0.000000, 0.826434, 0.000000;;, - 69;3; 0.000000, 0.826434, 0.000000;;, - 70;3; 0.000000, 0.826434, 0.000000;;, - 71;3; 0.000000, 0.826434, 0.000000;;, - 72;3; 0.000000, 0.826434, 0.000000;;, - 73;3; 0.000000, 0.826434, 0.000000;;, - 74;3; 0.000000, 0.826434, 0.000000;;, - 75;3; 0.000000, 0.826434, 0.000000;;, - 76;3; 0.000000, 0.826434, 0.000000;;, - 77;3; 0.000000, 0.826434, 0.000000;;, - 78;3; 0.000000, 0.826434, 0.000000;;, - 79;3; 0.000000, 0.826434, 0.000000;;, - 80;3; 0.000000, 0.826434, 0.000000;;, - 81;3; 0.000000, 0.826434, 0.000000;;, - 82;3; 0.000000, 0.826434, 0.000000;;, - 83;3; 0.000000, 0.826434, 0.000000;;, - 84;3; 0.000000, 0.826434, 0.000000;;, - 85;3; 0.000000, 0.826434, 0.000000;;, - 86;3; 0.000000, 0.826434, 0.000000;;, - 87;3; 0.000000, 0.826434, 0.000000;;, - 88;3; 0.000000, 0.826434, 0.000000;;, - 89;3; 0.000000, 0.826434, 0.000000;;, - 90;3; 0.000000, 0.826434, 0.000000;;, - 91;3; 0.000000, 0.826434, 0.000000;;, - 92;3; 0.000000, 0.826434, 0.000000;;, - 93;3; 0.000000, 0.826434, 0.000000;;, - 94;3; 0.000000, 0.826434, 0.000000;;, - 95;3; 0.000000, 0.826434, 0.000000;;, - 96;3; 0.000000, 0.826434, 0.000000;;, - 97;3; 0.000000, 0.826434, 0.000000;;, - 98;3; 0.000000, 0.826434, 0.000000;;, - 99;3; 0.000000, 0.826434, 0.000000;;, - 100;3; 0.000000, 0.826434, 0.000000;;, - 101;3; 0.000000, 0.826434, 0.000000;;, - 102;3; 0.000000, 0.826434, 0.000000;;, - 103;3; 0.000000, 0.826434, 0.000000;;, - 104;3; 0.000000, 0.826434, 0.000000;;, - 105;3; 0.000000, 0.826434, 0.000000;;, - 106;3; 0.000000, 0.826434, 0.000000;;, - 107;3; 0.000000, 0.826434, 0.000000;;, - 108;3; 0.000000, 0.826434, 0.000000;;, - 109;3; 0.000000, 0.826434, 0.000000;;, - 110;3; 0.000000, 0.826434, 0.000000;;, - 111;3; 0.000000, 0.826434, 0.000000;;, - 112;3; 0.000000, 0.826434, 0.000000;;, - 113;3; 0.000000, 0.826434, 0.000000;;, - 114;3; 0.000000, 0.826434, 0.000000;;, - 115;3; 0.000000, 0.826434, 0.000000;;, - 116;3; 0.000000, 0.826434, 0.000000;;, - 117;3; 0.000000, 0.826434, 0.000000;;, - 118;3; 0.000000, 0.826434, 0.000000;;, - 119;3; 0.000000, 0.826434, 0.000000;;, - 120;3; 0.000000, 0.826434, 0.000000;;, - 121;3; 0.000000, 0.826434, 0.000000;;, - 122;3; 0.000000, 0.826434, 0.000000;;, - 123;3; 0.000000, 0.826434, 0.000000;;, - 124;3; 0.000000, 0.826434, 0.000000;;, - 125;3; 0.000000, 0.826434, 0.000000;;, - 126;3; 0.000000, 0.826434, 0.000000;;, - 127;3; 0.000000, 0.826434, 0.000000;;, - 128;3; 0.000000, 0.826434, 0.000000;;, - 129;3; 0.000000, 0.826434, 0.000000;;, - 130;3; 0.000000, 0.826434, 0.000000;;, - 131;3; 0.000000, 0.826434, 0.000000;;, - 132;3; 0.000000, 0.826434, 0.000000;;, - 133;3; 0.000000, 0.826434, 0.000000;;, - 134;3; 0.000000, 0.826434, 0.000000;;, - 135;3; 0.000000, 0.826434, 0.000000;;, - 136;3; 0.000000, 0.826434, 0.000000;;, - 137;3; 0.000000, 0.826434, 0.000000;;, - 138;3; 0.000000, 0.826434, 0.000000;;, - 139;3; 0.000000, 0.826434, 0.000000;;, - 140;3; 0.000000, 0.826434, 0.000000;;, - 141;3; 0.000000, 0.826434, 0.000000;;, - 142;3; 0.000000, 0.826434, 0.000000;;, - 143;3; 0.000000, 0.826434, 0.000000;;, - 144;3; 0.000000, 0.826434, 0.000000;;, - 145;3; 0.000000, 0.826434, 0.000000;;, - 146;3; 0.000000, 0.826434, 0.000000;;, - 147;3; 0.000000, 0.826434, 0.000000;;, - 148;3; 0.000000, 0.826434, 0.000000;;, - 149;3; 0.000000, 0.826434, 0.000000;;, - 150;3; 0.000000, 0.826434, 0.000000;;, - 151;3; 0.000000, 0.826434, 0.000000;;, - 152;3; 0.000000, 0.826434, 0.000000;;, - 153;3; 0.000000, 0.826434, 0.000000;;, - 154;3; 0.000000, 0.826434, 0.000000;;, - 155;3; 0.000000, 0.826434, 0.000000;;, - 156;3; 0.000000, 0.826434, 0.000000;;, - 157;3; 0.000000, 0.826434, 0.000000;;, - 158;3; 0.000000, 0.826434, 0.000000;;, - 159;3; 0.000000, 0.826434, 0.000000;;, - 160;3; 0.000000, 0.826434, 0.000000;;, - 161;3; 0.000000, 0.826434, 0.000000;;, - 162;3; 0.000000, 0.826434, 0.000000;;, - 163;3; 0.000000, 0.826434, 0.000000;;, - 164;3; 0.000000, 0.826434, 0.000000;;, - 165;3; 0.000000, 0.826434, 0.000000;;, - 166;3; 0.000000, 0.826434, 0.000000;;, - 167;3; 0.000000, 0.826434, 0.000000;;, - 168;3; 0.000000, 0.826434, 0.000000;;, - 169;3; 0.000000, 0.826434, 0.000000;;, - 170;3; 0.000000, 0.826434, 0.000000;;, - 171;3; 0.000000, 0.826434, 0.000000;;, - 172;3; 0.000000, 0.826434, 0.000000;;, - 173;3; 0.000000, 0.826434, 0.000000;;, - 174;3; 0.000000, 0.826434, 0.000000;;, - 175;3; 0.000000, 0.826434, 0.000000;;, - 176;3; 0.000000, 0.826434, 0.000000;;, - 177;3; 0.000000, 0.826434, 0.000000;;, - 178;3; 0.000000, 0.826434, 0.000000;;, - 179;3; 0.000000, 0.826434, 0.000000;;, - 180;3; 0.000000, 0.826434, 0.000000;;, - 181;3; 0.000000, 0.826434, 0.000000;;, - 182;3; 0.000000, 0.826434, 0.000000;;, - 183;3; 0.000000, 0.826434, 0.000000;;, - 184;3; 0.000000, 0.826434, 0.000000;;, - 185;3; 0.000000, 0.826434, 0.000000;;, - 186;3;-0.000000, 0.826434,-0.000000;;, - 187;3;-0.000000, 0.826434,-0.000000;;, - 188;3;-0.000000, 0.826434, 0.000000;;, - 189;3;-0.000000, 0.826434, 0.000000;;, - 190;3;-0.000000, 0.826434,-0.000000;;, - 191;3; 0.000000, 0.826434, 0.000000;;, - 192;3; 0.000000, 0.826434, 0.000000;;, - 193;3; 0.000000, 0.826434, 0.000000;;, - 194;3; 0.000000, 0.826434,-0.000000;;, - 195;3; 0.000000, 0.826434,-0.000000;;, - 196;3; 0.000000, 0.826434, 0.000000;;, - 197;3; 0.000000, 0.826434,-0.000000;;, - 198;3; 0.000000, 0.826434,-0.000000;;, - 199;3; 0.000000, 0.826434, 0.000000;;, - 200;3; 0.000000, 0.826434, 0.000000;;, - 201;3; 0.000000, 0.826434, 0.000000;;, - 202;3; 0.000000, 0.826434, 0.000000;;, - 203;3; 0.000000, 0.826434, 0.000000;;, - 204;3; 0.000000, 0.826434, 0.000000;;, - 205;3; 0.000000, 0.826434, 0.000000;;, - 206;3; 0.000000, 0.826434, 0.000000;;, - 207;3; 0.000000, 0.826434, 0.000000;;, - 208;3; 0.000000, 0.826434, 0.000000;;, - 209;3; 0.000000, 0.826434, 0.000000;;, - 210;3; 0.000000, 0.826434, 0.000000;;, - 211;3; 0.000000, 0.826434, 0.000000;;, - 212;3; 0.000000, 0.826434, 0.000000;;, - 213;3; 0.000000, 0.826434, 0.000000;;, - 214;3; 0.000000, 0.826434, 0.000000;;, - 215;3; 0.000000, 0.826434, 0.000000;;, - 216;3; 0.000000, 0.826434, 0.000000;;, - 217;3; 0.000000, 0.826434, 0.000000;;, - 218;3; 0.000000, 0.826434, 0.000000;;, - 219;3; 0.000000, 0.826434, 0.000000;;, - 220;3; 0.000000, 0.826434, 0.000000;;, - 221;3; 0.000000, 0.826434, 0.000000;;, - 222;3; 0.000000, 0.826434, 0.000000;;, - 223;3; 0.000000, 0.826434, 0.000000;;, - 224;3; 0.000000, 0.826434, 0.000000;;, - 225;3; 0.000000, 0.826434, 0.000000;;, - 226;3; 0.000000, 0.826434, 0.000000;;, - 227;3; 0.000000, 0.826434, 0.000000;;, - 228;3; 0.000000, 0.826434, 0.000000;;, - 229;3; 0.000000, 0.826434, 0.000000;;, - 230;3; 0.000000, 0.826434, 0.000000;;, - 231;3; 0.000000, 0.826434, 0.000000;;, - 232;3; 0.000000, 0.826434, 0.000000;;, - 233;3; 0.000000, 0.826434, 0.000000;;, - 234;3; 0.000000, 0.826434, 0.000000;;, - 235;3; 0.000000, 0.826434, 0.000000;;, - 236;3; 0.000000, 0.826434, 0.000000;;, - 237;3; 0.000000, 0.826434, 0.000000;;, - 238;3; 0.000000, 0.826434, 0.000000;;, - 239;3; 0.000000, 0.826434, 0.000000;;, - 240;3; 0.000000, 0.826434, 0.000000;;, - 241;3; 0.000000, 0.826434, 0.000000;;, - 242;3; 0.000000, 0.826434, 0.000000;;, - 243;3; 0.000000, 0.826434, 0.000000;;, - 244;3; 0.000000, 0.826434, 0.000000;;, - 245;3; 0.000000, 0.826434, 0.000000;;, - 246;3; 0.000000, 0.826434, 0.000000;;, - 247;3; 0.000000, 0.826434, 0.000000;;, - 248;3; 0.000000, 0.826434, 0.000000;;, - 249;3; 0.000000, 0.826434, 0.000000;;; - } - } - Animation { - {Armature_Bone_007} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 1;4;-0.515659,-0.636389,-0.395534, 0.415448;;, - 2;4;-0.516387,-0.635621,-0.396654, 0.414436;;, - 3;4;-0.517605,-0.634337,-0.398525, 0.412744;;, - 4;4;-0.519301,-0.632548,-0.401133, 0.410387;;, - 5;4;-0.521451,-0.630280,-0.404438, 0.407399;;, - 6;4;-0.524013,-0.627579,-0.408374, 0.403840;;, - 7;4;-0.526923,-0.624511,-0.412847, 0.399796;;, - 8;4;-0.530100,-0.621161,-0.417729, 0.395382;;, - 9;4;-0.533444,-0.617634,-0.422869, 0.390735;;, - 10;4;-0.536846,-0.614047,-0.428097, 0.386009;;, - 11;4;-0.540190,-0.610520,-0.433237, 0.381362;;, - 12;4;-0.543367,-0.607170,-0.438119, 0.376948;;, - 13;4;-0.546277,-0.604101,-0.442591, 0.372904;;, - 14;4;-0.548838,-0.601400,-0.446528, 0.369345;;, - 15;4;-0.550988,-0.599133,-0.449833, 0.366357;;, - 16;4;-0.552685,-0.597344,-0.452440, 0.364000;;, - 17;4;-0.553903,-0.596060,-0.454312, 0.362308;;, - 18;4;-0.554631,-0.595291,-0.455431, 0.361296;;, - 19;4;-0.554872,-0.595037,-0.455802, 0.360961;;, - 20;4;-0.554616,-0.595287,-0.455415, 0.361298;;, - 21;4;-0.553843,-0.596044,-0.454247, 0.362316;;, - 22;4;-0.552551,-0.597310,-0.452293, 0.364019;;, - 23;4;-0.550749,-0.599077,-0.449568, 0.366395;;, - 24;4;-0.548460,-0.601325,-0.446106, 0.369416;;, - 25;4;-0.545722,-0.604014,-0.441965, 0.373031;;, - 26;4;-0.542594,-0.607091,-0.437232, 0.377164;;, - 27;4;-0.539154,-0.610481,-0.432025, 0.381716;;, - 28;4;-0.535495,-0.614092,-0.426485, 0.386563;;, - 29;4;-0.531725,-0.617821,-0.420774, 0.391564;;, - 30;4;-0.527960,-0.621555,-0.415067, 0.396569;;, - 31;4;-0.524314,-0.625182,-0.409537, 0.401427;;, - 32;4;-0.520896,-0.628599,-0.404346, 0.405996;;, - 33;4;-0.517798,-0.631712,-0.399636, 0.410154;;, - 34;4;-0.515097,-0.634448,-0.395524, 0.413798;;, - 35;4;-0.512852,-0.636749,-0.392095, 0.416855;;, - 36;4;-0.511099,-0.638578,-0.389408, 0.419271;;, - 37;4;-0.509861,-0.639911,-0.387496, 0.421018;;, - 38;4;-0.509147,-0.640741,-0.386373, 0.422084;;, - 39;4;-0.508954,-0.641069,-0.386035, 0.422471;;, - 40;4;-0.509050,-0.641118,-0.386131, 0.422482;;, - 41;4;-0.509208,-0.641107,-0.386322, 0.422412;;, - 42;4;-0.509430,-0.641035,-0.386608, 0.422259;;, - 43;4;-0.509713,-0.640903,-0.386987, 0.422025;;, - 44;4;-0.510054,-0.640712,-0.387455, 0.421713;;, - 45;4;-0.510449,-0.640466,-0.388004, 0.421328;;, - 46;4;-0.510889,-0.640172,-0.388624, 0.420879;;, - 47;4;-0.511365,-0.639837,-0.389299, 0.420378;;, - 48;4;-0.511864,-0.639472,-0.390012, 0.419839;;, - 49;4;-0.512374,-0.639088,-0.390743, 0.419279;;, - 50;4;-0.512879,-0.638699,-0.391471, 0.418715;;, - 51;4;-0.513365,-0.638318,-0.392174, 0.418165;;, - 52;4;-0.513819,-0.637956,-0.392832, 0.417646;;, - 53;4;-0.514229,-0.637625,-0.393429, 0.417174;;, - 54;4;-0.514587,-0.637333,-0.393950, 0.416759;;, - 55;4;-0.514884,-0.637088,-0.394384, 0.416411;;, - 56;4;-0.515118,-0.636894,-0.394726, 0.416137;;, - 57;4;-0.515285,-0.636755,-0.394970, 0.415940;;, - 58;4;-0.515385,-0.636671,-0.395116, 0.415822;;, - 59;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 60;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 61;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 62;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 63;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 64;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 65;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 66;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 67;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 68;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 69;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 70;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 71;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 72;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 73;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 74;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 75;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 76;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 77;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 78;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 79;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 80;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 81;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 82;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 83;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 84;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 85;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 86;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 87;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 88;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 89;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 90;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 91;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 92;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 93;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 94;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 95;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 96;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 97;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 98;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 99;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 100;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 101;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 102;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 103;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 104;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 105;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 106;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 107;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 108;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 109;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 110;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 111;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 112;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 113;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 114;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 115;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 116;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 117;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 118;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 119;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 120;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 121;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 122;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 123;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 124;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 125;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 126;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 127;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 128;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 129;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 130;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 131;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 132;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 133;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 134;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 135;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 136;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 137;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 138;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 139;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 140;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 141;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 142;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 143;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 144;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 145;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 146;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 147;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 148;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 149;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 150;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 151;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 152;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 153;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 154;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 155;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 156;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 157;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 158;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 159;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 160;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 161;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 162;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 163;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 164;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 165;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 166;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 167;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 168;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 169;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 170;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 171;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 172;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 173;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 174;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 175;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 176;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 177;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 178;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 179;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 180;4;-0.517803,-0.633175,-0.399151, 0.411554;;, - 181;4;-0.524982,-0.622736,-0.411150, 0.398827;;, - 182;4;-0.536656,-0.605762,-0.430659, 0.378134;;, - 183;4;-0.551924,-0.583561,-0.456177, 0.351068;;, - 184;4;-0.569221,-0.558412,-0.485084, 0.320407;;, - 185;4;-0.586517,-0.533262,-0.513991, 0.289746;;, - 186;4;-0.601785,-0.511061,-0.539509, 0.262681;;, - 187;4;-0.613459,-0.494087,-0.559018, 0.241988;;, - 188;4;-0.620638,-0.483648,-0.571017, 0.229261;;, - 189;4;-0.623024,-0.480179,-0.575004, 0.225032;;, - 190;4;-0.617019,-0.490586,-0.564405, 0.237283;;, - 191;4;-0.599355,-0.520635,-0.533415, 0.272782;;, - 192;4;-0.574661,-0.561199,-0.490578, 0.321024;;, - 193;4;-0.551509,-0.596645,-0.451285, 0.363775;;, - 194;4;-0.536168,-0.616235,-0.426559, 0.388364;;, - 195;4;-0.526702,-0.625545,-0.412238, 0.400872;;, - 196;4;-0.520101,-0.632037,-0.402251, 0.409594;;, - 197;4;-0.516659,-0.635422,-0.397042, 0.414142;;, - 198;4;-0.515546,-0.636517,-0.395359, 0.415613;;, - 199;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 200;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 201;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 202;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 203;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 204;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 205;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 206;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 207;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 208;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 209;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 210;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 211;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 212;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 213;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 214;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 215;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 216;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 217;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 218;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 219;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 220;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 221;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 222;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 223;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 224;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 225;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 226;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 227;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 228;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 229;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 230;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 231;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 232;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 233;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 234;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 235;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 236;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 237;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 238;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 239;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 240;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 241;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 242;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 243;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 244;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 245;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 246;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 247;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 248;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 249;4;-0.515417,-0.636643,-0.395164, 0.415783;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3;-0.000000, 0.747179, 0.000000;;, - 1;3;-0.000000, 0.747179, 0.000000;;, - 2;3;-0.000000, 0.747179, 0.000000;;, - 3;3;-0.000000, 0.747179, 0.000000;;, - 4;3;-0.000000, 0.747179, 0.000000;;, - 5;3;-0.000000, 0.747179, 0.000000;;, - 6;3;-0.000000, 0.747179, 0.000000;;, - 7;3;-0.000000, 0.747179, 0.000000;;, - 8;3;-0.000000, 0.747179, 0.000000;;, - 9;3;-0.000000, 0.747179, 0.000000;;, - 10;3;-0.000000, 0.747179, 0.000000;;, - 11;3;-0.000000, 0.747179, 0.000000;;, - 12;3;-0.000000, 0.747179, 0.000000;;, - 13;3;-0.000000, 0.747179, 0.000000;;, - 14;3;-0.000000, 0.747179, 0.000000;;, - 15;3;-0.000000, 0.747179, 0.000000;;, - 16;3;-0.000000, 0.747179, 0.000000;;, - 17;3;-0.000000, 0.747179, 0.000000;;, - 18;3;-0.000000, 0.747179, 0.000000;;, - 19;3;-0.000000, 0.747179, 0.000000;;, - 20;3;-0.000000, 0.747179, 0.000000;;, - 21;3;-0.000000, 0.747179, 0.000000;;, - 22;3;-0.000000, 0.747179, 0.000000;;, - 23;3;-0.000000, 0.747179, 0.000000;;, - 24;3;-0.000000, 0.747179, 0.000000;;, - 25;3;-0.000000, 0.747179, 0.000000;;, - 26;3;-0.000000, 0.747179, 0.000000;;, - 27;3;-0.000000, 0.747179, 0.000000;;, - 28;3;-0.000000, 0.747179, 0.000000;;, - 29;3;-0.000000, 0.747179, 0.000000;;, - 30;3;-0.000000, 0.747179, 0.000000;;, - 31;3;-0.000000, 0.747179, 0.000000;;, - 32;3;-0.000000, 0.747179, 0.000000;;, - 33;3;-0.000000, 0.747179, 0.000000;;, - 34;3;-0.000000, 0.747179, 0.000000;;, - 35;3;-0.000000, 0.747179, 0.000000;;, - 36;3;-0.000000, 0.747179, 0.000000;;, - 37;3;-0.000000, 0.747179, 0.000000;;, - 38;3;-0.000000, 0.747179, 0.000000;;, - 39;3;-0.000000, 0.747179, 0.000000;;, - 40;3;-0.000000, 0.747179, 0.000000;;, - 41;3;-0.000000, 0.747179, 0.000000;;, - 42;3;-0.000000, 0.747179, 0.000000;;, - 43;3;-0.000000, 0.747179, 0.000000;;, - 44;3;-0.000000, 0.747179, 0.000000;;, - 45;3;-0.000000, 0.747179, 0.000000;;, - 46;3;-0.000000, 0.747179, 0.000000;;, - 47;3;-0.000000, 0.747179, 0.000000;;, - 48;3;-0.000000, 0.747179, 0.000000;;, - 49;3;-0.000000, 0.747179, 0.000000;;, - 50;3;-0.000000, 0.747179, 0.000000;;, - 51;3;-0.000000, 0.747179, 0.000000;;, - 52;3;-0.000000, 0.747179, 0.000000;;, - 53;3;-0.000000, 0.747179, 0.000000;;, - 54;3;-0.000000, 0.747179, 0.000000;;, - 55;3;-0.000000, 0.747179, 0.000000;;, - 56;3;-0.000000, 0.747179, 0.000000;;, - 57;3;-0.000000, 0.747179, 0.000000;;, - 58;3;-0.000000, 0.747179, 0.000000;;, - 59;3;-0.000000, 0.747179, 0.000000;;, - 60;3;-0.000000, 0.747179, 0.000000;;, - 61;3;-0.000000, 0.747179, 0.000000;;, - 62;3;-0.000000, 0.747179, 0.000000;;, - 63;3;-0.000000, 0.747179, 0.000000;;, - 64;3;-0.000000, 0.747179, 0.000000;;, - 65;3;-0.000000, 0.747179, 0.000000;;, - 66;3;-0.000000, 0.747179, 0.000000;;, - 67;3;-0.000000, 0.747179, 0.000000;;, - 68;3;-0.000000, 0.747179, 0.000000;;, - 69;3;-0.000000, 0.747179, 0.000000;;, - 70;3;-0.000000, 0.747179, 0.000000;;, - 71;3;-0.000000, 0.747179, 0.000000;;, - 72;3;-0.000000, 0.747179, 0.000000;;, - 73;3;-0.000000, 0.747179, 0.000000;;, - 74;3;-0.000000, 0.747179, 0.000000;;, - 75;3;-0.000000, 0.747179, 0.000000;;, - 76;3;-0.000000, 0.747179, 0.000000;;, - 77;3;-0.000000, 0.747179, 0.000000;;, - 78;3;-0.000000, 0.747179, 0.000000;;, - 79;3;-0.000000, 0.747179, 0.000000;;, - 80;3;-0.000000, 0.747179, 0.000000;;, - 81;3;-0.000000, 0.747179, 0.000000;;, - 82;3;-0.000000, 0.747179, 0.000000;;, - 83;3;-0.000000, 0.747179, 0.000000;;, - 84;3;-0.000000, 0.747179, 0.000000;;, - 85;3;-0.000000, 0.747179, 0.000000;;, - 86;3;-0.000000, 0.747179, 0.000000;;, - 87;3;-0.000000, 0.747179, 0.000000;;, - 88;3;-0.000000, 0.747179, 0.000000;;, - 89;3;-0.000000, 0.747179, 0.000000;;, - 90;3;-0.000000, 0.747179, 0.000000;;, - 91;3;-0.000000, 0.747179, 0.000000;;, - 92;3;-0.000000, 0.747179, 0.000000;;, - 93;3;-0.000000, 0.747179, 0.000000;;, - 94;3;-0.000000, 0.747179, 0.000000;;, - 95;3;-0.000000, 0.747179, 0.000000;;, - 96;3;-0.000000, 0.747179, 0.000000;;, - 97;3;-0.000000, 0.747179, 0.000000;;, - 98;3;-0.000000, 0.747179, 0.000000;;, - 99;3;-0.000000, 0.747179, 0.000000;;, - 100;3;-0.000000, 0.747179, 0.000000;;, - 101;3;-0.000000, 0.747179, 0.000000;;, - 102;3;-0.000000, 0.747179, 0.000000;;, - 103;3;-0.000000, 0.747179, 0.000000;;, - 104;3;-0.000000, 0.747179, 0.000000;;, - 105;3;-0.000000, 0.747179, 0.000000;;, - 106;3;-0.000000, 0.747179, 0.000000;;, - 107;3;-0.000000, 0.747179, 0.000000;;, - 108;3;-0.000000, 0.747179, 0.000000;;, - 109;3;-0.000000, 0.747179, 0.000000;;, - 110;3;-0.000000, 0.747179, 0.000000;;, - 111;3;-0.000000, 0.747179, 0.000000;;, - 112;3;-0.000000, 0.747179, 0.000000;;, - 113;3;-0.000000, 0.747179, 0.000000;;, - 114;3;-0.000000, 0.747179, 0.000000;;, - 115;3;-0.000000, 0.747179, 0.000000;;, - 116;3;-0.000000, 0.747179, 0.000000;;, - 117;3;-0.000000, 0.747179, 0.000000;;, - 118;3;-0.000000, 0.747179, 0.000000;;, - 119;3;-0.000000, 0.747179, 0.000000;;, - 120;3;-0.000000, 0.747179, 0.000000;;, - 121;3;-0.000000, 0.747179, 0.000000;;, - 122;3;-0.000000, 0.747179, 0.000000;;, - 123;3;-0.000000, 0.747179, 0.000000;;, - 124;3;-0.000000, 0.747179, 0.000000;;, - 125;3;-0.000000, 0.747179, 0.000000;;, - 126;3;-0.000000, 0.747179, 0.000000;;, - 127;3;-0.000000, 0.747179, 0.000000;;, - 128;3;-0.000000, 0.747179, 0.000000;;, - 129;3;-0.000000, 0.747179, 0.000000;;, - 130;3;-0.000000, 0.747179, 0.000000;;, - 131;3;-0.000000, 0.747179, 0.000000;;, - 132;3;-0.000000, 0.747179, 0.000000;;, - 133;3;-0.000000, 0.747179, 0.000000;;, - 134;3;-0.000000, 0.747179, 0.000000;;, - 135;3;-0.000000, 0.747179, 0.000000;;, - 136;3;-0.000000, 0.747179, 0.000000;;, - 137;3;-0.000000, 0.747179, 0.000000;;, - 138;3;-0.000000, 0.747179, 0.000000;;, - 139;3;-0.000000, 0.747179, 0.000000;;, - 140;3;-0.000000, 0.747179, 0.000000;;, - 141;3;-0.000000, 0.747179, 0.000000;;, - 142;3;-0.000000, 0.747179, 0.000000;;, - 143;3;-0.000000, 0.747179, 0.000000;;, - 144;3;-0.000000, 0.747179, 0.000000;;, - 145;3;-0.000000, 0.747179, 0.000000;;, - 146;3;-0.000000, 0.747179, 0.000000;;, - 147;3;-0.000000, 0.747179, 0.000000;;, - 148;3;-0.000000, 0.747179, 0.000000;;, - 149;3;-0.000000, 0.747179, 0.000000;;, - 150;3;-0.000000, 0.747179, 0.000000;;, - 151;3;-0.000000, 0.747179, 0.000000;;, - 152;3;-0.000000, 0.747179, 0.000000;;, - 153;3;-0.000000, 0.747179, 0.000000;;, - 154;3;-0.000000, 0.747179, 0.000000;;, - 155;3;-0.000000, 0.747179, 0.000000;;, - 156;3;-0.000000, 0.747179, 0.000000;;, - 157;3;-0.000000, 0.747179, 0.000000;;, - 158;3;-0.000000, 0.747179, 0.000000;;, - 159;3;-0.000000, 0.747179, 0.000000;;, - 160;3;-0.000000, 0.747179, 0.000000;;, - 161;3;-0.000000, 0.747179, 0.000000;;, - 162;3;-0.000000, 0.747179, 0.000000;;, - 163;3;-0.000000, 0.747179, 0.000000;;, - 164;3;-0.000000, 0.747179, 0.000000;;, - 165;3;-0.000000, 0.747179, 0.000000;;, - 166;3;-0.000000, 0.747179, 0.000000;;, - 167;3;-0.000000, 0.747179, 0.000000;;, - 168;3;-0.000000, 0.747179, 0.000000;;, - 169;3;-0.000000, 0.747179, 0.000000;;, - 170;3;-0.000000, 0.747179, 0.000000;;, - 171;3;-0.000000, 0.747179, 0.000000;;, - 172;3;-0.000000, 0.747179, 0.000000;;, - 173;3;-0.000000, 0.747179, 0.000000;;, - 174;3;-0.000000, 0.747179, 0.000000;;, - 175;3;-0.000000, 0.747179, 0.000000;;, - 176;3;-0.000000, 0.747179, 0.000000;;, - 177;3;-0.000000, 0.747179, 0.000000;;, - 178;3;-0.000000, 0.747179, 0.000000;;, - 179;3;-0.000000, 0.747179, 0.000000;;, - 180;3; 0.000000, 0.747180, 0.000000;;, - 181;3; 0.000000, 0.747180, 0.000000;;, - 182;3; 0.000000, 0.747180,-0.000000;;, - 183;3; 0.000000, 0.747180,-0.000000;;, - 184;3; 0.000000, 0.747179,-0.000000;;, - 185;3; 0.000000, 0.747180, 0.000000;;, - 186;3; 0.000000, 0.747180, 0.000000;;, - 187;3; 0.000000, 0.747180, 0.000000;;, - 188;3; 0.000000, 0.747179, 0.000000;;, - 189;3; 0.000000, 0.747180, 0.000000;;, - 190;3; 0.000000, 0.747180,-0.000000;;, - 191;3; 0.000000, 0.747179, 0.000000;;, - 192;3; 0.000000, 0.747180, 0.000000;;, - 193;3; 0.000000, 0.747179,-0.000000;;, - 194;3; 0.000000, 0.747179, 0.000000;;, - 195;3; 0.000000, 0.747179,-0.000000;;, - 196;3; 0.000000, 0.747180, 0.000000;;, - 197;3; 0.000000, 0.747179, 0.000000;;, - 198;3;-0.000000, 0.747179, 0.000000;;, - 199;3;-0.000000, 0.747179, 0.000000;;, - 200;3;-0.000000, 0.747179, 0.000000;;, - 201;3;-0.000000, 0.747179, 0.000000;;, - 202;3;-0.000000, 0.747179, 0.000000;;, - 203;3;-0.000000, 0.747179, 0.000000;;, - 204;3;-0.000000, 0.747179, 0.000000;;, - 205;3;-0.000000, 0.747179, 0.000000;;, - 206;3;-0.000000, 0.747179, 0.000000;;, - 207;3;-0.000000, 0.747179, 0.000000;;, - 208;3;-0.000000, 0.747179, 0.000000;;, - 209;3;-0.000000, 0.747179, 0.000000;;, - 210;3;-0.000000, 0.747179, 0.000000;;, - 211;3;-0.000000, 0.747179, 0.000000;;, - 212;3;-0.000000, 0.747179, 0.000000;;, - 213;3;-0.000000, 0.747179, 0.000000;;, - 214;3;-0.000000, 0.747179, 0.000000;;, - 215;3;-0.000000, 0.747179, 0.000000;;, - 216;3;-0.000000, 0.747179, 0.000000;;, - 217;3;-0.000000, 0.747179, 0.000000;;, - 218;3;-0.000000, 0.747179, 0.000000;;, - 219;3;-0.000000, 0.747179, 0.000000;;, - 220;3;-0.000000, 0.747179, 0.000000;;, - 221;3;-0.000000, 0.747179, 0.000000;;, - 222;3;-0.000000, 0.747179, 0.000000;;, - 223;3;-0.000000, 0.747179, 0.000000;;, - 224;3;-0.000000, 0.747179, 0.000000;;, - 225;3;-0.000000, 0.747179, 0.000000;;, - 226;3;-0.000000, 0.747179, 0.000000;;, - 227;3;-0.000000, 0.747179, 0.000000;;, - 228;3;-0.000000, 0.747179, 0.000000;;, - 229;3;-0.000000, 0.747179, 0.000000;;, - 230;3;-0.000000, 0.747179, 0.000000;;, - 231;3;-0.000000, 0.747179, 0.000000;;, - 232;3;-0.000000, 0.747179, 0.000000;;, - 233;3;-0.000000, 0.747179, 0.000000;;, - 234;3;-0.000000, 0.747179, 0.000000;;, - 235;3;-0.000000, 0.747179, 0.000000;;, - 236;3;-0.000000, 0.747179, 0.000000;;, - 237;3;-0.000000, 0.747179, 0.000000;;, - 238;3;-0.000000, 0.747179, 0.000000;;, - 239;3;-0.000000, 0.747179, 0.000000;;, - 240;3;-0.000000, 0.747179, 0.000000;;, - 241;3;-0.000000, 0.747179, 0.000000;;, - 242;3;-0.000000, 0.747179, 0.000000;;, - 243;3;-0.000000, 0.747179, 0.000000;;, - 244;3;-0.000000, 0.747179, 0.000000;;, - 245;3;-0.000000, 0.747179, 0.000000;;, - 246;3;-0.000000, 0.747179, 0.000000;;, - 247;3;-0.000000, 0.747179, 0.000000;;, - 248;3;-0.000000, 0.747179, 0.000000;;, - 249;3;-0.000000, 0.747179, 0.000000;;; - } - } - Animation { - {Armature_Bone_008} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 1;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 2;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 3;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 4;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 5;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 6;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 7;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 8;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 9;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 10;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 11;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 12;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 13;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 14;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 15;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 16;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 17;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 18;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 19;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 20;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 21;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 22;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 23;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 24;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 25;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 26;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 27;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 28;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 29;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 30;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 31;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 32;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 33;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 34;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 35;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 36;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 37;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 38;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 39;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 40;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 41;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 42;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 43;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 44;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 45;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 46;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 47;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 48;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 49;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 50;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 51;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 52;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 53;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 54;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 55;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 56;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 57;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 58;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 59;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 60;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 61;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 62;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 63;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 64;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 65;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 66;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 67;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 68;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 69;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 70;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 71;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 72;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 73;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 74;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 75;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 76;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 77;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 78;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 79;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 80;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 81;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 82;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 83;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 84;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 85;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 86;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 87;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 88;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 89;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 90;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 91;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 92;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 93;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 94;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 95;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 96;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 97;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 98;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 99;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 100;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 101;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 102;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 103;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 104;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 105;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 106;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 107;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 108;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 109;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 110;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 111;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 112;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 113;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 114;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 115;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 116;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 117;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 118;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 119;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 120;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 121;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 122;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 123;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 124;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 125;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 126;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 127;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 128;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 129;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 130;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 131;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 132;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 133;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 134;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 135;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 136;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 137;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 138;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 139;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 140;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 141;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 142;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 143;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 144;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 145;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 146;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 147;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 148;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 149;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 150;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 151;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 152;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 153;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 154;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 155;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 156;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 157;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 158;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 159;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 160;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 161;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 162;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 163;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 164;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 165;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 166;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 167;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 168;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 169;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 170;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 171;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 172;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 173;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 174;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 175;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 176;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 177;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 178;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 179;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 180;4;-0.995868, 0.009787, 0.000946, 0.063192;;, - 181;4;-0.987946, 0.009754, 0.000660, 0.091312;;, - 182;4;-0.975066, 0.009701, 0.000195, 0.137033;;, - 183;4;-0.958218, 0.009631,-0.000413, 0.196833;;, - 184;4;-0.939133, 0.009551,-0.001102, 0.264577;;, - 185;4;-0.920048, 0.009472,-0.001791, 0.332321;;, - 186;4;-0.903201, 0.009401,-0.002399, 0.392121;;, - 187;4;-0.890320, 0.009348,-0.002864, 0.437842;;, - 188;4;-0.882398, 0.009315,-0.003150, 0.465962;;, - 189;4;-0.879766, 0.009304,-0.003245, 0.475305;;, - 190;4;-0.879766, 0.009304,-0.003245, 0.475305;;, - 191;4;-0.879766, 0.009304,-0.003245, 0.475305;;, - 192;4;-0.879766, 0.009304,-0.003245, 0.475305;;, - 193;4;-0.879766, 0.009304,-0.003245, 0.475305;;, - 194;4;-0.879766, 0.009304,-0.003245, 0.475305;;, - 195;4;-0.890320, 0.009348,-0.002864, 0.437842;;, - 196;4;-0.920048, 0.009472,-0.001791, 0.332321;;, - 197;4;-0.958218, 0.009631,-0.000413, 0.196833;;, - 198;4;-0.987946, 0.009754, 0.000660, 0.091312;;, - 199;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 200;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 201;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 202;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 203;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 204;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 205;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 206;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 207;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 208;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 209;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 210;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 211;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 212;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 213;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 214;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 215;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 216;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 217;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 218;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 219;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 220;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 221;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 222;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 223;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 224;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 225;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 226;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 227;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 228;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 229;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 230;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 231;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 232;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 233;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 234;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 235;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 236;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 237;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 238;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 239;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 240;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 241;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 242;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 243;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 244;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 245;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 246;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 247;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 248;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 249;4;-0.998500, 0.009798, 0.001041, 0.053849;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3; 0.000000, 0.672674,-0.000000;;, - 1;3;-0.000000, 0.672674, 0.000000;;, - 2;3; 0.000000, 0.672674, 0.000000;;, - 3;3; 0.000000, 0.672674,-0.000000;;, - 4;3;-0.000000, 0.672674, 0.000000;;, - 5;3;-0.000000, 0.672674, 0.000000;;, - 6;3;-0.000000, 0.672674,-0.000000;;, - 7;3;-0.000000, 0.672674,-0.000000;;, - 8;3;-0.000000, 0.672674,-0.000000;;, - 9;3;-0.000000, 0.672674, 0.000000;;, - 10;3; 0.000000, 0.672674,-0.000000;;, - 11;3; 0.000000, 0.672674,-0.000000;;, - 12;3; 0.000000, 0.672674,-0.000000;;, - 13;3;-0.000000, 0.672674,-0.000000;;, - 14;3;-0.000000, 0.672674,-0.000000;;, - 15;3;-0.000000, 0.672674,-0.000000;;, - 16;3;-0.000000, 0.672674, 0.000000;;, - 17;3; 0.000000, 0.672674,-0.000000;;, - 18;3;-0.000000, 0.672674, 0.000000;;, - 19;3;-0.000000, 0.672674,-0.000000;;, - 20;3; 0.000000, 0.672674,-0.000000;;, - 21;3; 0.000000, 0.672674, 0.000000;;, - 22;3; 0.000000, 0.672674,-0.000000;;, - 23;3; 0.000000, 0.672674,-0.000000;;, - 24;3; 0.000000, 0.672674,-0.000000;;, - 25;3;-0.000000, 0.672674,-0.000000;;, - 26;3;-0.000000, 0.672674,-0.000000;;, - 27;3;-0.000000, 0.672674,-0.000000;;, - 28;3;-0.000000, 0.672674, 0.000000;;, - 29;3;-0.000000, 0.672674,-0.000000;;, - 30;3;-0.000001, 0.672674, 0.000000;;, - 31;3;-0.000000, 0.672674,-0.000000;;, - 32;3;-0.000000, 0.672674,-0.000000;;, - 33;3;-0.000000, 0.672674,-0.000000;;, - 34;3;-0.000000, 0.672674,-0.000000;;, - 35;3; 0.000000, 0.672674,-0.000000;;, - 36;3;-0.000000, 0.672674,-0.000000;;, - 37;3;-0.000001, 0.672674,-0.000000;;, - 38;3;-0.000000, 0.672674,-0.000000;;, - 39;3;-0.000000, 0.672674,-0.000000;;, - 40;3;-0.000000, 0.672674, 0.000000;;, - 41;3; 0.000000, 0.672674,-0.000000;;, - 42;3; 0.000000, 0.672674,-0.000000;;, - 43;3;-0.000000, 0.672674,-0.000000;;, - 44;3; 0.000000, 0.672674, 0.000000;;, - 45;3; 0.000000, 0.672674, 0.000000;;, - 46;3;-0.000000, 0.672674,-0.000000;;, - 47;3;-0.000000, 0.672674, 0.000000;;, - 48;3;-0.000000, 0.672674,-0.000000;;, - 49;3; 0.000000, 0.672674,-0.000000;;, - 50;3; 0.000000, 0.672674,-0.000000;;, - 51;3;-0.000000, 0.672674,-0.000000;;, - 52;3;-0.000000, 0.672674, 0.000000;;, - 53;3;-0.000000, 0.672674,-0.000000;;, - 54;3; 0.000000, 0.672674,-0.000000;;, - 55;3; 0.000000, 0.672675, 0.000000;;, - 56;3;-0.000000, 0.672674,-0.000000;;, - 57;3; 0.000000, 0.672674,-0.000000;;, - 58;3; 0.000000, 0.672674,-0.000000;;, - 59;3; 0.000000, 0.672674,-0.000000;;, - 60;3; 0.000000, 0.672674,-0.000000;;, - 61;3; 0.000000, 0.672674,-0.000000;;, - 62;3; 0.000000, 0.672674,-0.000000;;, - 63;3; 0.000000, 0.672674,-0.000000;;, - 64;3; 0.000000, 0.672674,-0.000000;;, - 65;3; 0.000000, 0.672674,-0.000000;;, - 66;3; 0.000000, 0.672674,-0.000000;;, - 67;3; 0.000000, 0.672674,-0.000000;;, - 68;3; 0.000000, 0.672674,-0.000000;;, - 69;3; 0.000000, 0.672674,-0.000000;;, - 70;3; 0.000000, 0.672674,-0.000000;;, - 71;3; 0.000000, 0.672674,-0.000000;;, - 72;3; 0.000000, 0.672674,-0.000000;;, - 73;3; 0.000000, 0.672674,-0.000000;;, - 74;3; 0.000000, 0.672674,-0.000000;;, - 75;3; 0.000000, 0.672674,-0.000000;;, - 76;3; 0.000000, 0.672674,-0.000000;;, - 77;3; 0.000000, 0.672674,-0.000000;;, - 78;3; 0.000000, 0.672674,-0.000000;;, - 79;3; 0.000000, 0.672674,-0.000000;;, - 80;3; 0.000000, 0.672674,-0.000000;;, - 81;3; 0.000000, 0.672674,-0.000000;;, - 82;3; 0.000000, 0.672674,-0.000000;;, - 83;3; 0.000000, 0.672674,-0.000000;;, - 84;3; 0.000000, 0.672674,-0.000000;;, - 85;3; 0.000000, 0.672674,-0.000000;;, - 86;3; 0.000000, 0.672674,-0.000000;;, - 87;3; 0.000000, 0.672674,-0.000000;;, - 88;3; 0.000000, 0.672674,-0.000000;;, - 89;3; 0.000000, 0.672674,-0.000000;;, - 90;3; 0.000000, 0.672674,-0.000000;;, - 91;3; 0.000000, 0.672674,-0.000000;;, - 92;3; 0.000000, 0.672674,-0.000000;;, - 93;3; 0.000000, 0.672674,-0.000000;;, - 94;3; 0.000000, 0.672674,-0.000000;;, - 95;3; 0.000000, 0.672674,-0.000000;;, - 96;3; 0.000000, 0.672674,-0.000000;;, - 97;3; 0.000000, 0.672674,-0.000000;;, - 98;3; 0.000000, 0.672674,-0.000000;;, - 99;3; 0.000000, 0.672674,-0.000000;;, - 100;3; 0.000000, 0.672674,-0.000000;;, - 101;3; 0.000000, 0.672674,-0.000000;;, - 102;3; 0.000000, 0.672674,-0.000000;;, - 103;3; 0.000000, 0.672674,-0.000000;;, - 104;3; 0.000000, 0.672674,-0.000000;;, - 105;3; 0.000000, 0.672674,-0.000000;;, - 106;3; 0.000000, 0.672674,-0.000000;;, - 107;3; 0.000000, 0.672674,-0.000000;;, - 108;3; 0.000000, 0.672674,-0.000000;;, - 109;3; 0.000000, 0.672674,-0.000000;;, - 110;3; 0.000000, 0.672674,-0.000000;;, - 111;3; 0.000000, 0.672674,-0.000000;;, - 112;3; 0.000000, 0.672674,-0.000000;;, - 113;3; 0.000000, 0.672674,-0.000000;;, - 114;3; 0.000000, 0.672674,-0.000000;;, - 115;3; 0.000000, 0.672674,-0.000000;;, - 116;3; 0.000000, 0.672674,-0.000000;;, - 117;3; 0.000000, 0.672674,-0.000000;;, - 118;3; 0.000000, 0.672674,-0.000000;;, - 119;3; 0.000000, 0.672674,-0.000000;;, - 120;3; 0.000000, 0.672674,-0.000000;;, - 121;3; 0.000000, 0.672674,-0.000000;;, - 122;3; 0.000000, 0.672674,-0.000000;;, - 123;3; 0.000000, 0.672674,-0.000000;;, - 124;3; 0.000000, 0.672674,-0.000000;;, - 125;3; 0.000000, 0.672674,-0.000000;;, - 126;3; 0.000000, 0.672674,-0.000000;;, - 127;3; 0.000000, 0.672674,-0.000000;;, - 128;3; 0.000000, 0.672674,-0.000000;;, - 129;3; 0.000000, 0.672674,-0.000000;;, - 130;3; 0.000000, 0.672674,-0.000000;;, - 131;3; 0.000000, 0.672674,-0.000000;;, - 132;3; 0.000000, 0.672674,-0.000000;;, - 133;3; 0.000000, 0.672674,-0.000000;;, - 134;3; 0.000000, 0.672674,-0.000000;;, - 135;3; 0.000000, 0.672674,-0.000000;;, - 136;3; 0.000000, 0.672674,-0.000000;;, - 137;3; 0.000000, 0.672674,-0.000000;;, - 138;3; 0.000000, 0.672674,-0.000000;;, - 139;3; 0.000000, 0.672674,-0.000000;;, - 140;3; 0.000000, 0.672674,-0.000000;;, - 141;3; 0.000000, 0.672674,-0.000000;;, - 142;3; 0.000000, 0.672674,-0.000000;;, - 143;3; 0.000000, 0.672674,-0.000000;;, - 144;3; 0.000000, 0.672674,-0.000000;;, - 145;3; 0.000000, 0.672674,-0.000000;;, - 146;3; 0.000000, 0.672674,-0.000000;;, - 147;3; 0.000000, 0.672674,-0.000000;;, - 148;3; 0.000000, 0.672674,-0.000000;;, - 149;3; 0.000000, 0.672674,-0.000000;;, - 150;3; 0.000000, 0.672674,-0.000000;;, - 151;3; 0.000000, 0.672674,-0.000000;;, - 152;3; 0.000000, 0.672674,-0.000000;;, - 153;3; 0.000000, 0.672674,-0.000000;;, - 154;3; 0.000000, 0.672674,-0.000000;;, - 155;3; 0.000000, 0.672674,-0.000000;;, - 156;3; 0.000000, 0.672674,-0.000000;;, - 157;3; 0.000000, 0.672674,-0.000000;;, - 158;3; 0.000000, 0.672674,-0.000000;;, - 159;3; 0.000000, 0.672674,-0.000000;;, - 160;3; 0.000000, 0.672674,-0.000000;;, - 161;3; 0.000000, 0.672674,-0.000000;;, - 162;3; 0.000000, 0.672674,-0.000000;;, - 163;3; 0.000000, 0.672674,-0.000000;;, - 164;3; 0.000000, 0.672674,-0.000000;;, - 165;3; 0.000000, 0.672674,-0.000000;;, - 166;3; 0.000000, 0.672674,-0.000000;;, - 167;3; 0.000000, 0.672674,-0.000000;;, - 168;3; 0.000000, 0.672674,-0.000000;;, - 169;3; 0.000000, 0.672674,-0.000000;;, - 170;3; 0.000000, 0.672674,-0.000000;;, - 171;3; 0.000000, 0.672674,-0.000000;;, - 172;3; 0.000000, 0.672674,-0.000000;;, - 173;3; 0.000000, 0.672674,-0.000000;;, - 174;3; 0.000000, 0.672674,-0.000000;;, - 175;3; 0.000000, 0.672674,-0.000000;;, - 176;3; 0.000000, 0.672674,-0.000000;;, - 177;3; 0.000000, 0.672674,-0.000000;;, - 178;3; 0.000000, 0.672674,-0.000000;;, - 179;3; 0.000000, 0.672674,-0.000000;;, - 180;3;-0.000000, 0.672674, 0.000000;;, - 181;3;-0.000000, 0.672674, 0.000000;;, - 182;3;-0.000000, 0.672674,-0.000000;;, - 183;3;-0.000000, 0.672674, 0.000000;;, - 184;3;-0.000000, 0.672674, 0.000000;;, - 185;3; 0.000000, 0.672674,-0.000000;;, - 186;3; 0.000000, 0.672674, 0.000000;;, - 187;3; 0.000000, 0.672675, 0.000000;;, - 188;3; 0.000000, 0.672674,-0.000000;;, - 189;3;-0.000000, 0.672674,-0.000000;;, - 190;3; 0.000000, 0.672674, 0.000000;;, - 191;3; 0.000000, 0.672674, 0.000000;;, - 192;3; 0.000001, 0.672674, 0.000000;;, - 193;3;-0.000000, 0.672674,-0.000000;;, - 194;3; 0.000000, 0.672674, 0.000000;;, - 195;3;-0.000000, 0.672674, 0.000000;;, - 196;3;-0.000000, 0.672674,-0.000000;;, - 197;3; 0.000000, 0.672674, 0.000000;;, - 198;3; 0.000000, 0.672674,-0.000000;;, - 199;3; 0.000000, 0.672674,-0.000000;;, - 200;3; 0.000000, 0.672674,-0.000000;;, - 201;3; 0.000000, 0.672674,-0.000000;;, - 202;3; 0.000000, 0.672674,-0.000000;;, - 203;3; 0.000000, 0.672674,-0.000000;;, - 204;3; 0.000000, 0.672674,-0.000000;;, - 205;3; 0.000000, 0.672674,-0.000000;;, - 206;3; 0.000000, 0.672674,-0.000000;;, - 207;3; 0.000000, 0.672674,-0.000000;;, - 208;3; 0.000000, 0.672674,-0.000000;;, - 209;3; 0.000000, 0.672674,-0.000000;;, - 210;3; 0.000000, 0.672674,-0.000000;;, - 211;3; 0.000000, 0.672674,-0.000000;;, - 212;3; 0.000000, 0.672674,-0.000000;;, - 213;3; 0.000000, 0.672674,-0.000000;;, - 214;3; 0.000000, 0.672674,-0.000000;;, - 215;3; 0.000000, 0.672674,-0.000000;;, - 216;3; 0.000000, 0.672674,-0.000000;;, - 217;3; 0.000000, 0.672674,-0.000000;;, - 218;3; 0.000000, 0.672674,-0.000000;;, - 219;3; 0.000000, 0.672674,-0.000000;;, - 220;3; 0.000000, 0.672674,-0.000000;;, - 221;3; 0.000000, 0.672674,-0.000000;;, - 222;3; 0.000000, 0.672674,-0.000000;;, - 223;3; 0.000000, 0.672674,-0.000000;;, - 224;3; 0.000000, 0.672674,-0.000000;;, - 225;3; 0.000000, 0.672674,-0.000000;;, - 226;3; 0.000000, 0.672674,-0.000000;;, - 227;3; 0.000000, 0.672674,-0.000000;;, - 228;3; 0.000000, 0.672674,-0.000000;;, - 229;3; 0.000000, 0.672674,-0.000000;;, - 230;3; 0.000000, 0.672674,-0.000000;;, - 231;3; 0.000000, 0.672674,-0.000000;;, - 232;3; 0.000000, 0.672674,-0.000000;;, - 233;3; 0.000000, 0.672674,-0.000000;;, - 234;3; 0.000000, 0.672674,-0.000000;;, - 235;3; 0.000000, 0.672674,-0.000000;;, - 236;3; 0.000000, 0.672674,-0.000000;;, - 237;3; 0.000000, 0.672674,-0.000000;;, - 238;3; 0.000000, 0.672674,-0.000000;;, - 239;3; 0.000000, 0.672674,-0.000000;;, - 240;3; 0.000000, 0.672674,-0.000000;;, - 241;3; 0.000000, 0.672674,-0.000000;;, - 242;3; 0.000000, 0.672674,-0.000000;;, - 243;3; 0.000000, 0.672674,-0.000000;;, - 244;3; 0.000000, 0.672674,-0.000000;;, - 245;3; 0.000000, 0.672674,-0.000000;;, - 246;3; 0.000000, 0.672674,-0.000000;;, - 247;3; 0.000000, 0.672674,-0.000000;;, - 248;3; 0.000000, 0.672674,-0.000000;;, - 249;3; 0.000000, 0.672674,-0.000000;;; - } - } - Animation { - {Armature_Bone_009} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 1;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 2;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 3;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 4;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 5;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 6;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 7;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 8;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 9;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 10;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 11;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 12;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 13;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 14;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 15;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 16;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 17;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 18;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 19;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 20;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 21;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 22;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 23;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 24;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 25;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 26;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 27;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 28;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 29;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 30;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 31;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 32;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 33;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 34;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 35;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 36;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 37;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 38;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 39;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 40;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 41;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 42;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 43;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 44;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 45;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 46;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 47;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 48;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 49;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 50;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 51;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 52;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 53;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 54;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 55;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 56;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 57;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 58;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 59;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 60;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 61;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 62;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 63;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 64;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 65;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 66;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 67;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 68;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 69;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 70;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 71;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 72;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 73;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 74;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 75;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 76;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 77;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 78;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 79;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 80;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 81;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 82;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 83;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 84;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 85;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 86;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 87;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 88;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 89;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 90;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 91;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 92;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 93;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 94;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 95;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 96;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 97;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 98;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 99;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 100;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 101;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 102;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 103;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 104;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 105;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 106;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 107;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 108;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 109;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 110;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 111;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 112;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 113;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 114;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 115;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 116;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 117;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 118;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 119;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 120;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 121;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 122;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 123;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 124;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 125;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 126;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 127;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 128;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 129;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 130;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 131;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 132;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 133;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 134;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 135;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 136;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 137;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 138;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 139;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 140;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 141;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 142;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 143;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 144;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 145;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 146;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 147;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 148;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 149;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 150;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 151;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 152;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 153;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 154;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 155;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 156;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 157;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 158;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 159;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 160;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 161;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 162;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 163;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 164;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 165;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 166;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 167;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 168;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 169;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 170;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 171;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 172;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 173;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 174;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 175;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 176;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 177;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 178;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 179;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 180;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 181;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 182;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 183;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 184;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 185;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 186;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 187;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 188;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 189;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 190;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 191;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 192;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 193;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 194;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 195;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 196;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 197;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 198;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 199;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 200;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 201;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 202;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 203;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 204;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 205;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 206;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 207;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 208;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 209;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 210;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 211;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 212;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 213;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 214;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 215;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 216;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 217;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 218;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 219;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 220;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 221;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 222;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 223;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 224;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 225;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 226;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 227;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 228;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 229;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 230;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 231;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 232;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 233;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 234;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 235;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 236;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 237;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 238;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 239;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 240;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 241;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 242;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 243;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 244;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 245;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 246;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 247;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 248;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 249;4;-0.361836, 0.000000,-0.000000, 0.932242;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3; 0.000000, 0.826434, 0.000000;;, - 1;3; 0.000000, 0.826434, 0.000000;;, - 2;3; 0.000000, 0.826434, 0.000000;;, - 3;3; 0.000000, 0.826434, 0.000000;;, - 4;3; 0.000000, 0.826434, 0.000000;;, - 5;3; 0.000000, 0.826434, 0.000000;;, - 6;3; 0.000000, 0.826434, 0.000000;;, - 7;3; 0.000000, 0.826434, 0.000000;;, - 8;3; 0.000000, 0.826434, 0.000000;;, - 9;3; 0.000000, 0.826434, 0.000000;;, - 10;3; 0.000000, 0.826434, 0.000000;;, - 11;3; 0.000000, 0.826434, 0.000000;;, - 12;3; 0.000000, 0.826434, 0.000000;;, - 13;3; 0.000000, 0.826434, 0.000000;;, - 14;3; 0.000000, 0.826434, 0.000000;;, - 15;3; 0.000000, 0.826434, 0.000000;;, - 16;3; 0.000000, 0.826434, 0.000000;;, - 17;3; 0.000000, 0.826434, 0.000000;;, - 18;3; 0.000000, 0.826434, 0.000000;;, - 19;3; 0.000000, 0.826434, 0.000000;;, - 20;3; 0.000000, 0.826434, 0.000000;;, - 21;3; 0.000000, 0.826434, 0.000000;;, - 22;3; 0.000000, 0.826434, 0.000000;;, - 23;3; 0.000000, 0.826434, 0.000000;;, - 24;3; 0.000000, 0.826434, 0.000000;;, - 25;3; 0.000000, 0.826434, 0.000000;;, - 26;3; 0.000000, 0.826434, 0.000000;;, - 27;3; 0.000000, 0.826434, 0.000000;;, - 28;3; 0.000000, 0.826434, 0.000000;;, - 29;3; 0.000000, 0.826434, 0.000000;;, - 30;3; 0.000000, 0.826434, 0.000000;;, - 31;3; 0.000000, 0.826434, 0.000000;;, - 32;3; 0.000000, 0.826434, 0.000000;;, - 33;3; 0.000000, 0.826434, 0.000000;;, - 34;3; 0.000000, 0.826434, 0.000000;;, - 35;3; 0.000000, 0.826434, 0.000000;;, - 36;3; 0.000000, 0.826434, 0.000000;;, - 37;3; 0.000000, 0.826434, 0.000000;;, - 38;3; 0.000000, 0.826434, 0.000000;;, - 39;3; 0.000000, 0.826434, 0.000000;;, - 40;3; 0.000000, 0.826434, 0.000000;;, - 41;3; 0.000000, 0.826434, 0.000000;;, - 42;3; 0.000000, 0.826434, 0.000000;;, - 43;3; 0.000000, 0.826434, 0.000000;;, - 44;3; 0.000000, 0.826434, 0.000000;;, - 45;3; 0.000000, 0.826434, 0.000000;;, - 46;3; 0.000000, 0.826434, 0.000000;;, - 47;3; 0.000000, 0.826434, 0.000000;;, - 48;3; 0.000000, 0.826434, 0.000000;;, - 49;3; 0.000000, 0.826434, 0.000000;;, - 50;3; 0.000000, 0.826434, 0.000000;;, - 51;3; 0.000000, 0.826434, 0.000000;;, - 52;3; 0.000000, 0.826434, 0.000000;;, - 53;3; 0.000000, 0.826434, 0.000000;;, - 54;3; 0.000000, 0.826434, 0.000000;;, - 55;3; 0.000000, 0.826434, 0.000000;;, - 56;3; 0.000000, 0.826434, 0.000000;;, - 57;3; 0.000000, 0.826434, 0.000000;;, - 58;3; 0.000000, 0.826434, 0.000000;;, - 59;3; 0.000000, 0.826434, 0.000000;;, - 60;3; 0.000000, 0.826434, 0.000000;;, - 61;3; 0.000000, 0.826434, 0.000000;;, - 62;3; 0.000000, 0.826434, 0.000000;;, - 63;3; 0.000000, 0.826434, 0.000000;;, - 64;3; 0.000000, 0.826434, 0.000000;;, - 65;3; 0.000000, 0.826434, 0.000000;;, - 66;3; 0.000000, 0.826434, 0.000000;;, - 67;3; 0.000000, 0.826434, 0.000000;;, - 68;3; 0.000000, 0.826434, 0.000000;;, - 69;3; 0.000000, 0.826434, 0.000000;;, - 70;3; 0.000000, 0.826434, 0.000000;;, - 71;3; 0.000000, 0.826434, 0.000000;;, - 72;3; 0.000000, 0.826434, 0.000000;;, - 73;3; 0.000000, 0.826434, 0.000000;;, - 74;3; 0.000000, 0.826434, 0.000000;;, - 75;3; 0.000000, 0.826434, 0.000000;;, - 76;3; 0.000000, 0.826434, 0.000000;;, - 77;3; 0.000000, 0.826434, 0.000000;;, - 78;3; 0.000000, 0.826434, 0.000000;;, - 79;3; 0.000000, 0.826434, 0.000000;;, - 80;3; 0.000000, 0.826434, 0.000000;;, - 81;3; 0.000000, 0.826434, 0.000000;;, - 82;3; 0.000000, 0.826434, 0.000000;;, - 83;3; 0.000000, 0.826434, 0.000000;;, - 84;3; 0.000000, 0.826434, 0.000000;;, - 85;3; 0.000000, 0.826434, 0.000000;;, - 86;3; 0.000000, 0.826434, 0.000000;;, - 87;3; 0.000000, 0.826434, 0.000000;;, - 88;3; 0.000000, 0.826434, 0.000000;;, - 89;3; 0.000000, 0.826434, 0.000000;;, - 90;3; 0.000000, 0.826434, 0.000000;;, - 91;3; 0.000000, 0.826434, 0.000000;;, - 92;3; 0.000000, 0.826434, 0.000000;;, - 93;3; 0.000000, 0.826434, 0.000000;;, - 94;3; 0.000000, 0.826434, 0.000000;;, - 95;3; 0.000000, 0.826434, 0.000000;;, - 96;3; 0.000000, 0.826434, 0.000000;;, - 97;3; 0.000000, 0.826434, 0.000000;;, - 98;3; 0.000000, 0.826434, 0.000000;;, - 99;3; 0.000000, 0.826434, 0.000000;;, - 100;3; 0.000000, 0.826434, 0.000000;;, - 101;3; 0.000000, 0.826434, 0.000000;;, - 102;3; 0.000000, 0.826434, 0.000000;;, - 103;3; 0.000000, 0.826434, 0.000000;;, - 104;3; 0.000000, 0.826434, 0.000000;;, - 105;3; 0.000000, 0.826434, 0.000000;;, - 106;3; 0.000000, 0.826434, 0.000000;;, - 107;3; 0.000000, 0.826434, 0.000000;;, - 108;3; 0.000000, 0.826434, 0.000000;;, - 109;3; 0.000000, 0.826434, 0.000000;;, - 110;3; 0.000000, 0.826434, 0.000000;;, - 111;3; 0.000000, 0.826434, 0.000000;;, - 112;3; 0.000000, 0.826434, 0.000000;;, - 113;3; 0.000000, 0.826434, 0.000000;;, - 114;3; 0.000000, 0.826434, 0.000000;;, - 115;3; 0.000000, 0.826434, 0.000000;;, - 116;3; 0.000000, 0.826434, 0.000000;;, - 117;3; 0.000000, 0.826434, 0.000000;;, - 118;3; 0.000000, 0.826434, 0.000000;;, - 119;3; 0.000000, 0.826434, 0.000000;;, - 120;3; 0.000000, 0.826434, 0.000000;;, - 121;3; 0.000000, 0.826434, 0.000000;;, - 122;3; 0.000000, 0.826434, 0.000000;;, - 123;3; 0.000000, 0.826434, 0.000000;;, - 124;3; 0.000000, 0.826434, 0.000000;;, - 125;3; 0.000000, 0.826434, 0.000000;;, - 126;3; 0.000000, 0.826434, 0.000000;;, - 127;3; 0.000000, 0.826434, 0.000000;;, - 128;3; 0.000000, 0.826434, 0.000000;;, - 129;3; 0.000000, 0.826434, 0.000000;;, - 130;3; 0.000000, 0.826434, 0.000000;;, - 131;3; 0.000000, 0.826434, 0.000000;;, - 132;3; 0.000000, 0.826434, 0.000000;;, - 133;3; 0.000000, 0.826434, 0.000000;;, - 134;3; 0.000000, 0.826434, 0.000000;;, - 135;3; 0.000000, 0.826434, 0.000000;;, - 136;3; 0.000000, 0.826434, 0.000000;;, - 137;3; 0.000000, 0.826434, 0.000000;;, - 138;3; 0.000000, 0.826434, 0.000000;;, - 139;3; 0.000000, 0.826434, 0.000000;;, - 140;3; 0.000000, 0.826434, 0.000000;;, - 141;3; 0.000000, 0.826434, 0.000000;;, - 142;3; 0.000000, 0.826434, 0.000000;;, - 143;3; 0.000000, 0.826434, 0.000000;;, - 144;3; 0.000000, 0.826434, 0.000000;;, - 145;3; 0.000000, 0.826434, 0.000000;;, - 146;3; 0.000000, 0.826434, 0.000000;;, - 147;3; 0.000000, 0.826434, 0.000000;;, - 148;3; 0.000000, 0.826434, 0.000000;;, - 149;3; 0.000000, 0.826434, 0.000000;;, - 150;3; 0.000000, 0.826434, 0.000000;;, - 151;3; 0.000000, 0.826434, 0.000000;;, - 152;3; 0.000000, 0.826434, 0.000000;;, - 153;3; 0.000000, 0.826434, 0.000000;;, - 154;3; 0.000000, 0.826434, 0.000000;;, - 155;3; 0.000000, 0.826434, 0.000000;;, - 156;3; 0.000000, 0.826434, 0.000000;;, - 157;3; 0.000000, 0.826434, 0.000000;;, - 158;3; 0.000000, 0.826434, 0.000000;;, - 159;3; 0.000000, 0.826434, 0.000000;;, - 160;3; 0.000000, 0.826434, 0.000000;;, - 161;3; 0.000000, 0.826434, 0.000000;;, - 162;3; 0.000000, 0.826434, 0.000000;;, - 163;3; 0.000000, 0.826434, 0.000000;;, - 164;3; 0.000000, 0.826434, 0.000000;;, - 165;3; 0.000000, 0.826434, 0.000000;;, - 166;3; 0.000000, 0.826434, 0.000000;;, - 167;3; 0.000000, 0.826434, 0.000000;;, - 168;3; 0.000000, 0.826434, 0.000000;;, - 169;3; 0.000000, 0.826434, 0.000000;;, - 170;3; 0.000000, 0.826434, 0.000000;;, - 171;3; 0.000000, 0.826434, 0.000000;;, - 172;3; 0.000000, 0.826434, 0.000000;;, - 173;3; 0.000000, 0.826434, 0.000000;;, - 174;3; 0.000000, 0.826434, 0.000000;;, - 175;3; 0.000000, 0.826434, 0.000000;;, - 176;3; 0.000000, 0.826434, 0.000000;;, - 177;3; 0.000000, 0.826434, 0.000000;;, - 178;3; 0.000000, 0.826434, 0.000000;;, - 179;3; 0.000000, 0.826434, 0.000000;;, - 180;3; 0.000000, 0.826434, 0.000000;;, - 181;3; 0.000000, 0.826434, 0.000000;;, - 182;3; 0.000000, 0.826434, 0.000000;;, - 183;3; 0.000000, 0.826434, 0.000000;;, - 184;3; 0.000000, 0.826434, 0.000000;;, - 185;3; 0.000000, 0.826434, 0.000000;;, - 186;3;-0.000000, 0.826434,-0.000000;;, - 187;3;-0.000000, 0.826434,-0.000000;;, - 188;3;-0.000000, 0.826434, 0.000000;;, - 189;3;-0.000000, 0.826434, 0.000000;;, - 190;3;-0.000000, 0.826434,-0.000000;;, - 191;3; 0.000000, 0.826434, 0.000000;;, - 192;3; 0.000000, 0.826434, 0.000000;;, - 193;3; 0.000000, 0.826434, 0.000000;;, - 194;3; 0.000000, 0.826434,-0.000000;;, - 195;3; 0.000000, 0.826434,-0.000000;;, - 196;3; 0.000000, 0.826434, 0.000000;;, - 197;3; 0.000000, 0.826434,-0.000000;;, - 198;3; 0.000000, 0.826434,-0.000000;;, - 199;3; 0.000000, 0.826434, 0.000000;;, - 200;3; 0.000000, 0.826434, 0.000000;;, - 201;3; 0.000000, 0.826434, 0.000000;;, - 202;3; 0.000000, 0.826434, 0.000000;;, - 203;3; 0.000000, 0.826434, 0.000000;;, - 204;3; 0.000000, 0.826434, 0.000000;;, - 205;3; 0.000000, 0.826434, 0.000000;;, - 206;3; 0.000000, 0.826434, 0.000000;;, - 207;3; 0.000000, 0.826434, 0.000000;;, - 208;3; 0.000000, 0.826434, 0.000000;;, - 209;3; 0.000000, 0.826434, 0.000000;;, - 210;3; 0.000000, 0.826434, 0.000000;;, - 211;3; 0.000000, 0.826434, 0.000000;;, - 212;3; 0.000000, 0.826434, 0.000000;;, - 213;3; 0.000000, 0.826434, 0.000000;;, - 214;3; 0.000000, 0.826434, 0.000000;;, - 215;3; 0.000000, 0.826434, 0.000000;;, - 216;3; 0.000000, 0.826434, 0.000000;;, - 217;3; 0.000000, 0.826434, 0.000000;;, - 218;3; 0.000000, 0.826434, 0.000000;;, - 219;3; 0.000000, 0.826434, 0.000000;;, - 220;3; 0.000000, 0.826434, 0.000000;;, - 221;3; 0.000000, 0.826434, 0.000000;;, - 222;3; 0.000000, 0.826434, 0.000000;;, - 223;3; 0.000000, 0.826434, 0.000000;;, - 224;3; 0.000000, 0.826434, 0.000000;;, - 225;3; 0.000000, 0.826434, 0.000000;;, - 226;3; 0.000000, 0.826434, 0.000000;;, - 227;3; 0.000000, 0.826434, 0.000000;;, - 228;3; 0.000000, 0.826434, 0.000000;;, - 229;3; 0.000000, 0.826434, 0.000000;;, - 230;3; 0.000000, 0.826434, 0.000000;;, - 231;3; 0.000000, 0.826434, 0.000000;;, - 232;3; 0.000000, 0.826434, 0.000000;;, - 233;3; 0.000000, 0.826434, 0.000000;;, - 234;3; 0.000000, 0.826434, 0.000000;;, - 235;3; 0.000000, 0.826434, 0.000000;;, - 236;3; 0.000000, 0.826434, 0.000000;;, - 237;3; 0.000000, 0.826434, 0.000000;;, - 238;3; 0.000000, 0.826434, 0.000000;;, - 239;3; 0.000000, 0.826434, 0.000000;;, - 240;3; 0.000000, 0.826434, 0.000000;;, - 241;3; 0.000000, 0.826434, 0.000000;;, - 242;3; 0.000000, 0.826434, 0.000000;;, - 243;3; 0.000000, 0.826434, 0.000000;;, - 244;3; 0.000000, 0.826434, 0.000000;;, - 245;3; 0.000000, 0.826434, 0.000000;;, - 246;3; 0.000000, 0.826434, 0.000000;;, - 247;3; 0.000000, 0.826434, 0.000000;;, - 248;3; 0.000000, 0.826434, 0.000000;;, - 249;3; 0.000000, 0.826434, 0.000000;;; - } - } - Animation { - {Armature_Bone_029} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 1;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 2;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 3;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 4;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 5;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 6;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 7;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 8;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 9;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 10;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 11;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 12;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 13;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 14;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 15;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 16;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 17;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 18;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 19;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 20;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 21;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 22;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 23;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 24;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 25;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 26;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 27;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 28;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 29;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 30;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 31;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 32;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 33;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 34;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 35;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 36;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 37;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 38;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 39;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 40;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 41;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 42;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 43;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 44;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 45;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 46;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 47;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 48;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 49;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 50;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 51;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 52;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 53;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 54;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 55;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 56;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 57;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 58;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 59;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 60;4;-0.988993, 0.075798,-0.009673,-0.126694;;, - 61;4;-0.989001, 0.075642,-0.009541,-0.126701;;, - 62;4;-0.989014, 0.075380,-0.009320,-0.126713;;, - 63;4;-0.989033, 0.075013,-0.009009,-0.126730;;, - 64;4;-0.989057, 0.074540,-0.008609,-0.126752;;, - 65;4;-0.989086, 0.073962,-0.008120,-0.126778;;, - 66;4;-0.989121, 0.073279,-0.007543,-0.126810;;, - 67;4;-0.989161, 0.072494,-0.006880,-0.126847;;, - 68;4;-0.989205, 0.071610,-0.006132,-0.126888;;, - 69;4;-0.989255, 0.070630,-0.005303,-0.126935;;, - 70;4;-0.989309, 0.069558,-0.004397,-0.126986;;, - 71;4;-0.989366, 0.068400,-0.003417,-0.127041;;, - 72;4;-0.989428, 0.067161,-0.002370,-0.127101;;, - 73;4;-0.989493, 0.065850,-0.001262,-0.127165;;, - 74;4;-0.989561, 0.064475,-0.000099,-0.127233;;, - 75;4;-0.989632, 0.063044, 0.001111,-0.127304;;, - 76;4;-0.989704, 0.061568, 0.002359,-0.127378;;, - 77;4;-0.989778, 0.060057, 0.003637,-0.127455;;, - 78;4;-0.989852, 0.058522, 0.004934,-0.127535;;, - 79;4;-0.989926, 0.056976, 0.006241,-0.127616;;, - 80;4;-0.990000, 0.055430, 0.007548,-0.127698;;, - 81;4;-0.990072, 0.053896, 0.008846,-0.127781;;, - 82;4;-0.990143, 0.052385, 0.010123,-0.127865;;, - 83;4;-0.990211, 0.050909, 0.011371,-0.127948;;, - 84;4;-0.990276, 0.049478, 0.012581,-0.128031;;, - 85;4;-0.990338, 0.048103, 0.013744,-0.128113;;, - 86;4;-0.990396, 0.046792, 0.014853,-0.128194;;, - 87;4;-0.990449, 0.045553, 0.015900,-0.128272;;, - 88;4;-0.990498, 0.044395, 0.016879,-0.128349;;, - 89;4;-0.990542, 0.043323, 0.017785,-0.128423;;, - 90;4;-0.990580, 0.042342, 0.018614,-0.128494;;, - 91;4;-0.990613, 0.041458, 0.019362,-0.128562;;, - 92;4;-0.990640, 0.040674, 0.020025,-0.128627;;, - 93;4;-0.990661, 0.039991, 0.020602,-0.128689;;, - 94;4;-0.990677, 0.039413, 0.021091,-0.128747;;, - 95;4;-0.990686, 0.038940, 0.021491,-0.128802;;, - 96;4;-0.990690, 0.038573, 0.021802,-0.128853;;, - 97;4;-0.990688, 0.038311, 0.022023,-0.128900;;, - 98;4;-0.990680, 0.038155, 0.022155,-0.128944;;, - 99;4;-0.990666, 0.038103, 0.022199,-0.128984;;, - 100;4;-0.990381, 0.039510, 0.020997,-0.128905;;, - 101;4;-0.989533, 0.043882, 0.017266,-0.128581;;, - 102;4;-0.988103, 0.051309, 0.010927,-0.128004;;, - 103;4;-0.986127, 0.061601, 0.002142,-0.127189;;, - 104;4;-0.983714, 0.074201,-0.008614,-0.126181;;, - 105;4;-0.981031, 0.088219,-0.020579,-0.125055;;, - 106;4;-0.978276, 0.102621,-0.032873,-0.123895;;, - 107;4;-0.975625, 0.116479,-0.044701,-0.122778;;, - 108;4;-0.973205, 0.129127,-0.055498,-0.121760;;, - 109;4;-0.971087, 0.140192,-0.064942,-0.120871;;, - 110;4;-0.969159, 0.150606,-0.074100,-0.120059;;, - 111;4;-0.967282, 0.161397,-0.084078,-0.119258;;, - 112;4;-0.965442, 0.172477,-0.094682,-0.118465;;, - 113;4;-0.963621, 0.183688,-0.105568,-0.117675;;, - 114;4;-0.961789, 0.194806,-0.116256,-0.116879;;, - 115;4;-0.959913, 0.205586,-0.126209,-0.116071;;, - 116;4;-0.957965, 0.215815,-0.134966,-0.115243;;, - 117;4;-0.955928, 0.225360,-0.142239,-0.114392;;, - 118;4;-0.953796, 0.234175,-0.147929,-0.113515;;, - 119;4;-0.951571, 0.242281,-0.152083,-0.112615;;, - 120;4;-0.948958, 0.251248,-0.152162,-0.111800;;, - 121;4;-0.945681, 0.262514,-0.145470,-0.111192;;, - 122;4;-0.941843, 0.275725,-0.132340,-0.110802;;, - 123;4;-0.937651, 0.290171,-0.113916,-0.110625;;, - 124;4;-0.933412, 0.304787,-0.092274,-0.110628;;, - 125;4;-0.929488, 0.318325,-0.070157,-0.110759;;, - 126;4;-0.926209, 0.329642,-0.050354,-0.110948;;, - 127;4;-0.923801, 0.337959,-0.035066,-0.111132;;, - 128;4;-0.922363, 0.342924,-0.025597,-0.111263;;, - 129;4;-0.921895, 0.344540,-0.022436,-0.111310;;, - 130;4;-0.923420, 0.338017,-0.020833,-0.111702;;, - 131;4;-0.928008, 0.318342,-0.016107,-0.112881;;, - 132;4;-0.935468, 0.286251,-0.008651,-0.114798;;, - 133;4;-0.945226, 0.244095, 0.000687,-0.117306;;, - 134;4;-0.956280, 0.196042, 0.010591,-0.120147;;, - 135;4;-0.967335, 0.147541, 0.019479,-0.122988;;, - 136;4;-0.977093, 0.104087, 0.025872,-0.125495;;, - 137;4;-0.984553, 0.069965, 0.028720,-0.127413;;, - 138;4;-0.989141, 0.047676, 0.027516,-0.128592;;, - 139;4;-0.990666, 0.038103, 0.022199,-0.128984;;, - 140;4;-0.989556, 0.041570, 0.012021,-0.128527;;, - 141;4;-0.986156, 0.058863,-0.004070,-0.127124;;, - 142;4;-0.981049, 0.086461,-0.024569,-0.125014;;, - 143;4;-0.975630, 0.115958,-0.045882,-0.122766;;, - 144;4;-0.971087, 0.140192,-0.064942,-0.120871;;, - 145;4;-0.967282, 0.161397,-0.084078,-0.119258;;, - 146;4;-0.963621, 0.183688,-0.105568,-0.117675;;, - 147;4;-0.959913, 0.205586,-0.126209,-0.116071;;, - 148;4;-0.955928, 0.225360,-0.142239,-0.114392;;, - 149;4;-0.951571, 0.242281,-0.152083,-0.112615;;, - 150;4;-0.945681, 0.262514,-0.145470,-0.111192;;, - 151;4;-0.937651, 0.290171,-0.113916,-0.110625;;, - 152;4;-0.929488, 0.318325,-0.070157,-0.110759;;, - 153;4;-0.923801, 0.337959,-0.035066,-0.111132;;, - 154;4;-0.921895, 0.344540,-0.022436,-0.111310;;, - 155;4;-0.927996, 0.317417,-0.018204,-0.112908;;, - 156;4;-0.945186, 0.240971,-0.006399,-0.117397;;, - 157;4;-0.967272, 0.142678, 0.008447,-0.123129;;, - 158;4;-0.984500, 0.065860, 0.019406,-0.127532;;, - 159;4;-0.990666, 0.038103, 0.022199,-0.128984;;, - 160;4;-0.990734, 0.037638, 0.020496,-0.128828;;, - 161;4;-0.990791, 0.037695, 0.018666,-0.128695;;, - 162;4;-0.990836, 0.038279, 0.016718,-0.128583;;, - 163;4;-0.990866, 0.039387, 0.014664,-0.128492;;, - 164;4;-0.990880, 0.041002, 0.012519,-0.128419;;, - 165;4;-0.990878, 0.043089, 0.010308,-0.128362;;, - 166;4;-0.990856, 0.045597, 0.008059,-0.128318;;, - 167;4;-0.990815, 0.048456, 0.005807,-0.128281;;, - 168;4;-0.990753, 0.051579, 0.003588,-0.128247;;, - 169;4;-0.990671, 0.054862, 0.001444,-0.128210;;, - 170;4;-0.990569, 0.058196,-0.000585,-0.128163;;, - 171;4;-0.990448, 0.061468,-0.002463,-0.128103;;, - 172;4;-0.990309, 0.064573,-0.004158,-0.128023;;, - 173;4;-0.990153, 0.067417,-0.005646,-0.127919;;, - 174;4;-0.989984, 0.069922,-0.006909,-0.127789;;, - 175;4;-0.989802, 0.072028,-0.007937,-0.127630;;, - 176;4;-0.989610, 0.073693,-0.008728,-0.127441;;, - 177;4;-0.989410, 0.074892,-0.009284,-0.127221;;, - 178;4;-0.989203, 0.075611,-0.009610,-0.126971;;, - 179;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 180;4;-0.986083, 0.079754, 0.000101,-0.124537;;, - 181;4;-0.977768, 0.091301, 0.029737,-0.118645;;, - 182;4;-0.964390, 0.109598, 0.078133,-0.109258;;, - 183;4;-0.946970, 0.132664, 0.141816,-0.097088;;, - 184;4;-0.927284, 0.157384, 0.214578,-0.083366;;, - 185;4;-0.907628, 0.179982, 0.288277,-0.069686;;, - 186;4;-0.890294, 0.196893, 0.354672,-0.057633;;, - 187;4;-0.877051, 0.205560, 0.407313,-0.048431;;, - 188;4;-0.868910, 0.204713, 0.442412,-0.042777;;, - 189;4;-0.866206, 0.194155, 0.458604,-0.040900;;, - 190;4;-0.874856, 0.162582, 0.444607,-0.047644;;, - 191;4;-0.899688, 0.101149, 0.389390,-0.066848;;, - 192;4;-0.932828, 0.025866, 0.307044,-0.092059;;, - 193;4;-0.961083,-0.037592, 0.225849,-0.112772;;, - 194;4;-0.975559,-0.072609, 0.167655,-0.122084;;, - 195;4;-0.981508,-0.073185, 0.120643,-0.124590;;, - 196;4;-0.985748,-0.038554, 0.070473,-0.126130;;, - 197;4;-0.988051, 0.015005, 0.026688,-0.126723;;, - 198;4;-0.988867, 0.059553,-0.000984,-0.126754;;, - 199;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 200;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 201;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 202;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 203;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 204;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 205;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 206;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 207;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 208;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 209;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 210;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 211;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 212;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 213;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 214;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 215;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 216;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 217;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 218;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 219;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 220;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 221;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 222;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 223;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 224;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 225;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 226;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 227;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 228;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 229;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 230;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 231;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 232;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 233;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 234;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 235;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 236;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 237;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 238;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 239;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 240;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 241;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 242;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 243;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 244;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 245;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 246;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 247;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 248;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 249;4;-0.988990, 0.075850,-0.009717,-0.126692;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3; 0.000000, 0.868658, 0.000000;;, - 1;3; 0.000000, 0.868658, 0.000000;;, - 2;3; 0.000000, 0.868658, 0.000000;;, - 3;3; 0.000000, 0.868658, 0.000000;;, - 4;3; 0.000000, 0.868658, 0.000000;;, - 5;3; 0.000000, 0.868658, 0.000000;;, - 6;3; 0.000000, 0.868658, 0.000000;;, - 7;3; 0.000000, 0.868658, 0.000000;;, - 8;3; 0.000000, 0.868658, 0.000000;;, - 9;3; 0.000000, 0.868658, 0.000000;;, - 10;3; 0.000000, 0.868658, 0.000000;;, - 11;3; 0.000000, 0.868658, 0.000000;;, - 12;3; 0.000000, 0.868658, 0.000000;;, - 13;3; 0.000000, 0.868658, 0.000000;;, - 14;3; 0.000000, 0.868658, 0.000000;;, - 15;3; 0.000000, 0.868658, 0.000000;;, - 16;3; 0.000000, 0.868658, 0.000000;;, - 17;3; 0.000000, 0.868658, 0.000000;;, - 18;3; 0.000000, 0.868658, 0.000000;;, - 19;3; 0.000000, 0.868658, 0.000000;;, - 20;3; 0.000000, 0.868658, 0.000000;;, - 21;3; 0.000000, 0.868658, 0.000000;;, - 22;3; 0.000000, 0.868658, 0.000000;;, - 23;3; 0.000000, 0.868658, 0.000000;;, - 24;3; 0.000000, 0.868658, 0.000000;;, - 25;3; 0.000000, 0.868658, 0.000000;;, - 26;3; 0.000000, 0.868658, 0.000000;;, - 27;3; 0.000000, 0.868658, 0.000000;;, - 28;3; 0.000000, 0.868658, 0.000000;;, - 29;3; 0.000000, 0.868658, 0.000000;;, - 30;3; 0.000000, 0.868658, 0.000000;;, - 31;3; 0.000000, 0.868658, 0.000000;;, - 32;3; 0.000000, 0.868658, 0.000000;;, - 33;3; 0.000000, 0.868658, 0.000000;;, - 34;3; 0.000000, 0.868658, 0.000000;;, - 35;3; 0.000000, 0.868658, 0.000000;;, - 36;3; 0.000000, 0.868658, 0.000000;;, - 37;3; 0.000000, 0.868658, 0.000000;;, - 38;3; 0.000000, 0.868658, 0.000000;;, - 39;3; 0.000000, 0.868658, 0.000000;;, - 40;3; 0.000000, 0.868658, 0.000000;;, - 41;3; 0.000000, 0.868658, 0.000000;;, - 42;3; 0.000000, 0.868658, 0.000000;;, - 43;3; 0.000000, 0.868658, 0.000000;;, - 44;3; 0.000000, 0.868658, 0.000000;;, - 45;3; 0.000000, 0.868658, 0.000000;;, - 46;3; 0.000000, 0.868658, 0.000000;;, - 47;3; 0.000000, 0.868658, 0.000000;;, - 48;3; 0.000000, 0.868658, 0.000000;;, - 49;3; 0.000000, 0.868658, 0.000000;;, - 50;3; 0.000000, 0.868658, 0.000000;;, - 51;3; 0.000000, 0.868658, 0.000000;;, - 52;3; 0.000000, 0.868658, 0.000000;;, - 53;3; 0.000000, 0.868658, 0.000000;;, - 54;3; 0.000000, 0.868658, 0.000000;;, - 55;3; 0.000000, 0.868658, 0.000000;;, - 56;3; 0.000000, 0.868658, 0.000000;;, - 57;3; 0.000000, 0.868658, 0.000000;;, - 58;3; 0.000000, 0.868658, 0.000000;;, - 59;3; 0.000000, 0.868658, 0.000000;;, - 60;3; 0.000000, 0.868658, 0.000000;;, - 61;3; 0.000000, 0.868658, 0.000000;;, - 62;3; 0.000000, 0.868658, 0.000000;;, - 63;3; 0.000000, 0.868658, 0.000000;;, - 64;3; 0.000000, 0.868658, 0.000000;;, - 65;3; 0.000000, 0.868658, 0.000000;;, - 66;3; 0.000000, 0.868658, 0.000000;;, - 67;3; 0.000000, 0.868658, 0.000000;;, - 68;3; 0.000000, 0.868658, 0.000000;;, - 69;3; 0.000000, 0.868658, 0.000000;;, - 70;3; 0.000000, 0.868658, 0.000000;;, - 71;3; 0.000000, 0.868658, 0.000000;;, - 72;3; 0.000000, 0.868658, 0.000000;;, - 73;3; 0.000000, 0.868658, 0.000000;;, - 74;3; 0.000000, 0.868658, 0.000000;;, - 75;3; 0.000000, 0.868658, 0.000000;;, - 76;3; 0.000000, 0.868658, 0.000000;;, - 77;3; 0.000000, 0.868658, 0.000000;;, - 78;3; 0.000000, 0.868658, 0.000000;;, - 79;3; 0.000000, 0.868658, 0.000000;;, - 80;3; 0.000000, 0.868658, 0.000000;;, - 81;3; 0.000000, 0.868658, 0.000000;;, - 82;3; 0.000000, 0.868658, 0.000000;;, - 83;3; 0.000000, 0.868658, 0.000000;;, - 84;3; 0.000000, 0.868658, 0.000000;;, - 85;3; 0.000000, 0.868658, 0.000000;;, - 86;3; 0.000000, 0.868658, 0.000000;;, - 87;3; 0.000000, 0.868658, 0.000000;;, - 88;3; 0.000000, 0.868658, 0.000000;;, - 89;3; 0.000000, 0.868658, 0.000000;;, - 90;3; 0.000000, 0.868658, 0.000000;;, - 91;3; 0.000000, 0.868658, 0.000000;;, - 92;3; 0.000000, 0.868658, 0.000000;;, - 93;3; 0.000000, 0.868658, 0.000000;;, - 94;3; 0.000000, 0.868658, 0.000000;;, - 95;3; 0.000000, 0.868658, 0.000000;;, - 96;3; 0.000000, 0.868658, 0.000000;;, - 97;3; 0.000000, 0.868658, 0.000000;;, - 98;3; 0.000000, 0.868658, 0.000000;;, - 99;3; 0.000000, 0.868658, 0.000000;;, - 100;3; 0.000000, 0.868658, 0.000000;;, - 101;3; 0.000000, 0.868658, 0.000000;;, - 102;3; 0.000000, 0.868658, 0.000000;;, - 103;3; 0.000000, 0.868658, 0.000000;;, - 104;3; 0.000000, 0.868658, 0.000000;;, - 105;3; 0.000000, 0.868658, 0.000000;;, - 106;3; 0.000000, 0.868658, 0.000000;;, - 107;3; 0.000000, 0.868658, 0.000000;;, - 108;3; 0.000000, 0.868658, 0.000000;;, - 109;3; 0.000000, 0.868658, 0.000000;;, - 110;3; 0.000000, 0.868658, 0.000000;;, - 111;3; 0.000000, 0.868658, 0.000000;;, - 112;3; 0.000000, 0.868658, 0.000000;;, - 113;3; 0.000000, 0.868658, 0.000000;;, - 114;3; 0.000000, 0.868658, 0.000000;;, - 115;3; 0.000000, 0.868658, 0.000000;;, - 116;3; 0.000000, 0.868658, 0.000000;;, - 117;3; 0.000000, 0.868658, 0.000000;;, - 118;3; 0.000000, 0.868658, 0.000000;;, - 119;3; 0.000000, 0.868658, 0.000000;;, - 120;3; 0.000000, 0.868658, 0.000000;;, - 121;3; 0.000000, 0.868658, 0.000000;;, - 122;3; 0.000000, 0.868658, 0.000000;;, - 123;3; 0.000000, 0.868658, 0.000000;;, - 124;3; 0.000000, 0.868658, 0.000000;;, - 125;3; 0.000000, 0.868658, 0.000000;;, - 126;3; 0.000000, 0.868658, 0.000000;;, - 127;3; 0.000000, 0.868658, 0.000000;;, - 128;3; 0.000000, 0.868658, 0.000000;;, - 129;3; 0.000000, 0.868658, 0.000000;;, - 130;3; 0.000000, 0.868658, 0.000000;;, - 131;3; 0.000000, 0.868658, 0.000000;;, - 132;3; 0.000000, 0.868658, 0.000000;;, - 133;3; 0.000000, 0.868658, 0.000000;;, - 134;3; 0.000000, 0.868658, 0.000000;;, - 135;3; 0.000000, 0.868658, 0.000000;;, - 136;3; 0.000000, 0.868658, 0.000000;;, - 137;3; 0.000000, 0.868658, 0.000000;;, - 138;3; 0.000000, 0.868658, 0.000000;;, - 139;3; 0.000000, 0.868658, 0.000000;;, - 140;3; 0.000000, 0.868658, 0.000000;;, - 141;3; 0.000000, 0.868658, 0.000000;;, - 142;3; 0.000000, 0.868658, 0.000000;;, - 143;3; 0.000000, 0.868658, 0.000000;;, - 144;3; 0.000000, 0.868658, 0.000000;;, - 145;3; 0.000000, 0.868658, 0.000000;;, - 146;3; 0.000000, 0.868658, 0.000000;;, - 147;3; 0.000000, 0.868658, 0.000000;;, - 148;3; 0.000000, 0.868658, 0.000000;;, - 149;3; 0.000000, 0.868658, 0.000000;;, - 150;3; 0.000000, 0.868658, 0.000000;;, - 151;3; 0.000000, 0.868658, 0.000000;;, - 152;3; 0.000000, 0.868658, 0.000000;;, - 153;3; 0.000000, 0.868658, 0.000000;;, - 154;3; 0.000000, 0.868658, 0.000000;;, - 155;3; 0.000000, 0.868658, 0.000000;;, - 156;3; 0.000000, 0.868658, 0.000000;;, - 157;3; 0.000000, 0.868658, 0.000000;;, - 158;3; 0.000000, 0.868658, 0.000000;;, - 159;3; 0.000000, 0.868658, 0.000000;;, - 160;3; 0.000000, 0.868658, 0.000000;;, - 161;3; 0.000000, 0.868658, 0.000000;;, - 162;3; 0.000000, 0.868658, 0.000000;;, - 163;3; 0.000000, 0.868658, 0.000000;;, - 164;3; 0.000000, 0.868658, 0.000000;;, - 165;3; 0.000000, 0.868658, 0.000000;;, - 166;3; 0.000000, 0.868658, 0.000000;;, - 167;3; 0.000000, 0.868658, 0.000000;;, - 168;3; 0.000000, 0.868658, 0.000000;;, - 169;3; 0.000000, 0.868658, 0.000000;;, - 170;3; 0.000000, 0.868658, 0.000000;;, - 171;3; 0.000000, 0.868658, 0.000000;;, - 172;3; 0.000000, 0.868658, 0.000000;;, - 173;3; 0.000000, 0.868658, 0.000000;;, - 174;3; 0.000000, 0.868658, 0.000000;;, - 175;3; 0.000000, 0.868658, 0.000000;;, - 176;3; 0.000000, 0.868658, 0.000000;;, - 177;3; 0.000000, 0.868658, 0.000000;;, - 178;3; 0.000000, 0.868658, 0.000000;;, - 179;3; 0.000000, 0.868658, 0.000000;;, - 180;3; 0.000000, 0.868658, 0.000000;;, - 181;3; 0.000000, 0.868658, 0.000000;;, - 182;3; 0.000000, 0.868658,-0.000000;;, - 183;3; 0.000000, 0.868658, 0.000000;;, - 184;3;-0.000000, 0.868658,-0.000000;;, - 185;3; 0.000000, 0.868658,-0.000000;;, - 186;3; 0.000000, 0.868658,-0.000000;;, - 187;3; 0.000000, 0.868658,-0.000000;;, - 188;3;-0.000000, 0.868658, 0.000000;;, - 189;3; 0.000000, 0.868658, 0.000000;;, - 190;3; 0.000000, 0.868658, 0.000000;;, - 191;3;-0.000000, 0.868658, 0.000000;;, - 192;3; 0.000000, 0.868658,-0.000000;;, - 193;3; 0.000000, 0.868658,-0.000000;;, - 194;3;-0.000000, 0.868658,-0.000000;;, - 195;3;-0.000000, 0.868658,-0.000000;;, - 196;3; 0.000000, 0.868658, 0.000000;;, - 197;3;-0.000000, 0.868658, 0.000000;;, - 198;3; 0.000000, 0.868658, 0.000000;;, - 199;3; 0.000000, 0.868658, 0.000000;;, - 200;3; 0.000000, 0.868658, 0.000000;;, - 201;3; 0.000000, 0.868658, 0.000000;;, - 202;3; 0.000000, 0.868658, 0.000000;;, - 203;3; 0.000000, 0.868658, 0.000000;;, - 204;3; 0.000000, 0.868658, 0.000000;;, - 205;3; 0.000000, 0.868658, 0.000000;;, - 206;3; 0.000000, 0.868658, 0.000000;;, - 207;3; 0.000000, 0.868658, 0.000000;;, - 208;3; 0.000000, 0.868658, 0.000000;;, - 209;3; 0.000000, 0.868658, 0.000000;;, - 210;3; 0.000000, 0.868658, 0.000000;;, - 211;3; 0.000000, 0.868658, 0.000000;;, - 212;3; 0.000000, 0.868658, 0.000000;;, - 213;3; 0.000000, 0.868658, 0.000000;;, - 214;3; 0.000000, 0.868658, 0.000000;;, - 215;3; 0.000000, 0.868658, 0.000000;;, - 216;3; 0.000000, 0.868658, 0.000000;;, - 217;3; 0.000000, 0.868658, 0.000000;;, - 218;3; 0.000000, 0.868658, 0.000000;;, - 219;3; 0.000000, 0.868658, 0.000000;;, - 220;3; 0.000000, 0.868658, 0.000000;;, - 221;3; 0.000000, 0.868658, 0.000000;;, - 222;3; 0.000000, 0.868658, 0.000000;;, - 223;3; 0.000000, 0.868658, 0.000000;;, - 224;3; 0.000000, 0.868658, 0.000000;;, - 225;3; 0.000000, 0.868658, 0.000000;;, - 226;3; 0.000000, 0.868658, 0.000000;;, - 227;3; 0.000000, 0.868658, 0.000000;;, - 228;3; 0.000000, 0.868658, 0.000000;;, - 229;3; 0.000000, 0.868658, 0.000000;;, - 230;3; 0.000000, 0.868658, 0.000000;;, - 231;3; 0.000000, 0.868658, 0.000000;;, - 232;3; 0.000000, 0.868658, 0.000000;;, - 233;3; 0.000000, 0.868658, 0.000000;;, - 234;3; 0.000000, 0.868658, 0.000000;;, - 235;3; 0.000000, 0.868658, 0.000000;;, - 236;3; 0.000000, 0.868658, 0.000000;;, - 237;3; 0.000000, 0.868658, 0.000000;;, - 238;3; 0.000000, 0.868658, 0.000000;;, - 239;3; 0.000000, 0.868658, 0.000000;;, - 240;3; 0.000000, 0.868658, 0.000000;;, - 241;3; 0.000000, 0.868658, 0.000000;;, - 242;3; 0.000000, 0.868658, 0.000000;;, - 243;3; 0.000000, 0.868658, 0.000000;;, - 244;3; 0.000000, 0.868658, 0.000000;;, - 245;3; 0.000000, 0.868658, 0.000000;;, - 246;3; 0.000000, 0.868658, 0.000000;;, - 247;3; 0.000000, 0.868658, 0.000000;;, - 248;3; 0.000000, 0.868658, 0.000000;;, - 249;3; 0.000000, 0.868658, 0.000000;;; - } - } - Animation { - {Armature_Bone_033} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 1;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 2;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 3;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 4;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 5;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 6;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 7;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 8;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 9;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 10;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 11;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 12;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 13;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 14;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 15;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 16;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 17;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 18;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 19;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 20;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 21;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 22;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 23;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 24;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 25;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 26;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 27;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 28;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 29;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 30;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 31;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 32;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 33;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 34;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 35;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 36;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 37;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 38;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 39;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 40;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 41;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 42;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 43;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 44;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 45;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 46;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 47;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 48;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 49;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 50;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 51;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 52;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 53;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 54;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 55;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 56;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 57;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 58;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 59;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 60;4;-0.984118,-0.177486,-0.000064,-0.000002;;, - 61;4;-0.984156,-0.177191,-0.000256,-0.000007;;, - 62;4;-0.984219,-0.176698,-0.000578,-0.000015;;, - 63;4;-0.984308,-0.176006,-0.001030,-0.000026;;, - 64;4;-0.984423,-0.175114,-0.001613,-0.000041;;, - 65;4;-0.984563,-0.174023,-0.002325,-0.000059;;, - 66;4;-0.984728,-0.172737,-0.003165,-0.000081;;, - 67;4;-0.984917,-0.171257,-0.004131,-0.000105;;, - 68;4;-0.985131,-0.169590,-0.005220,-0.000133;;, - 69;4;-0.985368,-0.167742,-0.006427,-0.000164;;, - 70;4;-0.985627,-0.165720,-0.007747,-0.000197;;, - 71;4;-0.985908,-0.163536,-0.009173,-0.000233;;, - 72;4;-0.986207,-0.161201,-0.010698,-0.000272;;, - 73;4;-0.986524,-0.158729,-0.012312,-0.000313;;, - 74;4;-0.986857,-0.156135,-0.014006,-0.000356;;, - 75;4;-0.987203,-0.153437,-0.015768,-0.000401;;, - 76;4;-0.987560,-0.150654,-0.017586,-0.000448;;, - 77;4;-0.987925,-0.147805,-0.019446,-0.000495;;, - 78;4;-0.988296,-0.144912,-0.021335,-0.000543;;, - 79;4;-0.988670,-0.141997,-0.023239,-0.000591;;, - 80;4;-0.989044,-0.139082,-0.025142,-0.000640;;, - 81;4;-0.989415,-0.136189,-0.027031,-0.000688;;, - 82;4;-0.989781,-0.133340,-0.028892,-0.000735;;, - 83;4;-0.990138,-0.130557,-0.030709,-0.000781;;, - 84;4;-0.990484,-0.127859,-0.032471,-0.000826;;, - 85;4;-0.990816,-0.125265,-0.034165,-0.000869;;, - 86;4;-0.991134,-0.122793,-0.035779,-0.000910;;, - 87;4;-0.991433,-0.120458,-0.037304,-0.000949;;, - 88;4;-0.991713,-0.118274,-0.038730,-0.000986;;, - 89;4;-0.991973,-0.116253,-0.040050,-0.001019;;, - 90;4;-0.992210,-0.114405,-0.041257,-0.001050;;, - 91;4;-0.992423,-0.112737,-0.042346,-0.001078;;, - 92;4;-0.992613,-0.111258,-0.043312,-0.001102;;, - 93;4;-0.992778,-0.109971,-0.044152,-0.001124;;, - 94;4;-0.992918,-0.108881,-0.044864,-0.001142;;, - 95;4;-0.993033,-0.107989,-0.045447,-0.001157;;, - 96;4;-0.993121,-0.107296,-0.045899,-0.001168;;, - 97;4;-0.993185,-0.106803,-0.046221,-0.001176;;, - 98;4;-0.993222,-0.106509,-0.046413,-0.001181;;, - 99;4;-0.993235,-0.106411,-0.046477,-0.001183;;, - 100;4;-0.992457,-0.108704,-0.044924,-0.001143;;, - 101;4;-0.990042,-0.115829,-0.040099,-0.001020;;, - 102;4;-0.985938,-0.127931,-0.031902,-0.000812;;, - 103;4;-0.980251,-0.144703,-0.020542,-0.000523;;, - 104;4;-0.973289,-0.165237,-0.006635,-0.000169;;, - 105;4;-0.965544,-0.188081, 0.008838, 0.000225;;, - 106;4;-0.957586,-0.211550, 0.024734, 0.000629;;, - 107;4;-0.949929,-0.234133, 0.040028, 0.001019;;, - 108;4;-0.942940,-0.254745, 0.053989, 0.001374;;, - 109;4;-0.936827,-0.272776, 0.066201, 0.001685;;, - 110;4;-0.930713,-0.290807, 0.078414, 0.001995;;, - 111;4;-0.923724,-0.311419, 0.092374, 0.002351;;, - 112;4;-0.916067,-0.334001, 0.107669, 0.002740;;, - 113;4;-0.908110,-0.357471, 0.123565, 0.003144;;, - 114;4;-0.900364,-0.380315, 0.139037, 0.003538;;, - 115;4;-0.893402,-0.400849, 0.152945, 0.003892;;, - 116;4;-0.887715,-0.417621, 0.164305, 0.004181;;, - 117;4;-0.883612,-0.429723, 0.172501, 0.004390;;, - 118;4;-0.881196,-0.436847, 0.177327, 0.004513;;, - 119;4;-0.880418,-0.439141, 0.178880, 0.004552;;, - 120;4;-0.881196,-0.436848, 0.177327, 0.004513;;, - 121;4;-0.883612,-0.429723, 0.172501, 0.004390;;, - 122;4;-0.887715,-0.417621, 0.164305, 0.004181;;, - 123;4;-0.893402,-0.400849, 0.152945, 0.003892;;, - 124;4;-0.900364,-0.380315, 0.139037, 0.003538;;, - 125;4;-0.908110,-0.357471, 0.123565, 0.003144;;, - 126;4;-0.916067,-0.334001, 0.107669, 0.002740;;, - 127;4;-0.923724,-0.311419, 0.092374, 0.002351;;, - 128;4;-0.930713,-0.290807, 0.078414, 0.001995;;, - 129;4;-0.936827,-0.272776, 0.066201, 0.001685;;, - 130;4;-0.942940,-0.254745, 0.053989, 0.001374;;, - 131;4;-0.949929,-0.234133, 0.040028, 0.001019;;, - 132;4;-0.957586,-0.211550, 0.024734, 0.000629;;, - 133;4;-0.965544,-0.188081, 0.008838, 0.000225;;, - 134;4;-0.973289,-0.165237,-0.006635,-0.000169;;, - 135;4;-0.980251,-0.144703,-0.020542,-0.000523;;, - 136;4;-0.985938,-0.127931,-0.031902,-0.000812;;, - 137;4;-0.990042,-0.115829,-0.040099,-0.001020;;, - 138;4;-0.992457,-0.108704,-0.044924,-0.001143;;, - 139;4;-0.993235,-0.106411,-0.046477,-0.001183;;, - 140;4;-0.990042,-0.115829,-0.040099,-0.001020;;, - 141;4;-0.980251,-0.144703,-0.020542,-0.000523;;, - 142;4;-0.965544,-0.188081, 0.008838, 0.000225;;, - 143;4;-0.949929,-0.234133, 0.040028, 0.001019;;, - 144;4;-0.936827,-0.272776, 0.066201, 0.001685;;, - 145;4;-0.923724,-0.311419, 0.092374, 0.002351;;, - 146;4;-0.908110,-0.357471, 0.123565, 0.003144;;, - 147;4;-0.893402,-0.400849, 0.152945, 0.003892;;, - 148;4;-0.883612,-0.429723, 0.172501, 0.004390;;, - 149;4;-0.880418,-0.439141, 0.178880, 0.004552;;, - 150;4;-0.883612,-0.429723, 0.172501, 0.004390;;, - 151;4;-0.893402,-0.400849, 0.152945, 0.003892;;, - 152;4;-0.908110,-0.357471, 0.123565, 0.003144;;, - 153;4;-0.923724,-0.311419, 0.092374, 0.002351;;, - 154;4;-0.936827,-0.272776, 0.066201, 0.001685;;, - 155;4;-0.949929,-0.234133, 0.040028, 0.001019;;, - 156;4;-0.965544,-0.188081, 0.008838, 0.000225;;, - 157;4;-0.980251,-0.144703,-0.020542,-0.000523;;, - 158;4;-0.990042,-0.115829,-0.040099,-0.001020;;, - 159;4;-0.993235,-0.106411,-0.046477,-0.001183;;, - 160;4;-0.993185,-0.106803,-0.046221,-0.001176;;, - 161;4;-0.993032,-0.107989,-0.045447,-0.001157;;, - 162;4;-0.992778,-0.109971,-0.044152,-0.001124;;, - 163;4;-0.992423,-0.112737,-0.042346,-0.001078;;, - 164;4;-0.991972,-0.116253,-0.040050,-0.001019;;, - 165;4;-0.991433,-0.120458,-0.037304,-0.000949;;, - 166;4;-0.990816,-0.125266,-0.034165,-0.000869;;, - 167;4;-0.990138,-0.130557,-0.030709,-0.000781;;, - 168;4;-0.989415,-0.136189,-0.027031,-0.000688;;, - 169;4;-0.988670,-0.141997,-0.023239,-0.000591;;, - 170;4;-0.987925,-0.147805,-0.019446,-0.000495;;, - 171;4;-0.987203,-0.153437,-0.015768,-0.000401;;, - 172;4;-0.986524,-0.158729,-0.012312,-0.000313;;, - 173;4;-0.985908,-0.163536,-0.009173,-0.000233;;, - 174;4;-0.985368,-0.167742,-0.006427,-0.000164;;, - 175;4;-0.984917,-0.171257,-0.004131,-0.000105;;, - 176;4;-0.984562,-0.174023,-0.002325,-0.000059;;, - 177;4;-0.984308,-0.176006,-0.001030,-0.000026;;, - 178;4;-0.984156,-0.177191,-0.000256,-0.000007;;, - 179;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 180;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 181;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 182;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 183;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 184;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 185;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 186;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 187;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 188;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 189;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 190;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 191;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 192;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 193;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 194;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 195;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 196;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 197;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 198;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 199;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 200;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 201;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 202;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 203;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 204;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 205;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 206;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 207;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 208;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 209;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 210;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 211;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 212;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 213;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 214;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 215;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 216;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 217;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 218;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 219;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 220;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 221;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 222;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 223;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 224;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 225;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 226;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 227;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 228;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 229;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 230;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 231;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 232;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 233;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 234;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 235;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 236;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 237;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 238;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 239;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 240;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 241;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 242;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 243;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 244;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 245;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 246;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 247;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 248;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 249;4;-0.984106,-0.177584,-0.000000, 0.000000;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3;-0.000000, 1.279916,-0.000000;;, - 1;3;-0.000000, 1.279916,-0.000000;;, - 2;3;-0.000000, 1.279916,-0.000000;;, - 3;3;-0.000000, 1.279916,-0.000000;;, - 4;3;-0.000000, 1.279916,-0.000000;;, - 5;3;-0.000000, 1.279916,-0.000000;;, - 6;3;-0.000000, 1.279916,-0.000000;;, - 7;3;-0.000000, 1.279916,-0.000000;;, - 8;3;-0.000000, 1.279916,-0.000000;;, - 9;3;-0.000000, 1.279916,-0.000000;;, - 10;3;-0.000000, 1.279916,-0.000000;;, - 11;3;-0.000000, 1.279916,-0.000000;;, - 12;3;-0.000000, 1.279916,-0.000000;;, - 13;3;-0.000000, 1.279916,-0.000000;;, - 14;3;-0.000000, 1.279916,-0.000000;;, - 15;3;-0.000000, 1.279916,-0.000000;;, - 16;3;-0.000000, 1.279916,-0.000000;;, - 17;3;-0.000000, 1.279916,-0.000000;;, - 18;3;-0.000000, 1.279916,-0.000000;;, - 19;3;-0.000000, 1.279916,-0.000000;;, - 20;3;-0.000000, 1.279916,-0.000000;;, - 21;3;-0.000000, 1.279916,-0.000000;;, - 22;3;-0.000000, 1.279916,-0.000000;;, - 23;3;-0.000000, 1.279916,-0.000000;;, - 24;3;-0.000000, 1.279916,-0.000000;;, - 25;3;-0.000000, 1.279916,-0.000000;;, - 26;3;-0.000000, 1.279916,-0.000000;;, - 27;3;-0.000000, 1.279916,-0.000000;;, - 28;3;-0.000000, 1.279916,-0.000000;;, - 29;3;-0.000000, 1.279916,-0.000000;;, - 30;3;-0.000000, 1.279916,-0.000000;;, - 31;3;-0.000000, 1.279916,-0.000000;;, - 32;3;-0.000000, 1.279916,-0.000000;;, - 33;3;-0.000000, 1.279916,-0.000000;;, - 34;3;-0.000000, 1.279916,-0.000000;;, - 35;3;-0.000000, 1.279916,-0.000000;;, - 36;3;-0.000000, 1.279916,-0.000000;;, - 37;3;-0.000000, 1.279916,-0.000000;;, - 38;3;-0.000000, 1.279916,-0.000000;;, - 39;3;-0.000000, 1.279916,-0.000000;;, - 40;3;-0.000000, 1.279916,-0.000000;;, - 41;3;-0.000000, 1.279916,-0.000000;;, - 42;3;-0.000000, 1.279916,-0.000000;;, - 43;3;-0.000000, 1.279916,-0.000000;;, - 44;3;-0.000000, 1.279916,-0.000000;;, - 45;3;-0.000000, 1.279916,-0.000000;;, - 46;3;-0.000000, 1.279916,-0.000000;;, - 47;3;-0.000000, 1.279916,-0.000000;;, - 48;3;-0.000000, 1.279916,-0.000000;;, - 49;3;-0.000000, 1.279916,-0.000000;;, - 50;3;-0.000000, 1.279916,-0.000000;;, - 51;3;-0.000000, 1.279916,-0.000000;;, - 52;3;-0.000000, 1.279916,-0.000000;;, - 53;3;-0.000000, 1.279916,-0.000000;;, - 54;3;-0.000000, 1.279916,-0.000000;;, - 55;3;-0.000000, 1.279916,-0.000000;;, - 56;3;-0.000000, 1.279916,-0.000000;;, - 57;3;-0.000000, 1.279916,-0.000000;;, - 58;3;-0.000000, 1.279916,-0.000000;;, - 59;3;-0.000000, 1.279916,-0.000000;;, - 60;3; 0.000000, 1.279916, 0.000000;;, - 61;3;-0.000000, 1.279916,-0.000000;;, - 62;3;-0.000000, 1.279916,-0.000000;;, - 63;3;-0.000000, 1.279916, 0.000000;;, - 64;3;-0.000000, 1.279916, 0.000000;;, - 65;3; 0.000000, 1.279916,-0.000000;;, - 66;3;-0.000000, 1.279916, 0.000000;;, - 67;3; 0.000000, 1.279916,-0.000000;;, - 68;3; 0.000000, 1.279916,-0.000000;;, - 69;3; 0.000000, 1.279916, 0.000000;;, - 70;3;-0.000000, 1.279916,-0.000000;;, - 71;3;-0.000000, 1.279916,-0.000000;;, - 72;3;-0.000000, 1.279916, 0.000000;;, - 73;3;-0.000000, 1.279916,-0.000000;;, - 74;3;-0.000000, 1.279916, 0.000000;;, - 75;3;-0.000000, 1.279916,-0.000000;;, - 76;3;-0.000000, 1.279916, 0.000000;;, - 77;3;-0.000000, 1.279916, 0.000000;;, - 78;3;-0.000000, 1.279916,-0.000000;;, - 79;3;-0.000000, 1.279916, 0.000000;;, - 80;3;-0.000000, 1.279916,-0.000000;;, - 81;3;-0.000000, 1.279916, 0.000000;;, - 82;3;-0.000000, 1.279916, 0.000000;;, - 83;3;-0.000000, 1.279916, 0.000000;;, - 84;3;-0.000000, 1.279916, 0.000000;;, - 85;3; 0.000000, 1.279916, 0.000000;;, - 86;3;-0.000000, 1.279916,-0.000000;;, - 87;3;-0.000000, 1.279916,-0.000000;;, - 88;3;-0.000000, 1.279916, 0.000000;;, - 89;3;-0.000000, 1.279916,-0.000000;;, - 90;3; 0.000000, 1.279916, 0.000000;;, - 91;3; 0.000000, 1.279916,-0.000000;;, - 92;3;-0.000000, 1.279916,-0.000000;;, - 93;3; 0.000000, 1.279916,-0.000000;;, - 94;3; 0.000000, 1.279916,-0.000000;;, - 95;3; 0.000000, 1.279916,-0.000000;;, - 96;3; 0.000000, 1.279916, 0.000000;;, - 97;3;-0.000000, 1.279916, 0.000000;;, - 98;3; 0.000000, 1.279916, 0.000000;;, - 99;3;-0.000000, 1.279916,-0.000000;;, - 100;3;-0.000000, 1.279916,-0.000000;;, - 101;3;-0.000000, 1.279916, 0.000000;;, - 102;3;-0.000000, 1.279916, 0.000000;;, - 103;3; 0.000000, 1.279916,-0.000000;;, - 104;3;-0.000000, 1.279916, 0.000000;;, - 105;3;-0.000000, 1.279916, 0.000000;;, - 106;3;-0.000000, 1.279916,-0.000000;;, - 107;3; 0.000000, 1.279916,-0.000000;;, - 108;3; 0.000000, 1.279916, 0.000000;;, - 109;3; 0.000000, 1.279916, 0.000000;;, - 110;3; 0.000000, 1.279916, 0.000000;;, - 111;3;-0.000000, 1.279916,-0.000000;;, - 112;3;-0.000000, 1.279916,-0.000000;;, - 113;3;-0.000000, 1.279916, 0.000000;;, - 114;3;-0.000000, 1.279916,-0.000000;;, - 115;3;-0.000000, 1.279916,-0.000000;;, - 116;3;-0.000000, 1.279916,-0.000000;;, - 117;3;-0.000000, 1.279916, 0.000000;;, - 118;3; 0.000000, 1.279916, 0.000000;;, - 119;3;-0.000000, 1.279916, 0.000000;;, - 120;3;-0.000000, 1.279916, 0.000000;;, - 121;3; 0.000000, 1.279916, 0.000000;;, - 122;3;-0.000000, 1.279916, 0.000000;;, - 123;3;-0.000000, 1.279916, 0.000000;;, - 124;3;-0.000000, 1.279916, 0.000000;;, - 125;3;-0.000000, 1.279916, 0.000000;;, - 126;3; 0.000000, 1.279916,-0.000000;;, - 127;3;-0.000000, 1.279916,-0.000000;;, - 128;3;-0.000000, 1.279916,-0.000000;;, - 129;3;-0.000000, 1.279916, 0.000000;;, - 130;3; 0.000000, 1.279916, 0.000000;;, - 131;3; 0.000000, 1.279916,-0.000000;;, - 132;3; 0.000000, 1.279916, 0.000000;;, - 133;3;-0.000000, 1.279916,-0.000000;;, - 134;3;-0.000000, 1.279916, 0.000000;;, - 135;3; 0.000000, 1.279916, 0.000000;;, - 136;3; 0.000000, 1.279916, 0.000000;;, - 137;3;-0.000000, 1.279916,-0.000000;;, - 138;3;-0.000000, 1.279916,-0.000000;;, - 139;3;-0.000000, 1.279916,-0.000000;;, - 140;3; 0.000000, 1.279916,-0.000000;;, - 141;3; 0.000000, 1.279916,-0.000000;;, - 142;3;-0.000000, 1.279916, 0.000000;;, - 143;3; 0.000000, 1.279916,-0.000000;;, - 144;3; 0.000000, 1.279916, 0.000000;;, - 145;3;-0.000000, 1.279916,-0.000000;;, - 146;3;-0.000000, 1.279916, 0.000000;;, - 147;3;-0.000000, 1.279916,-0.000000;;, - 148;3;-0.000000, 1.279916, 0.000000;;, - 149;3;-0.000000, 1.279916, 0.000000;;, - 150;3; 0.000000, 1.279916, 0.000000;;, - 151;3;-0.000000, 1.279916, 0.000000;;, - 152;3;-0.000000, 1.279916, 0.000000;;, - 153;3;-0.000000, 1.279916,-0.000000;;, - 154;3;-0.000000, 1.279916, 0.000000;;, - 155;3;-0.000000, 1.279916, 0.000000;;, - 156;3; 0.000000, 1.279916,-0.000000;;, - 157;3; 0.000000, 1.279917,-0.000000;;, - 158;3;-0.000000, 1.279916, 0.000000;;, - 159;3;-0.000000, 1.279916,-0.000000;;, - 160;3; 0.000000, 1.279916, 0.000000;;, - 161;3; 0.000000, 1.279916,-0.000000;;, - 162;3;-0.000000, 1.279916,-0.000000;;, - 163;3; 0.000000, 1.279916,-0.000000;;, - 164;3; 0.000000, 1.279916,-0.000000;;, - 165;3; 0.000000, 1.279916, 0.000000;;, - 166;3; 0.000000, 1.279916,-0.000000;;, - 167;3; 0.000000, 1.279916, 0.000000;;, - 168;3; 0.000000, 1.279916, 0.000000;;, - 169;3; 0.000000, 1.279916,-0.000000;;, - 170;3;-0.000000, 1.279916, 0.000000;;, - 171;3;-0.000000, 1.279916, 0.000000;;, - 172;3;-0.000000, 1.279916, 0.000000;;, - 173;3;-0.000000, 1.279916, 0.000000;;, - 174;3;-0.000000, 1.279916,-0.000000;;, - 175;3;-0.000000, 1.279916, 0.000000;;, - 176;3;-0.000000, 1.279916, 0.000000;;, - 177;3;-0.000000, 1.279916,-0.000000;;, - 178;3;-0.000000, 1.279916,-0.000000;;, - 179;3;-0.000000, 1.279916,-0.000000;;, - 180;3; 0.000000, 1.279916,-0.000000;;, - 181;3;-0.000000, 1.279916,-0.000000;;, - 182;3; 0.000000, 1.279916,-0.000000;;, - 183;3; 0.000000, 1.279916,-0.000000;;, - 184;3;-0.000000, 1.279916, 0.000000;;, - 185;3; 0.000000, 1.279916, 0.000000;;, - 186;3; 0.000000, 1.279916,-0.000000;;, - 187;3;-0.000000, 1.279916, 0.000000;;, - 188;3;-0.000000, 1.279916, 0.000000;;, - 189;3; 0.000000, 1.279916, 0.000000;;, - 190;3; 0.000000, 1.279916,-0.000000;;, - 191;3; 0.000000, 1.279916,-0.000000;;, - 192;3; 0.000000, 1.279916, 0.000000;;, - 193;3; 0.000000, 1.279916,-0.000000;;, - 194;3;-0.000000, 1.279916, 0.000000;;, - 195;3; 0.000000, 1.279916, 0.000000;;, - 196;3;-0.000000, 1.279916,-0.000000;;, - 197;3;-0.000000, 1.279916, 0.000000;;, - 198;3; 0.000000, 1.279916,-0.000000;;, - 199;3;-0.000000, 1.279916,-0.000000;;, - 200;3;-0.000000, 1.279916,-0.000000;;, - 201;3;-0.000000, 1.279916,-0.000000;;, - 202;3;-0.000000, 1.279916,-0.000000;;, - 203;3;-0.000000, 1.279916,-0.000000;;, - 204;3;-0.000000, 1.279916,-0.000000;;, - 205;3;-0.000000, 1.279916,-0.000000;;, - 206;3;-0.000000, 1.279916,-0.000000;;, - 207;3;-0.000000, 1.279916,-0.000000;;, - 208;3;-0.000000, 1.279916,-0.000000;;, - 209;3;-0.000000, 1.279916,-0.000000;;, - 210;3;-0.000000, 1.279916,-0.000000;;, - 211;3;-0.000000, 1.279916,-0.000000;;, - 212;3;-0.000000, 1.279916,-0.000000;;, - 213;3;-0.000000, 1.279916,-0.000000;;, - 214;3;-0.000000, 1.279916,-0.000000;;, - 215;3;-0.000000, 1.279916,-0.000000;;, - 216;3;-0.000000, 1.279916,-0.000000;;, - 217;3;-0.000000, 1.279916,-0.000000;;, - 218;3;-0.000000, 1.279916,-0.000000;;, - 219;3;-0.000000, 1.279916,-0.000000;;, - 220;3;-0.000000, 1.279916,-0.000000;;, - 221;3;-0.000000, 1.279916,-0.000000;;, - 222;3;-0.000000, 1.279916,-0.000000;;, - 223;3;-0.000000, 1.279916,-0.000000;;, - 224;3;-0.000000, 1.279916,-0.000000;;, - 225;3;-0.000000, 1.279916,-0.000000;;, - 226;3;-0.000000, 1.279916,-0.000000;;, - 227;3;-0.000000, 1.279916,-0.000000;;, - 228;3;-0.000000, 1.279916,-0.000000;;, - 229;3;-0.000000, 1.279916,-0.000000;;, - 230;3;-0.000000, 1.279916,-0.000000;;, - 231;3;-0.000000, 1.279916,-0.000000;;, - 232;3;-0.000000, 1.279916,-0.000000;;, - 233;3;-0.000000, 1.279916,-0.000000;;, - 234;3;-0.000000, 1.279916,-0.000000;;, - 235;3;-0.000000, 1.279916,-0.000000;;, - 236;3;-0.000000, 1.279916,-0.000000;;, - 237;3;-0.000000, 1.279916,-0.000000;;, - 238;3;-0.000000, 1.279916,-0.000000;;, - 239;3;-0.000000, 1.279916,-0.000000;;, - 240;3;-0.000000, 1.279916,-0.000000;;, - 241;3;-0.000000, 1.279916,-0.000000;;, - 242;3;-0.000000, 1.279916,-0.000000;;, - 243;3;-0.000000, 1.279916,-0.000000;;, - 244;3;-0.000000, 1.279916,-0.000000;;, - 245;3;-0.000000, 1.279916,-0.000000;;, - 246;3;-0.000000, 1.279916,-0.000000;;, - 247;3;-0.000000, 1.279916,-0.000000;;, - 248;3;-0.000000, 1.279916,-0.000000;;, - 249;3;-0.000000, 1.279916,-0.000000;;; - } - } - Animation { - {Armature_Bone_037} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 1;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 2;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 3;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 4;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 5;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 6;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 7;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 8;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 9;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 10;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 11;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 12;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 13;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 14;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 15;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 16;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 17;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 18;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 19;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 20;4;-0.969856,-0.243669,-0.000080,-0.000039;;, - 21;4;-0.969950,-0.243264,-0.000323,-0.000156;;, - 22;4;-0.970108,-0.242587,-0.000730,-0.000353;;, - 23;4;-0.970328,-0.241641,-0.001296,-0.000627;;, - 24;4;-0.970607,-0.240440,-0.002017,-0.000975;;, - 25;4;-0.970941,-0.239003,-0.002878,-0.001391;;, - 26;4;-0.971323,-0.237360,-0.003863,-0.001867;;, - 27;4;-0.971744,-0.235552,-0.004948,-0.002392;;, - 28;4;-0.972192,-0.233627,-0.006102,-0.002949;;, - 29;4;-0.972653,-0.231643,-0.007292,-0.003525;;, - 30;4;-0.973115,-0.229658,-0.008482,-0.004100;;, - 31;4;-0.973563,-0.227733,-0.009636,-0.004658;;, - 32;4;-0.973983,-0.225925,-0.010720,-0.005182;;, - 33;4;-0.974366,-0.224282,-0.011705,-0.005658;;, - 34;4;-0.974700,-0.222845,-0.012567,-0.006074;;, - 35;4;-0.974979,-0.221644,-0.013287,-0.006423;;, - 36;4;-0.975199,-0.220698,-0.013854,-0.006697;;, - 37;4;-0.975357,-0.220021,-0.014260,-0.006893;;, - 38;4;-0.975451,-0.219616,-0.014503,-0.007010;;, - 39;4;-0.975482,-0.219482,-0.014583,-0.007049;;, - 40;4;-0.975451,-0.219616,-0.014503,-0.007010;;, - 41;4;-0.975357,-0.220021,-0.014260,-0.006893;;, - 42;4;-0.975199,-0.220698,-0.013854,-0.006697;;, - 43;4;-0.974979,-0.221644,-0.013287,-0.006423;;, - 44;4;-0.974700,-0.222845,-0.012567,-0.006074;;, - 45;4;-0.974366,-0.224282,-0.011705,-0.005658;;, - 46;4;-0.973983,-0.225925,-0.010720,-0.005182;;, - 47;4;-0.973563,-0.227733,-0.009636,-0.004658;;, - 48;4;-0.973115,-0.229658,-0.008482,-0.004100;;, - 49;4;-0.972653,-0.231643,-0.007292,-0.003525;;, - 50;4;-0.972192,-0.233627,-0.006102,-0.002949;;, - 51;4;-0.971744,-0.235552,-0.004948,-0.002392;;, - 52;4;-0.971323,-0.237360,-0.003863,-0.001867;;, - 53;4;-0.970941,-0.239003,-0.002878,-0.001391;;, - 54;4;-0.970607,-0.240440,-0.002017,-0.000975;;, - 55;4;-0.970328,-0.241641,-0.001296,-0.000627;;, - 56;4;-0.970108,-0.242587,-0.000730,-0.000353;;, - 57;4;-0.969950,-0.243264,-0.000323,-0.000156;;, - 58;4;-0.969856,-0.243669,-0.000080,-0.000039;;, - 59;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 60;4;-0.969850,-0.243657,-0.000087,-0.000042;;, - 61;4;-0.969925,-0.243215,-0.000348,-0.000168;;, - 62;4;-0.970052,-0.242475,-0.000785,-0.000379;;, - 63;4;-0.970230,-0.241435,-0.001399,-0.000676;;, - 64;4;-0.970459,-0.240097,-0.002190,-0.001059;;, - 65;4;-0.970738,-0.238460,-0.003157,-0.001526;;, - 66;4;-0.971069,-0.236529,-0.004298,-0.002078;;, - 67;4;-0.971448,-0.234309,-0.005610,-0.002712;;, - 68;4;-0.971876,-0.231806,-0.007088,-0.003426;;, - 69;4;-0.972350,-0.229032,-0.008727,-0.004218;;, - 70;4;-0.972869,-0.225999,-0.010520,-0.005085;;, - 71;4;-0.973430,-0.222721,-0.012456,-0.006021;;, - 72;4;-0.974029,-0.219217,-0.014527,-0.007022;;, - 73;4;-0.974663,-0.215506,-0.016719,-0.008081;;, - 74;4;-0.975329,-0.211614,-0.019019,-0.009193;;, - 75;4;-0.976021,-0.207565,-0.021411,-0.010349;;, - 76;4;-0.976736,-0.203387,-0.023879,-0.011542;;, - 77;4;-0.977467,-0.199112,-0.026405,-0.012763;;, - 78;4;-0.978209,-0.194770,-0.028970,-0.014003;;, - 79;4;-0.978957,-0.190395,-0.031555,-0.015253;;, - 80;4;-0.979705,-0.186020,-0.034140,-0.016502;;, - 81;4;-0.980448,-0.181678,-0.036705,-0.017742;;, - 82;4;-0.981179,-0.177403,-0.039231,-0.018963;;, - 83;4;-0.981893,-0.173226,-0.041700,-0.020156;;, - 84;4;-0.982585,-0.169177,-0.044092,-0.021313;;, - 85;4;-0.983251,-0.165284,-0.046392,-0.022424;;, - 86;4;-0.983885,-0.161574,-0.048584,-0.023484;;, - 87;4;-0.984485,-0.158070,-0.050654,-0.024485;;, - 88;4;-0.985045,-0.154792,-0.052591,-0.025421;;, - 89;4;-0.985564,-0.151758,-0.054383,-0.026287;;, - 90;4;-0.986038,-0.148984,-0.056022,-0.027080;;, - 91;4;-0.986466,-0.146482,-0.057501,-0.027794;;, - 92;4;-0.986846,-0.144261,-0.058812,-0.028428;;, - 93;4;-0.987176,-0.142330,-0.059953,-0.028980;;, - 94;4;-0.987456,-0.140694,-0.060920,-0.029447;;, - 95;4;-0.987685,-0.139355,-0.061711,-0.029830;;, - 96;4;-0.987862,-0.138316,-0.062325,-0.030126;;, - 97;4;-0.987989,-0.137576,-0.062763,-0.030338;;, - 98;4;-0.988065,-0.137134,-0.063024,-0.030464;;, - 99;4;-0.988090,-0.136987,-0.063110,-0.030506;;, - 100;4;-0.987822,-0.138188,-0.062392,-0.030159;;, - 101;4;-0.986990,-0.141919,-0.060160,-0.029080;;, - 102;4;-0.985577,-0.148256,-0.056369,-0.027247;;, - 103;4;-0.983618,-0.157039,-0.051114,-0.024707;;, - 104;4;-0.981220,-0.167792,-0.044682,-0.021598;;, - 105;4;-0.978553,-0.179755,-0.037525,-0.018139;;, - 106;4;-0.975812,-0.192046,-0.030173,-0.014585;;, - 107;4;-0.973176,-0.203871,-0.023098,-0.011165;;, - 108;4;-0.970769,-0.214665,-0.016641,-0.008044;;, - 109;4;-0.968663,-0.224108,-0.010992,-0.005313;;, - 110;4;-0.966558,-0.233550,-0.005343,-0.002583;;, - 111;4;-0.964151,-0.244344, 0.001114, 0.000539;;, - 112;4;-0.961514,-0.256170, 0.008189, 0.003958;;, - 113;4;-0.958773,-0.268460, 0.015541, 0.007512;;, - 114;4;-0.956106,-0.280423, 0.022698, 0.010972;;, - 115;4;-0.953708,-0.291176, 0.029130, 0.014081;;, - 116;4;-0.951750,-0.299959, 0.034385, 0.016621;;, - 117;4;-0.950337,-0.306296, 0.038176, 0.018453;;, - 118;4;-0.949505,-0.310027, 0.040408, 0.019532;;, - 119;4;-0.949237,-0.311228, 0.041127, 0.019880;;, - 120;4;-0.949505,-0.310027, 0.040408, 0.019532;;, - 121;4;-0.950337,-0.306296, 0.038176, 0.018453;;, - 122;4;-0.951750,-0.299959, 0.034385, 0.016621;;, - 123;4;-0.953708,-0.291176, 0.029130, 0.014081;;, - 124;4;-0.956106,-0.280423, 0.022698, 0.010972;;, - 125;4;-0.958773,-0.268460, 0.015541, 0.007512;;, - 126;4;-0.961514,-0.256170, 0.008189, 0.003958;;, - 127;4;-0.964151,-0.244344, 0.001114, 0.000539;;, - 128;4;-0.966558,-0.233550,-0.005343,-0.002583;;, - 129;4;-0.968663,-0.224108,-0.010992,-0.005313;;, - 130;4;-0.970769,-0.214665,-0.016641,-0.008044;;, - 131;4;-0.973176,-0.203871,-0.023098,-0.011165;;, - 132;4;-0.975812,-0.192046,-0.030173,-0.014585;;, - 133;4;-0.978553,-0.179755,-0.037525,-0.018139;;, - 134;4;-0.981220,-0.167792,-0.044682,-0.021598;;, - 135;4;-0.983618,-0.157039,-0.051114,-0.024707;;, - 136;4;-0.985577,-0.148256,-0.056369,-0.027247;;, - 137;4;-0.986990,-0.141919,-0.060160,-0.029080;;, - 138;4;-0.987822,-0.138188,-0.062392,-0.030159;;, - 139;4;-0.988090,-0.136987,-0.063110,-0.030506;;, - 140;4;-0.986990,-0.141919,-0.060160,-0.029080;;, - 141;4;-0.983618,-0.157039,-0.051114,-0.024707;;, - 142;4;-0.978553,-0.179755,-0.037525,-0.018139;;, - 143;4;-0.973176,-0.203871,-0.023098,-0.011165;;, - 144;4;-0.968663,-0.224108,-0.010992,-0.005313;;, - 145;4;-0.964151,-0.244344, 0.001114, 0.000539;;, - 146;4;-0.958773,-0.268460, 0.015541, 0.007512;;, - 147;4;-0.953708,-0.291176, 0.029130, 0.014081;;, - 148;4;-0.950337,-0.306296, 0.038176, 0.018453;;, - 149;4;-0.949237,-0.311228, 0.041127, 0.019880;;, - 150;4;-0.950337,-0.306296, 0.038176, 0.018453;;, - 151;4;-0.953708,-0.291176, 0.029130, 0.014081;;, - 152;4;-0.958773,-0.268460, 0.015541, 0.007512;;, - 153;4;-0.964151,-0.244344, 0.001114, 0.000539;;, - 154;4;-0.968663,-0.224108,-0.010992,-0.005313;;, - 155;4;-0.973176,-0.203871,-0.023098,-0.011165;;, - 156;4;-0.978553,-0.179755,-0.037525,-0.018139;;, - 157;4;-0.983618,-0.157039,-0.051114,-0.024707;;, - 158;4;-0.986990,-0.141919,-0.060160,-0.029080;;, - 159;4;-0.988090,-0.136987,-0.063110,-0.030506;;, - 160;4;-0.987989,-0.137576,-0.062763,-0.030338;;, - 161;4;-0.987685,-0.139355,-0.061711,-0.029830;;, - 162;4;-0.987176,-0.142330,-0.059953,-0.028980;;, - 163;4;-0.986466,-0.146482,-0.057501,-0.027794;;, - 164;4;-0.985564,-0.151758,-0.054383,-0.026287;;, - 165;4;-0.984485,-0.158070,-0.050654,-0.024485;;, - 166;4;-0.983251,-0.165284,-0.046392,-0.022424;;, - 167;4;-0.981893,-0.173226,-0.041700,-0.020156;;, - 168;4;-0.980448,-0.181678,-0.036705,-0.017742;;, - 169;4;-0.978957,-0.190395,-0.031555,-0.015253;;, - 170;4;-0.977467,-0.199112,-0.026405,-0.012763;;, - 171;4;-0.976021,-0.207565,-0.021411,-0.010349;;, - 172;4;-0.974663,-0.215506,-0.016719,-0.008081;;, - 173;4;-0.973430,-0.222721,-0.012456,-0.006021;;, - 174;4;-0.972350,-0.229032,-0.008727,-0.004218;;, - 175;4;-0.971448,-0.234309,-0.005610,-0.002712;;, - 176;4;-0.970738,-0.238460,-0.003157,-0.001526;;, - 177;4;-0.970230,-0.241435,-0.001399,-0.000676;;, - 178;4;-0.969925,-0.243215,-0.000348,-0.000168;;, - 179;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 180;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 181;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 182;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 183;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 184;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 185;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 186;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 187;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 188;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 189;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 190;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 191;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 192;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 193;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 194;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 195;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 196;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 197;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 198;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 199;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 200;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 201;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 202;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 203;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 204;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 205;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 206;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 207;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 208;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 209;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 210;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 211;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 212;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 213;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 214;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 215;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 216;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 217;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 218;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 219;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 220;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 221;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 222;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 223;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 224;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 225;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 226;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 227;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 228;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 229;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 230;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 231;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 232;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 233;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 234;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 235;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 236;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 237;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 238;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 239;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 240;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 241;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 242;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 243;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 244;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 245;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 246;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 247;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 248;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 249;4;-0.969825,-0.243803,-0.000000, 0.000000;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3;-0.000000, 1.228416,-0.000000;;, - 1;3;-0.000000, 1.228416,-0.000000;;, - 2;3;-0.000000, 1.228416,-0.000000;;, - 3;3;-0.000000, 1.228416,-0.000000;;, - 4;3;-0.000000, 1.228416,-0.000000;;, - 5;3;-0.000000, 1.228416,-0.000000;;, - 6;3;-0.000000, 1.228416,-0.000000;;, - 7;3;-0.000000, 1.228416,-0.000000;;, - 8;3;-0.000000, 1.228416,-0.000000;;, - 9;3;-0.000000, 1.228416,-0.000000;;, - 10;3;-0.000000, 1.228416,-0.000000;;, - 11;3;-0.000000, 1.228416,-0.000000;;, - 12;3;-0.000000, 1.228416,-0.000000;;, - 13;3;-0.000000, 1.228416,-0.000000;;, - 14;3;-0.000000, 1.228416,-0.000000;;, - 15;3;-0.000000, 1.228416,-0.000000;;, - 16;3;-0.000000, 1.228416,-0.000000;;, - 17;3;-0.000000, 1.228416,-0.000000;;, - 18;3;-0.000000, 1.228416,-0.000000;;, - 19;3;-0.000000, 1.228416,-0.000000;;, - 20;3;-0.000000, 1.228416,-0.000000;;, - 21;3;-0.000000, 1.228416,-0.000000;;, - 22;3;-0.000000, 1.228416,-0.000000;;, - 23;3;-0.000000, 1.228416,-0.000000;;, - 24;3;-0.000000, 1.228416,-0.000000;;, - 25;3;-0.000000, 1.228416,-0.000000;;, - 26;3;-0.000000, 1.228416,-0.000000;;, - 27;3;-0.000000, 1.228416,-0.000000;;, - 28;3;-0.000000, 1.228416,-0.000000;;, - 29;3;-0.000000, 1.228416,-0.000000;;, - 30;3;-0.000000, 1.228416,-0.000000;;, - 31;3;-0.000000, 1.228416,-0.000000;;, - 32;3;-0.000000, 1.228416,-0.000000;;, - 33;3;-0.000000, 1.228416,-0.000000;;, - 34;3;-0.000000, 1.228416,-0.000000;;, - 35;3;-0.000000, 1.228416,-0.000000;;, - 36;3;-0.000000, 1.228416,-0.000000;;, - 37;3;-0.000000, 1.228416,-0.000000;;, - 38;3;-0.000000, 1.228416,-0.000000;;, - 39;3;-0.000000, 1.228416,-0.000000;;, - 40;3;-0.000000, 1.228416,-0.000000;;, - 41;3;-0.000000, 1.228416,-0.000000;;, - 42;3;-0.000000, 1.228416,-0.000000;;, - 43;3;-0.000000, 1.228416,-0.000000;;, - 44;3;-0.000000, 1.228416,-0.000000;;, - 45;3;-0.000000, 1.228416,-0.000000;;, - 46;3;-0.000000, 1.228416,-0.000000;;, - 47;3;-0.000000, 1.228416,-0.000000;;, - 48;3;-0.000000, 1.228416,-0.000000;;, - 49;3;-0.000000, 1.228416,-0.000000;;, - 50;3;-0.000000, 1.228416,-0.000000;;, - 51;3;-0.000000, 1.228416,-0.000000;;, - 52;3;-0.000000, 1.228416,-0.000000;;, - 53;3;-0.000000, 1.228416,-0.000000;;, - 54;3;-0.000000, 1.228416,-0.000000;;, - 55;3;-0.000000, 1.228416,-0.000000;;, - 56;3;-0.000000, 1.228416,-0.000000;;, - 57;3;-0.000000, 1.228416,-0.000000;;, - 58;3;-0.000000, 1.228416,-0.000000;;, - 59;3;-0.000000, 1.228416,-0.000000;;, - 60;3;-0.000000, 1.228417,-0.000000;;, - 61;3;-0.000000, 1.228416, 0.000000;;, - 62;3;-0.000000, 1.228416, 0.000000;;, - 63;3;-0.000000, 1.228416, 0.000000;;, - 64;3; 0.000000, 1.228416, 0.000000;;, - 65;3;-0.000000, 1.228416,-0.000000;;, - 66;3;-0.000000, 1.228417, 0.000000;;, - 67;3; 0.000000, 1.228417, 0.000000;;, - 68;3; 0.000000, 1.228417,-0.000000;;, - 69;3; 0.000000, 1.228416,-0.000000;;, - 70;3;-0.000000, 1.228417,-0.000000;;, - 71;3;-0.000000, 1.228416, 0.000000;;, - 72;3;-0.000000, 1.228417, 0.000000;;, - 73;3; 0.000000, 1.228416, 0.000000;;, - 74;3;-0.000000, 1.228417, 0.000000;;, - 75;3;-0.000000, 1.228417, 0.000000;;, - 76;3;-0.000000, 1.228416, 0.000000;;, - 77;3; 0.000000, 1.228417, 0.000000;;, - 78;3;-0.000000, 1.228417,-0.000000;;, - 79;3;-0.000000, 1.228417,-0.000000;;, - 80;3;-0.000000, 1.228417, 0.000000;;, - 81;3;-0.000001, 1.228416, 0.000000;;, - 82;3;-0.000000, 1.228416,-0.000000;;, - 83;3; 0.000000, 1.228416, 0.000000;;, - 84;3;-0.000000, 1.228416, 0.000000;;, - 85;3;-0.000000, 1.228417,-0.000000;;, - 86;3;-0.000000, 1.228416, 0.000000;;, - 87;3;-0.000000, 1.228416,-0.000000;;, - 88;3;-0.000000, 1.228416, 0.000000;;, - 89;3; 0.000000, 1.228416,-0.000000;;, - 90;3;-0.000000, 1.228417, 0.000000;;, - 91;3;-0.000000, 1.228417,-0.000000;;, - 92;3;-0.000000, 1.228416,-0.000000;;, - 93;3; 0.000000, 1.228417,-0.000000;;, - 94;3; 0.000000, 1.228416, 0.000000;;, - 95;3;-0.000000, 1.228417,-0.000000;;, - 96;3; 0.000000, 1.228417,-0.000000;;, - 97;3;-0.000000, 1.228416,-0.000000;;, - 98;3; 0.000000, 1.228417, 0.000000;;, - 99;3;-0.000000, 1.228416,-0.000000;;, - 100;3;-0.000000, 1.228416, 0.000000;;, - 101;3;-0.000000, 1.228417, 0.000000;;, - 102;3;-0.000000, 1.228416,-0.000000;;, - 103;3;-0.000000, 1.228416,-0.000000;;, - 104;3;-0.000000, 1.228416,-0.000000;;, - 105;3;-0.000000, 1.228416,-0.000000;;, - 106;3; 0.000000, 1.228416, 0.000000;;, - 107;3;-0.000000, 1.228416, 0.000000;;, - 108;3; 0.000000, 1.228416,-0.000000;;, - 109;3; 0.000000, 1.228416,-0.000000;;, - 110;3; 0.000000, 1.228416, 0.000000;;, - 111;3; 0.000000, 1.228417, 0.000000;;, - 112;3; 0.000000, 1.228416,-0.000000;;, - 113;3; 0.000000, 1.228416,-0.000000;;, - 114;3;-0.000000, 1.228416,-0.000000;;, - 115;3; 0.000000, 1.228417,-0.000000;;, - 116;3; 0.000000, 1.228416, 0.000000;;, - 117;3;-0.000000, 1.228416, 0.000000;;, - 118;3;-0.000000, 1.228416,-0.000000;;, - 119;3;-0.000000, 1.228416,-0.000000;;, - 120;3;-0.000000, 1.228416, 0.000000;;, - 121;3;-0.000000, 1.228416,-0.000000;;, - 122;3; 0.000000, 1.228416,-0.000000;;, - 123;3; 0.000000, 1.228417,-0.000000;;, - 124;3; 0.000000, 1.228417,-0.000000;;, - 125;3; 0.000000, 1.228416, 0.000000;;, - 126;3; 0.000000, 1.228417, 0.000000;;, - 127;3;-0.000000, 1.228416, 0.000000;;, - 128;3; 0.000000, 1.228416,-0.000000;;, - 129;3;-0.000000, 1.228417, 0.000000;;, - 130;3;-0.000000, 1.228416,-0.000000;;, - 131;3; 0.000000, 1.228416, 0.000000;;, - 132;3;-0.000000, 1.228416, 0.000000;;, - 133;3;-0.000000, 1.228417,-0.000000;;, - 134;3; 0.000000, 1.228417,-0.000000;;, - 135;3; 0.000000, 1.228416, 0.000000;;, - 136;3;-0.000000, 1.228417,-0.000000;;, - 137;3; 0.000000, 1.228416, 0.000000;;, - 138;3; 0.000000, 1.228417, 0.000000;;, - 139;3;-0.000000, 1.228416,-0.000000;;, - 140;3; 0.000000, 1.228416, 0.000000;;, - 141;3; 0.000000, 1.228417,-0.000000;;, - 142;3;-0.000000, 1.228416, 0.000000;;, - 143;3;-0.000000, 1.228416,-0.000000;;, - 144;3; 0.000000, 1.228416,-0.000000;;, - 145;3; 0.000000, 1.228417, 0.000000;;, - 146;3; 0.000000, 1.228416,-0.000000;;, - 147;3; 0.000000, 1.228417,-0.000000;;, - 148;3;-0.000000, 1.228416, 0.000000;;, - 149;3;-0.000000, 1.228416,-0.000000;;, - 150;3;-0.000000, 1.228416,-0.000000;;, - 151;3; 0.000000, 1.228417,-0.000000;;, - 152;3; 0.000000, 1.228416, 0.000000;;, - 153;3;-0.000000, 1.228416, 0.000000;;, - 154;3;-0.000000, 1.228417, 0.000000;;, - 155;3;-0.000000, 1.228416, 0.000000;;, - 156;3;-0.000000, 1.228417, 0.000000;;, - 157;3;-0.000000, 1.228417, 0.000000;;, - 158;3;-0.000000, 1.228416,-0.000000;;, - 159;3;-0.000000, 1.228416,-0.000000;;, - 160;3;-0.000000, 1.228417,-0.000000;;, - 161;3;-0.000000, 1.228417,-0.000000;;, - 162;3;-0.000000, 1.228417, 0.000000;;, - 163;3;-0.000000, 1.228416, 0.000000;;, - 164;3;-0.000000, 1.228416,-0.000000;;, - 165;3;-0.000000, 1.228416,-0.000000;;, - 166;3; 0.000000, 1.228417,-0.000000;;, - 167;3;-0.000000, 1.228416,-0.000000;;, - 168;3; 0.000000, 1.228416,-0.000000;;, - 169;3;-0.000000, 1.228416, 0.000000;;, - 170;3;-0.000000, 1.228416, 0.000000;;, - 171;3;-0.000000, 1.228416,-0.000000;;, - 172;3;-0.000000, 1.228416,-0.000000;;, - 173;3;-0.000000, 1.228416, 0.000000;;, - 174;3;-0.000000, 1.228417,-0.000000;;, - 175;3;-0.000000, 1.228416, 0.000000;;, - 176;3;-0.000000, 1.228416,-0.000000;;, - 177;3;-0.000000, 1.228417, 0.000000;;, - 178;3; 0.000000, 1.228417, 0.000000;;, - 179;3;-0.000000, 1.228416,-0.000000;;, - 180;3; 0.000000, 1.228417, 0.000000;;, - 181;3;-0.000000, 1.228416, 0.000000;;, - 182;3; 0.000000, 1.228417,-0.000000;;, - 183;3;-0.000000, 1.228416, 0.000000;;, - 184;3; 0.000000, 1.228416,-0.000000;;, - 185;3;-0.000000, 1.228416,-0.000000;;, - 186;3; 0.000000, 1.228416,-0.000000;;, - 187;3; 0.000000, 1.228416,-0.000000;;, - 188;3;-0.000000, 1.228417, 0.000000;;, - 189;3;-0.000000, 1.228416, 0.000000;;, - 190;3;-0.000000, 1.228416, 0.000000;;, - 191;3; 0.000000, 1.228416, 0.000000;;, - 192;3; 0.000000, 1.228416, 0.000000;;, - 193;3; 0.000000, 1.228416, 0.000000;;, - 194;3; 0.000000, 1.228416, 0.000000;;, - 195;3;-0.000000, 1.228417, 0.000000;;, - 196;3; 0.000000, 1.228417, 0.000000;;, - 197;3; 0.000000, 1.228417,-0.000000;;, - 198;3;-0.000000, 1.228417, 0.000000;;, - 199;3;-0.000000, 1.228416,-0.000000;;, - 200;3;-0.000000, 1.228416,-0.000000;;, - 201;3;-0.000000, 1.228416,-0.000000;;, - 202;3;-0.000000, 1.228416,-0.000000;;, - 203;3;-0.000000, 1.228416,-0.000000;;, - 204;3;-0.000000, 1.228416,-0.000000;;, - 205;3;-0.000000, 1.228416,-0.000000;;, - 206;3;-0.000000, 1.228416,-0.000000;;, - 207;3;-0.000000, 1.228416,-0.000000;;, - 208;3;-0.000000, 1.228416,-0.000000;;, - 209;3;-0.000000, 1.228416,-0.000000;;, - 210;3;-0.000000, 1.228416,-0.000000;;, - 211;3;-0.000000, 1.228416,-0.000000;;, - 212;3;-0.000000, 1.228416,-0.000000;;, - 213;3;-0.000000, 1.228416,-0.000000;;, - 214;3;-0.000000, 1.228416,-0.000000;;, - 215;3;-0.000000, 1.228416,-0.000000;;, - 216;3;-0.000000, 1.228416,-0.000000;;, - 217;3;-0.000000, 1.228416,-0.000000;;, - 218;3;-0.000000, 1.228416,-0.000000;;, - 219;3;-0.000000, 1.228416,-0.000000;;, - 220;3;-0.000000, 1.228416,-0.000000;;, - 221;3;-0.000000, 1.228416,-0.000000;;, - 222;3;-0.000000, 1.228416,-0.000000;;, - 223;3;-0.000000, 1.228416,-0.000000;;, - 224;3;-0.000000, 1.228416,-0.000000;;, - 225;3;-0.000000, 1.228416,-0.000000;;, - 226;3;-0.000000, 1.228416,-0.000000;;, - 227;3;-0.000000, 1.228416,-0.000000;;, - 228;3;-0.000000, 1.228416,-0.000000;;, - 229;3;-0.000000, 1.228416,-0.000000;;, - 230;3;-0.000000, 1.228416,-0.000000;;, - 231;3;-0.000000, 1.228416,-0.000000;;, - 232;3;-0.000000, 1.228416,-0.000000;;, - 233;3;-0.000000, 1.228416,-0.000000;;, - 234;3;-0.000000, 1.228416,-0.000000;;, - 235;3;-0.000000, 1.228416,-0.000000;;, - 236;3;-0.000000, 1.228416,-0.000000;;, - 237;3;-0.000000, 1.228416,-0.000000;;, - 238;3;-0.000000, 1.228416,-0.000000;;, - 239;3;-0.000000, 1.228416,-0.000000;;, - 240;3;-0.000000, 1.228416,-0.000000;;, - 241;3;-0.000000, 1.228416,-0.000000;;, - 242;3;-0.000000, 1.228416,-0.000000;;, - 243;3;-0.000000, 1.228416,-0.000000;;, - 244;3;-0.000000, 1.228416,-0.000000;;, - 245;3;-0.000000, 1.228416,-0.000000;;, - 246;3;-0.000000, 1.228416,-0.000000;;, - 247;3;-0.000000, 1.228416,-0.000000;;, - 248;3;-0.000000, 1.228416,-0.000000;;, - 249;3;-0.000000, 1.228416,-0.000000;;; - } - } - Animation { - {Armature_Bone_010} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 1;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 2;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 3;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 4;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 5;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 6;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 7;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 8;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 9;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 10;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 11;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 12;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 13;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 14;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 15;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 16;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 17;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 18;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 19;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 20;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 21;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 22;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 23;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 24;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 25;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 26;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 27;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 28;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 29;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 30;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 31;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 32;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 33;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 34;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 35;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 36;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 37;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 38;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 39;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 40;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 41;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 42;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 43;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 44;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 45;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 46;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 47;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 48;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 49;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 50;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 51;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 52;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 53;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 54;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 55;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 56;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 57;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 58;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 59;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 60;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 61;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 62;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 63;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 64;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 65;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 66;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 67;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 68;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 69;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 70;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 71;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 72;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 73;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 74;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 75;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 76;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 77;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 78;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 79;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 80;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 81;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 82;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 83;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 84;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 85;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 86;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 87;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 88;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 89;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 90;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 91;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 92;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 93;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 94;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 95;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 96;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 97;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 98;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 99;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 100;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 101;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 102;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 103;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 104;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 105;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 106;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 107;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 108;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 109;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 110;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 111;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 112;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 113;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 114;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 115;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 116;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 117;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 118;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 119;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 120;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 121;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 122;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 123;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 124;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 125;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 126;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 127;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 128;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 129;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 130;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 131;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 132;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 133;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 134;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 135;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 136;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 137;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 138;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 139;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 140;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 141;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 142;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 143;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 144;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 145;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 146;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 147;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 148;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 149;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 150;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 151;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 152;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 153;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 154;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 155;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 156;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 157;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 158;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 159;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 160;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 161;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 162;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 163;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 164;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 165;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 166;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 167;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 168;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 169;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 170;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 171;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 172;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 173;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 174;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 175;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 176;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 177;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 178;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 179;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 180;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 181;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 182;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 183;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 184;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 185;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 186;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 187;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 188;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 189;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 190;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 191;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 192;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 193;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 194;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 195;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 196;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 197;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 198;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 199;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 200;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 201;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 202;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 203;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 204;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 205;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 206;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 207;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 208;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 209;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 210;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 211;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 212;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 213;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 214;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 215;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 216;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 217;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 218;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 219;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 220;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 221;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 222;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 223;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 224;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 225;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 226;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 227;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 228;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 229;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 230;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 231;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 232;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 233;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 234;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 235;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 236;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 237;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 238;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 239;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 240;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 241;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 242;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 243;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 244;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 245;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 246;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 247;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 248;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 249;4;-0.527685, 0.000000,-0.000000, 0.849440;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3; 0.000000, 0.826434, 0.000000;;, - 1;3; 0.000000, 0.826434, 0.000000;;, - 2;3; 0.000000, 0.826434, 0.000000;;, - 3;3; 0.000000, 0.826434, 0.000000;;, - 4;3; 0.000000, 0.826434, 0.000000;;, - 5;3; 0.000000, 0.826434, 0.000000;;, - 6;3; 0.000000, 0.826434, 0.000000;;, - 7;3; 0.000000, 0.826434, 0.000000;;, - 8;3; 0.000000, 0.826434, 0.000000;;, - 9;3; 0.000000, 0.826434, 0.000000;;, - 10;3; 0.000000, 0.826434, 0.000000;;, - 11;3; 0.000000, 0.826434, 0.000000;;, - 12;3; 0.000000, 0.826434, 0.000000;;, - 13;3; 0.000000, 0.826434, 0.000000;;, - 14;3; 0.000000, 0.826434, 0.000000;;, - 15;3; 0.000000, 0.826434, 0.000000;;, - 16;3; 0.000000, 0.826434, 0.000000;;, - 17;3; 0.000000, 0.826434, 0.000000;;, - 18;3; 0.000000, 0.826434, 0.000000;;, - 19;3; 0.000000, 0.826434, 0.000000;;, - 20;3; 0.000000, 0.826434, 0.000000;;, - 21;3; 0.000000, 0.826434, 0.000000;;, - 22;3; 0.000000, 0.826434, 0.000000;;, - 23;3; 0.000000, 0.826434, 0.000000;;, - 24;3; 0.000000, 0.826434, 0.000000;;, - 25;3; 0.000000, 0.826434, 0.000000;;, - 26;3; 0.000000, 0.826434, 0.000000;;, - 27;3; 0.000000, 0.826434, 0.000000;;, - 28;3; 0.000000, 0.826434, 0.000000;;, - 29;3; 0.000000, 0.826434, 0.000000;;, - 30;3; 0.000000, 0.826434, 0.000000;;, - 31;3; 0.000000, 0.826434, 0.000000;;, - 32;3; 0.000000, 0.826434, 0.000000;;, - 33;3; 0.000000, 0.826434, 0.000000;;, - 34;3; 0.000000, 0.826434, 0.000000;;, - 35;3; 0.000000, 0.826434, 0.000000;;, - 36;3; 0.000000, 0.826434, 0.000000;;, - 37;3; 0.000000, 0.826434, 0.000000;;, - 38;3; 0.000000, 0.826434, 0.000000;;, - 39;3; 0.000000, 0.826434, 0.000000;;, - 40;3; 0.000000, 0.826434, 0.000000;;, - 41;3; 0.000000, 0.826434, 0.000000;;, - 42;3; 0.000000, 0.826434, 0.000000;;, - 43;3; 0.000000, 0.826434, 0.000000;;, - 44;3; 0.000000, 0.826434, 0.000000;;, - 45;3; 0.000000, 0.826434, 0.000000;;, - 46;3; 0.000000, 0.826434, 0.000000;;, - 47;3; 0.000000, 0.826434, 0.000000;;, - 48;3; 0.000000, 0.826434, 0.000000;;, - 49;3; 0.000000, 0.826434, 0.000000;;, - 50;3; 0.000000, 0.826434, 0.000000;;, - 51;3; 0.000000, 0.826434, 0.000000;;, - 52;3; 0.000000, 0.826434, 0.000000;;, - 53;3; 0.000000, 0.826434, 0.000000;;, - 54;3; 0.000000, 0.826434, 0.000000;;, - 55;3; 0.000000, 0.826434, 0.000000;;, - 56;3; 0.000000, 0.826434, 0.000000;;, - 57;3; 0.000000, 0.826434, 0.000000;;, - 58;3; 0.000000, 0.826434, 0.000000;;, - 59;3; 0.000000, 0.826434, 0.000000;;, - 60;3; 0.000000, 0.826434, 0.000000;;, - 61;3; 0.000000, 0.826434, 0.000000;;, - 62;3; 0.000000, 0.826434, 0.000000;;, - 63;3; 0.000000, 0.826434, 0.000000;;, - 64;3; 0.000000, 0.826434, 0.000000;;, - 65;3; 0.000000, 0.826434, 0.000000;;, - 66;3; 0.000000, 0.826434, 0.000000;;, - 67;3; 0.000000, 0.826434, 0.000000;;, - 68;3; 0.000000, 0.826434, 0.000000;;, - 69;3; 0.000000, 0.826434, 0.000000;;, - 70;3; 0.000000, 0.826434, 0.000000;;, - 71;3; 0.000000, 0.826434, 0.000000;;, - 72;3; 0.000000, 0.826434, 0.000000;;, - 73;3; 0.000000, 0.826434, 0.000000;;, - 74;3; 0.000000, 0.826434, 0.000000;;, - 75;3; 0.000000, 0.826434, 0.000000;;, - 76;3; 0.000000, 0.826434, 0.000000;;, - 77;3; 0.000000, 0.826434, 0.000000;;, - 78;3; 0.000000, 0.826434, 0.000000;;, - 79;3; 0.000000, 0.826434, 0.000000;;, - 80;3; 0.000000, 0.826434, 0.000000;;, - 81;3; 0.000000, 0.826434, 0.000000;;, - 82;3; 0.000000, 0.826434, 0.000000;;, - 83;3; 0.000000, 0.826434, 0.000000;;, - 84;3; 0.000000, 0.826434, 0.000000;;, - 85;3; 0.000000, 0.826434, 0.000000;;, - 86;3; 0.000000, 0.826434, 0.000000;;, - 87;3; 0.000000, 0.826434, 0.000000;;, - 88;3; 0.000000, 0.826434, 0.000000;;, - 89;3; 0.000000, 0.826434, 0.000000;;, - 90;3; 0.000000, 0.826434, 0.000000;;, - 91;3; 0.000000, 0.826434, 0.000000;;, - 92;3; 0.000000, 0.826434, 0.000000;;, - 93;3; 0.000000, 0.826434, 0.000000;;, - 94;3; 0.000000, 0.826434, 0.000000;;, - 95;3; 0.000000, 0.826434, 0.000000;;, - 96;3; 0.000000, 0.826434, 0.000000;;, - 97;3; 0.000000, 0.826434, 0.000000;;, - 98;3; 0.000000, 0.826434, 0.000000;;, - 99;3; 0.000000, 0.826434, 0.000000;;, - 100;3; 0.000000, 0.826434, 0.000000;;, - 101;3; 0.000000, 0.826434, 0.000000;;, - 102;3; 0.000000, 0.826434, 0.000000;;, - 103;3; 0.000000, 0.826434, 0.000000;;, - 104;3; 0.000000, 0.826434, 0.000000;;, - 105;3; 0.000000, 0.826434, 0.000000;;, - 106;3; 0.000000, 0.826434, 0.000000;;, - 107;3; 0.000000, 0.826434, 0.000000;;, - 108;3; 0.000000, 0.826434, 0.000000;;, - 109;3; 0.000000, 0.826434, 0.000000;;, - 110;3; 0.000000, 0.826434, 0.000000;;, - 111;3; 0.000000, 0.826434, 0.000000;;, - 112;3; 0.000000, 0.826434, 0.000000;;, - 113;3; 0.000000, 0.826434, 0.000000;;, - 114;3; 0.000000, 0.826434, 0.000000;;, - 115;3; 0.000000, 0.826434, 0.000000;;, - 116;3; 0.000000, 0.826434, 0.000000;;, - 117;3; 0.000000, 0.826434, 0.000000;;, - 118;3; 0.000000, 0.826434, 0.000000;;, - 119;3; 0.000000, 0.826434, 0.000000;;, - 120;3; 0.000000, 0.826434, 0.000000;;, - 121;3; 0.000000, 0.826434, 0.000000;;, - 122;3; 0.000000, 0.826434, 0.000000;;, - 123;3; 0.000000, 0.826434, 0.000000;;, - 124;3; 0.000000, 0.826434, 0.000000;;, - 125;3; 0.000000, 0.826434, 0.000000;;, - 126;3; 0.000000, 0.826434, 0.000000;;, - 127;3; 0.000000, 0.826434, 0.000000;;, - 128;3; 0.000000, 0.826434, 0.000000;;, - 129;3; 0.000000, 0.826434, 0.000000;;, - 130;3; 0.000000, 0.826434, 0.000000;;, - 131;3; 0.000000, 0.826434, 0.000000;;, - 132;3; 0.000000, 0.826434, 0.000000;;, - 133;3; 0.000000, 0.826434, 0.000000;;, - 134;3; 0.000000, 0.826434, 0.000000;;, - 135;3; 0.000000, 0.826434, 0.000000;;, - 136;3; 0.000000, 0.826434, 0.000000;;, - 137;3; 0.000000, 0.826434, 0.000000;;, - 138;3; 0.000000, 0.826434, 0.000000;;, - 139;3; 0.000000, 0.826434, 0.000000;;, - 140;3; 0.000000, 0.826434, 0.000000;;, - 141;3; 0.000000, 0.826434, 0.000000;;, - 142;3; 0.000000, 0.826434, 0.000000;;, - 143;3; 0.000000, 0.826434, 0.000000;;, - 144;3; 0.000000, 0.826434, 0.000000;;, - 145;3; 0.000000, 0.826434, 0.000000;;, - 146;3; 0.000000, 0.826434, 0.000000;;, - 147;3; 0.000000, 0.826434, 0.000000;;, - 148;3; 0.000000, 0.826434, 0.000000;;, - 149;3; 0.000000, 0.826434, 0.000000;;, - 150;3; 0.000000, 0.826434, 0.000000;;, - 151;3; 0.000000, 0.826434, 0.000000;;, - 152;3; 0.000000, 0.826434, 0.000000;;, - 153;3; 0.000000, 0.826434, 0.000000;;, - 154;3; 0.000000, 0.826434, 0.000000;;, - 155;3; 0.000000, 0.826434, 0.000000;;, - 156;3; 0.000000, 0.826434, 0.000000;;, - 157;3; 0.000000, 0.826434, 0.000000;;, - 158;3; 0.000000, 0.826434, 0.000000;;, - 159;3; 0.000000, 0.826434, 0.000000;;, - 160;3; 0.000000, 0.826434, 0.000000;;, - 161;3; 0.000000, 0.826434, 0.000000;;, - 162;3; 0.000000, 0.826434, 0.000000;;, - 163;3; 0.000000, 0.826434, 0.000000;;, - 164;3; 0.000000, 0.826434, 0.000000;;, - 165;3; 0.000000, 0.826434, 0.000000;;, - 166;3; 0.000000, 0.826434, 0.000000;;, - 167;3; 0.000000, 0.826434, 0.000000;;, - 168;3; 0.000000, 0.826434, 0.000000;;, - 169;3; 0.000000, 0.826434, 0.000000;;, - 170;3; 0.000000, 0.826434, 0.000000;;, - 171;3; 0.000000, 0.826434, 0.000000;;, - 172;3; 0.000000, 0.826434, 0.000000;;, - 173;3; 0.000000, 0.826434, 0.000000;;, - 174;3; 0.000000, 0.826434, 0.000000;;, - 175;3; 0.000000, 0.826434, 0.000000;;, - 176;3; 0.000000, 0.826434, 0.000000;;, - 177;3; 0.000000, 0.826434, 0.000000;;, - 178;3; 0.000000, 0.826434, 0.000000;;, - 179;3; 0.000000, 0.826434, 0.000000;;, - 180;3; 0.000000, 0.826434, 0.000000;;, - 181;3; 0.000000, 0.826434, 0.000000;;, - 182;3; 0.000000, 0.826434, 0.000000;;, - 183;3; 0.000000, 0.826434, 0.000000;;, - 184;3; 0.000000, 0.826434, 0.000000;;, - 185;3; 0.000000, 0.826434, 0.000000;;, - 186;3;-0.000000, 0.826434,-0.000000;;, - 187;3;-0.000000, 0.826434,-0.000000;;, - 188;3;-0.000000, 0.826434, 0.000000;;, - 189;3;-0.000000, 0.826434, 0.000000;;, - 190;3;-0.000000, 0.826434,-0.000000;;, - 191;3; 0.000000, 0.826434, 0.000000;;, - 192;3; 0.000000, 0.826434, 0.000000;;, - 193;3; 0.000000, 0.826434, 0.000000;;, - 194;3; 0.000000, 0.826434,-0.000000;;, - 195;3; 0.000000, 0.826434,-0.000000;;, - 196;3; 0.000000, 0.826434, 0.000000;;, - 197;3; 0.000000, 0.826434,-0.000000;;, - 198;3; 0.000000, 0.826434,-0.000000;;, - 199;3; 0.000000, 0.826434, 0.000000;;, - 200;3; 0.000000, 0.826434, 0.000000;;, - 201;3; 0.000000, 0.826434, 0.000000;;, - 202;3; 0.000000, 0.826434, 0.000000;;, - 203;3; 0.000000, 0.826434, 0.000000;;, - 204;3; 0.000000, 0.826434, 0.000000;;, - 205;3; 0.000000, 0.826434, 0.000000;;, - 206;3; 0.000000, 0.826434, 0.000000;;, - 207;3; 0.000000, 0.826434, 0.000000;;, - 208;3; 0.000000, 0.826434, 0.000000;;, - 209;3; 0.000000, 0.826434, 0.000000;;, - 210;3; 0.000000, 0.826434, 0.000000;;, - 211;3; 0.000000, 0.826434, 0.000000;;, - 212;3; 0.000000, 0.826434, 0.000000;;, - 213;3; 0.000000, 0.826434, 0.000000;;, - 214;3; 0.000000, 0.826434, 0.000000;;, - 215;3; 0.000000, 0.826434, 0.000000;;, - 216;3; 0.000000, 0.826434, 0.000000;;, - 217;3; 0.000000, 0.826434, 0.000000;;, - 218;3; 0.000000, 0.826434, 0.000000;;, - 219;3; 0.000000, 0.826434, 0.000000;;, - 220;3; 0.000000, 0.826434, 0.000000;;, - 221;3; 0.000000, 0.826434, 0.000000;;, - 222;3; 0.000000, 0.826434, 0.000000;;, - 223;3; 0.000000, 0.826434, 0.000000;;, - 224;3; 0.000000, 0.826434, 0.000000;;, - 225;3; 0.000000, 0.826434, 0.000000;;, - 226;3; 0.000000, 0.826434, 0.000000;;, - 227;3; 0.000000, 0.826434, 0.000000;;, - 228;3; 0.000000, 0.826434, 0.000000;;, - 229;3; 0.000000, 0.826434, 0.000000;;, - 230;3; 0.000000, 0.826434, 0.000000;;, - 231;3; 0.000000, 0.826434, 0.000000;;, - 232;3; 0.000000, 0.826434, 0.000000;;, - 233;3; 0.000000, 0.826434, 0.000000;;, - 234;3; 0.000000, 0.826434, 0.000000;;, - 235;3; 0.000000, 0.826434, 0.000000;;, - 236;3; 0.000000, 0.826434, 0.000000;;, - 237;3; 0.000000, 0.826434, 0.000000;;, - 238;3; 0.000000, 0.826434, 0.000000;;, - 239;3; 0.000000, 0.826434, 0.000000;;, - 240;3; 0.000000, 0.826434, 0.000000;;, - 241;3; 0.000000, 0.826434, 0.000000;;, - 242;3; 0.000000, 0.826434, 0.000000;;, - 243;3; 0.000000, 0.826434, 0.000000;;, - 244;3; 0.000000, 0.826434, 0.000000;;, - 245;3; 0.000000, 0.826434, 0.000000;;, - 246;3; 0.000000, 0.826434, 0.000000;;, - 247;3; 0.000000, 0.826434, 0.000000;;, - 248;3; 0.000000, 0.826434, 0.000000;;, - 249;3; 0.000000, 0.826434, 0.000000;;; - } - } - Animation { - {Armature_Bone_030} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 1;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 2;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 3;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 4;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 5;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 6;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 7;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 8;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 9;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 10;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 11;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 12;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 13;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 14;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 15;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 16;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 17;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 18;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 19;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 20;4;-0.989934, 0.106238,-0.009968,-0.092884;;, - 21;4;-0.989819, 0.106226,-0.010069,-0.093822;;, - 22;4;-0.989627, 0.106205,-0.010237,-0.095391;;, - 23;4;-0.989359, 0.106176,-0.010472,-0.097580;;, - 24;4;-0.989019, 0.106140,-0.010771,-0.100361;;, - 25;4;-0.988612, 0.106096,-0.011128,-0.103689;;, - 26;4;-0.988146, 0.106046,-0.011536,-0.107492;;, - 27;4;-0.987634, 0.105991,-0.011985,-0.111679;;, - 28;4;-0.987088, 0.105933,-0.012463,-0.116135;;, - 29;4;-0.986526, 0.105872,-0.012957,-0.120731;;, - 30;4;-0.985964, 0.105812,-0.013450,-0.125327;;, - 31;4;-0.985418, 0.105753,-0.013928,-0.129783;;, - 32;4;-0.984906, 0.105698,-0.014377,-0.133970;;, - 33;4;-0.984440, 0.105648,-0.014786,-0.137773;;, - 34;4;-0.984033, 0.105605,-0.015143,-0.141101;;, - 35;4;-0.983693, 0.105568,-0.015441,-0.143882;;, - 36;4;-0.983425, 0.105539,-0.015676,-0.146071;;, - 37;4;-0.983233, 0.105519,-0.015844,-0.147640;;, - 38;4;-0.983118, 0.105506,-0.015945,-0.148578;;, - 39;4;-0.983080, 0.105502,-0.015978,-0.148888;;, - 40;4;-0.983138, 0.105506,-0.015945,-0.148584;;, - 41;4;-0.983310, 0.105519,-0.015844,-0.147665;;, - 42;4;-0.983596, 0.105539,-0.015676,-0.146127;;, - 43;4;-0.983990, 0.105568,-0.015441,-0.143980;;, - 44;4;-0.984485, 0.105605,-0.015143,-0.141249;;, - 45;4;-0.985067, 0.105648,-0.014786,-0.137979;;, - 46;4;-0.985720, 0.105698,-0.014377,-0.134237;;, - 47;4;-0.986423, 0.105753,-0.013928,-0.130112;;, - 48;4;-0.987151, 0.105812,-0.013450,-0.125716;;, - 49;4;-0.987875, 0.105872,-0.012957,-0.121173;;, - 50;4;-0.988567, 0.105933,-0.012463,-0.116620;;, - 51;4;-0.989199, 0.105991,-0.011985,-0.112192;;, - 52;4;-0.989745, 0.106046,-0.011536,-0.108016;;, - 53;4;-0.990184, 0.106096,-0.011128,-0.104204;;, - 54;4;-0.990500, 0.106140,-0.010771,-0.100847;;, - 55;4;-0.990680, 0.106176,-0.010472,-0.098013;;, - 56;4;-0.990719, 0.106205,-0.010237,-0.095749;;, - 57;4;-0.990613, 0.106226,-0.010069,-0.094083;;, - 58;4;-0.990363, 0.106238,-0.009968,-0.093025;;, - 59;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 60;4;-0.989514, 0.106358,-0.009979,-0.092424;;, - 61;4;-0.989061, 0.106711,-0.010114,-0.092277;;, - 62;4;-0.988614, 0.107305,-0.010342,-0.092131;;, - 63;4;-0.988170, 0.108146,-0.010664,-0.091988;;, - 64;4;-0.987730, 0.109238,-0.011083,-0.091847;;, - 65;4;-0.987292, 0.110585,-0.011599,-0.091708;;, - 66;4;-0.986856, 0.112190,-0.012214,-0.091571;;, - 67;4;-0.986420, 0.114053,-0.012929,-0.091435;;, - 68;4;-0.985983, 0.116175,-0.013742,-0.091301;;, - 69;4;-0.985544, 0.118554,-0.014655,-0.091167;;, - 70;4;-0.985101, 0.121188,-0.015665,-0.091034;;, - 71;4;-0.984653, 0.124071,-0.016771,-0.090902;;, - 72;4;-0.984198, 0.127196,-0.017971,-0.090769;;, - 73;4;-0.983735, 0.130555,-0.019260,-0.090636;;, - 74;4;-0.983261, 0.134136,-0.020635,-0.090503;;, - 75;4;-0.982774, 0.137926,-0.022091,-0.090368;;, - 76;4;-0.982274, 0.141910,-0.023621,-0.090232;;, - 77;4;-0.981758, 0.146070,-0.025220,-0.090093;;, - 78;4;-0.981224, 0.150388,-0.026880,-0.089952;;, - 79;4;-0.980671, 0.154844,-0.028593,-0.089808;;, - 80;4;-0.980097, 0.159416,-0.030351,-0.089661;;, - 81;4;-0.979501, 0.164082,-0.032147,-0.089510;;, - 82;4;-0.978880, 0.168819,-0.033970,-0.089355;;, - 83;4;-0.978236, 0.173604,-0.035813,-0.089195;;, - 84;4;-0.977566, 0.178416,-0.037666,-0.089031;;, - 85;4;-0.976869, 0.183233,-0.039523,-0.088862;;, - 86;4;-0.976146, 0.188033,-0.041374,-0.088687;;, - 87;4;-0.975396, 0.192799,-0.043213,-0.088507;;, - 88;4;-0.974618, 0.197511,-0.045031,-0.088321;;, - 89;4;-0.973814, 0.202154,-0.046825,-0.088130;;, - 90;4;-0.972983, 0.206712,-0.048586,-0.087934;;, - 91;4;-0.972125, 0.211172,-0.050311,-0.087731;;, - 92;4;-0.971241, 0.215524,-0.051995,-0.087523;;, - 93;4;-0.970331, 0.219757,-0.053634,-0.087310;;, - 94;4;-0.969397, 0.223862,-0.055225,-0.087091;;, - 95;4;-0.968438, 0.227833,-0.056765,-0.086866;;, - 96;4;-0.967456, 0.231665,-0.058253,-0.086637;;, - 97;4;-0.966452, 0.235353,-0.059686,-0.086402;;, - 98;4;-0.965425, 0.238893,-0.061063,-0.086162;;, - 99;4;-0.964378, 0.242285,-0.062384,-0.085917;;, - 100;4;-0.963136, 0.245860,-0.063780,-0.085643;;, - 101;4;-0.961538, 0.249912,-0.065368,-0.085319;;, - 102;4;-0.959635, 0.254320,-0.067101,-0.084957;;, - 103;4;-0.957530, 0.258878,-0.068897,-0.084578;;, - 104;4;-0.955382, 0.263294,-0.070640,-0.084213;;, - 105;4;-0.953378, 0.267250,-0.072204,-0.083893;;, - 106;4;-0.951691, 0.270473,-0.073480,-0.083648;;, - 107;4;-0.950442, 0.272793,-0.074399,-0.083494;;, - 108;4;-0.949686, 0.274156,-0.074939,-0.083438;;, - 109;4;-0.949426, 0.274594,-0.075113,-0.083477;;, - 110;4;-0.950399, 0.269670,-0.073213,-0.083796;;, - 111;4;-0.953367, 0.254850,-0.067493,-0.084588;;, - 112;4;-0.958205, 0.230754,-0.058194,-0.085820;;, - 113;4;-0.964540, 0.199237,-0.046031,-0.087401;;, - 114;4;-0.971721, 0.163534,-0.032252,-0.089173;;, - 115;4;-0.978905, 0.127831,-0.018473,-0.090933;;, - 116;4;-0.985248, 0.096314,-0.006309,-0.092480;;, - 117;4;-0.990098, 0.072218, 0.002990,-0.093659;;, - 118;4;-0.993081, 0.057398, 0.008709,-0.094383;;, - 119;4;-0.994073, 0.052474, 0.010610,-0.094623;;, - 120;4;-0.993868, 0.053782, 0.010107,-0.094563;;, - 121;4;-0.993232, 0.057846, 0.008544,-0.094376;;, - 122;4;-0.992152, 0.064750, 0.005889,-0.094060;;, - 123;4;-0.990655, 0.074318, 0.002209,-0.093621;;, - 124;4;-0.988823, 0.086032,-0.002295,-0.093083;;, - 125;4;-0.986784, 0.099063,-0.007307,-0.092486;;, - 126;4;-0.984690, 0.112452,-0.012455,-0.091872;;, - 127;4;-0.982674, 0.125334,-0.017410,-0.091281;;, - 128;4;-0.980835, 0.137093,-0.021931,-0.090742;;, - 129;4;-0.979225, 0.147379,-0.025887,-0.090270;;, - 130;4;-0.977803, 0.156997,-0.029583,-0.089842;;, - 131;4;-0.976495, 0.166849,-0.033365,-0.089427;;, - 132;4;-0.975274, 0.176881,-0.037212,-0.089021;;, - 133;4;-0.974093, 0.186993,-0.041088,-0.088621;;, - 134;4;-0.972884, 0.197049,-0.044944,-0.088217;;, - 135;4;-0.971572, 0.206894,-0.048723,-0.087801;;, - 136;4;-0.970094, 0.216397,-0.052377,-0.087367;;, - 137;4;-0.968407, 0.225475,-0.055876,-0.086909;;, - 138;4;-0.966500, 0.234100,-0.059210,-0.086425;;, - 139;4;-0.964378, 0.242285,-0.062384,-0.085917;;, - 140;4;-0.961461, 0.250875,-0.065736,-0.085301;;, - 141;4;-0.957438, 0.260019,-0.069333,-0.084557;;, - 142;4;-0.953319, 0.267984,-0.072484,-0.083879;;, - 143;4;-0.950424, 0.273010,-0.074482,-0.083490;;, - 144;4;-0.949426, 0.274594,-0.075113,-0.083477;;, - 145;4;-0.953367, 0.254850,-0.067493,-0.084588;;, - 146;4;-0.964540, 0.199237,-0.046031,-0.087401;;, - 147;4;-0.978905, 0.127831,-0.018473,-0.090933;;, - 148;4;-0.990098, 0.072218, 0.002990,-0.093659;;, - 149;4;-0.994073, 0.052474, 0.010610,-0.094623;;, - 150;4;-0.993232, 0.057846, 0.008544,-0.094376;;, - 151;4;-0.990655, 0.074318, 0.002209,-0.093621;;, - 152;4;-0.986784, 0.099063,-0.007307,-0.092486;;, - 153;4;-0.982674, 0.125334,-0.017410,-0.091281;;, - 154;4;-0.979225, 0.147379,-0.025887,-0.090270;;, - 155;4;-0.975777, 0.169424,-0.034365,-0.089259;;, - 156;4;-0.971667, 0.195695,-0.044467,-0.088054;;, - 157;4;-0.967795, 0.220440,-0.053984,-0.086919;;, - 158;4;-0.965218, 0.236912,-0.060318,-0.086163;;, - 159;4;-0.964378, 0.242285,-0.062384,-0.085917;;, - 160;4;-0.964519, 0.242113,-0.062342,-0.085954;;, - 161;4;-0.964945, 0.241557,-0.062200,-0.086065;;, - 162;4;-0.965658, 0.240545,-0.061926,-0.086250;;, - 163;4;-0.966653, 0.239002,-0.061489,-0.086509;;, - 164;4;-0.967917, 0.236848,-0.060850,-0.086838;;, - 165;4;-0.969429, 0.233998,-0.059970,-0.087231;;, - 166;4;-0.971158, 0.230375,-0.058806,-0.087681;;, - 167;4;-0.973061, 0.225905,-0.057321,-0.088175;;, - 168;4;-0.975086, 0.220534,-0.055476,-0.088702;;, - 169;4;-0.977175, 0.214222,-0.053244,-0.089245;;, - 170;4;-0.979263, 0.206956,-0.050604,-0.089789;;, - 171;4;-0.981289, 0.198748,-0.047548,-0.090315;;, - 172;4;-0.983192, 0.189634,-0.044076,-0.090810;;, - 173;4;-0.984920, 0.179668,-0.040201,-0.091260;;, - 174;4;-0.986433, 0.168921,-0.035944,-0.091653;;, - 175;4;-0.987697, 0.157471,-0.031330,-0.091982;;, - 176;4;-0.988692, 0.145400,-0.026391,-0.092241;;, - 177;4;-0.989404, 0.132788,-0.021159,-0.092426;;, - 178;4;-0.989831, 0.119713,-0.015663,-0.092537;;, - 179;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 180;4;-0.987443, 0.092015, 0.006008,-0.090256;;, - 181;4;-0.979832, 0.076804, 0.042188,-0.083279;;, - 182;4;-0.967458, 0.061039, 0.097179,-0.071936;;, - 183;4;-0.951272, 0.045395, 0.166977,-0.057099;;, - 184;4;-0.932937, 0.030744, 0.244733,-0.040291;;, - 185;4;-0.914601, 0.017988, 0.321680,-0.023484;;, - 186;4;-0.898416, 0.007838, 0.389129,-0.008647;;, - 187;4;-0.886042, 0.000670, 0.440444, 0.002697;;, - 188;4;-0.878431,-0.003478, 0.471893, 0.009673;;, - 189;4;-0.875902,-0.004795, 0.482317, 0.011991;;, - 190;4;-0.885999,-0.014233, 0.441198, 0.000728;;, - 191;4;-0.914439,-0.039878, 0.325161,-0.030996;;, - 192;4;-0.950957,-0.070291, 0.175583,-0.071729;;, - 193;4;-0.979397,-0.089081, 0.057945,-0.103453;;, - 194;4;-0.989494,-0.086855, 0.014101,-0.114716;;, - 195;4;-0.989536,-0.060170, 0.009741,-0.112748;;, - 196;4;-0.989656,-0.010069, 0.003312,-0.107204;;, - 197;4;-0.989810, 0.047975,-0.003473,-0.100086;;, - 198;4;-0.989929, 0.091221,-0.008299,-0.094542;;, - 199;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 200;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 201;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 202;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 203;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 204;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 205;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 206;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 207;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 208;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 209;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 210;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 211;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 212;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 213;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 214;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 215;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 216;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 217;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 218;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 219;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 220;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 221;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 222;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 223;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 224;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 225;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 226;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 227;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 228;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 229;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 230;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 231;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 232;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 233;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 234;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 235;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 236;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 237;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 238;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 239;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 240;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 241;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 242;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 243;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 244;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 245;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 246;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 247;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 248;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 249;4;-0.989972, 0.106242,-0.009935,-0.092574;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3; 0.000000, 0.666142, 0.000000;;, - 1;3; 0.000000, 0.666142, 0.000000;;, - 2;3; 0.000000, 0.666142, 0.000000;;, - 3;3; 0.000000, 0.666142, 0.000000;;, - 4;3; 0.000000, 0.666142, 0.000000;;, - 5;3; 0.000000, 0.666142, 0.000000;;, - 6;3; 0.000000, 0.666142, 0.000000;;, - 7;3; 0.000000, 0.666142, 0.000000;;, - 8;3; 0.000000, 0.666142, 0.000000;;, - 9;3; 0.000000, 0.666142, 0.000000;;, - 10;3; 0.000000, 0.666142, 0.000000;;, - 11;3; 0.000000, 0.666142, 0.000000;;, - 12;3; 0.000000, 0.666142, 0.000000;;, - 13;3; 0.000000, 0.666142, 0.000000;;, - 14;3; 0.000000, 0.666142, 0.000000;;, - 15;3; 0.000000, 0.666142, 0.000000;;, - 16;3; 0.000000, 0.666142, 0.000000;;, - 17;3; 0.000000, 0.666142, 0.000000;;, - 18;3; 0.000000, 0.666142, 0.000000;;, - 19;3; 0.000000, 0.666142, 0.000000;;, - 20;3; 0.000000, 0.666142, 0.000000;;, - 21;3; 0.000000, 0.666142, 0.000000;;, - 22;3; 0.000000, 0.666142, 0.000000;;, - 23;3; 0.000000, 0.666142, 0.000000;;, - 24;3; 0.000000, 0.666142, 0.000000;;, - 25;3; 0.000000, 0.666142, 0.000000;;, - 26;3; 0.000000, 0.666142, 0.000000;;, - 27;3; 0.000000, 0.666142, 0.000000;;, - 28;3; 0.000000, 0.666142, 0.000000;;, - 29;3; 0.000000, 0.666142, 0.000000;;, - 30;3; 0.000000, 0.666142, 0.000000;;, - 31;3; 0.000000, 0.666142, 0.000000;;, - 32;3; 0.000000, 0.666142, 0.000000;;, - 33;3; 0.000000, 0.666142, 0.000000;;, - 34;3; 0.000000, 0.666142, 0.000000;;, - 35;3; 0.000000, 0.666142, 0.000000;;, - 36;3; 0.000000, 0.666142, 0.000000;;, - 37;3; 0.000000, 0.666142, 0.000000;;, - 38;3; 0.000000, 0.666142, 0.000000;;, - 39;3; 0.000000, 0.666142, 0.000000;;, - 40;3; 0.000000, 0.666142, 0.000000;;, - 41;3; 0.000000, 0.666142, 0.000000;;, - 42;3; 0.000000, 0.666142, 0.000000;;, - 43;3; 0.000000, 0.666142, 0.000000;;, - 44;3; 0.000000, 0.666142, 0.000000;;, - 45;3; 0.000000, 0.666142, 0.000000;;, - 46;3; 0.000000, 0.666142, 0.000000;;, - 47;3; 0.000000, 0.666142, 0.000000;;, - 48;3; 0.000000, 0.666142, 0.000000;;, - 49;3; 0.000000, 0.666142, 0.000000;;, - 50;3; 0.000000, 0.666142, 0.000000;;, - 51;3; 0.000000, 0.666142, 0.000000;;, - 52;3; 0.000000, 0.666142, 0.000000;;, - 53;3; 0.000000, 0.666142, 0.000000;;, - 54;3; 0.000000, 0.666142, 0.000000;;, - 55;3; 0.000000, 0.666142, 0.000000;;, - 56;3; 0.000000, 0.666142, 0.000000;;, - 57;3; 0.000000, 0.666142, 0.000000;;, - 58;3; 0.000000, 0.666142, 0.000000;;, - 59;3; 0.000000, 0.666142, 0.000000;;, - 60;3; 0.000000, 0.666142, 0.000000;;, - 61;3; 0.000000, 0.666142, 0.000000;;, - 62;3; 0.000000, 0.666142, 0.000000;;, - 63;3; 0.000000, 0.666142, 0.000000;;, - 64;3; 0.000000, 0.666142, 0.000000;;, - 65;3; 0.000000, 0.666142, 0.000000;;, - 66;3; 0.000000, 0.666142, 0.000000;;, - 67;3; 0.000000, 0.666142, 0.000000;;, - 68;3; 0.000000, 0.666142, 0.000000;;, - 69;3; 0.000000, 0.666142, 0.000000;;, - 70;3; 0.000000, 0.666142, 0.000000;;, - 71;3; 0.000000, 0.666142, 0.000000;;, - 72;3; 0.000000, 0.666142, 0.000000;;, - 73;3; 0.000000, 0.666142, 0.000000;;, - 74;3; 0.000000, 0.666142, 0.000000;;, - 75;3; 0.000000, 0.666142, 0.000000;;, - 76;3; 0.000000, 0.666142, 0.000000;;, - 77;3; 0.000000, 0.666142, 0.000000;;, - 78;3; 0.000000, 0.666142, 0.000000;;, - 79;3; 0.000000, 0.666142, 0.000000;;, - 80;3; 0.000000, 0.666142, 0.000000;;, - 81;3; 0.000000, 0.666142, 0.000000;;, - 82;3; 0.000000, 0.666142, 0.000000;;, - 83;3; 0.000000, 0.666142, 0.000000;;, - 84;3; 0.000000, 0.666142, 0.000000;;, - 85;3; 0.000000, 0.666142, 0.000000;;, - 86;3; 0.000000, 0.666142, 0.000000;;, - 87;3; 0.000000, 0.666142, 0.000000;;, - 88;3; 0.000000, 0.666142, 0.000000;;, - 89;3; 0.000000, 0.666142, 0.000000;;, - 90;3; 0.000000, 0.666142, 0.000000;;, - 91;3; 0.000000, 0.666142, 0.000000;;, - 92;3; 0.000000, 0.666142, 0.000000;;, - 93;3; 0.000000, 0.666142, 0.000000;;, - 94;3; 0.000000, 0.666142, 0.000000;;, - 95;3; 0.000000, 0.666142, 0.000000;;, - 96;3; 0.000000, 0.666142, 0.000000;;, - 97;3; 0.000000, 0.666142, 0.000000;;, - 98;3; 0.000000, 0.666142, 0.000000;;, - 99;3; 0.000000, 0.666142, 0.000000;;, - 100;3; 0.000000, 0.666142, 0.000000;;, - 101;3; 0.000000, 0.666142, 0.000000;;, - 102;3; 0.000000, 0.666142, 0.000000;;, - 103;3; 0.000000, 0.666142, 0.000000;;, - 104;3; 0.000000, 0.666142, 0.000000;;, - 105;3; 0.000000, 0.666142, 0.000000;;, - 106;3; 0.000000, 0.666142, 0.000000;;, - 107;3; 0.000000, 0.666142, 0.000000;;, - 108;3; 0.000000, 0.666142, 0.000000;;, - 109;3; 0.000000, 0.666142, 0.000000;;, - 110;3; 0.000000, 0.666142, 0.000000;;, - 111;3; 0.000000, 0.666142, 0.000000;;, - 112;3; 0.000000, 0.666142, 0.000000;;, - 113;3; 0.000000, 0.666142, 0.000000;;, - 114;3; 0.000000, 0.666142, 0.000000;;, - 115;3; 0.000000, 0.666142, 0.000000;;, - 116;3; 0.000000, 0.666142, 0.000000;;, - 117;3; 0.000000, 0.666142, 0.000000;;, - 118;3; 0.000000, 0.666142, 0.000000;;, - 119;3; 0.000000, 0.666142, 0.000000;;, - 120;3; 0.000000, 0.666142, 0.000000;;, - 121;3; 0.000000, 0.666142, 0.000000;;, - 122;3; 0.000000, 0.666142, 0.000000;;, - 123;3; 0.000000, 0.666142, 0.000000;;, - 124;3; 0.000000, 0.666142, 0.000000;;, - 125;3; 0.000000, 0.666142, 0.000000;;, - 126;3; 0.000000, 0.666142, 0.000000;;, - 127;3; 0.000000, 0.666142, 0.000000;;, - 128;3; 0.000000, 0.666142, 0.000000;;, - 129;3; 0.000000, 0.666142, 0.000000;;, - 130;3; 0.000000, 0.666142, 0.000000;;, - 131;3; 0.000000, 0.666142, 0.000000;;, - 132;3; 0.000000, 0.666142, 0.000000;;, - 133;3; 0.000000, 0.666142, 0.000000;;, - 134;3; 0.000000, 0.666142, 0.000000;;, - 135;3; 0.000000, 0.666142, 0.000000;;, - 136;3; 0.000000, 0.666142, 0.000000;;, - 137;3; 0.000000, 0.666142, 0.000000;;, - 138;3; 0.000000, 0.666142, 0.000000;;, - 139;3; 0.000000, 0.666142, 0.000000;;, - 140;3; 0.000000, 0.666142, 0.000000;;, - 141;3; 0.000000, 0.666142, 0.000000;;, - 142;3; 0.000000, 0.666142, 0.000000;;, - 143;3; 0.000000, 0.666142, 0.000000;;, - 144;3; 0.000000, 0.666142, 0.000000;;, - 145;3; 0.000000, 0.666142, 0.000000;;, - 146;3; 0.000000, 0.666142, 0.000000;;, - 147;3; 0.000000, 0.666142, 0.000000;;, - 148;3; 0.000000, 0.666142, 0.000000;;, - 149;3; 0.000000, 0.666142, 0.000000;;, - 150;3; 0.000000, 0.666142, 0.000000;;, - 151;3; 0.000000, 0.666142, 0.000000;;, - 152;3; 0.000000, 0.666142, 0.000000;;, - 153;3; 0.000000, 0.666142, 0.000000;;, - 154;3; 0.000000, 0.666142, 0.000000;;, - 155;3; 0.000000, 0.666142, 0.000000;;, - 156;3; 0.000000, 0.666142, 0.000000;;, - 157;3; 0.000000, 0.666142, 0.000000;;, - 158;3; 0.000000, 0.666142, 0.000000;;, - 159;3; 0.000000, 0.666142, 0.000000;;, - 160;3; 0.000000, 0.666142, 0.000000;;, - 161;3; 0.000000, 0.666142, 0.000000;;, - 162;3; 0.000000, 0.666142, 0.000000;;, - 163;3; 0.000000, 0.666142, 0.000000;;, - 164;3; 0.000000, 0.666142, 0.000000;;, - 165;3; 0.000000, 0.666142, 0.000000;;, - 166;3; 0.000000, 0.666142, 0.000000;;, - 167;3; 0.000000, 0.666142, 0.000000;;, - 168;3; 0.000000, 0.666142, 0.000000;;, - 169;3; 0.000000, 0.666142, 0.000000;;, - 170;3; 0.000000, 0.666142, 0.000000;;, - 171;3; 0.000000, 0.666142, 0.000000;;, - 172;3; 0.000000, 0.666142, 0.000000;;, - 173;3; 0.000000, 0.666142, 0.000000;;, - 174;3; 0.000000, 0.666142, 0.000000;;, - 175;3; 0.000000, 0.666142, 0.000000;;, - 176;3; 0.000000, 0.666142, 0.000000;;, - 177;3; 0.000000, 0.666142, 0.000000;;, - 178;3; 0.000000, 0.666142, 0.000000;;, - 179;3; 0.000000, 0.666142, 0.000000;;, - 180;3;-0.000000, 0.666142, 0.000000;;, - 181;3; 0.000000, 0.666142,-0.000000;;, - 182;3; 0.000000, 0.666142,-0.000000;;, - 183;3; 0.000000, 0.666142,-0.000000;;, - 184;3;-0.000000, 0.666142, 0.000000;;, - 185;3;-0.000000, 0.666142, 0.000000;;, - 186;3; 0.000000, 0.666142,-0.000000;;, - 187;3; 0.000000, 0.666142,-0.000000;;, - 188;3; 0.000000, 0.666142, 0.000000;;, - 189;3;-0.000000, 0.666142, 0.000000;;, - 190;3; 0.000001, 0.666142, 0.000000;;, - 191;3;-0.000000, 0.666142,-0.000001;;, - 192;3;-0.000000, 0.666142,-0.000000;;, - 193;3;-0.000000, 0.666142, 0.000000;;, - 194;3;-0.000000, 0.666142,-0.000000;;, - 195;3; 0.000000, 0.666142, 0.000000;;, - 196;3; 0.000000, 0.666142,-0.000000;;, - 197;3;-0.000000, 0.666142,-0.000000;;, - 198;3;-0.000000, 0.666142,-0.000000;;, - 199;3; 0.000000, 0.666142, 0.000000;;, - 200;3; 0.000000, 0.666142, 0.000000;;, - 201;3; 0.000000, 0.666142, 0.000000;;, - 202;3; 0.000000, 0.666142, 0.000000;;, - 203;3; 0.000000, 0.666142, 0.000000;;, - 204;3; 0.000000, 0.666142, 0.000000;;, - 205;3; 0.000000, 0.666142, 0.000000;;, - 206;3; 0.000000, 0.666142, 0.000000;;, - 207;3; 0.000000, 0.666142, 0.000000;;, - 208;3; 0.000000, 0.666142, 0.000000;;, - 209;3; 0.000000, 0.666142, 0.000000;;, - 210;3; 0.000000, 0.666142, 0.000000;;, - 211;3; 0.000000, 0.666142, 0.000000;;, - 212;3; 0.000000, 0.666142, 0.000000;;, - 213;3; 0.000000, 0.666142, 0.000000;;, - 214;3; 0.000000, 0.666142, 0.000000;;, - 215;3; 0.000000, 0.666142, 0.000000;;, - 216;3; 0.000000, 0.666142, 0.000000;;, - 217;3; 0.000000, 0.666142, 0.000000;;, - 218;3; 0.000000, 0.666142, 0.000000;;, - 219;3; 0.000000, 0.666142, 0.000000;;, - 220;3; 0.000000, 0.666142, 0.000000;;, - 221;3; 0.000000, 0.666142, 0.000000;;, - 222;3; 0.000000, 0.666142, 0.000000;;, - 223;3; 0.000000, 0.666142, 0.000000;;, - 224;3; 0.000000, 0.666142, 0.000000;;, - 225;3; 0.000000, 0.666142, 0.000000;;, - 226;3; 0.000000, 0.666142, 0.000000;;, - 227;3; 0.000000, 0.666142, 0.000000;;, - 228;3; 0.000000, 0.666142, 0.000000;;, - 229;3; 0.000000, 0.666142, 0.000000;;, - 230;3; 0.000000, 0.666142, 0.000000;;, - 231;3; 0.000000, 0.666142, 0.000000;;, - 232;3; 0.000000, 0.666142, 0.000000;;, - 233;3; 0.000000, 0.666142, 0.000000;;, - 234;3; 0.000000, 0.666142, 0.000000;;, - 235;3; 0.000000, 0.666142, 0.000000;;, - 236;3; 0.000000, 0.666142, 0.000000;;, - 237;3; 0.000000, 0.666142, 0.000000;;, - 238;3; 0.000000, 0.666142, 0.000000;;, - 239;3; 0.000000, 0.666142, 0.000000;;, - 240;3; 0.000000, 0.666142, 0.000000;;, - 241;3; 0.000000, 0.666142, 0.000000;;, - 242;3; 0.000000, 0.666142, 0.000000;;, - 243;3; 0.000000, 0.666142, 0.000000;;, - 244;3; 0.000000, 0.666142, 0.000000;;, - 245;3; 0.000000, 0.666142, 0.000000;;, - 246;3; 0.000000, 0.666142, 0.000000;;, - 247;3; 0.000000, 0.666142, 0.000000;;, - 248;3; 0.000000, 0.666142, 0.000000;;, - 249;3; 0.000000, 0.666142, 0.000000;;; - } - } - Animation { - {Armature_Bone_034} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 1;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 2;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 3;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 4;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 5;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 6;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 7;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 8;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 9;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 10;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 11;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 12;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 13;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 14;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 15;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 16;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 17;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 18;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 19;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 20;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 21;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 22;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 23;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 24;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 25;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 26;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 27;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 28;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 29;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 30;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 31;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 32;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 33;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 34;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 35;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 36;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 37;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 38;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 39;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 40;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 41;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 42;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 43;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 44;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 45;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 46;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 47;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 48;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 49;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 50;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 51;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 52;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 53;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 54;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 55;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 56;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 57;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 58;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 59;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 60;4;-0.977258,-0.211870, 0.000087,-0.000000;;, - 61;4;-0.976944,-0.212767, 0.000351,-0.000000;;, - 62;4;-0.976417,-0.214269, 0.000793,-0.000001;;, - 63;4;-0.975677,-0.216379, 0.001413,-0.000001;;, - 64;4;-0.974725,-0.219096, 0.002212,-0.000001;;, - 65;4;-0.973560,-0.222418, 0.003188,-0.000002;;, - 66;4;-0.972186,-0.226337, 0.004340,-0.000003;;, - 67;4;-0.970605,-0.230844, 0.005665,-0.000004;;, - 68;4;-0.968825,-0.235923, 0.007158,-0.000005;;, - 69;4;-0.966851,-0.241554, 0.008813,-0.000006;;, - 70;4;-0.964692,-0.247711, 0.010623,-0.000007;;, - 71;4;-0.962359,-0.254365, 0.012578,-0.000008;;, - 72;4;-0.959865,-0.261478, 0.014669,-0.000009;;, - 73;4;-0.957225,-0.269008, 0.016883,-0.000011;;, - 74;4;-0.954455,-0.276909, 0.019205,-0.000012;;, - 75;4;-0.951573,-0.285128, 0.021621,-0.000014;;, - 76;4;-0.948600,-0.293607, 0.024113,-0.000015;;, - 77;4;-0.945558,-0.302285, 0.026664,-0.000017;;, - 78;4;-0.942468,-0.311098, 0.029254,-0.000019;;, - 79;4;-0.939355,-0.319978, 0.031864,-0.000020;;, - 80;4;-0.936241,-0.328858, 0.034475,-0.000022;;, - 81;4;-0.933151,-0.337671, 0.037065,-0.000024;;, - 82;4;-0.930109,-0.346349, 0.039616,-0.000025;;, - 83;4;-0.927136,-0.354828, 0.042108,-0.000027;;, - 84;4;-0.924254,-0.363047, 0.044524,-0.000028;;, - 85;4;-0.921484,-0.370948, 0.046846,-0.000030;;, - 86;4;-0.918844,-0.378479, 0.049060,-0.000031;;, - 87;4;-0.916350,-0.385592, 0.051150,-0.000032;;, - 88;4;-0.914017,-0.392245, 0.053106,-0.000034;;, - 89;4;-0.911859,-0.398402, 0.054916,-0.000035;;, - 90;4;-0.909884,-0.404033, 0.056571,-0.000036;;, - 91;4;-0.908104,-0.409112, 0.058064,-0.000037;;, - 92;4;-0.906524,-0.413619, 0.059388,-0.000038;;, - 93;4;-0.905149,-0.417538, 0.060541,-0.000038;;, - 94;4;-0.903985,-0.420860, 0.061517,-0.000039;;, - 95;4;-0.903032,-0.423578, 0.062316,-0.000040;;, - 96;4;-0.902292,-0.425687, 0.062936,-0.000040;;, - 97;4;-0.901766,-0.427189, 0.063377,-0.000040;;, - 98;4;-0.901451,-0.428086, 0.063641,-0.000040;;, - 99;4;-0.901347,-0.428384, 0.063728,-0.000040;;, - 100;4;-0.901991,-0.426101, 0.063067,-0.000040;;, - 101;4;-0.903990,-0.419011, 0.061011,-0.000039;;, - 102;4;-0.907387,-0.406965, 0.057520,-0.000037;;, - 103;4;-0.912095,-0.390272, 0.052681,-0.000033;;, - 104;4;-0.917859,-0.369834, 0.046756,-0.000030;;, - 105;4;-0.924271,-0.347098, 0.040165,-0.000026;;, - 106;4;-0.930858,-0.323738, 0.033394,-0.000021;;, - 107;4;-0.937197,-0.301262, 0.026879,-0.000017;;, - 108;4;-0.942982,-0.280747, 0.020932,-0.000013;;, - 109;4;-0.948044,-0.262800, 0.015729,-0.000010;;, - 110;4;-0.953105,-0.244853, 0.010527,-0.000007;;, - 111;4;-0.958890,-0.224338, 0.004580,-0.000003;;, - 112;4;-0.965229,-0.201862,-0.001935, 0.000001;;, - 113;4;-0.971817,-0.178502,-0.008707, 0.000005;;, - 114;4;-0.978229,-0.155766,-0.015297, 0.000010;;, - 115;4;-0.983992,-0.135328,-0.021222, 0.000013;;, - 116;4;-0.988700,-0.118635,-0.026061, 0.000017;;, - 117;4;-0.992097,-0.106589,-0.029553, 0.000019;;, - 118;4;-0.994097,-0.099499,-0.031608, 0.000020;;, - 119;4;-0.994740,-0.097216,-0.032270, 0.000020;;, - 120;4;-0.994097,-0.099499,-0.031608, 0.000020;;, - 121;4;-0.992097,-0.106589,-0.029553, 0.000019;;, - 122;4;-0.988700,-0.118635,-0.026061, 0.000017;;, - 123;4;-0.983992,-0.135328,-0.021222, 0.000013;;, - 124;4;-0.978229,-0.155766,-0.015297, 0.000010;;, - 125;4;-0.971817,-0.178502,-0.008707, 0.000005;;, - 126;4;-0.965229,-0.201862,-0.001935, 0.000001;;, - 127;4;-0.958890,-0.224338, 0.004580,-0.000003;;, - 128;4;-0.953105,-0.244853, 0.010527,-0.000007;;, - 129;4;-0.948044,-0.262800, 0.015729,-0.000010;;, - 130;4;-0.942982,-0.280747, 0.020932,-0.000013;;, - 131;4;-0.937197,-0.301262, 0.026879,-0.000017;;, - 132;4;-0.930858,-0.323738, 0.033394,-0.000021;;, - 133;4;-0.924271,-0.347098, 0.040165,-0.000026;;, - 134;4;-0.917859,-0.369834, 0.046756,-0.000030;;, - 135;4;-0.912095,-0.390272, 0.052681,-0.000033;;, - 136;4;-0.907387,-0.406965, 0.057520,-0.000037;;, - 137;4;-0.903990,-0.419011, 0.061011,-0.000039;;, - 138;4;-0.901991,-0.426101, 0.063067,-0.000040;;, - 139;4;-0.901347,-0.428384, 0.063728,-0.000040;;, - 140;4;-0.903990,-0.419011, 0.061011,-0.000039;;, - 141;4;-0.912095,-0.390272, 0.052681,-0.000033;;, - 142;4;-0.924271,-0.347098, 0.040165,-0.000026;;, - 143;4;-0.937197,-0.301262, 0.026879,-0.000017;;, - 144;4;-0.948044,-0.262800, 0.015729,-0.000010;;, - 145;4;-0.958890,-0.224338, 0.004580,-0.000003;;, - 146;4;-0.971817,-0.178502,-0.008707, 0.000005;;, - 147;4;-0.983992,-0.135328,-0.021222, 0.000013;;, - 148;4;-0.992097,-0.106589,-0.029553, 0.000019;;, - 149;4;-0.994740,-0.097216,-0.032270, 0.000020;;, - 150;4;-0.992097,-0.106589,-0.029553, 0.000019;;, - 151;4;-0.983992,-0.135328,-0.021222, 0.000013;;, - 152;4;-0.971817,-0.178502,-0.008707, 0.000005;;, - 153;4;-0.958890,-0.224338, 0.004580,-0.000003;;, - 154;4;-0.948044,-0.262800, 0.015729,-0.000010;;, - 155;4;-0.937197,-0.301262, 0.026879,-0.000017;;, - 156;4;-0.924271,-0.347098, 0.040165,-0.000026;;, - 157;4;-0.912095,-0.390272, 0.052681,-0.000033;;, - 158;4;-0.903990,-0.419011, 0.061011,-0.000039;;, - 159;4;-0.901347,-0.428384, 0.063728,-0.000040;;, - 160;4;-0.901766,-0.427189, 0.063377,-0.000040;;, - 161;4;-0.903032,-0.423578, 0.062316,-0.000040;;, - 162;4;-0.905149,-0.417538, 0.060541,-0.000038;;, - 163;4;-0.908104,-0.409112, 0.058064,-0.000037;;, - 164;4;-0.911859,-0.398402, 0.054916,-0.000035;;, - 165;4;-0.916350,-0.385592, 0.051150,-0.000032;;, - 166;4;-0.921484,-0.370948, 0.046846,-0.000030;;, - 167;4;-0.927136,-0.354828, 0.042108,-0.000027;;, - 168;4;-0.933151,-0.337671, 0.037065,-0.000024;;, - 169;4;-0.939355,-0.319978, 0.031864,-0.000020;;, - 170;4;-0.945558,-0.302285, 0.026664,-0.000017;;, - 171;4;-0.951573,-0.285128, 0.021621,-0.000014;;, - 172;4;-0.957225,-0.269008, 0.016883,-0.000011;;, - 173;4;-0.962359,-0.254365, 0.012578,-0.000008;;, - 174;4;-0.966851,-0.241554, 0.008813,-0.000006;;, - 175;4;-0.970605,-0.230844, 0.005665,-0.000004;;, - 176;4;-0.973560,-0.222418, 0.003188,-0.000002;;, - 177;4;-0.975677,-0.216379, 0.001413,-0.000001;;, - 178;4;-0.976943,-0.212767, 0.000351,-0.000000;;, - 179;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 180;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 181;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 182;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 183;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 184;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 185;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 186;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 187;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 188;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 189;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 190;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 191;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 192;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 193;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 194;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 195;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 196;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 197;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 198;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 199;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 200;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 201;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 202;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 203;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 204;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 205;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 206;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 207;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 208;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 209;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 210;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 211;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 212;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 213;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 214;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 215;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 216;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 217;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 218;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 219;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 220;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 221;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 222;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 223;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 224;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 225;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 226;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 227;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 228;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 229;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 230;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 231;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 232;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 233;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 234;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 235;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 236;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 237;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 238;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 239;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 240;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 241;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 242;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 243;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 244;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 245;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 246;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 247;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 248;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 249;4;-0.977362,-0.211572, 0.000000,-0.000000;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3;-0.000000, 1.279916, 0.000000;;, - 1;3;-0.000000, 1.279916, 0.000000;;, - 2;3;-0.000000, 1.279916, 0.000000;;, - 3;3;-0.000000, 1.279916, 0.000000;;, - 4;3;-0.000000, 1.279916, 0.000000;;, - 5;3;-0.000000, 1.279916, 0.000000;;, - 6;3;-0.000000, 1.279916, 0.000000;;, - 7;3;-0.000000, 1.279916, 0.000000;;, - 8;3;-0.000000, 1.279916, 0.000000;;, - 9;3;-0.000000, 1.279916, 0.000000;;, - 10;3;-0.000000, 1.279916, 0.000000;;, - 11;3;-0.000000, 1.279916, 0.000000;;, - 12;3;-0.000000, 1.279916, 0.000000;;, - 13;3;-0.000000, 1.279916, 0.000000;;, - 14;3;-0.000000, 1.279916, 0.000000;;, - 15;3;-0.000000, 1.279916, 0.000000;;, - 16;3;-0.000000, 1.279916, 0.000000;;, - 17;3;-0.000000, 1.279916, 0.000000;;, - 18;3;-0.000000, 1.279916, 0.000000;;, - 19;3;-0.000000, 1.279916, 0.000000;;, - 20;3; 0.000000, 1.279916,-0.000000;;, - 21;3;-0.000000, 1.279916, 0.000000;;, - 22;3;-0.000000, 1.279916, 0.000000;;, - 23;3;-0.000000, 1.279916,-0.000000;;, - 24;3; 0.000000, 1.279916,-0.000000;;, - 25;3; 0.000000, 1.279916,-0.000000;;, - 26;3; 0.000000, 1.279916,-0.000000;;, - 27;3;-0.000000, 1.279916, 0.000000;;, - 28;3; 0.000000, 1.279916,-0.000000;;, - 29;3; 0.000000, 1.279916,-0.000000;;, - 30;3;-0.000000, 1.279916,-0.000000;;, - 31;3;-0.000000, 1.279916,-0.000000;;, - 32;3;-0.000000, 1.279915, 0.000000;;, - 33;3; 0.000000, 1.279916, 0.000000;;, - 34;3; 0.000000, 1.279916,-0.000000;;, - 35;3; 0.000000, 1.279916,-0.000000;;, - 36;3;-0.000000, 1.279916, 0.000000;;, - 37;3;-0.000000, 1.279916, 0.000000;;, - 38;3;-0.000000, 1.279916, 0.000000;;, - 39;3; 0.000000, 1.279916, 0.000000;;, - 40;3;-0.000000, 1.279915,-0.000000;;, - 41;3;-0.000000, 1.279916,-0.000000;;, - 42;3; 0.000000, 1.279916,-0.000000;;, - 43;3; 0.000000, 1.279916,-0.000000;;, - 44;3;-0.000000, 1.279916,-0.000000;;, - 45;3;-0.000000, 1.279916, 0.000000;;, - 46;3;-0.000000, 1.279916, 0.000000;;, - 47;3;-0.000000, 1.279916, 0.000000;;, - 48;3;-0.000000, 1.279916, 0.000000;;, - 49;3;-0.000000, 1.279916, 0.000000;;, - 50;3;-0.000000, 1.279916, 0.000000;;, - 51;3;-0.000000, 1.279916,-0.000000;;, - 52;3; 0.000000, 1.279916, 0.000000;;, - 53;3; 0.000000, 1.279916, 0.000000;;, - 54;3; 0.000000, 1.279916,-0.000000;;, - 55;3; 0.000000, 1.279916, 0.000000;;, - 56;3;-0.000000, 1.279916,-0.000000;;, - 57;3; 0.000000, 1.279916, 0.000000;;, - 58;3;-0.000000, 1.279916,-0.000000;;, - 59;3;-0.000000, 1.279916, 0.000000;;, - 60;3; 0.000000, 1.279915,-0.000000;;, - 61;3; 0.000000, 1.279916,-0.000000;;, - 62;3; 0.000000, 1.279916, 0.000000;;, - 63;3; 0.000000, 1.279916,-0.000000;;, - 64;3;-0.000000, 1.279916,-0.000000;;, - 65;3; 0.000000, 1.279915, 0.000000;;, - 66;3;-0.000000, 1.279916,-0.000000;;, - 67;3; 0.000000, 1.279916,-0.000000;;, - 68;3; 0.000000, 1.279916, 0.000000;;, - 69;3; 0.000000, 1.279916, 0.000000;;, - 70;3; 0.000000, 1.279916, 0.000000;;, - 71;3;-0.000000, 1.279916, 0.000000;;, - 72;3;-0.000000, 1.279916, 0.000000;;, - 73;3;-0.000000, 1.279916,-0.000000;;, - 74;3; 0.000000, 1.279916, 0.000000;;, - 75;3; 0.000000, 1.279916,-0.000000;;, - 76;3; 0.000000, 1.279916,-0.000000;;, - 77;3; 0.000000, 1.279916, 0.000000;;, - 78;3; 0.000000, 1.279916,-0.000000;;, - 79;3;-0.000000, 1.279915, 0.000000;;, - 80;3; 0.000000, 1.279916,-0.000000;;, - 81;3;-0.000000, 1.279916,-0.000000;;, - 82;3; 0.000000, 1.279916, 0.000000;;, - 83;3;-0.000000, 1.279916,-0.000000;;, - 84;3; 0.000000, 1.279916,-0.000000;;, - 85;3; 0.000000, 1.279916,-0.000000;;, - 86;3; 0.000000, 1.279916,-0.000000;;, - 87;3;-0.000000, 1.279916,-0.000000;;, - 88;3;-0.000000, 1.279916, 0.000000;;, - 89;3; 0.000000, 1.279915,-0.000000;;, - 90;3;-0.000000, 1.279916, 0.000000;;, - 91;3; 0.000000, 1.279916,-0.000000;;, - 92;3; 0.000000, 1.279916, 0.000000;;, - 93;3; 0.000000, 1.279916,-0.000000;;, - 94;3; 0.000000, 1.279916, 0.000000;;, - 95;3; 0.000000, 1.279916,-0.000000;;, - 96;3; 0.000000, 1.279915,-0.000000;;, - 97;3; 0.000000, 1.279915,-0.000000;;, - 98;3; 0.000000, 1.279916, 0.000000;;, - 99;3; 0.000000, 1.279916, 0.000000;;, - 100;3;-0.000000, 1.279915, 0.000000;;, - 101;3;-0.000000, 1.279916, 0.000000;;, - 102;3; 0.000000, 1.279916,-0.000000;;, - 103;3; 0.000000, 1.279916, 0.000000;;, - 104;3;-0.000000, 1.279916,-0.000000;;, - 105;3; 0.000000, 1.279916, 0.000000;;, - 106;3;-0.000000, 1.279916, 0.000000;;, - 107;3;-0.000000, 1.279916, 0.000000;;, - 108;3;-0.000000, 1.279916,-0.000000;;, - 109;3; 0.000000, 1.279916, 0.000000;;, - 110;3; 0.000000, 1.279916, 0.000000;;, - 111;3; 0.000000, 1.279916, 0.000000;;, - 112;3; 0.000000, 1.279916,-0.000000;;, - 113;3;-0.000000, 1.279916, 0.000000;;, - 114;3;-0.000000, 1.279916,-0.000000;;, - 115;3;-0.000000, 1.279915,-0.000000;;, - 116;3; 0.000000, 1.279916, 0.000000;;, - 117;3;-0.000000, 1.279916,-0.000000;;, - 118;3; 0.000000, 1.279916, 0.000000;;, - 119;3; 0.000000, 1.279916,-0.000000;;, - 120;3;-0.000000, 1.279916, 0.000000;;, - 121;3;-0.000000, 1.279916, 0.000000;;, - 122;3;-0.000000, 1.279916,-0.000000;;, - 123;3;-0.000000, 1.279916,-0.000000;;, - 124;3;-0.000000, 1.279916, 0.000000;;, - 125;3;-0.000000, 1.279916,-0.000000;;, - 126;3;-0.000000, 1.279916, 0.000000;;, - 127;3;-0.000000, 1.279916,-0.000000;;, - 128;3; 0.000000, 1.279916, 0.000000;;, - 129;3; 0.000000, 1.279916,-0.000000;;, - 130;3;-0.000000, 1.279916,-0.000000;;, - 131;3; 0.000000, 1.279916, 0.000000;;, - 132;3; 0.000000, 1.279916, 0.000000;;, - 133;3; 0.000000, 1.279916, 0.000000;;, - 134;3;-0.000000, 1.279916, 0.000000;;, - 135;3;-0.000000, 1.279916,-0.000000;;, - 136;3;-0.000000, 1.279916, 0.000000;;, - 137;3;-0.000000, 1.279915, 0.000000;;, - 138;3;-0.000000, 1.279916, 0.000000;;, - 139;3; 0.000000, 1.279916, 0.000000;;, - 140;3; 0.000000, 1.279916,-0.000000;;, - 141;3; 0.000000, 1.279916,-0.000000;;, - 142;3; 0.000000, 1.279916, 0.000000;;, - 143;3;-0.000000, 1.279916,-0.000000;;, - 144;3; 0.000000, 1.279916, 0.000000;;, - 145;3; 0.000000, 1.279916, 0.000000;;, - 146;3;-0.000000, 1.279916, 0.000000;;, - 147;3;-0.000000, 1.279915,-0.000000;;, - 148;3;-0.000000, 1.279916,-0.000000;;, - 149;3; 0.000000, 1.279916,-0.000000;;, - 150;3;-0.000000, 1.279916, 0.000000;;, - 151;3;-0.000000, 1.279916,-0.000000;;, - 152;3;-0.000000, 1.279916,-0.000000;;, - 153;3;-0.000000, 1.279916,-0.000000;;, - 154;3; 0.000000, 1.279916,-0.000000;;, - 155;3; 0.000000, 1.279915,-0.000000;;, - 156;3;-0.000000, 1.279916,-0.000000;;, - 157;3; 0.000000, 1.279916, 0.000000;;, - 158;3; 0.000000, 1.279916, 0.000000;;, - 159;3; 0.000000, 1.279916, 0.000000;;, - 160;3;-0.000000, 1.279916,-0.000000;;, - 161;3;-0.000000, 1.279916, 0.000000;;, - 162;3;-0.000000, 1.279916, 0.000000;;, - 163;3; 0.000000, 1.279916,-0.000000;;, - 164;3; 0.000000, 1.279916, 0.000000;;, - 165;3; 0.000000, 1.279916,-0.000000;;, - 166;3;-0.000000, 1.279916,-0.000000;;, - 167;3;-0.000000, 1.279916, 0.000000;;, - 168;3;-0.000000, 1.279916, 0.000000;;, - 169;3; 0.000000, 1.279916,-0.000000;;, - 170;3;-0.000000, 1.279916,-0.000000;;, - 171;3; 0.000000, 1.279916,-0.000000;;, - 172;3;-0.000000, 1.279916, 0.000000;;, - 173;3;-0.000000, 1.279916,-0.000000;;, - 174;3;-0.000000, 1.279916,-0.000000;;, - 175;3; 0.000000, 1.279916,-0.000000;;, - 176;3; 0.000000, 1.279916,-0.000000;;, - 177;3;-0.000000, 1.279915, 0.000000;;, - 178;3; 0.000000, 1.279916, 0.000000;;, - 179;3;-0.000000, 1.279916, 0.000000;;, - 180;3; 0.000000, 1.279915, 0.000000;;, - 181;3; 0.000000, 1.279916,-0.000000;;, - 182;3;-0.000000, 1.279916,-0.000000;;, - 183;3;-0.000000, 1.279916, 0.000000;;, - 184;3;-0.000000, 1.279916,-0.000000;;, - 185;3;-0.000000, 1.279916,-0.000000;;, - 186;3;-0.000000, 1.279916,-0.000000;;, - 187;3; 0.000000, 1.279916,-0.000000;;, - 188;3; 0.000000, 1.279916, 0.000000;;, - 189;3;-0.000000, 1.279916,-0.000000;;, - 190;3; 0.000000, 1.279916,-0.000000;;, - 191;3;-0.000000, 1.279916, 0.000000;;, - 192;3;-0.000000, 1.279915,-0.000000;;, - 193;3;-0.000000, 1.279915,-0.000000;;, - 194;3; 0.000000, 1.279916,-0.000000;;, - 195;3; 0.000000, 1.279916,-0.000000;;, - 196;3; 0.000000, 1.279916,-0.000000;;, - 197;3;-0.000000, 1.279916, 0.000000;;, - 198;3;-0.000000, 1.279916, 0.000000;;, - 199;3;-0.000000, 1.279916, 0.000000;;, - 200;3;-0.000000, 1.279916, 0.000000;;, - 201;3;-0.000000, 1.279916, 0.000000;;, - 202;3;-0.000000, 1.279916, 0.000000;;, - 203;3;-0.000000, 1.279916, 0.000000;;, - 204;3;-0.000000, 1.279916, 0.000000;;, - 205;3;-0.000000, 1.279916, 0.000000;;, - 206;3;-0.000000, 1.279916, 0.000000;;, - 207;3;-0.000000, 1.279916, 0.000000;;, - 208;3;-0.000000, 1.279916, 0.000000;;, - 209;3;-0.000000, 1.279916, 0.000000;;, - 210;3;-0.000000, 1.279916, 0.000000;;, - 211;3;-0.000000, 1.279916, 0.000000;;, - 212;3;-0.000000, 1.279916, 0.000000;;, - 213;3;-0.000000, 1.279916, 0.000000;;, - 214;3;-0.000000, 1.279916, 0.000000;;, - 215;3;-0.000000, 1.279916, 0.000000;;, - 216;3;-0.000000, 1.279916, 0.000000;;, - 217;3;-0.000000, 1.279916, 0.000000;;, - 218;3;-0.000000, 1.279916, 0.000000;;, - 219;3;-0.000000, 1.279916, 0.000000;;, - 220;3;-0.000000, 1.279916, 0.000000;;, - 221;3;-0.000000, 1.279916, 0.000000;;, - 222;3;-0.000000, 1.279916, 0.000000;;, - 223;3;-0.000000, 1.279916, 0.000000;;, - 224;3;-0.000000, 1.279916, 0.000000;;, - 225;3;-0.000000, 1.279916, 0.000000;;, - 226;3;-0.000000, 1.279916, 0.000000;;, - 227;3;-0.000000, 1.279916, 0.000000;;, - 228;3;-0.000000, 1.279916, 0.000000;;, - 229;3;-0.000000, 1.279916, 0.000000;;, - 230;3;-0.000000, 1.279916, 0.000000;;, - 231;3;-0.000000, 1.279916, 0.000000;;, - 232;3;-0.000000, 1.279916, 0.000000;;, - 233;3;-0.000000, 1.279916, 0.000000;;, - 234;3;-0.000000, 1.279916, 0.000000;;, - 235;3;-0.000000, 1.279916, 0.000000;;, - 236;3;-0.000000, 1.279916, 0.000000;;, - 237;3;-0.000000, 1.279916, 0.000000;;, - 238;3;-0.000000, 1.279916, 0.000000;;, - 239;3;-0.000000, 1.279916, 0.000000;;, - 240;3;-0.000000, 1.279916, 0.000000;;, - 241;3;-0.000000, 1.279916, 0.000000;;, - 242;3;-0.000000, 1.279916, 0.000000;;, - 243;3;-0.000000, 1.279916, 0.000000;;, - 244;3;-0.000000, 1.279916, 0.000000;;, - 245;3;-0.000000, 1.279916, 0.000000;;, - 246;3;-0.000000, 1.279916, 0.000000;;, - 247;3;-0.000000, 1.279916, 0.000000;;, - 248;3;-0.000000, 1.279916, 0.000000;;, - 249;3;-0.000000, 1.279916, 0.000000;;; - } - } - Animation { - {Armature_Bone_038} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 1;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 2;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 3;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 4;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 5;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 6;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 7;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 8;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 9;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 10;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 11;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 12;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 13;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 14;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 15;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 16;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 17;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 18;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 19;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 20;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 21;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 22;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 23;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 24;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 25;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 26;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 27;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 28;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 29;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 30;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 31;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 32;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 33;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 34;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 35;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 36;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 37;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 38;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 39;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 40;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 41;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 42;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 43;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 44;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 45;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 46;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 47;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 48;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 49;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 50;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 51;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 52;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 53;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 54;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 55;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 56;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 57;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 58;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 59;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 60;4;-0.958244,-0.285931, 0.000030, 0.000016;;, - 61;4;-0.958123,-0.286275, 0.000119, 0.000065;;, - 62;4;-0.957921,-0.286851, 0.000268, 0.000147;;, - 63;4;-0.957638,-0.287661, 0.000478, 0.000263;;, - 64;4;-0.957272,-0.288703, 0.000748, 0.000411;;, - 65;4;-0.956825,-0.289977, 0.001079, 0.000593;;, - 66;4;-0.956298,-0.291480, 0.001468, 0.000807;;, - 67;4;-0.955692,-0.293208, 0.001917, 0.001053;;, - 68;4;-0.955008,-0.295156, 0.002422, 0.001331;;, - 69;4;-0.954251,-0.297315, 0.002982, 0.001638;;, - 70;4;-0.953423,-0.299677, 0.003594, 0.001975;;, - 71;4;-0.952528,-0.302228, 0.004256, 0.002338;;, - 72;4;-0.951571,-0.304956, 0.004963, 0.002727;;, - 73;4;-0.950558,-0.307844, 0.005712, 0.003138;;, - 74;4;-0.949495,-0.310874, 0.006498, 0.003570;;, - 75;4;-0.948389,-0.314026, 0.007315, 0.004019;;, - 76;4;-0.947249,-0.317278, 0.008159, 0.004483;;, - 77;4;-0.946081,-0.320606, 0.009022, 0.004957;;, - 78;4;-0.944896,-0.323985, 0.009898, 0.005438;;, - 79;4;-0.943701,-0.327391, 0.010781, 0.005924;;, - 80;4;-0.942506,-0.330796, 0.011664, 0.006409;;, - 81;4;-0.941321,-0.334176, 0.012541, 0.006890;;, - 82;4;-0.940153,-0.337504, 0.013404, 0.007364;;, - 83;4;-0.939013,-0.340756, 0.014247, 0.007828;;, - 84;4;-0.937907,-0.343908, 0.015064, 0.008277;;, - 85;4;-0.936844,-0.346938, 0.015850, 0.008709;;, - 86;4;-0.935831,-0.349826, 0.016599, 0.009120;;, - 87;4;-0.934875,-0.352553, 0.017307, 0.009509;;, - 88;4;-0.933979,-0.355105, 0.017968, 0.009872;;, - 89;4;-0.933151,-0.357466, 0.018581, 0.010209;;, - 90;4;-0.932394,-0.359626, 0.019141, 0.010516;;, - 91;4;-0.931710,-0.361574, 0.019646, 0.010794;;, - 92;4;-0.931104,-0.363302, 0.020094, 0.011040;;, - 93;4;-0.930577,-0.364805, 0.020484, 0.011254;;, - 94;4;-0.930130,-0.366079, 0.020814, 0.011436;;, - 95;4;-0.929765,-0.367121, 0.021084, 0.011584;;, - 96;4;-0.929481,-0.367930, 0.021294, 0.011700;;, - 97;4;-0.929279,-0.368506, 0.021443, 0.011782;;, - 98;4;-0.929158,-0.368850, 0.021533, 0.011831;;, - 99;4;-0.929118,-0.368964, 0.021562, 0.011847;;, - 100;4;-0.929521,-0.367474, 0.021184, 0.011639;;, - 101;4;-0.930772,-0.362843, 0.020009, 0.010994;;, - 102;4;-0.932897,-0.354977, 0.018014, 0.009897;;, - 103;4;-0.935842,-0.344075, 0.015248, 0.008378;;, - 104;4;-0.939447,-0.330728, 0.011862, 0.006518;;, - 105;4;-0.943459,-0.315879, 0.008096, 0.004448;;, - 106;4;-0.947580,-0.300624, 0.004226, 0.002322;;, - 107;4;-0.951545,-0.285946, 0.000502, 0.000276;;, - 108;4;-0.955165,-0.272548,-0.002897,-0.001592;;, - 109;4;-0.958331,-0.260827,-0.005870,-0.003225;;, - 110;4;-0.961497,-0.249107,-0.008843,-0.004859;;, - 111;4;-0.965116,-0.235709,-0.012242,-0.006726;;, - 112;4;-0.969082,-0.221031,-0.015966,-0.008772;;, - 113;4;-0.973203,-0.205776,-0.019836,-0.010898;;, - 114;4;-0.977214,-0.190927,-0.023602,-0.012968;;, - 115;4;-0.980820,-0.177580,-0.026988,-0.014828;;, - 116;4;-0.983765,-0.166678,-0.029754,-0.016348;;, - 117;4;-0.985890,-0.158812,-0.031749,-0.017444;;, - 118;4;-0.987141,-0.154181,-0.032924,-0.018090;;, - 119;4;-0.987543,-0.152690,-0.033302,-0.018297;;, - 120;4;-0.987141,-0.154181,-0.032924,-0.018090;;, - 121;4;-0.985890,-0.158812,-0.031749,-0.017444;;, - 122;4;-0.983765,-0.166678,-0.029754,-0.016348;;, - 123;4;-0.980820,-0.177580,-0.026988,-0.014828;;, - 124;4;-0.977214,-0.190927,-0.023602,-0.012968;;, - 125;4;-0.973203,-0.205776,-0.019836,-0.010898;;, - 126;4;-0.969082,-0.221031,-0.015966,-0.008772;;, - 127;4;-0.965116,-0.235709,-0.012242,-0.006726;;, - 128;4;-0.961497,-0.249107,-0.008843,-0.004859;;, - 129;4;-0.958331,-0.260827,-0.005870,-0.003225;;, - 130;4;-0.955165,-0.272548,-0.002897,-0.001592;;, - 131;4;-0.951545,-0.285945, 0.000502, 0.000276;;, - 132;4;-0.947580,-0.300624, 0.004226, 0.002322;;, - 133;4;-0.943459,-0.315879, 0.008096, 0.004448;;, - 134;4;-0.939447,-0.330728, 0.011862, 0.006518;;, - 135;4;-0.935842,-0.344075, 0.015248, 0.008378;;, - 136;4;-0.932897,-0.354977, 0.018014, 0.009897;;, - 137;4;-0.930772,-0.362843, 0.020009, 0.010994;;, - 138;4;-0.929521,-0.367474, 0.021184, 0.011639;;, - 139;4;-0.929118,-0.368964, 0.021562, 0.011847;;, - 140;4;-0.930772,-0.362843, 0.020009, 0.010994;;, - 141;4;-0.935842,-0.344075, 0.015248, 0.008378;;, - 142;4;-0.943459,-0.315879, 0.008096, 0.004448;;, - 143;4;-0.951545,-0.285946, 0.000502, 0.000276;;, - 144;4;-0.958331,-0.260827,-0.005870,-0.003225;;, - 145;4;-0.965116,-0.235709,-0.012242,-0.006726;;, - 146;4;-0.973203,-0.205776,-0.019836,-0.010898;;, - 147;4;-0.980820,-0.177580,-0.026988,-0.014828;;, - 148;4;-0.985890,-0.158812,-0.031749,-0.017444;;, - 149;4;-0.987543,-0.152690,-0.033302,-0.018297;;, - 150;4;-0.985890,-0.158812,-0.031749,-0.017444;;, - 151;4;-0.980820,-0.177580,-0.026988,-0.014828;;, - 152;4;-0.973203,-0.205776,-0.019836,-0.010898;;, - 153;4;-0.965116,-0.235709,-0.012242,-0.006726;;, - 154;4;-0.958331,-0.260827,-0.005870,-0.003225;;, - 155;4;-0.951545,-0.285945, 0.000502, 0.000276;;, - 156;4;-0.943459,-0.315879, 0.008096, 0.004448;;, - 157;4;-0.935842,-0.344075, 0.015248, 0.008378;;, - 158;4;-0.930772,-0.362843, 0.020009, 0.010994;;, - 159;4;-0.929118,-0.368964, 0.021562, 0.011847;;, - 160;4;-0.929279,-0.368506, 0.021443, 0.011782;;, - 161;4;-0.929765,-0.367121, 0.021084, 0.011584;;, - 162;4;-0.930577,-0.364805, 0.020484, 0.011254;;, - 163;4;-0.931710,-0.361573, 0.019646, 0.010794;;, - 164;4;-0.933151,-0.357466, 0.018581, 0.010209;;, - 165;4;-0.934874,-0.352553, 0.017307, 0.009509;;, - 166;4;-0.936844,-0.346938, 0.015850, 0.008709;;, - 167;4;-0.939013,-0.340756, 0.014247, 0.007828;;, - 168;4;-0.941321,-0.334176, 0.012541, 0.006890;;, - 169;4;-0.943701,-0.327391, 0.010781, 0.005924;;, - 170;4;-0.946081,-0.320606, 0.009022, 0.004957;;, - 171;4;-0.948389,-0.314026, 0.007315, 0.004019;;, - 172;4;-0.950558,-0.307844, 0.005712, 0.003138;;, - 173;4;-0.952528,-0.302228, 0.004256, 0.002338;;, - 174;4;-0.954251,-0.297315, 0.002982, 0.001638;;, - 175;4;-0.955692,-0.293208, 0.001917, 0.001053;;, - 176;4;-0.956825,-0.289977, 0.001079, 0.000593;;, - 177;4;-0.957638,-0.287661, 0.000478, 0.000263;;, - 178;4;-0.958123,-0.286275, 0.000119, 0.000065;;, - 179;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 180;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 181;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 182;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 183;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 184;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 185;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 186;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 187;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 188;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 189;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 190;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 191;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 192;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 193;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 194;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 195;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 196;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 197;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 198;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 199;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 200;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 201;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 202;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 203;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 204;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 205;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 206;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 207;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 208;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 209;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 210;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 211;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 212;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 213;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 214;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 215;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 216;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 217;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 218;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 219;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 220;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 221;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 222;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 223;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 224;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 225;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 226;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 227;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 228;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 229;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 230;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 231;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 232;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 233;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 234;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 235;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 236;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 237;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 238;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 239;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 240;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 241;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 242;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 243;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 244;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 245;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 246;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 247;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 248;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 249;4;-0.958284,-0.285817, 0.000000,-0.000000;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3; 0.000000, 1.228417,-0.000000;;, - 1;3; 0.000000, 1.228417,-0.000000;;, - 2;3; 0.000000, 1.228417,-0.000000;;, - 3;3; 0.000000, 1.228417,-0.000000;;, - 4;3; 0.000000, 1.228417,-0.000000;;, - 5;3; 0.000000, 1.228417,-0.000000;;, - 6;3; 0.000000, 1.228417,-0.000000;;, - 7;3; 0.000000, 1.228417,-0.000000;;, - 8;3; 0.000000, 1.228417,-0.000000;;, - 9;3; 0.000000, 1.228417,-0.000000;;, - 10;3; 0.000000, 1.228417,-0.000000;;, - 11;3; 0.000000, 1.228417,-0.000000;;, - 12;3; 0.000000, 1.228417,-0.000000;;, - 13;3; 0.000000, 1.228417,-0.000000;;, - 14;3; 0.000000, 1.228417,-0.000000;;, - 15;3; 0.000000, 1.228417,-0.000000;;, - 16;3; 0.000000, 1.228417,-0.000000;;, - 17;3; 0.000000, 1.228417,-0.000000;;, - 18;3; 0.000000, 1.228417,-0.000000;;, - 19;3; 0.000000, 1.228417,-0.000000;;, - 20;3;-0.000000, 1.228416,-0.000000;;, - 21;3; 0.000000, 1.228416, 0.000000;;, - 22;3; 0.000000, 1.228417, 0.000000;;, - 23;3;-0.000000, 1.228416, 0.000000;;, - 24;3; 0.000000, 1.228416,-0.000000;;, - 25;3;-0.000000, 1.228417, 0.000000;;, - 26;3;-0.000000, 1.228416,-0.000000;;, - 27;3; 0.000000, 1.228416,-0.000000;;, - 28;3; 0.000000, 1.228416,-0.000000;;, - 29;3; 0.000000, 1.228417,-0.000000;;, - 30;3; 0.000000, 1.228417, 0.000000;;, - 31;3;-0.000000, 1.228417,-0.000000;;, - 32;3;-0.000000, 1.228416, 0.000000;;, - 33;3;-0.000000, 1.228416,-0.000000;;, - 34;3;-0.000000, 1.228416, 0.000000;;, - 35;3; 0.000000, 1.228417,-0.000000;;, - 36;3;-0.000000, 1.228417,-0.000000;;, - 37;3;-0.000000, 1.228416, 0.000000;;, - 38;3;-0.000000, 1.228416,-0.000000;;, - 39;3;-0.000000, 1.228416,-0.000000;;, - 40;3; 0.000000, 1.228416, 0.000000;;, - 41;3;-0.000000, 1.228416, 0.000000;;, - 42;3; 0.000000, 1.228417, 0.000000;;, - 43;3;-0.000000, 1.228416,-0.000000;;, - 44;3;-0.000000, 1.228416,-0.000000;;, - 45;3; 0.000000, 1.228416,-0.000000;;, - 46;3;-0.000000, 1.228416,-0.000000;;, - 47;3;-0.000000, 1.228416,-0.000000;;, - 48;3; 0.000000, 1.228416,-0.000000;;, - 49;3; 0.000000, 1.228416, 0.000000;;, - 50;3;-0.000000, 1.228416,-0.000000;;, - 51;3; 0.000000, 1.228417, 0.000000;;, - 52;3; 0.000000, 1.228417, 0.000000;;, - 53;3;-0.000000, 1.228416, 0.000000;;, - 54;3;-0.000000, 1.228416, 0.000000;;, - 55;3;-0.000000, 1.228417, 0.000000;;, - 56;3; 0.000000, 1.228416,-0.000000;;, - 57;3; 0.000000, 1.228416,-0.000000;;, - 58;3;-0.000000, 1.228416,-0.000000;;, - 59;3; 0.000000, 1.228417,-0.000000;;, - 60;3;-0.000000, 1.228416,-0.000000;;, - 61;3;-0.000000, 1.228417,-0.000000;;, - 62;3;-0.000000, 1.228416,-0.000000;;, - 63;3;-0.000000, 1.228417, 0.000000;;, - 64;3; 0.000000, 1.228417, 0.000000;;, - 65;3;-0.000000, 1.228417,-0.000000;;, - 66;3;-0.000000, 1.228416, 0.000000;;, - 67;3;-0.000000, 1.228416, 0.000000;;, - 68;3; 0.000000, 1.228417, 0.000000;;, - 69;3;-0.000000, 1.228417,-0.000000;;, - 70;3; 0.000000, 1.228417, 0.000000;;, - 71;3;-0.000000, 1.228417,-0.000000;;, - 72;3; 0.000000, 1.228417, 0.000000;;, - 73;3;-0.000000, 1.228416,-0.000000;;, - 74;3; 0.000000, 1.228417,-0.000000;;, - 75;3; 0.000000, 1.228416, 0.000000;;, - 76;3;-0.000000, 1.228417,-0.000000;;, - 77;3; 0.000000, 1.228417, 0.000000;;, - 78;3; 0.000000, 1.228416, 0.000000;;, - 79;3;-0.000000, 1.228416,-0.000000;;, - 80;3;-0.000000, 1.228417, 0.000000;;, - 81;3; 0.000000, 1.228417, 0.000000;;, - 82;3; 0.000000, 1.228417,-0.000000;;, - 83;3; 0.000000, 1.228416,-0.000000;;, - 84;3; 0.000000, 1.228416,-0.000000;;, - 85;3;-0.000000, 1.228416,-0.000000;;, - 86;3; 0.000000, 1.228417,-0.000000;;, - 87;3; 0.000000, 1.228416,-0.000000;;, - 88;3;-0.000000, 1.228416,-0.000000;;, - 89;3;-0.000000, 1.228416,-0.000000;;, - 90;3; 0.000000, 1.228417, 0.000000;;, - 91;3;-0.000000, 1.228416,-0.000000;;, - 92;3; 0.000000, 1.228417, 0.000000;;, - 93;3; 0.000000, 1.228417, 0.000000;;, - 94;3; 0.000000, 1.228417,-0.000000;;, - 95;3;-0.000000, 1.228416, 0.000000;;, - 96;3; 0.000000, 1.228417,-0.000000;;, - 97;3; 0.000000, 1.228416, 0.000000;;, - 98;3;-0.000000, 1.228416, 0.000000;;, - 99;3; 0.000000, 1.228416, 0.000000;;, - 100;3; 0.000000, 1.228417,-0.000000;;, - 101;3;-0.000000, 1.228416,-0.000000;;, - 102;3; 0.000000, 1.228417, 0.000000;;, - 103;3; 0.000000, 1.228416,-0.000000;;, - 104;3; 0.000000, 1.228416, 0.000000;;, - 105;3;-0.000000, 1.228416,-0.000000;;, - 106;3;-0.000000, 1.228416, 0.000000;;, - 107;3;-0.000000, 1.228416,-0.000000;;, - 108;3;-0.000000, 1.228416, 0.000000;;, - 109;3; 0.000000, 1.228416, 0.000000;;, - 110;3;-0.000000, 1.228416,-0.000000;;, - 111;3; 0.000000, 1.228417, 0.000000;;, - 112;3; 0.000000, 1.228417, 0.000000;;, - 113;3;-0.000000, 1.228416, 0.000000;;, - 114;3; 0.000000, 1.228416, 0.000000;;, - 115;3;-0.000000, 1.228416, 0.000000;;, - 116;3;-0.000000, 1.228418, 0.000000;;, - 117;3; 0.000000, 1.228416,-0.000000;;, - 118;3; 0.000000, 1.228417,-0.000000;;, - 119;3; 0.000000, 1.228417,-0.000000;;, - 120;3;-0.000000, 1.228416,-0.000000;;, - 121;3;-0.000000, 1.228417,-0.000000;;, - 122;3; 0.000000, 1.228417, 0.000000;;, - 123;3; 0.000000, 1.228417,-0.000000;;, - 124;3; 0.000000, 1.228416,-0.000000;;, - 125;3; 0.000000, 1.228417,-0.000000;;, - 126;3;-0.000000, 1.228416,-0.000000;;, - 127;3;-0.000000, 1.228416,-0.000000;;, - 128;3; 0.000000, 1.228416,-0.000000;;, - 129;3; 0.000000, 1.228417,-0.000000;;, - 130;3; 0.000000, 1.228416,-0.000000;;, - 131;3;-0.000000, 1.228416,-0.000000;;, - 132;3; 0.000000, 1.228417, 0.000000;;, - 133;3;-0.000000, 1.228416,-0.000000;;, - 134;3;-0.000000, 1.228417,-0.000000;;, - 135;3; 0.000000, 1.228417, 0.000000;;, - 136;3; 0.000000, 1.228416,-0.000000;;, - 137;3; 0.000000, 1.228417, 0.000000;;, - 138;3; 0.000000, 1.228417,-0.000000;;, - 139;3; 0.000000, 1.228416, 0.000000;;, - 140;3;-0.000000, 1.228417,-0.000000;;, - 141;3;-0.000000, 1.228417,-0.000000;;, - 142;3;-0.000000, 1.228416, 0.000000;;, - 143;3; 0.000000, 1.228417, 0.000000;;, - 144;3; 0.000000, 1.228416, 0.000000;;, - 145;3; 0.000000, 1.228417, 0.000000;;, - 146;3;-0.000000, 1.228416, 0.000000;;, - 147;3;-0.000000, 1.228416, 0.000000;;, - 148;3; 0.000000, 1.228416,-0.000000;;, - 149;3; 0.000000, 1.228417,-0.000000;;, - 150;3;-0.000000, 1.228417,-0.000000;;, - 151;3; 0.000000, 1.228417,-0.000000;;, - 152;3; 0.000000, 1.228417,-0.000000;;, - 153;3;-0.000000, 1.228416,-0.000000;;, - 154;3; 0.000000, 1.228417,-0.000000;;, - 155;3; 0.000000, 1.228417,-0.000000;;, - 156;3; 0.000000, 1.228416,-0.000000;;, - 157;3; 0.000000, 1.228416,-0.000000;;, - 158;3;-0.000000, 1.228416,-0.000000;;, - 159;3; 0.000000, 1.228416, 0.000000;;, - 160;3;-0.000000, 1.228416, 0.000000;;, - 161;3; 0.000000, 1.228416, 0.000000;;, - 162;3;-0.000000, 1.228416, 0.000000;;, - 163;3; 0.000000, 1.228417,-0.000000;;, - 164;3; 0.000000, 1.228417, 0.000000;;, - 165;3;-0.000000, 1.228416,-0.000000;;, - 166;3; 0.000000, 1.228416, 0.000000;;, - 167;3;-0.000000, 1.228416, 0.000000;;, - 168;3;-0.000000, 1.228417,-0.000000;;, - 169;3; 0.000000, 1.228416, 0.000000;;, - 170;3;-0.000000, 1.228416,-0.000000;;, - 171;3; 0.000000, 1.228417, 0.000000;;, - 172;3; 0.000000, 1.228417, 0.000000;;, - 173;3;-0.000000, 1.228416,-0.000000;;, - 174;3;-0.000000, 1.228417, 0.000000;;, - 175;3;-0.000000, 1.228417, 0.000000;;, - 176;3;-0.000000, 1.228416, 0.000000;;, - 177;3; 0.000000, 1.228416,-0.000000;;, - 178;3; 0.000000, 1.228417, 0.000000;;, - 179;3; 0.000000, 1.228417,-0.000000;;, - 180;3; 0.000000, 1.228416,-0.000000;;, - 181;3; 0.000000, 1.228417, 0.000000;;, - 182;3; 0.000000, 1.228416, 0.000000;;, - 183;3;-0.000000, 1.228416, 0.000000;;, - 184;3;-0.000000, 1.228416, 0.000000;;, - 185;3; 0.000000, 1.228417, 0.000000;;, - 186;3;-0.000000, 1.228416,-0.000000;;, - 187;3; 0.000000, 1.228416, 0.000000;;, - 188;3; 0.000000, 1.228416, 0.000000;;, - 189;3;-0.000000, 1.228416, 0.000001;;, - 190;3;-0.000000, 1.228417, 0.000000;;, - 191;3;-0.000000, 1.228416,-0.000000;;, - 192;3; 0.000000, 1.228417,-0.000000;;, - 193;3; 0.000000, 1.228416, 0.000001;;, - 194;3; 0.000000, 1.228416,-0.000000;;, - 195;3;-0.000000, 1.228416, 0.000000;;, - 196;3;-0.000000, 1.228417, 0.000000;;, - 197;3; 0.000000, 1.228416, 0.000000;;, - 198;3; 0.000000, 1.228417, 0.000000;;, - 199;3; 0.000000, 1.228417,-0.000000;;, - 200;3; 0.000000, 1.228417,-0.000000;;, - 201;3; 0.000000, 1.228417,-0.000000;;, - 202;3; 0.000000, 1.228417,-0.000000;;, - 203;3; 0.000000, 1.228417,-0.000000;;, - 204;3; 0.000000, 1.228417,-0.000000;;, - 205;3; 0.000000, 1.228417,-0.000000;;, - 206;3; 0.000000, 1.228417,-0.000000;;, - 207;3; 0.000000, 1.228417,-0.000000;;, - 208;3; 0.000000, 1.228417,-0.000000;;, - 209;3; 0.000000, 1.228417,-0.000000;;, - 210;3; 0.000000, 1.228417,-0.000000;;, - 211;3; 0.000000, 1.228417,-0.000000;;, - 212;3; 0.000000, 1.228417,-0.000000;;, - 213;3; 0.000000, 1.228417,-0.000000;;, - 214;3; 0.000000, 1.228417,-0.000000;;, - 215;3; 0.000000, 1.228417,-0.000000;;, - 216;3; 0.000000, 1.228417,-0.000000;;, - 217;3; 0.000000, 1.228417,-0.000000;;, - 218;3; 0.000000, 1.228417,-0.000000;;, - 219;3; 0.000000, 1.228417,-0.000000;;, - 220;3; 0.000000, 1.228417,-0.000000;;, - 221;3; 0.000000, 1.228417,-0.000000;;, - 222;3; 0.000000, 1.228417,-0.000000;;, - 223;3; 0.000000, 1.228417,-0.000000;;, - 224;3; 0.000000, 1.228417,-0.000000;;, - 225;3; 0.000000, 1.228417,-0.000000;;, - 226;3; 0.000000, 1.228417,-0.000000;;, - 227;3; 0.000000, 1.228417,-0.000000;;, - 228;3; 0.000000, 1.228417,-0.000000;;, - 229;3; 0.000000, 1.228417,-0.000000;;, - 230;3; 0.000000, 1.228417,-0.000000;;, - 231;3; 0.000000, 1.228417,-0.000000;;, - 232;3; 0.000000, 1.228417,-0.000000;;, - 233;3; 0.000000, 1.228417,-0.000000;;, - 234;3; 0.000000, 1.228417,-0.000000;;, - 235;3; 0.000000, 1.228417,-0.000000;;, - 236;3; 0.000000, 1.228417,-0.000000;;, - 237;3; 0.000000, 1.228417,-0.000000;;, - 238;3; 0.000000, 1.228417,-0.000000;;, - 239;3; 0.000000, 1.228417,-0.000000;;, - 240;3; 0.000000, 1.228417,-0.000000;;, - 241;3; 0.000000, 1.228417,-0.000000;;, - 242;3; 0.000000, 1.228417,-0.000000;;, - 243;3; 0.000000, 1.228417,-0.000000;;, - 244;3; 0.000000, 1.228417,-0.000000;;, - 245;3; 0.000000, 1.228417,-0.000000;;, - 246;3; 0.000000, 1.228417,-0.000000;;, - 247;3; 0.000000, 1.228417,-0.000000;;, - 248;3; 0.000000, 1.228417,-0.000000;;, - 249;3; 0.000000, 1.228417,-0.000000;;; - } - } - Animation { - {Armature_Bone_011} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 1;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 2;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 3;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 4;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 5;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 6;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 7;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 8;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 9;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 10;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 11;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 12;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 13;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 14;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 15;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 16;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 17;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 18;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 19;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 20;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 21;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 22;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 23;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 24;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 25;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 26;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 27;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 28;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 29;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 30;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 31;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 32;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 33;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 34;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 35;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 36;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 37;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 38;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 39;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 40;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 41;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 42;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 43;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 44;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 45;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 46;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 47;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 48;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 49;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 50;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 51;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 52;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 53;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 54;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 55;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 56;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 57;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 58;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 59;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 60;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 61;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 62;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 63;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 64;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 65;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 66;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 67;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 68;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 69;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 70;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 71;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 72;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 73;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 74;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 75;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 76;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 77;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 78;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 79;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 80;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 81;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 82;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 83;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 84;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 85;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 86;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 87;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 88;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 89;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 90;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 91;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 92;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 93;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 94;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 95;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 96;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 97;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 98;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 99;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 100;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 101;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 102;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 103;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 104;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 105;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 106;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 107;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 108;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 109;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 110;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 111;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 112;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 113;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 114;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 115;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 116;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 117;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 118;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 119;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 120;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 121;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 122;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 123;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 124;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 125;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 126;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 127;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 128;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 129;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 130;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 131;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 132;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 133;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 134;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 135;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 136;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 137;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 138;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 139;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 140;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 141;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 142;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 143;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 144;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 145;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 146;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 147;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 148;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 149;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 150;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 151;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 152;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 153;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 154;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 155;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 156;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 157;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 158;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 159;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 160;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 161;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 162;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 163;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 164;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 165;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 166;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 167;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 168;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 169;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 170;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 171;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 172;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 173;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 174;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 175;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 176;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 177;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 178;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 179;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 180;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 181;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 182;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 183;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 184;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 185;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 186;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 187;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 188;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 189;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 190;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 191;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 192;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 193;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 194;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 195;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 196;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 197;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 198;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 199;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 200;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 201;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 202;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 203;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 204;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 205;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 206;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 207;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 208;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 209;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 210;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 211;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 212;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 213;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 214;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 215;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 216;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 217;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 218;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 219;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 220;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 221;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 222;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 223;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 224;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 225;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 226;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 227;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 228;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 229;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 230;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 231;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 232;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 233;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 234;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 235;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 236;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 237;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 238;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 239;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 240;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 241;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 242;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 243;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 244;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 245;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 246;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 247;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 248;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 249;4;-0.755773,-0.000000, 0.000000, 0.654833;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3; 0.000000, 0.826434, 0.000000;;, - 1;3; 0.000000, 0.826434, 0.000000;;, - 2;3; 0.000000, 0.826434, 0.000000;;, - 3;3; 0.000000, 0.826434, 0.000000;;, - 4;3; 0.000000, 0.826434, 0.000000;;, - 5;3; 0.000000, 0.826434, 0.000000;;, - 6;3; 0.000000, 0.826434, 0.000000;;, - 7;3; 0.000000, 0.826434, 0.000000;;, - 8;3; 0.000000, 0.826434, 0.000000;;, - 9;3; 0.000000, 0.826434, 0.000000;;, - 10;3; 0.000000, 0.826434, 0.000000;;, - 11;3; 0.000000, 0.826434, 0.000000;;, - 12;3; 0.000000, 0.826434, 0.000000;;, - 13;3; 0.000000, 0.826434, 0.000000;;, - 14;3; 0.000000, 0.826434, 0.000000;;, - 15;3; 0.000000, 0.826434, 0.000000;;, - 16;3; 0.000000, 0.826434, 0.000000;;, - 17;3; 0.000000, 0.826434, 0.000000;;, - 18;3; 0.000000, 0.826434, 0.000000;;, - 19;3; 0.000000, 0.826434, 0.000000;;, - 20;3; 0.000000, 0.826434, 0.000000;;, - 21;3; 0.000000, 0.826434, 0.000000;;, - 22;3; 0.000000, 0.826434, 0.000000;;, - 23;3; 0.000000, 0.826434, 0.000000;;, - 24;3; 0.000000, 0.826434, 0.000000;;, - 25;3; 0.000000, 0.826434, 0.000000;;, - 26;3; 0.000000, 0.826434, 0.000000;;, - 27;3; 0.000000, 0.826434, 0.000000;;, - 28;3; 0.000000, 0.826434, 0.000000;;, - 29;3; 0.000000, 0.826434, 0.000000;;, - 30;3; 0.000000, 0.826434, 0.000000;;, - 31;3; 0.000000, 0.826434, 0.000000;;, - 32;3; 0.000000, 0.826434, 0.000000;;, - 33;3; 0.000000, 0.826434, 0.000000;;, - 34;3; 0.000000, 0.826434, 0.000000;;, - 35;3; 0.000000, 0.826434, 0.000000;;, - 36;3; 0.000000, 0.826434, 0.000000;;, - 37;3; 0.000000, 0.826434, 0.000000;;, - 38;3; 0.000000, 0.826434, 0.000000;;, - 39;3; 0.000000, 0.826434, 0.000000;;, - 40;3; 0.000000, 0.826434, 0.000000;;, - 41;3; 0.000000, 0.826434, 0.000000;;, - 42;3; 0.000000, 0.826434, 0.000000;;, - 43;3; 0.000000, 0.826434, 0.000000;;, - 44;3; 0.000000, 0.826434, 0.000000;;, - 45;3; 0.000000, 0.826434, 0.000000;;, - 46;3; 0.000000, 0.826434, 0.000000;;, - 47;3; 0.000000, 0.826434, 0.000000;;, - 48;3; 0.000000, 0.826434, 0.000000;;, - 49;3; 0.000000, 0.826434, 0.000000;;, - 50;3; 0.000000, 0.826434, 0.000000;;, - 51;3; 0.000000, 0.826434, 0.000000;;, - 52;3; 0.000000, 0.826434, 0.000000;;, - 53;3; 0.000000, 0.826434, 0.000000;;, - 54;3; 0.000000, 0.826434, 0.000000;;, - 55;3; 0.000000, 0.826434, 0.000000;;, - 56;3; 0.000000, 0.826434, 0.000000;;, - 57;3; 0.000000, 0.826434, 0.000000;;, - 58;3; 0.000000, 0.826434, 0.000000;;, - 59;3; 0.000000, 0.826434, 0.000000;;, - 60;3; 0.000000, 0.826434, 0.000000;;, - 61;3; 0.000000, 0.826434, 0.000000;;, - 62;3; 0.000000, 0.826434, 0.000000;;, - 63;3; 0.000000, 0.826434, 0.000000;;, - 64;3; 0.000000, 0.826434, 0.000000;;, - 65;3; 0.000000, 0.826434, 0.000000;;, - 66;3; 0.000000, 0.826434, 0.000000;;, - 67;3; 0.000000, 0.826434, 0.000000;;, - 68;3; 0.000000, 0.826434, 0.000000;;, - 69;3; 0.000000, 0.826434, 0.000000;;, - 70;3; 0.000000, 0.826434, 0.000000;;, - 71;3; 0.000000, 0.826434, 0.000000;;, - 72;3; 0.000000, 0.826434, 0.000000;;, - 73;3; 0.000000, 0.826434, 0.000000;;, - 74;3; 0.000000, 0.826434, 0.000000;;, - 75;3; 0.000000, 0.826434, 0.000000;;, - 76;3; 0.000000, 0.826434, 0.000000;;, - 77;3; 0.000000, 0.826434, 0.000000;;, - 78;3; 0.000000, 0.826434, 0.000000;;, - 79;3; 0.000000, 0.826434, 0.000000;;, - 80;3; 0.000000, 0.826434, 0.000000;;, - 81;3; 0.000000, 0.826434, 0.000000;;, - 82;3; 0.000000, 0.826434, 0.000000;;, - 83;3; 0.000000, 0.826434, 0.000000;;, - 84;3; 0.000000, 0.826434, 0.000000;;, - 85;3; 0.000000, 0.826434, 0.000000;;, - 86;3; 0.000000, 0.826434, 0.000000;;, - 87;3; 0.000000, 0.826434, 0.000000;;, - 88;3; 0.000000, 0.826434, 0.000000;;, - 89;3; 0.000000, 0.826434, 0.000000;;, - 90;3; 0.000000, 0.826434, 0.000000;;, - 91;3; 0.000000, 0.826434, 0.000000;;, - 92;3; 0.000000, 0.826434, 0.000000;;, - 93;3; 0.000000, 0.826434, 0.000000;;, - 94;3; 0.000000, 0.826434, 0.000000;;, - 95;3; 0.000000, 0.826434, 0.000000;;, - 96;3; 0.000000, 0.826434, 0.000000;;, - 97;3; 0.000000, 0.826434, 0.000000;;, - 98;3; 0.000000, 0.826434, 0.000000;;, - 99;3; 0.000000, 0.826434, 0.000000;;, - 100;3; 0.000000, 0.826434, 0.000000;;, - 101;3; 0.000000, 0.826434, 0.000000;;, - 102;3; 0.000000, 0.826434, 0.000000;;, - 103;3; 0.000000, 0.826434, 0.000000;;, - 104;3; 0.000000, 0.826434, 0.000000;;, - 105;3; 0.000000, 0.826434, 0.000000;;, - 106;3; 0.000000, 0.826434, 0.000000;;, - 107;3; 0.000000, 0.826434, 0.000000;;, - 108;3; 0.000000, 0.826434, 0.000000;;, - 109;3; 0.000000, 0.826434, 0.000000;;, - 110;3; 0.000000, 0.826434, 0.000000;;, - 111;3; 0.000000, 0.826434, 0.000000;;, - 112;3; 0.000000, 0.826434, 0.000000;;, - 113;3; 0.000000, 0.826434, 0.000000;;, - 114;3; 0.000000, 0.826434, 0.000000;;, - 115;3; 0.000000, 0.826434, 0.000000;;, - 116;3; 0.000000, 0.826434, 0.000000;;, - 117;3; 0.000000, 0.826434, 0.000000;;, - 118;3; 0.000000, 0.826434, 0.000000;;, - 119;3; 0.000000, 0.826434, 0.000000;;, - 120;3; 0.000000, 0.826434, 0.000000;;, - 121;3; 0.000000, 0.826434, 0.000000;;, - 122;3; 0.000000, 0.826434, 0.000000;;, - 123;3; 0.000000, 0.826434, 0.000000;;, - 124;3; 0.000000, 0.826434, 0.000000;;, - 125;3; 0.000000, 0.826434, 0.000000;;, - 126;3; 0.000000, 0.826434, 0.000000;;, - 127;3; 0.000000, 0.826434, 0.000000;;, - 128;3; 0.000000, 0.826434, 0.000000;;, - 129;3; 0.000000, 0.826434, 0.000000;;, - 130;3; 0.000000, 0.826434, 0.000000;;, - 131;3; 0.000000, 0.826434, 0.000000;;, - 132;3; 0.000000, 0.826434, 0.000000;;, - 133;3; 0.000000, 0.826434, 0.000000;;, - 134;3; 0.000000, 0.826434, 0.000000;;, - 135;3; 0.000000, 0.826434, 0.000000;;, - 136;3; 0.000000, 0.826434, 0.000000;;, - 137;3; 0.000000, 0.826434, 0.000000;;, - 138;3; 0.000000, 0.826434, 0.000000;;, - 139;3; 0.000000, 0.826434, 0.000000;;, - 140;3; 0.000000, 0.826434, 0.000000;;, - 141;3; 0.000000, 0.826434, 0.000000;;, - 142;3; 0.000000, 0.826434, 0.000000;;, - 143;3; 0.000000, 0.826434, 0.000000;;, - 144;3; 0.000000, 0.826434, 0.000000;;, - 145;3; 0.000000, 0.826434, 0.000000;;, - 146;3; 0.000000, 0.826434, 0.000000;;, - 147;3; 0.000000, 0.826434, 0.000000;;, - 148;3; 0.000000, 0.826434, 0.000000;;, - 149;3; 0.000000, 0.826434, 0.000000;;, - 150;3; 0.000000, 0.826434, 0.000000;;, - 151;3; 0.000000, 0.826434, 0.000000;;, - 152;3; 0.000000, 0.826434, 0.000000;;, - 153;3; 0.000000, 0.826434, 0.000000;;, - 154;3; 0.000000, 0.826434, 0.000000;;, - 155;3; 0.000000, 0.826434, 0.000000;;, - 156;3; 0.000000, 0.826434, 0.000000;;, - 157;3; 0.000000, 0.826434, 0.000000;;, - 158;3; 0.000000, 0.826434, 0.000000;;, - 159;3; 0.000000, 0.826434, 0.000000;;, - 160;3; 0.000000, 0.826434, 0.000000;;, - 161;3; 0.000000, 0.826434, 0.000000;;, - 162;3; 0.000000, 0.826434, 0.000000;;, - 163;3; 0.000000, 0.826434, 0.000000;;, - 164;3; 0.000000, 0.826434, 0.000000;;, - 165;3; 0.000000, 0.826434, 0.000000;;, - 166;3; 0.000000, 0.826434, 0.000000;;, - 167;3; 0.000000, 0.826434, 0.000000;;, - 168;3; 0.000000, 0.826434, 0.000000;;, - 169;3; 0.000000, 0.826434, 0.000000;;, - 170;3; 0.000000, 0.826434, 0.000000;;, - 171;3; 0.000000, 0.826434, 0.000000;;, - 172;3; 0.000000, 0.826434, 0.000000;;, - 173;3; 0.000000, 0.826434, 0.000000;;, - 174;3; 0.000000, 0.826434, 0.000000;;, - 175;3; 0.000000, 0.826434, 0.000000;;, - 176;3; 0.000000, 0.826434, 0.000000;;, - 177;3; 0.000000, 0.826434, 0.000000;;, - 178;3; 0.000000, 0.826434, 0.000000;;, - 179;3; 0.000000, 0.826434, 0.000000;;, - 180;3; 0.000000, 0.826434, 0.000000;;, - 181;3; 0.000000, 0.826434, 0.000000;;, - 182;3; 0.000000, 0.826434, 0.000000;;, - 183;3; 0.000000, 0.826434, 0.000000;;, - 184;3; 0.000000, 0.826434, 0.000000;;, - 185;3; 0.000000, 0.826434, 0.000000;;, - 186;3;-0.000000, 0.826434,-0.000000;;, - 187;3;-0.000000, 0.826434,-0.000000;;, - 188;3;-0.000000, 0.826434, 0.000000;;, - 189;3;-0.000000, 0.826434, 0.000000;;, - 190;3;-0.000000, 0.826434,-0.000000;;, - 191;3; 0.000000, 0.826434, 0.000000;;, - 192;3; 0.000000, 0.826434, 0.000000;;, - 193;3; 0.000000, 0.826434, 0.000000;;, - 194;3; 0.000000, 0.826434,-0.000000;;, - 195;3; 0.000000, 0.826434,-0.000000;;, - 196;3; 0.000000, 0.826434, 0.000000;;, - 197;3; 0.000000, 0.826434,-0.000000;;, - 198;3; 0.000000, 0.826434,-0.000000;;, - 199;3; 0.000000, 0.826434, 0.000000;;, - 200;3; 0.000000, 0.826434, 0.000000;;, - 201;3; 0.000000, 0.826434, 0.000000;;, - 202;3; 0.000000, 0.826434, 0.000000;;, - 203;3; 0.000000, 0.826434, 0.000000;;, - 204;3; 0.000000, 0.826434, 0.000000;;, - 205;3; 0.000000, 0.826434, 0.000000;;, - 206;3; 0.000000, 0.826434, 0.000000;;, - 207;3; 0.000000, 0.826434, 0.000000;;, - 208;3; 0.000000, 0.826434, 0.000000;;, - 209;3; 0.000000, 0.826434, 0.000000;;, - 210;3; 0.000000, 0.826434, 0.000000;;, - 211;3; 0.000000, 0.826434, 0.000000;;, - 212;3; 0.000000, 0.826434, 0.000000;;, - 213;3; 0.000000, 0.826434, 0.000000;;, - 214;3; 0.000000, 0.826434, 0.000000;;, - 215;3; 0.000000, 0.826434, 0.000000;;, - 216;3; 0.000000, 0.826434, 0.000000;;, - 217;3; 0.000000, 0.826434, 0.000000;;, - 218;3; 0.000000, 0.826434, 0.000000;;, - 219;3; 0.000000, 0.826434, 0.000000;;, - 220;3; 0.000000, 0.826434, 0.000000;;, - 221;3; 0.000000, 0.826434, 0.000000;;, - 222;3; 0.000000, 0.826434, 0.000000;;, - 223;3; 0.000000, 0.826434, 0.000000;;, - 224;3; 0.000000, 0.826434, 0.000000;;, - 225;3; 0.000000, 0.826434, 0.000000;;, - 226;3; 0.000000, 0.826434, 0.000000;;, - 227;3; 0.000000, 0.826434, 0.000000;;, - 228;3; 0.000000, 0.826434, 0.000000;;, - 229;3; 0.000000, 0.826434, 0.000000;;, - 230;3; 0.000000, 0.826434, 0.000000;;, - 231;3; 0.000000, 0.826434, 0.000000;;, - 232;3; 0.000000, 0.826434, 0.000000;;, - 233;3; 0.000000, 0.826434, 0.000000;;, - 234;3; 0.000000, 0.826434, 0.000000;;, - 235;3; 0.000000, 0.826434, 0.000000;;, - 236;3; 0.000000, 0.826434, 0.000000;;, - 237;3; 0.000000, 0.826434, 0.000000;;, - 238;3; 0.000000, 0.826434, 0.000000;;, - 239;3; 0.000000, 0.826434, 0.000000;;, - 240;3; 0.000000, 0.826434, 0.000000;;, - 241;3; 0.000000, 0.826434, 0.000000;;, - 242;3; 0.000000, 0.826434, 0.000000;;, - 243;3; 0.000000, 0.826434, 0.000000;;, - 244;3; 0.000000, 0.826434, 0.000000;;, - 245;3; 0.000000, 0.826434, 0.000000;;, - 246;3; 0.000000, 0.826434, 0.000000;;, - 247;3; 0.000000, 0.826434, 0.000000;;, - 248;3; 0.000000, 0.826434, 0.000000;;, - 249;3; 0.000000, 0.826434, 0.000000;;; - } - } - Animation { - {Armature_Bone_031} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 1;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 2;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 3;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 4;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 5;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 6;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 7;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 8;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 9;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 10;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 11;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 12;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 13;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 14;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 15;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 16;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 17;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 18;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 19;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 20;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 21;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 22;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 23;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 24;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 25;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 26;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 27;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 28;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 29;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 30;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 31;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 32;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 33;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 34;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 35;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 36;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 37;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 38;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 39;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 40;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 41;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 42;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 43;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 44;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 45;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 46;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 47;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 48;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 49;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 50;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 51;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 52;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 53;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 54;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 55;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 56;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 57;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 58;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 59;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 60;4;-0.968689, 0.113446,-0.025742,-0.219325;;, - 61;4;-0.968710, 0.113171,-0.025846,-0.219310;;, - 62;4;-0.968747, 0.112711,-0.026021,-0.219286;;, - 63;4;-0.968798, 0.112066,-0.026266,-0.219251;;, - 64;4;-0.968865, 0.111234,-0.026582,-0.219207;;, - 65;4;-0.968946, 0.110217,-0.026969,-0.219153;;, - 66;4;-0.969041, 0.109018,-0.027425,-0.219090;;, - 67;4;-0.969151, 0.107638,-0.027949,-0.219017;;, - 68;4;-0.969275, 0.106084,-0.028540,-0.218934;;, - 69;4;-0.969412, 0.104361,-0.029195,-0.218843;;, - 70;4;-0.969562, 0.102476,-0.029911,-0.218743;;, - 71;4;-0.969724, 0.100440,-0.030685,-0.218635;;, - 72;4;-0.969897, 0.098263,-0.031512,-0.218519;;, - 73;4;-0.970081, 0.095959,-0.032388,-0.218397;;, - 74;4;-0.970273, 0.093541,-0.033307,-0.218268;;, - 75;4;-0.970474, 0.091025,-0.034263,-0.218135;;, - 76;4;-0.970680, 0.088430,-0.035250,-0.217997;;, - 77;4;-0.970892, 0.085774,-0.036259,-0.217856;;, - 78;4;-0.971107, 0.083077,-0.037284,-0.217713;;, - 79;4;-0.971323, 0.080360,-0.038317,-0.217569;;, - 80;4;-0.971539, 0.077642,-0.039350,-0.217425;;, - 81;4;-0.971754, 0.074945,-0.040376,-0.217282;;, - 82;4;-0.971966, 0.072289,-0.041385,-0.217141;;, - 83;4;-0.972172, 0.069694,-0.042371,-0.217003;;, - 84;4;-0.972373, 0.067179,-0.043327,-0.216870;;, - 85;4;-0.972565, 0.064761,-0.044246,-0.216741;;, - 86;4;-0.972748, 0.062456,-0.045122,-0.216619;;, - 87;4;-0.972922, 0.060279,-0.045950,-0.216504;;, - 88;4;-0.973084, 0.058243,-0.046724,-0.216396;;, - 89;4;-0.973234, 0.056358,-0.047440,-0.216296;;, - 90;4;-0.973371, 0.054635,-0.048095,-0.216204;;, - 91;4;-0.973495, 0.053081,-0.048686,-0.216122;;, - 92;4;-0.973605, 0.051701,-0.049210,-0.216049;;, - 93;4;-0.973700, 0.050502,-0.049666,-0.215985;;, - 94;4;-0.973781, 0.049485,-0.050053,-0.215931;;, - 95;4;-0.973848, 0.048654,-0.050369,-0.215887;;, - 96;4;-0.973899, 0.048008,-0.050614,-0.215853;;, - 97;4;-0.973936, 0.047548,-0.050789,-0.215828;;, - 98;4;-0.973957, 0.047274,-0.050893,-0.215814;;, - 99;4;-0.973965, 0.047183,-0.050928,-0.215809;;, - 100;4;-0.973713, 0.048686,-0.050347,-0.215860;;, - 101;4;-0.972929, 0.053356,-0.048543,-0.216018;;, - 102;4;-0.971599, 0.061289,-0.045479,-0.216286;;, - 103;4;-0.969755, 0.072283,-0.041231,-0.216658;;, - 104;4;-0.967498, 0.085743,-0.036032,-0.217114;;, - 105;4;-0.964987, 0.100717,-0.030247,-0.217621;;, - 106;4;-0.962407, 0.116102,-0.024304,-0.218141;;, - 107;4;-0.959925, 0.130904,-0.018586,-0.218642;;, - 108;4;-0.957659, 0.144416,-0.013367,-0.219100;;, - 109;4;-0.955677, 0.156235,-0.008801,-0.219500;;, - 110;4;-0.953850, 0.167357,-0.004285,-0.219889;;, - 111;4;-0.952025, 0.178878, 0.000792,-0.220314;;, - 112;4;-0.950203, 0.190704, 0.006297,-0.220768;;, - 113;4;-0.948381, 0.202668, 0.011995,-0.221234;;, - 114;4;-0.946559, 0.214535, 0.017557,-0.221692;;, - 115;4;-0.944735, 0.226044, 0.022617,-0.222117;;, - 116;4;-0.942906, 0.236970, 0.026859,-0.222488;;, - 117;4;-0.941072, 0.247173, 0.030086,-0.222792;;, - 118;4;-0.939233, 0.256605, 0.032231,-0.223026;;, - 119;4;-0.937389, 0.265288, 0.033326,-0.223190;;, - 120;4;-0.935346, 0.273755, 0.033008,-0.222765;;, - 121;4;-0.932935, 0.282392, 0.030802,-0.221215;;, - 122;4;-0.930228, 0.290970, 0.026717,-0.218609;;, - 123;4;-0.927360, 0.299167, 0.020963,-0.215153;;, - 124;4;-0.924527, 0.306602, 0.013995,-0.211207;;, - 125;4;-0.921951, 0.312914, 0.006471,-0.207243;;, - 126;4;-0.919827, 0.317856,-0.000898,-0.203733;;, - 127;4;-0.918283, 0.321342,-0.007510,-0.201044;;, - 128;4;-0.917369, 0.323425,-0.012968,-0.199388;;, - 129;4;-0.917073, 0.324245,-0.017079,-0.198837;;, - 130;4;-0.918327, 0.318313,-0.020774,-0.199111;;, - 131;4;-0.922102, 0.299967,-0.024984,-0.199953;;, - 132;4;-0.928243, 0.269978,-0.029587,-0.201361;;, - 133;4;-0.936279, 0.230663,-0.034362,-0.203270;;, - 134;4;-0.945392, 0.186071,-0.039003,-0.205545;;, - 135;4;-0.954516, 0.141446,-0.043170,-0.207989;;, - 136;4;-0.962588, 0.102033,-0.046570,-0.210387;;, - 137;4;-0.968783, 0.071889,-0.049021,-0.212559;;, - 138;4;-0.972629, 0.053345,-0.050464,-0.214386;;, - 139;4;-0.973965, 0.047183,-0.050928,-0.215809;;, - 140;4;-0.972992, 0.053356,-0.048543,-0.216888;;, - 141;4;-0.969829, 0.072283,-0.041231,-0.217689;;, - 142;4;-0.965034, 0.100717,-0.030247,-0.218283;;, - 143;4;-0.959939, 0.130904,-0.018586,-0.218838;;, - 144;4;-0.955677, 0.156235,-0.008801,-0.219500;;, - 145;4;-0.952025, 0.178878, 0.000792,-0.220314;;, - 146;4;-0.948381, 0.202668, 0.011995,-0.221234;;, - 147;4;-0.944735, 0.226044, 0.022617,-0.222117;;, - 148;4;-0.941072, 0.247173, 0.030086,-0.222792;;, - 149;4;-0.937389, 0.265288, 0.033326,-0.223190;;, - 150;4;-0.932935, 0.282392, 0.030802,-0.221215;;, - 151;4;-0.927360, 0.299167, 0.020963,-0.215153;;, - 152;4;-0.921951, 0.312914, 0.006471,-0.207243;;, - 153;4;-0.918283, 0.321342,-0.007510,-0.201044;;, - 154;4;-0.917073, 0.324245,-0.017079,-0.198837;;, - 155;4;-0.922126, 0.299967,-0.024984,-0.200281;;, - 156;4;-0.936359, 0.230663,-0.034362,-0.204376;;, - 157;4;-0.954639, 0.141446,-0.043170,-0.209711;;, - 158;4;-0.968887, 0.071889,-0.049021,-0.214013;;, - 159;4;-0.973965, 0.047183,-0.050928,-0.215809;;, - 160;4;-0.973992, 0.047556,-0.050899,-0.216199;;, - 161;4;-0.974015, 0.048685,-0.050806,-0.216569;;, - 162;4;-0.974030, 0.050571,-0.050634,-0.216915;;, - 163;4;-0.974033, 0.053201,-0.050370,-0.217238;;, - 164;4;-0.974017, 0.056541,-0.049997,-0.217533;;, - 165;4;-0.973979, 0.060533,-0.049499,-0.217802;;, - 166;4;-0.973912, 0.065091,-0.048859,-0.218042;;, - 167;4;-0.973808, 0.070101,-0.048063,-0.218253;;, - 168;4;-0.973664, 0.075426,-0.047098,-0.218437;;, - 169;4;-0.973472, 0.080906,-0.045955,-0.218594;;, - 170;4;-0.973229, 0.086373,-0.044631,-0.218726;;, - 171;4;-0.972932, 0.091659,-0.043124,-0.218837;;, - 172;4;-0.972579, 0.096606,-0.041440,-0.218930;;, - 173;4;-0.972170, 0.101077,-0.039588,-0.219007;;, - 174;4;-0.971707, 0.104961,-0.037580,-0.219073;;, - 175;4;-0.971192, 0.108174,-0.035430,-0.219130;;, - 176;4;-0.970628, 0.110660,-0.033153,-0.219182;;, - 177;4;-0.970019, 0.112387,-0.030764,-0.219232;;, - 178;4;-0.969369, 0.113345,-0.028278,-0.219280;;, - 179;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 180;4;-0.964552, 0.104241,-0.012007,-0.211874;;, - 181;4;-0.953551, 0.076644, 0.023948,-0.189333;;, - 182;4;-0.936127, 0.031895, 0.080694,-0.152650;;, - 183;4;-0.913594,-0.026567, 0.153964,-0.104652;;, - 184;4;-0.888228,-0.092752, 0.236381,-0.050266;;, - 185;4;-0.862959,-0.158912, 0.318435, 0.004126;;, - 186;4;-0.840710,-0.217298, 0.390655, 0.052145;;, - 187;4;-0.823731,-0.261930, 0.445758, 0.088860;;, - 188;4;-0.813301,-0.289376, 0.479598, 0.111441;;, - 189;4;-0.809839,-0.298495, 0.490830, 0.118945;;, - 190;4;-0.824998,-0.291801, 0.463471, 0.113940;;, - 191;4;-0.867871,-0.270041, 0.382764, 0.097389;;, - 192;4;-0.923392,-0.234296, 0.269351, 0.069548;;, - 193;4;-0.967550,-0.191264, 0.161977, 0.035039;;, - 194;4;-0.984895,-0.148379, 0.089247,-0.000521;;, - 195;4;-0.985239,-0.095557, 0.041995,-0.044910;;, - 196;4;-0.981508,-0.024533, 0.006385,-0.104293;;, - 197;4;-0.975540, 0.047153,-0.014883,-0.164070;;, - 198;4;-0.970524, 0.096906,-0.023826,-0.205494;;, - 199;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 200;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 201;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 202;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 203;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 204;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 205;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 206;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 207;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 208;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 209;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 210;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 211;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 212;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 213;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 214;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 215;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 216;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 217;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 218;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 219;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 220;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 221;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 222;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 223;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 224;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 225;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 226;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 227;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 228;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 229;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 230;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 231;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 232;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 233;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 234;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 235;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 236;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 237;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 238;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 239;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 240;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 241;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 242;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 243;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 244;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 245;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 246;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 247;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 248;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 249;4;-0.968681, 0.113537,-0.025707,-0.219330;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3; 0.000000, 0.586459, 0.000000;;, - 1;3; 0.000000, 0.586459, 0.000000;;, - 2;3; 0.000000, 0.586459, 0.000000;;, - 3;3; 0.000000, 0.586459, 0.000000;;, - 4;3; 0.000000, 0.586459, 0.000000;;, - 5;3; 0.000000, 0.586459, 0.000000;;, - 6;3; 0.000000, 0.586459, 0.000000;;, - 7;3; 0.000000, 0.586459, 0.000000;;, - 8;3; 0.000000, 0.586459, 0.000000;;, - 9;3; 0.000000, 0.586459, 0.000000;;, - 10;3; 0.000000, 0.586459, 0.000000;;, - 11;3; 0.000000, 0.586459, 0.000000;;, - 12;3; 0.000000, 0.586459, 0.000000;;, - 13;3; 0.000000, 0.586459, 0.000000;;, - 14;3; 0.000000, 0.586459, 0.000000;;, - 15;3; 0.000000, 0.586459, 0.000000;;, - 16;3; 0.000000, 0.586459, 0.000000;;, - 17;3; 0.000000, 0.586459, 0.000000;;, - 18;3; 0.000000, 0.586459, 0.000000;;, - 19;3; 0.000000, 0.586459, 0.000000;;, - 20;3; 0.000000, 0.586459, 0.000000;;, - 21;3; 0.000000, 0.586459, 0.000000;;, - 22;3; 0.000000, 0.586459, 0.000000;;, - 23;3; 0.000000, 0.586459, 0.000000;;, - 24;3; 0.000000, 0.586459, 0.000000;;, - 25;3; 0.000000, 0.586459, 0.000000;;, - 26;3; 0.000000, 0.586459, 0.000000;;, - 27;3; 0.000000, 0.586459, 0.000000;;, - 28;3; 0.000000, 0.586459, 0.000000;;, - 29;3; 0.000000, 0.586459, 0.000000;;, - 30;3; 0.000000, 0.586459, 0.000000;;, - 31;3; 0.000000, 0.586459, 0.000000;;, - 32;3; 0.000000, 0.586459, 0.000000;;, - 33;3; 0.000000, 0.586459, 0.000000;;, - 34;3; 0.000000, 0.586459, 0.000000;;, - 35;3; 0.000000, 0.586459, 0.000000;;, - 36;3; 0.000000, 0.586459, 0.000000;;, - 37;3; 0.000000, 0.586459, 0.000000;;, - 38;3; 0.000000, 0.586459, 0.000000;;, - 39;3; 0.000000, 0.586459, 0.000000;;, - 40;3; 0.000000, 0.586459, 0.000000;;, - 41;3; 0.000000, 0.586459, 0.000000;;, - 42;3; 0.000000, 0.586459, 0.000000;;, - 43;3; 0.000000, 0.586459, 0.000000;;, - 44;3; 0.000000, 0.586459, 0.000000;;, - 45;3; 0.000000, 0.586459, 0.000000;;, - 46;3; 0.000000, 0.586459, 0.000000;;, - 47;3; 0.000000, 0.586459, 0.000000;;, - 48;3; 0.000000, 0.586459, 0.000000;;, - 49;3; 0.000000, 0.586459, 0.000000;;, - 50;3; 0.000000, 0.586459, 0.000000;;, - 51;3; 0.000000, 0.586459, 0.000000;;, - 52;3; 0.000000, 0.586459, 0.000000;;, - 53;3; 0.000000, 0.586459, 0.000000;;, - 54;3; 0.000000, 0.586459, 0.000000;;, - 55;3; 0.000000, 0.586459, 0.000000;;, - 56;3; 0.000000, 0.586459, 0.000000;;, - 57;3; 0.000000, 0.586459, 0.000000;;, - 58;3; 0.000000, 0.586459, 0.000000;;, - 59;3; 0.000000, 0.586459, 0.000000;;, - 60;3; 0.000000, 0.586459, 0.000000;;, - 61;3; 0.000000, 0.586459, 0.000000;;, - 62;3; 0.000000, 0.586459, 0.000000;;, - 63;3; 0.000000, 0.586459, 0.000000;;, - 64;3; 0.000000, 0.586459, 0.000000;;, - 65;3; 0.000000, 0.586459, 0.000000;;, - 66;3; 0.000000, 0.586459, 0.000000;;, - 67;3; 0.000000, 0.586459, 0.000000;;, - 68;3; 0.000000, 0.586459, 0.000000;;, - 69;3; 0.000000, 0.586459, 0.000000;;, - 70;3; 0.000000, 0.586459, 0.000000;;, - 71;3; 0.000000, 0.586459, 0.000000;;, - 72;3; 0.000000, 0.586459, 0.000000;;, - 73;3; 0.000000, 0.586459, 0.000000;;, - 74;3; 0.000000, 0.586459, 0.000000;;, - 75;3; 0.000000, 0.586459, 0.000000;;, - 76;3; 0.000000, 0.586459, 0.000000;;, - 77;3; 0.000000, 0.586459, 0.000000;;, - 78;3; 0.000000, 0.586459, 0.000000;;, - 79;3; 0.000000, 0.586459, 0.000000;;, - 80;3; 0.000000, 0.586459, 0.000000;;, - 81;3; 0.000000, 0.586459, 0.000000;;, - 82;3; 0.000000, 0.586459, 0.000000;;, - 83;3; 0.000000, 0.586459, 0.000000;;, - 84;3; 0.000000, 0.586459, 0.000000;;, - 85;3; 0.000000, 0.586459, 0.000000;;, - 86;3; 0.000000, 0.586459, 0.000000;;, - 87;3; 0.000000, 0.586459, 0.000000;;, - 88;3; 0.000000, 0.586459, 0.000000;;, - 89;3; 0.000000, 0.586459, 0.000000;;, - 90;3; 0.000000, 0.586459, 0.000000;;, - 91;3; 0.000000, 0.586459, 0.000000;;, - 92;3; 0.000000, 0.586459, 0.000000;;, - 93;3; 0.000000, 0.586459, 0.000000;;, - 94;3; 0.000000, 0.586459, 0.000000;;, - 95;3; 0.000000, 0.586459, 0.000000;;, - 96;3; 0.000000, 0.586459, 0.000000;;, - 97;3; 0.000000, 0.586459, 0.000000;;, - 98;3; 0.000000, 0.586459, 0.000000;;, - 99;3; 0.000000, 0.586459, 0.000000;;, - 100;3; 0.000000, 0.586459, 0.000000;;, - 101;3; 0.000000, 0.586459, 0.000000;;, - 102;3; 0.000000, 0.586459, 0.000000;;, - 103;3; 0.000000, 0.586459, 0.000000;;, - 104;3; 0.000000, 0.586459, 0.000000;;, - 105;3; 0.000000, 0.586459, 0.000000;;, - 106;3; 0.000000, 0.586459, 0.000000;;, - 107;3; 0.000000, 0.586459, 0.000000;;, - 108;3; 0.000000, 0.586459, 0.000000;;, - 109;3; 0.000000, 0.586459, 0.000000;;, - 110;3; 0.000000, 0.586459, 0.000000;;, - 111;3; 0.000000, 0.586459, 0.000000;;, - 112;3; 0.000000, 0.586459, 0.000000;;, - 113;3; 0.000000, 0.586459, 0.000000;;, - 114;3; 0.000000, 0.586459, 0.000000;;, - 115;3; 0.000000, 0.586459, 0.000000;;, - 116;3; 0.000000, 0.586459, 0.000000;;, - 117;3; 0.000000, 0.586459, 0.000000;;, - 118;3; 0.000000, 0.586459, 0.000000;;, - 119;3; 0.000000, 0.586459, 0.000000;;, - 120;3; 0.000000, 0.586459, 0.000000;;, - 121;3; 0.000000, 0.586459, 0.000000;;, - 122;3; 0.000000, 0.586459, 0.000000;;, - 123;3; 0.000000, 0.586459, 0.000000;;, - 124;3; 0.000000, 0.586459, 0.000000;;, - 125;3; 0.000000, 0.586459, 0.000000;;, - 126;3; 0.000000, 0.586459, 0.000000;;, - 127;3; 0.000000, 0.586459, 0.000000;;, - 128;3; 0.000000, 0.586459, 0.000000;;, - 129;3; 0.000000, 0.586459, 0.000000;;, - 130;3; 0.000000, 0.586459, 0.000000;;, - 131;3; 0.000000, 0.586459, 0.000000;;, - 132;3; 0.000000, 0.586459, 0.000000;;, - 133;3; 0.000000, 0.586459, 0.000000;;, - 134;3; 0.000000, 0.586459, 0.000000;;, - 135;3; 0.000000, 0.586459, 0.000000;;, - 136;3; 0.000000, 0.586459, 0.000000;;, - 137;3; 0.000000, 0.586459, 0.000000;;, - 138;3; 0.000000, 0.586459, 0.000000;;, - 139;3; 0.000000, 0.586459, 0.000000;;, - 140;3; 0.000000, 0.586459, 0.000000;;, - 141;3; 0.000000, 0.586459, 0.000000;;, - 142;3; 0.000000, 0.586459, 0.000000;;, - 143;3; 0.000000, 0.586459, 0.000000;;, - 144;3; 0.000000, 0.586459, 0.000000;;, - 145;3; 0.000000, 0.586459, 0.000000;;, - 146;3; 0.000000, 0.586459, 0.000000;;, - 147;3; 0.000000, 0.586459, 0.000000;;, - 148;3; 0.000000, 0.586459, 0.000000;;, - 149;3; 0.000000, 0.586459, 0.000000;;, - 150;3; 0.000000, 0.586459, 0.000000;;, - 151;3; 0.000000, 0.586459, 0.000000;;, - 152;3; 0.000000, 0.586459, 0.000000;;, - 153;3; 0.000000, 0.586459, 0.000000;;, - 154;3; 0.000000, 0.586459, 0.000000;;, - 155;3; 0.000000, 0.586459, 0.000000;;, - 156;3; 0.000000, 0.586459, 0.000000;;, - 157;3; 0.000000, 0.586459, 0.000000;;, - 158;3; 0.000000, 0.586459, 0.000000;;, - 159;3; 0.000000, 0.586459, 0.000000;;, - 160;3; 0.000000, 0.586459, 0.000000;;, - 161;3; 0.000000, 0.586459, 0.000000;;, - 162;3; 0.000000, 0.586459, 0.000000;;, - 163;3; 0.000000, 0.586459, 0.000000;;, - 164;3; 0.000000, 0.586459, 0.000000;;, - 165;3; 0.000000, 0.586459, 0.000000;;, - 166;3; 0.000000, 0.586459, 0.000000;;, - 167;3; 0.000000, 0.586459, 0.000000;;, - 168;3; 0.000000, 0.586459, 0.000000;;, - 169;3; 0.000000, 0.586459, 0.000000;;, - 170;3; 0.000000, 0.586459, 0.000000;;, - 171;3; 0.000000, 0.586459, 0.000000;;, - 172;3; 0.000000, 0.586459, 0.000000;;, - 173;3; 0.000000, 0.586459, 0.000000;;, - 174;3; 0.000000, 0.586459, 0.000000;;, - 175;3; 0.000000, 0.586459, 0.000000;;, - 176;3; 0.000000, 0.586459, 0.000000;;, - 177;3; 0.000000, 0.586459, 0.000000;;, - 178;3; 0.000000, 0.586459, 0.000000;;, - 179;3; 0.000000, 0.586459, 0.000000;;, - 180;3;-0.000000, 0.586460, 0.000000;;, - 181;3; 0.000000, 0.586459, 0.000000;;, - 182;3; 0.000000, 0.586460, 0.000000;;, - 183;3;-0.000000, 0.586459,-0.000000;;, - 184;3;-0.000000, 0.586459, 0.000000;;, - 185;3; 0.000000, 0.586460,-0.000000;;, - 186;3;-0.000000, 0.586460,-0.000000;;, - 187;3;-0.000000, 0.586460, 0.000000;;, - 188;3; 0.000000, 0.586460, 0.000000;;, - 189;3;-0.000000, 0.586459, 0.000000;;, - 190;3; 0.000000, 0.586460, 0.000000;;, - 191;3; 0.000000, 0.586460,-0.000000;;, - 192;3;-0.000000, 0.586460,-0.000000;;, - 193;3; 0.000000, 0.586460,-0.000000;;, - 194;3; 0.000000, 0.586460,-0.000000;;, - 195;3;-0.000000, 0.586459,-0.000000;;, - 196;3;-0.000000, 0.586459,-0.000000;;, - 197;3; 0.000000, 0.586460, 0.000000;;, - 198;3;-0.000000, 0.586459, 0.000000;;, - 199;3; 0.000000, 0.586459, 0.000000;;, - 200;3; 0.000000, 0.586459, 0.000000;;, - 201;3; 0.000000, 0.586459, 0.000000;;, - 202;3; 0.000000, 0.586459, 0.000000;;, - 203;3; 0.000000, 0.586459, 0.000000;;, - 204;3; 0.000000, 0.586459, 0.000000;;, - 205;3; 0.000000, 0.586459, 0.000000;;, - 206;3; 0.000000, 0.586459, 0.000000;;, - 207;3; 0.000000, 0.586459, 0.000000;;, - 208;3; 0.000000, 0.586459, 0.000000;;, - 209;3; 0.000000, 0.586459, 0.000000;;, - 210;3; 0.000000, 0.586459, 0.000000;;, - 211;3; 0.000000, 0.586459, 0.000000;;, - 212;3; 0.000000, 0.586459, 0.000000;;, - 213;3; 0.000000, 0.586459, 0.000000;;, - 214;3; 0.000000, 0.586459, 0.000000;;, - 215;3; 0.000000, 0.586459, 0.000000;;, - 216;3; 0.000000, 0.586459, 0.000000;;, - 217;3; 0.000000, 0.586459, 0.000000;;, - 218;3; 0.000000, 0.586459, 0.000000;;, - 219;3; 0.000000, 0.586459, 0.000000;;, - 220;3; 0.000000, 0.586459, 0.000000;;, - 221;3; 0.000000, 0.586459, 0.000000;;, - 222;3; 0.000000, 0.586459, 0.000000;;, - 223;3; 0.000000, 0.586459, 0.000000;;, - 224;3; 0.000000, 0.586459, 0.000000;;, - 225;3; 0.000000, 0.586459, 0.000000;;, - 226;3; 0.000000, 0.586459, 0.000000;;, - 227;3; 0.000000, 0.586459, 0.000000;;, - 228;3; 0.000000, 0.586459, 0.000000;;, - 229;3; 0.000000, 0.586459, 0.000000;;, - 230;3; 0.000000, 0.586459, 0.000000;;, - 231;3; 0.000000, 0.586459, 0.000000;;, - 232;3; 0.000000, 0.586459, 0.000000;;, - 233;3; 0.000000, 0.586459, 0.000000;;, - 234;3; 0.000000, 0.586459, 0.000000;;, - 235;3; 0.000000, 0.586459, 0.000000;;, - 236;3; 0.000000, 0.586459, 0.000000;;, - 237;3; 0.000000, 0.586459, 0.000000;;, - 238;3; 0.000000, 0.586459, 0.000000;;, - 239;3; 0.000000, 0.586459, 0.000000;;, - 240;3; 0.000000, 0.586459, 0.000000;;, - 241;3; 0.000000, 0.586459, 0.000000;;, - 242;3; 0.000000, 0.586459, 0.000000;;, - 243;3; 0.000000, 0.586459, 0.000000;;, - 244;3; 0.000000, 0.586459, 0.000000;;, - 245;3; 0.000000, 0.586459, 0.000000;;, - 246;3; 0.000000, 0.586459, 0.000000;;, - 247;3; 0.000000, 0.586459, 0.000000;;, - 248;3; 0.000000, 0.586459, 0.000000;;, - 249;3; 0.000000, 0.586459, 0.000000;;; - } - } - Animation { - {Armature_Bone_035} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 1;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 2;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 3;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 4;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 5;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 6;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 7;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 8;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 9;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 10;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 11;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 12;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 13;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 14;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 15;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 16;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 17;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 18;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 19;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 20;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 21;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 22;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 23;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 24;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 25;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 26;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 27;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 28;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 29;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 30;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 31;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 32;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 33;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 34;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 35;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 36;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 37;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 38;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 39;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 40;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 41;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 42;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 43;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 44;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 45;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 46;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 47;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 48;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 49;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 50;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 51;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 52;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 53;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 54;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 55;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 56;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 57;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 58;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 59;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 60;4;-0.976348,-0.216142, 0.000107,-0.000002;;, - 61;4;-0.976413,-0.215661, 0.000429,-0.000007;;, - 62;4;-0.976521,-0.214857, 0.000968,-0.000015;;, - 63;4;-0.976672,-0.213728, 0.001725,-0.000026;;, - 64;4;-0.976868,-0.212273, 0.002701,-0.000041;;, - 65;4;-0.977107,-0.210494, 0.003893,-0.000060;;, - 66;4;-0.977388,-0.208396, 0.005300,-0.000081;;, - 67;4;-0.977712,-0.205983, 0.006918,-0.000106;;, - 68;4;-0.978078,-0.203264, 0.008741,-0.000134;;, - 69;4;-0.978482,-0.200249, 0.010763,-0.000165;;, - 70;4;-0.978925,-0.196952, 0.012973,-0.000199;;, - 71;4;-0.979404,-0.193390, 0.015361,-0.000235;;, - 72;4;-0.979915,-0.189581, 0.017915,-0.000275;;, - 73;4;-0.980457,-0.185549, 0.020618,-0.000316;;, - 74;4;-0.981025,-0.181319, 0.023454,-0.000359;;, - 75;4;-0.981616,-0.176919, 0.026404,-0.000405;;, - 76;4;-0.982225,-0.172379, 0.029448,-0.000451;;, - 77;4;-0.982849,-0.167733, 0.032563,-0.000499;;, - 78;4;-0.983483,-0.163015, 0.035727,-0.000548;;, - 79;4;-0.984121,-0.158260, 0.038915,-0.000596;;, - 80;4;-0.984760,-0.153505, 0.042102,-0.000645;;, - 81;4;-0.985394,-0.148787, 0.045266,-0.000694;;, - 82;4;-0.986017,-0.144141, 0.048381,-0.000742;;, - 83;4;-0.986627,-0.139601, 0.051425,-0.000788;;, - 84;4;-0.987218,-0.135201, 0.054375,-0.000833;;, - 85;4;-0.987786,-0.130971, 0.057211,-0.000877;;, - 86;4;-0.988328,-0.126939, 0.059915,-0.000918;;, - 87;4;-0.988839,-0.123130, 0.062468,-0.000957;;, - 88;4;-0.989318,-0.119568, 0.064856,-0.000994;;, - 89;4;-0.989760,-0.116271, 0.067067,-0.001028;;, - 90;4;-0.990165,-0.113257, 0.069088,-0.001059;;, - 91;4;-0.990530,-0.110537, 0.070911,-0.001087;;, - 92;4;-0.990854,-0.108124, 0.072529,-0.001112;;, - 93;4;-0.991136,-0.106026, 0.073936,-0.001133;;, - 94;4;-0.991375,-0.104247, 0.075128,-0.001151;;, - 95;4;-0.991570,-0.102792, 0.076104,-0.001166;;, - 96;4;-0.991722,-0.101663, 0.076861,-0.001178;;, - 97;4;-0.991830,-0.100859, 0.077400,-0.001186;;, - 98;4;-0.991895,-0.100378, 0.077722,-0.001191;;, - 99;4;-0.991916,-0.100219, 0.077829,-0.001193;;, - 100;4;-0.991227,-0.102470, 0.076264,-0.001169;;, - 101;4;-0.989087,-0.109462, 0.071403,-0.001094;;, - 102;4;-0.985451,-0.121340, 0.063145,-0.000968;;, - 103;4;-0.980412,-0.137801, 0.051700,-0.000792;;, - 104;4;-0.974244,-0.157954, 0.037689,-0.000578;;, - 105;4;-0.967381,-0.180374, 0.022101,-0.000339;;, - 106;4;-0.960330,-0.203409, 0.006087,-0.000093;;, - 107;4;-0.953546,-0.225572,-0.009322, 0.000143;;, - 108;4;-0.947354,-0.245802,-0.023387, 0.000358;;, - 109;4;-0.941937,-0.263499,-0.035691, 0.000547;;, - 110;4;-0.936521,-0.281196,-0.047994, 0.000736;;, - 111;4;-0.930328,-0.301426,-0.062059, 0.000951;;, - 112;4;-0.923544,-0.323589,-0.077468, 0.001187;;, - 113;4;-0.916494,-0.346624,-0.093483, 0.001433;;, - 114;4;-0.909631,-0.369044,-0.109071, 0.001672;;, - 115;4;-0.903462,-0.389197,-0.123082, 0.001886;;, - 116;4;-0.898424,-0.405658,-0.134527, 0.002062;;, - 117;4;-0.894788,-0.417536,-0.142785, 0.002188;;, - 118;4;-0.892648,-0.424528,-0.147646, 0.002263;;, - 119;4;-0.891959,-0.426779,-0.149211, 0.002287;;, - 120;4;-0.892648,-0.424528,-0.147646, 0.002263;;, - 121;4;-0.894788,-0.417536,-0.142785, 0.002188;;, - 122;4;-0.898424,-0.405658,-0.134527, 0.002062;;, - 123;4;-0.903462,-0.389197,-0.123082, 0.001886;;, - 124;4;-0.909631,-0.369044,-0.109071, 0.001672;;, - 125;4;-0.916494,-0.346624,-0.093483, 0.001433;;, - 126;4;-0.923544,-0.323589,-0.077468, 0.001187;;, - 127;4;-0.930328,-0.301426,-0.062059, 0.000951;;, - 128;4;-0.936521,-0.281196,-0.047994, 0.000736;;, - 129;4;-0.941937,-0.263499,-0.035691, 0.000547;;, - 130;4;-0.947354,-0.245802,-0.023387, 0.000358;;, - 131;4;-0.953547,-0.225572,-0.009322, 0.000143;;, - 132;4;-0.960330,-0.203409, 0.006087,-0.000093;;, - 133;4;-0.967381,-0.180374, 0.022101,-0.000339;;, - 134;4;-0.974244,-0.157954, 0.037689,-0.000578;;, - 135;4;-0.980412,-0.137801, 0.051700,-0.000792;;, - 136;4;-0.985451,-0.121340, 0.063145,-0.000968;;, - 137;4;-0.989087,-0.109462, 0.071403,-0.001094;;, - 138;4;-0.991227,-0.102470, 0.076264,-0.001169;;, - 139;4;-0.991916,-0.100219, 0.077829,-0.001193;;, - 140;4;-0.989087,-0.109462, 0.071403,-0.001094;;, - 141;4;-0.980412,-0.137801, 0.051700,-0.000792;;, - 142;4;-0.967381,-0.180374, 0.022101,-0.000339;;, - 143;4;-0.953546,-0.225572,-0.009322, 0.000143;;, - 144;4;-0.941937,-0.263499,-0.035691, 0.000547;;, - 145;4;-0.930328,-0.301426,-0.062059, 0.000951;;, - 146;4;-0.916494,-0.346624,-0.093483, 0.001433;;, - 147;4;-0.903462,-0.389197,-0.123082, 0.001886;;, - 148;4;-0.894788,-0.417536,-0.142785, 0.002188;;, - 149;4;-0.891959,-0.426779,-0.149211, 0.002287;;, - 150;4;-0.894788,-0.417536,-0.142785, 0.002188;;, - 151;4;-0.903462,-0.389197,-0.123082, 0.001886;;, - 152;4;-0.916494,-0.346624,-0.093483, 0.001433;;, - 153;4;-0.930328,-0.301426,-0.062059, 0.000951;;, - 154;4;-0.941937,-0.263499,-0.035691, 0.000547;;, - 155;4;-0.953547,-0.225572,-0.009322, 0.000143;;, - 156;4;-0.967381,-0.180374, 0.022101,-0.000339;;, - 157;4;-0.980412,-0.137801, 0.051700,-0.000792;;, - 158;4;-0.989087,-0.109462, 0.071403,-0.001094;;, - 159;4;-0.991916,-0.100219, 0.077829,-0.001193;;, - 160;4;-0.991830,-0.100859, 0.077400,-0.001186;;, - 161;4;-0.991570,-0.102792, 0.076104,-0.001166;;, - 162;4;-0.991136,-0.106026, 0.073936,-0.001133;;, - 163;4;-0.990530,-0.110537, 0.070911,-0.001087;;, - 164;4;-0.989760,-0.116271, 0.067067,-0.001028;;, - 165;4;-0.988839,-0.123130, 0.062468,-0.000957;;, - 166;4;-0.987786,-0.130971, 0.057211,-0.000877;;, - 167;4;-0.986627,-0.139601, 0.051425,-0.000788;;, - 168;4;-0.985394,-0.148787, 0.045266,-0.000694;;, - 169;4;-0.984121,-0.158260, 0.038915,-0.000596;;, - 170;4;-0.982849,-0.167733, 0.032563,-0.000499;;, - 171;4;-0.981616,-0.176919, 0.026404,-0.000405;;, - 172;4;-0.980456,-0.185549, 0.020618,-0.000316;;, - 173;4;-0.979404,-0.193390, 0.015361,-0.000235;;, - 174;4;-0.978482,-0.200249, 0.010763,-0.000165;;, - 175;4;-0.977712,-0.205983, 0.006918,-0.000106;;, - 176;4;-0.977107,-0.210494, 0.003893,-0.000060;;, - 177;4;-0.976672,-0.213728, 0.001725,-0.000026;;, - 178;4;-0.976413,-0.215661, 0.000429,-0.000007;;, - 179;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 180;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 181;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 182;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 183;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 184;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 185;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 186;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 187;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 188;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 189;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 190;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 191;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 192;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 193;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 194;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 195;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 196;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 197;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 198;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 199;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 200;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 201;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 202;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 203;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 204;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 205;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 206;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 207;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 208;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 209;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 210;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 211;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 212;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 213;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 214;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 215;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 216;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 217;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 218;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 219;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 220;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 221;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 222;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 223;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 224;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 225;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 226;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 227;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 228;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 229;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 230;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 231;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 232;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 233;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 234;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 235;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 236;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 237;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 238;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 239;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 240;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 241;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 242;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 243;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 244;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 245;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 246;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 247;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 248;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 249;4;-0.976327,-0.216301,-0.000000,-0.000000;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3; 0.000000, 1.279916, 0.000000;;, - 1;3; 0.000000, 1.279916, 0.000000;;, - 2;3; 0.000000, 1.279916, 0.000000;;, - 3;3; 0.000000, 1.279916, 0.000000;;, - 4;3; 0.000000, 1.279916, 0.000000;;, - 5;3; 0.000000, 1.279916, 0.000000;;, - 6;3; 0.000000, 1.279916, 0.000000;;, - 7;3; 0.000000, 1.279916, 0.000000;;, - 8;3; 0.000000, 1.279916, 0.000000;;, - 9;3; 0.000000, 1.279916, 0.000000;;, - 10;3; 0.000000, 1.279916, 0.000000;;, - 11;3; 0.000000, 1.279916, 0.000000;;, - 12;3; 0.000000, 1.279916, 0.000000;;, - 13;3; 0.000000, 1.279916, 0.000000;;, - 14;3; 0.000000, 1.279916, 0.000000;;, - 15;3; 0.000000, 1.279916, 0.000000;;, - 16;3; 0.000000, 1.279916, 0.000000;;, - 17;3; 0.000000, 1.279916, 0.000000;;, - 18;3; 0.000000, 1.279916, 0.000000;;, - 19;3; 0.000000, 1.279916, 0.000000;;, - 20;3; 0.000000, 1.279916, 0.000000;;, - 21;3; 0.000000, 1.279916, 0.000000;;, - 22;3; 0.000000, 1.279916, 0.000000;;, - 23;3; 0.000000, 1.279916, 0.000000;;, - 24;3; 0.000000, 1.279916, 0.000000;;, - 25;3; 0.000000, 1.279916, 0.000000;;, - 26;3; 0.000000, 1.279916, 0.000000;;, - 27;3; 0.000000, 1.279916, 0.000000;;, - 28;3; 0.000000, 1.279916, 0.000000;;, - 29;3; 0.000000, 1.279916, 0.000000;;, - 30;3; 0.000000, 1.279916, 0.000000;;, - 31;3; 0.000000, 1.279916, 0.000000;;, - 32;3; 0.000000, 1.279916, 0.000000;;, - 33;3; 0.000000, 1.279916, 0.000000;;, - 34;3; 0.000000, 1.279916, 0.000000;;, - 35;3; 0.000000, 1.279916, 0.000000;;, - 36;3; 0.000000, 1.279916, 0.000000;;, - 37;3; 0.000000, 1.279916, 0.000000;;, - 38;3; 0.000000, 1.279916, 0.000000;;, - 39;3; 0.000000, 1.279916, 0.000000;;, - 40;3; 0.000000, 1.279916, 0.000000;;, - 41;3; 0.000000, 1.279916, 0.000000;;, - 42;3; 0.000000, 1.279916, 0.000000;;, - 43;3; 0.000000, 1.279916, 0.000000;;, - 44;3; 0.000000, 1.279916, 0.000000;;, - 45;3; 0.000000, 1.279916, 0.000000;;, - 46;3; 0.000000, 1.279916, 0.000000;;, - 47;3; 0.000000, 1.279916, 0.000000;;, - 48;3; 0.000000, 1.279916, 0.000000;;, - 49;3; 0.000000, 1.279916, 0.000000;;, - 50;3; 0.000000, 1.279916, 0.000000;;, - 51;3; 0.000000, 1.279916, 0.000000;;, - 52;3; 0.000000, 1.279916, 0.000000;;, - 53;3; 0.000000, 1.279916, 0.000000;;, - 54;3; 0.000000, 1.279916, 0.000000;;, - 55;3; 0.000000, 1.279916, 0.000000;;, - 56;3; 0.000000, 1.279916, 0.000000;;, - 57;3; 0.000000, 1.279916, 0.000000;;, - 58;3; 0.000000, 1.279916, 0.000000;;, - 59;3; 0.000000, 1.279916, 0.000000;;, - 60;3;-0.000000, 1.279916, 0.000000;;, - 61;3; 0.000000, 1.279916, 0.000000;;, - 62;3; 0.000000, 1.279915,-0.000000;;, - 63;3; 0.000000, 1.279916,-0.000000;;, - 64;3; 0.000000, 1.279916, 0.000000;;, - 65;3;-0.000000, 1.279916,-0.000000;;, - 66;3;-0.000000, 1.279916,-0.000000;;, - 67;3; 0.000000, 1.279916,-0.000000;;, - 68;3;-0.000000, 1.279916,-0.000000;;, - 69;3; 0.000000, 1.279916, 0.000000;;, - 70;3; 0.000000, 1.279916,-0.000000;;, - 71;3; 0.000000, 1.279916, 0.000000;;, - 72;3;-0.000000, 1.279916,-0.000000;;, - 73;3;-0.000000, 1.279916, 0.000000;;, - 74;3;-0.000000, 1.279915,-0.000000;;, - 75;3;-0.000000, 1.279915,-0.000000;;, - 76;3;-0.000000, 1.279916,-0.000000;;, - 77;3;-0.000000, 1.279915,-0.000000;;, - 78;3;-0.000000, 1.279915,-0.000000;;, - 79;3;-0.000000, 1.279915,-0.000000;;, - 80;3;-0.000000, 1.279916, 0.000000;;, - 81;3;-0.000000, 1.279916,-0.000000;;, - 82;3;-0.000000, 1.279916, 0.000000;;, - 83;3; 0.000000, 1.279916, 0.000000;;, - 84;3;-0.000000, 1.279916,-0.000000;;, - 85;3; 0.000000, 1.279915,-0.000000;;, - 86;3;-0.000000, 1.279915, 0.000000;;, - 87;3;-0.000000, 1.279916, 0.000000;;, - 88;3; 0.000000, 1.279916,-0.000000;;, - 89;3;-0.000000, 1.279916,-0.000000;;, - 90;3; 0.000000, 1.279915,-0.000000;;, - 91;3;-0.000000, 1.279916, 0.000000;;, - 92;3;-0.000000, 1.279915, 0.000000;;, - 93;3;-0.000000, 1.279916,-0.000000;;, - 94;3;-0.000000, 1.279915,-0.000000;;, - 95;3; 0.000000, 1.279915, 0.000000;;, - 96;3;-0.000000, 1.279916, 0.000000;;, - 97;3; 0.000000, 1.279916,-0.000000;;, - 98;3; 0.000000, 1.279916, 0.000000;;, - 99;3;-0.000000, 1.279916,-0.000000;;, - 100;3;-0.000000, 1.279915, 0.000000;;, - 101;3;-0.000000, 1.279916,-0.000000;;, - 102;3;-0.000000, 1.279916, 0.000000;;, - 103;3;-0.000000, 1.279916, 0.000000;;, - 104;3;-0.000000, 1.279916, 0.000000;;, - 105;3;-0.000000, 1.279916, 0.000000;;, - 106;3;-0.000000, 1.279916, 0.000000;;, - 107;3;-0.000000, 1.279916,-0.000000;;, - 108;3;-0.000000, 1.279916,-0.000000;;, - 109;3; 0.000000, 1.279916,-0.000000;;, - 110;3; 0.000000, 1.279916,-0.000000;;, - 111;3;-0.000000, 1.279915, 0.000000;;, - 112;3; 0.000000, 1.279916, 0.000000;;, - 113;3;-0.000000, 1.279916, 0.000000;;, - 114;3;-0.000000, 1.279916, 0.000000;;, - 115;3; 0.000000, 1.279916,-0.000000;;, - 116;3; 0.000000, 1.279916,-0.000000;;, - 117;3;-0.000000, 1.279916, 0.000000;;, - 118;3; 0.000000, 1.279916, 0.000000;;, - 119;3;-0.000000, 1.279916, 0.000000;;, - 120;3; 0.000000, 1.279916, 0.000000;;, - 121;3; 0.000000, 1.279915, 0.000000;;, - 122;3;-0.000000, 1.279916,-0.000000;;, - 123;3;-0.000000, 1.279916,-0.000000;;, - 124;3;-0.000000, 1.279915,-0.000000;;, - 125;3; 0.000000, 1.279915,-0.000000;;, - 126;3;-0.000000, 1.279916,-0.000000;;, - 127;3;-0.000000, 1.279916, 0.000000;;, - 128;3;-0.000000, 1.279916,-0.000000;;, - 129;3;-0.000000, 1.279916, 0.000000;;, - 130;3;-0.000000, 1.279916,-0.000000;;, - 131;3;-0.000000, 1.279916,-0.000000;;, - 132;3; 0.000000, 1.279916,-0.000000;;, - 133;3; 0.000000, 1.279916,-0.000000;;, - 134;3;-0.000000, 1.279916,-0.000000;;, - 135;3; 0.000000, 1.279916,-0.000000;;, - 136;3;-0.000000, 1.279915,-0.000000;;, - 137;3;-0.000000, 1.279915, 0.000000;;, - 138;3; 0.000000, 1.279916, 0.000000;;, - 139;3;-0.000000, 1.279916,-0.000000;;, - 140;3; 0.000000, 1.279916, 0.000000;;, - 141;3;-0.000000, 1.279916, 0.000000;;, - 142;3;-0.000000, 1.279916,-0.000000;;, - 143;3; 0.000000, 1.279916,-0.000000;;, - 144;3; 0.000000, 1.279916,-0.000000;;, - 145;3;-0.000000, 1.279915, 0.000000;;, - 146;3;-0.000000, 1.279916, 0.000000;;, - 147;3; 0.000000, 1.279916,-0.000000;;, - 148;3;-0.000000, 1.279916, 0.000000;;, - 149;3;-0.000000, 1.279916, 0.000000;;, - 150;3; 0.000000, 1.279915, 0.000000;;, - 151;3;-0.000000, 1.279916,-0.000000;;, - 152;3; 0.000000, 1.279915,-0.000000;;, - 153;3;-0.000000, 1.279916, 0.000000;;, - 154;3;-0.000000, 1.279916, 0.000000;;, - 155;3;-0.000000, 1.279915,-0.000000;;, - 156;3;-0.000000, 1.279916, 0.000000;;, - 157;3;-0.000000, 1.279915,-0.000000;;, - 158;3; 0.000000, 1.279915,-0.000000;;, - 159;3;-0.000000, 1.279916,-0.000000;;, - 160;3;-0.000000, 1.279916, 0.000000;;, - 161;3;-0.000000, 1.279916,-0.000000;;, - 162;3;-0.000000, 1.279916,-0.000000;;, - 163;3; 0.000000, 1.279916,-0.000000;;, - 164;3;-0.000000, 1.279916,-0.000000;;, - 165;3;-0.000000, 1.279916,-0.000000;;, - 166;3;-0.000000, 1.279916, 0.000000;;, - 167;3;-0.000000, 1.279915,-0.000000;;, - 168;3; 0.000000, 1.279916, 0.000000;;, - 169;3;-0.000000, 1.279916, 0.000000;;, - 170;3;-0.000000, 1.279915,-0.000000;;, - 171;3; 0.000000, 1.279916, 0.000000;;, - 172;3;-0.000000, 1.279915,-0.000000;;, - 173;3;-0.000000, 1.279916, 0.000000;;, - 174;3;-0.000000, 1.279916,-0.000000;;, - 175;3;-0.000000, 1.279916,-0.000000;;, - 176;3; 0.000000, 1.279916, 0.000000;;, - 177;3; 0.000000, 1.279916,-0.000000;;, - 178;3;-0.000000, 1.279916,-0.000000;;, - 179;3; 0.000000, 1.279916, 0.000000;;, - 180;3;-0.000000, 1.279916, 0.000000;;, - 181;3;-0.000000, 1.279916, 0.000000;;, - 182;3; 0.000000, 1.279916, 0.000000;;, - 183;3;-0.000000, 1.279915, 0.000000;;, - 184;3; 0.000000, 1.279916,-0.000000;;, - 185;3; 0.000000, 1.279916,-0.000000;;, - 186;3;-0.000000, 1.279916, 0.000000;;, - 187;3;-0.000000, 1.279916, 0.000000;;, - 188;3;-0.000000, 1.279915,-0.000000;;, - 189;3; 0.000000, 1.279916,-0.000000;;, - 190;3; 0.000000, 1.279916, 0.000000;;, - 191;3; 0.000000, 1.279916, 0.000000;;, - 192;3;-0.000000, 1.279916,-0.000000;;, - 193;3;-0.000000, 1.279916, 0.000000;;, - 194;3;-0.000000, 1.279916, 0.000000;;, - 195;3; 0.000000, 1.279916,-0.000000;;, - 196;3;-0.000000, 1.279915,-0.000000;;, - 197;3; 0.000000, 1.279916,-0.000000;;, - 198;3; 0.000000, 1.279916,-0.000000;;, - 199;3; 0.000000, 1.279916, 0.000000;;, - 200;3; 0.000000, 1.279916, 0.000000;;, - 201;3; 0.000000, 1.279916, 0.000000;;, - 202;3; 0.000000, 1.279916, 0.000000;;, - 203;3; 0.000000, 1.279916, 0.000000;;, - 204;3; 0.000000, 1.279916, 0.000000;;, - 205;3; 0.000000, 1.279916, 0.000000;;, - 206;3; 0.000000, 1.279916, 0.000000;;, - 207;3; 0.000000, 1.279916, 0.000000;;, - 208;3; 0.000000, 1.279916, 0.000000;;, - 209;3; 0.000000, 1.279916, 0.000000;;, - 210;3; 0.000000, 1.279916, 0.000000;;, - 211;3; 0.000000, 1.279916, 0.000000;;, - 212;3; 0.000000, 1.279916, 0.000000;;, - 213;3; 0.000000, 1.279916, 0.000000;;, - 214;3; 0.000000, 1.279916, 0.000000;;, - 215;3; 0.000000, 1.279916, 0.000000;;, - 216;3; 0.000000, 1.279916, 0.000000;;, - 217;3; 0.000000, 1.279916, 0.000000;;, - 218;3; 0.000000, 1.279916, 0.000000;;, - 219;3; 0.000000, 1.279916, 0.000000;;, - 220;3; 0.000000, 1.279916, 0.000000;;, - 221;3; 0.000000, 1.279916, 0.000000;;, - 222;3; 0.000000, 1.279916, 0.000000;;, - 223;3; 0.000000, 1.279916, 0.000000;;, - 224;3; 0.000000, 1.279916, 0.000000;;, - 225;3; 0.000000, 1.279916, 0.000000;;, - 226;3; 0.000000, 1.279916, 0.000000;;, - 227;3; 0.000000, 1.279916, 0.000000;;, - 228;3; 0.000000, 1.279916, 0.000000;;, - 229;3; 0.000000, 1.279916, 0.000000;;, - 230;3; 0.000000, 1.279916, 0.000000;;, - 231;3; 0.000000, 1.279916, 0.000000;;, - 232;3; 0.000000, 1.279916, 0.000000;;, - 233;3; 0.000000, 1.279916, 0.000000;;, - 234;3; 0.000000, 1.279916, 0.000000;;, - 235;3; 0.000000, 1.279916, 0.000000;;, - 236;3; 0.000000, 1.279916, 0.000000;;, - 237;3; 0.000000, 1.279916, 0.000000;;, - 238;3; 0.000000, 1.279916, 0.000000;;, - 239;3; 0.000000, 1.279916, 0.000000;;, - 240;3; 0.000000, 1.279916, 0.000000;;, - 241;3; 0.000000, 1.279916, 0.000000;;, - 242;3; 0.000000, 1.279916, 0.000000;;, - 243;3; 0.000000, 1.279916, 0.000000;;, - 244;3; 0.000000, 1.279916, 0.000000;;, - 245;3; 0.000000, 1.279916, 0.000000;;, - 246;3; 0.000000, 1.279916, 0.000000;;, - 247;3; 0.000000, 1.279916, 0.000000;;, - 248;3; 0.000000, 1.279916, 0.000000;;, - 249;3; 0.000000, 1.279916, 0.000000;;; - } - } - Animation { - {Armature_Bone_039} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 1;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 2;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 3;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 4;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 5;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 6;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 7;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 8;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 9;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 10;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 11;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 12;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 13;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 14;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 15;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 16;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 17;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 18;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 19;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 20;4;-0.957694,-0.287562, 0.000415, 0.000224;;, - 21;4;-0.958119,-0.285459, 0.001668, 0.000901;;, - 22;4;-0.958830,-0.281944, 0.003764, 0.002032;;, - 23;4;-0.959821,-0.277039, 0.006688, 0.003611;;, - 24;4;-0.961082,-0.270805, 0.010404, 0.005618;;, - 25;4;-0.962590,-0.263348, 0.014850, 0.008018;;, - 26;4;-0.964313,-0.254824, 0.019932, 0.010762;;, - 27;4;-0.966210,-0.245441, 0.025526, 0.013783;;, - 28;4;-0.968230,-0.235453, 0.031480, 0.016998;;, - 29;4;-0.970312,-0.225154, 0.037620, 0.020313;;, - 30;4;-0.972394,-0.214855, 0.043759, 0.023628;;, - 31;4;-0.974414,-0.204868, 0.049713, 0.026843;;, - 32;4;-0.976311,-0.195485, 0.055307, 0.029864;;, - 33;4;-0.978034,-0.186961, 0.060389, 0.032608;;, - 34;4;-0.979542,-0.179504, 0.064835, 0.035008;;, - 35;4;-0.980802,-0.173270, 0.068551, 0.037015;;, - 36;4;-0.981794,-0.168365, 0.071475, 0.038594;;, - 37;4;-0.982505,-0.164850, 0.073571, 0.039726;;, - 38;4;-0.982930,-0.162747, 0.074824, 0.040402;;, - 39;4;-0.983071,-0.162052, 0.075239, 0.040626;;, - 40;4;-0.982930,-0.162747, 0.074824, 0.040402;;, - 41;4;-0.982505,-0.164850, 0.073571, 0.039726;;, - 42;4;-0.981794,-0.168365, 0.071475, 0.038594;;, - 43;4;-0.980803,-0.173270, 0.068551, 0.037015;;, - 44;4;-0.979542,-0.179504, 0.064835, 0.035008;;, - 45;4;-0.978034,-0.186961, 0.060389, 0.032608;;, - 46;4;-0.976311,-0.195485, 0.055307, 0.029864;;, - 47;4;-0.974414,-0.204868, 0.049713, 0.026843;;, - 48;4;-0.972394,-0.214856, 0.043759, 0.023628;;, - 49;4;-0.970312,-0.225154, 0.037620, 0.020313;;, - 50;4;-0.968230,-0.235453, 0.031480, 0.016998;;, - 51;4;-0.966210,-0.245441, 0.025526, 0.013783;;, - 52;4;-0.964313,-0.254824, 0.019932, 0.010762;;, - 53;4;-0.962590,-0.263348, 0.014850, 0.008018;;, - 54;4;-0.961082,-0.270805, 0.010404, 0.005618;;, - 55;4;-0.959821,-0.277039, 0.006688, 0.003611;;, - 56;4;-0.958830,-0.281944, 0.003764, 0.002032;;, - 57;4;-0.958119,-0.285459, 0.001668, 0.000901;;, - 58;4;-0.957694,-0.287562, 0.000415, 0.000224;;, - 59;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 60;4;-0.957573,-0.288177, 0.000048, 0.000026;;, - 61;4;-0.957635,-0.287937, 0.000194, 0.000105;;, - 62;4;-0.957737,-0.287534, 0.000437, 0.000236;;, - 63;4;-0.957881,-0.286969, 0.000779, 0.000421;;, - 64;4;-0.958066,-0.286241, 0.001220, 0.000659;;, - 65;4;-0.958292,-0.285351, 0.001758, 0.000949;;, - 66;4;-0.958560,-0.284301, 0.002394, 0.001293;;, - 67;4;-0.958867,-0.283093, 0.003124, 0.001687;;, - 68;4;-0.959213,-0.281732, 0.003948, 0.002132;;, - 69;4;-0.959597,-0.280223, 0.004861, 0.002625;;, - 70;4;-0.960017,-0.278573, 0.005859, 0.003164;;, - 71;4;-0.960470,-0.276790, 0.006938, 0.003746;;, - 72;4;-0.960955,-0.274884, 0.008091, 0.004369;;, - 73;4;-0.961468,-0.272866, 0.009312, 0.005028;;, - 74;4;-0.962007,-0.270749, 0.010592, 0.005720;;, - 75;4;-0.962567,-0.268546, 0.011925, 0.006439;;, - 76;4;-0.963145,-0.266274, 0.013300, 0.007181;;, - 77;4;-0.963737,-0.263949, 0.014706, 0.007941;;, - 78;4;-0.964338,-0.261587, 0.016135, 0.008712;;, - 79;4;-0.964943,-0.259208, 0.017575, 0.009490;;, - 80;4;-0.965548,-0.256828, 0.019014, 0.010267;;, - 81;4;-0.966149,-0.254467, 0.020443, 0.011039;;, - 82;4;-0.966741,-0.252141, 0.021850, 0.011798;;, - 83;4;-0.967319,-0.249869, 0.023225, 0.012540;;, - 84;4;-0.967879,-0.247667, 0.024557, 0.013260;;, - 85;4;-0.968418,-0.245549, 0.025838, 0.013952;;, - 86;4;-0.968931,-0.243531, 0.027059, 0.014611;;, - 87;4;-0.969416,-0.241625, 0.028212, 0.015233;;, - 88;4;-0.969869,-0.239842, 0.029291, 0.015816;;, - 89;4;-0.970289,-0.238192, 0.030289, 0.016355;;, - 90;4;-0.970673,-0.236683, 0.031202, 0.016848;;, - 91;4;-0.971019,-0.235323, 0.032025, 0.017292;;, - 92;4;-0.971327,-0.234115, 0.032756, 0.017687;;, - 93;4;-0.971594,-0.233064, 0.033391, 0.018030;;, - 94;4;-0.971820,-0.232174, 0.033930, 0.018321;;, - 95;4;-0.972005,-0.231446, 0.034370, 0.018559;;, - 96;4;-0.972149,-0.230881, 0.034712, 0.018743;;, - 97;4;-0.972252,-0.230478, 0.034956, 0.018875;;, - 98;4;-0.972313,-0.230238, 0.035101, 0.018953;;, - 99;4;-0.972333,-0.230158, 0.035150, 0.018979;;, - 100;4;-0.972043,-0.231075, 0.034585, 0.018675;;, - 101;4;-0.971141,-0.233922, 0.032833, 0.017729;;, - 102;4;-0.969610,-0.238758, 0.029856, 0.016121;;, - 103;4;-0.967487,-0.245461, 0.025730, 0.013893;;, - 104;4;-0.964889,-0.253668, 0.020679, 0.011166;;, - 105;4;-0.961998,-0.262797, 0.015059, 0.008132;;, - 106;4;-0.959027,-0.272176, 0.009286, 0.005014;;, - 107;4;-0.956170,-0.281201, 0.003731, 0.002015;;, - 108;4;-0.953561,-0.289439,-0.001339,-0.000723;;, - 109;4;-0.951279,-0.296645,-0.005775,-0.003118;;, - 110;4;-0.948997,-0.303851,-0.010210,-0.005513;;, - 111;4;-0.946389,-0.312088,-0.015281,-0.008251;;, - 112;4;-0.943531,-0.321113,-0.020836,-0.011251;;, - 113;4;-0.940561,-0.330493,-0.026609,-0.014368;;, - 114;4;-0.937670,-0.339622,-0.032229,-0.017402;;, - 115;4;-0.935071,-0.347828,-0.037280,-0.020130;;, - 116;4;-0.932949,-0.354531,-0.041406,-0.022357;;, - 117;4;-0.931417,-0.359368,-0.044383,-0.023965;;, - 118;4;-0.930516,-0.362215,-0.046135,-0.024911;;, - 119;4;-0.930225,-0.363131,-0.046699,-0.025216;;, - 120;4;-0.930516,-0.362215,-0.046135,-0.024911;;, - 121;4;-0.931417,-0.359368,-0.044383,-0.023965;;, - 122;4;-0.932949,-0.354531,-0.041406,-0.022357;;, - 123;4;-0.935071,-0.347828,-0.037280,-0.020130;;, - 124;4;-0.937670,-0.339622,-0.032229,-0.017402;;, - 125;4;-0.940561,-0.330493,-0.026609,-0.014368;;, - 126;4;-0.943531,-0.321113,-0.020836,-0.011251;;, - 127;4;-0.946389,-0.312088,-0.015281,-0.008251;;, - 128;4;-0.948997,-0.303851,-0.010210,-0.005513;;, - 129;4;-0.951279,-0.296645,-0.005775,-0.003118;;, - 130;4;-0.953561,-0.289439,-0.001339,-0.000723;;, - 131;4;-0.956170,-0.281201, 0.003731, 0.002015;;, - 132;4;-0.959027,-0.272176, 0.009286, 0.005014;;, - 133;4;-0.961998,-0.262797, 0.015059, 0.008132;;, - 134;4;-0.964889,-0.253668, 0.020679, 0.011166;;, - 135;4;-0.967487,-0.245461, 0.025730, 0.013893;;, - 136;4;-0.969610,-0.238758, 0.029856, 0.016121;;, - 137;4;-0.971141,-0.233922, 0.032833, 0.017729;;, - 138;4;-0.972043,-0.231075, 0.034585, 0.018675;;, - 139;4;-0.972333,-0.230158, 0.035150, 0.018979;;, - 140;4;-0.971141,-0.233922, 0.032833, 0.017729;;, - 141;4;-0.967487,-0.245461, 0.025730, 0.013893;;, - 142;4;-0.961998,-0.262797, 0.015059, 0.008132;;, - 143;4;-0.956170,-0.281201, 0.003731, 0.002015;;, - 144;4;-0.951279,-0.296645,-0.005775,-0.003118;;, - 145;4;-0.946389,-0.312088,-0.015281,-0.008251;;, - 146;4;-0.940561,-0.330493,-0.026609,-0.014368;;, - 147;4;-0.935071,-0.347828,-0.037280,-0.020130;;, - 148;4;-0.931417,-0.359368,-0.044383,-0.023965;;, - 149;4;-0.930225,-0.363131,-0.046699,-0.025216;;, - 150;4;-0.931417,-0.359368,-0.044383,-0.023965;;, - 151;4;-0.935071,-0.347828,-0.037280,-0.020130;;, - 152;4;-0.940561,-0.330493,-0.026609,-0.014368;;, - 153;4;-0.946389,-0.312088,-0.015281,-0.008251;;, - 154;4;-0.951279,-0.296645,-0.005775,-0.003118;;, - 155;4;-0.956170,-0.281201, 0.003731, 0.002015;;, - 156;4;-0.961998,-0.262797, 0.015059, 0.008132;;, - 157;4;-0.967487,-0.245461, 0.025730, 0.013893;;, - 158;4;-0.971141,-0.233922, 0.032833, 0.017729;;, - 159;4;-0.972333,-0.230158, 0.035150, 0.018979;;, - 160;4;-0.972252,-0.230478, 0.034956, 0.018875;;, - 161;4;-0.972005,-0.231446, 0.034370, 0.018559;;, - 162;4;-0.971594,-0.233064, 0.033391, 0.018030;;, - 163;4;-0.971019,-0.235323, 0.032025, 0.017292;;, - 164;4;-0.970289,-0.238192, 0.030289, 0.016355;;, - 165;4;-0.969416,-0.241625, 0.028212, 0.015233;;, - 166;4;-0.968418,-0.245549, 0.025838, 0.013952;;, - 167;4;-0.967319,-0.249869, 0.023225, 0.012540;;, - 168;4;-0.966149,-0.254466, 0.020443, 0.011039;;, - 169;4;-0.964943,-0.259208, 0.017575, 0.009490;;, - 170;4;-0.963737,-0.263949, 0.014706, 0.007941;;, - 171;4;-0.962567,-0.268546, 0.011925, 0.006439;;, - 172;4;-0.961469,-0.272866, 0.009312, 0.005028;;, - 173;4;-0.960470,-0.276790, 0.006938, 0.003746;;, - 174;4;-0.959597,-0.280223, 0.004861, 0.002625;;, - 175;4;-0.958867,-0.283093, 0.003124, 0.001687;;, - 176;4;-0.958292,-0.285351, 0.001758, 0.000949;;, - 177;4;-0.957881,-0.286969, 0.000779, 0.000421;;, - 178;4;-0.957635,-0.287937, 0.000194, 0.000105;;, - 179;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 180;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 181;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 182;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 183;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 184;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 185;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 186;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 187;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 188;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 189;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 190;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 191;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 192;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 193;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 194;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 195;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 196;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 197;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 198;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 199;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 200;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 201;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 202;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 203;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 204;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 205;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 206;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 207;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 208;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 209;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 210;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 211;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 212;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 213;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 214;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 215;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 216;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 217;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 218;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 219;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 220;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 221;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 222;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 223;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 224;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 225;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 226;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 227;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 228;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 229;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 230;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 231;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 232;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 233;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 234;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 235;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 236;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 237;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 238;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 239;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 240;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 241;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 242;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 243;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 244;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 245;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 246;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 247;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 248;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 249;4;-0.957553,-0.288257,-0.000000,-0.000000;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3;-0.000000, 1.228416,-0.000000;;, - 1;3;-0.000000, 1.228416,-0.000000;;, - 2;3;-0.000000, 1.228416,-0.000000;;, - 3;3;-0.000000, 1.228416,-0.000000;;, - 4;3;-0.000000, 1.228416,-0.000000;;, - 5;3;-0.000000, 1.228416,-0.000000;;, - 6;3;-0.000000, 1.228416,-0.000000;;, - 7;3;-0.000000, 1.228416,-0.000000;;, - 8;3;-0.000000, 1.228416,-0.000000;;, - 9;3;-0.000000, 1.228416,-0.000000;;, - 10;3;-0.000000, 1.228416,-0.000000;;, - 11;3;-0.000000, 1.228416,-0.000000;;, - 12;3;-0.000000, 1.228416,-0.000000;;, - 13;3;-0.000000, 1.228416,-0.000000;;, - 14;3;-0.000000, 1.228416,-0.000000;;, - 15;3;-0.000000, 1.228416,-0.000000;;, - 16;3;-0.000000, 1.228416,-0.000000;;, - 17;3;-0.000000, 1.228416,-0.000000;;, - 18;3;-0.000000, 1.228416,-0.000000;;, - 19;3;-0.000000, 1.228416,-0.000000;;, - 20;3;-0.000000, 1.228416,-0.000000;;, - 21;3;-0.000000, 1.228416,-0.000000;;, - 22;3;-0.000000, 1.228416,-0.000000;;, - 23;3;-0.000000, 1.228416,-0.000000;;, - 24;3;-0.000000, 1.228416,-0.000000;;, - 25;3;-0.000000, 1.228416,-0.000000;;, - 26;3;-0.000000, 1.228416,-0.000000;;, - 27;3;-0.000000, 1.228416,-0.000000;;, - 28;3;-0.000000, 1.228416,-0.000000;;, - 29;3;-0.000000, 1.228416,-0.000000;;, - 30;3;-0.000000, 1.228416,-0.000000;;, - 31;3;-0.000000, 1.228416,-0.000000;;, - 32;3;-0.000000, 1.228416,-0.000000;;, - 33;3;-0.000000, 1.228416,-0.000000;;, - 34;3;-0.000000, 1.228416,-0.000000;;, - 35;3;-0.000000, 1.228416,-0.000000;;, - 36;3;-0.000000, 1.228416,-0.000000;;, - 37;3;-0.000000, 1.228416,-0.000000;;, - 38;3;-0.000000, 1.228416,-0.000000;;, - 39;3;-0.000000, 1.228416,-0.000000;;, - 40;3;-0.000000, 1.228416,-0.000000;;, - 41;3;-0.000000, 1.228416,-0.000000;;, - 42;3;-0.000000, 1.228416,-0.000000;;, - 43;3;-0.000000, 1.228416,-0.000000;;, - 44;3;-0.000000, 1.228416,-0.000000;;, - 45;3;-0.000000, 1.228416,-0.000000;;, - 46;3;-0.000000, 1.228416,-0.000000;;, - 47;3;-0.000000, 1.228416,-0.000000;;, - 48;3;-0.000000, 1.228416,-0.000000;;, - 49;3;-0.000000, 1.228416,-0.000000;;, - 50;3;-0.000000, 1.228416,-0.000000;;, - 51;3;-0.000000, 1.228416,-0.000000;;, - 52;3;-0.000000, 1.228416,-0.000000;;, - 53;3;-0.000000, 1.228416,-0.000000;;, - 54;3;-0.000000, 1.228416,-0.000000;;, - 55;3;-0.000000, 1.228416,-0.000000;;, - 56;3;-0.000000, 1.228416,-0.000000;;, - 57;3;-0.000000, 1.228416,-0.000000;;, - 58;3;-0.000000, 1.228416,-0.000000;;, - 59;3;-0.000000, 1.228416,-0.000000;;, - 60;3; 0.000000, 1.228416,-0.000000;;, - 61;3; 0.000000, 1.228417,-0.000000;;, - 62;3; 0.000000, 1.228416, 0.000000;;, - 63;3;-0.000000, 1.228416, 0.000000;;, - 64;3; 0.000000, 1.228417,-0.000000;;, - 65;3; 0.000000, 1.228416, 0.000000;;, - 66;3; 0.000000, 1.228417,-0.000000;;, - 67;3;-0.000000, 1.228417, 0.000000;;, - 68;3;-0.000000, 1.228416,-0.000000;;, - 69;3; 0.000000, 1.228417, 0.000000;;, - 70;3;-0.000000, 1.228416,-0.000000;;, - 71;3;-0.000000, 1.228417,-0.000000;;, - 72;3;-0.000000, 1.228417, 0.000000;;, - 73;3;-0.000000, 1.228416,-0.000000;;, - 74;3;-0.000000, 1.228417,-0.000000;;, - 75;3; 0.000000, 1.228416,-0.000000;;, - 76;3; 0.000000, 1.228416,-0.000000;;, - 77;3; 0.000000, 1.228416, 0.000000;;, - 78;3; 0.000000, 1.228416,-0.000000;;, - 79;3; 0.000000, 1.228417,-0.000000;;, - 80;3;-0.000000, 1.228416, 0.000000;;, - 81;3;-0.000000, 1.228416, 0.000000;;, - 82;3; 0.000000, 1.228416, 0.000000;;, - 83;3; 0.000000, 1.228416,-0.000000;;, - 84;3;-0.000000, 1.228417,-0.000000;;, - 85;3;-0.000000, 1.228416, 0.000000;;, - 86;3; 0.000000, 1.228417, 0.000000;;, - 87;3; 0.000000, 1.228416, 0.000000;;, - 88;3;-0.000000, 1.228417,-0.000000;;, - 89;3; 0.000000, 1.228417,-0.000000;;, - 90;3; 0.000000, 1.228416,-0.000000;;, - 91;3; 0.000000, 1.228416, 0.000000;;, - 92;3;-0.000000, 1.228416,-0.000000;;, - 93;3;-0.000000, 1.228417, 0.000000;;, - 94;3; 0.000000, 1.228416,-0.000000;;, - 95;3; 0.000000, 1.228416,-0.000000;;, - 96;3;-0.000000, 1.228417, 0.000000;;, - 97;3;-0.000000, 1.228417, 0.000000;;, - 98;3;-0.000000, 1.228416,-0.000000;;, - 99;3; 0.000000, 1.228417,-0.000000;;, - 100;3;-0.000000, 1.228416, 0.000000;;, - 101;3;-0.000000, 1.228416,-0.000000;;, - 102;3; 0.000001, 1.228416,-0.000000;;, - 103;3;-0.000000, 1.228416,-0.000000;;, - 104;3; 0.000000, 1.228417,-0.000000;;, - 105;3;-0.000000, 1.228416, 0.000000;;, - 106;3;-0.000000, 1.228416, 0.000000;;, - 107;3;-0.000000, 1.228416, 0.000000;;, - 108;3; 0.000000, 1.228417, 0.000000;;, - 109;3;-0.000000, 1.228417,-0.000000;;, - 110;3;-0.000000, 1.228417, 0.000000;;, - 111;3;-0.000000, 1.228416,-0.000000;;, - 112;3;-0.000000, 1.228417,-0.000000;;, - 113;3; 0.000000, 1.228417,-0.000000;;, - 114;3;-0.000000, 1.228416, 0.000000;;, - 115;3; 0.000000, 1.228416,-0.000000;;, - 116;3;-0.000000, 1.228416, 0.000000;;, - 117;3; 0.000000, 1.228417, 0.000000;;, - 118;3;-0.000000, 1.228417,-0.000000;;, - 119;3; 0.000000, 1.228416, 0.000000;;, - 120;3;-0.000000, 1.228416, 0.000000;;, - 121;3; 0.000000, 1.228416,-0.000000;;, - 122;3; 0.000000, 1.228416, 0.000000;;, - 123;3;-0.000000, 1.228416,-0.000000;;, - 124;3; 0.000000, 1.228417,-0.000000;;, - 125;3;-0.000000, 1.228416, 0.000000;;, - 126;3; 0.000000, 1.228416,-0.000000;;, - 127;3; 0.000000, 1.228417,-0.000000;;, - 128;3; 0.000000, 1.228417, 0.000000;;, - 129;3;-0.000000, 1.228416, 0.000000;;, - 130;3; 0.000000, 1.228417,-0.000000;;, - 131;3;-0.000000, 1.228417,-0.000000;;, - 132;3;-0.000000, 1.228416,-0.000000;;, - 133;3; 0.000000, 1.228417,-0.000000;;, - 134;3; 0.000000, 1.228417,-0.000000;;, - 135;3; 0.000000, 1.228416,-0.000000;;, - 136;3;-0.000000, 1.228416, 0.000000;;, - 137;3; 0.000000, 1.228416, 0.000000;;, - 138;3; 0.000000, 1.228416, 0.000000;;, - 139;3; 0.000000, 1.228417,-0.000000;;, - 140;3;-0.000000, 1.228417,-0.000000;;, - 141;3;-0.000001, 1.228416,-0.000000;;, - 142;3;-0.000000, 1.228416, 0.000000;;, - 143;3; 0.000000, 1.228417, 0.000000;;, - 144;3;-0.000000, 1.228417,-0.000000;;, - 145;3;-0.000000, 1.228416,-0.000000;;, - 146;3; 0.000000, 1.228417,-0.000000;;, - 147;3; 0.000000, 1.228416,-0.000000;;, - 148;3; 0.000000, 1.228417, 0.000000;;, - 149;3; 0.000000, 1.228416, 0.000000;;, - 150;3; 0.000000, 1.228416,-0.000000;;, - 151;3;-0.000000, 1.228416,-0.000000;;, - 152;3;-0.000000, 1.228416, 0.000000;;, - 153;3; 0.000000, 1.228417,-0.000000;;, - 154;3;-0.000000, 1.228416, 0.000000;;, - 155;3;-0.000000, 1.228416,-0.000000;;, - 156;3; 0.000000, 1.228416,-0.000000;;, - 157;3; 0.000000, 1.228416, 0.000000;;, - 158;3;-0.000000, 1.228416, 0.000000;;, - 159;3; 0.000000, 1.228417,-0.000000;;, - 160;3; 0.000000, 1.228416,-0.000000;;, - 161;3; 0.000000, 1.228416, 0.000000;;, - 162;3;-0.000000, 1.228416,-0.000000;;, - 163;3;-0.000000, 1.228417, 0.000000;;, - 164;3; 0.000000, 1.228417, 0.000000;;, - 165;3; 0.000000, 1.228416, 0.000000;;, - 166;3;-0.000000, 1.228416, 0.000000;;, - 167;3; 0.000000, 1.228417,-0.000000;;, - 168;3;-0.000000, 1.228416,-0.000000;;, - 169;3;-0.000000, 1.228417,-0.000000;;, - 170;3;-0.000000, 1.228416,-0.000000;;, - 171;3;-0.000000, 1.228417,-0.000000;;, - 172;3;-0.000001, 1.228417, 0.000000;;, - 173;3;-0.000000, 1.228417,-0.000000;;, - 174;3;-0.000000, 1.228416, 0.000000;;, - 175;3;-0.000000, 1.228417,-0.000000;;, - 176;3; 0.000000, 1.228417,-0.000000;;, - 177;3;-0.000000, 1.228417,-0.000000;;, - 178;3;-0.000000, 1.228416, 0.000000;;, - 179;3;-0.000000, 1.228416,-0.000000;;, - 180;3; 0.000000, 1.228417,-0.000000;;, - 181;3;-0.000000, 1.228417, 0.000000;;, - 182;3;-0.000000, 1.228417, 0.000000;;, - 183;3; 0.000000, 1.228416, 0.000000;;, - 184;3; 0.000000, 1.228416,-0.000000;;, - 185;3; 0.000000, 1.228416, 0.000000;;, - 186;3;-0.000000, 1.228416,-0.000000;;, - 187;3; 0.000000, 1.228416, 0.000000;;, - 188;3;-0.000000, 1.228417, 0.000000;;, - 189;3; 0.000000, 1.228416, 0.000000;;, - 190;3; 0.000000, 1.228417,-0.000000;;, - 191;3;-0.000000, 1.228416, 0.000000;;, - 192;3;-0.000000, 1.228417, 0.000000;;, - 193;3;-0.000000, 1.228416,-0.000000;;, - 194;3;-0.000000, 1.228416,-0.000000;;, - 195;3; 0.000000, 1.228416,-0.000001;;, - 196;3; 0.000000, 1.228416, 0.000000;;, - 197;3; 0.000000, 1.228416,-0.000000;;, - 198;3; 0.000000, 1.228416, 0.000000;;, - 199;3;-0.000000, 1.228416,-0.000000;;, - 200;3;-0.000000, 1.228416,-0.000000;;, - 201;3;-0.000000, 1.228416,-0.000000;;, - 202;3;-0.000000, 1.228416,-0.000000;;, - 203;3;-0.000000, 1.228416,-0.000000;;, - 204;3;-0.000000, 1.228416,-0.000000;;, - 205;3;-0.000000, 1.228416,-0.000000;;, - 206;3;-0.000000, 1.228416,-0.000000;;, - 207;3;-0.000000, 1.228416,-0.000000;;, - 208;3;-0.000000, 1.228416,-0.000000;;, - 209;3;-0.000000, 1.228416,-0.000000;;, - 210;3;-0.000000, 1.228416,-0.000000;;, - 211;3;-0.000000, 1.228416,-0.000000;;, - 212;3;-0.000000, 1.228416,-0.000000;;, - 213;3;-0.000000, 1.228416,-0.000000;;, - 214;3;-0.000000, 1.228416,-0.000000;;, - 215;3;-0.000000, 1.228416,-0.000000;;, - 216;3;-0.000000, 1.228416,-0.000000;;, - 217;3;-0.000000, 1.228416,-0.000000;;, - 218;3;-0.000000, 1.228416,-0.000000;;, - 219;3;-0.000000, 1.228416,-0.000000;;, - 220;3;-0.000000, 1.228416,-0.000000;;, - 221;3;-0.000000, 1.228416,-0.000000;;, - 222;3;-0.000000, 1.228416,-0.000000;;, - 223;3;-0.000000, 1.228416,-0.000000;;, - 224;3;-0.000000, 1.228416,-0.000000;;, - 225;3;-0.000000, 1.228416,-0.000000;;, - 226;3;-0.000000, 1.228416,-0.000000;;, - 227;3;-0.000000, 1.228416,-0.000000;;, - 228;3;-0.000000, 1.228416,-0.000000;;, - 229;3;-0.000000, 1.228416,-0.000000;;, - 230;3;-0.000000, 1.228416,-0.000000;;, - 231;3;-0.000000, 1.228416,-0.000000;;, - 232;3;-0.000000, 1.228416,-0.000000;;, - 233;3;-0.000000, 1.228416,-0.000000;;, - 234;3;-0.000000, 1.228416,-0.000000;;, - 235;3;-0.000000, 1.228416,-0.000000;;, - 236;3;-0.000000, 1.228416,-0.000000;;, - 237;3;-0.000000, 1.228416,-0.000000;;, - 238;3;-0.000000, 1.228416,-0.000000;;, - 239;3;-0.000000, 1.228416,-0.000000;;, - 240;3;-0.000000, 1.228416,-0.000000;;, - 241;3;-0.000000, 1.228416,-0.000000;;, - 242;3;-0.000000, 1.228416,-0.000000;;, - 243;3;-0.000000, 1.228416,-0.000000;;, - 244;3;-0.000000, 1.228416,-0.000000;;, - 245;3;-0.000000, 1.228416,-0.000000;;, - 246;3;-0.000000, 1.228416,-0.000000;;, - 247;3;-0.000000, 1.228416,-0.000000;;, - 248;3;-0.000000, 1.228416,-0.000000;;, - 249;3;-0.000000, 1.228416,-0.000000;;; - } - } - Animation { - {Armature_Bone_012} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 1;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 2;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 3;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 4;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 5;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 6;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 7;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 8;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 9;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 10;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 11;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 12;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 13;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 14;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 15;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 16;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 17;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 18;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 19;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 20;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 21;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 22;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 23;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 24;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 25;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 26;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 27;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 28;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 29;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 30;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 31;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 32;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 33;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 34;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 35;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 36;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 37;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 38;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 39;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 40;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 41;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 42;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 43;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 44;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 45;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 46;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 47;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 48;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 49;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 50;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 51;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 52;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 53;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 54;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 55;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 56;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 57;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 58;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 59;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 60;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 61;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 62;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 63;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 64;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 65;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 66;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 67;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 68;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 69;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 70;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 71;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 72;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 73;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 74;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 75;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 76;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 77;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 78;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 79;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 80;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 81;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 82;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 83;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 84;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 85;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 86;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 87;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 88;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 89;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 90;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 91;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 92;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 93;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 94;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 95;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 96;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 97;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 98;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 99;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 100;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 101;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 102;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 103;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 104;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 105;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 106;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 107;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 108;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 109;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 110;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 111;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 112;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 113;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 114;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 115;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 116;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 117;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 118;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 119;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 120;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 121;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 122;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 123;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 124;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 125;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 126;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 127;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 128;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 129;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 130;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 131;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 132;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 133;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 134;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 135;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 136;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 137;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 138;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 139;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 140;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 141;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 142;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 143;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 144;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 145;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 146;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 147;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 148;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 149;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 150;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 151;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 152;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 153;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 154;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 155;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 156;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 157;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 158;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 159;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 160;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 161;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 162;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 163;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 164;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 165;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 166;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 167;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 168;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 169;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 170;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 171;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 172;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 173;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 174;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 175;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 176;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 177;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 178;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 179;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 180;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 181;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 182;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 183;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 184;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 185;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 186;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 187;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 188;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 189;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 190;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 191;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 192;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 193;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 194;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 195;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 196;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 197;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 198;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 199;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 200;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 201;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 202;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 203;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 204;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 205;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 206;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 207;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 208;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 209;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 210;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 211;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 212;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 213;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 214;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 215;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 216;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 217;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 218;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 219;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 220;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 221;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 222;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 223;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 224;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 225;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 226;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 227;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 228;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 229;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 230;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 231;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 232;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 233;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 234;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 235;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 236;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 237;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 238;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 239;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 240;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 241;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 242;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 243;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 244;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 245;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 246;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 247;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 248;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 249;4;-0.888173,-0.000000, 0.000000, 0.459508;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3; 0.000000, 0.826434, 0.000000;;, - 1;3; 0.000000, 0.826434, 0.000000;;, - 2;3; 0.000000, 0.826434, 0.000000;;, - 3;3; 0.000000, 0.826434, 0.000000;;, - 4;3; 0.000000, 0.826434, 0.000000;;, - 5;3; 0.000000, 0.826434, 0.000000;;, - 6;3; 0.000000, 0.826434, 0.000000;;, - 7;3; 0.000000, 0.826434, 0.000000;;, - 8;3; 0.000000, 0.826434, 0.000000;;, - 9;3; 0.000000, 0.826434, 0.000000;;, - 10;3; 0.000000, 0.826434, 0.000000;;, - 11;3; 0.000000, 0.826434, 0.000000;;, - 12;3; 0.000000, 0.826434, 0.000000;;, - 13;3; 0.000000, 0.826434, 0.000000;;, - 14;3; 0.000000, 0.826434, 0.000000;;, - 15;3; 0.000000, 0.826434, 0.000000;;, - 16;3; 0.000000, 0.826434, 0.000000;;, - 17;3; 0.000000, 0.826434, 0.000000;;, - 18;3; 0.000000, 0.826434, 0.000000;;, - 19;3; 0.000000, 0.826434, 0.000000;;, - 20;3; 0.000000, 0.826434, 0.000000;;, - 21;3; 0.000000, 0.826434, 0.000000;;, - 22;3; 0.000000, 0.826434, 0.000000;;, - 23;3; 0.000000, 0.826434, 0.000000;;, - 24;3; 0.000000, 0.826434, 0.000000;;, - 25;3; 0.000000, 0.826434, 0.000000;;, - 26;3; 0.000000, 0.826434, 0.000000;;, - 27;3; 0.000000, 0.826434, 0.000000;;, - 28;3; 0.000000, 0.826434, 0.000000;;, - 29;3; 0.000000, 0.826434, 0.000000;;, - 30;3; 0.000000, 0.826434, 0.000000;;, - 31;3; 0.000000, 0.826434, 0.000000;;, - 32;3; 0.000000, 0.826434, 0.000000;;, - 33;3; 0.000000, 0.826434, 0.000000;;, - 34;3; 0.000000, 0.826434, 0.000000;;, - 35;3; 0.000000, 0.826434, 0.000000;;, - 36;3; 0.000000, 0.826434, 0.000000;;, - 37;3; 0.000000, 0.826434, 0.000000;;, - 38;3; 0.000000, 0.826434, 0.000000;;, - 39;3; 0.000000, 0.826434, 0.000000;;, - 40;3; 0.000000, 0.826434, 0.000000;;, - 41;3; 0.000000, 0.826434, 0.000000;;, - 42;3; 0.000000, 0.826434, 0.000000;;, - 43;3; 0.000000, 0.826434, 0.000000;;, - 44;3; 0.000000, 0.826434, 0.000000;;, - 45;3; 0.000000, 0.826434, 0.000000;;, - 46;3; 0.000000, 0.826434, 0.000000;;, - 47;3; 0.000000, 0.826434, 0.000000;;, - 48;3; 0.000000, 0.826434, 0.000000;;, - 49;3; 0.000000, 0.826434, 0.000000;;, - 50;3; 0.000000, 0.826434, 0.000000;;, - 51;3; 0.000000, 0.826434, 0.000000;;, - 52;3; 0.000000, 0.826434, 0.000000;;, - 53;3; 0.000000, 0.826434, 0.000000;;, - 54;3; 0.000000, 0.826434, 0.000000;;, - 55;3; 0.000000, 0.826434, 0.000000;;, - 56;3; 0.000000, 0.826434, 0.000000;;, - 57;3; 0.000000, 0.826434, 0.000000;;, - 58;3; 0.000000, 0.826434, 0.000000;;, - 59;3; 0.000000, 0.826434, 0.000000;;, - 60;3; 0.000000, 0.826434, 0.000000;;, - 61;3; 0.000000, 0.826434, 0.000000;;, - 62;3; 0.000000, 0.826434, 0.000000;;, - 63;3; 0.000000, 0.826434, 0.000000;;, - 64;3; 0.000000, 0.826434, 0.000000;;, - 65;3; 0.000000, 0.826434, 0.000000;;, - 66;3; 0.000000, 0.826434, 0.000000;;, - 67;3; 0.000000, 0.826434, 0.000000;;, - 68;3; 0.000000, 0.826434, 0.000000;;, - 69;3; 0.000000, 0.826434, 0.000000;;, - 70;3; 0.000000, 0.826434, 0.000000;;, - 71;3; 0.000000, 0.826434, 0.000000;;, - 72;3; 0.000000, 0.826434, 0.000000;;, - 73;3; 0.000000, 0.826434, 0.000000;;, - 74;3; 0.000000, 0.826434, 0.000000;;, - 75;3; 0.000000, 0.826434, 0.000000;;, - 76;3; 0.000000, 0.826434, 0.000000;;, - 77;3; 0.000000, 0.826434, 0.000000;;, - 78;3; 0.000000, 0.826434, 0.000000;;, - 79;3; 0.000000, 0.826434, 0.000000;;, - 80;3; 0.000000, 0.826434, 0.000000;;, - 81;3; 0.000000, 0.826434, 0.000000;;, - 82;3; 0.000000, 0.826434, 0.000000;;, - 83;3; 0.000000, 0.826434, 0.000000;;, - 84;3; 0.000000, 0.826434, 0.000000;;, - 85;3; 0.000000, 0.826434, 0.000000;;, - 86;3; 0.000000, 0.826434, 0.000000;;, - 87;3; 0.000000, 0.826434, 0.000000;;, - 88;3; 0.000000, 0.826434, 0.000000;;, - 89;3; 0.000000, 0.826434, 0.000000;;, - 90;3; 0.000000, 0.826434, 0.000000;;, - 91;3; 0.000000, 0.826434, 0.000000;;, - 92;3; 0.000000, 0.826434, 0.000000;;, - 93;3; 0.000000, 0.826434, 0.000000;;, - 94;3; 0.000000, 0.826434, 0.000000;;, - 95;3; 0.000000, 0.826434, 0.000000;;, - 96;3; 0.000000, 0.826434, 0.000000;;, - 97;3; 0.000000, 0.826434, 0.000000;;, - 98;3; 0.000000, 0.826434, 0.000000;;, - 99;3; 0.000000, 0.826434, 0.000000;;, - 100;3; 0.000000, 0.826434, 0.000000;;, - 101;3; 0.000000, 0.826434, 0.000000;;, - 102;3; 0.000000, 0.826434, 0.000000;;, - 103;3; 0.000000, 0.826434, 0.000000;;, - 104;3; 0.000000, 0.826434, 0.000000;;, - 105;3; 0.000000, 0.826434, 0.000000;;, - 106;3; 0.000000, 0.826434, 0.000000;;, - 107;3; 0.000000, 0.826434, 0.000000;;, - 108;3; 0.000000, 0.826434, 0.000000;;, - 109;3; 0.000000, 0.826434, 0.000000;;, - 110;3; 0.000000, 0.826434, 0.000000;;, - 111;3; 0.000000, 0.826434, 0.000000;;, - 112;3; 0.000000, 0.826434, 0.000000;;, - 113;3; 0.000000, 0.826434, 0.000000;;, - 114;3; 0.000000, 0.826434, 0.000000;;, - 115;3; 0.000000, 0.826434, 0.000000;;, - 116;3; 0.000000, 0.826434, 0.000000;;, - 117;3; 0.000000, 0.826434, 0.000000;;, - 118;3; 0.000000, 0.826434, 0.000000;;, - 119;3; 0.000000, 0.826434, 0.000000;;, - 120;3; 0.000000, 0.826434, 0.000000;;, - 121;3; 0.000000, 0.826434, 0.000000;;, - 122;3; 0.000000, 0.826434, 0.000000;;, - 123;3; 0.000000, 0.826434, 0.000000;;, - 124;3; 0.000000, 0.826434, 0.000000;;, - 125;3; 0.000000, 0.826434, 0.000000;;, - 126;3; 0.000000, 0.826434, 0.000000;;, - 127;3; 0.000000, 0.826434, 0.000000;;, - 128;3; 0.000000, 0.826434, 0.000000;;, - 129;3; 0.000000, 0.826434, 0.000000;;, - 130;3; 0.000000, 0.826434, 0.000000;;, - 131;3; 0.000000, 0.826434, 0.000000;;, - 132;3; 0.000000, 0.826434, 0.000000;;, - 133;3; 0.000000, 0.826434, 0.000000;;, - 134;3; 0.000000, 0.826434, 0.000000;;, - 135;3; 0.000000, 0.826434, 0.000000;;, - 136;3; 0.000000, 0.826434, 0.000000;;, - 137;3; 0.000000, 0.826434, 0.000000;;, - 138;3; 0.000000, 0.826434, 0.000000;;, - 139;3; 0.000000, 0.826434, 0.000000;;, - 140;3; 0.000000, 0.826434, 0.000000;;, - 141;3; 0.000000, 0.826434, 0.000000;;, - 142;3; 0.000000, 0.826434, 0.000000;;, - 143;3; 0.000000, 0.826434, 0.000000;;, - 144;3; 0.000000, 0.826434, 0.000000;;, - 145;3; 0.000000, 0.826434, 0.000000;;, - 146;3; 0.000000, 0.826434, 0.000000;;, - 147;3; 0.000000, 0.826434, 0.000000;;, - 148;3; 0.000000, 0.826434, 0.000000;;, - 149;3; 0.000000, 0.826434, 0.000000;;, - 150;3; 0.000000, 0.826434, 0.000000;;, - 151;3; 0.000000, 0.826434, 0.000000;;, - 152;3; 0.000000, 0.826434, 0.000000;;, - 153;3; 0.000000, 0.826434, 0.000000;;, - 154;3; 0.000000, 0.826434, 0.000000;;, - 155;3; 0.000000, 0.826434, 0.000000;;, - 156;3; 0.000000, 0.826434, 0.000000;;, - 157;3; 0.000000, 0.826434, 0.000000;;, - 158;3; 0.000000, 0.826434, 0.000000;;, - 159;3; 0.000000, 0.826434, 0.000000;;, - 160;3; 0.000000, 0.826434, 0.000000;;, - 161;3; 0.000000, 0.826434, 0.000000;;, - 162;3; 0.000000, 0.826434, 0.000000;;, - 163;3; 0.000000, 0.826434, 0.000000;;, - 164;3; 0.000000, 0.826434, 0.000000;;, - 165;3; 0.000000, 0.826434, 0.000000;;, - 166;3; 0.000000, 0.826434, 0.000000;;, - 167;3; 0.000000, 0.826434, 0.000000;;, - 168;3; 0.000000, 0.826434, 0.000000;;, - 169;3; 0.000000, 0.826434, 0.000000;;, - 170;3; 0.000000, 0.826434, 0.000000;;, - 171;3; 0.000000, 0.826434, 0.000000;;, - 172;3; 0.000000, 0.826434, 0.000000;;, - 173;3; 0.000000, 0.826434, 0.000000;;, - 174;3; 0.000000, 0.826434, 0.000000;;, - 175;3; 0.000000, 0.826434, 0.000000;;, - 176;3; 0.000000, 0.826434, 0.000000;;, - 177;3; 0.000000, 0.826434, 0.000000;;, - 178;3; 0.000000, 0.826434, 0.000000;;, - 179;3; 0.000000, 0.826434, 0.000000;;, - 180;3; 0.000000, 0.826434, 0.000000;;, - 181;3; 0.000000, 0.826434, 0.000000;;, - 182;3; 0.000000, 0.826434, 0.000000;;, - 183;3; 0.000000, 0.826434, 0.000000;;, - 184;3; 0.000000, 0.826434, 0.000000;;, - 185;3; 0.000000, 0.826434, 0.000000;;, - 186;3;-0.000000, 0.826434,-0.000000;;, - 187;3;-0.000000, 0.826434,-0.000000;;, - 188;3;-0.000000, 0.826434, 0.000000;;, - 189;3;-0.000000, 0.826434, 0.000000;;, - 190;3;-0.000000, 0.826434,-0.000000;;, - 191;3; 0.000000, 0.826434, 0.000000;;, - 192;3; 0.000000, 0.826434, 0.000000;;, - 193;3; 0.000000, 0.826434, 0.000000;;, - 194;3; 0.000000, 0.826434,-0.000000;;, - 195;3; 0.000000, 0.826434,-0.000000;;, - 196;3; 0.000000, 0.826434, 0.000000;;, - 197;3; 0.000000, 0.826434,-0.000000;;, - 198;3; 0.000000, 0.826434,-0.000000;;, - 199;3; 0.000000, 0.826434, 0.000000;;, - 200;3; 0.000000, 0.826434, 0.000000;;, - 201;3; 0.000000, 0.826434, 0.000000;;, - 202;3; 0.000000, 0.826434, 0.000000;;, - 203;3; 0.000000, 0.826434, 0.000000;;, - 204;3; 0.000000, 0.826434, 0.000000;;, - 205;3; 0.000000, 0.826434, 0.000000;;, - 206;3; 0.000000, 0.826434, 0.000000;;, - 207;3; 0.000000, 0.826434, 0.000000;;, - 208;3; 0.000000, 0.826434, 0.000000;;, - 209;3; 0.000000, 0.826434, 0.000000;;, - 210;3; 0.000000, 0.826434, 0.000000;;, - 211;3; 0.000000, 0.826434, 0.000000;;, - 212;3; 0.000000, 0.826434, 0.000000;;, - 213;3; 0.000000, 0.826434, 0.000000;;, - 214;3; 0.000000, 0.826434, 0.000000;;, - 215;3; 0.000000, 0.826434, 0.000000;;, - 216;3; 0.000000, 0.826434, 0.000000;;, - 217;3; 0.000000, 0.826434, 0.000000;;, - 218;3; 0.000000, 0.826434, 0.000000;;, - 219;3; 0.000000, 0.826434, 0.000000;;, - 220;3; 0.000000, 0.826434, 0.000000;;, - 221;3; 0.000000, 0.826434, 0.000000;;, - 222;3; 0.000000, 0.826434, 0.000000;;, - 223;3; 0.000000, 0.826434, 0.000000;;, - 224;3; 0.000000, 0.826434, 0.000000;;, - 225;3; 0.000000, 0.826434, 0.000000;;, - 226;3; 0.000000, 0.826434, 0.000000;;, - 227;3; 0.000000, 0.826434, 0.000000;;, - 228;3; 0.000000, 0.826434, 0.000000;;, - 229;3; 0.000000, 0.826434, 0.000000;;, - 230;3; 0.000000, 0.826434, 0.000000;;, - 231;3; 0.000000, 0.826434, 0.000000;;, - 232;3; 0.000000, 0.826434, 0.000000;;, - 233;3; 0.000000, 0.826434, 0.000000;;, - 234;3; 0.000000, 0.826434, 0.000000;;, - 235;3; 0.000000, 0.826434, 0.000000;;, - 236;3; 0.000000, 0.826434, 0.000000;;, - 237;3; 0.000000, 0.826434, 0.000000;;, - 238;3; 0.000000, 0.826434, 0.000000;;, - 239;3; 0.000000, 0.826434, 0.000000;;, - 240;3; 0.000000, 0.826434, 0.000000;;, - 241;3; 0.000000, 0.826434, 0.000000;;, - 242;3; 0.000000, 0.826434, 0.000000;;, - 243;3; 0.000000, 0.826434, 0.000000;;, - 244;3; 0.000000, 0.826434, 0.000000;;, - 245;3; 0.000000, 0.826434, 0.000000;;, - 246;3; 0.000000, 0.826434, 0.000000;;, - 247;3; 0.000000, 0.826434, 0.000000;;, - 248;3; 0.000000, 0.826434, 0.000000;;, - 249;3; 0.000000, 0.826434, 0.000000;;; - } - } - Animation { - {Armature_Bone_032} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 1;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 2;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 3;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 4;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 5;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 6;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 7;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 8;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 9;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 10;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 11;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 12;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 13;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 14;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 15;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 16;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 17;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 18;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 19;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 20;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 21;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 22;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 23;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 24;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 25;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 26;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 27;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 28;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 29;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 30;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 31;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 32;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 33;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 34;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 35;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 36;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 37;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 38;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 39;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 40;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 41;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 42;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 43;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 44;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 45;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 46;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 47;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 48;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 49;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 50;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 51;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 52;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 53;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 54;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 55;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 56;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 57;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 58;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 59;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 60;4;-0.949096, 0.142195,-0.041751,-0.277852;;, - 61;4;-0.948920, 0.142900,-0.042317,-0.277727;;, - 62;4;-0.948624, 0.144079,-0.043263,-0.277519;;, - 63;4;-0.948207, 0.145735,-0.044593,-0.277227;;, - 64;4;-0.947669, 0.147867,-0.046306,-0.276852;;, - 65;4;-0.947010, 0.150475,-0.048399,-0.276393;;, - 66;4;-0.946229, 0.153552,-0.050870,-0.275853;;, - 67;4;-0.945329, 0.157089,-0.053711,-0.275232;;, - 68;4;-0.944312, 0.161076,-0.056912,-0.274534;;, - 69;4;-0.943180, 0.165496,-0.060461,-0.273761;;, - 70;4;-0.941937, 0.170329,-0.064342,-0.272917;;, - 71;4;-0.940589, 0.175552,-0.068535,-0.272007;;, - 72;4;-0.939141, 0.181135,-0.073018,-0.271036;;, - 73;4;-0.937601, 0.187046,-0.077765,-0.270011;;, - 74;4;-0.935977, 0.193248,-0.082745,-0.268937;;, - 75;4;-0.934278, 0.199699,-0.087925,-0.267824;;, - 76;4;-0.932514, 0.206355,-0.093269,-0.266679;;, - 77;4;-0.930696, 0.213167,-0.098739,-0.265511;;, - 78;4;-0.928837, 0.220084,-0.104293,-0.264329;;, - 79;4;-0.926947, 0.227055,-0.109891,-0.263143;;, - 80;4;-0.925041, 0.234026,-0.115488,-0.261963;;, - 81;4;-0.923130, 0.240943,-0.121042,-0.260797;;, - 82;4;-0.921227, 0.247755,-0.126512,-0.259656;;, - 83;4;-0.919344, 0.254411,-0.131856,-0.258549;;, - 84;4;-0.917494, 0.260862,-0.137036,-0.257484;;, - 85;4;-0.915687, 0.267064,-0.142016,-0.256469;;, - 86;4;-0.913934, 0.272975,-0.146763,-0.255511;;, - 87;4;-0.912243, 0.278558,-0.151246,-0.254618;;, - 88;4;-0.910624, 0.283781,-0.155440,-0.253794;;, - 89;4;-0.909085, 0.288614,-0.159321,-0.253044;;, - 90;4;-0.907630, 0.293034,-0.162870,-0.252374;;, - 91;4;-0.906267, 0.297021,-0.166071,-0.251786;;, - 92;4;-0.904999, 0.300558,-0.168911,-0.251282;;, - 93;4;-0.903830, 0.303635,-0.171382,-0.250865;;, - 94;4;-0.902762, 0.306243,-0.173476,-0.250536;;, - 95;4;-0.901798, 0.308376,-0.175188,-0.250296;;, - 96;4;-0.900939, 0.310031,-0.176518,-0.250145;;, - 97;4;-0.900186, 0.311210,-0.177465,-0.250082;;, - 98;4;-0.899538, 0.311915,-0.178030,-0.250108;;, - 99;4;-0.898995, 0.312148,-0.178218,-0.250221;;, - 100;4;-0.898529, 0.312129,-0.178203,-0.250369;;, - 101;4;-0.898123, 0.311974,-0.178083,-0.250505;;, - 102;4;-0.897787, 0.311500,-0.177714,-0.250629;;, - 103;4;-0.897530, 0.310471,-0.176914,-0.250749;;, - 104;4;-0.897357, 0.308645,-0.175495,-0.250872;;, - 105;4;-0.897262, 0.305821,-0.173300,-0.251008;;, - 106;4;-0.897234, 0.301902,-0.170254,-0.251163;;, - 107;4;-0.897256, 0.296905,-0.166370,-0.251343;;, - 108;4;-0.897310, 0.290929,-0.161726,-0.251548;;, - 109;4;-0.897382, 0.284118,-0.156432,-0.251780;;, - 110;4;-0.898747, 0.273071,-0.147731,-0.252739;;, - 111;4;-0.902699, 0.254348,-0.132832,-0.255133;;, - 112;4;-0.909075, 0.228623,-0.112274,-0.258866;;, - 113;4;-0.917385, 0.197595,-0.087420,-0.263660;;, - 114;4;-0.926782, 0.164061,-0.060520,-0.269037;;, - 115;4;-0.936168, 0.131524,-0.034396,-0.274379;;, - 116;4;-0.944448, 0.103387,-0.011788,-0.279075;;, - 117;4;-0.950774, 0.082185, 0.005254,-0.282655;;, - 118;4;-0.954664, 0.069283, 0.015629,-0.284852;;, - 119;4;-0.955956, 0.065028, 0.019051,-0.285581;;, - 120;4;-0.955563, 0.066732, 0.017692,-0.285338;;, - 121;4;-0.954344, 0.072023, 0.013468,-0.284581;;, - 122;4;-0.952272, 0.081011, 0.006293,-0.283294;;, - 123;4;-0.949401, 0.093468,-0.003651,-0.281512;;, - 124;4;-0.945885, 0.108719,-0.015825,-0.279330;;, - 125;4;-0.941975, 0.125685,-0.029369,-0.276902;;, - 126;4;-0.937957, 0.143116,-0.043284,-0.274408;;, - 127;4;-0.934091, 0.159888,-0.056672,-0.272008;;, - 128;4;-0.930562, 0.175196,-0.068893,-0.269817;;, - 129;4;-0.927475, 0.188588,-0.079583,-0.267901;;, - 130;4;-0.924471, 0.201980,-0.090274,-0.265959;;, - 131;4;-0.921176, 0.217289,-0.102494,-0.263694;;, - 132;4;-0.917661, 0.234061,-0.115883,-0.261182;;, - 133;4;-0.914046, 0.251492,-0.129797,-0.258560;;, - 134;4;-0.910502, 0.268458,-0.143341,-0.256016;;, - 135;4;-0.907216, 0.283709,-0.155515,-0.253760;;, - 136;4;-0.904353, 0.296166,-0.165459,-0.251975;;, - 137;4;-0.902014, 0.305154,-0.172634,-0.250774;;, - 138;4;-0.900233, 0.310445,-0.176858,-0.250195;;, - 139;4;-0.898995, 0.312148,-0.178218,-0.250221;;, - 140;4;-0.898123, 0.311974,-0.178083,-0.250505;;, - 141;4;-0.897530, 0.310471,-0.176914,-0.250749;;, - 142;4;-0.897262, 0.305821,-0.173300,-0.251008;;, - 143;4;-0.897256, 0.296905,-0.166370,-0.251343;;, - 144;4;-0.897382, 0.284118,-0.156432,-0.251780;;, - 145;4;-0.902699, 0.254348,-0.132832,-0.255133;;, - 146;4;-0.917385, 0.197595,-0.087420,-0.263660;;, - 147;4;-0.936168, 0.131524,-0.034396,-0.274379;;, - 148;4;-0.950774, 0.082185, 0.005254,-0.282655;;, - 149;4;-0.955956, 0.065028, 0.019051,-0.285581;;, - 150;4;-0.954344, 0.072023, 0.013468,-0.284581;;, - 151;4;-0.949401, 0.093468,-0.003651,-0.281512;;, - 152;4;-0.941975, 0.125685,-0.029369,-0.276902;;, - 153;4;-0.934091, 0.159888,-0.056672,-0.272008;;, - 154;4;-0.927475, 0.188588,-0.079583,-0.267901;;, - 155;4;-0.920860, 0.217289,-0.102494,-0.263794;;, - 156;4;-0.912976, 0.251492,-0.129797,-0.258900;;, - 157;4;-0.905550, 0.283709,-0.155515,-0.254290;;, - 158;4;-0.900607, 0.305154,-0.172634,-0.251222;;, - 159;4;-0.898995, 0.312148,-0.178218,-0.250221;;, - 160;4;-0.899067, 0.311331,-0.177426,-0.250438;;, - 161;4;-0.899300, 0.308853,-0.175036,-0.251091;;, - 162;4;-0.899718, 0.304693,-0.171046,-0.252173;;, - 163;4;-0.900348, 0.298860,-0.165486,-0.253668;;, - 164;4;-0.901216, 0.291407,-0.158432,-0.255547;;, - 165;4;-0.902351, 0.282435,-0.150013,-0.257764;;, - 166;4;-0.903778, 0.272102,-0.140414,-0.260257;;, - 167;4;-0.905517, 0.260628,-0.129879,-0.262947;;, - 168;4;-0.907585, 0.248287,-0.118706,-0.265742;;, - 169;4;-0.909990, 0.235399,-0.107237,-0.268537;;, - 170;4;-0.912732, 0.222312,-0.095830,-0.271225;;, - 171;4;-0.915799, 0.209379,-0.084846,-0.273702;;, - 172;4;-0.919176, 0.196934,-0.074620,-0.275871;;, - 173;4;-0.922838, 0.185277,-0.065442,-0.277653;;, - 174;4;-0.926757, 0.174656,-0.057547,-0.278984;;, - 175;4;-0.930901, 0.165262,-0.051111,-0.279821;;, - 176;4;-0.935242, 0.157231,-0.046250,-0.280136;;, - 177;4;-0.939749, 0.150648,-0.043030,-0.279918;;, - 178;4;-0.944395, 0.145556,-0.041472,-0.279167;;, - 179;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 180;4;-0.954518, 0.139515,-0.042405,-0.270968;;, - 181;4;-0.960866, 0.137907,-0.043202,-0.252919;;, - 182;4;-0.967873, 0.137142,-0.044137,-0.223867;;, - 183;4;-0.975010, 0.137137,-0.045453,-0.185135;;, - 184;4;-0.981564, 0.137702,-0.047429,-0.139501;;, - 185;4;-0.986775, 0.138557,-0.050318,-0.090916;;, - 186;4;-0.990019, 0.139394,-0.054279,-0.043627;;, - 187;4;-0.990935, 0.139945,-0.059354,-0.001187;;, - 188;4;-0.989443, 0.140032,-0.065480, 0.034094;;, - 189;4;-0.985659, 0.139563,-0.072538, 0.061125;;, - 190;4;-0.980508, 0.119290,-0.089264, 0.084006;;, - 191;4;-0.975169, 0.063621,-0.122264, 0.105452;;, - 192;4;-0.970614,-0.007498,-0.161096, 0.122203;;, - 193;4;-0.967784,-0.062775,-0.190236, 0.131887;;, - 194;4;-0.966901,-0.082381,-0.200394, 0.134754;;, - 195;4;-0.965323,-0.062440,-0.186275, 0.098075;;, - 196;4;-0.960880,-0.006270,-0.146509,-0.005241;;, - 197;4;-0.955175, 0.065851,-0.095448,-0.137898;;, - 198;4;-0.950732, 0.122020,-0.055682,-0.241213;;, - 199;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 200;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 201;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 202;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 203;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 204;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 205;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 206;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 207;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 208;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 209;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 210;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 211;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 212;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 213;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 214;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 215;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 216;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 217;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 218;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 219;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 220;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 221;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 222;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 223;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 224;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 225;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 226;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 227;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 228;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 229;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 230;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 231;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 232;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 233;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 234;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 235;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 236;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 237;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 238;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 239;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 240;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 241;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 242;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 243;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 244;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 245;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 246;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 247;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 248;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 249;4;-0.949155, 0.141962,-0.041563,-0.277893;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3;-0.000000, 0.690756,-0.000000;;, - 1;3;-0.000000, 0.690756,-0.000000;;, - 2;3;-0.000000, 0.690756,-0.000000;;, - 3;3;-0.000000, 0.690756,-0.000000;;, - 4;3;-0.000000, 0.690756,-0.000000;;, - 5;3;-0.000000, 0.690756,-0.000000;;, - 6;3;-0.000000, 0.690756,-0.000000;;, - 7;3;-0.000000, 0.690756,-0.000000;;, - 8;3;-0.000000, 0.690756,-0.000000;;, - 9;3;-0.000000, 0.690756,-0.000000;;, - 10;3;-0.000000, 0.690756,-0.000000;;, - 11;3;-0.000000, 0.690756,-0.000000;;, - 12;3;-0.000000, 0.690756,-0.000000;;, - 13;3;-0.000000, 0.690756,-0.000000;;, - 14;3;-0.000000, 0.690756,-0.000000;;, - 15;3;-0.000000, 0.690756,-0.000000;;, - 16;3;-0.000000, 0.690756,-0.000000;;, - 17;3;-0.000000, 0.690756,-0.000000;;, - 18;3;-0.000000, 0.690756,-0.000000;;, - 19;3;-0.000000, 0.690756,-0.000000;;, - 20;3;-0.000000, 0.690756,-0.000000;;, - 21;3;-0.000000, 0.690756,-0.000000;;, - 22;3;-0.000000, 0.690756,-0.000000;;, - 23;3;-0.000000, 0.690756,-0.000000;;, - 24;3;-0.000000, 0.690756,-0.000000;;, - 25;3;-0.000000, 0.690756,-0.000000;;, - 26;3;-0.000000, 0.690756,-0.000000;;, - 27;3;-0.000000, 0.690756,-0.000000;;, - 28;3;-0.000000, 0.690756,-0.000000;;, - 29;3;-0.000000, 0.690756,-0.000000;;, - 30;3;-0.000000, 0.690756,-0.000000;;, - 31;3;-0.000000, 0.690756,-0.000000;;, - 32;3;-0.000000, 0.690756,-0.000000;;, - 33;3;-0.000000, 0.690756,-0.000000;;, - 34;3;-0.000000, 0.690756,-0.000000;;, - 35;3;-0.000000, 0.690756,-0.000000;;, - 36;3;-0.000000, 0.690756,-0.000000;;, - 37;3;-0.000000, 0.690756,-0.000000;;, - 38;3;-0.000000, 0.690756,-0.000000;;, - 39;3;-0.000000, 0.690756,-0.000000;;, - 40;3;-0.000000, 0.690756,-0.000000;;, - 41;3;-0.000000, 0.690756,-0.000000;;, - 42;3;-0.000000, 0.690756,-0.000000;;, - 43;3;-0.000000, 0.690756,-0.000000;;, - 44;3;-0.000000, 0.690756,-0.000000;;, - 45;3;-0.000000, 0.690756,-0.000000;;, - 46;3;-0.000000, 0.690756,-0.000000;;, - 47;3;-0.000000, 0.690756,-0.000000;;, - 48;3;-0.000000, 0.690756,-0.000000;;, - 49;3;-0.000000, 0.690756,-0.000000;;, - 50;3;-0.000000, 0.690756,-0.000000;;, - 51;3;-0.000000, 0.690756,-0.000000;;, - 52;3;-0.000000, 0.690756,-0.000000;;, - 53;3;-0.000000, 0.690756,-0.000000;;, - 54;3;-0.000000, 0.690756,-0.000000;;, - 55;3;-0.000000, 0.690756,-0.000000;;, - 56;3;-0.000000, 0.690756,-0.000000;;, - 57;3;-0.000000, 0.690756,-0.000000;;, - 58;3;-0.000000, 0.690756,-0.000000;;, - 59;3;-0.000000, 0.690756,-0.000000;;, - 60;3;-0.000000, 0.690756,-0.000000;;, - 61;3;-0.000000, 0.690756,-0.000000;;, - 62;3;-0.000000, 0.690756,-0.000000;;, - 63;3;-0.000000, 0.690756,-0.000000;;, - 64;3;-0.000000, 0.690756,-0.000000;;, - 65;3;-0.000000, 0.690756,-0.000000;;, - 66;3;-0.000000, 0.690756,-0.000000;;, - 67;3;-0.000000, 0.690756,-0.000000;;, - 68;3;-0.000000, 0.690756,-0.000000;;, - 69;3;-0.000000, 0.690756,-0.000000;;, - 70;3;-0.000000, 0.690756,-0.000000;;, - 71;3;-0.000000, 0.690756,-0.000000;;, - 72;3;-0.000000, 0.690756,-0.000000;;, - 73;3;-0.000000, 0.690756,-0.000000;;, - 74;3;-0.000000, 0.690756,-0.000000;;, - 75;3;-0.000000, 0.690756,-0.000000;;, - 76;3;-0.000000, 0.690756,-0.000000;;, - 77;3;-0.000000, 0.690756,-0.000000;;, - 78;3;-0.000000, 0.690756,-0.000000;;, - 79;3;-0.000000, 0.690756,-0.000000;;, - 80;3;-0.000000, 0.690756,-0.000000;;, - 81;3;-0.000000, 0.690756,-0.000000;;, - 82;3;-0.000000, 0.690756,-0.000000;;, - 83;3;-0.000000, 0.690756,-0.000000;;, - 84;3;-0.000000, 0.690756,-0.000000;;, - 85;3;-0.000000, 0.690756,-0.000000;;, - 86;3;-0.000000, 0.690756,-0.000000;;, - 87;3;-0.000000, 0.690756,-0.000000;;, - 88;3;-0.000000, 0.690756,-0.000000;;, - 89;3;-0.000000, 0.690756,-0.000000;;, - 90;3;-0.000000, 0.690756,-0.000000;;, - 91;3;-0.000000, 0.690756,-0.000000;;, - 92;3;-0.000000, 0.690756,-0.000000;;, - 93;3;-0.000000, 0.690756,-0.000000;;, - 94;3;-0.000000, 0.690756,-0.000000;;, - 95;3;-0.000000, 0.690756,-0.000000;;, - 96;3;-0.000000, 0.690756,-0.000000;;, - 97;3;-0.000000, 0.690756,-0.000000;;, - 98;3;-0.000000, 0.690756,-0.000000;;, - 99;3;-0.000000, 0.690756,-0.000000;;, - 100;3;-0.000000, 0.690756,-0.000000;;, - 101;3;-0.000000, 0.690756,-0.000000;;, - 102;3;-0.000000, 0.690756,-0.000000;;, - 103;3;-0.000000, 0.690756,-0.000000;;, - 104;3;-0.000000, 0.690756,-0.000000;;, - 105;3;-0.000000, 0.690756,-0.000000;;, - 106;3;-0.000000, 0.690756,-0.000000;;, - 107;3;-0.000000, 0.690756,-0.000000;;, - 108;3;-0.000000, 0.690756,-0.000000;;, - 109;3;-0.000000, 0.690756,-0.000000;;, - 110;3;-0.000000, 0.690756,-0.000000;;, - 111;3;-0.000000, 0.690756,-0.000000;;, - 112;3;-0.000000, 0.690756,-0.000000;;, - 113;3;-0.000000, 0.690756,-0.000000;;, - 114;3;-0.000000, 0.690756,-0.000000;;, - 115;3;-0.000000, 0.690756,-0.000000;;, - 116;3;-0.000000, 0.690756,-0.000000;;, - 117;3;-0.000000, 0.690756,-0.000000;;, - 118;3;-0.000000, 0.690756,-0.000000;;, - 119;3;-0.000000, 0.690756,-0.000000;;, - 120;3;-0.000000, 0.690756,-0.000000;;, - 121;3;-0.000000, 0.690756,-0.000000;;, - 122;3;-0.000000, 0.690756,-0.000000;;, - 123;3;-0.000000, 0.690756,-0.000000;;, - 124;3;-0.000000, 0.690756,-0.000000;;, - 125;3;-0.000000, 0.690756,-0.000000;;, - 126;3;-0.000000, 0.690756,-0.000000;;, - 127;3;-0.000000, 0.690756,-0.000000;;, - 128;3;-0.000000, 0.690756,-0.000000;;, - 129;3;-0.000000, 0.690756,-0.000000;;, - 130;3;-0.000000, 0.690756,-0.000000;;, - 131;3;-0.000000, 0.690756,-0.000000;;, - 132;3;-0.000000, 0.690756,-0.000000;;, - 133;3;-0.000000, 0.690756,-0.000000;;, - 134;3;-0.000000, 0.690756,-0.000000;;, - 135;3;-0.000000, 0.690756,-0.000000;;, - 136;3;-0.000000, 0.690756,-0.000000;;, - 137;3;-0.000000, 0.690756,-0.000000;;, - 138;3;-0.000000, 0.690756,-0.000000;;, - 139;3;-0.000000, 0.690756,-0.000000;;, - 140;3;-0.000000, 0.690756,-0.000000;;, - 141;3;-0.000000, 0.690756,-0.000000;;, - 142;3;-0.000000, 0.690756,-0.000000;;, - 143;3;-0.000000, 0.690756,-0.000000;;, - 144;3;-0.000000, 0.690756,-0.000000;;, - 145;3;-0.000000, 0.690756,-0.000000;;, - 146;3;-0.000000, 0.690756,-0.000000;;, - 147;3;-0.000000, 0.690756,-0.000000;;, - 148;3;-0.000000, 0.690756,-0.000000;;, - 149;3;-0.000000, 0.690756,-0.000000;;, - 150;3;-0.000000, 0.690756,-0.000000;;, - 151;3;-0.000000, 0.690756,-0.000000;;, - 152;3;-0.000000, 0.690756,-0.000000;;, - 153;3;-0.000000, 0.690756,-0.000000;;, - 154;3;-0.000000, 0.690756,-0.000000;;, - 155;3;-0.000000, 0.690756,-0.000000;;, - 156;3;-0.000000, 0.690756,-0.000000;;, - 157;3;-0.000000, 0.690756,-0.000000;;, - 158;3;-0.000000, 0.690756,-0.000000;;, - 159;3;-0.000000, 0.690756,-0.000000;;, - 160;3;-0.000000, 0.690756,-0.000000;;, - 161;3;-0.000000, 0.690756,-0.000000;;, - 162;3;-0.000000, 0.690756,-0.000000;;, - 163;3;-0.000000, 0.690756,-0.000000;;, - 164;3;-0.000000, 0.690756,-0.000000;;, - 165;3;-0.000000, 0.690756,-0.000000;;, - 166;3;-0.000000, 0.690756,-0.000000;;, - 167;3;-0.000000, 0.690756,-0.000000;;, - 168;3;-0.000000, 0.690756,-0.000000;;, - 169;3;-0.000000, 0.690756,-0.000000;;, - 170;3;-0.000000, 0.690756,-0.000000;;, - 171;3;-0.000000, 0.690756,-0.000000;;, - 172;3;-0.000000, 0.690756,-0.000000;;, - 173;3;-0.000000, 0.690756,-0.000000;;, - 174;3;-0.000000, 0.690756,-0.000000;;, - 175;3;-0.000000, 0.690756,-0.000000;;, - 176;3;-0.000000, 0.690756,-0.000000;;, - 177;3;-0.000000, 0.690756,-0.000000;;, - 178;3;-0.000000, 0.690756,-0.000000;;, - 179;3;-0.000000, 0.690756,-0.000000;;, - 180;3; 0.000000, 0.690756, 0.000000;;, - 181;3; 0.000000, 0.690756, 0.000000;;, - 182;3; 0.000000, 0.690756,-0.000000;;, - 183;3; 0.000000, 0.690756, 0.000000;;, - 184;3; 0.000000, 0.690756, 0.000000;;, - 185;3; 0.000000, 0.690756, 0.000000;;, - 186;3; 0.000000, 0.690756, 0.000000;;, - 187;3; 0.000000, 0.690756, 0.000000;;, - 188;3; 0.000000, 0.690756, 0.000000;;, - 189;3; 0.000000, 0.690756, 0.000000;;, - 190;3; 0.000000, 0.690756,-0.000001;;, - 191;3;-0.000000, 0.690756,-0.000000;;, - 192;3;-0.000000, 0.690756, 0.000000;;, - 193;3; 0.000000, 0.690756,-0.000000;;, - 194;3; 0.000000, 0.690756, 0.000000;;, - 195;3; 0.000000, 0.690756,-0.000000;;, - 196;3; 0.000000, 0.690756,-0.000000;;, - 197;3;-0.000000, 0.690756, 0.000000;;, - 198;3;-0.000000, 0.690756,-0.000000;;, - 199;3;-0.000000, 0.690756,-0.000000;;, - 200;3;-0.000000, 0.690756,-0.000000;;, - 201;3;-0.000000, 0.690756,-0.000000;;, - 202;3;-0.000000, 0.690756,-0.000000;;, - 203;3;-0.000000, 0.690756,-0.000000;;, - 204;3;-0.000000, 0.690756,-0.000000;;, - 205;3;-0.000000, 0.690756,-0.000000;;, - 206;3;-0.000000, 0.690756,-0.000000;;, - 207;3;-0.000000, 0.690756,-0.000000;;, - 208;3;-0.000000, 0.690756,-0.000000;;, - 209;3;-0.000000, 0.690756,-0.000000;;, - 210;3;-0.000000, 0.690756,-0.000000;;, - 211;3;-0.000000, 0.690756,-0.000000;;, - 212;3;-0.000000, 0.690756,-0.000000;;, - 213;3;-0.000000, 0.690756,-0.000000;;, - 214;3;-0.000000, 0.690756,-0.000000;;, - 215;3;-0.000000, 0.690756,-0.000000;;, - 216;3;-0.000000, 0.690756,-0.000000;;, - 217;3;-0.000000, 0.690756,-0.000000;;, - 218;3;-0.000000, 0.690756,-0.000000;;, - 219;3;-0.000000, 0.690756,-0.000000;;, - 220;3;-0.000000, 0.690756,-0.000000;;, - 221;3;-0.000000, 0.690756,-0.000000;;, - 222;3;-0.000000, 0.690756,-0.000000;;, - 223;3;-0.000000, 0.690756,-0.000000;;, - 224;3;-0.000000, 0.690756,-0.000000;;, - 225;3;-0.000000, 0.690756,-0.000000;;, - 226;3;-0.000000, 0.690756,-0.000000;;, - 227;3;-0.000000, 0.690756,-0.000000;;, - 228;3;-0.000000, 0.690756,-0.000000;;, - 229;3;-0.000000, 0.690756,-0.000000;;, - 230;3;-0.000000, 0.690756,-0.000000;;, - 231;3;-0.000000, 0.690756,-0.000000;;, - 232;3;-0.000000, 0.690756,-0.000000;;, - 233;3;-0.000000, 0.690756,-0.000000;;, - 234;3;-0.000000, 0.690756,-0.000000;;, - 235;3;-0.000000, 0.690756,-0.000000;;, - 236;3;-0.000000, 0.690756,-0.000000;;, - 237;3;-0.000000, 0.690756,-0.000000;;, - 238;3;-0.000000, 0.690756,-0.000000;;, - 239;3;-0.000000, 0.690756,-0.000000;;, - 240;3;-0.000000, 0.690756,-0.000000;;, - 241;3;-0.000000, 0.690756,-0.000000;;, - 242;3;-0.000000, 0.690756,-0.000000;;, - 243;3;-0.000000, 0.690756,-0.000000;;, - 244;3;-0.000000, 0.690756,-0.000000;;, - 245;3;-0.000000, 0.690756,-0.000000;;, - 246;3;-0.000000, 0.690756,-0.000000;;, - 247;3;-0.000000, 0.690756,-0.000000;;, - 248;3;-0.000000, 0.690756,-0.000000;;, - 249;3;-0.000000, 0.690756,-0.000000;;; - } - } - Animation { - {Armature_Bone_036} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 1;4;-0.946895,-0.321507, 0.000140, 0.000004;;, - 2;4;-0.946528,-0.322483, 0.000562, 0.000017;;, - 3;4;-0.945914,-0.324114, 0.001268, 0.000038;;, - 4;4;-0.945059,-0.326387, 0.002252, 0.000068;;, - 5;4;-0.943975,-0.329269, 0.003499, 0.000105;;, - 6;4;-0.942684,-0.332700, 0.004985, 0.000150;;, - 7;4;-0.941217,-0.336599, 0.006672, 0.000201;;, - 8;4;-0.939615,-0.340856, 0.008515, 0.000256;;, - 9;4;-0.937930,-0.345337, 0.010454, 0.000314;;, - 10;4;-0.936215,-0.349894, 0.012427, 0.000373;;, - 11;4;-0.934529,-0.354375, 0.014366, 0.000432;;, - 12;4;-0.932927,-0.358632, 0.016209, 0.000487;;, - 13;4;-0.931460,-0.362531, 0.017896, 0.000538;;, - 14;4;-0.930169,-0.365962, 0.019382, 0.000583;;, - 15;4;-0.929085,-0.368844, 0.020629, 0.000620;;, - 16;4;-0.928230,-0.371117, 0.021612, 0.000650;;, - 17;4;-0.927616,-0.372748, 0.022319, 0.000671;;, - 18;4;-0.927249,-0.373724, 0.022741, 0.000684;;, - 19;4;-0.927127,-0.374047, 0.022881, 0.000688;;, - 20;4;-0.927161,-0.373958, 0.022842, 0.000687;;, - 21;4;-0.927264,-0.373683, 0.022723, 0.000683;;, - 22;4;-0.927440,-0.373216, 0.022521, 0.000677;;, - 23;4;-0.927690,-0.372551, 0.022233, 0.000668;;, - 24;4;-0.928015,-0.371687, 0.021859, 0.000657;;, - 25;4;-0.928414,-0.370628, 0.021401, 0.000643;;, - 26;4;-0.928883,-0.369382, 0.020862, 0.000627;;, - 27;4;-0.929416,-0.367963, 0.020248, 0.000609;;, - 28;4;-0.930007,-0.366394, 0.019568, 0.000588;;, - 29;4;-0.930644,-0.364701, 0.018836, 0.000566;;, - 30;4;-0.931315,-0.362916, 0.018063, 0.000543;;, - 31;4;-0.932009,-0.361072, 0.017265, 0.000519;;, - 32;4;-0.932712,-0.359203, 0.016456, 0.000495;;, - 33;4;-0.933412,-0.357343, 0.015651, 0.000470;;, - 34;4;-0.934099,-0.355519, 0.014861, 0.000447;;, - 35;4;-0.934762,-0.353755, 0.014098, 0.000424;;, - 36;4;-0.935396,-0.352071, 0.013369, 0.000402;;, - 37;4;-0.935994,-0.350480, 0.012680, 0.000381;;, - 38;4;-0.936554,-0.348993, 0.012037, 0.000362;;, - 39;4;-0.937072,-0.347615, 0.011440, 0.000344;;, - 40;4;-0.937590,-0.346238, 0.010844, 0.000326;;, - 41;4;-0.938150,-0.344751, 0.010200, 0.000307;;, - 42;4;-0.938748,-0.343160, 0.009512, 0.000286;;, - 43;4;-0.939382,-0.341476, 0.008783, 0.000264;;, - 44;4;-0.940046,-0.339712, 0.008020, 0.000241;;, - 45;4;-0.940732,-0.337888, 0.007230, 0.000217;;, - 46;4;-0.941432,-0.336028, 0.006425, 0.000193;;, - 47;4;-0.942135,-0.334159, 0.005616, 0.000169;;, - 48;4;-0.942829,-0.332315, 0.004818, 0.000145;;, - 49;4;-0.943501,-0.330530, 0.004045, 0.000122;;, - 50;4;-0.944138,-0.328837, 0.003312, 0.000100;;, - 51;4;-0.944728,-0.327267, 0.002633, 0.000079;;, - 52;4;-0.945262,-0.325849, 0.002019, 0.000061;;, - 53;4;-0.945731,-0.324603, 0.001480, 0.000044;;, - 54;4;-0.946129,-0.323543, 0.001021, 0.000031;;, - 55;4;-0.946454,-0.322680, 0.000648, 0.000019;;, - 56;4;-0.946704,-0.322015, 0.000360, 0.000011;;, - 57;4;-0.946880,-0.321548, 0.000158, 0.000005;;, - 58;4;-0.946983,-0.321273, 0.000039, 0.000001;;, - 59;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 60;4;-0.946872,-0.321473, 0.000130, 0.000004;;, - 61;4;-0.946436,-0.322344, 0.000521, 0.000016;;, - 62;4;-0.945706,-0.323803, 0.001176, 0.000035;;, - 63;4;-0.944680,-0.325852, 0.002096, 0.000063;;, - 64;4;-0.943358,-0.328492, 0.003281, 0.000099;;, - 65;4;-0.941743,-0.331718, 0.004730, 0.000142;;, - 66;4;-0.939837,-0.335526, 0.006440, 0.000194;;, - 67;4;-0.937645,-0.339903, 0.008405, 0.000253;;, - 68;4;-0.935175,-0.344836, 0.010621, 0.000319;;, - 69;4;-0.932437,-0.350305, 0.013076, 0.000393;;, - 70;4;-0.929443,-0.356286, 0.015762, 0.000474;;, - 71;4;-0.926208,-0.362749, 0.018664, 0.000561;;, - 72;4;-0.922749,-0.369658, 0.021766, 0.000654;;, - 73;4;-0.919087,-0.376973, 0.025051, 0.000753;;, - 74;4;-0.915244,-0.384647, 0.028496, 0.000857;;, - 75;4;-0.911248,-0.392630, 0.032081, 0.000964;;, - 76;4;-0.907124,-0.400866, 0.035779, 0.001075;;, - 77;4;-0.902904,-0.409295, 0.039564, 0.001189;;, - 78;4;-0.898619,-0.417855, 0.043408, 0.001305;;, - 79;4;-0.894301,-0.426480, 0.047281, 0.001421;;, - 80;4;-0.889982,-0.435106, 0.051154, 0.001538;;, - 81;4;-0.885697,-0.443666, 0.054997, 0.001653;;, - 82;4;-0.881477,-0.452095, 0.058782, 0.001767;;, - 83;4;-0.877353,-0.460331, 0.062480, 0.001878;;, - 84;4;-0.873357,-0.468314, 0.066065, 0.001986;;, - 85;4;-0.869515,-0.475988, 0.069511, 0.002089;;, - 86;4;-0.865853,-0.483303, 0.072795, 0.002188;;, - 87;4;-0.862394,-0.490212, 0.075898, 0.002281;;, - 88;4;-0.859158,-0.496674, 0.078799, 0.002368;;, - 89;4;-0.856164,-0.502655, 0.081485, 0.002449;;, - 90;4;-0.853426,-0.508124, 0.083941, 0.002523;;, - 91;4;-0.850956,-0.513057, 0.086156, 0.002590;;, - 92;4;-0.848764,-0.517435, 0.088122, 0.002649;;, - 93;4;-0.846858,-0.521242, 0.089831, 0.002700;;, - 94;4;-0.845243,-0.524469, 0.091280, 0.002744;;, - 95;4;-0.843921,-0.527108, 0.092465, 0.002779;;, - 96;4;-0.842896,-0.529157, 0.093385, 0.002807;;, - 97;4;-0.842165,-0.530616, 0.094040, 0.002827;;, - 98;4;-0.841729,-0.531488, 0.094432, 0.002838;;, - 99;4;-0.841584,-0.531777, 0.094561, 0.002842;;, - 100;4;-0.842588,-0.529085, 0.093397, 0.002807;;, - 101;4;-0.845705,-0.520721, 0.089781, 0.002699;;, - 102;4;-0.851001,-0.506515, 0.083639, 0.002514;;, - 103;4;-0.858341,-0.486826, 0.075126, 0.002258;;, - 104;4;-0.867326,-0.462721, 0.064703, 0.001945;;, - 105;4;-0.877323,-0.435904, 0.053108, 0.001596;;, - 106;4;-0.887593,-0.408353, 0.041196, 0.001238;;, - 107;4;-0.897475,-0.381844, 0.029734, 0.000894;;, - 108;4;-0.906495,-0.357647, 0.019272, 0.000579;;, - 109;4;-0.914386,-0.336481, 0.010120, 0.000304;;, - 110;4;-0.922276,-0.315314, 0.000968, 0.000029;;, - 111;4;-0.931296,-0.291117,-0.009494,-0.000285;;, - 112;4;-0.941178,-0.264608,-0.020956,-0.000630;;, - 113;4;-0.951448,-0.237057,-0.032869,-0.000988;;, - 114;4;-0.961445,-0.210240,-0.044464,-0.001336;;, - 115;4;-0.970431,-0.186135,-0.054886,-0.001650;;, - 116;4;-0.977770,-0.166446,-0.063399,-0.001906;;, - 117;4;-0.983066,-0.152240,-0.069542,-0.002090;;, - 118;4;-0.986184,-0.143877,-0.073158,-0.002199;;, - 119;4;-0.987187,-0.141184,-0.074322,-0.002234;;, - 120;4;-0.986184,-0.143877,-0.073158,-0.002199;;, - 121;4;-0.983066,-0.152240,-0.069542,-0.002090;;, - 122;4;-0.977770,-0.166446,-0.063399,-0.001906;;, - 123;4;-0.970431,-0.186135,-0.054886,-0.001650;;, - 124;4;-0.961445,-0.210240,-0.044464,-0.001336;;, - 125;4;-0.951448,-0.237057,-0.032869,-0.000988;;, - 126;4;-0.941178,-0.264608,-0.020956,-0.000630;;, - 127;4;-0.931296,-0.291117,-0.009494,-0.000285;;, - 128;4;-0.922276,-0.315314, 0.000968, 0.000029;;, - 129;4;-0.914386,-0.336481, 0.010120, 0.000304;;, - 130;4;-0.906495,-0.357647, 0.019272, 0.000579;;, - 131;4;-0.897475,-0.381844, 0.029734, 0.000894;;, - 132;4;-0.887593,-0.408353, 0.041196, 0.001238;;, - 133;4;-0.877323,-0.435904, 0.053108, 0.001596;;, - 134;4;-0.867326,-0.462721, 0.064703, 0.001945;;, - 135;4;-0.858341,-0.486826, 0.075126, 0.002258;;, - 136;4;-0.851001,-0.506515, 0.083639, 0.002514;;, - 137;4;-0.845705,-0.520721, 0.089781, 0.002699;;, - 138;4;-0.842588,-0.529085, 0.093397, 0.002807;;, - 139;4;-0.841584,-0.531777, 0.094561, 0.002842;;, - 140;4;-0.845705,-0.520721, 0.089781, 0.002699;;, - 141;4;-0.858341,-0.486826, 0.075126, 0.002258;;, - 142;4;-0.877323,-0.435904, 0.053108, 0.001596;;, - 143;4;-0.897475,-0.381844, 0.029734, 0.000894;;, - 144;4;-0.914386,-0.336481, 0.010120, 0.000304;;, - 145;4;-0.931296,-0.291117,-0.009494,-0.000285;;, - 146;4;-0.951448,-0.237057,-0.032869,-0.000988;;, - 147;4;-0.970431,-0.186135,-0.054886,-0.001650;;, - 148;4;-0.983066,-0.152240,-0.069542,-0.002090;;, - 149;4;-0.987187,-0.141184,-0.074322,-0.002234;;, - 150;4;-0.983066,-0.152240,-0.069542,-0.002090;;, - 151;4;-0.970431,-0.186135,-0.054886,-0.001650;;, - 152;4;-0.951448,-0.237057,-0.032869,-0.000988;;, - 153;4;-0.931296,-0.291117,-0.009494,-0.000285;;, - 154;4;-0.914386,-0.336481, 0.010120, 0.000304;;, - 155;4;-0.897475,-0.381844, 0.029734, 0.000894;;, - 156;4;-0.877323,-0.435904, 0.053108, 0.001596;;, - 157;4;-0.858341,-0.486826, 0.075126, 0.002258;;, - 158;4;-0.845705,-0.520721, 0.089781, 0.002699;;, - 159;4;-0.841584,-0.531777, 0.094561, 0.002842;;, - 160;4;-0.842165,-0.530616, 0.094040, 0.002827;;, - 161;4;-0.843921,-0.527108, 0.092465, 0.002779;;, - 162;4;-0.846858,-0.521242, 0.089831, 0.002700;;, - 163;4;-0.850956,-0.513057, 0.086156, 0.002590;;, - 164;4;-0.856164,-0.502655, 0.081485, 0.002449;;, - 165;4;-0.862394,-0.490212, 0.075898, 0.002281;;, - 166;4;-0.869515,-0.475988, 0.069511, 0.002089;;, - 167;4;-0.877353,-0.460331, 0.062480, 0.001878;;, - 168;4;-0.885697,-0.443666, 0.054997, 0.001653;;, - 169;4;-0.894301,-0.426480, 0.047281, 0.001421;;, - 170;4;-0.902904,-0.409295, 0.039564, 0.001189;;, - 171;4;-0.911248,-0.392630, 0.032081, 0.000964;;, - 172;4;-0.919087,-0.376973, 0.025051, 0.000753;;, - 173;4;-0.926208,-0.362749, 0.018664, 0.000561;;, - 174;4;-0.932437,-0.350305, 0.013076, 0.000393;;, - 175;4;-0.937645,-0.339903, 0.008405, 0.000253;;, - 176;4;-0.941743,-0.331718, 0.004730, 0.000142;;, - 177;4;-0.944680,-0.325852, 0.002096, 0.000063;;, - 178;4;-0.946436,-0.322344, 0.000521, 0.000016;;, - 179;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 180;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 181;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 182;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 183;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 184;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 185;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 186;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 187;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 188;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 189;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 190;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 191;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 192;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 193;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 194;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 195;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 196;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 197;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 198;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 199;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 200;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 201;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 202;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 203;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 204;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 205;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 206;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 207;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 208;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 209;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 210;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 211;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 212;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 213;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 214;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 215;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 216;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 217;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 218;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 219;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 220;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 221;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 222;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 223;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 224;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 225;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 226;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 227;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 228;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 229;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 230;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 231;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 232;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 233;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 234;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 235;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 236;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 237;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 238;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 239;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 240;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 241;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 242;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 243;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 244;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 245;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 246;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 247;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 248;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 249;4;-0.947017,-0.321184,-0.000000,-0.000000;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3;-0.000000, 1.279915,-0.000000;;, - 1;3;-0.000000, 1.279915,-0.000000;;, - 2;3;-0.000000, 1.279915,-0.000000;;, - 3;3;-0.000000, 1.279915,-0.000000;;, - 4;3;-0.000000, 1.279915,-0.000000;;, - 5;3;-0.000000, 1.279915,-0.000000;;, - 6;3;-0.000000, 1.279915,-0.000000;;, - 7;3;-0.000000, 1.279915,-0.000000;;, - 8;3;-0.000000, 1.279915,-0.000000;;, - 9;3;-0.000000, 1.279915,-0.000000;;, - 10;3;-0.000000, 1.279915,-0.000000;;, - 11;3;-0.000000, 1.279915,-0.000000;;, - 12;3;-0.000000, 1.279915,-0.000000;;, - 13;3;-0.000000, 1.279915,-0.000000;;, - 14;3;-0.000000, 1.279915,-0.000000;;, - 15;3;-0.000000, 1.279915,-0.000000;;, - 16;3;-0.000000, 1.279915,-0.000000;;, - 17;3;-0.000000, 1.279915,-0.000000;;, - 18;3;-0.000000, 1.279915,-0.000000;;, - 19;3;-0.000000, 1.279915,-0.000000;;, - 20;3;-0.000000, 1.279915,-0.000000;;, - 21;3;-0.000000, 1.279915,-0.000000;;, - 22;3;-0.000000, 1.279915,-0.000000;;, - 23;3;-0.000000, 1.279915,-0.000000;;, - 24;3;-0.000000, 1.279915,-0.000000;;, - 25;3;-0.000000, 1.279915,-0.000000;;, - 26;3;-0.000000, 1.279915,-0.000000;;, - 27;3;-0.000000, 1.279915,-0.000000;;, - 28;3;-0.000000, 1.279915,-0.000000;;, - 29;3;-0.000000, 1.279915,-0.000000;;, - 30;3;-0.000000, 1.279915,-0.000000;;, - 31;3;-0.000000, 1.279915,-0.000000;;, - 32;3;-0.000000, 1.279915,-0.000000;;, - 33;3;-0.000000, 1.279915,-0.000000;;, - 34;3;-0.000000, 1.279915,-0.000000;;, - 35;3;-0.000000, 1.279915,-0.000000;;, - 36;3;-0.000000, 1.279915,-0.000000;;, - 37;3;-0.000000, 1.279915,-0.000000;;, - 38;3;-0.000000, 1.279915,-0.000000;;, - 39;3;-0.000000, 1.279915,-0.000000;;, - 40;3;-0.000000, 1.279915,-0.000000;;, - 41;3;-0.000000, 1.279915,-0.000000;;, - 42;3;-0.000000, 1.279915,-0.000000;;, - 43;3;-0.000000, 1.279915,-0.000000;;, - 44;3;-0.000000, 1.279915,-0.000000;;, - 45;3;-0.000000, 1.279915,-0.000000;;, - 46;3;-0.000000, 1.279915,-0.000000;;, - 47;3;-0.000000, 1.279915,-0.000000;;, - 48;3;-0.000000, 1.279915,-0.000000;;, - 49;3;-0.000000, 1.279915,-0.000000;;, - 50;3;-0.000000, 1.279915,-0.000000;;, - 51;3;-0.000000, 1.279915,-0.000000;;, - 52;3;-0.000000, 1.279915,-0.000000;;, - 53;3;-0.000000, 1.279915,-0.000000;;, - 54;3;-0.000000, 1.279915,-0.000000;;, - 55;3;-0.000000, 1.279915,-0.000000;;, - 56;3;-0.000000, 1.279915,-0.000000;;, - 57;3;-0.000000, 1.279915,-0.000000;;, - 58;3;-0.000000, 1.279915,-0.000000;;, - 59;3;-0.000000, 1.279915,-0.000000;;, - 60;3;-0.000000, 1.279916,-0.000000;;, - 61;3;-0.000000, 1.279916,-0.000000;;, - 62;3; 0.000000, 1.279916, 0.000000;;, - 63;3;-0.000000, 1.279915, 0.000000;;, - 64;3;-0.000000, 1.279916, 0.000000;;, - 65;3;-0.000000, 1.279916,-0.000000;;, - 66;3; 0.000000, 1.279916,-0.000000;;, - 67;3;-0.000000, 1.279916,-0.000000;;, - 68;3; 0.000000, 1.279916,-0.000000;;, - 69;3; 0.000000, 1.279916, 0.000000;;, - 70;3; 0.000000, 1.279915,-0.000000;;, - 71;3; 0.000000, 1.279916,-0.000000;;, - 72;3;-0.000000, 1.279916,-0.000000;;, - 73;3;-0.000000, 1.279916,-0.000000;;, - 74;3;-0.000000, 1.279915, 0.000000;;, - 75;3;-0.000000, 1.279916, 0.000000;;, - 76;3;-0.000000, 1.279916,-0.000000;;, - 77;3;-0.000000, 1.279916, 0.000000;;, - 78;3;-0.000000, 1.279916,-0.000000;;, - 79;3; 0.000000, 1.279916, 0.000000;;, - 80;3;-0.000000, 1.279916, 0.000000;;, - 81;3;-0.000000, 1.279915, 0.000000;;, - 82;3;-0.000000, 1.279916,-0.000000;;, - 83;3; 0.000000, 1.279915,-0.000000;;, - 84;3; 0.000000, 1.279916,-0.000000;;, - 85;3;-0.000000, 1.279915, 0.000000;;, - 86;3; 0.000000, 1.279916, 0.000000;;, - 87;3; 0.000000, 1.279916, 0.000000;;, - 88;3; 0.000000, 1.279916,-0.000000;;, - 89;3; 0.000000, 1.279916, 0.000000;;, - 90;3;-0.000000, 1.279916, 0.000000;;, - 91;3; 0.000000, 1.279915,-0.000000;;, - 92;3;-0.000000, 1.279916,-0.000000;;, - 93;3;-0.000000, 1.279916, 0.000000;;, - 94;3; 0.000000, 1.279916,-0.000000;;, - 95;3; 0.000000, 1.279916, 0.000000;;, - 96;3;-0.000000, 1.279916,-0.000000;;, - 97;3; 0.000000, 1.279916, 0.000000;;, - 98;3; 0.000000, 1.279915, 0.000000;;, - 99;3; 0.000000, 1.279916, 0.000000;;, - 100;3; 0.000000, 1.279916,-0.000000;;, - 101;3; 0.000000, 1.279916, 0.000000;;, - 102;3; 0.000000, 1.279916,-0.000000;;, - 103;3; 0.000000, 1.279916, 0.000000;;, - 104;3;-0.000000, 1.279916,-0.000000;;, - 105;3;-0.000000, 1.279916,-0.000000;;, - 106;3; 0.000000, 1.279916,-0.000000;;, - 107;3; 0.000000, 1.279916, 0.000000;;, - 108;3;-0.000000, 1.279916, 0.000000;;, - 109;3; 0.000000, 1.279916,-0.000000;;, - 110;3; 0.000000, 1.279916, 0.000000;;, - 111;3;-0.000000, 1.279916, 0.000000;;, - 112;3; 0.000000, 1.279916,-0.000000;;, - 113;3;-0.000000, 1.279915,-0.000000;;, - 114;3;-0.000000, 1.279916, 0.000000;;, - 115;3;-0.000000, 1.279915,-0.000000;;, - 116;3;-0.000000, 1.279916, 0.000000;;, - 117;3;-0.000000, 1.279916, 0.000000;;, - 118;3; 0.000000, 1.279916,-0.000000;;, - 119;3; 0.000000, 1.279916, 0.000000;;, - 120;3; 0.000000, 1.279916, 0.000000;;, - 121;3; 0.000000, 1.279915, 0.000000;;, - 122;3; 0.000000, 1.279916,-0.000000;;, - 123;3; 0.000000, 1.279916, 0.000000;;, - 124;3;-0.000000, 1.279916, 0.000000;;, - 125;3; 0.000000, 1.279915,-0.000000;;, - 126;3;-0.000000, 1.279916, 0.000000;;, - 127;3;-0.000000, 1.279915, 0.000000;;, - 128;3; 0.000000, 1.279916,-0.000000;;, - 129;3; 0.000000, 1.279916, 0.000000;;, - 130;3;-0.000000, 1.279916,-0.000000;;, - 131;3; 0.000000, 1.279916, 0.000000;;, - 132;3; 0.000000, 1.279916, 0.000000;;, - 133;3; 0.000000, 1.279916,-0.000000;;, - 134;3; 0.000000, 1.279916,-0.000000;;, - 135;3; 0.000000, 1.279916,-0.000000;;, - 136;3;-0.000000, 1.279915,-0.000000;;, - 137;3; 0.000000, 1.279916, 0.000000;;, - 138;3;-0.000000, 1.279916, 0.000000;;, - 139;3; 0.000000, 1.279916, 0.000000;;, - 140;3; 0.000000, 1.279916, 0.000000;;, - 141;3; 0.000000, 1.279916, 0.000000;;, - 142;3;-0.000000, 1.279916,-0.000000;;, - 143;3; 0.000000, 1.279916, 0.000000;;, - 144;3; 0.000000, 1.279916,-0.000000;;, - 145;3;-0.000000, 1.279916, 0.000000;;, - 146;3;-0.000000, 1.279915,-0.000000;;, - 147;3;-0.000000, 1.279915,-0.000000;;, - 148;3;-0.000000, 1.279916, 0.000000;;, - 149;3; 0.000000, 1.279916, 0.000000;;, - 150;3; 0.000000, 1.279915, 0.000000;;, - 151;3; 0.000000, 1.279916, 0.000000;;, - 152;3; 0.000000, 1.279915,-0.000000;;, - 153;3;-0.000000, 1.279915, 0.000000;;, - 154;3; 0.000000, 1.279916, 0.000000;;, - 155;3; 0.000000, 1.279916,-0.000000;;, - 156;3; 0.000000, 1.279916,-0.000000;;, - 157;3; 0.000000, 1.279916, 0.000000;;, - 158;3; 0.000000, 1.279916, 0.000000;;, - 159;3; 0.000000, 1.279916, 0.000000;;, - 160;3; 0.000000, 1.279916,-0.000000;;, - 161;3; 0.000000, 1.279915, 0.000000;;, - 162;3; 0.000000, 1.279916,-0.000000;;, - 163;3; 0.000000, 1.279915,-0.000000;;, - 164;3; 0.000000, 1.279915, 0.000000;;, - 165;3; 0.000000, 1.279916, 0.000000;;, - 166;3;-0.000000, 1.279916,-0.000000;;, - 167;3; 0.000000, 1.279915, 0.000000;;, - 168;3; 0.000000, 1.279916,-0.000000;;, - 169;3;-0.000000, 1.279915, 0.000000;;, - 170;3; 0.000000, 1.279916, 0.000000;;, - 171;3; 0.000000, 1.279916, 0.000000;;, - 172;3; 0.000000, 1.279915, 0.000000;;, - 173;3; 0.000000, 1.279915,-0.000000;;, - 174;3; 0.000000, 1.279916,-0.000000;;, - 175;3; 0.000000, 1.279916,-0.000000;;, - 176;3; 0.000000, 1.279915, 0.000000;;, - 177;3;-0.000000, 1.279916,-0.000000;;, - 178;3; 0.000000, 1.279915, 0.000000;;, - 179;3;-0.000000, 1.279915,-0.000000;;, - 180;3; 0.000000, 1.279916,-0.000000;;, - 181;3; 0.000000, 1.279916, 0.000000;;, - 182;3; 0.000000, 1.279915, 0.000000;;, - 183;3; 0.000000, 1.279916,-0.000000;;, - 184;3;-0.000000, 1.279916, 0.000000;;, - 185;3; 0.000000, 1.279915, 0.000000;;, - 186;3;-0.000000, 1.279916, 0.000001;;, - 187;3; 0.000000, 1.279915, 0.000000;;, - 188;3;-0.000000, 1.279916, 0.000000;;, - 189;3;-0.000000, 1.279916, 0.000000;;, - 190;3;-0.000000, 1.279916,-0.000000;;, - 191;3; 0.000000, 1.279916, 0.000000;;, - 192;3; 0.000000, 1.279915, 0.000000;;, - 193;3;-0.000000, 1.279916, 0.000000;;, - 194;3;-0.000000, 1.279915, 0.000000;;, - 195;3; 0.000000, 1.279916, 0.000000;;, - 196;3; 0.000000, 1.279916,-0.000000;;, - 197;3; 0.000000, 1.279916,-0.000000;;, - 198;3; 0.000000, 1.279916, 0.000000;;, - 199;3;-0.000000, 1.279915,-0.000000;;, - 200;3;-0.000000, 1.279915,-0.000000;;, - 201;3;-0.000000, 1.279915,-0.000000;;, - 202;3;-0.000000, 1.279915,-0.000000;;, - 203;3;-0.000000, 1.279915,-0.000000;;, - 204;3;-0.000000, 1.279915,-0.000000;;, - 205;3;-0.000000, 1.279915,-0.000000;;, - 206;3;-0.000000, 1.279915,-0.000000;;, - 207;3;-0.000000, 1.279915,-0.000000;;, - 208;3;-0.000000, 1.279915,-0.000000;;, - 209;3;-0.000000, 1.279915,-0.000000;;, - 210;3;-0.000000, 1.279915,-0.000000;;, - 211;3;-0.000000, 1.279915,-0.000000;;, - 212;3;-0.000000, 1.279915,-0.000000;;, - 213;3;-0.000000, 1.279915,-0.000000;;, - 214;3;-0.000000, 1.279915,-0.000000;;, - 215;3;-0.000000, 1.279915,-0.000000;;, - 216;3;-0.000000, 1.279915,-0.000000;;, - 217;3;-0.000000, 1.279915,-0.000000;;, - 218;3;-0.000000, 1.279915,-0.000000;;, - 219;3;-0.000000, 1.279915,-0.000000;;, - 220;3;-0.000000, 1.279915,-0.000000;;, - 221;3;-0.000000, 1.279915,-0.000000;;, - 222;3;-0.000000, 1.279915,-0.000000;;, - 223;3;-0.000000, 1.279915,-0.000000;;, - 224;3;-0.000000, 1.279915,-0.000000;;, - 225;3;-0.000000, 1.279915,-0.000000;;, - 226;3;-0.000000, 1.279915,-0.000000;;, - 227;3;-0.000000, 1.279915,-0.000000;;, - 228;3;-0.000000, 1.279915,-0.000000;;, - 229;3;-0.000000, 1.279915,-0.000000;;, - 230;3;-0.000000, 1.279915,-0.000000;;, - 231;3;-0.000000, 1.279915,-0.000000;;, - 232;3;-0.000000, 1.279915,-0.000000;;, - 233;3;-0.000000, 1.279915,-0.000000;;, - 234;3;-0.000000, 1.279915,-0.000000;;, - 235;3;-0.000000, 1.279915,-0.000000;;, - 236;3;-0.000000, 1.279915,-0.000000;;, - 237;3;-0.000000, 1.279915,-0.000000;;, - 238;3;-0.000000, 1.279915,-0.000000;;, - 239;3;-0.000000, 1.279915,-0.000000;;, - 240;3;-0.000000, 1.279915,-0.000000;;, - 241;3;-0.000000, 1.279915,-0.000000;;, - 242;3;-0.000000, 1.279915,-0.000000;;, - 243;3;-0.000000, 1.279915,-0.000000;;, - 244;3;-0.000000, 1.279915,-0.000000;;, - 245;3;-0.000000, 1.279915,-0.000000;;, - 246;3;-0.000000, 1.279915,-0.000000;;, - 247;3;-0.000000, 1.279915,-0.000000;;, - 248;3;-0.000000, 1.279915,-0.000000;;, - 249;3;-0.000000, 1.279915,-0.000000;;; - } - } - Animation { - {Armature_Bone_040} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 1;4;-0.968777,-0.247868, 0.000138, 0.000096;;, - 2;4;-0.968419,-0.249070, 0.000555, 0.000386;;, - 3;4;-0.967820,-0.251078, 0.001253, 0.000870;;, - 4;4;-0.966987,-0.253876, 0.002224, 0.001545;;, - 5;4;-0.965930,-0.257423, 0.003456, 0.002400;;, - 6;4;-0.964671,-0.261647, 0.004923, 0.003419;;, - 7;4;-0.963241,-0.266447, 0.006589, 0.004577;;, - 8;4;-0.961680,-0.271686, 0.008409, 0.005841;;, - 9;4;-0.960036,-0.277202, 0.010324, 0.007171;;, - 10;4;-0.958364,-0.282813, 0.012272, 0.008524;;, - 11;4;-0.956721,-0.288329, 0.014188, 0.009855;;, - 12;4;-0.955159,-0.293568, 0.016007, 0.011119;;, - 13;4;-0.953729,-0.298367, 0.017674, 0.012276;;, - 14;4;-0.952470,-0.302592, 0.019141, 0.013295;;, - 15;4;-0.951414,-0.306139, 0.020372, 0.014151;;, - 16;4;-0.950580,-0.308937, 0.021344, 0.014826;;, - 17;4;-0.949981,-0.310945, 0.022041, 0.015310;;, - 18;4;-0.949623,-0.312147, 0.022458, 0.015600;;, - 19;4;-0.949505,-0.312544, 0.022597, 0.015696;;, - 20;4;-0.949538,-0.312434, 0.022558, 0.015669;;, - 21;4;-0.949638,-0.312096, 0.022441, 0.015587;;, - 22;4;-0.949810,-0.311520, 0.022241, 0.015449;;, - 23;4;-0.950054,-0.310702, 0.021957, 0.015251;;, - 24;4;-0.950370,-0.309639, 0.021588, 0.014995;;, - 25;4;-0.950759,-0.308335, 0.021135, 0.014681;;, - 26;4;-0.951216,-0.306801, 0.020602, 0.014310;;, - 27;4;-0.951736,-0.305055, 0.019996, 0.013889;;, - 28;4;-0.952312,-0.303123, 0.019325, 0.013423;;, - 29;4;-0.952933,-0.301039, 0.018601, 0.012921;;, - 30;4;-0.953588,-0.298841, 0.017838, 0.012391;;, - 31;4;-0.954264,-0.296572, 0.017050, 0.011843;;, - 32;4;-0.954950,-0.294272, 0.016251, 0.011288;;, - 33;4;-0.955632,-0.291982, 0.015456, 0.010736;;, - 34;4;-0.956301,-0.289736, 0.014676, 0.010194;;, - 35;4;-0.956948,-0.287565, 0.013923, 0.009671;;, - 36;4;-0.957566,-0.285492, 0.013203, 0.009171;;, - 37;4;-0.958149,-0.283534, 0.012523, 0.008698;;, - 38;4;-0.958695,-0.281703, 0.011887, 0.008257;;, - 39;4;-0.959200,-0.280007, 0.011298, 0.007848;;, - 40;4;-0.959705,-0.278312, 0.010709, 0.007439;;, - 41;4;-0.960251,-0.276481, 0.010074, 0.006997;;, - 42;4;-0.960834,-0.274523, 0.009394, 0.006525;;, - 43;4;-0.961452,-0.272450, 0.008674, 0.006025;;, - 44;4;-0.962099,-0.270279, 0.007920, 0.005501;;, - 45;4;-0.962768,-0.268033, 0.007140, 0.004960;;, - 46;4;-0.963451,-0.265743, 0.006345, 0.004407;;, - 47;4;-0.964136,-0.263443, 0.005546, 0.003853;;, - 48;4;-0.964812,-0.261173, 0.004758, 0.003305;;, - 49;4;-0.965467,-0.258975, 0.003995, 0.002775;;, - 50;4;-0.966088,-0.256891, 0.003271, 0.002272;;, - 51;4;-0.966664,-0.254960, 0.002600, 0.001806;;, - 52;4;-0.967184,-0.253213, 0.001994, 0.001385;;, - 53;4;-0.967641,-0.251679, 0.001461, 0.001015;;, - 54;4;-0.968030,-0.250375, 0.001009, 0.000701;;, - 55;4;-0.968347,-0.249312, 0.000640, 0.000444;;, - 56;4;-0.968590,-0.248494, 0.000355, 0.000247;;, - 57;4;-0.968762,-0.247919, 0.000156, 0.000108;;, - 58;4;-0.968863,-0.247581, 0.000038, 0.000027;;, - 59;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 60;4;-0.968822,-0.247676, 0.000072, 0.000050;;, - 61;4;-0.968602,-0.248293, 0.000290, 0.000201;;, - 62;4;-0.968233,-0.249328, 0.000654, 0.000454;;, - 63;4;-0.967716,-0.250781, 0.001165, 0.000809;;, - 64;4;-0.967049,-0.252652, 0.001824, 0.001267;;, - 65;4;-0.966233,-0.254940, 0.002630, 0.001827;;, - 66;4;-0.965271,-0.257639, 0.003580, 0.002487;;, - 67;4;-0.964165,-0.260743, 0.004673, 0.003246;;, - 68;4;-0.962918,-0.264241, 0.005904, 0.004101;;, - 69;4;-0.961536,-0.268119, 0.007269, 0.005049;;, - 70;4;-0.960025,-0.272359, 0.008762, 0.006086;;, - 71;4;-0.958392,-0.276941, 0.010375, 0.007207;;, - 72;4;-0.956646,-0.281840, 0.012100, 0.008405;;, - 73;4;-0.954797,-0.287026, 0.013926, 0.009673;;, - 74;4;-0.952858,-0.292467, 0.015842, 0.011004;;, - 75;4;-0.950841,-0.298128, 0.017834, 0.012388;;, - 76;4;-0.948759,-0.303967, 0.019890, 0.013816;;, - 77;4;-0.946629,-0.309943, 0.021994, 0.015277;;, - 78;4;-0.944466,-0.316012, 0.024131, 0.016761;;, - 79;4;-0.942286,-0.322128, 0.026284, 0.018257;;, - 80;4;-0.940107,-0.328244, 0.028437, 0.019753;;, - 81;4;-0.937943,-0.334313, 0.030574, 0.021237;;, - 82;4;-0.935813,-0.340290, 0.032678, 0.022698;;, - 83;4;-0.933732,-0.346129, 0.034734, 0.024126;;, - 84;4;-0.931715,-0.351789, 0.036727, 0.025510;;, - 85;4;-0.929775,-0.357230, 0.038642, 0.026841;;, - 86;4;-0.927927,-0.362417, 0.040468, 0.028109;;, - 87;4;-0.926181,-0.367315, 0.042193, 0.029307;;, - 88;4;-0.924548,-0.371897, 0.043806, 0.030428;;, - 89;4;-0.923036,-0.376138, 0.045299, 0.031465;;, - 90;4;-0.921654,-0.380016, 0.046664, 0.032413;;, - 91;4;-0.920408,-0.383513, 0.047895, 0.033268;;, - 92;4;-0.919301,-0.386617, 0.048988, 0.034027;;, - 93;4;-0.918339,-0.389317, 0.049939, 0.034688;;, - 94;4;-0.917524,-0.391604, 0.050744, 0.035247;;, - 95;4;-0.916857,-0.393476, 0.051403, 0.035705;;, - 96;4;-0.916339,-0.394928, 0.051914, 0.036060;;, - 97;4;-0.915970,-0.395963, 0.052278, 0.036313;;, - 98;4;-0.915750,-0.396581, 0.052496, 0.036464;;, - 99;4;-0.915677,-0.396786, 0.052568, 0.036514;;, - 100;4;-0.916214,-0.394701, 0.051851, 0.036016;;, - 101;4;-0.917882,-0.388223, 0.049624, 0.034469;;, - 102;4;-0.920715,-0.377220, 0.045839, 0.031840;;, - 103;4;-0.924642,-0.361971, 0.040595, 0.028198;;, - 104;4;-0.929449,-0.343302, 0.034175, 0.023738;;, - 105;4;-0.934797,-0.322533, 0.027032, 0.018777;;, - 106;4;-0.940291,-0.301195, 0.019694, 0.013679;;, - 107;4;-0.945578,-0.280664, 0.012633, 0.008775;;, - 108;4;-0.950403,-0.261923, 0.006188, 0.004298;;, - 109;4;-0.954625,-0.245530, 0.000550, 0.000382;;, - 110;4;-0.958846,-0.229136,-0.005088,-0.003534;;, - 111;4;-0.963671,-0.210396,-0.011533,-0.008011;;, - 112;4;-0.968958,-0.189865,-0.018594,-0.012915;;, - 113;4;-0.974452,-0.168526,-0.025932,-0.018013;;, - 114;4;-0.979800,-0.147757,-0.033075,-0.022974;;, - 115;4;-0.984608,-0.129088,-0.039495,-0.027434;;, - 116;4;-0.988534,-0.113839,-0.044740,-0.031076;;, - 117;4;-0.991367,-0.102836,-0.048524,-0.033705;;, - 118;4;-0.993035,-0.096359,-0.050751,-0.035252;;, - 119;4;-0.993572,-0.094274,-0.051468,-0.035750;;, - 120;4;-0.993035,-0.096359,-0.050751,-0.035252;;, - 121;4;-0.991367,-0.102836,-0.048524,-0.033705;;, - 122;4;-0.988534,-0.113839,-0.044740,-0.031076;;, - 123;4;-0.984608,-0.129088,-0.039495,-0.027434;;, - 124;4;-0.979800,-0.147757,-0.033075,-0.022974;;, - 125;4;-0.974452,-0.168526,-0.025932,-0.018013;;, - 126;4;-0.968958,-0.189865,-0.018594,-0.012915;;, - 127;4;-0.963671,-0.210396,-0.011533,-0.008011;;, - 128;4;-0.958846,-0.229136,-0.005088,-0.003534;;, - 129;4;-0.954625,-0.245530, 0.000550, 0.000382;;, - 130;4;-0.950403,-0.261923, 0.006188, 0.004298;;, - 131;4;-0.945578,-0.280664, 0.012633, 0.008775;;, - 132;4;-0.940291,-0.301195, 0.019694, 0.013679;;, - 133;4;-0.934797,-0.322533, 0.027032, 0.018777;;, - 134;4;-0.929449,-0.343302, 0.034175, 0.023738;;, - 135;4;-0.924642,-0.361971, 0.040595, 0.028198;;, - 136;4;-0.920715,-0.377220, 0.045839, 0.031840;;, - 137;4;-0.917882,-0.388223, 0.049624, 0.034469;;, - 138;4;-0.916214,-0.394701, 0.051851, 0.036016;;, - 139;4;-0.915677,-0.396786, 0.052568, 0.036514;;, - 140;4;-0.917882,-0.388223, 0.049624, 0.034469;;, - 141;4;-0.924642,-0.361971, 0.040595, 0.028198;;, - 142;4;-0.934797,-0.322533, 0.027032, 0.018777;;, - 143;4;-0.945578,-0.280664, 0.012633, 0.008775;;, - 144;4;-0.954625,-0.245530, 0.000550, 0.000382;;, - 145;4;-0.963671,-0.210396,-0.011533,-0.008011;;, - 146;4;-0.974452,-0.168526,-0.025932,-0.018013;;, - 147;4;-0.984608,-0.129088,-0.039495,-0.027434;;, - 148;4;-0.991367,-0.102836,-0.048524,-0.033705;;, - 149;4;-0.993572,-0.094274,-0.051468,-0.035750;;, - 150;4;-0.991367,-0.102836,-0.048524,-0.033705;;, - 151;4;-0.984608,-0.129088,-0.039495,-0.027434;;, - 152;4;-0.974452,-0.168526,-0.025932,-0.018013;;, - 153;4;-0.963671,-0.210396,-0.011533,-0.008011;;, - 154;4;-0.954625,-0.245530, 0.000550, 0.000382;;, - 155;4;-0.945578,-0.280664, 0.012633, 0.008775;;, - 156;4;-0.934797,-0.322533, 0.027032, 0.018777;;, - 157;4;-0.924642,-0.361971, 0.040595, 0.028198;;, - 158;4;-0.917882,-0.388223, 0.049624, 0.034469;;, - 159;4;-0.915677,-0.396786, 0.052568, 0.036514;;, - 160;4;-0.915970,-0.395963, 0.052278, 0.036313;;, - 161;4;-0.916857,-0.393476, 0.051403, 0.035705;;, - 162;4;-0.918339,-0.389317, 0.049939, 0.034688;;, - 163;4;-0.920408,-0.383513, 0.047895, 0.033268;;, - 164;4;-0.923036,-0.376138, 0.045299, 0.031465;;, - 165;4;-0.926181,-0.367315, 0.042193, 0.029307;;, - 166;4;-0.929775,-0.357230, 0.038642, 0.026841;;, - 167;4;-0.933732,-0.346129, 0.034734, 0.024126;;, - 168;4;-0.937943,-0.334313, 0.030574, 0.021237;;, - 169;4;-0.942286,-0.322128, 0.026284, 0.018257;;, - 170;4;-0.946629,-0.309943, 0.021994, 0.015277;;, - 171;4;-0.950840,-0.298128, 0.017834, 0.012388;;, - 172;4;-0.954797,-0.287026, 0.013926, 0.009673;;, - 173;4;-0.958392,-0.276941, 0.010375, 0.007207;;, - 174;4;-0.961536,-0.268119, 0.007269, 0.005049;;, - 175;4;-0.964165,-0.260743, 0.004673, 0.003246;;, - 176;4;-0.966233,-0.254940, 0.002630, 0.001827;;, - 177;4;-0.967716,-0.250781, 0.001165, 0.000809;;, - 178;4;-0.968602,-0.248293, 0.000290, 0.000201;;, - 179;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 180;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 181;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 182;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 183;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 184;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 185;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 186;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 187;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 188;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 189;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 190;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 191;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 192;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 193;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 194;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 195;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 196;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 197;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 198;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 199;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 200;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 201;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 202;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 203;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 204;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 205;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 206;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 207;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 208;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 209;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 210;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 211;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 212;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 213;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 214;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 215;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 216;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 217;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 218;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 219;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 220;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 221;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 222;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 223;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 224;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 225;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 226;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 227;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 228;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 229;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 230;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 231;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 232;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 233;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 234;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 235;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 236;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 237;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 238;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 239;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 240;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 241;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 242;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 243;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 244;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 245;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 246;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 247;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 248;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 249;4;-0.968895,-0.247471,-0.000000,-0.000000;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3; 0.000000, 1.228416, 0.000000;;, - 1;3; 0.000000, 1.228416,-0.000000;;, - 2;3;-0.000000, 1.228417, 0.000000;;, - 3;3;-0.000000, 1.228416, 0.000000;;, - 4;3; 0.000000, 1.228417,-0.000000;;, - 5;3;-0.000000, 1.228416,-0.000000;;, - 6;3;-0.000000, 1.228416, 0.000000;;, - 7;3; 0.000000, 1.228417, 0.000000;;, - 8;3;-0.000000, 1.228416,-0.000000;;, - 9;3;-0.000000, 1.228416, 0.000000;;, - 10;3;-0.000000, 1.228417,-0.000000;;, - 11;3;-0.000000, 1.228416,-0.000000;;, - 12;3; 0.000000, 1.228417, 0.000000;;, - 13;3; 0.000000, 1.228416,-0.000000;;, - 14;3; 0.000000, 1.228416,-0.000000;;, - 15;3;-0.000000, 1.228416,-0.000000;;, - 16;3; 0.000000, 1.228416, 0.000000;;, - 17;3; 0.000000, 1.228416, 0.000000;;, - 18;3; 0.000000, 1.228416, 0.000000;;, - 19;3;-0.000000, 1.228416, 0.000000;;, - 20;3;-0.000000, 1.228417, 0.000000;;, - 21;3; 0.000000, 1.228416, 0.000000;;, - 22;3; 0.000000, 1.228417, 0.000000;;, - 23;3;-0.000000, 1.228416,-0.000000;;, - 24;3;-0.000000, 1.228416,-0.000000;;, - 25;3;-0.000000, 1.228417, 0.000000;;, - 26;3; 0.000000, 1.228417, 0.000000;;, - 27;3; 0.000000, 1.228416,-0.000000;;, - 28;3;-0.000000, 1.228416,-0.000000;;, - 29;3;-0.000000, 1.228416,-0.000000;;, - 30;3;-0.000000, 1.228416, 0.000000;;, - 31;3; 0.000000, 1.228417, 0.000000;;, - 32;3;-0.000000, 1.228416,-0.000001;;, - 33;3;-0.000001, 1.228416,-0.000000;;, - 34;3;-0.000000, 1.228416,-0.000000;;, - 35;3; 0.000000, 1.228416, 0.000000;;, - 36;3;-0.000000, 1.228416, 0.000000;;, - 37;3;-0.000000, 1.228416, 0.000000;;, - 38;3;-0.000000, 1.228416,-0.000000;;, - 39;3; 0.000000, 1.228416, 0.000000;;, - 40;3;-0.000000, 1.228417, 0.000001;;, - 41;3;-0.000000, 1.228416,-0.000000;;, - 42;3; 0.000000, 1.228416, 0.000000;;, - 43;3; 0.000000, 1.228416,-0.000000;;, - 44;3;-0.000000, 1.228416, 0.000000;;, - 45;3;-0.000000, 1.228417,-0.000000;;, - 46;3; 0.000000, 1.228416, 0.000000;;, - 47;3; 0.000000, 1.228416, 0.000000;;, - 48;3; 0.000000, 1.228416, 0.000000;;, - 49;3;-0.000000, 1.228416, 0.000000;;, - 50;3;-0.000000, 1.228416, 0.000000;;, - 51;3;-0.000000, 1.228416, 0.000000;;, - 52;3; 0.000000, 1.228416,-0.000000;;, - 53;3;-0.000000, 1.228416,-0.000000;;, - 54;3; 0.000000, 1.228417, 0.000000;;, - 55;3;-0.000000, 1.228417,-0.000000;;, - 56;3; 0.000000, 1.228416,-0.000000;;, - 57;3;-0.000000, 1.228416, 0.000000;;, - 58;3; 0.000000, 1.228416, 0.000000;;, - 59;3; 0.000000, 1.228416, 0.000000;;, - 60;3; 0.000000, 1.228416,-0.000000;;, - 61;3; 0.000000, 1.228417, 0.000000;;, - 62;3; 0.000000, 1.228417,-0.000000;;, - 63;3; 0.000000, 1.228416, 0.000000;;, - 64;3;-0.000000, 1.228417,-0.000000;;, - 65;3; 0.000000, 1.228417,-0.000000;;, - 66;3; 0.000000, 1.228416, 0.000000;;, - 67;3;-0.000000, 1.228416, 0.000000;;, - 68;3;-0.000000, 1.228416, 0.000000;;, - 69;3; 0.000000, 1.228417, 0.000000;;, - 70;3; 0.000000, 1.228416,-0.000000;;, - 71;3;-0.000000, 1.228417, 0.000000;;, - 72;3;-0.000000, 1.228416, 0.000000;;, - 73;3; 0.000000, 1.228416,-0.000000;;, - 74;3; 0.000000, 1.228416,-0.000000;;, - 75;3;-0.000000, 1.228416,-0.000000;;, - 76;3;-0.000000, 1.228416,-0.000000;;, - 77;3;-0.000000, 1.228416, 0.000000;;, - 78;3;-0.000000, 1.228416,-0.000000;;, - 79;3; 0.000000, 1.228416,-0.000000;;, - 80;3;-0.000000, 1.228416, 0.000000;;, - 81;3;-0.000000, 1.228416, 0.000000;;, - 82;3;-0.000000, 1.228417, 0.000000;;, - 83;3; 0.000000, 1.228416, 0.000000;;, - 84;3;-0.000000, 1.228416, 0.000000;;, - 85;3;-0.000000, 1.228417, 0.000000;;, - 86;3; 0.000000, 1.228416, 0.000000;;, - 87;3;-0.000000, 1.228416,-0.000000;;, - 88;3;-0.000000, 1.228416, 0.000000;;, - 89;3;-0.000000, 1.228417, 0.000000;;, - 90;3; 0.000000, 1.228416, 0.000000;;, - 91;3;-0.000000, 1.228416, 0.000000;;, - 92;3;-0.000000, 1.228416, 0.000000;;, - 93;3; 0.000000, 1.228417, 0.000000;;, - 94;3; 0.000000, 1.228416,-0.000000;;, - 95;3; 0.000000, 1.228416,-0.000000;;, - 96;3; 0.000000, 1.228417,-0.000000;;, - 97;3; 0.000000, 1.228416,-0.000000;;, - 98;3; 0.000000, 1.228417,-0.000000;;, - 99;3; 0.000000, 1.228416,-0.000000;;, - 100;3; 0.000000, 1.228416,-0.000000;;, - 101;3;-0.000000, 1.228416,-0.000000;;, - 102;3;-0.000000, 1.228416,-0.000000;;, - 103;3;-0.000000, 1.228416,-0.000000;;, - 104;3;-0.000000, 1.228416,-0.000000;;, - 105;3; 0.000000, 1.228417,-0.000001;;, - 106;3; 0.000000, 1.228417, 0.000000;;, - 107;3;-0.000000, 1.228416,-0.000000;;, - 108;3; 0.000000, 1.228416,-0.000000;;, - 109;3;-0.000000, 1.228417,-0.000000;;, - 110;3; 0.000000, 1.228417,-0.000000;;, - 111;3;-0.000000, 1.228416,-0.000000;;, - 112;3;-0.000000, 1.228417,-0.000000;;, - 113;3; 0.000000, 1.228416,-0.000000;;, - 114;3; 0.000000, 1.228416,-0.000000;;, - 115;3; 0.000000, 1.228417, 0.000000;;, - 116;3; 0.000000, 1.228417,-0.000000;;, - 117;3;-0.000000, 1.228416,-0.000000;;, - 118;3;-0.000000, 1.228417,-0.000000;;, - 119;3; 0.000000, 1.228416,-0.000000;;, - 120;3; 0.000000, 1.228417, 0.000000;;, - 121;3; 0.000000, 1.228416, 0.000000;;, - 122;3; 0.000000, 1.228416,-0.000000;;, - 123;3; 0.000000, 1.228416, 0.000000;;, - 124;3;-0.000000, 1.228416,-0.000000;;, - 125;3; 0.000000, 1.228416, 0.000000;;, - 126;3; 0.000001, 1.228416,-0.000000;;, - 127;3; 0.000000, 1.228416,-0.000000;;, - 128;3;-0.000000, 1.228416, 0.000000;;, - 129;3; 0.000000, 1.228416, 0.000000;;, - 130;3; 0.000000, 1.228417, 0.000000;;, - 131;3; 0.000000, 1.228417,-0.000000;;, - 132;3;-0.000000, 1.228417,-0.000000;;, - 133;3;-0.000000, 1.228417,-0.000000;;, - 134;3; 0.000000, 1.228417,-0.000000;;, - 135;3;-0.000000, 1.228416, 0.000000;;, - 136;3;-0.000000, 1.228417,-0.000000;;, - 137;3; 0.000000, 1.228416,-0.000000;;, - 138;3;-0.000000, 1.228416, 0.000000;;, - 139;3; 0.000000, 1.228416,-0.000000;;, - 140;3;-0.000000, 1.228416,-0.000000;;, - 141;3;-0.000000, 1.228416,-0.000000;;, - 142;3; 0.000000, 1.228417,-0.000001;;, - 143;3;-0.000000, 1.228416,-0.000000;;, - 144;3;-0.000000, 1.228417,-0.000000;;, - 145;3;-0.000000, 1.228416,-0.000000;;, - 146;3; 0.000000, 1.228416,-0.000000;;, - 147;3; 0.000000, 1.228417, 0.000000;;, - 148;3;-0.000000, 1.228416,-0.000000;;, - 149;3; 0.000000, 1.228416,-0.000000;;, - 150;3; 0.000000, 1.228416, 0.000000;;, - 151;3; 0.000000, 1.228416, 0.000000;;, - 152;3; 0.000000, 1.228416, 0.000000;;, - 153;3; 0.000000, 1.228416,-0.000000;;, - 154;3; 0.000000, 1.228416, 0.000000;;, - 155;3;-0.000000, 1.228416,-0.000000;;, - 156;3;-0.000000, 1.228416,-0.000000;;, - 157;3; 0.000000, 1.228416,-0.000000;;, - 158;3; 0.000000, 1.228416,-0.000000;;, - 159;3; 0.000000, 1.228416,-0.000000;;, - 160;3;-0.000000, 1.228416, 0.000000;;, - 161;3; 0.000000, 1.228416, 0.000000;;, - 162;3; 0.000000, 1.228417, 0.000000;;, - 163;3;-0.000000, 1.228416,-0.000000;;, - 164;3;-0.000000, 1.228417,-0.000000;;, - 165;3; 0.000000, 1.228416,-0.000000;;, - 166;3; 0.000000, 1.228417, 0.000000;;, - 167;3;-0.000000, 1.228417,-0.000000;;, - 168;3; 0.000000, 1.228416, 0.000000;;, - 169;3;-0.000000, 1.228416, 0.000000;;, - 170;3;-0.000000, 1.228417, 0.000000;;, - 171;3; 0.000000, 1.228416, 0.000000;;, - 172;3; 0.000000, 1.228416,-0.000000;;, - 173;3; 0.000000, 1.228416,-0.000000;;, - 174;3;-0.000000, 1.228416, 0.000000;;, - 175;3; 0.000000, 1.228417,-0.000000;;, - 176;3;-0.000000, 1.228416, 0.000000;;, - 177;3; 0.000000, 1.228416, 0.000000;;, - 178;3;-0.000000, 1.228416, 0.000000;;, - 179;3; 0.000000, 1.228416, 0.000000;;, - 180;3;-0.000000, 1.228416,-0.000001;;, - 181;3;-0.000000, 1.228417, 0.000000;;, - 182;3;-0.000000, 1.228416,-0.000000;;, - 183;3; 0.000000, 1.228417,-0.000000;;, - 184;3; 0.000000, 1.228417,-0.000000;;, - 185;3; 0.000000, 1.228416, 0.000000;;, - 186;3; 0.000000, 1.228417,-0.000000;;, - 187;3; 0.000000, 1.228417, 0.000000;;, - 188;3;-0.000000, 1.228416,-0.000000;;, - 189;3; 0.000000, 1.228416, 0.000000;;, - 190;3; 0.000000, 1.228416, 0.000000;;, - 191;3; 0.000000, 1.228416,-0.000000;;, - 192;3; 0.000000, 1.228416,-0.000001;;, - 193;3; 0.000000, 1.228416, 0.000000;;, - 194;3;-0.000000, 1.228417, 0.000000;;, - 195;3; 0.000001, 1.228417, 0.000000;;, - 196;3; 0.000000, 1.228416, 0.000000;;, - 197;3; 0.000000, 1.228417,-0.000000;;, - 198;3;-0.000000, 1.228417, 0.000000;;, - 199;3; 0.000000, 1.228416, 0.000000;;, - 200;3; 0.000000, 1.228416, 0.000000;;, - 201;3; 0.000000, 1.228416, 0.000000;;, - 202;3; 0.000000, 1.228416, 0.000000;;, - 203;3; 0.000000, 1.228416, 0.000000;;, - 204;3; 0.000000, 1.228416, 0.000000;;, - 205;3; 0.000000, 1.228416, 0.000000;;, - 206;3; 0.000000, 1.228416, 0.000000;;, - 207;3; 0.000000, 1.228416, 0.000000;;, - 208;3; 0.000000, 1.228416, 0.000000;;, - 209;3; 0.000000, 1.228416, 0.000000;;, - 210;3; 0.000000, 1.228416, 0.000000;;, - 211;3; 0.000000, 1.228416, 0.000000;;, - 212;3; 0.000000, 1.228416, 0.000000;;, - 213;3; 0.000000, 1.228416, 0.000000;;, - 214;3; 0.000000, 1.228416, 0.000000;;, - 215;3; 0.000000, 1.228416, 0.000000;;, - 216;3; 0.000000, 1.228416, 0.000000;;, - 217;3; 0.000000, 1.228416, 0.000000;;, - 218;3; 0.000000, 1.228416, 0.000000;;, - 219;3; 0.000000, 1.228416, 0.000000;;, - 220;3; 0.000000, 1.228416, 0.000000;;, - 221;3; 0.000000, 1.228416, 0.000000;;, - 222;3; 0.000000, 1.228416, 0.000000;;, - 223;3; 0.000000, 1.228416, 0.000000;;, - 224;3; 0.000000, 1.228416, 0.000000;;, - 225;3; 0.000000, 1.228416, 0.000000;;, - 226;3; 0.000000, 1.228416, 0.000000;;, - 227;3; 0.000000, 1.228416, 0.000000;;, - 228;3; 0.000000, 1.228416, 0.000000;;, - 229;3; 0.000000, 1.228416, 0.000000;;, - 230;3; 0.000000, 1.228416, 0.000000;;, - 231;3; 0.000000, 1.228416, 0.000000;;, - 232;3; 0.000000, 1.228416, 0.000000;;, - 233;3; 0.000000, 1.228416, 0.000000;;, - 234;3; 0.000000, 1.228416, 0.000000;;, - 235;3; 0.000000, 1.228416, 0.000000;;, - 236;3; 0.000000, 1.228416, 0.000000;;, - 237;3; 0.000000, 1.228416, 0.000000;;, - 238;3; 0.000000, 1.228416, 0.000000;;, - 239;3; 0.000000, 1.228416, 0.000000;;, - 240;3; 0.000000, 1.228416, 0.000000;;, - 241;3; 0.000000, 1.228416, 0.000000;;, - 242;3; 0.000000, 1.228416, 0.000000;;, - 243;3; 0.000000, 1.228416, 0.000000;;, - 244;3; 0.000000, 1.228416, 0.000000;;, - 245;3; 0.000000, 1.228416, 0.000000;;, - 246;3; 0.000000, 1.228416, 0.000000;;, - 247;3; 0.000000, 1.228416, 0.000000;;, - 248;3; 0.000000, 1.228416, 0.000000;;, - 249;3; 0.000000, 1.228416, 0.000000;;; - } - } - Animation { - {Armature_Bone_013} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 1;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 2;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 3;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 4;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 5;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 6;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 7;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 8;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 9;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 10;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 11;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 12;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 13;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 14;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 15;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 16;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 17;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 18;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 19;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 20;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 21;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 22;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 23;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 24;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 25;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 26;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 27;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 28;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 29;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 30;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 31;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 32;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 33;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 34;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 35;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 36;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 37;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 38;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 39;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 40;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 41;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 42;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 43;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 44;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 45;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 46;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 47;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 48;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 49;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 50;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 51;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 52;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 53;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 54;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 55;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 56;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 57;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 58;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 59;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 60;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 61;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 62;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 63;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 64;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 65;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 66;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 67;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 68;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 69;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 70;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 71;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 72;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 73;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 74;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 75;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 76;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 77;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 78;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 79;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 80;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 81;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 82;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 83;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 84;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 85;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 86;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 87;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 88;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 89;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 90;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 91;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 92;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 93;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 94;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 95;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 96;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 97;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 98;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 99;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 100;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 101;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 102;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 103;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 104;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 105;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 106;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 107;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 108;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 109;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 110;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 111;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 112;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 113;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 114;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 115;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 116;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 117;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 118;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 119;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 120;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 121;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 122;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 123;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 124;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 125;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 126;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 127;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 128;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 129;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 130;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 131;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 132;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 133;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 134;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 135;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 136;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 137;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 138;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 139;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 140;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 141;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 142;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 143;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 144;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 145;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 146;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 147;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 148;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 149;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 150;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 151;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 152;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 153;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 154;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 155;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 156;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 157;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 158;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 159;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 160;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 161;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 162;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 163;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 164;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 165;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 166;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 167;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 168;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 169;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 170;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 171;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 172;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 173;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 174;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 175;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 176;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 177;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 178;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 179;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 180;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 181;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 182;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 183;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 184;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 185;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 186;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 187;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 188;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 189;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 190;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 191;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 192;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 193;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 194;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 195;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 196;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 197;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 198;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 199;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 200;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 201;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 202;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 203;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 204;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 205;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 206;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 207;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 208;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 209;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 210;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 211;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 212;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 213;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 214;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 215;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 216;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 217;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 218;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 219;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 220;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 221;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 222;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 223;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 224;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 225;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 226;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 227;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 228;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 229;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 230;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 231;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 232;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 233;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 234;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 235;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 236;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 237;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 238;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 239;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 240;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 241;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 242;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 243;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 244;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 245;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 246;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 247;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 248;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 249;4;-0.370899,-0.000000,-0.000000,-0.928673;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3; 0.000000, 0.826434, 0.000000;;, - 1;3; 0.000000, 0.826434, 0.000000;;, - 2;3; 0.000000, 0.826434, 0.000000;;, - 3;3; 0.000000, 0.826434, 0.000000;;, - 4;3; 0.000000, 0.826434, 0.000000;;, - 5;3; 0.000000, 0.826434, 0.000000;;, - 6;3; 0.000000, 0.826434, 0.000000;;, - 7;3; 0.000000, 0.826434, 0.000000;;, - 8;3; 0.000000, 0.826434, 0.000000;;, - 9;3; 0.000000, 0.826434, 0.000000;;, - 10;3; 0.000000, 0.826434, 0.000000;;, - 11;3; 0.000000, 0.826434, 0.000000;;, - 12;3; 0.000000, 0.826434, 0.000000;;, - 13;3; 0.000000, 0.826434, 0.000000;;, - 14;3; 0.000000, 0.826434, 0.000000;;, - 15;3; 0.000000, 0.826434, 0.000000;;, - 16;3; 0.000000, 0.826434, 0.000000;;, - 17;3; 0.000000, 0.826434, 0.000000;;, - 18;3; 0.000000, 0.826434, 0.000000;;, - 19;3; 0.000000, 0.826434, 0.000000;;, - 20;3; 0.000000, 0.826434, 0.000000;;, - 21;3; 0.000000, 0.826434, 0.000000;;, - 22;3; 0.000000, 0.826434, 0.000000;;, - 23;3; 0.000000, 0.826434, 0.000000;;, - 24;3; 0.000000, 0.826434, 0.000000;;, - 25;3; 0.000000, 0.826434, 0.000000;;, - 26;3; 0.000000, 0.826434, 0.000000;;, - 27;3; 0.000000, 0.826434, 0.000000;;, - 28;3; 0.000000, 0.826434, 0.000000;;, - 29;3; 0.000000, 0.826434, 0.000000;;, - 30;3; 0.000000, 0.826434, 0.000000;;, - 31;3; 0.000000, 0.826434, 0.000000;;, - 32;3; 0.000000, 0.826434, 0.000000;;, - 33;3; 0.000000, 0.826434, 0.000000;;, - 34;3; 0.000000, 0.826434, 0.000000;;, - 35;3; 0.000000, 0.826434, 0.000000;;, - 36;3; 0.000000, 0.826434, 0.000000;;, - 37;3; 0.000000, 0.826434, 0.000000;;, - 38;3; 0.000000, 0.826434, 0.000000;;, - 39;3; 0.000000, 0.826434, 0.000000;;, - 40;3; 0.000000, 0.826434, 0.000000;;, - 41;3; 0.000000, 0.826434, 0.000000;;, - 42;3; 0.000000, 0.826434, 0.000000;;, - 43;3; 0.000000, 0.826434, 0.000000;;, - 44;3; 0.000000, 0.826434, 0.000000;;, - 45;3; 0.000000, 0.826434, 0.000000;;, - 46;3; 0.000000, 0.826434, 0.000000;;, - 47;3; 0.000000, 0.826434, 0.000000;;, - 48;3; 0.000000, 0.826434, 0.000000;;, - 49;3; 0.000000, 0.826434, 0.000000;;, - 50;3; 0.000000, 0.826434, 0.000000;;, - 51;3; 0.000000, 0.826434, 0.000000;;, - 52;3; 0.000000, 0.826434, 0.000000;;, - 53;3; 0.000000, 0.826434, 0.000000;;, - 54;3; 0.000000, 0.826434, 0.000000;;, - 55;3; 0.000000, 0.826434, 0.000000;;, - 56;3; 0.000000, 0.826434, 0.000000;;, - 57;3; 0.000000, 0.826434, 0.000000;;, - 58;3; 0.000000, 0.826434, 0.000000;;, - 59;3; 0.000000, 0.826434, 0.000000;;, - 60;3; 0.000000, 0.826434, 0.000000;;, - 61;3; 0.000000, 0.826434, 0.000000;;, - 62;3; 0.000000, 0.826434, 0.000000;;, - 63;3; 0.000000, 0.826434, 0.000000;;, - 64;3; 0.000000, 0.826434, 0.000000;;, - 65;3; 0.000000, 0.826434, 0.000000;;, - 66;3; 0.000000, 0.826434, 0.000000;;, - 67;3; 0.000000, 0.826434, 0.000000;;, - 68;3; 0.000000, 0.826434, 0.000000;;, - 69;3; 0.000000, 0.826434, 0.000000;;, - 70;3; 0.000000, 0.826434, 0.000000;;, - 71;3; 0.000000, 0.826434, 0.000000;;, - 72;3; 0.000000, 0.826434, 0.000000;;, - 73;3; 0.000000, 0.826434, 0.000000;;, - 74;3; 0.000000, 0.826434, 0.000000;;, - 75;3; 0.000000, 0.826434, 0.000000;;, - 76;3; 0.000000, 0.826434, 0.000000;;, - 77;3; 0.000000, 0.826434, 0.000000;;, - 78;3; 0.000000, 0.826434, 0.000000;;, - 79;3; 0.000000, 0.826434, 0.000000;;, - 80;3; 0.000000, 0.826434, 0.000000;;, - 81;3; 0.000000, 0.826434, 0.000000;;, - 82;3; 0.000000, 0.826434, 0.000000;;, - 83;3; 0.000000, 0.826434, 0.000000;;, - 84;3; 0.000000, 0.826434, 0.000000;;, - 85;3; 0.000000, 0.826434, 0.000000;;, - 86;3; 0.000000, 0.826434, 0.000000;;, - 87;3; 0.000000, 0.826434, 0.000000;;, - 88;3; 0.000000, 0.826434, 0.000000;;, - 89;3; 0.000000, 0.826434, 0.000000;;, - 90;3; 0.000000, 0.826434, 0.000000;;, - 91;3; 0.000000, 0.826434, 0.000000;;, - 92;3; 0.000000, 0.826434, 0.000000;;, - 93;3; 0.000000, 0.826434, 0.000000;;, - 94;3; 0.000000, 0.826434, 0.000000;;, - 95;3; 0.000000, 0.826434, 0.000000;;, - 96;3; 0.000000, 0.826434, 0.000000;;, - 97;3; 0.000000, 0.826434, 0.000000;;, - 98;3; 0.000000, 0.826434, 0.000000;;, - 99;3; 0.000000, 0.826434, 0.000000;;, - 100;3; 0.000000, 0.826434, 0.000000;;, - 101;3; 0.000000, 0.826434, 0.000000;;, - 102;3; 0.000000, 0.826434, 0.000000;;, - 103;3; 0.000000, 0.826434, 0.000000;;, - 104;3; 0.000000, 0.826434, 0.000000;;, - 105;3; 0.000000, 0.826434, 0.000000;;, - 106;3; 0.000000, 0.826434, 0.000000;;, - 107;3; 0.000000, 0.826434, 0.000000;;, - 108;3; 0.000000, 0.826434, 0.000000;;, - 109;3; 0.000000, 0.826434, 0.000000;;, - 110;3; 0.000000, 0.826434, 0.000000;;, - 111;3; 0.000000, 0.826434, 0.000000;;, - 112;3; 0.000000, 0.826434, 0.000000;;, - 113;3; 0.000000, 0.826434, 0.000000;;, - 114;3; 0.000000, 0.826434, 0.000000;;, - 115;3; 0.000000, 0.826434, 0.000000;;, - 116;3; 0.000000, 0.826434, 0.000000;;, - 117;3; 0.000000, 0.826434, 0.000000;;, - 118;3; 0.000000, 0.826434, 0.000000;;, - 119;3; 0.000000, 0.826434, 0.000000;;, - 120;3; 0.000000, 0.826434, 0.000000;;, - 121;3; 0.000000, 0.826434, 0.000000;;, - 122;3; 0.000000, 0.826434, 0.000000;;, - 123;3; 0.000000, 0.826434, 0.000000;;, - 124;3; 0.000000, 0.826434, 0.000000;;, - 125;3; 0.000000, 0.826434, 0.000000;;, - 126;3; 0.000000, 0.826434, 0.000000;;, - 127;3; 0.000000, 0.826434, 0.000000;;, - 128;3; 0.000000, 0.826434, 0.000000;;, - 129;3; 0.000000, 0.826434, 0.000000;;, - 130;3; 0.000000, 0.826434, 0.000000;;, - 131;3; 0.000000, 0.826434, 0.000000;;, - 132;3; 0.000000, 0.826434, 0.000000;;, - 133;3; 0.000000, 0.826434, 0.000000;;, - 134;3; 0.000000, 0.826434, 0.000000;;, - 135;3; 0.000000, 0.826434, 0.000000;;, - 136;3; 0.000000, 0.826434, 0.000000;;, - 137;3; 0.000000, 0.826434, 0.000000;;, - 138;3; 0.000000, 0.826434, 0.000000;;, - 139;3; 0.000000, 0.826434, 0.000000;;, - 140;3; 0.000000, 0.826434, 0.000000;;, - 141;3; 0.000000, 0.826434, 0.000000;;, - 142;3; 0.000000, 0.826434, 0.000000;;, - 143;3; 0.000000, 0.826434, 0.000000;;, - 144;3; 0.000000, 0.826434, 0.000000;;, - 145;3; 0.000000, 0.826434, 0.000000;;, - 146;3; 0.000000, 0.826434, 0.000000;;, - 147;3; 0.000000, 0.826434, 0.000000;;, - 148;3; 0.000000, 0.826434, 0.000000;;, - 149;3; 0.000000, 0.826434, 0.000000;;, - 150;3; 0.000000, 0.826434, 0.000000;;, - 151;3; 0.000000, 0.826434, 0.000000;;, - 152;3; 0.000000, 0.826434, 0.000000;;, - 153;3; 0.000000, 0.826434, 0.000000;;, - 154;3; 0.000000, 0.826434, 0.000000;;, - 155;3; 0.000000, 0.826434, 0.000000;;, - 156;3; 0.000000, 0.826434, 0.000000;;, - 157;3; 0.000000, 0.826434, 0.000000;;, - 158;3; 0.000000, 0.826434, 0.000000;;, - 159;3; 0.000000, 0.826434, 0.000000;;, - 160;3; 0.000000, 0.826434, 0.000000;;, - 161;3; 0.000000, 0.826434, 0.000000;;, - 162;3; 0.000000, 0.826434, 0.000000;;, - 163;3; 0.000000, 0.826434, 0.000000;;, - 164;3; 0.000000, 0.826434, 0.000000;;, - 165;3; 0.000000, 0.826434, 0.000000;;, - 166;3; 0.000000, 0.826434, 0.000000;;, - 167;3; 0.000000, 0.826434, 0.000000;;, - 168;3; 0.000000, 0.826434, 0.000000;;, - 169;3; 0.000000, 0.826434, 0.000000;;, - 170;3; 0.000000, 0.826434, 0.000000;;, - 171;3; 0.000000, 0.826434, 0.000000;;, - 172;3; 0.000000, 0.826434, 0.000000;;, - 173;3; 0.000000, 0.826434, 0.000000;;, - 174;3; 0.000000, 0.826434, 0.000000;;, - 175;3; 0.000000, 0.826434, 0.000000;;, - 176;3; 0.000000, 0.826434, 0.000000;;, - 177;3; 0.000000, 0.826434, 0.000000;;, - 178;3; 0.000000, 0.826434, 0.000000;;, - 179;3; 0.000000, 0.826434, 0.000000;;, - 180;3; 0.000000, 0.826434, 0.000000;;, - 181;3; 0.000000, 0.826434, 0.000000;;, - 182;3; 0.000000, 0.826434, 0.000000;;, - 183;3; 0.000000, 0.826434, 0.000000;;, - 184;3; 0.000000, 0.826434, 0.000000;;, - 185;3; 0.000000, 0.826434, 0.000000;;, - 186;3;-0.000000, 0.826434,-0.000000;;, - 187;3;-0.000000, 0.826434,-0.000000;;, - 188;3;-0.000000, 0.826434, 0.000000;;, - 189;3;-0.000000, 0.826434, 0.000000;;, - 190;3;-0.000000, 0.826434,-0.000000;;, - 191;3; 0.000000, 0.826434, 0.000000;;, - 192;3; 0.000000, 0.826434, 0.000000;;, - 193;3; 0.000000, 0.826434, 0.000000;;, - 194;3; 0.000000, 0.826434,-0.000000;;, - 195;3; 0.000000, 0.826434,-0.000000;;, - 196;3; 0.000000, 0.826434, 0.000000;;, - 197;3; 0.000000, 0.826434,-0.000000;;, - 198;3; 0.000000, 0.826434,-0.000000;;, - 199;3; 0.000000, 0.826434, 0.000000;;, - 200;3; 0.000000, 0.826434, 0.000000;;, - 201;3; 0.000000, 0.826434, 0.000000;;, - 202;3; 0.000000, 0.826434, 0.000000;;, - 203;3; 0.000000, 0.826434, 0.000000;;, - 204;3; 0.000000, 0.826434, 0.000000;;, - 205;3; 0.000000, 0.826434, 0.000000;;, - 206;3; 0.000000, 0.826434, 0.000000;;, - 207;3; 0.000000, 0.826434, 0.000000;;, - 208;3; 0.000000, 0.826434, 0.000000;;, - 209;3; 0.000000, 0.826434, 0.000000;;, - 210;3; 0.000000, 0.826434, 0.000000;;, - 211;3; 0.000000, 0.826434, 0.000000;;, - 212;3; 0.000000, 0.826434, 0.000000;;, - 213;3; 0.000000, 0.826434, 0.000000;;, - 214;3; 0.000000, 0.826434, 0.000000;;, - 215;3; 0.000000, 0.826434, 0.000000;;, - 216;3; 0.000000, 0.826434, 0.000000;;, - 217;3; 0.000000, 0.826434, 0.000000;;, - 218;3; 0.000000, 0.826434, 0.000000;;, - 219;3; 0.000000, 0.826434, 0.000000;;, - 220;3; 0.000000, 0.826434, 0.000000;;, - 221;3; 0.000000, 0.826434, 0.000000;;, - 222;3; 0.000000, 0.826434, 0.000000;;, - 223;3; 0.000000, 0.826434, 0.000000;;, - 224;3; 0.000000, 0.826434, 0.000000;;, - 225;3; 0.000000, 0.826434, 0.000000;;, - 226;3; 0.000000, 0.826434, 0.000000;;, - 227;3; 0.000000, 0.826434, 0.000000;;, - 228;3; 0.000000, 0.826434, 0.000000;;, - 229;3; 0.000000, 0.826434, 0.000000;;, - 230;3; 0.000000, 0.826434, 0.000000;;, - 231;3; 0.000000, 0.826434, 0.000000;;, - 232;3; 0.000000, 0.826434, 0.000000;;, - 233;3; 0.000000, 0.826434, 0.000000;;, - 234;3; 0.000000, 0.826434, 0.000000;;, - 235;3; 0.000000, 0.826434, 0.000000;;, - 236;3; 0.000000, 0.826434, 0.000000;;, - 237;3; 0.000000, 0.826434, 0.000000;;, - 238;3; 0.000000, 0.826434, 0.000000;;, - 239;3; 0.000000, 0.826434, 0.000000;;, - 240;3; 0.000000, 0.826434, 0.000000;;, - 241;3; 0.000000, 0.826434, 0.000000;;, - 242;3; 0.000000, 0.826434, 0.000000;;, - 243;3; 0.000000, 0.826434, 0.000000;;, - 244;3; 0.000000, 0.826434, 0.000000;;, - 245;3; 0.000000, 0.826434, 0.000000;;, - 246;3; 0.000000, 0.826434, 0.000000;;, - 247;3; 0.000000, 0.826434, 0.000000;;, - 248;3; 0.000000, 0.826434, 0.000000;;, - 249;3; 0.000000, 0.826434, 0.000000;;; - } - } - Animation { - {Armature_Bone_017} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 1;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 2;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 3;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 4;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 5;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 6;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 7;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 8;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 9;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 10;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 11;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 12;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 13;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 14;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 15;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 16;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 17;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 18;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 19;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 20;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 21;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 22;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 23;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 24;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 25;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 26;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 27;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 28;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 29;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 30;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 31;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 32;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 33;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 34;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 35;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 36;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 37;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 38;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 39;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 40;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 41;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 42;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 43;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 44;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 45;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 46;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 47;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 48;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 49;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 50;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 51;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 52;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 53;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 54;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 55;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 56;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 57;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 58;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 59;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 60;4;-0.979875, 0.161874, 0.019150, 0.115206;;, - 61;4;-0.979789, 0.162353, 0.019554, 0.115152;;, - 62;4;-0.979645, 0.163155, 0.020231, 0.115062;;, - 63;4;-0.979441, 0.164282, 0.021181, 0.114934;;, - 64;4;-0.979176, 0.165732, 0.022406, 0.114769;;, - 65;4;-0.978851, 0.167506, 0.023902, 0.114566;;, - 66;4;-0.978463, 0.169599, 0.025669, 0.114325;;, - 67;4;-0.978013, 0.172006, 0.027699, 0.114046;;, - 68;4;-0.977502, 0.174718, 0.029988, 0.113730;;, - 69;4;-0.976930, 0.177724, 0.032525, 0.113377;;, - 70;4;-0.976297, 0.181012, 0.035299, 0.112989;;, - 71;4;-0.975606, 0.184565, 0.038297, 0.112566;;, - 72;4;-0.974858, 0.188363, 0.041502, 0.112110;;, - 73;4;-0.974056, 0.192385, 0.044895, 0.111622;;, - 74;4;-0.973202, 0.196604, 0.048455, 0.111105;;, - 75;4;-0.972300, 0.200992, 0.052158, 0.110562;;, - 76;4;-0.971355, 0.205520, 0.055979, 0.109995;;, - 77;4;-0.970370, 0.210154, 0.059889, 0.109408;;, - 78;4;-0.969350, 0.214859, 0.063860, 0.108802;;, - 79;4;-0.968301, 0.219601, 0.067861, 0.108183;;, - 80;4;-0.967227, 0.224343, 0.071862, 0.107554;;, - 81;4;-0.966135, 0.229049, 0.075833, 0.106917;;, - 82;4;-0.965029, 0.233683, 0.079743, 0.106278;;, - 83;4;-0.963917, 0.238210, 0.083564, 0.105639;;, - 84;4;-0.962802, 0.242599, 0.087267, 0.105005;;, - 85;4;-0.961691, 0.246818, 0.090827, 0.104377;;, - 86;4;-0.960588, 0.250839, 0.094220, 0.103761;;, - 87;4;-0.959498, 0.254637, 0.097425, 0.103158;;, - 88;4;-0.958425, 0.258190, 0.100423, 0.102571;;, - 89;4;-0.957374, 0.261478, 0.103198, 0.102003;;, - 90;4;-0.956347, 0.264484, 0.105735, 0.101455;;, - 91;4;-0.955348, 0.267196, 0.108023, 0.100930;;, - 92;4;-0.954380, 0.269603, 0.110054, 0.100429;;, - 93;4;-0.953444, 0.271696, 0.111820, 0.099952;;, - 94;4;-0.952543, 0.273470, 0.113317, 0.099503;;, - 95;4;-0.951678, 0.274921, 0.114541, 0.099080;;, - 96;4;-0.950851, 0.276047, 0.115492, 0.098685;;, - 97;4;-0.950061, 0.276849, 0.116168, 0.098317;;, - 98;4;-0.949311, 0.277328, 0.116573, 0.097978;;, - 99;4;-0.948600, 0.277487, 0.116707, 0.097667;;, - 100;4;-0.947606, 0.278352, 0.114680, 0.097994;;, - 101;4;-0.946013, 0.280934, 0.108572, 0.099579;;, - 102;4;-0.943877, 0.285084, 0.098621, 0.102351;;, - 103;4;-0.941335, 0.290425, 0.085567, 0.106085;;, - 104;4;-0.938612, 0.296333, 0.070718, 0.110381;;, - 105;4;-0.935984, 0.302027, 0.055777, 0.114719;;, - 106;4;-0.933721, 0.306746, 0.042457, 0.118572;;, - 107;4;-0.932020, 0.309924, 0.032088, 0.121530;;, - 108;4;-0.930988, 0.311254, 0.025443, 0.123356;;, - 109;4;-0.930648, 0.310658, 0.022790, 0.123964;;, - 110;4;-0.931874, 0.303766, 0.019976, 0.124160;;, - 111;4;-0.935570, 0.286129, 0.012883, 0.124734;;, - 112;4;-0.941596, 0.258433, 0.001869, 0.125633;;, - 113;4;-0.949505, 0.222706,-0.012143, 0.126744;;, - 114;4;-0.958509, 0.182474,-0.027621, 0.127898;;, - 115;4;-0.967582, 0.142297,-0.042635, 0.128893;;, - 116;4;-0.975687, 0.106729,-0.055304, 0.129545;;, - 117;4;-0.982021, 0.079283,-0.064216, 0.129726;;, - 118;4;-0.986114, 0.061968,-0.068604, 0.129376;;, - 119;4;-0.987803, 0.055451,-0.068262, 0.128494;;, - 120;4;-0.987955, 0.055992,-0.064683, 0.127299;;, - 121;4;-0.987395, 0.060090,-0.059194, 0.125987;;, - 122;4;-0.986102, 0.067853,-0.051737, 0.124555;;, - 123;4;-0.984122, 0.079055,-0.042435, 0.123010;;, - 124;4;-0.981588, 0.093026,-0.031646, 0.121375;;, - 125;4;-0.978714, 0.108699,-0.019945, 0.119684;;, - 126;4;-0.975748, 0.124832,-0.007995, 0.117978;;, - 127;4;-0.972912, 0.140311, 0.003603, 0.116293;;, - 128;4;-0.970367, 0.154340, 0.014422, 0.114656;;, - 129;4;-0.968201, 0.166469, 0.024222, 0.113081;;, - 130;4;-0.966217, 0.178502, 0.034246, 0.111470;;, - 131;4;-0.964188, 0.192256, 0.045705, 0.109732;;, - 132;4;-0.962124, 0.207326, 0.058258, 0.107896;;, - 133;4;-0.960044, 0.222988, 0.071305, 0.106016;;, - 134;4;-0.957976, 0.238232, 0.084005, 0.104167;;, - 135;4;-0.955948, 0.251934, 0.095420, 0.102432;;, - 136;4;-0.953985, 0.263127, 0.104744, 0.100884;;, - 137;4;-0.952104, 0.271203, 0.111471, 0.099567;;, - 138;4;-0.950310, 0.275957, 0.115432, 0.098498;;, - 139;4;-0.948600, 0.277487, 0.116707, 0.097667;;, - 140;4;-0.945807, 0.280934, 0.108572, 0.099491;;, - 141;4;-0.941092, 0.290425, 0.085567, 0.105980;;, - 142;4;-0.935828, 0.302027, 0.055777, 0.114651;;, - 143;4;-0.931974, 0.309924, 0.032088, 0.121510;;, - 144;4;-0.930648, 0.310658, 0.022790, 0.123964;;, - 145;4;-0.935570, 0.286129, 0.012883, 0.124734;;, - 146;4;-0.949505, 0.222706,-0.012143, 0.126744;;, - 147;4;-0.967582, 0.142297,-0.042635, 0.128893;;, - 148;4;-0.982021, 0.079283,-0.064216, 0.129726;;, - 149;4;-0.987803, 0.055451,-0.068262, 0.128494;;, - 150;4;-0.987395, 0.060090,-0.059194, 0.125987;;, - 151;4;-0.984122, 0.079055,-0.042435, 0.123010;;, - 152;4;-0.978714, 0.108699,-0.019945, 0.119684;;, - 153;4;-0.972912, 0.140311, 0.003603, 0.116293;;, - 154;4;-0.968201, 0.166469, 0.024222, 0.113081;;, - 155;4;-0.963648, 0.192256, 0.045705, 0.109500;;, - 156;4;-0.958223, 0.222988, 0.071305, 0.105234;;, - 157;4;-0.953112, 0.251934, 0.095420, 0.101215;;, - 158;4;-0.949710, 0.271203, 0.111471, 0.098540;;, - 159;4;-0.948600, 0.277487, 0.116707, 0.097667;;, - 160;4;-0.948772, 0.277181, 0.116571, 0.097764;;, - 161;4;-0.949294, 0.276233, 0.116135, 0.098056;;, - 162;4;-0.950166, 0.274601, 0.115349, 0.098545;;, - 163;4;-0.951382, 0.272249, 0.114161, 0.099228;;, - 164;4;-0.952929, 0.269148, 0.112515, 0.100095;;, - 165;4;-0.954778, 0.265283, 0.110357, 0.101132;;, - 166;4;-0.956893, 0.260654, 0.107636, 0.102318;;, - 167;4;-0.959220, 0.255284, 0.104305, 0.103623;;, - 168;4;-0.961697, 0.249216, 0.100332, 0.105013;;, - 169;4;-0.964252, 0.242515, 0.095696, 0.106445;;, - 170;4;-0.966806, 0.235267, 0.090397, 0.107878;;, - 171;4;-0.969283, 0.227572, 0.084448, 0.109267;;, - 172;4;-0.971611, 0.219538, 0.077881, 0.110573;;, - 173;4;-0.973725, 0.211273, 0.070741, 0.111758;;, - 174;4;-0.975574, 0.202879, 0.063082, 0.112796;;, - 175;4;-0.977121, 0.194448, 0.054962, 0.113663;;, - 176;4;-0.978337, 0.186059, 0.046439, 0.114345;;, - 177;4;-0.979209, 0.177775, 0.037573, 0.114834;;, - 178;4;-0.979731, 0.169648, 0.028415, 0.115127;;, - 179;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 180;4;-0.977330, 0.157257, 0.000801, 0.113483;;, - 181;4;-0.969586, 0.159468,-0.034876, 0.108245;;, - 182;4;-0.956995, 0.167728,-0.086843, 0.099729;;, - 183;4;-0.940526, 0.180516,-0.151718, 0.088589;;, - 184;4;-0.921869, 0.195354,-0.223678, 0.075970;;, - 185;4;-0.903212, 0.209153,-0.295231, 0.063351;;, - 186;4;-0.886743, 0.218930,-0.358924, 0.052212;;, - 187;4;-0.874152, 0.222478,-0.409040, 0.043696;;, - 188;4;-0.866408, 0.218624,-0.442335, 0.038458;;, - 189;4;-0.863835, 0.207091,-0.457772, 0.036717;;, - 190;4;-0.874577, 0.175955,-0.436552, 0.043943;;, - 191;4;-0.904835, 0.116414,-0.362687, 0.064296;;, - 192;4;-0.943686, 0.045256,-0.260185, 0.090428;;, - 193;4;-0.973943,-0.011707,-0.170527, 0.110781;;, - 194;4;-0.984686,-0.038456,-0.122434, 0.118006;;, - 195;4;-0.984260,-0.028056,-0.092636, 0.117759;;, - 196;4;-0.983063, 0.020698,-0.054045, 0.117062;;, - 197;4;-0.981526, 0.088180,-0.015868, 0.116168;;, - 198;4;-0.980328, 0.142258, 0.010320, 0.115471;;, - 199;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 200;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 201;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 202;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 203;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 204;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 205;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 206;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 207;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 208;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 209;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 210;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 211;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 212;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 213;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 214;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 215;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 216;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 217;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 218;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 219;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 220;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 221;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 222;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 223;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 224;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 225;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 226;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 227;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 228;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 229;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 230;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 231;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 232;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 233;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 234;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 235;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 236;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 237;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 238;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 239;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 240;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 241;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 242;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 243;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 244;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 245;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 246;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 247;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 248;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 249;4;-0.979903, 0.161715, 0.019016, 0.115224;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3;-0.000000, 0.893468, 0.000000;;, - 1;3;-0.000000, 0.893468, 0.000000;;, - 2;3;-0.000000, 0.893468, 0.000000;;, - 3;3;-0.000000, 0.893468, 0.000000;;, - 4;3;-0.000000, 0.893468, 0.000000;;, - 5;3;-0.000000, 0.893468, 0.000000;;, - 6;3;-0.000000, 0.893468, 0.000000;;, - 7;3;-0.000000, 0.893468, 0.000000;;, - 8;3;-0.000000, 0.893468, 0.000000;;, - 9;3;-0.000000, 0.893468, 0.000000;;, - 10;3;-0.000000, 0.893468, 0.000000;;, - 11;3;-0.000000, 0.893468, 0.000000;;, - 12;3;-0.000000, 0.893468, 0.000000;;, - 13;3;-0.000000, 0.893468, 0.000000;;, - 14;3;-0.000000, 0.893468, 0.000000;;, - 15;3;-0.000000, 0.893468, 0.000000;;, - 16;3;-0.000000, 0.893468, 0.000000;;, - 17;3;-0.000000, 0.893468, 0.000000;;, - 18;3;-0.000000, 0.893468, 0.000000;;, - 19;3;-0.000000, 0.893468, 0.000000;;, - 20;3;-0.000000, 0.893468, 0.000000;;, - 21;3;-0.000000, 0.893468, 0.000000;;, - 22;3;-0.000000, 0.893468, 0.000000;;, - 23;3;-0.000000, 0.893468, 0.000000;;, - 24;3;-0.000000, 0.893468, 0.000000;;, - 25;3;-0.000000, 0.893468, 0.000000;;, - 26;3;-0.000000, 0.893468, 0.000000;;, - 27;3;-0.000000, 0.893468, 0.000000;;, - 28;3;-0.000000, 0.893468, 0.000000;;, - 29;3;-0.000000, 0.893468, 0.000000;;, - 30;3;-0.000000, 0.893468, 0.000000;;, - 31;3;-0.000000, 0.893468, 0.000000;;, - 32;3;-0.000000, 0.893468, 0.000000;;, - 33;3;-0.000000, 0.893468, 0.000000;;, - 34;3;-0.000000, 0.893468, 0.000000;;, - 35;3;-0.000000, 0.893468, 0.000000;;, - 36;3;-0.000000, 0.893468, 0.000000;;, - 37;3;-0.000000, 0.893468, 0.000000;;, - 38;3;-0.000000, 0.893468, 0.000000;;, - 39;3;-0.000000, 0.893468, 0.000000;;, - 40;3;-0.000000, 0.893468, 0.000000;;, - 41;3;-0.000000, 0.893468, 0.000000;;, - 42;3;-0.000000, 0.893468, 0.000000;;, - 43;3;-0.000000, 0.893468, 0.000000;;, - 44;3;-0.000000, 0.893468, 0.000000;;, - 45;3;-0.000000, 0.893468, 0.000000;;, - 46;3;-0.000000, 0.893468, 0.000000;;, - 47;3;-0.000000, 0.893468, 0.000000;;, - 48;3;-0.000000, 0.893468, 0.000000;;, - 49;3;-0.000000, 0.893468, 0.000000;;, - 50;3;-0.000000, 0.893468, 0.000000;;, - 51;3;-0.000000, 0.893468, 0.000000;;, - 52;3;-0.000000, 0.893468, 0.000000;;, - 53;3;-0.000000, 0.893468, 0.000000;;, - 54;3;-0.000000, 0.893468, 0.000000;;, - 55;3;-0.000000, 0.893468, 0.000000;;, - 56;3;-0.000000, 0.893468, 0.000000;;, - 57;3;-0.000000, 0.893468, 0.000000;;, - 58;3;-0.000000, 0.893468, 0.000000;;, - 59;3;-0.000000, 0.893468, 0.000000;;, - 60;3;-0.000000, 0.893468, 0.000000;;, - 61;3;-0.000000, 0.893468, 0.000000;;, - 62;3;-0.000000, 0.893468, 0.000000;;, - 63;3;-0.000000, 0.893468, 0.000000;;, - 64;3;-0.000000, 0.893468, 0.000000;;, - 65;3;-0.000000, 0.893468, 0.000000;;, - 66;3;-0.000000, 0.893468, 0.000000;;, - 67;3;-0.000000, 0.893468, 0.000000;;, - 68;3;-0.000000, 0.893468, 0.000000;;, - 69;3;-0.000000, 0.893468, 0.000000;;, - 70;3;-0.000000, 0.893468, 0.000000;;, - 71;3;-0.000000, 0.893468, 0.000000;;, - 72;3;-0.000000, 0.893468, 0.000000;;, - 73;3;-0.000000, 0.893468, 0.000000;;, - 74;3;-0.000000, 0.893468, 0.000000;;, - 75;3;-0.000000, 0.893468, 0.000000;;, - 76;3;-0.000000, 0.893468, 0.000000;;, - 77;3;-0.000000, 0.893468, 0.000000;;, - 78;3;-0.000000, 0.893468, 0.000000;;, - 79;3;-0.000000, 0.893468, 0.000000;;, - 80;3;-0.000000, 0.893468, 0.000000;;, - 81;3;-0.000000, 0.893468, 0.000000;;, - 82;3;-0.000000, 0.893468, 0.000000;;, - 83;3;-0.000000, 0.893468, 0.000000;;, - 84;3;-0.000000, 0.893468, 0.000000;;, - 85;3;-0.000000, 0.893468, 0.000000;;, - 86;3;-0.000000, 0.893468, 0.000000;;, - 87;3;-0.000000, 0.893468, 0.000000;;, - 88;3;-0.000000, 0.893468, 0.000000;;, - 89;3;-0.000000, 0.893468, 0.000000;;, - 90;3;-0.000000, 0.893468, 0.000000;;, - 91;3;-0.000000, 0.893468, 0.000000;;, - 92;3;-0.000000, 0.893468, 0.000000;;, - 93;3;-0.000000, 0.893468, 0.000000;;, - 94;3;-0.000000, 0.893468, 0.000000;;, - 95;3;-0.000000, 0.893468, 0.000000;;, - 96;3;-0.000000, 0.893468, 0.000000;;, - 97;3;-0.000000, 0.893468, 0.000000;;, - 98;3;-0.000000, 0.893468, 0.000000;;, - 99;3;-0.000000, 0.893468, 0.000000;;, - 100;3;-0.000000, 0.893468, 0.000000;;, - 101;3;-0.000000, 0.893468, 0.000000;;, - 102;3;-0.000000, 0.893468, 0.000000;;, - 103;3;-0.000000, 0.893468, 0.000000;;, - 104;3;-0.000000, 0.893468, 0.000000;;, - 105;3;-0.000000, 0.893468, 0.000000;;, - 106;3;-0.000000, 0.893468, 0.000000;;, - 107;3;-0.000000, 0.893468, 0.000000;;, - 108;3;-0.000000, 0.893468, 0.000000;;, - 109;3;-0.000000, 0.893468, 0.000000;;, - 110;3;-0.000000, 0.893468, 0.000000;;, - 111;3;-0.000000, 0.893468, 0.000000;;, - 112;3;-0.000000, 0.893468, 0.000000;;, - 113;3;-0.000000, 0.893468, 0.000000;;, - 114;3;-0.000000, 0.893468, 0.000000;;, - 115;3;-0.000000, 0.893468, 0.000000;;, - 116;3;-0.000000, 0.893468, 0.000000;;, - 117;3;-0.000000, 0.893468, 0.000000;;, - 118;3;-0.000000, 0.893468, 0.000000;;, - 119;3;-0.000000, 0.893468, 0.000000;;, - 120;3;-0.000000, 0.893468, 0.000000;;, - 121;3;-0.000000, 0.893468, 0.000000;;, - 122;3;-0.000000, 0.893468, 0.000000;;, - 123;3;-0.000000, 0.893468, 0.000000;;, - 124;3;-0.000000, 0.893468, 0.000000;;, - 125;3;-0.000000, 0.893468, 0.000000;;, - 126;3;-0.000000, 0.893468, 0.000000;;, - 127;3;-0.000000, 0.893468, 0.000000;;, - 128;3;-0.000000, 0.893468, 0.000000;;, - 129;3;-0.000000, 0.893468, 0.000000;;, - 130;3;-0.000000, 0.893468, 0.000000;;, - 131;3;-0.000000, 0.893468, 0.000000;;, - 132;3;-0.000000, 0.893468, 0.000000;;, - 133;3;-0.000000, 0.893468, 0.000000;;, - 134;3;-0.000000, 0.893468, 0.000000;;, - 135;3;-0.000000, 0.893468, 0.000000;;, - 136;3;-0.000000, 0.893468, 0.000000;;, - 137;3;-0.000000, 0.893468, 0.000000;;, - 138;3;-0.000000, 0.893468, 0.000000;;, - 139;3;-0.000000, 0.893468, 0.000000;;, - 140;3;-0.000000, 0.893468, 0.000000;;, - 141;3;-0.000000, 0.893468, 0.000000;;, - 142;3;-0.000000, 0.893468, 0.000000;;, - 143;3;-0.000000, 0.893468, 0.000000;;, - 144;3;-0.000000, 0.893468, 0.000000;;, - 145;3;-0.000000, 0.893468, 0.000000;;, - 146;3;-0.000000, 0.893468, 0.000000;;, - 147;3;-0.000000, 0.893468, 0.000000;;, - 148;3;-0.000000, 0.893468, 0.000000;;, - 149;3;-0.000000, 0.893468, 0.000000;;, - 150;3;-0.000000, 0.893468, 0.000000;;, - 151;3;-0.000000, 0.893468, 0.000000;;, - 152;3;-0.000000, 0.893468, 0.000000;;, - 153;3;-0.000000, 0.893468, 0.000000;;, - 154;3;-0.000000, 0.893468, 0.000000;;, - 155;3;-0.000000, 0.893468, 0.000000;;, - 156;3;-0.000000, 0.893468, 0.000000;;, - 157;3;-0.000000, 0.893468, 0.000000;;, - 158;3;-0.000000, 0.893468, 0.000000;;, - 159;3;-0.000000, 0.893468, 0.000000;;, - 160;3;-0.000000, 0.893468, 0.000000;;, - 161;3;-0.000000, 0.893468, 0.000000;;, - 162;3;-0.000000, 0.893468, 0.000000;;, - 163;3;-0.000000, 0.893468, 0.000000;;, - 164;3;-0.000000, 0.893468, 0.000000;;, - 165;3;-0.000000, 0.893468, 0.000000;;, - 166;3;-0.000000, 0.893468, 0.000000;;, - 167;3;-0.000000, 0.893468, 0.000000;;, - 168;3;-0.000000, 0.893468, 0.000000;;, - 169;3;-0.000000, 0.893468, 0.000000;;, - 170;3;-0.000000, 0.893468, 0.000000;;, - 171;3;-0.000000, 0.893468, 0.000000;;, - 172;3;-0.000000, 0.893468, 0.000000;;, - 173;3;-0.000000, 0.893468, 0.000000;;, - 174;3;-0.000000, 0.893468, 0.000000;;, - 175;3;-0.000000, 0.893468, 0.000000;;, - 176;3;-0.000000, 0.893468, 0.000000;;, - 177;3;-0.000000, 0.893468, 0.000000;;, - 178;3;-0.000000, 0.893468, 0.000000;;, - 179;3;-0.000000, 0.893468, 0.000000;;, - 180;3;-0.000000, 0.893468, 0.000000;;, - 181;3; 0.000000, 0.893468, 0.000000;;, - 182;3; 0.000000, 0.893468,-0.000000;;, - 183;3; 0.000000, 0.893468,-0.000000;;, - 184;3; 0.000000, 0.893468,-0.000000;;, - 185;3;-0.000000, 0.893468, 0.000000;;, - 186;3;-0.000000, 0.893467, 0.000000;;, - 187;3;-0.000000, 0.893468, 0.000000;;, - 188;3;-0.000000, 0.893468, 0.000000;;, - 189;3;-0.000000, 0.893468, 0.000000;;, - 190;3;-0.000000, 0.893467, 0.000000;;, - 191;3;-0.000000, 0.893468, 0.000000;;, - 192;3; 0.000000, 0.893468,-0.000000;;, - 193;3; 0.000000, 0.893468, 0.000000;;, - 194;3;-0.000000, 0.893468, 0.000000;;, - 195;3; 0.000000, 0.893468, 0.000000;;, - 196;3;-0.000000, 0.893468,-0.000000;;, - 197;3;-0.000000, 0.893468,-0.000000;;, - 198;3; 0.000000, 0.893468, 0.000000;;, - 199;3;-0.000000, 0.893468, 0.000000;;, - 200;3;-0.000000, 0.893468, 0.000000;;, - 201;3;-0.000000, 0.893468, 0.000000;;, - 202;3;-0.000000, 0.893468, 0.000000;;, - 203;3;-0.000000, 0.893468, 0.000000;;, - 204;3;-0.000000, 0.893468, 0.000000;;, - 205;3;-0.000000, 0.893468, 0.000000;;, - 206;3;-0.000000, 0.893468, 0.000000;;, - 207;3;-0.000000, 0.893468, 0.000000;;, - 208;3;-0.000000, 0.893468, 0.000000;;, - 209;3;-0.000000, 0.893468, 0.000000;;, - 210;3;-0.000000, 0.893468, 0.000000;;, - 211;3;-0.000000, 0.893468, 0.000000;;, - 212;3;-0.000000, 0.893468, 0.000000;;, - 213;3;-0.000000, 0.893468, 0.000000;;, - 214;3;-0.000000, 0.893468, 0.000000;;, - 215;3;-0.000000, 0.893468, 0.000000;;, - 216;3;-0.000000, 0.893468, 0.000000;;, - 217;3;-0.000000, 0.893468, 0.000000;;, - 218;3;-0.000000, 0.893468, 0.000000;;, - 219;3;-0.000000, 0.893468, 0.000000;;, - 220;3;-0.000000, 0.893468, 0.000000;;, - 221;3;-0.000000, 0.893468, 0.000000;;, - 222;3;-0.000000, 0.893468, 0.000000;;, - 223;3;-0.000000, 0.893468, 0.000000;;, - 224;3;-0.000000, 0.893468, 0.000000;;, - 225;3;-0.000000, 0.893468, 0.000000;;, - 226;3;-0.000000, 0.893468, 0.000000;;, - 227;3;-0.000000, 0.893468, 0.000000;;, - 228;3;-0.000000, 0.893468, 0.000000;;, - 229;3;-0.000000, 0.893468, 0.000000;;, - 230;3;-0.000000, 0.893468, 0.000000;;, - 231;3;-0.000000, 0.893468, 0.000000;;, - 232;3;-0.000000, 0.893468, 0.000000;;, - 233;3;-0.000000, 0.893468, 0.000000;;, - 234;3;-0.000000, 0.893468, 0.000000;;, - 235;3;-0.000000, 0.893468, 0.000000;;, - 236;3;-0.000000, 0.893468, 0.000000;;, - 237;3;-0.000000, 0.893468, 0.000000;;, - 238;3;-0.000000, 0.893468, 0.000000;;, - 239;3;-0.000000, 0.893468, 0.000000;;, - 240;3;-0.000000, 0.893468, 0.000000;;, - 241;3;-0.000000, 0.893468, 0.000000;;, - 242;3;-0.000000, 0.893468, 0.000000;;, - 243;3;-0.000000, 0.893468, 0.000000;;, - 244;3;-0.000000, 0.893468, 0.000000;;, - 245;3;-0.000000, 0.893468, 0.000000;;, - 246;3;-0.000000, 0.893468, 0.000000;;, - 247;3;-0.000000, 0.893468, 0.000000;;, - 248;3;-0.000000, 0.893468, 0.000000;;, - 249;3;-0.000000, 0.893468, 0.000000;;; - } - } - Animation { - {Armature_Bone_021} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 1;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 2;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 3;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 4;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 5;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 6;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 7;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 8;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 9;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 10;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 11;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 12;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 13;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 14;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 15;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 16;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 17;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 18;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 19;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 20;4;-0.973485,-0.228703,-0.000191, 0.000019;;, - 21;4;-0.973248,-0.229564,-0.000769, 0.000075;;, - 22;4;-0.972851,-0.231004,-0.001735, 0.000168;;, - 23;4;-0.972299,-0.233013,-0.003083, 0.000299;;, - 24;4;-0.971596,-0.235566,-0.004797, 0.000465;;, - 25;4;-0.970755,-0.238620,-0.006846, 0.000664;;, - 26;4;-0.969794,-0.242111,-0.009189, 0.000891;;, - 27;4;-0.968736,-0.245954,-0.011768, 0.001141;;, - 28;4;-0.967611,-0.250044,-0.014513, 0.001407;;, - 29;4;-0.966450,-0.254263,-0.017344, 0.001682;;, - 30;4;-0.965289,-0.258481,-0.020174, 0.001956;;, - 31;4;-0.964163,-0.262571,-0.022919, 0.002222;;, - 32;4;-0.963105,-0.266414,-0.025498, 0.002472;;, - 33;4;-0.962144,-0.269905,-0.027841, 0.002700;;, - 34;4;-0.961303,-0.272959,-0.029891, 0.002898;;, - 35;4;-0.960601,-0.275512,-0.031604, 0.003064;;, - 36;4;-0.960048,-0.277521,-0.032952, 0.003195;;, - 37;4;-0.959651,-0.278961,-0.033918, 0.003289;;, - 38;4;-0.959414,-0.279822,-0.034496, 0.003345;;, - 39;4;-0.959336,-0.280107,-0.034687, 0.003363;;, - 40;4;-0.959414,-0.279822,-0.034496, 0.003345;;, - 41;4;-0.959651,-0.278961,-0.033918, 0.003289;;, - 42;4;-0.960048,-0.277521,-0.032952, 0.003195;;, - 43;4;-0.960601,-0.275512,-0.031604, 0.003064;;, - 44;4;-0.961303,-0.272959,-0.029891, 0.002898;;, - 45;4;-0.962144,-0.269905,-0.027841, 0.002700;;, - 46;4;-0.963105,-0.266414,-0.025498, 0.002472;;, - 47;4;-0.964163,-0.262571,-0.022919, 0.002222;;, - 48;4;-0.965289,-0.258481,-0.020174, 0.001956;;, - 49;4;-0.966450,-0.254263,-0.017344, 0.001682;;, - 50;4;-0.967611,-0.250045,-0.014513, 0.001407;;, - 51;4;-0.968736,-0.245954,-0.011768, 0.001141;;, - 52;4;-0.969794,-0.242111,-0.009189, 0.000891;;, - 53;4;-0.970755,-0.238620,-0.006846, 0.000664;;, - 54;4;-0.971596,-0.235566,-0.004797, 0.000465;;, - 55;4;-0.972299,-0.233013,-0.003083, 0.000299;;, - 56;4;-0.972851,-0.231004,-0.001735, 0.000168;;, - 57;4;-0.973248,-0.229564,-0.000769, 0.000075;;, - 58;4;-0.973485,-0.228703,-0.000191, 0.000019;;, - 59;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 60;4;-0.973404,-0.228767,-0.000244, 0.000024;;, - 61;4;-0.972923,-0.229820,-0.000978, 0.000095;;, - 62;4;-0.972118,-0.231582,-0.002208, 0.000214;;, - 63;4;-0.970988,-0.234057,-0.003935, 0.000382;;, - 64;4;-0.969532,-0.237244,-0.006160, 0.000597;;, - 65;4;-0.967753,-0.241141,-0.008879, 0.000861;;, - 66;4;-0.965653,-0.245739,-0.012088, 0.001172;;, - 67;4;-0.963238,-0.251026,-0.015778, 0.001530;;, - 68;4;-0.960517,-0.256983,-0.019936, 0.001933;;, - 69;4;-0.957501,-0.263589,-0.024546, 0.002380;;, - 70;4;-0.954202,-0.270812,-0.029587, 0.002869;;, - 71;4;-0.950637,-0.278617,-0.035034, 0.003397;;, - 72;4;-0.946826,-0.286961,-0.040858, 0.003962;;, - 73;4;-0.942792,-0.295795,-0.047023, 0.004560;;, - 74;4;-0.938559,-0.305063,-0.053492, 0.005187;;, - 75;4;-0.934156,-0.314704,-0.060220, 0.005839;;, - 76;4;-0.929613,-0.324650,-0.067162, 0.006512;;, - 77;4;-0.924964,-0.334830,-0.074267, 0.007201;;, - 78;4;-0.920243,-0.345168,-0.081482, 0.007901;;, - 79;4;-0.915485,-0.355585,-0.088752, 0.008606;;, - 80;4;-0.910727,-0.366003,-0.096022, 0.009311;;, - 81;4;-0.906006,-0.376340,-0.103237, 0.010010;;, - 82;4;-0.901357,-0.386520,-0.110342, 0.010699;;, - 83;4;-0.896814,-0.396466,-0.117284, 0.011372;;, - 84;4;-0.892411,-0.406108,-0.124012, 0.012025;;, - 85;4;-0.888178,-0.415376,-0.130481, 0.012652;;, - 86;4;-0.884144,-0.424210,-0.136646, 0.013250;;, - 87;4;-0.880333,-0.432554,-0.142470, 0.013815;;, - 88;4;-0.876768,-0.440359,-0.147917, 0.014343;;, - 89;4;-0.873469,-0.447582,-0.152958, 0.014832;;, - 90;4;-0.870453,-0.454187,-0.157568, 0.015278;;, - 91;4;-0.867732,-0.460145,-0.161726, 0.015682;;, - 92;4;-0.865317,-0.465432,-0.165416, 0.016039;;, - 93;4;-0.863217,-0.470030,-0.168625, 0.016351;;, - 94;4;-0.861438,-0.473926,-0.171344, 0.016614;;, - 95;4;-0.859982,-0.477114,-0.173569, 0.016830;;, - 96;4;-0.858852,-0.479589,-0.175296, 0.016998;;, - 97;4;-0.858047,-0.481351,-0.176526, 0.017117;;, - 98;4;-0.857566,-0.482403,-0.177260, 0.017188;;, - 99;4;-0.857407,-0.482752,-0.177504, 0.017212;;, - 100;4;-0.858309,-0.480401,-0.175889, 0.017055;;, - 101;4;-0.861111,-0.473098,-0.170870, 0.016568;;, - 102;4;-0.865870,-0.460691,-0.162346, 0.015742;;, - 103;4;-0.872467,-0.443497,-0.150531, 0.014596;;, - 104;4;-0.880543,-0.422446,-0.136067, 0.013194;;, - 105;4;-0.889527,-0.399027,-0.119976, 0.011633;;, - 106;4;-0.898757,-0.374967,-0.103443, 0.010030;;, - 107;4;-0.907639,-0.351816,-0.087537, 0.008488;;, - 108;4;-0.915745,-0.330685,-0.073017, 0.007080;;, - 109;4;-0.922837,-0.312200,-0.060316, 0.005849;;, - 110;4;-0.929928,-0.293715,-0.047615, 0.004617;;, - 111;4;-0.938035,-0.272584,-0.033096, 0.003209;;, - 112;4;-0.946916,-0.249434,-0.017189, 0.001667;;, - 113;4;-0.956147,-0.225373,-0.000656, 0.000064;;, - 114;4;-0.965131,-0.201955, 0.015435,-0.001497;;, - 115;4;-0.973207,-0.180904, 0.029899,-0.002899;;, - 116;4;-0.979803,-0.163709, 0.041713,-0.004045;;, - 117;4;-0.984563,-0.151303, 0.050238,-0.004871;;, - 118;4;-0.987365,-0.143999, 0.055256,-0.005358;;, - 119;4;-0.988267,-0.141648, 0.056872,-0.005515;;, - 120;4;-0.987365,-0.143999, 0.055256,-0.005358;;, - 121;4;-0.984563,-0.151303, 0.050238,-0.004871;;, - 122;4;-0.979803,-0.163709, 0.041713,-0.004045;;, - 123;4;-0.973207,-0.180904, 0.029899,-0.002899;;, - 124;4;-0.965131,-0.201955, 0.015435,-0.001497;;, - 125;4;-0.956147,-0.225373,-0.000656, 0.000064;;, - 126;4;-0.946916,-0.249434,-0.017189, 0.001667;;, - 127;4;-0.938035,-0.272584,-0.033096, 0.003209;;, - 128;4;-0.929928,-0.293715,-0.047615, 0.004617;;, - 129;4;-0.922837,-0.312200,-0.060316, 0.005849;;, - 130;4;-0.915745,-0.330685,-0.073017, 0.007080;;, - 131;4;-0.907639,-0.351816,-0.087537, 0.008488;;, - 132;4;-0.898757,-0.374967,-0.103443, 0.010030;;, - 133;4;-0.889527,-0.399027,-0.119976, 0.011633;;, - 134;4;-0.880543,-0.422446,-0.136067, 0.013194;;, - 135;4;-0.872467,-0.443497,-0.150531, 0.014596;;, - 136;4;-0.865870,-0.460691,-0.162346, 0.015742;;, - 137;4;-0.861111,-0.473098,-0.170870, 0.016568;;, - 138;4;-0.858309,-0.480401,-0.175889, 0.017055;;, - 139;4;-0.857407,-0.482752,-0.177504, 0.017212;;, - 140;4;-0.861111,-0.473098,-0.170870, 0.016568;;, - 141;4;-0.872467,-0.443497,-0.150531, 0.014596;;, - 142;4;-0.889527,-0.399027,-0.119976, 0.011633;;, - 143;4;-0.907639,-0.351816,-0.087537, 0.008488;;, - 144;4;-0.922837,-0.312200,-0.060316, 0.005849;;, - 145;4;-0.938035,-0.272584,-0.033096, 0.003209;;, - 146;4;-0.956147,-0.225373,-0.000656, 0.000064;;, - 147;4;-0.973207,-0.180904, 0.029899,-0.002899;;, - 148;4;-0.984563,-0.151303, 0.050238,-0.004871;;, - 149;4;-0.988267,-0.141648, 0.056872,-0.005515;;, - 150;4;-0.984563,-0.151303, 0.050238,-0.004871;;, - 151;4;-0.973207,-0.180904, 0.029899,-0.002899;;, - 152;4;-0.956147,-0.225373,-0.000656, 0.000064;;, - 153;4;-0.938035,-0.272584,-0.033096, 0.003209;;, - 154;4;-0.922837,-0.312200,-0.060316, 0.005849;;, - 155;4;-0.907639,-0.351816,-0.087537, 0.008488;;, - 156;4;-0.889527,-0.399027,-0.119976, 0.011633;;, - 157;4;-0.872467,-0.443497,-0.150531, 0.014596;;, - 158;4;-0.861111,-0.473098,-0.170870, 0.016568;;, - 159;4;-0.857407,-0.482752,-0.177504, 0.017212;;, - 160;4;-0.858047,-0.481351,-0.176526, 0.017117;;, - 161;4;-0.859982,-0.477114,-0.173569, 0.016830;;, - 162;4;-0.863217,-0.470030,-0.168625, 0.016351;;, - 163;4;-0.867732,-0.460145,-0.161726, 0.015682;;, - 164;4;-0.873470,-0.447582,-0.152958, 0.014832;;, - 165;4;-0.880333,-0.432554,-0.142470, 0.013815;;, - 166;4;-0.888178,-0.415376,-0.130481, 0.012652;;, - 167;4;-0.896814,-0.396466,-0.117284, 0.011372;;, - 168;4;-0.906006,-0.376340,-0.103237, 0.010010;;, - 169;4;-0.915485,-0.355585,-0.088752, 0.008606;;, - 170;4;-0.924964,-0.334830,-0.074267, 0.007201;;, - 171;4;-0.934156,-0.314704,-0.060220, 0.005839;;, - 172;4;-0.942792,-0.295795,-0.047023, 0.004560;;, - 173;4;-0.950637,-0.278617,-0.035034, 0.003397;;, - 174;4;-0.957501,-0.263589,-0.024546, 0.002380;;, - 175;4;-0.963238,-0.251026,-0.015778, 0.001530;;, - 176;4;-0.967753,-0.241141,-0.008879, 0.000861;;, - 177;4;-0.970988,-0.234057,-0.003935, 0.000382;;, - 178;4;-0.972923,-0.229820,-0.000978, 0.000095;;, - 179;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 180;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 181;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 182;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 183;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 184;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 185;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 186;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 187;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 188;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 189;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 190;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 191;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 192;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 193;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 194;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 195;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 196;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 197;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 198;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 199;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 200;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 201;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 202;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 203;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 204;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 205;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 206;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 207;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 208;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 209;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 210;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 211;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 212;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 213;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 214;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 215;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 216;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 217;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 218;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 219;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 220;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 221;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 222;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 223;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 224;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 225;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 226;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 227;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 228;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 229;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 230;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 231;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 232;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 233;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 234;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 235;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 236;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 237;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 238;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 239;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 240;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 241;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 242;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 243;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 244;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 245;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 246;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 247;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 248;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 249;4;-0.973563,-0.228418,-0.000000, 0.000000;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3;-0.000000, 1.294482,-0.000000;;, - 1;3;-0.000000, 1.294482,-0.000000;;, - 2;3;-0.000000, 1.294482,-0.000000;;, - 3;3;-0.000000, 1.294482,-0.000000;;, - 4;3;-0.000000, 1.294482,-0.000000;;, - 5;3;-0.000000, 1.294482,-0.000000;;, - 6;3;-0.000000, 1.294482,-0.000000;;, - 7;3;-0.000000, 1.294482,-0.000000;;, - 8;3;-0.000000, 1.294482,-0.000000;;, - 9;3;-0.000000, 1.294482,-0.000000;;, - 10;3;-0.000000, 1.294482,-0.000000;;, - 11;3;-0.000000, 1.294482,-0.000000;;, - 12;3;-0.000000, 1.294482,-0.000000;;, - 13;3;-0.000000, 1.294482,-0.000000;;, - 14;3;-0.000000, 1.294482,-0.000000;;, - 15;3;-0.000000, 1.294482,-0.000000;;, - 16;3;-0.000000, 1.294482,-0.000000;;, - 17;3;-0.000000, 1.294482,-0.000000;;, - 18;3;-0.000000, 1.294482,-0.000000;;, - 19;3;-0.000000, 1.294482,-0.000000;;, - 20;3;-0.000000, 1.294482,-0.000000;;, - 21;3;-0.000000, 1.294482,-0.000000;;, - 22;3;-0.000000, 1.294482,-0.000000;;, - 23;3;-0.000000, 1.294482,-0.000000;;, - 24;3;-0.000000, 1.294482,-0.000000;;, - 25;3;-0.000000, 1.294482,-0.000000;;, - 26;3;-0.000000, 1.294482,-0.000000;;, - 27;3;-0.000000, 1.294482,-0.000000;;, - 28;3;-0.000000, 1.294482,-0.000000;;, - 29;3;-0.000000, 1.294482,-0.000000;;, - 30;3;-0.000000, 1.294482,-0.000000;;, - 31;3;-0.000000, 1.294482,-0.000000;;, - 32;3;-0.000000, 1.294482,-0.000000;;, - 33;3;-0.000000, 1.294482,-0.000000;;, - 34;3;-0.000000, 1.294482,-0.000000;;, - 35;3;-0.000000, 1.294482,-0.000000;;, - 36;3;-0.000000, 1.294482,-0.000000;;, - 37;3;-0.000000, 1.294482,-0.000000;;, - 38;3;-0.000000, 1.294482,-0.000000;;, - 39;3;-0.000000, 1.294482,-0.000000;;, - 40;3;-0.000000, 1.294482,-0.000000;;, - 41;3;-0.000000, 1.294482,-0.000000;;, - 42;3;-0.000000, 1.294482,-0.000000;;, - 43;3;-0.000000, 1.294482,-0.000000;;, - 44;3;-0.000000, 1.294482,-0.000000;;, - 45;3;-0.000000, 1.294482,-0.000000;;, - 46;3;-0.000000, 1.294482,-0.000000;;, - 47;3;-0.000000, 1.294482,-0.000000;;, - 48;3;-0.000000, 1.294482,-0.000000;;, - 49;3;-0.000000, 1.294482,-0.000000;;, - 50;3;-0.000000, 1.294482,-0.000000;;, - 51;3;-0.000000, 1.294482,-0.000000;;, - 52;3;-0.000000, 1.294482,-0.000000;;, - 53;3;-0.000000, 1.294482,-0.000000;;, - 54;3;-0.000000, 1.294482,-0.000000;;, - 55;3;-0.000000, 1.294482,-0.000000;;, - 56;3;-0.000000, 1.294482,-0.000000;;, - 57;3;-0.000000, 1.294482,-0.000000;;, - 58;3;-0.000000, 1.294482,-0.000000;;, - 59;3;-0.000000, 1.294482,-0.000000;;, - 60;3;-0.000000, 1.294482, 0.000000;;, - 61;3; 0.000000, 1.294482,-0.000000;;, - 62;3; 0.000000, 1.294481,-0.000000;;, - 63;3;-0.000000, 1.294482, 0.000000;;, - 64;3; 0.000000, 1.294482, 0.000000;;, - 65;3; 0.000000, 1.294482, 0.000000;;, - 66;3;-0.000000, 1.294482, 0.000000;;, - 67;3;-0.000000, 1.294482,-0.000000;;, - 68;3;-0.000000, 1.294482,-0.000000;;, - 69;3;-0.000000, 1.294482,-0.000000;;, - 70;3; 0.000000, 1.294481, 0.000000;;, - 71;3;-0.000000, 1.294481, 0.000000;;, - 72;3;-0.000000, 1.294482,-0.000000;;, - 73;3; 0.000000, 1.294481, 0.000000;;, - 74;3; 0.000000, 1.294482, 0.000000;;, - 75;3; 0.000000, 1.294481, 0.000000;;, - 76;3;-0.000000, 1.294482,-0.000000;;, - 77;3;-0.000000, 1.294482, 0.000000;;, - 78;3; 0.000000, 1.294482,-0.000000;;, - 79;3; 0.000000, 1.294482, 0.000000;;, - 80;3;-0.000000, 1.294482,-0.000000;;, - 81;3; 0.000000, 1.294482, 0.000000;;, - 82;3; 0.000000, 1.294481, 0.000000;;, - 83;3;-0.000000, 1.294482, 0.000000;;, - 84;3;-0.000000, 1.294482, 0.000000;;, - 85;3;-0.000000, 1.294482, 0.000000;;, - 86;3;-0.000000, 1.294482, 0.000000;;, - 87;3;-0.000000, 1.294481, 0.000000;;, - 88;3; 0.000000, 1.294482,-0.000000;;, - 89;3; 0.000000, 1.294482, 0.000000;;, - 90;3; 0.000000, 1.294482, 0.000000;;, - 91;3;-0.000000, 1.294482, 0.000000;;, - 92;3;-0.000000, 1.294482,-0.000000;;, - 93;3;-0.000000, 1.294481, 0.000000;;, - 94;3;-0.000000, 1.294482, 0.000000;;, - 95;3; 0.000000, 1.294482, 0.000000;;, - 96;3; 0.000000, 1.294482,-0.000000;;, - 97;3; 0.000000, 1.294482, 0.000000;;, - 98;3;-0.000000, 1.294482, 0.000000;;, - 99;3; 0.000000, 1.294482,-0.000000;;, - 100;3; 0.000000, 1.294481, 0.000000;;, - 101;3; 0.000000, 1.294481,-0.000000;;, - 102;3; 0.000000, 1.294482,-0.000000;;, - 103;3; 0.000000, 1.294482,-0.000000;;, - 104;3; 0.000000, 1.294482,-0.000000;;, - 105;3; 0.000000, 1.294481, 0.000000;;, - 106;3; 0.000000, 1.294481,-0.000000;;, - 107;3;-0.000000, 1.294482, 0.000000;;, - 108;3; 0.000000, 1.294482,-0.000000;;, - 109;3; 0.000000, 1.294481,-0.000000;;, - 110;3; 0.000000, 1.294482, 0.000000;;, - 111;3;-0.000000, 1.294482,-0.000000;;, - 112;3; 0.000000, 1.294482,-0.000000;;, - 113;3; 0.000000, 1.294482,-0.000000;;, - 114;3;-0.000000, 1.294482,-0.000000;;, - 115;3;-0.000000, 1.294482, 0.000000;;, - 116;3; 0.000000, 1.294482,-0.000000;;, - 117;3; 0.000000, 1.294482,-0.000000;;, - 118;3; 0.000000, 1.294482,-0.000000;;, - 119;3;-0.000000, 1.294482, 0.000000;;, - 120;3; 0.000000, 1.294481,-0.000000;;, - 121;3;-0.000000, 1.294482,-0.000000;;, - 122;3;-0.000000, 1.294482,-0.000000;;, - 123;3;-0.000000, 1.294482, 0.000000;;, - 124;3; 0.000000, 1.294482,-0.000000;;, - 125;3; 0.000000, 1.294481, 0.000000;;, - 126;3; 0.000000, 1.294481,-0.000000;;, - 127;3; 0.000000, 1.294482, 0.000000;;, - 128;3; 0.000000, 1.294481, 0.000000;;, - 129;3;-0.000000, 1.294482, 0.000000;;, - 130;3; 0.000000, 1.294482, 0.000000;;, - 131;3; 0.000000, 1.294482,-0.000000;;, - 132;3;-0.000000, 1.294482, 0.000000;;, - 133;3;-0.000000, 1.294482,-0.000000;;, - 134;3;-0.000000, 1.294482, 0.000000;;, - 135;3; 0.000000, 1.294482, 0.000000;;, - 136;3; 0.000000, 1.294481,-0.000000;;, - 137;3;-0.000000, 1.294482,-0.000000;;, - 138;3;-0.000000, 1.294482, 0.000000;;, - 139;3; 0.000000, 1.294482,-0.000000;;, - 140;3;-0.000000, 1.294482,-0.000000;;, - 141;3; 0.000000, 1.294482, 0.000000;;, - 142;3; 0.000000, 1.294482, 0.000000;;, - 143;3;-0.000000, 1.294482, 0.000000;;, - 144;3; 0.000000, 1.294481,-0.000000;;, - 145;3;-0.000000, 1.294482,-0.000000;;, - 146;3; 0.000000, 1.294482,-0.000000;;, - 147;3;-0.000000, 1.294482, 0.000000;;, - 148;3; 0.000000, 1.294482,-0.000000;;, - 149;3;-0.000000, 1.294482, 0.000000;;, - 150;3;-0.000000, 1.294482,-0.000000;;, - 151;3;-0.000000, 1.294482, 0.000000;;, - 152;3; 0.000000, 1.294481, 0.000000;;, - 153;3; 0.000000, 1.294482, 0.000000;;, - 154;3;-0.000000, 1.294482, 0.000000;;, - 155;3;-0.000000, 1.294482,-0.000000;;, - 156;3; 0.000000, 1.294482,-0.000000;;, - 157;3; 0.000000, 1.294482,-0.000000;;, - 158;3; 0.000000, 1.294482,-0.000000;;, - 159;3; 0.000000, 1.294482,-0.000000;;, - 160;3; 0.000000, 1.294482,-0.000000;;, - 161;3;-0.000000, 1.294482, 0.000000;;, - 162;3;-0.000000, 1.294481, 0.000000;;, - 163;3; 0.000000, 1.294482, 0.000000;;, - 164;3;-0.000000, 1.294482,-0.000000;;, - 165;3; 0.000000, 1.294482, 0.000000;;, - 166;3;-0.000000, 1.294482, 0.000000;;, - 167;3; 0.000000, 1.294482, 0.000000;;, - 168;3; 0.000000, 1.294482, 0.000000;;, - 169;3; 0.000000, 1.294482,-0.000000;;, - 170;3; 0.000000, 1.294482, 0.000000;;, - 171;3;-0.000000, 1.294482, 0.000000;;, - 172;3;-0.000000, 1.294481,-0.000000;;, - 173;3;-0.000000, 1.294482, 0.000000;;, - 174;3;-0.000000, 1.294482,-0.000000;;, - 175;3; 0.000000, 1.294482, 0.000000;;, - 176;3;-0.000000, 1.294482, 0.000000;;, - 177;3; 0.000000, 1.294481, 0.000000;;, - 178;3;-0.000000, 1.294481,-0.000000;;, - 179;3;-0.000000, 1.294482,-0.000000;;, - 180;3; 0.000000, 1.294481, 0.000000;;, - 181;3; 0.000000, 1.294482,-0.000000;;, - 182;3; 0.000000, 1.294482, 0.000000;;, - 183;3; 0.000000, 1.294482, 0.000000;;, - 184;3;-0.000000, 1.294482,-0.000000;;, - 185;3; 0.000000, 1.294482,-0.000000;;, - 186;3;-0.000000, 1.294482,-0.000000;;, - 187;3; 0.000000, 1.294482,-0.000000;;, - 188;3;-0.000000, 1.294482, 0.000000;;, - 189;3;-0.000000, 1.294482,-0.000000;;, - 190;3; 0.000000, 1.294482,-0.000000;;, - 191;3; 0.000000, 1.294482,-0.000000;;, - 192;3; 0.000000, 1.294482,-0.000000;;, - 193;3; 0.000000, 1.294481,-0.000000;;, - 194;3; 0.000000, 1.294482,-0.000000;;, - 195;3; 0.000000, 1.294482,-0.000000;;, - 196;3; 0.000000, 1.294481,-0.000000;;, - 197;3;-0.000000, 1.294481, 0.000000;;, - 198;3; 0.000000, 1.294482,-0.000000;;, - 199;3;-0.000000, 1.294482,-0.000000;;, - 200;3;-0.000000, 1.294482,-0.000000;;, - 201;3;-0.000000, 1.294482,-0.000000;;, - 202;3;-0.000000, 1.294482,-0.000000;;, - 203;3;-0.000000, 1.294482,-0.000000;;, - 204;3;-0.000000, 1.294482,-0.000000;;, - 205;3;-0.000000, 1.294482,-0.000000;;, - 206;3;-0.000000, 1.294482,-0.000000;;, - 207;3;-0.000000, 1.294482,-0.000000;;, - 208;3;-0.000000, 1.294482,-0.000000;;, - 209;3;-0.000000, 1.294482,-0.000000;;, - 210;3;-0.000000, 1.294482,-0.000000;;, - 211;3;-0.000000, 1.294482,-0.000000;;, - 212;3;-0.000000, 1.294482,-0.000000;;, - 213;3;-0.000000, 1.294482,-0.000000;;, - 214;3;-0.000000, 1.294482,-0.000000;;, - 215;3;-0.000000, 1.294482,-0.000000;;, - 216;3;-0.000000, 1.294482,-0.000000;;, - 217;3;-0.000000, 1.294482,-0.000000;;, - 218;3;-0.000000, 1.294482,-0.000000;;, - 219;3;-0.000000, 1.294482,-0.000000;;, - 220;3;-0.000000, 1.294482,-0.000000;;, - 221;3;-0.000000, 1.294482,-0.000000;;, - 222;3;-0.000000, 1.294482,-0.000000;;, - 223;3;-0.000000, 1.294482,-0.000000;;, - 224;3;-0.000000, 1.294482,-0.000000;;, - 225;3;-0.000000, 1.294482,-0.000000;;, - 226;3;-0.000000, 1.294482,-0.000000;;, - 227;3;-0.000000, 1.294482,-0.000000;;, - 228;3;-0.000000, 1.294482,-0.000000;;, - 229;3;-0.000000, 1.294482,-0.000000;;, - 230;3;-0.000000, 1.294482,-0.000000;;, - 231;3;-0.000000, 1.294482,-0.000000;;, - 232;3;-0.000000, 1.294482,-0.000000;;, - 233;3;-0.000000, 1.294482,-0.000000;;, - 234;3;-0.000000, 1.294482,-0.000000;;, - 235;3;-0.000000, 1.294482,-0.000000;;, - 236;3;-0.000000, 1.294482,-0.000000;;, - 237;3;-0.000000, 1.294482,-0.000000;;, - 238;3;-0.000000, 1.294482,-0.000000;;, - 239;3;-0.000000, 1.294482,-0.000000;;, - 240;3;-0.000000, 1.294482,-0.000000;;, - 241;3;-0.000000, 1.294482,-0.000000;;, - 242;3;-0.000000, 1.294482,-0.000000;;, - 243;3;-0.000000, 1.294482,-0.000000;;, - 244;3;-0.000000, 1.294482,-0.000000;;, - 245;3;-0.000000, 1.294482,-0.000000;;, - 246;3;-0.000000, 1.294482,-0.000000;;, - 247;3;-0.000000, 1.294482,-0.000000;;, - 248;3;-0.000000, 1.294482,-0.000000;;, - 249;3;-0.000000, 1.294482,-0.000000;;; - } - } - Animation { - {Armature_Bone_025} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 1;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 2;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 3;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 4;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 5;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 6;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 7;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 8;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 9;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 10;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 11;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 12;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 13;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 14;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 15;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 16;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 17;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 18;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 19;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 20;4;-0.945928,-0.324372, 0.000064, 0.000032;;, - 21;4;-0.946031,-0.324057, 0.000256, 0.000128;;, - 22;4;-0.946203,-0.323531, 0.000578, 0.000290;;, - 23;4;-0.946444,-0.322797, 0.001027, 0.000514;;, - 24;4;-0.946749,-0.321864, 0.001598, 0.000800;;, - 25;4;-0.947114,-0.320748, 0.002281, 0.001142;;, - 26;4;-0.947532,-0.319472, 0.003062, 0.001533;;, - 27;4;-0.947991,-0.318068, 0.003921, 0.001964;;, - 28;4;-0.948480,-0.316574, 0.004836, 0.002422;;, - 29;4;-0.948985,-0.315033, 0.005779, 0.002894;;, - 30;4;-0.949489,-0.313491, 0.006722, 0.003366;;, - 31;4;-0.949979,-0.311997, 0.007637, 0.003824;;, - 32;4;-0.950438,-0.310593, 0.008496, 0.004254;;, - 33;4;-0.950856,-0.309317, 0.009277, 0.004645;;, - 34;4;-0.951221,-0.308201, 0.009960, 0.004987;;, - 35;4;-0.951526,-0.307268, 0.010531, 0.005273;;, - 36;4;-0.951766,-0.306534, 0.010980, 0.005498;;, - 37;4;-0.951939,-0.306008, 0.011302, 0.005659;;, - 38;4;-0.952042,-0.305694, 0.011494, 0.005756;;, - 39;4;-0.952076,-0.305589, 0.011558, 0.005788;;, - 40;4;-0.952075,-0.305611, 0.011546, 0.005782;;, - 41;4;-0.952071,-0.305681, 0.011508, 0.005763;;, - 42;4;-0.952060,-0.305809, 0.011436, 0.005727;;, - 43;4;-0.952037,-0.306007, 0.011325, 0.005671;;, - 44;4;-0.951997,-0.306286, 0.011165, 0.005591;;, - 45;4;-0.951933,-0.306659, 0.010950, 0.005483;;, - 46;4;-0.951838,-0.307138, 0.010671, 0.005344;;, - 47;4;-0.951706,-0.307734, 0.010321, 0.005168;;, - 48;4;-0.951530,-0.308456, 0.009892, 0.004953;;, - 49;4;-0.951303,-0.309311, 0.009381, 0.004697;;, - 50;4;-0.951021,-0.310303, 0.008783, 0.004398;;, - 51;4;-0.950680,-0.311432, 0.008099, 0.004056;;, - 52;4;-0.950279,-0.312693, 0.007330, 0.003671;;, - 53;4;-0.949816,-0.314079, 0.006479, 0.003245;;, - 54;4;-0.949294,-0.315583, 0.005552, 0.002780;;, - 55;4;-0.948714,-0.317193, 0.004555, 0.002281;;, - 56;4;-0.948080,-0.318899, 0.003494, 0.001750;;, - 57;4;-0.947396,-0.320688, 0.002377, 0.001190;;, - 58;4;-0.946666,-0.322550, 0.001210, 0.000606;;, - 59;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 60;4;-0.945056,-0.326527,-0.001292,-0.000647;;, - 61;4;-0.944124,-0.328772,-0.002708,-0.001356;;, - 62;4;-0.943099,-0.331211,-0.004248,-0.002127;;, - 63;4;-0.941981,-0.333842,-0.005911,-0.002960;;, - 64;4;-0.940772,-0.336663,-0.007695,-0.003853;;, - 65;4;-0.939472,-0.339670,-0.009599,-0.004806;;, - 66;4;-0.938084,-0.342858,-0.011617,-0.005817;;, - 67;4;-0.936612,-0.346220,-0.013748,-0.006884;;, - 68;4;-0.935058,-0.349747,-0.015984,-0.008004;;, - 69;4;-0.933428,-0.353429,-0.018319,-0.009173;;, - 70;4;-0.931727,-0.357255,-0.020746,-0.010389;;, - 71;4;-0.929962,-0.361209,-0.023256,-0.011646;;, - 72;4;-0.928139,-0.365276,-0.025838,-0.012939;;, - 73;4;-0.926269,-0.369438,-0.028481,-0.014262;;, - 74;4;-0.924358,-0.373675,-0.031173,-0.015610;;, - 75;4;-0.922419,-0.377965,-0.033899,-0.016975;;, - 76;4;-0.920460,-0.382286,-0.036645,-0.018350;;, - 77;4;-0.918494,-0.386613,-0.039396,-0.019727;;, - 78;4;-0.916532,-0.390923,-0.042135,-0.021099;;, - 79;4;-0.914586,-0.395188,-0.044848,-0.022458;;, - 80;4;-0.912668,-0.399386,-0.047518,-0.023794;;, - 81;4;-0.910789,-0.403490,-0.050128,-0.025102;;, - 82;4;-0.908961,-0.407478,-0.052665,-0.026372;;, - 83;4;-0.907194,-0.411326,-0.055114,-0.027598;;, - 84;4;-0.905498,-0.415014,-0.057461,-0.028774;;, - 85;4;-0.903883,-0.418523,-0.059694,-0.029892;;, - 86;4;-0.902356,-0.421835,-0.061802,-0.030947;;, - 87;4;-0.900925,-0.424936,-0.063776,-0.031936;;, - 88;4;-0.899597,-0.427812,-0.065607,-0.032853;;, - 89;4;-0.898376,-0.430454,-0.067289,-0.033695;;, - 90;4;-0.897266,-0.432853,-0.068816,-0.034460;;, - 91;4;-0.896270,-0.435002,-0.070185,-0.035145;;, - 92;4;-0.895392,-0.436898,-0.071392,-0.035750;;, - 93;4;-0.894632,-0.438537,-0.072436,-0.036272;;, - 94;4;-0.893990,-0.439919,-0.073316,-0.036713;;, - 95;4;-0.893468,-0.441043,-0.074032,-0.037072;;, - 96;4;-0.893064,-0.441913,-0.074586,-0.037349;;, - 97;4;-0.892778,-0.442529,-0.074978,-0.037545;;, - 98;4;-0.892607,-0.442895,-0.075212,-0.037662;;, - 99;4;-0.892551,-0.443016,-0.075289,-0.037701;;, - 100;4;-0.893183,-0.440632,-0.073858,-0.036985;;, - 101;4;-0.895145,-0.433228,-0.069414,-0.034759;;, - 102;4;-0.898479,-0.420648,-0.061863,-0.030978;;, - 103;4;-0.903099,-0.403215,-0.051400,-0.025738;;, - 104;4;-0.908756,-0.381872,-0.038589,-0.019323;;, - 105;4;-0.915049,-0.358128,-0.024337,-0.012187;;, - 106;4;-0.921514,-0.333734,-0.009695,-0.004855;;, - 107;4;-0.927735,-0.310262, 0.004393, 0.002200;;, - 108;4;-0.933413,-0.288837, 0.017253, 0.008639;;, - 109;4;-0.938380,-0.270095, 0.028502, 0.014272;;, - 110;4;-0.943347,-0.251354, 0.039751, 0.019905;;, - 111;4;-0.949025,-0.229929, 0.052610, 0.026345;;, - 112;4;-0.955246,-0.206457, 0.066699, 0.033399;;, - 113;4;-0.961711,-0.182063, 0.081341, 0.040732;;, - 114;4;-0.968004,-0.158319, 0.095593, 0.047868;;, - 115;4;-0.973661,-0.136976, 0.108403, 0.054283;;, - 116;4;-0.978281,-0.119542, 0.118867, 0.059523;;, - 117;4;-0.981615,-0.106963, 0.126417, 0.063304;;, - 118;4;-0.983577,-0.099559, 0.130862, 0.065529;;, - 119;4;-0.984209,-0.097175, 0.132293, 0.066246;;, - 120;4;-0.983577,-0.099559, 0.130862, 0.065529;;, - 121;4;-0.981615,-0.106963, 0.126417, 0.063304;;, - 122;4;-0.978281,-0.119542, 0.118867, 0.059523;;, - 123;4;-0.973661,-0.136976, 0.108403, 0.054283;;, - 124;4;-0.968004,-0.158319, 0.095593, 0.047868;;, - 125;4;-0.961711,-0.182063, 0.081341, 0.040732;;, - 126;4;-0.955246,-0.206457, 0.066699, 0.033399;;, - 127;4;-0.949025,-0.229929, 0.052610, 0.026345;;, - 128;4;-0.943347,-0.251354, 0.039751, 0.019905;;, - 129;4;-0.938380,-0.270095, 0.028502, 0.014272;;, - 130;4;-0.933413,-0.288837, 0.017253, 0.008639;;, - 131;4;-0.927735,-0.310262, 0.004393, 0.002200;;, - 132;4;-0.921514,-0.333734,-0.009695,-0.004855;;, - 133;4;-0.915049,-0.358128,-0.024337,-0.012187;;, - 134;4;-0.908756,-0.381872,-0.038589,-0.019323;;, - 135;4;-0.903099,-0.403215,-0.051400,-0.025738;;, - 136;4;-0.898479,-0.420648,-0.061863,-0.030978;;, - 137;4;-0.895145,-0.433228,-0.069414,-0.034759;;, - 138;4;-0.893183,-0.440632,-0.073858,-0.036985;;, - 139;4;-0.892551,-0.443016,-0.075289,-0.037701;;, - 140;4;-0.895145,-0.433228,-0.069414,-0.034759;;, - 141;4;-0.903099,-0.403215,-0.051400,-0.025738;;, - 142;4;-0.915049,-0.358128,-0.024337,-0.012187;;, - 143;4;-0.927735,-0.310262, 0.004393, 0.002200;;, - 144;4;-0.938380,-0.270095, 0.028502, 0.014272;;, - 145;4;-0.949025,-0.229929, 0.052610, 0.026345;;, - 146;4;-0.961711,-0.182063, 0.081341, 0.040732;;, - 147;4;-0.973661,-0.136976, 0.108403, 0.054283;;, - 148;4;-0.981615,-0.106963, 0.126417, 0.063304;;, - 149;4;-0.984209,-0.097175, 0.132293, 0.066246;;, - 150;4;-0.981615,-0.106963, 0.126417, 0.063304;;, - 151;4;-0.973661,-0.136976, 0.108403, 0.054283;;, - 152;4;-0.961711,-0.182063, 0.081341, 0.040732;;, - 153;4;-0.949025,-0.229929, 0.052610, 0.026345;;, - 154;4;-0.938380,-0.270095, 0.028502, 0.014272;;, - 155;4;-0.927735,-0.310262, 0.004393, 0.002200;;, - 156;4;-0.915049,-0.358128,-0.024337,-0.012187;;, - 157;4;-0.903099,-0.403215,-0.051400,-0.025738;;, - 158;4;-0.895145,-0.433228,-0.069414,-0.034759;;, - 159;4;-0.892551,-0.443016,-0.075289,-0.037701;;, - 160;4;-0.892845,-0.442363,-0.074874,-0.037493;;, - 161;4;-0.893733,-0.440388,-0.073620,-0.036865;;, - 162;4;-0.895219,-0.437086,-0.071523,-0.035815;;, - 163;4;-0.897292,-0.432479,-0.068597,-0.034350;;, - 164;4;-0.899927,-0.426624,-0.064878,-0.032488;;, - 165;4;-0.903079,-0.419620,-0.060429,-0.030260;;, - 166;4;-0.906682,-0.411613,-0.055344,-0.027714;;, - 167;4;-0.910648,-0.402800,-0.049746,-0.024911;;, - 168;4;-0.914869,-0.393419,-0.043789,-0.021927;;, - 169;4;-0.919222,-0.383746,-0.037645,-0.018850;;, - 170;4;-0.923576,-0.374072,-0.031501,-0.015774;;, - 171;4;-0.927797,-0.364692,-0.025543,-0.012791;;, - 172;4;-0.931763,-0.355879,-0.019945,-0.009987;;, - 173;4;-0.935366,-0.347872,-0.014860,-0.007441;;, - 174;4;-0.938518,-0.340868,-0.010411,-0.005213;;, - 175;4;-0.941152,-0.335013,-0.006692,-0.003351;;, - 176;4;-0.943226,-0.330405,-0.003766,-0.001886;;, - 177;4;-0.944712,-0.327104,-0.001669,-0.000836;;, - 178;4;-0.945600,-0.325129,-0.000415,-0.000208;;, - 179;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 180;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 181;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 182;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 183;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 184;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 185;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 186;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 187;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 188;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 189;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 190;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 191;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 192;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 193;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 194;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 195;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 196;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 197;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 198;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 199;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 200;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 201;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 202;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 203;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 204;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 205;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 206;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 207;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 208;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 209;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 210;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 211;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 212;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 213;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 214;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 215;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 216;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 217;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 218;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 219;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 220;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 221;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 222;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 223;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 224;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 225;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 226;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 227;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 228;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 229;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 230;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 231;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 232;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 233;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 234;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 235;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 236;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 237;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 238;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 239;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 240;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 241;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 242;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 243;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 244;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 245;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 246;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 247;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 248;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 249;4;-0.945894,-0.324476,-0.000000, 0.000000;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3;-0.000000, 1.228822,-0.000000;;, - 1;3;-0.000000, 1.228822,-0.000000;;, - 2;3;-0.000000, 1.228822,-0.000000;;, - 3;3;-0.000000, 1.228822,-0.000000;;, - 4;3;-0.000000, 1.228822,-0.000000;;, - 5;3;-0.000000, 1.228822,-0.000000;;, - 6;3;-0.000000, 1.228822,-0.000000;;, - 7;3;-0.000000, 1.228822,-0.000000;;, - 8;3;-0.000000, 1.228822,-0.000000;;, - 9;3;-0.000000, 1.228822,-0.000000;;, - 10;3;-0.000000, 1.228822,-0.000000;;, - 11;3;-0.000000, 1.228822,-0.000000;;, - 12;3;-0.000000, 1.228822,-0.000000;;, - 13;3;-0.000000, 1.228822,-0.000000;;, - 14;3;-0.000000, 1.228822,-0.000000;;, - 15;3;-0.000000, 1.228822,-0.000000;;, - 16;3;-0.000000, 1.228822,-0.000000;;, - 17;3;-0.000000, 1.228822,-0.000000;;, - 18;3;-0.000000, 1.228822,-0.000000;;, - 19;3;-0.000000, 1.228822,-0.000000;;, - 20;3;-0.000000, 1.228822,-0.000000;;, - 21;3; 0.000000, 1.228822, 0.000000;;, - 22;3; 0.000000, 1.228822,-0.000000;;, - 23;3;-0.000000, 1.228822,-0.000000;;, - 24;3; 0.000000, 1.228822, 0.000000;;, - 25;3;-0.000000, 1.228822,-0.000000;;, - 26;3; 0.000000, 1.228822, 0.000000;;, - 27;3; 0.000000, 1.228822, 0.000000;;, - 28;3;-0.000000, 1.228822,-0.000000;;, - 29;3; 0.000000, 1.228822, 0.000000;;, - 30;3; 0.000000, 1.228822,-0.000000;;, - 31;3; 0.000000, 1.228822, 0.000000;;, - 32;3; 0.000000, 1.228822, 0.000000;;, - 33;3;-0.000000, 1.228822,-0.000000;;, - 34;3;-0.000000, 1.228822, 0.000000;;, - 35;3; 0.000000, 1.228822,-0.000000;;, - 36;3; 0.000000, 1.228822, 0.000000;;, - 37;3; 0.000000, 1.228822,-0.000000;;, - 38;3;-0.000000, 1.228822, 0.000000;;, - 39;3; 0.000000, 1.228822,-0.000000;;, - 40;3; 0.000000, 1.228822, 0.000000;;, - 41;3; 0.000000, 1.228822,-0.000000;;, - 42;3; 0.000000, 1.228822, 0.000000;;, - 43;3; 0.000000, 1.228822,-0.000000;;, - 44;3; 0.000000, 1.228822,-0.000000;;, - 45;3; 0.000000, 1.228822,-0.000000;;, - 46;3; 0.000000, 1.228822, 0.000000;;, - 47;3; 0.000000, 1.228822, 0.000000;;, - 48;3; 0.000000, 1.228822,-0.000000;;, - 49;3; 0.000000, 1.228822,-0.000000;;, - 50;3; 0.000000, 1.228822,-0.000000;;, - 51;3; 0.000000, 1.228822, 0.000000;;, - 52;3; 0.000000, 1.228822, 0.000000;;, - 53;3; 0.000000, 1.228822, 0.000000;;, - 54;3; 0.000000, 1.228822, 0.000000;;, - 55;3;-0.000000, 1.228822,-0.000000;;, - 56;3; 0.000000, 1.228822,-0.000000;;, - 57;3; 0.000000, 1.228822, 0.000000;;, - 58;3;-0.000000, 1.228822, 0.000000;;, - 59;3;-0.000000, 1.228822,-0.000000;;, - 60;3; 0.000000, 1.228822,-0.000000;;, - 61;3;-0.000000, 1.228822, 0.000000;;, - 62;3;-0.000000, 1.228822, 0.000000;;, - 63;3;-0.000000, 1.228822,-0.000000;;, - 64;3; 0.000000, 1.228822,-0.000000;;, - 65;3;-0.000000, 1.228822, 0.000000;;, - 66;3;-0.000000, 1.228822, 0.000000;;, - 67;3;-0.000000, 1.228822,-0.000000;;, - 68;3; 0.000000, 1.228822,-0.000000;;, - 69;3;-0.000000, 1.228822,-0.000000;;, - 70;3;-0.000000, 1.228822,-0.000000;;, - 71;3;-0.000000, 1.228822,-0.000000;;, - 72;3; 0.000000, 1.228822, 0.000000;;, - 73;3;-0.000000, 1.228822,-0.000000;;, - 74;3; 0.000000, 1.228822,-0.000000;;, - 75;3; 0.000000, 1.228822,-0.000000;;, - 76;3; 0.000000, 1.228822, 0.000000;;, - 77;3; 0.000000, 1.228822, 0.000000;;, - 78;3;-0.000000, 1.228822, 0.000000;;, - 79;3;-0.000000, 1.228822,-0.000000;;, - 80;3; 0.000000, 1.228822, 0.000000;;, - 81;3; 0.000000, 1.228822,-0.000000;;, - 82;3;-0.000000, 1.228822, 0.000000;;, - 83;3;-0.000000, 1.228822, 0.000000;;, - 84;3; 0.000000, 1.228822,-0.000000;;, - 85;3;-0.000000, 1.228822, 0.000000;;, - 86;3;-0.000000, 1.228822,-0.000000;;, - 87;3;-0.000000, 1.228822,-0.000000;;, - 88;3;-0.000000, 1.228822,-0.000000;;, - 89;3;-0.000000, 1.228822, 0.000000;;, - 90;3; 0.000000, 1.228822, 0.000000;;, - 91;3;-0.000000, 1.228822,-0.000000;;, - 92;3;-0.000000, 1.228822, 0.000000;;, - 93;3;-0.000000, 1.228822,-0.000000;;, - 94;3;-0.000000, 1.228822, 0.000000;;, - 95;3; 0.000000, 1.228822,-0.000000;;, - 96;3;-0.000000, 1.228822,-0.000000;;, - 97;3;-0.000000, 1.228822,-0.000000;;, - 98;3;-0.000000, 1.228822, 0.000000;;, - 99;3; 0.000000, 1.228822, 0.000000;;, - 100;3; 0.000000, 1.228822,-0.000000;;, - 101;3;-0.000000, 1.228822,-0.000000;;, - 102;3;-0.000000, 1.228822,-0.000000;;, - 103;3;-0.000000, 1.228822,-0.000000;;, - 104;3; 0.000000, 1.228822, 0.000000;;, - 105;3;-0.000000, 1.228822,-0.000000;;, - 106;3;-0.000000, 1.228822,-0.000000;;, - 107;3; 0.000000, 1.228822,-0.000000;;, - 108;3; 0.000000, 1.228822,-0.000000;;, - 109;3; 0.000000, 1.228822,-0.000000;;, - 110;3;-0.000000, 1.228822,-0.000000;;, - 111;3; 0.000000, 1.228822, 0.000000;;, - 112;3;-0.000000, 1.228822,-0.000000;;, - 113;3;-0.000000, 1.228822,-0.000000;;, - 114;3; 0.000000, 1.228822, 0.000000;;, - 115;3; 0.000000, 1.228822,-0.000000;;, - 116;3;-0.000000, 1.228822, 0.000000;;, - 117;3;-0.000000, 1.228822,-0.000000;;, - 118;3;-0.000000, 1.228822,-0.000000;;, - 119;3; 0.000000, 1.228822,-0.000000;;, - 120;3; 0.000000, 1.228822, 0.000000;;, - 121;3;-0.000000, 1.228822,-0.000000;;, - 122;3;-0.000000, 1.228822, 0.000000;;, - 123;3; 0.000000, 1.228822,-0.000000;;, - 124;3; 0.000000, 1.228822,-0.000000;;, - 125;3; 0.000000, 1.228822,-0.000000;;, - 126;3;-0.000000, 1.228822,-0.000000;;, - 127;3;-0.000000, 1.228822,-0.000000;;, - 128;3;-0.000000, 1.228822,-0.000000;;, - 129;3;-0.000000, 1.228822,-0.000000;;, - 130;3; 0.000000, 1.228822, 0.000000;;, - 131;3; 0.000000, 1.228822,-0.000000;;, - 132;3; 0.000000, 1.228822, 0.000000;;, - 133;3; 0.000000, 1.228822,-0.000000;;, - 134;3;-0.000000, 1.228822, 0.000000;;, - 135;3; 0.000000, 1.228822,-0.000000;;, - 136;3;-0.000000, 1.228822, 0.000000;;, - 137;3; 0.000000, 1.228822, 0.000000;;, - 138;3; 0.000000, 1.228822,-0.000000;;, - 139;3; 0.000000, 1.228822, 0.000000;;, - 140;3; 0.000000, 1.228822,-0.000000;;, - 141;3;-0.000000, 1.228822,-0.000000;;, - 142;3; 0.000000, 1.228822,-0.000000;;, - 143;3;-0.000000, 1.228822, 0.000000;;, - 144;3; 0.000000, 1.228822,-0.000000;;, - 145;3; 0.000000, 1.228822, 0.000000;;, - 146;3;-0.000000, 1.228822,-0.000000;;, - 147;3; 0.000000, 1.228822,-0.000000;;, - 148;3;-0.000000, 1.228822,-0.000000;;, - 149;3; 0.000000, 1.228822,-0.000000;;, - 150;3;-0.000000, 1.228822,-0.000000;;, - 151;3; 0.000000, 1.228822,-0.000000;;, - 152;3; 0.000000, 1.228822,-0.000000;;, - 153;3;-0.000000, 1.228822,-0.000000;;, - 154;3;-0.000000, 1.228822,-0.000000;;, - 155;3; 0.000000, 1.228822, 0.000000;;, - 156;3;-0.000000, 1.228822, 0.000000;;, - 157;3;-0.000000, 1.228822,-0.000000;;, - 158;3;-0.000000, 1.228822,-0.000000;;, - 159;3; 0.000000, 1.228822, 0.000000;;, - 160;3; 0.000000, 1.228822, 0.000000;;, - 161;3;-0.000000, 1.228822,-0.000000;;, - 162;3;-0.000000, 1.228822,-0.000000;;, - 163;3;-0.000000, 1.228822, 0.000000;;, - 164;3;-0.000000, 1.228822,-0.000000;;, - 165;3; 0.000000, 1.228822,-0.000000;;, - 166;3;-0.000000, 1.228822,-0.000000;;, - 167;3; 0.000000, 1.228822,-0.000000;;, - 168;3;-0.000000, 1.228822,-0.000000;;, - 169;3; 0.000000, 1.228822,-0.000000;;, - 170;3; 0.000000, 1.228822, 0.000000;;, - 171;3; 0.000000, 1.228822, 0.000000;;, - 172;3;-0.000000, 1.228822,-0.000000;;, - 173;3;-0.000000, 1.228822,-0.000000;;, - 174;3; 0.000000, 1.228822, 0.000000;;, - 175;3; 0.000000, 1.228822, 0.000000;;, - 176;3;-0.000000, 1.228822,-0.000000;;, - 177;3; 0.000000, 1.228822,-0.000000;;, - 178;3; 0.000000, 1.228822,-0.000000;;, - 179;3;-0.000000, 1.228822,-0.000000;;, - 180;3; 0.000000, 1.228822,-0.000000;;, - 181;3; 0.000000, 1.228822,-0.000000;;, - 182;3;-0.000000, 1.228822, 0.000000;;, - 183;3;-0.000000, 1.228822,-0.000000;;, - 184;3;-0.000000, 1.228822, 0.000000;;, - 185;3;-0.000000, 1.228822,-0.000000;;, - 186;3; 0.000000, 1.228822, 0.000000;;, - 187;3;-0.000000, 1.228822,-0.000000;;, - 188;3; 0.000000, 1.228822,-0.000000;;, - 189;3; 0.000000, 1.228822, 0.000000;;, - 190;3; 0.000000, 1.228822, 0.000000;;, - 191;3;-0.000000, 1.228822,-0.000000;;, - 192;3;-0.000000, 1.228822,-0.000000;;, - 193;3; 0.000000, 1.228822,-0.000000;;, - 194;3;-0.000000, 1.228822, 0.000000;;, - 195;3;-0.000000, 1.228822, 0.000000;;, - 196;3;-0.000000, 1.228822,-0.000000;;, - 197;3;-0.000000, 1.228822,-0.000000;;, - 198;3;-0.000000, 1.228822, 0.000000;;, - 199;3;-0.000000, 1.228822,-0.000000;;, - 200;3;-0.000000, 1.228822,-0.000000;;, - 201;3;-0.000000, 1.228822,-0.000000;;, - 202;3;-0.000000, 1.228822,-0.000000;;, - 203;3;-0.000000, 1.228822,-0.000000;;, - 204;3;-0.000000, 1.228822,-0.000000;;, - 205;3;-0.000000, 1.228822,-0.000000;;, - 206;3;-0.000000, 1.228822,-0.000000;;, - 207;3;-0.000000, 1.228822,-0.000000;;, - 208;3;-0.000000, 1.228822,-0.000000;;, - 209;3;-0.000000, 1.228822,-0.000000;;, - 210;3;-0.000000, 1.228822,-0.000000;;, - 211;3;-0.000000, 1.228822,-0.000000;;, - 212;3;-0.000000, 1.228822,-0.000000;;, - 213;3;-0.000000, 1.228822,-0.000000;;, - 214;3;-0.000000, 1.228822,-0.000000;;, - 215;3;-0.000000, 1.228822,-0.000000;;, - 216;3;-0.000000, 1.228822,-0.000000;;, - 217;3;-0.000000, 1.228822,-0.000000;;, - 218;3;-0.000000, 1.228822,-0.000000;;, - 219;3;-0.000000, 1.228822,-0.000000;;, - 220;3;-0.000000, 1.228822,-0.000000;;, - 221;3;-0.000000, 1.228822,-0.000000;;, - 222;3;-0.000000, 1.228822,-0.000000;;, - 223;3;-0.000000, 1.228822,-0.000000;;, - 224;3;-0.000000, 1.228822,-0.000000;;, - 225;3;-0.000000, 1.228822,-0.000000;;, - 226;3;-0.000000, 1.228822,-0.000000;;, - 227;3;-0.000000, 1.228822,-0.000000;;, - 228;3;-0.000000, 1.228822,-0.000000;;, - 229;3;-0.000000, 1.228822,-0.000000;;, - 230;3;-0.000000, 1.228822,-0.000000;;, - 231;3;-0.000000, 1.228822,-0.000000;;, - 232;3;-0.000000, 1.228822,-0.000000;;, - 233;3;-0.000000, 1.228822,-0.000000;;, - 234;3;-0.000000, 1.228822,-0.000000;;, - 235;3;-0.000000, 1.228822,-0.000000;;, - 236;3;-0.000000, 1.228822,-0.000000;;, - 237;3;-0.000000, 1.228822,-0.000000;;, - 238;3;-0.000000, 1.228822,-0.000000;;, - 239;3;-0.000000, 1.228822,-0.000000;;, - 240;3;-0.000000, 1.228822,-0.000000;;, - 241;3;-0.000000, 1.228822,-0.000000;;, - 242;3;-0.000000, 1.228822,-0.000000;;, - 243;3;-0.000000, 1.228822,-0.000000;;, - 244;3;-0.000000, 1.228822,-0.000000;;, - 245;3;-0.000000, 1.228822,-0.000000;;, - 246;3;-0.000000, 1.228822,-0.000000;;, - 247;3;-0.000000, 1.228822,-0.000000;;, - 248;3;-0.000000, 1.228822,-0.000000;;, - 249;3;-0.000000, 1.228822,-0.000000;;; - } - } - Animation { - {Armature_Bone_014} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 1;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 2;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 3;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 4;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 5;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 6;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 7;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 8;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 9;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 10;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 11;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 12;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 13;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 14;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 15;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 16;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 17;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 18;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 19;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 20;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 21;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 22;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 23;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 24;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 25;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 26;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 27;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 28;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 29;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 30;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 31;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 32;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 33;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 34;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 35;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 36;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 37;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 38;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 39;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 40;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 41;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 42;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 43;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 44;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 45;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 46;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 47;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 48;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 49;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 50;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 51;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 52;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 53;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 54;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 55;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 56;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 57;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 58;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 59;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 60;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 61;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 62;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 63;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 64;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 65;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 66;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 67;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 68;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 69;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 70;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 71;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 72;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 73;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 74;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 75;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 76;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 77;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 78;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 79;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 80;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 81;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 82;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 83;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 84;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 85;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 86;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 87;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 88;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 89;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 90;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 91;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 92;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 93;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 94;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 95;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 96;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 97;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 98;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 99;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 100;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 101;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 102;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 103;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 104;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 105;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 106;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 107;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 108;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 109;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 110;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 111;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 112;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 113;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 114;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 115;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 116;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 117;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 118;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 119;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 120;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 121;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 122;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 123;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 124;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 125;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 126;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 127;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 128;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 129;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 130;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 131;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 132;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 133;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 134;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 135;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 136;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 137;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 138;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 139;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 140;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 141;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 142;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 143;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 144;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 145;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 146;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 147;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 148;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 149;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 150;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 151;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 152;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 153;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 154;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 155;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 156;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 157;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 158;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 159;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 160;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 161;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 162;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 163;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 164;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 165;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 166;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 167;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 168;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 169;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 170;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 171;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 172;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 173;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 174;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 175;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 176;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 177;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 178;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 179;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 180;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 181;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 182;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 183;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 184;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 185;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 186;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 187;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 188;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 189;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 190;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 191;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 192;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 193;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 194;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 195;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 196;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 197;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 198;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 199;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 200;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 201;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 202;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 203;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 204;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 205;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 206;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 207;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 208;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 209;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 210;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 211;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 212;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 213;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 214;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 215;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 216;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 217;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 218;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 219;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 220;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 221;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 222;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 223;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 224;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 225;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 226;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 227;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 228;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 229;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 230;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 231;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 232;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 233;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 234;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 235;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 236;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 237;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 238;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 239;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 240;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 241;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 242;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 243;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 244;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 245;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 246;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 247;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 248;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 249;4;-0.873438, 0.000000, 0.000000,-0.486935;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3; 0.000000, 0.826434, 0.000000;;, - 1;3; 0.000000, 0.826434, 0.000000;;, - 2;3; 0.000000, 0.826434, 0.000000;;, - 3;3; 0.000000, 0.826434, 0.000000;;, - 4;3; 0.000000, 0.826434, 0.000000;;, - 5;3; 0.000000, 0.826434, 0.000000;;, - 6;3; 0.000000, 0.826434, 0.000000;;, - 7;3; 0.000000, 0.826434, 0.000000;;, - 8;3; 0.000000, 0.826434, 0.000000;;, - 9;3; 0.000000, 0.826434, 0.000000;;, - 10;3; 0.000000, 0.826434, 0.000000;;, - 11;3; 0.000000, 0.826434, 0.000000;;, - 12;3; 0.000000, 0.826434, 0.000000;;, - 13;3; 0.000000, 0.826434, 0.000000;;, - 14;3; 0.000000, 0.826434, 0.000000;;, - 15;3; 0.000000, 0.826434, 0.000000;;, - 16;3; 0.000000, 0.826434, 0.000000;;, - 17;3; 0.000000, 0.826434, 0.000000;;, - 18;3; 0.000000, 0.826434, 0.000000;;, - 19;3; 0.000000, 0.826434, 0.000000;;, - 20;3; 0.000000, 0.826434, 0.000000;;, - 21;3; 0.000000, 0.826434, 0.000000;;, - 22;3; 0.000000, 0.826434, 0.000000;;, - 23;3; 0.000000, 0.826434, 0.000000;;, - 24;3; 0.000000, 0.826434, 0.000000;;, - 25;3; 0.000000, 0.826434, 0.000000;;, - 26;3; 0.000000, 0.826434, 0.000000;;, - 27;3; 0.000000, 0.826434, 0.000000;;, - 28;3; 0.000000, 0.826434, 0.000000;;, - 29;3; 0.000000, 0.826434, 0.000000;;, - 30;3; 0.000000, 0.826434, 0.000000;;, - 31;3; 0.000000, 0.826434, 0.000000;;, - 32;3; 0.000000, 0.826434, 0.000000;;, - 33;3; 0.000000, 0.826434, 0.000000;;, - 34;3; 0.000000, 0.826434, 0.000000;;, - 35;3; 0.000000, 0.826434, 0.000000;;, - 36;3; 0.000000, 0.826434, 0.000000;;, - 37;3; 0.000000, 0.826434, 0.000000;;, - 38;3; 0.000000, 0.826434, 0.000000;;, - 39;3; 0.000000, 0.826434, 0.000000;;, - 40;3; 0.000000, 0.826434, 0.000000;;, - 41;3; 0.000000, 0.826434, 0.000000;;, - 42;3; 0.000000, 0.826434, 0.000000;;, - 43;3; 0.000000, 0.826434, 0.000000;;, - 44;3; 0.000000, 0.826434, 0.000000;;, - 45;3; 0.000000, 0.826434, 0.000000;;, - 46;3; 0.000000, 0.826434, 0.000000;;, - 47;3; 0.000000, 0.826434, 0.000000;;, - 48;3; 0.000000, 0.826434, 0.000000;;, - 49;3; 0.000000, 0.826434, 0.000000;;, - 50;3; 0.000000, 0.826434, 0.000000;;, - 51;3; 0.000000, 0.826434, 0.000000;;, - 52;3; 0.000000, 0.826434, 0.000000;;, - 53;3; 0.000000, 0.826434, 0.000000;;, - 54;3; 0.000000, 0.826434, 0.000000;;, - 55;3; 0.000000, 0.826434, 0.000000;;, - 56;3; 0.000000, 0.826434, 0.000000;;, - 57;3; 0.000000, 0.826434, 0.000000;;, - 58;3; 0.000000, 0.826434, 0.000000;;, - 59;3; 0.000000, 0.826434, 0.000000;;, - 60;3; 0.000000, 0.826434, 0.000000;;, - 61;3; 0.000000, 0.826434, 0.000000;;, - 62;3; 0.000000, 0.826434, 0.000000;;, - 63;3; 0.000000, 0.826434, 0.000000;;, - 64;3; 0.000000, 0.826434, 0.000000;;, - 65;3; 0.000000, 0.826434, 0.000000;;, - 66;3; 0.000000, 0.826434, 0.000000;;, - 67;3; 0.000000, 0.826434, 0.000000;;, - 68;3; 0.000000, 0.826434, 0.000000;;, - 69;3; 0.000000, 0.826434, 0.000000;;, - 70;3; 0.000000, 0.826434, 0.000000;;, - 71;3; 0.000000, 0.826434, 0.000000;;, - 72;3; 0.000000, 0.826434, 0.000000;;, - 73;3; 0.000000, 0.826434, 0.000000;;, - 74;3; 0.000000, 0.826434, 0.000000;;, - 75;3; 0.000000, 0.826434, 0.000000;;, - 76;3; 0.000000, 0.826434, 0.000000;;, - 77;3; 0.000000, 0.826434, 0.000000;;, - 78;3; 0.000000, 0.826434, 0.000000;;, - 79;3; 0.000000, 0.826434, 0.000000;;, - 80;3; 0.000000, 0.826434, 0.000000;;, - 81;3; 0.000000, 0.826434, 0.000000;;, - 82;3; 0.000000, 0.826434, 0.000000;;, - 83;3; 0.000000, 0.826434, 0.000000;;, - 84;3; 0.000000, 0.826434, 0.000000;;, - 85;3; 0.000000, 0.826434, 0.000000;;, - 86;3; 0.000000, 0.826434, 0.000000;;, - 87;3; 0.000000, 0.826434, 0.000000;;, - 88;3; 0.000000, 0.826434, 0.000000;;, - 89;3; 0.000000, 0.826434, 0.000000;;, - 90;3; 0.000000, 0.826434, 0.000000;;, - 91;3; 0.000000, 0.826434, 0.000000;;, - 92;3; 0.000000, 0.826434, 0.000000;;, - 93;3; 0.000000, 0.826434, 0.000000;;, - 94;3; 0.000000, 0.826434, 0.000000;;, - 95;3; 0.000000, 0.826434, 0.000000;;, - 96;3; 0.000000, 0.826434, 0.000000;;, - 97;3; 0.000000, 0.826434, 0.000000;;, - 98;3; 0.000000, 0.826434, 0.000000;;, - 99;3; 0.000000, 0.826434, 0.000000;;, - 100;3; 0.000000, 0.826434, 0.000000;;, - 101;3; 0.000000, 0.826434, 0.000000;;, - 102;3; 0.000000, 0.826434, 0.000000;;, - 103;3; 0.000000, 0.826434, 0.000000;;, - 104;3; 0.000000, 0.826434, 0.000000;;, - 105;3; 0.000000, 0.826434, 0.000000;;, - 106;3; 0.000000, 0.826434, 0.000000;;, - 107;3; 0.000000, 0.826434, 0.000000;;, - 108;3; 0.000000, 0.826434, 0.000000;;, - 109;3; 0.000000, 0.826434, 0.000000;;, - 110;3; 0.000000, 0.826434, 0.000000;;, - 111;3; 0.000000, 0.826434, 0.000000;;, - 112;3; 0.000000, 0.826434, 0.000000;;, - 113;3; 0.000000, 0.826434, 0.000000;;, - 114;3; 0.000000, 0.826434, 0.000000;;, - 115;3; 0.000000, 0.826434, 0.000000;;, - 116;3; 0.000000, 0.826434, 0.000000;;, - 117;3; 0.000000, 0.826434, 0.000000;;, - 118;3; 0.000000, 0.826434, 0.000000;;, - 119;3; 0.000000, 0.826434, 0.000000;;, - 120;3; 0.000000, 0.826434, 0.000000;;, - 121;3; 0.000000, 0.826434, 0.000000;;, - 122;3; 0.000000, 0.826434, 0.000000;;, - 123;3; 0.000000, 0.826434, 0.000000;;, - 124;3; 0.000000, 0.826434, 0.000000;;, - 125;3; 0.000000, 0.826434, 0.000000;;, - 126;3; 0.000000, 0.826434, 0.000000;;, - 127;3; 0.000000, 0.826434, 0.000000;;, - 128;3; 0.000000, 0.826434, 0.000000;;, - 129;3; 0.000000, 0.826434, 0.000000;;, - 130;3; 0.000000, 0.826434, 0.000000;;, - 131;3; 0.000000, 0.826434, 0.000000;;, - 132;3; 0.000000, 0.826434, 0.000000;;, - 133;3; 0.000000, 0.826434, 0.000000;;, - 134;3; 0.000000, 0.826434, 0.000000;;, - 135;3; 0.000000, 0.826434, 0.000000;;, - 136;3; 0.000000, 0.826434, 0.000000;;, - 137;3; 0.000000, 0.826434, 0.000000;;, - 138;3; 0.000000, 0.826434, 0.000000;;, - 139;3; 0.000000, 0.826434, 0.000000;;, - 140;3; 0.000000, 0.826434, 0.000000;;, - 141;3; 0.000000, 0.826434, 0.000000;;, - 142;3; 0.000000, 0.826434, 0.000000;;, - 143;3; 0.000000, 0.826434, 0.000000;;, - 144;3; 0.000000, 0.826434, 0.000000;;, - 145;3; 0.000000, 0.826434, 0.000000;;, - 146;3; 0.000000, 0.826434, 0.000000;;, - 147;3; 0.000000, 0.826434, 0.000000;;, - 148;3; 0.000000, 0.826434, 0.000000;;, - 149;3; 0.000000, 0.826434, 0.000000;;, - 150;3; 0.000000, 0.826434, 0.000000;;, - 151;3; 0.000000, 0.826434, 0.000000;;, - 152;3; 0.000000, 0.826434, 0.000000;;, - 153;3; 0.000000, 0.826434, 0.000000;;, - 154;3; 0.000000, 0.826434, 0.000000;;, - 155;3; 0.000000, 0.826434, 0.000000;;, - 156;3; 0.000000, 0.826434, 0.000000;;, - 157;3; 0.000000, 0.826434, 0.000000;;, - 158;3; 0.000000, 0.826434, 0.000000;;, - 159;3; 0.000000, 0.826434, 0.000000;;, - 160;3; 0.000000, 0.826434, 0.000000;;, - 161;3; 0.000000, 0.826434, 0.000000;;, - 162;3; 0.000000, 0.826434, 0.000000;;, - 163;3; 0.000000, 0.826434, 0.000000;;, - 164;3; 0.000000, 0.826434, 0.000000;;, - 165;3; 0.000000, 0.826434, 0.000000;;, - 166;3; 0.000000, 0.826434, 0.000000;;, - 167;3; 0.000000, 0.826434, 0.000000;;, - 168;3; 0.000000, 0.826434, 0.000000;;, - 169;3; 0.000000, 0.826434, 0.000000;;, - 170;3; 0.000000, 0.826434, 0.000000;;, - 171;3; 0.000000, 0.826434, 0.000000;;, - 172;3; 0.000000, 0.826434, 0.000000;;, - 173;3; 0.000000, 0.826434, 0.000000;;, - 174;3; 0.000000, 0.826434, 0.000000;;, - 175;3; 0.000000, 0.826434, 0.000000;;, - 176;3; 0.000000, 0.826434, 0.000000;;, - 177;3; 0.000000, 0.826434, 0.000000;;, - 178;3; 0.000000, 0.826434, 0.000000;;, - 179;3; 0.000000, 0.826434, 0.000000;;, - 180;3; 0.000000, 0.826434, 0.000000;;, - 181;3; 0.000000, 0.826434, 0.000000;;, - 182;3; 0.000000, 0.826434, 0.000000;;, - 183;3; 0.000000, 0.826434, 0.000000;;, - 184;3; 0.000000, 0.826434, 0.000000;;, - 185;3; 0.000000, 0.826434, 0.000000;;, - 186;3;-0.000000, 0.826434,-0.000000;;, - 187;3;-0.000000, 0.826434,-0.000000;;, - 188;3;-0.000000, 0.826434, 0.000000;;, - 189;3;-0.000000, 0.826434, 0.000000;;, - 190;3;-0.000000, 0.826434,-0.000000;;, - 191;3; 0.000000, 0.826434, 0.000000;;, - 192;3; 0.000000, 0.826434, 0.000000;;, - 193;3; 0.000000, 0.826434, 0.000000;;, - 194;3; 0.000000, 0.826434,-0.000000;;, - 195;3; 0.000000, 0.826434,-0.000000;;, - 196;3; 0.000000, 0.826434, 0.000000;;, - 197;3; 0.000000, 0.826434,-0.000000;;, - 198;3; 0.000000, 0.826434,-0.000000;;, - 199;3; 0.000000, 0.826434, 0.000000;;, - 200;3; 0.000000, 0.826434, 0.000000;;, - 201;3; 0.000000, 0.826434, 0.000000;;, - 202;3; 0.000000, 0.826434, 0.000000;;, - 203;3; 0.000000, 0.826434, 0.000000;;, - 204;3; 0.000000, 0.826434, 0.000000;;, - 205;3; 0.000000, 0.826434, 0.000000;;, - 206;3; 0.000000, 0.826434, 0.000000;;, - 207;3; 0.000000, 0.826434, 0.000000;;, - 208;3; 0.000000, 0.826434, 0.000000;;, - 209;3; 0.000000, 0.826434, 0.000000;;, - 210;3; 0.000000, 0.826434, 0.000000;;, - 211;3; 0.000000, 0.826434, 0.000000;;, - 212;3; 0.000000, 0.826434, 0.000000;;, - 213;3; 0.000000, 0.826434, 0.000000;;, - 214;3; 0.000000, 0.826434, 0.000000;;, - 215;3; 0.000000, 0.826434, 0.000000;;, - 216;3; 0.000000, 0.826434, 0.000000;;, - 217;3; 0.000000, 0.826434, 0.000000;;, - 218;3; 0.000000, 0.826434, 0.000000;;, - 219;3; 0.000000, 0.826434, 0.000000;;, - 220;3; 0.000000, 0.826434, 0.000000;;, - 221;3; 0.000000, 0.826434, 0.000000;;, - 222;3; 0.000000, 0.826434, 0.000000;;, - 223;3; 0.000000, 0.826434, 0.000000;;, - 224;3; 0.000000, 0.826434, 0.000000;;, - 225;3; 0.000000, 0.826434, 0.000000;;, - 226;3; 0.000000, 0.826434, 0.000000;;, - 227;3; 0.000000, 0.826434, 0.000000;;, - 228;3; 0.000000, 0.826434, 0.000000;;, - 229;3; 0.000000, 0.826434, 0.000000;;, - 230;3; 0.000000, 0.826434, 0.000000;;, - 231;3; 0.000000, 0.826434, 0.000000;;, - 232;3; 0.000000, 0.826434, 0.000000;;, - 233;3; 0.000000, 0.826434, 0.000000;;, - 234;3; 0.000000, 0.826434, 0.000000;;, - 235;3; 0.000000, 0.826434, 0.000000;;, - 236;3; 0.000000, 0.826434, 0.000000;;, - 237;3; 0.000000, 0.826434, 0.000000;;, - 238;3; 0.000000, 0.826434, 0.000000;;, - 239;3; 0.000000, 0.826434, 0.000000;;, - 240;3; 0.000000, 0.826434, 0.000000;;, - 241;3; 0.000000, 0.826434, 0.000000;;, - 242;3; 0.000000, 0.826434, 0.000000;;, - 243;3; 0.000000, 0.826434, 0.000000;;, - 244;3; 0.000000, 0.826434, 0.000000;;, - 245;3; 0.000000, 0.826434, 0.000000;;, - 246;3; 0.000000, 0.826434, 0.000000;;, - 247;3; 0.000000, 0.826434, 0.000000;;, - 248;3; 0.000000, 0.826434, 0.000000;;, - 249;3; 0.000000, 0.826434, 0.000000;;; - } - } - Animation { - {Armature_Bone_018} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 1;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 2;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 3;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 4;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 5;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 6;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 7;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 8;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 9;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 10;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 11;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 12;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 13;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 14;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 15;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 16;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 17;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 18;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 19;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 20;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 21;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 22;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 23;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 24;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 25;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 26;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 27;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 28;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 29;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 30;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 31;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 32;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 33;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 34;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 35;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 36;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 37;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 38;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 39;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 40;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 41;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 42;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 43;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 44;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 45;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 46;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 47;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 48;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 49;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 50;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 51;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 52;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 53;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 54;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 55;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 56;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 57;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 58;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 59;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 60;4;-0.941928, 0.110942, 0.038431, 0.314618;;, - 61;4;-0.941940, 0.110822, 0.038332, 0.314629;;, - 62;4;-0.941959, 0.110622, 0.038166, 0.314647;;, - 63;4;-0.941986, 0.110341, 0.037932, 0.314672;;, - 64;4;-0.942020, 0.109980, 0.037631, 0.314704;;, - 65;4;-0.942063, 0.109538, 0.037263, 0.314744;;, - 66;4;-0.942113, 0.109016, 0.036829, 0.314790;;, - 67;4;-0.942170, 0.108416, 0.036330, 0.314844;;, - 68;4;-0.942235, 0.107740, 0.035767, 0.314904;;, - 69;4;-0.942307, 0.106990, 0.035144, 0.314971;;, - 70;4;-0.942385, 0.106171, 0.034462, 0.315044;;, - 71;4;-0.942470, 0.105285, 0.033725, 0.315123;;, - 72;4;-0.942561, 0.104338, 0.032937, 0.315207;;, - 73;4;-0.942657, 0.103336, 0.032103, 0.315297;;, - 74;4;-0.942758, 0.102284, 0.031228, 0.315391;;, - 75;4;-0.942862, 0.101190, 0.030317, 0.315488;;, - 76;4;-0.942971, 0.100062, 0.029378, 0.315589;;, - 77;4;-0.943081, 0.098907, 0.028417, 0.315692;;, - 78;4;-0.943194, 0.097733, 0.027441, 0.315797;;, - 79;4;-0.943307, 0.096551, 0.026457, 0.315902;;, - 80;4;-0.943420, 0.095369, 0.025474, 0.316008;;, - 81;4;-0.943533, 0.094196, 0.024498, 0.316112;;, - 82;4;-0.943643, 0.093041, 0.023537, 0.316215;;, - 83;4;-0.943751, 0.091913, 0.022598, 0.316316;;, - 84;4;-0.943856, 0.090819, 0.021687, 0.316414;;, - 85;4;-0.943957, 0.089767, 0.020812, 0.316507;;, - 86;4;-0.944053, 0.088764, 0.019978, 0.316597;;, - 87;4;-0.944144, 0.087818, 0.019190, 0.316681;;, - 88;4;-0.944229, 0.086932, 0.018453, 0.316760;;, - 89;4;-0.944307, 0.086112, 0.017771, 0.316833;;, - 90;4;-0.944379, 0.085363, 0.017148, 0.316900;;, - 91;4;-0.944444, 0.084687, 0.016585, 0.316961;;, - 92;4;-0.944501, 0.084087, 0.016086, 0.317014;;, - 93;4;-0.944551, 0.083565, 0.015652, 0.317061;;, - 94;4;-0.944594, 0.083123, 0.015284, 0.317100;;, - 95;4;-0.944628, 0.082761, 0.014983, 0.317132;;, - 96;4;-0.944655, 0.082481, 0.014749, 0.317157;;, - 97;4;-0.944674, 0.082281, 0.014583, 0.317175;;, - 98;4;-0.944686, 0.082161, 0.014484, 0.317186;;, - 99;4;-0.944690, 0.082122, 0.014451, 0.317189;;, - 100;4;-0.944432, 0.083307, 0.015445, 0.317035;;, - 101;4;-0.943634, 0.086989, 0.018534, 0.316554;;, - 102;4;-0.942277, 0.093244, 0.023782, 0.315738;;, - 103;4;-0.940398, 0.101913, 0.031054, 0.314608;;, - 104;4;-0.938096, 0.112526, 0.039958, 0.313223;;, - 105;4;-0.935535, 0.124332, 0.049863, 0.311683;;, - 106;4;-0.932904, 0.136463, 0.060039, 0.310101;;, - 107;4;-0.930373, 0.148134, 0.069831, 0.308578;;, - 108;4;-0.928063, 0.158788, 0.078769, 0.307188;;, - 109;4;-0.926042, 0.168107, 0.086587, 0.305973;;, - 110;4;-0.924160, 0.176978, 0.094533, 0.304717;;, - 111;4;-0.922248, 0.186352, 0.103834, 0.303215;;, - 112;4;-0.920311, 0.196111, 0.114169, 0.301523;;, - 113;4;-0.918365, 0.206043, 0.124970, 0.299746;;, - 114;4;-0.916425, 0.215853, 0.135442, 0.298029;;, - 115;4;-0.914514, 0.225212, 0.144702, 0.296534;;, - 116;4;-0.912647, 0.233837, 0.151987, 0.295400;;, - 117;4;-0.910837, 0.241551, 0.156820, 0.294712;;, - 118;4;-0.909086, 0.248293, 0.159040, 0.294503;;, - 119;4;-0.907394, 0.254092, 0.158723, 0.294756;;, - 120;4;-0.905553, 0.259730, 0.157099, 0.295339;;, - 121;4;-0.903387, 0.265840, 0.155180, 0.296157;;, - 122;4;-0.900973, 0.272188, 0.152815, 0.297224;;, - 123;4;-0.898447, 0.278414, 0.149831, 0.298534;;, - 124;4;-0.896001, 0.284057, 0.146068, 0.300052;;, - 125;4;-0.893846, 0.288647, 0.141426, 0.301716;;, - 126;4;-0.892165, 0.291820, 0.135893, 0.303451;;, - 127;4;-0.891073, 0.293391, 0.129539, 0.305183;;, - 128;4;-0.890609, 0.293354, 0.122486, 0.306856;;, - 129;4;-0.890754, 0.291818, 0.114871, 0.308437;;, - 130;4;-0.892324, 0.285246, 0.105875, 0.309949;;, - 131;4;-0.896171, 0.269979, 0.094684, 0.311406;;, - 132;4;-0.902140, 0.246623, 0.081650, 0.312772;;, - 133;4;-0.909790, 0.216887, 0.067466, 0.314002;;, - 134;4;-0.918357, 0.183703, 0.053164, 0.315051;;, - 135;4;-0.926865, 0.150830, 0.039952, 0.315887;;, - 136;4;-0.934340, 0.121992, 0.028929, 0.316501;;, - 137;4;-0.940035, 0.100041, 0.020842, 0.316905;;, - 138;4;-0.943530, 0.086583, 0.016018, 0.317123;;, - 139;4;-0.944690, 0.082122, 0.014451, 0.317189;;, - 140;4;-0.943634, 0.086989, 0.018534, 0.316554;;, - 141;4;-0.940398, 0.101913, 0.031054, 0.314608;;, - 142;4;-0.935535, 0.124332, 0.049863, 0.311683;;, - 143;4;-0.930373, 0.148134, 0.069831, 0.308578;;, - 144;4;-0.926042, 0.168107, 0.086587, 0.305973;;, - 145;4;-0.922248, 0.186352, 0.103834, 0.303215;;, - 146;4;-0.918365, 0.206043, 0.124970, 0.299746;;, - 147;4;-0.914514, 0.225212, 0.144702, 0.296534;;, - 148;4;-0.910837, 0.241551, 0.156820, 0.294712;;, - 149;4;-0.907394, 0.254092, 0.158723, 0.294756;;, - 150;4;-0.903387, 0.265840, 0.155180, 0.296157;;, - 151;4;-0.898447, 0.278414, 0.149831, 0.298534;;, - 152;4;-0.893846, 0.288647, 0.141426, 0.301716;;, - 153;4;-0.891073, 0.293391, 0.129539, 0.305183;;, - 154;4;-0.890754, 0.291818, 0.114871, 0.308437;;, - 155;4;-0.896171, 0.269979, 0.094684, 0.311406;;, - 156;4;-0.909790, 0.216887, 0.067466, 0.314002;;, - 157;4;-0.926865, 0.150830, 0.039952, 0.315887;;, - 158;4;-0.940035, 0.100041, 0.020842, 0.316905;;, - 159;4;-0.944690, 0.082122, 0.014451, 0.317189;;, - 160;4;-0.944679, 0.082151, 0.014546, 0.317192;;, - 161;4;-0.944647, 0.082247, 0.014837, 0.317199;;, - 162;4;-0.944593, 0.082426, 0.015330, 0.317208;;, - 163;4;-0.944517, 0.082706, 0.016025, 0.317218;;, - 164;4;-0.944418, 0.083105, 0.016921, 0.317224;;, - 165;4;-0.944298, 0.083643, 0.018010, 0.317223;;, - 166;4;-0.944157, 0.084341, 0.019278, 0.317211;;, - 167;4;-0.943998, 0.085217, 0.020705, 0.317185;;, - 168;4;-0.943824, 0.086288, 0.022262, 0.317138;;, - 169;4;-0.943638, 0.087566, 0.023917, 0.317068;;, - 170;4;-0.943444, 0.089058, 0.025633, 0.316970;;, - 171;4;-0.943247, 0.090767, 0.027370, 0.316841;;, - 172;4;-0.943049, 0.092688, 0.029092, 0.316679;;, - 173;4;-0.942856, 0.094812, 0.030764, 0.316482;;, - 174;4;-0.942670, 0.097126, 0.032355, 0.316251;;, - 175;4;-0.942495, 0.099615, 0.033842, 0.315986;;, - 176;4;-0.942331, 0.102262, 0.035206, 0.315688;;, - 177;4;-0.942181, 0.105050, 0.036436, 0.315359;;, - 178;4;-0.942045, 0.107962, 0.037523, 0.315000;;, - 179;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 180;4;-0.943177, 0.114691, 0.038923, 0.308242;;, - 181;4;-0.947108, 0.119663, 0.038608, 0.289529;;, - 182;4;-0.953421, 0.125770, 0.037664, 0.258565;;, - 183;4;-0.961440, 0.132711, 0.036363, 0.216762;;, - 184;4;-0.970093, 0.139998, 0.035102, 0.167139;;, - 185;4;-0.978076, 0.147035, 0.034336, 0.114020;;, - 186;4;-0.984151, 0.153246, 0.034469, 0.062082;;, - 187;4;-0.987422, 0.158213, 0.035767, 0.015261;;, - 188;4;-0.987439, 0.161717, 0.038339,-0.023862;;, - 189;4;-0.984123, 0.163713, 0.042166,-0.054048;;, - 190;4;-0.978817, 0.138808, 0.058118,-0.080008;;, - 191;4;-0.973197, 0.066281, 0.094695,-0.104867;;, - 192;4;-0.968320,-0.027438, 0.139563,-0.124679;;, - 193;4;-0.965252,-0.100614, 0.173854,-0.136337;;, - 194;4;-0.964286,-0.126625, 0.185918,-0.139835;;, - 195;4;-0.962298,-0.105504, 0.172811,-0.099439;;, - 196;4;-0.956699,-0.046014, 0.135892, 0.014343;;, - 197;4;-0.949511, 0.030371, 0.088490, 0.160437;;, - 198;4;-0.943912, 0.089861, 0.051571, 0.274219;;, - 199;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 200;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 201;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 202;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 203;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 204;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 205;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 206;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 207;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 208;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 209;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 210;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 211;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 212;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 213;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 214;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 215;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 216;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 217;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 218;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 219;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 220;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 221;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 222;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 223;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 224;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 225;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 226;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 227;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 228;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 229;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 230;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 231;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 232;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 233;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 234;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 235;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 236;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 237;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 238;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 239;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 240;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 241;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 242;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 243;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 244;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 245;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 246;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 247;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 248;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 249;4;-0.941924, 0.110981, 0.038464, 0.314615;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3;-0.000000, 0.680634,-0.000000;;, - 1;3;-0.000000, 0.680634,-0.000000;;, - 2;3;-0.000000, 0.680634,-0.000000;;, - 3;3;-0.000000, 0.680634,-0.000000;;, - 4;3;-0.000000, 0.680634,-0.000000;;, - 5;3;-0.000000, 0.680634,-0.000000;;, - 6;3;-0.000000, 0.680634,-0.000000;;, - 7;3;-0.000000, 0.680634,-0.000000;;, - 8;3;-0.000000, 0.680634,-0.000000;;, - 9;3;-0.000000, 0.680634,-0.000000;;, - 10;3;-0.000000, 0.680634,-0.000000;;, - 11;3;-0.000000, 0.680634,-0.000000;;, - 12;3;-0.000000, 0.680634,-0.000000;;, - 13;3;-0.000000, 0.680634,-0.000000;;, - 14;3;-0.000000, 0.680634,-0.000000;;, - 15;3;-0.000000, 0.680634,-0.000000;;, - 16;3;-0.000000, 0.680634,-0.000000;;, - 17;3;-0.000000, 0.680634,-0.000000;;, - 18;3;-0.000000, 0.680634,-0.000000;;, - 19;3;-0.000000, 0.680634,-0.000000;;, - 20;3;-0.000000, 0.680634,-0.000000;;, - 21;3;-0.000000, 0.680634,-0.000000;;, - 22;3;-0.000000, 0.680634,-0.000000;;, - 23;3;-0.000000, 0.680634,-0.000000;;, - 24;3;-0.000000, 0.680634,-0.000000;;, - 25;3;-0.000000, 0.680634,-0.000000;;, - 26;3;-0.000000, 0.680634,-0.000000;;, - 27;3;-0.000000, 0.680634,-0.000000;;, - 28;3;-0.000000, 0.680634,-0.000000;;, - 29;3;-0.000000, 0.680634,-0.000000;;, - 30;3;-0.000000, 0.680634,-0.000000;;, - 31;3;-0.000000, 0.680634,-0.000000;;, - 32;3;-0.000000, 0.680634,-0.000000;;, - 33;3;-0.000000, 0.680634,-0.000000;;, - 34;3;-0.000000, 0.680634,-0.000000;;, - 35;3;-0.000000, 0.680634,-0.000000;;, - 36;3;-0.000000, 0.680634,-0.000000;;, - 37;3;-0.000000, 0.680634,-0.000000;;, - 38;3;-0.000000, 0.680634,-0.000000;;, - 39;3;-0.000000, 0.680634,-0.000000;;, - 40;3;-0.000000, 0.680634,-0.000000;;, - 41;3;-0.000000, 0.680634,-0.000000;;, - 42;3;-0.000000, 0.680634,-0.000000;;, - 43;3;-0.000000, 0.680634,-0.000000;;, - 44;3;-0.000000, 0.680634,-0.000000;;, - 45;3;-0.000000, 0.680634,-0.000000;;, - 46;3;-0.000000, 0.680634,-0.000000;;, - 47;3;-0.000000, 0.680634,-0.000000;;, - 48;3;-0.000000, 0.680634,-0.000000;;, - 49;3;-0.000000, 0.680634,-0.000000;;, - 50;3;-0.000000, 0.680634,-0.000000;;, - 51;3;-0.000000, 0.680634,-0.000000;;, - 52;3;-0.000000, 0.680634,-0.000000;;, - 53;3;-0.000000, 0.680634,-0.000000;;, - 54;3;-0.000000, 0.680634,-0.000000;;, - 55;3;-0.000000, 0.680634,-0.000000;;, - 56;3;-0.000000, 0.680634,-0.000000;;, - 57;3;-0.000000, 0.680634,-0.000000;;, - 58;3;-0.000000, 0.680634,-0.000000;;, - 59;3;-0.000000, 0.680634,-0.000000;;, - 60;3;-0.000000, 0.680634,-0.000000;;, - 61;3;-0.000000, 0.680634,-0.000000;;, - 62;3;-0.000000, 0.680634,-0.000000;;, - 63;3;-0.000000, 0.680634,-0.000000;;, - 64;3;-0.000000, 0.680634,-0.000000;;, - 65;3;-0.000000, 0.680634,-0.000000;;, - 66;3;-0.000000, 0.680634,-0.000000;;, - 67;3;-0.000000, 0.680634,-0.000000;;, - 68;3;-0.000000, 0.680634,-0.000000;;, - 69;3;-0.000000, 0.680634,-0.000000;;, - 70;3;-0.000000, 0.680634,-0.000000;;, - 71;3;-0.000000, 0.680634,-0.000000;;, - 72;3;-0.000000, 0.680634,-0.000000;;, - 73;3;-0.000000, 0.680634,-0.000000;;, - 74;3;-0.000000, 0.680634,-0.000000;;, - 75;3;-0.000000, 0.680634,-0.000000;;, - 76;3;-0.000000, 0.680634,-0.000000;;, - 77;3;-0.000000, 0.680634,-0.000000;;, - 78;3;-0.000000, 0.680634,-0.000000;;, - 79;3;-0.000000, 0.680634,-0.000000;;, - 80;3;-0.000000, 0.680634,-0.000000;;, - 81;3;-0.000000, 0.680634,-0.000000;;, - 82;3;-0.000000, 0.680634,-0.000000;;, - 83;3;-0.000000, 0.680634,-0.000000;;, - 84;3;-0.000000, 0.680634,-0.000000;;, - 85;3;-0.000000, 0.680634,-0.000000;;, - 86;3;-0.000000, 0.680634,-0.000000;;, - 87;3;-0.000000, 0.680634,-0.000000;;, - 88;3;-0.000000, 0.680634,-0.000000;;, - 89;3;-0.000000, 0.680634,-0.000000;;, - 90;3;-0.000000, 0.680634,-0.000000;;, - 91;3;-0.000000, 0.680634,-0.000000;;, - 92;3;-0.000000, 0.680634,-0.000000;;, - 93;3;-0.000000, 0.680634,-0.000000;;, - 94;3;-0.000000, 0.680634,-0.000000;;, - 95;3;-0.000000, 0.680634,-0.000000;;, - 96;3;-0.000000, 0.680634,-0.000000;;, - 97;3;-0.000000, 0.680634,-0.000000;;, - 98;3;-0.000000, 0.680634,-0.000000;;, - 99;3;-0.000000, 0.680634,-0.000000;;, - 100;3;-0.000000, 0.680634,-0.000000;;, - 101;3;-0.000000, 0.680634,-0.000000;;, - 102;3;-0.000000, 0.680634,-0.000000;;, - 103;3;-0.000000, 0.680634,-0.000000;;, - 104;3;-0.000000, 0.680634,-0.000000;;, - 105;3;-0.000000, 0.680634,-0.000000;;, - 106;3;-0.000000, 0.680634,-0.000000;;, - 107;3;-0.000000, 0.680634,-0.000000;;, - 108;3;-0.000000, 0.680634,-0.000000;;, - 109;3;-0.000000, 0.680634,-0.000000;;, - 110;3;-0.000000, 0.680634,-0.000000;;, - 111;3;-0.000000, 0.680634,-0.000000;;, - 112;3;-0.000000, 0.680634,-0.000000;;, - 113;3;-0.000000, 0.680634,-0.000000;;, - 114;3;-0.000000, 0.680634,-0.000000;;, - 115;3;-0.000000, 0.680634,-0.000000;;, - 116;3;-0.000000, 0.680634,-0.000000;;, - 117;3;-0.000000, 0.680634,-0.000000;;, - 118;3;-0.000000, 0.680634,-0.000000;;, - 119;3;-0.000000, 0.680634,-0.000000;;, - 120;3;-0.000000, 0.680634,-0.000000;;, - 121;3;-0.000000, 0.680634,-0.000000;;, - 122;3;-0.000000, 0.680634,-0.000000;;, - 123;3;-0.000000, 0.680634,-0.000000;;, - 124;3;-0.000000, 0.680634,-0.000000;;, - 125;3;-0.000000, 0.680634,-0.000000;;, - 126;3;-0.000000, 0.680634,-0.000000;;, - 127;3;-0.000000, 0.680634,-0.000000;;, - 128;3;-0.000000, 0.680634,-0.000000;;, - 129;3;-0.000000, 0.680634,-0.000000;;, - 130;3;-0.000000, 0.680634,-0.000000;;, - 131;3;-0.000000, 0.680634,-0.000000;;, - 132;3;-0.000000, 0.680634,-0.000000;;, - 133;3;-0.000000, 0.680634,-0.000000;;, - 134;3;-0.000000, 0.680634,-0.000000;;, - 135;3;-0.000000, 0.680634,-0.000000;;, - 136;3;-0.000000, 0.680634,-0.000000;;, - 137;3;-0.000000, 0.680634,-0.000000;;, - 138;3;-0.000000, 0.680634,-0.000000;;, - 139;3;-0.000000, 0.680634,-0.000000;;, - 140;3;-0.000000, 0.680634,-0.000000;;, - 141;3;-0.000000, 0.680634,-0.000000;;, - 142;3;-0.000000, 0.680634,-0.000000;;, - 143;3;-0.000000, 0.680634,-0.000000;;, - 144;3;-0.000000, 0.680634,-0.000000;;, - 145;3;-0.000000, 0.680634,-0.000000;;, - 146;3;-0.000000, 0.680634,-0.000000;;, - 147;3;-0.000000, 0.680634,-0.000000;;, - 148;3;-0.000000, 0.680634,-0.000000;;, - 149;3;-0.000000, 0.680634,-0.000000;;, - 150;3;-0.000000, 0.680634,-0.000000;;, - 151;3;-0.000000, 0.680634,-0.000000;;, - 152;3;-0.000000, 0.680634,-0.000000;;, - 153;3;-0.000000, 0.680634,-0.000000;;, - 154;3;-0.000000, 0.680634,-0.000000;;, - 155;3;-0.000000, 0.680634,-0.000000;;, - 156;3;-0.000000, 0.680634,-0.000000;;, - 157;3;-0.000000, 0.680634,-0.000000;;, - 158;3;-0.000000, 0.680634,-0.000000;;, - 159;3;-0.000000, 0.680634,-0.000000;;, - 160;3;-0.000000, 0.680634,-0.000000;;, - 161;3;-0.000000, 0.680634,-0.000000;;, - 162;3;-0.000000, 0.680634,-0.000000;;, - 163;3;-0.000000, 0.680634,-0.000000;;, - 164;3;-0.000000, 0.680634,-0.000000;;, - 165;3;-0.000000, 0.680634,-0.000000;;, - 166;3;-0.000000, 0.680634,-0.000000;;, - 167;3;-0.000000, 0.680634,-0.000000;;, - 168;3;-0.000000, 0.680634,-0.000000;;, - 169;3;-0.000000, 0.680634,-0.000000;;, - 170;3;-0.000000, 0.680634,-0.000000;;, - 171;3;-0.000000, 0.680634,-0.000000;;, - 172;3;-0.000000, 0.680634,-0.000000;;, - 173;3;-0.000000, 0.680634,-0.000000;;, - 174;3;-0.000000, 0.680634,-0.000000;;, - 175;3;-0.000000, 0.680634,-0.000000;;, - 176;3;-0.000000, 0.680634,-0.000000;;, - 177;3;-0.000000, 0.680634,-0.000000;;, - 178;3;-0.000000, 0.680634,-0.000000;;, - 179;3;-0.000000, 0.680634,-0.000000;;, - 180;3;-0.000000, 0.680634,-0.000000;;, - 181;3; 0.000000, 0.680634,-0.000000;;, - 182;3;-0.000000, 0.680634,-0.000000;;, - 183;3;-0.000000, 0.680634,-0.000000;;, - 184;3;-0.000000, 0.680634,-0.000000;;, - 185;3;-0.000000, 0.680634, 0.000000;;, - 186;3; 0.000000, 0.680634,-0.000000;;, - 187;3; 0.000000, 0.680634,-0.000000;;, - 188;3;-0.000000, 0.680634, 0.000000;;, - 189;3; 0.000000, 0.680634,-0.000000;;, - 190;3;-0.000000, 0.680634,-0.000000;;, - 191;3; 0.000001, 0.680634, 0.000000;;, - 192;3; 0.000000, 0.680634,-0.000000;;, - 193;3; 0.000000, 0.680634,-0.000000;;, - 194;3; 0.000000, 0.680634,-0.000000;;, - 195;3;-0.000000, 0.680634, 0.000000;;, - 196;3; 0.000000, 0.680634,-0.000000;;, - 197;3; 0.000000, 0.680634,-0.000000;;, - 198;3;-0.000000, 0.680634,-0.000000;;, - 199;3;-0.000000, 0.680634,-0.000000;;, - 200;3;-0.000000, 0.680634,-0.000000;;, - 201;3;-0.000000, 0.680634,-0.000000;;, - 202;3;-0.000000, 0.680634,-0.000000;;, - 203;3;-0.000000, 0.680634,-0.000000;;, - 204;3;-0.000000, 0.680634,-0.000000;;, - 205;3;-0.000000, 0.680634,-0.000000;;, - 206;3;-0.000000, 0.680634,-0.000000;;, - 207;3;-0.000000, 0.680634,-0.000000;;, - 208;3;-0.000000, 0.680634,-0.000000;;, - 209;3;-0.000000, 0.680634,-0.000000;;, - 210;3;-0.000000, 0.680634,-0.000000;;, - 211;3;-0.000000, 0.680634,-0.000000;;, - 212;3;-0.000000, 0.680634,-0.000000;;, - 213;3;-0.000000, 0.680634,-0.000000;;, - 214;3;-0.000000, 0.680634,-0.000000;;, - 215;3;-0.000000, 0.680634,-0.000000;;, - 216;3;-0.000000, 0.680634,-0.000000;;, - 217;3;-0.000000, 0.680634,-0.000000;;, - 218;3;-0.000000, 0.680634,-0.000000;;, - 219;3;-0.000000, 0.680634,-0.000000;;, - 220;3;-0.000000, 0.680634,-0.000000;;, - 221;3;-0.000000, 0.680634,-0.000000;;, - 222;3;-0.000000, 0.680634,-0.000000;;, - 223;3;-0.000000, 0.680634,-0.000000;;, - 224;3;-0.000000, 0.680634,-0.000000;;, - 225;3;-0.000000, 0.680634,-0.000000;;, - 226;3;-0.000000, 0.680634,-0.000000;;, - 227;3;-0.000000, 0.680634,-0.000000;;, - 228;3;-0.000000, 0.680634,-0.000000;;, - 229;3;-0.000000, 0.680634,-0.000000;;, - 230;3;-0.000000, 0.680634,-0.000000;;, - 231;3;-0.000000, 0.680634,-0.000000;;, - 232;3;-0.000000, 0.680634,-0.000000;;, - 233;3;-0.000000, 0.680634,-0.000000;;, - 234;3;-0.000000, 0.680634,-0.000000;;, - 235;3;-0.000000, 0.680634,-0.000000;;, - 236;3;-0.000000, 0.680634,-0.000000;;, - 237;3;-0.000000, 0.680634,-0.000000;;, - 238;3;-0.000000, 0.680634,-0.000000;;, - 239;3;-0.000000, 0.680634,-0.000000;;, - 240;3;-0.000000, 0.680634,-0.000000;;, - 241;3;-0.000000, 0.680634,-0.000000;;, - 242;3;-0.000000, 0.680634,-0.000000;;, - 243;3;-0.000000, 0.680634,-0.000000;;, - 244;3;-0.000000, 0.680634,-0.000000;;, - 245;3;-0.000000, 0.680634,-0.000000;;, - 246;3;-0.000000, 0.680634,-0.000000;;, - 247;3;-0.000000, 0.680634,-0.000000;;, - 248;3;-0.000000, 0.680634,-0.000000;;, - 249;3;-0.000000, 0.680634,-0.000000;;; - } - } - Animation { - {Armature_Bone_022} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 1;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 2;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 3;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 4;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 5;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 6;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 7;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 8;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 9;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 10;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 11;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 12;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 13;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 14;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 15;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 16;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 17;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 18;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 19;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 20;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 21;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 22;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 23;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 24;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 25;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 26;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 27;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 28;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 29;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 30;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 31;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 32;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 33;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 34;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 35;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 36;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 37;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 38;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 39;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 40;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 41;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 42;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 43;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 44;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 45;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 46;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 47;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 48;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 49;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 50;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 51;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 52;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 53;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 54;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 55;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 56;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 57;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 58;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 59;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 60;4;-0.971886,-0.235439, 0.000032, 0.000000;;, - 61;4;-0.971936,-0.235196, 0.000129, 0.000001;;, - 62;4;-0.972020,-0.234788, 0.000292, 0.000003;;, - 63;4;-0.972138,-0.234216, 0.000520, 0.000005;;, - 64;4;-0.972290,-0.233478, 0.000813, 0.000007;;, - 65;4;-0.972476,-0.232577, 0.001172, 0.000011;;, - 66;4;-0.972695,-0.231513, 0.001596, 0.000014;;, - 67;4;-0.972947,-0.230290, 0.002083, 0.000019;;, - 68;4;-0.973231,-0.228911, 0.002632, 0.000024;;, - 69;4;-0.973545,-0.227383, 0.003241, 0.000029;;, - 70;4;-0.973890,-0.225712, 0.003906, 0.000035;;, - 71;4;-0.974262,-0.223906, 0.004625, 0.000042;;, - 72;4;-0.974659,-0.221976, 0.005394, 0.000049;;, - 73;4;-0.975080,-0.219932, 0.006208, 0.000056;;, - 74;4;-0.975522,-0.217788, 0.007062, 0.000064;;, - 75;4;-0.975981,-0.215557, 0.007950, 0.000072;;, - 76;4;-0.976455,-0.213256, 0.008867, 0.000080;;, - 77;4;-0.976940,-0.210901, 0.009805, 0.000089;;, - 78;4;-0.977433,-0.208509, 0.010757, 0.000097;;, - 79;4;-0.977929,-0.206099, 0.011717, 0.000106;;, - 80;4;-0.978426,-0.203689, 0.012677, 0.000115;;, - 81;4;-0.978919,-0.201298, 0.013629, 0.000123;;, - 82;4;-0.979404,-0.198942, 0.014567, 0.000132;;, - 83;4;-0.979878,-0.196641, 0.015484, 0.000140;;, - 84;4;-0.980337,-0.194411, 0.016372, 0.000148;;, - 85;4;-0.980779,-0.192266, 0.017226, 0.000156;;, - 86;4;-0.981200,-0.190223, 0.018040, 0.000163;;, - 87;4;-0.981597,-0.188292, 0.018809, 0.000170;;, - 88;4;-0.981969,-0.186486, 0.019528, 0.000177;;, - 89;4;-0.982314,-0.184815, 0.020193, 0.000183;;, - 90;4;-0.982628,-0.183287, 0.020802, 0.000188;;, - 91;4;-0.982912,-0.181909, 0.021351, 0.000193;;, - 92;4;-0.983164,-0.180686, 0.021838, 0.000197;;, - 93;4;-0.983383,-0.179622, 0.022262, 0.000201;;, - 94;4;-0.983569,-0.178720, 0.022621, 0.000205;;, - 95;4;-0.983721,-0.177983, 0.022914, 0.000207;;, - 96;4;-0.983839,-0.177410, 0.023142, 0.000209;;, - 97;4;-0.983923,-0.177003, 0.023305, 0.000211;;, - 98;4;-0.983973,-0.176759, 0.023402, 0.000212;;, - 99;4;-0.983990,-0.176678, 0.023434, 0.000212;;, - 100;4;-0.983267,-0.178677, 0.022609, 0.000204;;, - 101;4;-0.981024,-0.184884, 0.020049, 0.000181;;, - 102;4;-0.977214,-0.195430, 0.015698, 0.000142;;, - 103;4;-0.971933,-0.210044, 0.009669, 0.000087;;, - 104;4;-0.965467,-0.227936, 0.002288, 0.000021;;, - 105;4;-0.958274,-0.247841,-0.005923,-0.000054;;, - 106;4;-0.950885,-0.268291,-0.014360,-0.000130;;, - 107;4;-0.943774,-0.287968,-0.022477,-0.000203;;, - 108;4;-0.937284,-0.305928,-0.029886,-0.000270;;, - 109;4;-0.931607,-0.321640,-0.036368,-0.000329;;, - 110;4;-0.925929,-0.337351,-0.042849,-0.000388;;, - 111;4;-0.919439,-0.355312,-0.050259,-0.000455;;, - 112;4;-0.912329,-0.374988,-0.058376,-0.000528;;, - 113;4;-0.904939,-0.395439,-0.066812,-0.000604;;, - 114;4;-0.897746,-0.415344,-0.075024,-0.000678;;, - 115;4;-0.891281,-0.433236,-0.082405,-0.000745;;, - 116;4;-0.885999,-0.447850,-0.088434,-0.000800;;, - 117;4;-0.882189,-0.458395,-0.092784,-0.000839;;, - 118;4;-0.879946,-0.464603,-0.095345,-0.000862;;, - 119;4;-0.879224,-0.466601,-0.096169,-0.000870;;, - 120;4;-0.879946,-0.464603,-0.095345,-0.000862;;, - 121;4;-0.882189,-0.458395,-0.092784,-0.000839;;, - 122;4;-0.885999,-0.447850,-0.088434,-0.000800;;, - 123;4;-0.891280,-0.433236,-0.082405,-0.000745;;, - 124;4;-0.897746,-0.415344,-0.075024,-0.000678;;, - 125;4;-0.904939,-0.395439,-0.066812,-0.000604;;, - 126;4;-0.912329,-0.374988,-0.058376,-0.000528;;, - 127;4;-0.919439,-0.355312,-0.050259,-0.000455;;, - 128;4;-0.925929,-0.337351,-0.042849,-0.000388;;, - 129;4;-0.931607,-0.321640,-0.036368,-0.000329;;, - 130;4;-0.937284,-0.305928,-0.029886,-0.000270;;, - 131;4;-0.943774,-0.287968,-0.022477,-0.000203;;, - 132;4;-0.950885,-0.268291,-0.014360,-0.000130;;, - 133;4;-0.958274,-0.247841,-0.005923,-0.000054;;, - 134;4;-0.965467,-0.227936, 0.002288, 0.000021;;, - 135;4;-0.971933,-0.210044, 0.009669, 0.000087;;, - 136;4;-0.977214,-0.195430, 0.015698, 0.000142;;, - 137;4;-0.981024,-0.184884, 0.020049, 0.000181;;, - 138;4;-0.983267,-0.178677, 0.022609, 0.000204;;, - 139;4;-0.983990,-0.176678, 0.023434, 0.000212;;, - 140;4;-0.981024,-0.184884, 0.020049, 0.000181;;, - 141;4;-0.971933,-0.210044, 0.009669, 0.000087;;, - 142;4;-0.958274,-0.247841,-0.005923,-0.000054;;, - 143;4;-0.943774,-0.287968,-0.022477,-0.000203;;, - 144;4;-0.931607,-0.321640,-0.036368,-0.000329;;, - 145;4;-0.919439,-0.355312,-0.050259,-0.000455;;, - 146;4;-0.904939,-0.395439,-0.066812,-0.000604;;, - 147;4;-0.891281,-0.433236,-0.082405,-0.000745;;, - 148;4;-0.882189,-0.458395,-0.092784,-0.000839;;, - 149;4;-0.879224,-0.466601,-0.096169,-0.000870;;, - 150;4;-0.882189,-0.458395,-0.092784,-0.000839;;, - 151;4;-0.891280,-0.433236,-0.082405,-0.000745;;, - 152;4;-0.904939,-0.395439,-0.066812,-0.000604;;, - 153;4;-0.919439,-0.355312,-0.050259,-0.000455;;, - 154;4;-0.931607,-0.321640,-0.036368,-0.000329;;, - 155;4;-0.943774,-0.287968,-0.022477,-0.000203;;, - 156;4;-0.958274,-0.247841,-0.005923,-0.000054;;, - 157;4;-0.971933,-0.210044, 0.009669, 0.000087;;, - 158;4;-0.981024,-0.184884, 0.020049, 0.000181;;, - 159;4;-0.983990,-0.176678, 0.023434, 0.000212;;, - 160;4;-0.983923,-0.177003, 0.023305, 0.000211;;, - 161;4;-0.983721,-0.177983, 0.022914, 0.000207;;, - 162;4;-0.983383,-0.179622, 0.022262, 0.000201;;, - 163;4;-0.982912,-0.181909, 0.021351, 0.000193;;, - 164;4;-0.982314,-0.184815, 0.020193, 0.000183;;, - 165;4;-0.981597,-0.188292, 0.018809, 0.000170;;, - 166;4;-0.980779,-0.192266, 0.017226, 0.000156;;, - 167;4;-0.979878,-0.196641, 0.015484, 0.000140;;, - 168;4;-0.978919,-0.201298, 0.013629, 0.000123;;, - 169;4;-0.977930,-0.206099, 0.011717, 0.000106;;, - 170;4;-0.976941,-0.210901, 0.009805, 0.000089;;, - 171;4;-0.975981,-0.215557, 0.007950, 0.000072;;, - 172;4;-0.975080,-0.219932, 0.006208, 0.000056;;, - 173;4;-0.974262,-0.223907, 0.004625, 0.000042;;, - 174;4;-0.973545,-0.227383, 0.003241, 0.000029;;, - 175;4;-0.972947,-0.230290, 0.002083, 0.000019;;, - 176;4;-0.972476,-0.232577, 0.001172, 0.000011;;, - 177;4;-0.972138,-0.234216, 0.000520, 0.000005;;, - 178;4;-0.971936,-0.235196, 0.000129, 0.000001;;, - 179;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 180;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 181;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 182;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 183;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 184;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 185;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 186;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 187;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 188;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 189;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 190;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 191;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 192;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 193;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 194;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 195;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 196;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 197;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 198;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 199;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 200;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 201;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 202;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 203;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 204;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 205;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 206;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 207;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 208;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 209;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 210;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 211;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 212;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 213;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 214;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 215;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 216;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 217;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 218;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 219;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 220;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 221;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 222;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 223;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 224;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 225;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 226;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 227;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 228;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 229;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 230;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 231;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 232;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 233;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 234;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 235;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 236;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 237;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 238;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 239;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 240;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 241;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 242;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 243;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 244;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 245;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 246;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 247;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 248;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 249;4;-0.971869,-0.235520, 0.000000,-0.000000;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3;-0.000000, 1.294481, 0.000000;;, - 1;3;-0.000000, 1.294481, 0.000000;;, - 2;3;-0.000000, 1.294481, 0.000000;;, - 3;3;-0.000000, 1.294481, 0.000000;;, - 4;3;-0.000000, 1.294481, 0.000000;;, - 5;3;-0.000000, 1.294481, 0.000000;;, - 6;3;-0.000000, 1.294481, 0.000000;;, - 7;3;-0.000000, 1.294481, 0.000000;;, - 8;3;-0.000000, 1.294481, 0.000000;;, - 9;3;-0.000000, 1.294481, 0.000000;;, - 10;3;-0.000000, 1.294481, 0.000000;;, - 11;3;-0.000000, 1.294481, 0.000000;;, - 12;3;-0.000000, 1.294481, 0.000000;;, - 13;3;-0.000000, 1.294481, 0.000000;;, - 14;3;-0.000000, 1.294481, 0.000000;;, - 15;3;-0.000000, 1.294481, 0.000000;;, - 16;3;-0.000000, 1.294481, 0.000000;;, - 17;3;-0.000000, 1.294481, 0.000000;;, - 18;3;-0.000000, 1.294481, 0.000000;;, - 19;3;-0.000000, 1.294481, 0.000000;;, - 20;3;-0.000000, 1.294481, 0.000000;;, - 21;3;-0.000000, 1.294481, 0.000000;;, - 22;3;-0.000000, 1.294481, 0.000000;;, - 23;3;-0.000000, 1.294481, 0.000000;;, - 24;3;-0.000000, 1.294481, 0.000000;;, - 25;3;-0.000000, 1.294481, 0.000000;;, - 26;3;-0.000000, 1.294481, 0.000000;;, - 27;3;-0.000000, 1.294481, 0.000000;;, - 28;3;-0.000000, 1.294481, 0.000000;;, - 29;3;-0.000000, 1.294481, 0.000000;;, - 30;3;-0.000000, 1.294481, 0.000000;;, - 31;3;-0.000000, 1.294481, 0.000000;;, - 32;3;-0.000000, 1.294481, 0.000000;;, - 33;3;-0.000000, 1.294481, 0.000000;;, - 34;3;-0.000000, 1.294481, 0.000000;;, - 35;3;-0.000000, 1.294481, 0.000000;;, - 36;3;-0.000000, 1.294481, 0.000000;;, - 37;3;-0.000000, 1.294481, 0.000000;;, - 38;3;-0.000000, 1.294481, 0.000000;;, - 39;3;-0.000000, 1.294481, 0.000000;;, - 40;3;-0.000000, 1.294481, 0.000000;;, - 41;3;-0.000000, 1.294481, 0.000000;;, - 42;3;-0.000000, 1.294481, 0.000000;;, - 43;3;-0.000000, 1.294481, 0.000000;;, - 44;3;-0.000000, 1.294481, 0.000000;;, - 45;3;-0.000000, 1.294481, 0.000000;;, - 46;3;-0.000000, 1.294481, 0.000000;;, - 47;3;-0.000000, 1.294481, 0.000000;;, - 48;3;-0.000000, 1.294481, 0.000000;;, - 49;3;-0.000000, 1.294481, 0.000000;;, - 50;3;-0.000000, 1.294481, 0.000000;;, - 51;3;-0.000000, 1.294481, 0.000000;;, - 52;3;-0.000000, 1.294481, 0.000000;;, - 53;3;-0.000000, 1.294481, 0.000000;;, - 54;3;-0.000000, 1.294481, 0.000000;;, - 55;3;-0.000000, 1.294481, 0.000000;;, - 56;3;-0.000000, 1.294481, 0.000000;;, - 57;3;-0.000000, 1.294481, 0.000000;;, - 58;3;-0.000000, 1.294481, 0.000000;;, - 59;3;-0.000000, 1.294481, 0.000000;;, - 60;3;-0.000000, 1.294482,-0.000000;;, - 61;3;-0.000000, 1.294482, 0.000000;;, - 62;3; 0.000000, 1.294481, 0.000000;;, - 63;3;-0.000000, 1.294481, 0.000000;;, - 64;3;-0.000000, 1.294482, 0.000000;;, - 65;3;-0.000000, 1.294482,-0.000000;;, - 66;3;-0.000000, 1.294482, 0.000000;;, - 67;3;-0.000000, 1.294481, 0.000000;;, - 68;3; 0.000000, 1.294482,-0.000000;;, - 69;3; 0.000000, 1.294481, 0.000000;;, - 70;3;-0.000000, 1.294481, 0.000000;;, - 71;3; 0.000000, 1.294482,-0.000000;;, - 72;3; 0.000000, 1.294482, 0.000000;;, - 73;3;-0.000000, 1.294481, 0.000000;;, - 74;3;-0.000000, 1.294482, 0.000000;;, - 75;3; 0.000000, 1.294481, 0.000000;;, - 76;3; 0.000000, 1.294482, 0.000000;;, - 77;3;-0.000000, 1.294481,-0.000000;;, - 78;3;-0.000000, 1.294482, 0.000000;;, - 79;3;-0.000000, 1.294481, 0.000000;;, - 80;3;-0.000000, 1.294482, 0.000000;;, - 81;3;-0.000000, 1.294481, 0.000000;;, - 82;3;-0.000000, 1.294482,-0.000000;;, - 83;3; 0.000000, 1.294482,-0.000000;;, - 84;3;-0.000000, 1.294481, 0.000000;;, - 85;3;-0.000000, 1.294482, 0.000000;;, - 86;3;-0.000000, 1.294481, 0.000000;;, - 87;3; 0.000000, 1.294482, 0.000000;;, - 88;3; 0.000000, 1.294482, 0.000000;;, - 89;3;-0.000000, 1.294482, 0.000000;;, - 90;3;-0.000000, 1.294482,-0.000000;;, - 91;3;-0.000000, 1.294481, 0.000000;;, - 92;3; 0.000000, 1.294481, 0.000000;;, - 93;3; 0.000000, 1.294481, 0.000000;;, - 94;3;-0.000000, 1.294481,-0.000000;;, - 95;3; 0.000000, 1.294481,-0.000000;;, - 96;3;-0.000000, 1.294482,-0.000000;;, - 97;3; 0.000000, 1.294482, 0.000000;;, - 98;3; 0.000000, 1.294482,-0.000000;;, - 99;3;-0.000000, 1.294481, 0.000000;;, - 100;3; 0.000000, 1.294481, 0.000000;;, - 101;3;-0.000000, 1.294481, 0.000000;;, - 102;3;-0.000000, 1.294481,-0.000000;;, - 103;3;-0.000000, 1.294481,-0.000000;;, - 104;3;-0.000000, 1.294482, 0.000000;;, - 105;3;-0.000000, 1.294482,-0.000000;;, - 106;3; 0.000000, 1.294481, 0.000000;;, - 107;3; 0.000000, 1.294482, 0.000000;;, - 108;3;-0.000000, 1.294481,-0.000000;;, - 109;3; 0.000000, 1.294482,-0.000000;;, - 110;3; 0.000000, 1.294482, 0.000000;;, - 111;3; 0.000000, 1.294481, 0.000000;;, - 112;3;-0.000000, 1.294482, 0.000000;;, - 113;3; 0.000000, 1.294481, 0.000000;;, - 114;3; 0.000000, 1.294482, 0.000000;;, - 115;3; 0.000000, 1.294481,-0.000000;;, - 116;3; 0.000000, 1.294481, 0.000000;;, - 117;3; 0.000000, 1.294482,-0.000000;;, - 118;3; 0.000000, 1.294481,-0.000000;;, - 119;3; 0.000000, 1.294481,-0.000000;;, - 120;3;-0.000000, 1.294481,-0.000000;;, - 121;3;-0.000000, 1.294482, 0.000000;;, - 122;3; 0.000000, 1.294481,-0.000000;;, - 123;3; 0.000000, 1.294481,-0.000000;;, - 124;3;-0.000000, 1.294482,-0.000000;;, - 125;3;-0.000000, 1.294482, 0.000000;;, - 126;3;-0.000000, 1.294481,-0.000000;;, - 127;3;-0.000000, 1.294482,-0.000000;;, - 128;3; 0.000000, 1.294481,-0.000000;;, - 129;3;-0.000000, 1.294481, 0.000000;;, - 130;3;-0.000000, 1.294481,-0.000000;;, - 131;3; 0.000000, 1.294481,-0.000000;;, - 132;3; 0.000000, 1.294481,-0.000000;;, - 133;3; 0.000000, 1.294481, 0.000000;;, - 134;3; 0.000000, 1.294481,-0.000000;;, - 135;3; 0.000000, 1.294481, 0.000000;;, - 136;3;-0.000000, 1.294482,-0.000000;;, - 137;3; 0.000000, 1.294481,-0.000000;;, - 138;3;-0.000000, 1.294481,-0.000000;;, - 139;3;-0.000000, 1.294481, 0.000000;;, - 140;3;-0.000000, 1.294481, 0.000000;;, - 141;3;-0.000000, 1.294481,-0.000000;;, - 142;3;-0.000000, 1.294482,-0.000000;;, - 143;3; 0.000000, 1.294482, 0.000000;;, - 144;3; 0.000000, 1.294482,-0.000000;;, - 145;3; 0.000000, 1.294481, 0.000000;;, - 146;3; 0.000000, 1.294481, 0.000000;;, - 147;3; 0.000000, 1.294481,-0.000000;;, - 148;3; 0.000000, 1.294482,-0.000000;;, - 149;3; 0.000000, 1.294481,-0.000000;;, - 150;3;-0.000000, 1.294482, 0.000000;;, - 151;3; 0.000000, 1.294481,-0.000000;;, - 152;3;-0.000000, 1.294482, 0.000000;;, - 153;3;-0.000000, 1.294482,-0.000000;;, - 154;3;-0.000000, 1.294481, 0.000000;;, - 155;3; 0.000000, 1.294481,-0.000000;;, - 156;3; 0.000000, 1.294481, 0.000000;;, - 157;3; 0.000000, 1.294481, 0.000000;;, - 158;3; 0.000000, 1.294481,-0.000000;;, - 159;3;-0.000000, 1.294481, 0.000000;;, - 160;3;-0.000000, 1.294481,-0.000000;;, - 161;3;-0.000000, 1.294481,-0.000000;;, - 162;3; 0.000000, 1.294482,-0.000000;;, - 163;3; 0.000000, 1.294481,-0.000000;;, - 164;3;-0.000000, 1.294481, 0.000000;;, - 165;3; 0.000000, 1.294482, 0.000000;;, - 166;3;-0.000000, 1.294482,-0.000000;;, - 167;3;-0.000000, 1.294482,-0.000000;;, - 168;3; 0.000000, 1.294481,-0.000000;;, - 169;3;-0.000000, 1.294482, 0.000000;;, - 170;3;-0.000000, 1.294481,-0.000000;;, - 171;3;-0.000000, 1.294482,-0.000000;;, - 172;3;-0.000000, 1.294481, 0.000000;;, - 173;3;-0.000000, 1.294482,-0.000000;;, - 174;3;-0.000000, 1.294481, 0.000000;;, - 175;3; 0.000000, 1.294481,-0.000000;;, - 176;3; 0.000000, 1.294481, 0.000000;;, - 177;3;-0.000000, 1.294482, 0.000000;;, - 178;3;-0.000000, 1.294482, 0.000000;;, - 179;3;-0.000000, 1.294481, 0.000000;;, - 180;3; 0.000000, 1.294481,-0.000000;;, - 181;3; 0.000000, 1.294481, 0.000000;;, - 182;3;-0.000000, 1.294481,-0.000000;;, - 183;3; 0.000000, 1.294481, 0.000000;;, - 184;3; 0.000000, 1.294481,-0.000000;;, - 185;3; 0.000000, 1.294481,-0.000000;;, - 186;3; 0.000000, 1.294482,-0.000000;;, - 187;3;-0.000000, 1.294482,-0.000000;;, - 188;3; 0.000000, 1.294481,-0.000000;;, - 189;3; 0.000000, 1.294481,-0.000000;;, - 190;3; 0.000000, 1.294481, 0.000000;;, - 191;3;-0.000000, 1.294481, 0.000000;;, - 192;3; 0.000000, 1.294482,-0.000000;;, - 193;3;-0.000000, 1.294481, 0.000000;;, - 194;3; 0.000000, 1.294481, 0.000000;;, - 195;3;-0.000000, 1.294481, 0.000000;;, - 196;3;-0.000000, 1.294481,-0.000000;;, - 197;3;-0.000000, 1.294481,-0.000000;;, - 198;3;-0.000000, 1.294481,-0.000000;;, - 199;3;-0.000000, 1.294481, 0.000000;;, - 200;3;-0.000000, 1.294481, 0.000000;;, - 201;3;-0.000000, 1.294481, 0.000000;;, - 202;3;-0.000000, 1.294481, 0.000000;;, - 203;3;-0.000000, 1.294481, 0.000000;;, - 204;3;-0.000000, 1.294481, 0.000000;;, - 205;3;-0.000000, 1.294481, 0.000000;;, - 206;3;-0.000000, 1.294481, 0.000000;;, - 207;3;-0.000000, 1.294481, 0.000000;;, - 208;3;-0.000000, 1.294481, 0.000000;;, - 209;3;-0.000000, 1.294481, 0.000000;;, - 210;3;-0.000000, 1.294481, 0.000000;;, - 211;3;-0.000000, 1.294481, 0.000000;;, - 212;3;-0.000000, 1.294481, 0.000000;;, - 213;3;-0.000000, 1.294481, 0.000000;;, - 214;3;-0.000000, 1.294481, 0.000000;;, - 215;3;-0.000000, 1.294481, 0.000000;;, - 216;3;-0.000000, 1.294481, 0.000000;;, - 217;3;-0.000000, 1.294481, 0.000000;;, - 218;3;-0.000000, 1.294481, 0.000000;;, - 219;3;-0.000000, 1.294481, 0.000000;;, - 220;3;-0.000000, 1.294481, 0.000000;;, - 221;3;-0.000000, 1.294481, 0.000000;;, - 222;3;-0.000000, 1.294481, 0.000000;;, - 223;3;-0.000000, 1.294481, 0.000000;;, - 224;3;-0.000000, 1.294481, 0.000000;;, - 225;3;-0.000000, 1.294481, 0.000000;;, - 226;3;-0.000000, 1.294481, 0.000000;;, - 227;3;-0.000000, 1.294481, 0.000000;;, - 228;3;-0.000000, 1.294481, 0.000000;;, - 229;3;-0.000000, 1.294481, 0.000000;;, - 230;3;-0.000000, 1.294481, 0.000000;;, - 231;3;-0.000000, 1.294481, 0.000000;;, - 232;3;-0.000000, 1.294481, 0.000000;;, - 233;3;-0.000000, 1.294481, 0.000000;;, - 234;3;-0.000000, 1.294481, 0.000000;;, - 235;3;-0.000000, 1.294481, 0.000000;;, - 236;3;-0.000000, 1.294481, 0.000000;;, - 237;3;-0.000000, 1.294481, 0.000000;;, - 238;3;-0.000000, 1.294481, 0.000000;;, - 239;3;-0.000000, 1.294481, 0.000000;;, - 240;3;-0.000000, 1.294481, 0.000000;;, - 241;3;-0.000000, 1.294481, 0.000000;;, - 242;3;-0.000000, 1.294481, 0.000000;;, - 243;3;-0.000000, 1.294481, 0.000000;;, - 244;3;-0.000000, 1.294481, 0.000000;;, - 245;3;-0.000000, 1.294481, 0.000000;;, - 246;3;-0.000000, 1.294481, 0.000000;;, - 247;3;-0.000000, 1.294481, 0.000000;;, - 248;3;-0.000000, 1.294481, 0.000000;;, - 249;3;-0.000000, 1.294481, 0.000000;;; - } - } - Animation { - {Armature_Bone_026} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 1;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 2;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 3;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 4;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 5;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 6;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 7;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 8;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 9;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 10;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 11;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 12;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 13;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 14;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 15;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 16;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 17;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 18;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 19;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 20;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 21;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 22;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 23;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 24;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 25;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 26;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 27;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 28;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 29;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 30;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 31;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 32;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 33;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 34;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 35;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 36;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 37;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 38;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 39;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 40;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 41;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 42;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 43;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 44;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 45;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 46;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 47;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 48;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 49;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 50;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 51;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 52;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 53;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 54;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 55;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 56;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 57;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 58;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 59;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 60;4;-0.990507,-0.137464,-0.000000,-0.000000;;, - 61;4;-0.990507,-0.137465,-0.000000,-0.000000;;, - 62;4;-0.990506,-0.137468,-0.000001,-0.000001;;, - 63;4;-0.990506,-0.137473,-0.000003,-0.000001;;, - 64;4;-0.990504,-0.137481,-0.000006,-0.000002;;, - 65;4;-0.990503,-0.137494,-0.000011,-0.000004;;, - 66;4;-0.990500,-0.137512,-0.000018,-0.000007;;, - 67;4;-0.990496,-0.137538,-0.000027,-0.000011;;, - 68;4;-0.990491,-0.137572,-0.000039,-0.000016;;, - 69;4;-0.990485,-0.137615,-0.000055,-0.000022;;, - 70;4;-0.990477,-0.137670,-0.000075,-0.000030;;, - 71;4;-0.990467,-0.137738,-0.000100,-0.000041;;, - 72;4;-0.990455,-0.137821,-0.000130,-0.000053;;, - 73;4;-0.990440,-0.137920,-0.000166,-0.000067;;, - 74;4;-0.990423,-0.138036,-0.000209,-0.000085;;, - 75;4;-0.990404,-0.138173,-0.000259,-0.000105;;, - 76;4;-0.990381,-0.138330,-0.000316,-0.000128;;, - 77;4;-0.990354,-0.138510,-0.000382,-0.000155;;, - 78;4;-0.990325,-0.138714,-0.000457,-0.000185;;, - 79;4;-0.990291,-0.138944,-0.000541,-0.000219;;, - 80;4;-0.990254,-0.139200,-0.000635,-0.000257;;, - 81;4;-0.990212,-0.139484,-0.000738,-0.000299;;, - 82;4;-0.990167,-0.139796,-0.000852,-0.000345;;, - 83;4;-0.990117,-0.140136,-0.000977,-0.000396;;, - 84;4;-0.990063,-0.140506,-0.001112,-0.000450;;, - 85;4;-0.990005,-0.140905,-0.001258,-0.000509;;, - 86;4;-0.989943,-0.141334,-0.001415,-0.000573;;, - 87;4;-0.989876,-0.141791,-0.001582,-0.000640;;, - 88;4;-0.989805,-0.142277,-0.001760,-0.000712;;, - 89;4;-0.989730,-0.142791,-0.001948,-0.000789;;, - 90;4;-0.989651,-0.143333,-0.002146,-0.000869;;, - 91;4;-0.989568,-0.143902,-0.002353,-0.000953;;, - 92;4;-0.989482,-0.144496,-0.002571,-0.001041;;, - 93;4;-0.989391,-0.145115,-0.002797,-0.001132;;, - 94;4;-0.989297,-0.145759,-0.003032,-0.001228;;, - 95;4;-0.989200,-0.146425,-0.003276,-0.001326;;, - 96;4;-0.989100,-0.147113,-0.003528,-0.001428;;, - 97;4;-0.988996,-0.147823,-0.003787,-0.001533;;, - 98;4;-0.988890,-0.148553,-0.004054,-0.001641;;, - 99;4;-0.988781,-0.149301,-0.004328,-0.001752;;, - 100;4;-0.988479,-0.150854,-0.004899,-0.001983;;, - 101;4;-0.987776,-0.154079,-0.006090,-0.002466;;, - 102;4;-0.986660,-0.159023,-0.007917,-0.003205;;, - 103;4;-0.985156,-0.165575,-0.010339,-0.004186;;, - 104;4;-0.983341,-0.173414,-0.013239,-0.005360;;, - 105;4;-0.981337,-0.182034,-0.016428,-0.006651;;, - 106;4;-0.979284,-0.190849,-0.019688,-0.007971;;, - 107;4;-0.977309,-0.199333,-0.022827,-0.009242;;, - 108;4;-0.975500,-0.207115,-0.025706,-0.010408;;, - 109;4;-0.973909,-0.213985,-0.028247,-0.011436;;, - 110;4;-0.972314,-0.220879,-0.030796,-0.012469;;, - 111;4;-0.970496,-0.228722,-0.033697,-0.013643;;, - 112;4;-0.968509,-0.237283,-0.036864,-0.014925;;, - 113;4;-0.966448,-0.246154,-0.040146,-0.016254;;, - 114;4;-0.964445,-0.254769,-0.043332,-0.017544;;, - 115;4;-0.962646,-0.262498,-0.046191,-0.018702;;, - 116;4;-0.961179,-0.268801,-0.048523,-0.019646;;, - 117;4;-0.960121,-0.273344,-0.050204,-0.020326;;, - 118;4;-0.959498,-0.276016,-0.051192,-0.020726;;, - 119;4;-0.959298,-0.276875,-0.051510,-0.020855;;, - 120;4;-0.959498,-0.276016,-0.051192,-0.020726;;, - 121;4;-0.960121,-0.273344,-0.050204,-0.020326;;, - 122;4;-0.961179,-0.268801,-0.048523,-0.019646;;, - 123;4;-0.962646,-0.262498,-0.046191,-0.018702;;, - 124;4;-0.964445,-0.254769,-0.043332,-0.017544;;, - 125;4;-0.966448,-0.246154,-0.040146,-0.016254;;, - 126;4;-0.968509,-0.237283,-0.036864,-0.014925;;, - 127;4;-0.970496,-0.228722,-0.033697,-0.013643;;, - 128;4;-0.972314,-0.220879,-0.030796,-0.012469;;, - 129;4;-0.973909,-0.213985,-0.028247,-0.011436;;, - 130;4;-0.975509,-0.207052,-0.025683,-0.010398;;, - 131;4;-0.977344,-0.199089,-0.022738,-0.009206;;, - 132;4;-0.979360,-0.190333,-0.019500,-0.007895;;, - 133;4;-0.981458,-0.181207,-0.016125,-0.006529;;, - 134;4;-0.983503,-0.172304,-0.012833,-0.005196;;, - 135;4;-0.985343,-0.164287,-0.009869,-0.003996;;, - 136;4;-0.986848,-0.157729,-0.007444,-0.003014;;, - 137;4;-0.987935,-0.152992,-0.005692,-0.002305;;, - 138;4;-0.988575,-0.150200,-0.004660,-0.001887;;, - 139;4;-0.988781,-0.149301,-0.004328,-0.001752;;, - 140;4;-0.987935,-0.152992,-0.005692,-0.002305;;, - 141;4;-0.985343,-0.164287,-0.009869,-0.003996;;, - 142;4;-0.981458,-0.181207,-0.016125,-0.006529;;, - 143;4;-0.977344,-0.199089,-0.022738,-0.009206;;, - 144;4;-0.973909,-0.213985,-0.028247,-0.011436;;, - 145;4;-0.970496,-0.228722,-0.033697,-0.013643;;, - 146;4;-0.966448,-0.246154,-0.040146,-0.016254;;, - 147;4;-0.962646,-0.262498,-0.046191,-0.018702;;, - 148;4;-0.960121,-0.273344,-0.050204,-0.020326;;, - 149;4;-0.959298,-0.276875,-0.051510,-0.020855;;, - 150;4;-0.960121,-0.273344,-0.050204,-0.020326;;, - 151;4;-0.962646,-0.262498,-0.046191,-0.018702;;, - 152;4;-0.966448,-0.246154,-0.040146,-0.016254;;, - 153;4;-0.970496,-0.228722,-0.033697,-0.013643;;, - 154;4;-0.973909,-0.213985,-0.028247,-0.011436;;, - 155;4;-0.977309,-0.199333,-0.022827,-0.009242;;, - 156;4;-0.981337,-0.182034,-0.016428,-0.006651;;, - 157;4;-0.985156,-0.165575,-0.010339,-0.004186;;, - 158;4;-0.987776,-0.154079,-0.006090,-0.002466;;, - 159;4;-0.988781,-0.149301,-0.004328,-0.001752;;, - 160;4;-0.988996,-0.147823,-0.003787,-0.001533;;, - 161;4;-0.989200,-0.146425,-0.003276,-0.001326;;, - 162;4;-0.989391,-0.145115,-0.002797,-0.001132;;, - 163;4;-0.989568,-0.143902,-0.002353,-0.000953;;, - 164;4;-0.989730,-0.142791,-0.001948,-0.000789;;, - 165;4;-0.989876,-0.141791,-0.001582,-0.000640;;, - 166;4;-0.990005,-0.140905,-0.001258,-0.000509;;, - 167;4;-0.990117,-0.140136,-0.000977,-0.000396;;, - 168;4;-0.990212,-0.139484,-0.000738,-0.000299;;, - 169;4;-0.990291,-0.138944,-0.000541,-0.000219;;, - 170;4;-0.990354,-0.138510,-0.000382,-0.000155;;, - 171;4;-0.990404,-0.138173,-0.000259,-0.000105;;, - 172;4;-0.990440,-0.137920,-0.000166,-0.000067;;, - 173;4;-0.990467,-0.137738,-0.000100,-0.000041;;, - 174;4;-0.990485,-0.137615,-0.000055,-0.000022;;, - 175;4;-0.990496,-0.137538,-0.000027,-0.000011;;, - 176;4;-0.990503,-0.137494,-0.000011,-0.000004;;, - 177;4;-0.990506,-0.137473,-0.000003,-0.000001;;, - 178;4;-0.990507,-0.137465,-0.000000,-0.000000;;, - 179;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 180;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 181;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 182;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 183;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 184;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 185;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 186;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 187;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 188;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 189;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 190;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 191;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 192;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 193;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 194;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 195;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 196;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 197;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 198;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 199;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 200;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 201;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 202;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 203;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 204;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 205;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 206;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 207;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 208;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 209;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 210;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 211;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 212;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 213;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 214;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 215;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 216;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 217;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 218;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 219;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 220;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 221;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 222;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 223;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 224;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 225;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 226;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 227;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 228;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 229;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 230;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 231;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 232;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 233;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 234;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 235;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 236;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 237;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 238;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 239;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 240;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 241;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 242;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 243;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 244;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 245;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 246;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 247;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 248;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 249;4;-0.990507,-0.137464, 0.000000,-0.000000;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3; 0.000000, 1.228822,-0.000000;;, - 1;3; 0.000000, 1.228822,-0.000000;;, - 2;3; 0.000000, 1.228822,-0.000000;;, - 3;3; 0.000000, 1.228822,-0.000000;;, - 4;3; 0.000000, 1.228822,-0.000000;;, - 5;3; 0.000000, 1.228822,-0.000000;;, - 6;3; 0.000000, 1.228822,-0.000000;;, - 7;3; 0.000000, 1.228822,-0.000000;;, - 8;3; 0.000000, 1.228822,-0.000000;;, - 9;3; 0.000000, 1.228822,-0.000000;;, - 10;3; 0.000000, 1.228822,-0.000000;;, - 11;3; 0.000000, 1.228822,-0.000000;;, - 12;3; 0.000000, 1.228822,-0.000000;;, - 13;3; 0.000000, 1.228822,-0.000000;;, - 14;3; 0.000000, 1.228822,-0.000000;;, - 15;3; 0.000000, 1.228822,-0.000000;;, - 16;3; 0.000000, 1.228822,-0.000000;;, - 17;3; 0.000000, 1.228822,-0.000000;;, - 18;3; 0.000000, 1.228822,-0.000000;;, - 19;3; 0.000000, 1.228822,-0.000000;;, - 20;3; 0.000000, 1.228822,-0.000000;;, - 21;3; 0.000000, 1.228822,-0.000000;;, - 22;3; 0.000000, 1.228822,-0.000000;;, - 23;3; 0.000000, 1.228822,-0.000000;;, - 24;3; 0.000000, 1.228822,-0.000000;;, - 25;3; 0.000000, 1.228822,-0.000000;;, - 26;3; 0.000000, 1.228822,-0.000000;;, - 27;3; 0.000000, 1.228822,-0.000000;;, - 28;3; 0.000000, 1.228822,-0.000000;;, - 29;3; 0.000000, 1.228822,-0.000000;;, - 30;3; 0.000000, 1.228822,-0.000000;;, - 31;3; 0.000000, 1.228822,-0.000000;;, - 32;3; 0.000000, 1.228822,-0.000000;;, - 33;3; 0.000000, 1.228822,-0.000000;;, - 34;3; 0.000000, 1.228822,-0.000000;;, - 35;3; 0.000000, 1.228822,-0.000000;;, - 36;3; 0.000000, 1.228822,-0.000000;;, - 37;3; 0.000000, 1.228822,-0.000000;;, - 38;3; 0.000000, 1.228822,-0.000000;;, - 39;3; 0.000000, 1.228822,-0.000000;;, - 40;3; 0.000000, 1.228822,-0.000000;;, - 41;3; 0.000000, 1.228822,-0.000000;;, - 42;3; 0.000000, 1.228822,-0.000000;;, - 43;3; 0.000000, 1.228822,-0.000000;;, - 44;3; 0.000000, 1.228822,-0.000000;;, - 45;3; 0.000000, 1.228822,-0.000000;;, - 46;3; 0.000000, 1.228822,-0.000000;;, - 47;3; 0.000000, 1.228822,-0.000000;;, - 48;3; 0.000000, 1.228822,-0.000000;;, - 49;3; 0.000000, 1.228822,-0.000000;;, - 50;3; 0.000000, 1.228822,-0.000000;;, - 51;3; 0.000000, 1.228822,-0.000000;;, - 52;3; 0.000000, 1.228822,-0.000000;;, - 53;3; 0.000000, 1.228822,-0.000000;;, - 54;3; 0.000000, 1.228822,-0.000000;;, - 55;3; 0.000000, 1.228822,-0.000000;;, - 56;3; 0.000000, 1.228822,-0.000000;;, - 57;3; 0.000000, 1.228822,-0.000000;;, - 58;3; 0.000000, 1.228822,-0.000000;;, - 59;3; 0.000000, 1.228822,-0.000000;;, - 60;3; 0.000000, 1.228822,-0.000000;;, - 61;3;-0.000000, 1.228822, 0.000000;;, - 62;3;-0.000000, 1.228822, 0.000000;;, - 63;3; 0.000000, 1.228822,-0.000000;;, - 64;3;-0.000000, 1.228822, 0.000000;;, - 65;3;-0.000000, 1.228822,-0.000000;;, - 66;3;-0.000000, 1.228822, 0.000000;;, - 67;3;-0.000000, 1.228822, 0.000000;;, - 68;3;-0.000000, 1.228822, 0.000000;;, - 69;3; 0.000000, 1.228822,-0.000000;;, - 70;3; 0.000000, 1.228822,-0.000000;;, - 71;3; 0.000000, 1.228822,-0.000000;;, - 72;3; 0.000000, 1.228822,-0.000000;;, - 73;3; 0.000000, 1.228822,-0.000000;;, - 74;3;-0.000000, 1.228822, 0.000000;;, - 75;3;-0.000000, 1.228822,-0.000000;;, - 76;3;-0.000000, 1.228822,-0.000000;;, - 77;3; 0.000000, 1.228822,-0.000000;;, - 78;3;-0.000000, 1.228822,-0.000000;;, - 79;3; 0.000000, 1.228822,-0.000000;;, - 80;3; 0.000000, 1.228822, 0.000000;;, - 81;3;-0.000000, 1.228822, 0.000000;;, - 82;3;-0.000000, 1.228822,-0.000000;;, - 83;3; 0.000000, 1.228822,-0.000000;;, - 84;3;-0.000000, 1.228822,-0.000000;;, - 85;3;-0.000000, 1.228822,-0.000000;;, - 86;3; 0.000000, 1.228822, 0.000000;;, - 87;3; 0.000000, 1.228821, 0.000000;;, - 88;3;-0.000000, 1.228822,-0.000000;;, - 89;3;-0.000000, 1.228822, 0.000000;;, - 90;3; 0.000000, 1.228822, 0.000000;;, - 91;3; 0.000000, 1.228822, 0.000000;;, - 92;3; 0.000000, 1.228822, 0.000000;;, - 93;3;-0.000000, 1.228822,-0.000000;;, - 94;3;-0.000000, 1.228822, 0.000000;;, - 95;3;-0.000000, 1.228822, 0.000000;;, - 96;3; 0.000000, 1.228822,-0.000000;;, - 97;3; 0.000000, 1.228822,-0.000000;;, - 98;3; 0.000000, 1.228822,-0.000000;;, - 99;3;-0.000000, 1.228821, 0.000000;;, - 100;3;-0.000000, 1.228822,-0.000000;;, - 101;3; 0.000000, 1.228821,-0.000000;;, - 102;3;-0.000000, 1.228822, 0.000000;;, - 103;3; 0.000000, 1.228822, 0.000000;;, - 104;3;-0.000000, 1.228822,-0.000000;;, - 105;3;-0.000000, 1.228822, 0.000000;;, - 106;3; 0.000000, 1.228822,-0.000000;;, - 107;3; 0.000000, 1.228822, 0.000000;;, - 108;3;-0.000000, 1.228822,-0.000000;;, - 109;3;-0.000000, 1.228822, 0.000000;;, - 110;3; 0.000000, 1.228822,-0.000000;;, - 111;3;-0.000000, 1.228822,-0.000000;;, - 112;3; 0.000000, 1.228822, 0.000000;;, - 113;3;-0.000000, 1.228822,-0.000000;;, - 114;3; 0.000000, 1.228822,-0.000000;;, - 115;3; 0.000000, 1.228821, 0.000000;;, - 116;3; 0.000000, 1.228822,-0.000000;;, - 117;3; 0.000000, 1.228822,-0.000000;;, - 118;3;-0.000000, 1.228822, 0.000000;;, - 119;3;-0.000000, 1.228822, 0.000000;;, - 120;3;-0.000000, 1.228822, 0.000000;;, - 121;3; 0.000000, 1.228821,-0.000000;;, - 122;3;-0.000000, 1.228822, 0.000000;;, - 123;3; 0.000000, 1.228822, 0.000000;;, - 124;3;-0.000000, 1.228822,-0.000000;;, - 125;3; 0.000000, 1.228822, 0.000000;;, - 126;3;-0.000000, 1.228822,-0.000000;;, - 127;3;-0.000000, 1.228822,-0.000000;;, - 128;3;-0.000000, 1.228822, 0.000000;;, - 129;3;-0.000000, 1.228822,-0.000000;;, - 130;3;-0.000000, 1.228822, 0.000000;;, - 131;3;-0.000000, 1.228821,-0.000000;;, - 132;3; 0.000000, 1.228822, 0.000000;;, - 133;3; 0.000000, 1.228822, 0.000000;;, - 134;3;-0.000000, 1.228822,-0.000000;;, - 135;3;-0.000000, 1.228822,-0.000000;;, - 136;3;-0.000000, 1.228823,-0.000000;;, - 137;3; 0.000000, 1.228821,-0.000000;;, - 138;3; 0.000000, 1.228822,-0.000000;;, - 139;3;-0.000000, 1.228821, 0.000000;;, - 140;3; 0.000000, 1.228821,-0.000000;;, - 141;3; 0.000000, 1.228822, 0.000000;;, - 142;3;-0.000000, 1.228822, 0.000000;;, - 143;3; 0.000000, 1.228822, 0.000000;;, - 144;3;-0.000000, 1.228822, 0.000000;;, - 145;3;-0.000000, 1.228822,-0.000000;;, - 146;3;-0.000000, 1.228822,-0.000000;;, - 147;3; 0.000000, 1.228821, 0.000000;;, - 148;3; 0.000000, 1.228822,-0.000000;;, - 149;3;-0.000000, 1.228822, 0.000000;;, - 150;3; 0.000000, 1.228821,-0.000000;;, - 151;3; 0.000000, 1.228822, 0.000000;;, - 152;3; 0.000000, 1.228822, 0.000000;;, - 153;3;-0.000000, 1.228822,-0.000000;;, - 154;3;-0.000000, 1.228822,-0.000000;;, - 155;3;-0.000000, 1.228821,-0.000000;;, - 156;3; 0.000000, 1.228822, 0.000000;;, - 157;3;-0.000000, 1.228822,-0.000000;;, - 158;3; 0.000000, 1.228821,-0.000000;;, - 159;3;-0.000000, 1.228821, 0.000000;;, - 160;3; 0.000000, 1.228822, 0.000000;;, - 161;3; 0.000000, 1.228821,-0.000000;;, - 162;3; 0.000000, 1.228822,-0.000000;;, - 163;3; 0.000000, 1.228822,-0.000000;;, - 164;3;-0.000000, 1.228822,-0.000000;;, - 165;3;-0.000000, 1.228822,-0.000000;;, - 166;3;-0.000000, 1.228821, 0.000000;;, - 167;3; 0.000000, 1.228821, 0.000000;;, - 168;3; 0.000000, 1.228822,-0.000000;;, - 169;3; 0.000000, 1.228822,-0.000000;;, - 170;3; 0.000000, 1.228822,-0.000000;;, - 171;3; 0.000000, 1.228822,-0.000000;;, - 172;3; 0.000000, 1.228822,-0.000000;;, - 173;3;-0.000000, 1.228822,-0.000000;;, - 174;3; 0.000000, 1.228822, 0.000000;;, - 175;3;-0.000000, 1.228822, 0.000000;;, - 176;3; 0.000000, 1.228822,-0.000000;;, - 177;3;-0.000000, 1.228822,-0.000000;;, - 178;3; 0.000000, 1.228822,-0.000000;;, - 179;3; 0.000000, 1.228822,-0.000000;;, - 180;3;-0.000000, 1.228822,-0.000000;;, - 181;3;-0.000000, 1.228822,-0.000000;;, - 182;3;-0.000000, 1.228822, 0.000000;;, - 183;3;-0.000000, 1.228822, 0.000000;;, - 184;3;-0.000000, 1.228822,-0.000000;;, - 185;3;-0.000000, 1.228822, 0.000000;;, - 186;3; 0.000000, 1.228822,-0.000000;;, - 187;3;-0.000000, 1.228822, 0.000000;;, - 188;3; 0.000000, 1.228821, 0.000000;;, - 189;3; 0.000000, 1.228822, 0.000000;;, - 190;3; 0.000000, 1.228822,-0.000000;;, - 191;3;-0.000000, 1.228822, 0.000000;;, - 192;3; 0.000000, 1.228822,-0.000000;;, - 193;3;-0.000000, 1.228822, 0.000000;;, - 194;3; 0.000000, 1.228822, 0.000000;;, - 195;3;-0.000000, 1.228822, 0.000000;;, - 196;3;-0.000000, 1.228822,-0.000000;;, - 197;3;-0.000000, 1.228822,-0.000000;;, - 198;3;-0.000000, 1.228822, 0.000000;;, - 199;3; 0.000000, 1.228822,-0.000000;;, - 200;3; 0.000000, 1.228822,-0.000000;;, - 201;3; 0.000000, 1.228822,-0.000000;;, - 202;3; 0.000000, 1.228822,-0.000000;;, - 203;3; 0.000000, 1.228822,-0.000000;;, - 204;3; 0.000000, 1.228822,-0.000000;;, - 205;3; 0.000000, 1.228822,-0.000000;;, - 206;3; 0.000000, 1.228822,-0.000000;;, - 207;3; 0.000000, 1.228822,-0.000000;;, - 208;3; 0.000000, 1.228822,-0.000000;;, - 209;3; 0.000000, 1.228822,-0.000000;;, - 210;3; 0.000000, 1.228822,-0.000000;;, - 211;3; 0.000000, 1.228822,-0.000000;;, - 212;3; 0.000000, 1.228822,-0.000000;;, - 213;3; 0.000000, 1.228822,-0.000000;;, - 214;3; 0.000000, 1.228822,-0.000000;;, - 215;3; 0.000000, 1.228822,-0.000000;;, - 216;3; 0.000000, 1.228822,-0.000000;;, - 217;3; 0.000000, 1.228822,-0.000000;;, - 218;3; 0.000000, 1.228822,-0.000000;;, - 219;3; 0.000000, 1.228822,-0.000000;;, - 220;3; 0.000000, 1.228822,-0.000000;;, - 221;3; 0.000000, 1.228822,-0.000000;;, - 222;3; 0.000000, 1.228822,-0.000000;;, - 223;3; 0.000000, 1.228822,-0.000000;;, - 224;3; 0.000000, 1.228822,-0.000000;;, - 225;3; 0.000000, 1.228822,-0.000000;;, - 226;3; 0.000000, 1.228822,-0.000000;;, - 227;3; 0.000000, 1.228822,-0.000000;;, - 228;3; 0.000000, 1.228822,-0.000000;;, - 229;3; 0.000000, 1.228822,-0.000000;;, - 230;3; 0.000000, 1.228822,-0.000000;;, - 231;3; 0.000000, 1.228822,-0.000000;;, - 232;3; 0.000000, 1.228822,-0.000000;;, - 233;3; 0.000000, 1.228822,-0.000000;;, - 234;3; 0.000000, 1.228822,-0.000000;;, - 235;3; 0.000000, 1.228822,-0.000000;;, - 236;3; 0.000000, 1.228822,-0.000000;;, - 237;3; 0.000000, 1.228822,-0.000000;;, - 238;3; 0.000000, 1.228822,-0.000000;;, - 239;3; 0.000000, 1.228822,-0.000000;;, - 240;3; 0.000000, 1.228822,-0.000000;;, - 241;3; 0.000000, 1.228822,-0.000000;;, - 242;3; 0.000000, 1.228822,-0.000000;;, - 243;3; 0.000000, 1.228822,-0.000000;;, - 244;3; 0.000000, 1.228822,-0.000000;;, - 245;3; 0.000000, 1.228822,-0.000000;;, - 246;3; 0.000000, 1.228822,-0.000000;;, - 247;3; 0.000000, 1.228822,-0.000000;;, - 248;3; 0.000000, 1.228822,-0.000000;;, - 249;3; 0.000000, 1.228822,-0.000000;;; - } - } - Animation { - {Armature_Bone_015} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 1;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 2;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 3;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 4;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 5;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 6;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 7;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 8;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 9;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 10;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 11;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 12;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 13;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 14;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 15;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 16;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 17;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 18;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 19;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 20;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 21;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 22;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 23;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 24;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 25;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 26;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 27;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 28;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 29;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 30;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 31;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 32;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 33;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 34;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 35;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 36;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 37;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 38;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 39;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 40;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 41;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 42;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 43;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 44;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 45;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 46;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 47;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 48;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 49;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 50;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 51;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 52;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 53;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 54;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 55;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 56;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 57;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 58;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 59;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 60;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 61;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 62;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 63;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 64;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 65;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 66;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 67;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 68;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 69;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 70;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 71;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 72;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 73;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 74;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 75;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 76;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 77;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 78;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 79;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 80;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 81;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 82;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 83;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 84;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 85;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 86;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 87;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 88;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 89;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 90;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 91;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 92;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 93;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 94;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 95;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 96;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 97;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 98;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 99;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 100;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 101;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 102;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 103;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 104;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 105;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 106;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 107;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 108;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 109;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 110;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 111;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 112;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 113;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 114;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 115;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 116;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 117;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 118;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 119;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 120;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 121;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 122;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 123;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 124;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 125;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 126;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 127;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 128;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 129;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 130;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 131;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 132;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 133;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 134;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 135;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 136;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 137;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 138;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 139;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 140;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 141;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 142;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 143;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 144;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 145;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 146;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 147;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 148;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 149;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 150;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 151;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 152;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 153;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 154;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 155;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 156;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 157;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 158;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 159;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 160;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 161;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 162;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 163;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 164;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 165;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 166;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 167;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 168;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 169;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 170;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 171;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 172;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 173;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 174;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 175;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 176;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 177;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 178;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 179;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 180;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 181;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 182;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 183;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 184;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 185;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 186;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 187;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 188;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 189;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 190;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 191;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 192;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 193;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 194;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 195;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 196;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 197;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 198;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 199;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 200;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 201;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 202;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 203;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 204;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 205;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 206;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 207;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 208;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 209;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 210;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 211;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 212;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 213;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 214;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 215;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 216;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 217;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 218;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 219;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 220;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 221;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 222;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 223;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 224;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 225;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 226;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 227;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 228;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 229;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 230;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 231;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 232;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 233;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 234;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 235;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 236;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 237;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 238;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 239;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 240;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 241;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 242;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 243;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 244;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 245;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 246;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 247;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 248;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 249;4;-0.734154, 0.000000, 0.000000,-0.678983;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3; 0.000000, 0.826434, 0.000000;;, - 1;3; 0.000000, 0.826434, 0.000000;;, - 2;3; 0.000000, 0.826434, 0.000000;;, - 3;3; 0.000000, 0.826434, 0.000000;;, - 4;3; 0.000000, 0.826434, 0.000000;;, - 5;3; 0.000000, 0.826434, 0.000000;;, - 6;3; 0.000000, 0.826434, 0.000000;;, - 7;3; 0.000000, 0.826434, 0.000000;;, - 8;3; 0.000000, 0.826434, 0.000000;;, - 9;3; 0.000000, 0.826434, 0.000000;;, - 10;3; 0.000000, 0.826434, 0.000000;;, - 11;3; 0.000000, 0.826434, 0.000000;;, - 12;3; 0.000000, 0.826434, 0.000000;;, - 13;3; 0.000000, 0.826434, 0.000000;;, - 14;3; 0.000000, 0.826434, 0.000000;;, - 15;3; 0.000000, 0.826434, 0.000000;;, - 16;3; 0.000000, 0.826434, 0.000000;;, - 17;3; 0.000000, 0.826434, 0.000000;;, - 18;3; 0.000000, 0.826434, 0.000000;;, - 19;3; 0.000000, 0.826434, 0.000000;;, - 20;3; 0.000000, 0.826434, 0.000000;;, - 21;3; 0.000000, 0.826434, 0.000000;;, - 22;3; 0.000000, 0.826434, 0.000000;;, - 23;3; 0.000000, 0.826434, 0.000000;;, - 24;3; 0.000000, 0.826434, 0.000000;;, - 25;3; 0.000000, 0.826434, 0.000000;;, - 26;3; 0.000000, 0.826434, 0.000000;;, - 27;3; 0.000000, 0.826434, 0.000000;;, - 28;3; 0.000000, 0.826434, 0.000000;;, - 29;3; 0.000000, 0.826434, 0.000000;;, - 30;3; 0.000000, 0.826434, 0.000000;;, - 31;3; 0.000000, 0.826434, 0.000000;;, - 32;3; 0.000000, 0.826434, 0.000000;;, - 33;3; 0.000000, 0.826434, 0.000000;;, - 34;3; 0.000000, 0.826434, 0.000000;;, - 35;3; 0.000000, 0.826434, 0.000000;;, - 36;3; 0.000000, 0.826434, 0.000000;;, - 37;3; 0.000000, 0.826434, 0.000000;;, - 38;3; 0.000000, 0.826434, 0.000000;;, - 39;3; 0.000000, 0.826434, 0.000000;;, - 40;3; 0.000000, 0.826434, 0.000000;;, - 41;3; 0.000000, 0.826434, 0.000000;;, - 42;3; 0.000000, 0.826434, 0.000000;;, - 43;3; 0.000000, 0.826434, 0.000000;;, - 44;3; 0.000000, 0.826434, 0.000000;;, - 45;3; 0.000000, 0.826434, 0.000000;;, - 46;3; 0.000000, 0.826434, 0.000000;;, - 47;3; 0.000000, 0.826434, 0.000000;;, - 48;3; 0.000000, 0.826434, 0.000000;;, - 49;3; 0.000000, 0.826434, 0.000000;;, - 50;3; 0.000000, 0.826434, 0.000000;;, - 51;3; 0.000000, 0.826434, 0.000000;;, - 52;3; 0.000000, 0.826434, 0.000000;;, - 53;3; 0.000000, 0.826434, 0.000000;;, - 54;3; 0.000000, 0.826434, 0.000000;;, - 55;3; 0.000000, 0.826434, 0.000000;;, - 56;3; 0.000000, 0.826434, 0.000000;;, - 57;3; 0.000000, 0.826434, 0.000000;;, - 58;3; 0.000000, 0.826434, 0.000000;;, - 59;3; 0.000000, 0.826434, 0.000000;;, - 60;3; 0.000000, 0.826434, 0.000000;;, - 61;3; 0.000000, 0.826434, 0.000000;;, - 62;3; 0.000000, 0.826434, 0.000000;;, - 63;3; 0.000000, 0.826434, 0.000000;;, - 64;3; 0.000000, 0.826434, 0.000000;;, - 65;3; 0.000000, 0.826434, 0.000000;;, - 66;3; 0.000000, 0.826434, 0.000000;;, - 67;3; 0.000000, 0.826434, 0.000000;;, - 68;3; 0.000000, 0.826434, 0.000000;;, - 69;3; 0.000000, 0.826434, 0.000000;;, - 70;3; 0.000000, 0.826434, 0.000000;;, - 71;3; 0.000000, 0.826434, 0.000000;;, - 72;3; 0.000000, 0.826434, 0.000000;;, - 73;3; 0.000000, 0.826434, 0.000000;;, - 74;3; 0.000000, 0.826434, 0.000000;;, - 75;3; 0.000000, 0.826434, 0.000000;;, - 76;3; 0.000000, 0.826434, 0.000000;;, - 77;3; 0.000000, 0.826434, 0.000000;;, - 78;3; 0.000000, 0.826434, 0.000000;;, - 79;3; 0.000000, 0.826434, 0.000000;;, - 80;3; 0.000000, 0.826434, 0.000000;;, - 81;3; 0.000000, 0.826434, 0.000000;;, - 82;3; 0.000000, 0.826434, 0.000000;;, - 83;3; 0.000000, 0.826434, 0.000000;;, - 84;3; 0.000000, 0.826434, 0.000000;;, - 85;3; 0.000000, 0.826434, 0.000000;;, - 86;3; 0.000000, 0.826434, 0.000000;;, - 87;3; 0.000000, 0.826434, 0.000000;;, - 88;3; 0.000000, 0.826434, 0.000000;;, - 89;3; 0.000000, 0.826434, 0.000000;;, - 90;3; 0.000000, 0.826434, 0.000000;;, - 91;3; 0.000000, 0.826434, 0.000000;;, - 92;3; 0.000000, 0.826434, 0.000000;;, - 93;3; 0.000000, 0.826434, 0.000000;;, - 94;3; 0.000000, 0.826434, 0.000000;;, - 95;3; 0.000000, 0.826434, 0.000000;;, - 96;3; 0.000000, 0.826434, 0.000000;;, - 97;3; 0.000000, 0.826434, 0.000000;;, - 98;3; 0.000000, 0.826434, 0.000000;;, - 99;3; 0.000000, 0.826434, 0.000000;;, - 100;3; 0.000000, 0.826434, 0.000000;;, - 101;3; 0.000000, 0.826434, 0.000000;;, - 102;3; 0.000000, 0.826434, 0.000000;;, - 103;3; 0.000000, 0.826434, 0.000000;;, - 104;3; 0.000000, 0.826434, 0.000000;;, - 105;3; 0.000000, 0.826434, 0.000000;;, - 106;3; 0.000000, 0.826434, 0.000000;;, - 107;3; 0.000000, 0.826434, 0.000000;;, - 108;3; 0.000000, 0.826434, 0.000000;;, - 109;3; 0.000000, 0.826434, 0.000000;;, - 110;3; 0.000000, 0.826434, 0.000000;;, - 111;3; 0.000000, 0.826434, 0.000000;;, - 112;3; 0.000000, 0.826434, 0.000000;;, - 113;3; 0.000000, 0.826434, 0.000000;;, - 114;3; 0.000000, 0.826434, 0.000000;;, - 115;3; 0.000000, 0.826434, 0.000000;;, - 116;3; 0.000000, 0.826434, 0.000000;;, - 117;3; 0.000000, 0.826434, 0.000000;;, - 118;3; 0.000000, 0.826434, 0.000000;;, - 119;3; 0.000000, 0.826434, 0.000000;;, - 120;3; 0.000000, 0.826434, 0.000000;;, - 121;3; 0.000000, 0.826434, 0.000000;;, - 122;3; 0.000000, 0.826434, 0.000000;;, - 123;3; 0.000000, 0.826434, 0.000000;;, - 124;3; 0.000000, 0.826434, 0.000000;;, - 125;3; 0.000000, 0.826434, 0.000000;;, - 126;3; 0.000000, 0.826434, 0.000000;;, - 127;3; 0.000000, 0.826434, 0.000000;;, - 128;3; 0.000000, 0.826434, 0.000000;;, - 129;3; 0.000000, 0.826434, 0.000000;;, - 130;3; 0.000000, 0.826434, 0.000000;;, - 131;3; 0.000000, 0.826434, 0.000000;;, - 132;3; 0.000000, 0.826434, 0.000000;;, - 133;3; 0.000000, 0.826434, 0.000000;;, - 134;3; 0.000000, 0.826434, 0.000000;;, - 135;3; 0.000000, 0.826434, 0.000000;;, - 136;3; 0.000000, 0.826434, 0.000000;;, - 137;3; 0.000000, 0.826434, 0.000000;;, - 138;3; 0.000000, 0.826434, 0.000000;;, - 139;3; 0.000000, 0.826434, 0.000000;;, - 140;3; 0.000000, 0.826434, 0.000000;;, - 141;3; 0.000000, 0.826434, 0.000000;;, - 142;3; 0.000000, 0.826434, 0.000000;;, - 143;3; 0.000000, 0.826434, 0.000000;;, - 144;3; 0.000000, 0.826434, 0.000000;;, - 145;3; 0.000000, 0.826434, 0.000000;;, - 146;3; 0.000000, 0.826434, 0.000000;;, - 147;3; 0.000000, 0.826434, 0.000000;;, - 148;3; 0.000000, 0.826434, 0.000000;;, - 149;3; 0.000000, 0.826434, 0.000000;;, - 150;3; 0.000000, 0.826434, 0.000000;;, - 151;3; 0.000000, 0.826434, 0.000000;;, - 152;3; 0.000000, 0.826434, 0.000000;;, - 153;3; 0.000000, 0.826434, 0.000000;;, - 154;3; 0.000000, 0.826434, 0.000000;;, - 155;3; 0.000000, 0.826434, 0.000000;;, - 156;3; 0.000000, 0.826434, 0.000000;;, - 157;3; 0.000000, 0.826434, 0.000000;;, - 158;3; 0.000000, 0.826434, 0.000000;;, - 159;3; 0.000000, 0.826434, 0.000000;;, - 160;3; 0.000000, 0.826434, 0.000000;;, - 161;3; 0.000000, 0.826434, 0.000000;;, - 162;3; 0.000000, 0.826434, 0.000000;;, - 163;3; 0.000000, 0.826434, 0.000000;;, - 164;3; 0.000000, 0.826434, 0.000000;;, - 165;3; 0.000000, 0.826434, 0.000000;;, - 166;3; 0.000000, 0.826434, 0.000000;;, - 167;3; 0.000000, 0.826434, 0.000000;;, - 168;3; 0.000000, 0.826434, 0.000000;;, - 169;3; 0.000000, 0.826434, 0.000000;;, - 170;3; 0.000000, 0.826434, 0.000000;;, - 171;3; 0.000000, 0.826434, 0.000000;;, - 172;3; 0.000000, 0.826434, 0.000000;;, - 173;3; 0.000000, 0.826434, 0.000000;;, - 174;3; 0.000000, 0.826434, 0.000000;;, - 175;3; 0.000000, 0.826434, 0.000000;;, - 176;3; 0.000000, 0.826434, 0.000000;;, - 177;3; 0.000000, 0.826434, 0.000000;;, - 178;3; 0.000000, 0.826434, 0.000000;;, - 179;3; 0.000000, 0.826434, 0.000000;;, - 180;3; 0.000000, 0.826434, 0.000000;;, - 181;3; 0.000000, 0.826434, 0.000000;;, - 182;3; 0.000000, 0.826434, 0.000000;;, - 183;3; 0.000000, 0.826434, 0.000000;;, - 184;3; 0.000000, 0.826434, 0.000000;;, - 185;3; 0.000000, 0.826434, 0.000000;;, - 186;3;-0.000000, 0.826434,-0.000000;;, - 187;3;-0.000000, 0.826434,-0.000000;;, - 188;3;-0.000000, 0.826434, 0.000000;;, - 189;3;-0.000000, 0.826434, 0.000000;;, - 190;3;-0.000000, 0.826434,-0.000000;;, - 191;3; 0.000000, 0.826434, 0.000000;;, - 192;3; 0.000000, 0.826434, 0.000000;;, - 193;3; 0.000000, 0.826434, 0.000000;;, - 194;3; 0.000000, 0.826434,-0.000000;;, - 195;3; 0.000000, 0.826434,-0.000000;;, - 196;3; 0.000000, 0.826434, 0.000000;;, - 197;3; 0.000000, 0.826434,-0.000000;;, - 198;3; 0.000000, 0.826434,-0.000000;;, - 199;3; 0.000000, 0.826434, 0.000000;;, - 200;3; 0.000000, 0.826434, 0.000000;;, - 201;3; 0.000000, 0.826434, 0.000000;;, - 202;3; 0.000000, 0.826434, 0.000000;;, - 203;3; 0.000000, 0.826434, 0.000000;;, - 204;3; 0.000000, 0.826434, 0.000000;;, - 205;3; 0.000000, 0.826434, 0.000000;;, - 206;3; 0.000000, 0.826434, 0.000000;;, - 207;3; 0.000000, 0.826434, 0.000000;;, - 208;3; 0.000000, 0.826434, 0.000000;;, - 209;3; 0.000000, 0.826434, 0.000000;;, - 210;3; 0.000000, 0.826434, 0.000000;;, - 211;3; 0.000000, 0.826434, 0.000000;;, - 212;3; 0.000000, 0.826434, 0.000000;;, - 213;3; 0.000000, 0.826434, 0.000000;;, - 214;3; 0.000000, 0.826434, 0.000000;;, - 215;3; 0.000000, 0.826434, 0.000000;;, - 216;3; 0.000000, 0.826434, 0.000000;;, - 217;3; 0.000000, 0.826434, 0.000000;;, - 218;3; 0.000000, 0.826434, 0.000000;;, - 219;3; 0.000000, 0.826434, 0.000000;;, - 220;3; 0.000000, 0.826434, 0.000000;;, - 221;3; 0.000000, 0.826434, 0.000000;;, - 222;3; 0.000000, 0.826434, 0.000000;;, - 223;3; 0.000000, 0.826434, 0.000000;;, - 224;3; 0.000000, 0.826434, 0.000000;;, - 225;3; 0.000000, 0.826434, 0.000000;;, - 226;3; 0.000000, 0.826434, 0.000000;;, - 227;3; 0.000000, 0.826434, 0.000000;;, - 228;3; 0.000000, 0.826434, 0.000000;;, - 229;3; 0.000000, 0.826434, 0.000000;;, - 230;3; 0.000000, 0.826434, 0.000000;;, - 231;3; 0.000000, 0.826434, 0.000000;;, - 232;3; 0.000000, 0.826434, 0.000000;;, - 233;3; 0.000000, 0.826434, 0.000000;;, - 234;3; 0.000000, 0.826434, 0.000000;;, - 235;3; 0.000000, 0.826434, 0.000000;;, - 236;3; 0.000000, 0.826434, 0.000000;;, - 237;3; 0.000000, 0.826434, 0.000000;;, - 238;3; 0.000000, 0.826434, 0.000000;;, - 239;3; 0.000000, 0.826434, 0.000000;;, - 240;3; 0.000000, 0.826434, 0.000000;;, - 241;3; 0.000000, 0.826434, 0.000000;;, - 242;3; 0.000000, 0.826434, 0.000000;;, - 243;3; 0.000000, 0.826434, 0.000000;;, - 244;3; 0.000000, 0.826434, 0.000000;;, - 245;3; 0.000000, 0.826434, 0.000000;;, - 246;3; 0.000000, 0.826434, 0.000000;;, - 247;3; 0.000000, 0.826434, 0.000000;;, - 248;3; 0.000000, 0.826434, 0.000000;;, - 249;3; 0.000000, 0.826434, 0.000000;;; - } - } - Animation { - {Armature_Bone_019} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.945309, 0.122931, 0.038961, 0.299601;;, - 1;4;-0.945411, 0.122945, 0.038914, 0.299240;;, - 2;4;-0.945721, 0.122985, 0.038772, 0.298147;;, - 3;4;-0.946238, 0.123052, 0.038535, 0.296319;;, - 4;4;-0.946959, 0.123146, 0.038203, 0.293774;;, - 5;4;-0.947872, 0.123265, 0.037784, 0.290547;;, - 6;4;-0.948960, 0.123406, 0.037284, 0.286703;;, - 7;4;-0.950197, 0.123567, 0.036716, 0.282337;;, - 8;4;-0.951546, 0.123743, 0.036096, 0.277570;;, - 9;4;-0.952967, 0.123927, 0.035444, 0.272552;;, - 10;4;-0.954412, 0.124115, 0.034780, 0.267447;;, - 11;4;-0.955833, 0.124300, 0.034127, 0.262429;;, - 12;4;-0.957182, 0.124476, 0.033507, 0.257662;;, - 13;4;-0.958419, 0.124636, 0.032940, 0.253295;;, - 14;4;-0.959507, 0.124778, 0.032440, 0.249452;;, - 15;4;-0.960420, 0.124897, 0.032020, 0.246225;;, - 16;4;-0.961141, 0.124990, 0.031689, 0.243679;;, - 17;4;-0.961658, 0.125058, 0.031451, 0.241852;;, - 18;4;-0.961968, 0.125098, 0.031309, 0.240759;;, - 19;4;-0.962070, 0.125111, 0.031262, 0.240397;;, - 20;4;-0.962066, 0.125107, 0.031275, 0.240492;;, - 21;4;-0.962050, 0.125096, 0.031315, 0.240784;;, - 22;4;-0.962022, 0.125077, 0.031383, 0.241279;;, - 23;4;-0.961978, 0.125049, 0.031480, 0.241986;;, - 24;4;-0.961916, 0.125014, 0.031606, 0.242904;;, - 25;4;-0.961834, 0.124970, 0.031760, 0.244032;;, - 26;4;-0.961730, 0.124919, 0.031942, 0.245361;;, - 27;4;-0.961599, 0.124860, 0.032148, 0.246877;;, - 28;4;-0.961442, 0.124796, 0.032377, 0.248556;;, - 29;4;-0.961256, 0.124726, 0.032623, 0.250372;;, - 30;4;-0.961040, 0.124652, 0.032883, 0.252291;;, - 31;4;-0.960796, 0.124576, 0.033152, 0.254279;;, - 32;4;-0.960523, 0.124499, 0.033424, 0.256298;;, - 33;4;-0.960223, 0.124422, 0.033695, 0.258315;;, - 34;4;-0.959899, 0.124347, 0.033961, 0.260300;;, - 35;4;-0.959552, 0.124274, 0.034218, 0.262226;;, - 36;4;-0.959185, 0.124205, 0.034463, 0.264074;;, - 37;4;-0.958800, 0.124139, 0.034695, 0.265828;;, - 38;4;-0.958400, 0.124078, 0.034911, 0.267477;;, - 39;4;-0.957987, 0.124021, 0.035112, 0.269015;;, - 40;4;-0.957562, 0.123964, 0.035312, 0.270556;;, - 41;4;-0.957125, 0.123903, 0.035529, 0.272216;;, - 42;4;-0.956672, 0.123838, 0.035761, 0.273990;;, - 43;4;-0.956202, 0.123768, 0.036006, 0.275867;;, - 44;4;-0.955712, 0.123695, 0.036263, 0.277833;;, - 45;4;-0.955200, 0.123620, 0.036528, 0.279869;;, - 46;4;-0.954664, 0.123543, 0.036799, 0.281949;;, - 47;4;-0.954100, 0.123466, 0.037072, 0.284043;;, - 48;4;-0.953508, 0.123390, 0.037340, 0.286118;;, - 49;4;-0.952887, 0.123317, 0.037600, 0.288137;;, - 50;4;-0.952236, 0.123247, 0.037847, 0.290065;;, - 51;4;-0.951556, 0.123182, 0.038075, 0.291868;;, - 52;4;-0.950849, 0.123124, 0.038282, 0.293518;;, - 53;4;-0.950115, 0.123072, 0.038463, 0.294990;;, - 54;4;-0.949358, 0.123029, 0.038618, 0.296268;;, - 55;4;-0.948580, 0.122993, 0.038743, 0.297344;;, - 56;4;-0.947784, 0.122966, 0.038840, 0.298212;;, - 57;4;-0.946972, 0.122946, 0.038908, 0.298874;;, - 58;4;-0.946146, 0.122935, 0.038948, 0.299335;;, - 59;4;-0.945309, 0.122931, 0.038961, 0.299601;;, - 60;4;-0.944454, 0.123130, 0.038865, 0.299773;;, - 61;4;-0.943573, 0.123730, 0.038573, 0.299941;;, - 62;4;-0.942667, 0.124736, 0.038084, 0.300107;;, - 63;4;-0.941735, 0.126152, 0.037398, 0.300270;;, - 64;4;-0.940778, 0.127982, 0.036514, 0.300430;;, - 65;4;-0.939796, 0.130225, 0.035433, 0.300587;;, - 66;4;-0.938789, 0.132880, 0.034158, 0.300740;;, - 67;4;-0.937759, 0.135942, 0.032690, 0.300890;;, - 68;4;-0.936707, 0.139406, 0.031037, 0.301036;;, - 69;4;-0.935633, 0.143260, 0.029202, 0.301177;;, - 70;4;-0.934539, 0.147493, 0.027196, 0.301315;;, - 71;4;-0.933428, 0.152086, 0.025027, 0.301448;;, - 72;4;-0.932300, 0.157021, 0.022707, 0.301576;;, - 73;4;-0.931158, 0.162272, 0.020250, 0.301699;;, - 74;4;-0.930005, 0.167812, 0.017671, 0.301818;;, - 75;4;-0.928843, 0.173611, 0.014987, 0.301931;;, - 76;4;-0.927675, 0.179634, 0.012217, 0.302039;;, - 77;4;-0.926505, 0.185844, 0.009379, 0.302143;;, - 78;4;-0.925335, 0.192200, 0.006496, 0.302240;;, - 79;4;-0.924168, 0.198663, 0.003588, 0.302333;;, - 80;4;-0.923008, 0.205189, 0.000678, 0.302421;;, - 81;4;-0.921858, 0.211735,-0.002213, 0.302503;;, - 82;4;-0.920722, 0.218259,-0.005062, 0.302581;;, - 83;4;-0.919601, 0.224719,-0.007850, 0.302653;;, - 84;4;-0.918498, 0.231075,-0.010556, 0.302722;;, - 85;4;-0.917417, 0.237289,-0.013161, 0.302785;;, - 86;4;-0.916360, 0.243327,-0.015649, 0.302845;;, - 87;4;-0.915328, 0.249156,-0.018003, 0.302900;;, - 88;4;-0.914322, 0.254747,-0.020211, 0.302952;;, - 89;4;-0.913346, 0.260075,-0.022260, 0.303000;;, - 90;4;-0.912399, 0.265117,-0.024141, 0.303045;;, - 91;4;-0.911483, 0.269856,-0.025845, 0.303087;;, - 92;4;-0.910599, 0.274275,-0.027365, 0.303126;;, - 93;4;-0.909745, 0.278363,-0.028697, 0.303163;;, - 94;4;-0.908924, 0.282111,-0.029836, 0.303198;;, - 95;4;-0.908135, 0.285510,-0.030781, 0.303230;;, - 96;4;-0.907378, 0.288558,-0.031531, 0.303260;;, - 97;4;-0.906652, 0.291251,-0.032086, 0.303289;;, - 98;4;-0.905957, 0.293589,-0.032445, 0.303316;;, - 99;4;-0.905294, 0.295574,-0.032612, 0.303342;;, - 100;4;-0.904634, 0.297353,-0.031031, 0.302463;;, - 101;4;-0.903960, 0.299054,-0.026082, 0.299766;;, - 102;4;-0.903291, 0.300635,-0.017876, 0.295363;;, - 103;4;-0.902653, 0.302051,-0.006912, 0.289596;;, - 104;4;-0.902075, 0.303262, 0.005858, 0.283057;;, - 105;4;-0.901587, 0.304242, 0.019140, 0.276514;;, - 106;4;-0.901210, 0.304987, 0.031590, 0.270737;;, - 107;4;-0.900950, 0.305518, 0.042121, 0.266318;;, - 108;4;-0.900802, 0.305867, 0.050062, 0.263601;;, - 109;4;-0.900756, 0.306070, 0.055135, 0.262697;;, - 110;4;-0.901904, 0.299828, 0.058819, 0.263254;;, - 111;4;-0.905362, 0.280758, 0.062582, 0.264946;;, - 112;4;-0.910987, 0.249658, 0.066320, 0.267734;;, - 113;4;-0.918345, 0.208929, 0.069889, 0.271447;;, - 114;4;-0.926686, 0.162758, 0.073118, 0.275762;;, - 115;4;-0.935032, 0.116567, 0.075844, 0.280240;;, - 116;4;-0.942409, 0.075781, 0.077956, 0.284427;;, - 117;4;-0.948062, 0.044592, 0.079413, 0.287957;;, - 118;4;-0.951558, 0.025407, 0.080240, 0.290604;;, - 119;4;-0.952750, 0.019031, 0.080499, 0.292276;;, - 120;4;-0.952463, 0.020937, 0.079719, 0.293368;;, - 121;4;-0.951473, 0.026859, 0.077297, 0.294279;;, - 122;4;-0.949759, 0.036917, 0.073183, 0.295002;;, - 123;4;-0.947367, 0.050857, 0.067482, 0.295550;;, - 124;4;-0.944427, 0.067923, 0.060501, 0.295957;;, - 125;4;-0.941152, 0.086910, 0.052736, 0.296277;;, - 126;4;-0.937786, 0.106416, 0.044757, 0.296574;;, - 127;4;-0.934548, 0.125185, 0.037080, 0.296904;;, - 128;4;-0.931597, 0.142316, 0.030073, 0.297308;;, - 129;4;-0.929022, 0.157302, 0.023944, 0.297809;;, - 130;4;-0.926575, 0.171986, 0.017826, 0.298404;;, - 131;4;-0.923991, 0.188253, 0.010853, 0.299076;;, - 132;4;-0.921303, 0.205729, 0.003226, 0.299806;;, - 133;4;-0.918568, 0.223750,-0.004694, 0.300563;;, - 134;4;-0.915865, 0.241387,-0.012407, 0.301301;;, - 135;4;-0.913286, 0.257606,-0.019355, 0.301970;;, - 136;4;-0.910906, 0.271516,-0.025055, 0.302527;;, - 137;4;-0.908773, 0.282560,-0.029208, 0.302946;;, - 138;4;-0.906905, 0.290549,-0.031710, 0.303216;;, - 139;4;-0.905294, 0.295574,-0.032612, 0.303342;;, - 140;4;-0.903822, 0.299054,-0.026082, 0.299771;;, - 141;4;-0.902489, 0.302051,-0.006912, 0.289602;;, - 142;4;-0.901482, 0.304242, 0.019140, 0.276518;;, - 143;4;-0.900918, 0.305518, 0.042121, 0.266320;;, - 144;4;-0.900756, 0.306070, 0.055135, 0.262697;;, - 145;4;-0.905362, 0.280758, 0.062582, 0.264946;;, - 146;4;-0.918345, 0.208929, 0.069889, 0.271447;;, - 147;4;-0.935032, 0.116567, 0.075844, 0.280240;;, - 148;4;-0.948062, 0.044592, 0.079413, 0.287957;;, - 149;4;-0.952750, 0.019031, 0.080499, 0.292276;;, - 150;4;-0.951473, 0.026859, 0.077297, 0.294279;;, - 151;4;-0.947367, 0.050857, 0.067482, 0.295550;;, - 152;4;-0.941152, 0.086910, 0.052736, 0.296277;;, - 153;4;-0.934548, 0.125185, 0.037080, 0.296904;;, - 154;4;-0.929022, 0.157302, 0.023944, 0.297809;;, - 155;4;-0.923510, 0.189420, 0.010807, 0.299094;;, - 156;4;-0.916942, 0.227695,-0.004848, 0.300626;;, - 157;4;-0.910755, 0.263748,-0.019594, 0.302069;;, - 158;4;-0.906637, 0.287746,-0.029410, 0.303029;;, - 159;4;-0.905294, 0.295574,-0.032612, 0.303342;;, - 160;4;-0.905515, 0.295573,-0.032254, 0.303334;;, - 161;4;-0.906183, 0.295508,-0.031172, 0.303306;;, - 162;4;-0.907299, 0.295265,-0.029356, 0.303259;;, - 163;4;-0.908858, 0.294711,-0.026815, 0.303190;;, - 164;4;-0.910838, 0.293688,-0.023573, 0.303098;;, - 165;4;-0.913206, 0.292018,-0.019677, 0.302983;;, - 166;4;-0.915913, 0.289505,-0.015200, 0.302844;;, - 167;4;-0.918893, 0.285950,-0.010241, 0.302681;;, - 168;4;-0.922064, 0.281155,-0.004923, 0.302495;;, - 169;4;-0.925333, 0.274941, 0.000610, 0.302288;;, - 170;4;-0.928602, 0.267159, 0.006205, 0.302061;;, - 171;4;-0.931770, 0.257702, 0.011704, 0.301817;;, - 172;4;-0.934746, 0.246510, 0.016962, 0.301559;;, - 173;4;-0.937448, 0.233572, 0.021846, 0.301291;;, - 174;4;-0.939810, 0.218918, 0.026249, 0.301014;;, - 175;4;-0.941783, 0.202614, 0.030087, 0.300733;;, - 176;4;-0.943333, 0.184753, 0.033305, 0.300449;;, - 177;4;-0.944441, 0.165441, 0.035864, 0.300165;;, - 178;4;-0.945099, 0.144795, 0.037750, 0.299882;;, - 179;4;-0.945309, 0.122931, 0.038961, 0.299601;;, - 180;4;-0.943852, 0.094790, 0.030556, 0.290457;;, - 181;4;-0.939490, 0.055477, 0.003488, 0.263499;;, - 182;4;-0.932404, 0.006299,-0.041099, 0.219851;;, - 183;4;-0.923140,-0.049843,-0.099735, 0.162863;;, - 184;4;-0.912648,-0.108395,-0.166358, 0.098367;;, - 185;4;-0.902158,-0.163831,-0.233103, 0.033910;;, - 186;4;-0.892899,-0.210942,-0.292092,-0.022967;;, - 187;4;-0.885820,-0.245988,-0.337230,-0.066439;;, - 188;4;-0.881466,-0.267112,-0.365009,-0.093171;;, - 189;4;-0.880020,-0.274032,-0.374242,-0.102052;;, - 190;4;-0.889364,-0.269311,-0.351268,-0.099030;;, - 191;4;-0.915797,-0.253212,-0.283640,-0.087668;;, - 192;4;-0.950033,-0.225022,-0.188979,-0.065435;;, - 193;4;-0.977279,-0.188430,-0.100020,-0.033238;;, - 194;4;-0.988008,-0.148841,-0.040751, 0.005235;;, - 195;4;-0.985342,-0.096222,-0.004041, 0.060336;;, - 196;4;-0.974860,-0.022930, 0.021380, 0.139373;;, - 197;4;-0.960654, 0.052382, 0.034457, 0.221748;;, - 198;4;-0.949359, 0.105181, 0.038545, 0.279950;;, - 199;4;-0.945309, 0.122931, 0.038961, 0.299601;;, - 200;4;-0.945309, 0.122931, 0.038961, 0.299601;;, - 201;4;-0.945309, 0.122931, 0.038961, 0.299601;;, - 202;4;-0.945309, 0.122931, 0.038961, 0.299601;;, - 203;4;-0.945309, 0.122931, 0.038961, 0.299601;;, - 204;4;-0.945309, 0.122931, 0.038961, 0.299601;;, - 205;4;-0.945309, 0.122931, 0.038961, 0.299601;;, - 206;4;-0.945309, 0.122931, 0.038961, 0.299601;;, - 207;4;-0.945309, 0.122931, 0.038961, 0.299601;;, - 208;4;-0.945309, 0.122931, 0.038961, 0.299601;;, - 209;4;-0.945309, 0.122931, 0.038961, 0.299601;;, - 210;4;-0.945309, 0.122931, 0.038961, 0.299601;;, - 211;4;-0.945309, 0.122931, 0.038961, 0.299601;;, - 212;4;-0.945309, 0.122931, 0.038961, 0.299601;;, - 213;4;-0.945309, 0.122931, 0.038961, 0.299601;;, - 214;4;-0.945309, 0.122931, 0.038961, 0.299601;;, - 215;4;-0.945309, 0.122931, 0.038961, 0.299601;;, - 216;4;-0.945309, 0.122931, 0.038961, 0.299601;;, - 217;4;-0.945309, 0.122931, 0.038961, 0.299601;;, - 218;4;-0.945309, 0.122931, 0.038961, 0.299601;;, - 219;4;-0.945309, 0.122931, 0.038961, 0.299601;;, - 220;4;-0.945309, 0.122931, 0.038961, 0.299601;;, - 221;4;-0.945309, 0.122931, 0.038961, 0.299601;;, - 222;4;-0.945309, 0.122931, 0.038961, 0.299601;;, - 223;4;-0.945309, 0.122931, 0.038961, 0.299601;;, - 224;4;-0.945309, 0.122931, 0.038961, 0.299601;;, - 225;4;-0.945309, 0.122931, 0.038961, 0.299601;;, - 226;4;-0.945309, 0.122931, 0.038961, 0.299601;;, - 227;4;-0.945309, 0.122931, 0.038961, 0.299601;;, - 228;4;-0.945309, 0.122931, 0.038961, 0.299601;;, - 229;4;-0.945309, 0.122931, 0.038961, 0.299601;;, - 230;4;-0.945309, 0.122931, 0.038961, 0.299601;;, - 231;4;-0.945309, 0.122931, 0.038961, 0.299601;;, - 232;4;-0.945309, 0.122931, 0.038961, 0.299601;;, - 233;4;-0.945309, 0.122931, 0.038961, 0.299601;;, - 234;4;-0.945309, 0.122931, 0.038961, 0.299601;;, - 235;4;-0.945309, 0.122931, 0.038961, 0.299601;;, - 236;4;-0.945309, 0.122931, 0.038961, 0.299601;;, - 237;4;-0.945309, 0.122931, 0.038961, 0.299601;;, - 238;4;-0.945309, 0.122931, 0.038961, 0.299601;;, - 239;4;-0.945309, 0.122931, 0.038961, 0.299601;;, - 240;4;-0.945309, 0.122931, 0.038961, 0.299601;;, - 241;4;-0.945309, 0.122931, 0.038961, 0.299601;;, - 242;4;-0.945309, 0.122931, 0.038961, 0.299601;;, - 243;4;-0.945309, 0.122931, 0.038961, 0.299601;;, - 244;4;-0.945309, 0.122931, 0.038961, 0.299601;;, - 245;4;-0.945309, 0.122931, 0.038961, 0.299601;;, - 246;4;-0.945309, 0.122931, 0.038961, 0.299601;;, - 247;4;-0.945309, 0.122931, 0.038961, 0.299601;;, - 248;4;-0.945309, 0.122931, 0.038961, 0.299601;;, - 249;4;-0.945309, 0.122931, 0.038961, 0.299601;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3;-0.000000, 0.592826,-0.000000;;, - 1;3;-0.000000, 0.592826,-0.000000;;, - 2;3;-0.000000, 0.592826,-0.000000;;, - 3;3;-0.000000, 0.592826,-0.000000;;, - 4;3;-0.000000, 0.592826,-0.000000;;, - 5;3;-0.000000, 0.592826,-0.000000;;, - 6;3;-0.000000, 0.592826,-0.000000;;, - 7;3;-0.000000, 0.592826,-0.000000;;, - 8;3;-0.000000, 0.592826,-0.000000;;, - 9;3;-0.000000, 0.592826,-0.000000;;, - 10;3;-0.000000, 0.592826,-0.000000;;, - 11;3;-0.000000, 0.592826,-0.000000;;, - 12;3;-0.000000, 0.592826,-0.000000;;, - 13;3;-0.000000, 0.592826,-0.000000;;, - 14;3;-0.000000, 0.592826,-0.000000;;, - 15;3;-0.000000, 0.592826,-0.000000;;, - 16;3;-0.000000, 0.592826,-0.000000;;, - 17;3;-0.000000, 0.592826,-0.000000;;, - 18;3;-0.000000, 0.592826,-0.000000;;, - 19;3;-0.000000, 0.592826,-0.000000;;, - 20;3;-0.000000, 0.592826,-0.000000;;, - 21;3;-0.000000, 0.592826,-0.000000;;, - 22;3;-0.000000, 0.592826,-0.000000;;, - 23;3;-0.000000, 0.592826,-0.000000;;, - 24;3;-0.000000, 0.592826,-0.000000;;, - 25;3;-0.000000, 0.592826,-0.000000;;, - 26;3;-0.000000, 0.592826,-0.000000;;, - 27;3;-0.000000, 0.592826,-0.000000;;, - 28;3;-0.000000, 0.592826,-0.000000;;, - 29;3;-0.000000, 0.592826,-0.000000;;, - 30;3;-0.000000, 0.592826,-0.000000;;, - 31;3;-0.000000, 0.592826,-0.000000;;, - 32;3;-0.000000, 0.592826,-0.000000;;, - 33;3;-0.000000, 0.592826,-0.000000;;, - 34;3;-0.000000, 0.592826,-0.000000;;, - 35;3;-0.000000, 0.592826,-0.000000;;, - 36;3;-0.000000, 0.592826,-0.000000;;, - 37;3;-0.000000, 0.592826,-0.000000;;, - 38;3;-0.000000, 0.592826,-0.000000;;, - 39;3;-0.000000, 0.592826,-0.000000;;, - 40;3;-0.000000, 0.592826,-0.000000;;, - 41;3;-0.000000, 0.592826,-0.000000;;, - 42;3;-0.000000, 0.592826,-0.000000;;, - 43;3;-0.000000, 0.592826,-0.000000;;, - 44;3;-0.000000, 0.592826,-0.000000;;, - 45;3;-0.000000, 0.592826,-0.000000;;, - 46;3;-0.000000, 0.592826,-0.000000;;, - 47;3;-0.000000, 0.592826,-0.000000;;, - 48;3;-0.000000, 0.592826,-0.000000;;, - 49;3;-0.000000, 0.592826,-0.000000;;, - 50;3;-0.000000, 0.592826,-0.000000;;, - 51;3;-0.000000, 0.592826,-0.000000;;, - 52;3;-0.000000, 0.592826,-0.000000;;, - 53;3;-0.000000, 0.592826,-0.000000;;, - 54;3;-0.000000, 0.592826,-0.000000;;, - 55;3;-0.000000, 0.592826,-0.000000;;, - 56;3;-0.000000, 0.592826,-0.000000;;, - 57;3;-0.000000, 0.592826,-0.000000;;, - 58;3;-0.000000, 0.592826,-0.000000;;, - 59;3;-0.000000, 0.592826,-0.000000;;, - 60;3;-0.000000, 0.592826,-0.000000;;, - 61;3;-0.000000, 0.592826,-0.000000;;, - 62;3;-0.000000, 0.592826,-0.000000;;, - 63;3;-0.000000, 0.592826,-0.000000;;, - 64;3;-0.000000, 0.592826,-0.000000;;, - 65;3;-0.000000, 0.592826,-0.000000;;, - 66;3;-0.000000, 0.592826,-0.000000;;, - 67;3;-0.000000, 0.592826,-0.000000;;, - 68;3;-0.000000, 0.592826,-0.000000;;, - 69;3;-0.000000, 0.592826,-0.000000;;, - 70;3;-0.000000, 0.592826,-0.000000;;, - 71;3;-0.000000, 0.592826,-0.000000;;, - 72;3;-0.000000, 0.592826,-0.000000;;, - 73;3;-0.000000, 0.592826,-0.000000;;, - 74;3;-0.000000, 0.592826,-0.000000;;, - 75;3;-0.000000, 0.592826,-0.000000;;, - 76;3;-0.000000, 0.592826,-0.000000;;, - 77;3;-0.000000, 0.592826,-0.000000;;, - 78;3;-0.000000, 0.592826,-0.000000;;, - 79;3;-0.000000, 0.592826,-0.000000;;, - 80;3;-0.000000, 0.592826,-0.000000;;, - 81;3;-0.000000, 0.592826,-0.000000;;, - 82;3;-0.000000, 0.592826,-0.000000;;, - 83;3;-0.000000, 0.592826,-0.000000;;, - 84;3;-0.000000, 0.592826,-0.000000;;, - 85;3;-0.000000, 0.592826,-0.000000;;, - 86;3;-0.000000, 0.592826,-0.000000;;, - 87;3;-0.000000, 0.592826,-0.000000;;, - 88;3;-0.000000, 0.592826,-0.000000;;, - 89;3;-0.000000, 0.592826,-0.000000;;, - 90;3;-0.000000, 0.592826,-0.000000;;, - 91;3;-0.000000, 0.592826,-0.000000;;, - 92;3;-0.000000, 0.592826,-0.000000;;, - 93;3;-0.000000, 0.592826,-0.000000;;, - 94;3;-0.000000, 0.592826,-0.000000;;, - 95;3;-0.000000, 0.592826,-0.000000;;, - 96;3;-0.000000, 0.592826,-0.000000;;, - 97;3;-0.000000, 0.592826,-0.000000;;, - 98;3;-0.000000, 0.592826,-0.000000;;, - 99;3;-0.000000, 0.592826,-0.000000;;, - 100;3;-0.000000, 0.592826,-0.000000;;, - 101;3;-0.000000, 0.592826,-0.000000;;, - 102;3;-0.000000, 0.592826,-0.000000;;, - 103;3;-0.000000, 0.592826,-0.000000;;, - 104;3;-0.000000, 0.592826,-0.000000;;, - 105;3;-0.000000, 0.592826,-0.000000;;, - 106;3;-0.000000, 0.592826,-0.000000;;, - 107;3;-0.000000, 0.592826,-0.000000;;, - 108;3;-0.000000, 0.592826,-0.000000;;, - 109;3;-0.000000, 0.592826,-0.000000;;, - 110;3;-0.000000, 0.592826,-0.000000;;, - 111;3;-0.000000, 0.592826,-0.000000;;, - 112;3;-0.000000, 0.592826,-0.000000;;, - 113;3;-0.000000, 0.592826,-0.000000;;, - 114;3;-0.000000, 0.592826,-0.000000;;, - 115;3;-0.000000, 0.592826,-0.000000;;, - 116;3;-0.000000, 0.592826,-0.000000;;, - 117;3;-0.000000, 0.592826,-0.000000;;, - 118;3;-0.000000, 0.592826,-0.000000;;, - 119;3;-0.000000, 0.592826,-0.000000;;, - 120;3;-0.000000, 0.592826,-0.000000;;, - 121;3;-0.000000, 0.592826,-0.000000;;, - 122;3;-0.000000, 0.592826,-0.000000;;, - 123;3;-0.000000, 0.592826,-0.000000;;, - 124;3;-0.000000, 0.592826,-0.000000;;, - 125;3;-0.000000, 0.592826,-0.000000;;, - 126;3;-0.000000, 0.592826,-0.000000;;, - 127;3;-0.000000, 0.592826,-0.000000;;, - 128;3;-0.000000, 0.592826,-0.000000;;, - 129;3;-0.000000, 0.592826,-0.000000;;, - 130;3;-0.000000, 0.592826,-0.000000;;, - 131;3;-0.000000, 0.592826,-0.000000;;, - 132;3;-0.000000, 0.592826,-0.000000;;, - 133;3;-0.000000, 0.592826,-0.000000;;, - 134;3;-0.000000, 0.592826,-0.000000;;, - 135;3;-0.000000, 0.592826,-0.000000;;, - 136;3;-0.000000, 0.592826,-0.000000;;, - 137;3;-0.000000, 0.592826,-0.000000;;, - 138;3;-0.000000, 0.592826,-0.000000;;, - 139;3;-0.000000, 0.592826,-0.000000;;, - 140;3;-0.000000, 0.592826,-0.000000;;, - 141;3;-0.000000, 0.592826,-0.000000;;, - 142;3;-0.000000, 0.592826,-0.000000;;, - 143;3;-0.000000, 0.592826,-0.000000;;, - 144;3;-0.000000, 0.592826,-0.000000;;, - 145;3;-0.000000, 0.592826,-0.000000;;, - 146;3;-0.000000, 0.592826,-0.000000;;, - 147;3;-0.000000, 0.592826,-0.000000;;, - 148;3;-0.000000, 0.592826,-0.000000;;, - 149;3;-0.000000, 0.592826,-0.000000;;, - 150;3;-0.000000, 0.592826,-0.000000;;, - 151;3;-0.000000, 0.592826,-0.000000;;, - 152;3;-0.000000, 0.592826,-0.000000;;, - 153;3;-0.000000, 0.592826,-0.000000;;, - 154;3;-0.000000, 0.592826,-0.000000;;, - 155;3;-0.000000, 0.592826,-0.000000;;, - 156;3;-0.000000, 0.592826,-0.000000;;, - 157;3;-0.000000, 0.592826,-0.000000;;, - 158;3;-0.000000, 0.592826,-0.000000;;, - 159;3;-0.000000, 0.592826,-0.000000;;, - 160;3;-0.000000, 0.592826,-0.000000;;, - 161;3;-0.000000, 0.592826,-0.000000;;, - 162;3;-0.000000, 0.592826,-0.000000;;, - 163;3;-0.000000, 0.592826,-0.000000;;, - 164;3;-0.000000, 0.592826,-0.000000;;, - 165;3;-0.000000, 0.592826,-0.000000;;, - 166;3;-0.000000, 0.592826,-0.000000;;, - 167;3;-0.000000, 0.592826,-0.000000;;, - 168;3;-0.000000, 0.592826,-0.000000;;, - 169;3;-0.000000, 0.592826,-0.000000;;, - 170;3;-0.000000, 0.592826,-0.000000;;, - 171;3;-0.000000, 0.592826,-0.000000;;, - 172;3;-0.000000, 0.592826,-0.000000;;, - 173;3;-0.000000, 0.592826,-0.000000;;, - 174;3;-0.000000, 0.592826,-0.000000;;, - 175;3;-0.000000, 0.592826,-0.000000;;, - 176;3;-0.000000, 0.592826,-0.000000;;, - 177;3;-0.000000, 0.592826,-0.000000;;, - 178;3;-0.000000, 0.592826,-0.000000;;, - 179;3;-0.000000, 0.592826,-0.000000;;, - 180;3;-0.000000, 0.592826, 0.000000;;, - 181;3;-0.000000, 0.592826, 0.000000;;, - 182;3;-0.000000, 0.592826,-0.000000;;, - 183;3;-0.000000, 0.592826, 0.000000;;, - 184;3; 0.000000, 0.592826,-0.000000;;, - 185;3;-0.000000, 0.592826, 0.000000;;, - 186;3; 0.000000, 0.592826,-0.000000;;, - 187;3;-0.000000, 0.592826, 0.000000;;, - 188;3; 0.000000, 0.592826, 0.000000;;, - 189;3; 0.000000, 0.592826, 0.000000;;, - 190;3;-0.000000, 0.592826,-0.000000;;, - 191;3; 0.000000, 0.592826,-0.000000;;, - 192;3; 0.000000, 0.592826,-0.000000;;, - 193;3;-0.000000, 0.592826, 0.000000;;, - 194;3;-0.000000, 0.592826,-0.000000;;, - 195;3; 0.000000, 0.592826,-0.000000;;, - 196;3;-0.000000, 0.592826,-0.000000;;, - 197;3; 0.000000, 0.592826, 0.000000;;, - 198;3; 0.000000, 0.592826,-0.000000;;, - 199;3;-0.000000, 0.592826,-0.000000;;, - 200;3;-0.000000, 0.592826,-0.000000;;, - 201;3;-0.000000, 0.592826,-0.000000;;, - 202;3;-0.000000, 0.592826,-0.000000;;, - 203;3;-0.000000, 0.592826,-0.000000;;, - 204;3;-0.000000, 0.592826,-0.000000;;, - 205;3;-0.000000, 0.592826,-0.000000;;, - 206;3;-0.000000, 0.592826,-0.000000;;, - 207;3;-0.000000, 0.592826,-0.000000;;, - 208;3;-0.000000, 0.592826,-0.000000;;, - 209;3;-0.000000, 0.592826,-0.000000;;, - 210;3;-0.000000, 0.592826,-0.000000;;, - 211;3;-0.000000, 0.592826,-0.000000;;, - 212;3;-0.000000, 0.592826,-0.000000;;, - 213;3;-0.000000, 0.592826,-0.000000;;, - 214;3;-0.000000, 0.592826,-0.000000;;, - 215;3;-0.000000, 0.592826,-0.000000;;, - 216;3;-0.000000, 0.592826,-0.000000;;, - 217;3;-0.000000, 0.592826,-0.000000;;, - 218;3;-0.000000, 0.592826,-0.000000;;, - 219;3;-0.000000, 0.592826,-0.000000;;, - 220;3;-0.000000, 0.592826,-0.000000;;, - 221;3;-0.000000, 0.592826,-0.000000;;, - 222;3;-0.000000, 0.592826,-0.000000;;, - 223;3;-0.000000, 0.592826,-0.000000;;, - 224;3;-0.000000, 0.592826,-0.000000;;, - 225;3;-0.000000, 0.592826,-0.000000;;, - 226;3;-0.000000, 0.592826,-0.000000;;, - 227;3;-0.000000, 0.592826,-0.000000;;, - 228;3;-0.000000, 0.592826,-0.000000;;, - 229;3;-0.000000, 0.592826,-0.000000;;, - 230;3;-0.000000, 0.592826,-0.000000;;, - 231;3;-0.000000, 0.592826,-0.000000;;, - 232;3;-0.000000, 0.592826,-0.000000;;, - 233;3;-0.000000, 0.592826,-0.000000;;, - 234;3;-0.000000, 0.592826,-0.000000;;, - 235;3;-0.000000, 0.592826,-0.000000;;, - 236;3;-0.000000, 0.592826,-0.000000;;, - 237;3;-0.000000, 0.592826,-0.000000;;, - 238;3;-0.000000, 0.592826,-0.000000;;, - 239;3;-0.000000, 0.592826,-0.000000;;, - 240;3;-0.000000, 0.592826,-0.000000;;, - 241;3;-0.000000, 0.592826,-0.000000;;, - 242;3;-0.000000, 0.592826,-0.000000;;, - 243;3;-0.000000, 0.592826,-0.000000;;, - 244;3;-0.000000, 0.592826,-0.000000;;, - 245;3;-0.000000, 0.592826,-0.000000;;, - 246;3;-0.000000, 0.592826,-0.000000;;, - 247;3;-0.000000, 0.592826,-0.000000;;, - 248;3;-0.000000, 0.592826,-0.000000;;, - 249;3;-0.000000, 0.592826,-0.000000;;; - } - } - Animation { - {Armature_Bone_023} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 1;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 2;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 3;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 4;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 5;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 6;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 7;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 8;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 9;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 10;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 11;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 12;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 13;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 14;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 15;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 16;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 17;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 18;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 19;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 20;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 21;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 22;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 23;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 24;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 25;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 26;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 27;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 28;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 29;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 30;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 31;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 32;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 33;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 34;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 35;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 36;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 37;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 38;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 39;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 40;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 41;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 42;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 43;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 44;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 45;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 46;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 47;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 48;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 49;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 50;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 51;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 52;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 53;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 54;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 55;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 56;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 57;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 58;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 59;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 60;4;-0.987429,-0.157259, 0.000184,-0.000183;;, - 61;4;-0.986807,-0.158733, 0.000741,-0.000734;;, - 62;4;-0.985765,-0.161200, 0.001672,-0.001656;;, - 63;4;-0.984303,-0.164666, 0.002980,-0.002952;;, - 64;4;-0.982419,-0.169130, 0.004664,-0.004621;;, - 65;4;-0.980116,-0.174587, 0.006723,-0.006661;;, - 66;4;-0.977398,-0.181026, 0.009153,-0.009068;;, - 67;4;-0.974273,-0.188429, 0.011947,-0.011836;;, - 68;4;-0.970752,-0.196773, 0.015096,-0.014955;;, - 69;4;-0.966848,-0.206023, 0.018587,-0.018414;;, - 70;4;-0.962579,-0.216138, 0.022404,-0.022195;;, - 71;4;-0.957966,-0.227068, 0.026528,-0.026282;;, - 72;4;-0.953034,-0.238753, 0.030938,-0.030650;;, - 73;4;-0.947813,-0.251124, 0.035606,-0.035275;;, - 74;4;-0.942335,-0.264104, 0.040505,-0.040128;;, - 75;4;-0.936637,-0.277605, 0.045600,-0.045175;;, - 76;4;-0.930758,-0.291534, 0.050856,-0.050383;;, - 77;4;-0.924742,-0.305790, 0.056236,-0.055712;;, - 78;4;-0.918632,-0.320267, 0.061699,-0.061125;;, - 79;4;-0.912475,-0.334855, 0.067204,-0.066579;;, - 80;4;-0.906318,-0.349444, 0.072709,-0.072033;;, - 81;4;-0.900208,-0.363921, 0.078173,-0.077445;;, - 82;4;-0.894191,-0.378177, 0.083552,-0.082775;;, - 83;4;-0.888312,-0.392106, 0.088809,-0.087982;;, - 84;4;-0.882614,-0.405607, 0.093904,-0.093030;;, - 85;4;-0.877136,-0.418587, 0.098802,-0.097882;;, - 86;4;-0.871915,-0.430958, 0.103470,-0.102507;;, - 87;4;-0.866983,-0.442643, 0.107880,-0.106876;;, - 88;4;-0.862370,-0.453573, 0.112005,-0.110962;;, - 89;4;-0.858101,-0.463688, 0.115822,-0.114744;;, - 90;4;-0.854197,-0.472938, 0.119312,-0.118202;;, - 91;4;-0.850676,-0.481282, 0.122461,-0.121321;;, - 92;4;-0.847551,-0.488685, 0.125255,-0.124089;;, - 93;4;-0.844834,-0.495124, 0.127685,-0.126497;;, - 94;4;-0.842531,-0.500581, 0.129744,-0.128537;;, - 95;4;-0.840647,-0.505045, 0.131429,-0.130206;;, - 96;4;-0.839184,-0.508511, 0.132736,-0.131501;;, - 97;4;-0.838143,-0.510978, 0.133668,-0.132424;;, - 98;4;-0.837521,-0.512452, 0.134224,-0.132975;;, - 99;4;-0.837314,-0.512941, 0.134408,-0.133158;;, - 100;4;-0.838389,-0.510157, 0.133209,-0.132212;;, - 101;4;-0.841728,-0.501509, 0.129484,-0.129275;;, - 102;4;-0.847399,-0.486818, 0.123155,-0.124285;;, - 103;4;-0.855259,-0.466458, 0.114385,-0.117371;;, - 104;4;-0.864882,-0.441532, 0.103647,-0.108905;;, - 105;4;-0.875587,-0.413802, 0.091702,-0.099487;;, - 106;4;-0.886586,-0.385312, 0.079429,-0.089811;;, - 107;4;-0.897168,-0.357900, 0.067621,-0.080501;;, - 108;4;-0.906828,-0.332878, 0.056843,-0.072003;;, - 109;4;-0.915278,-0.310990, 0.047414,-0.064569;;, - 110;4;-0.923728,-0.289102, 0.037985,-0.057135;;, - 111;4;-0.933387,-0.264081, 0.027207,-0.048637;;, - 112;4;-0.943970,-0.236668, 0.015398,-0.039327;;, - 113;4;-0.954968,-0.208178, 0.003126,-0.029651;;, - 114;4;-0.965673,-0.180448,-0.008820,-0.020233;;, - 115;4;-0.975296,-0.155522,-0.019557,-0.011767;;, - 116;4;-0.983156,-0.135162,-0.028328,-0.004852;;, - 117;4;-0.988828,-0.120471,-0.034656, 0.000137;;, - 118;4;-0.992166,-0.111823,-0.038381, 0.003074;;, - 119;4;-0.993241,-0.109039,-0.039581, 0.004020;;, - 120;4;-0.992166,-0.111823,-0.038381, 0.003074;;, - 121;4;-0.988828,-0.120471,-0.034656, 0.000137;;, - 122;4;-0.983156,-0.135162,-0.028328,-0.004852;;, - 123;4;-0.975296,-0.155522,-0.019557,-0.011767;;, - 124;4;-0.965674,-0.180448,-0.008820,-0.020233;;, - 125;4;-0.954968,-0.208178, 0.003126,-0.029651;;, - 126;4;-0.943970,-0.236668, 0.015398,-0.039327;;, - 127;4;-0.933387,-0.264081, 0.027207,-0.048637;;, - 128;4;-0.923728,-0.289102, 0.037985,-0.057135;;, - 129;4;-0.915278,-0.310990, 0.047414,-0.064569;;, - 130;4;-0.906828,-0.332878, 0.056843,-0.072003;;, - 131;4;-0.897168,-0.357900, 0.067621,-0.080501;;, - 132;4;-0.886586,-0.385312, 0.079429,-0.089811;;, - 133;4;-0.875587,-0.413802, 0.091702,-0.099487;;, - 134;4;-0.864882,-0.441532, 0.103647,-0.108905;;, - 135;4;-0.855259,-0.466458, 0.114385,-0.117371;;, - 136;4;-0.847399,-0.486818, 0.123155,-0.124285;;, - 137;4;-0.841728,-0.501509, 0.129484,-0.129275;;, - 138;4;-0.838389,-0.510157, 0.133209,-0.132212;;, - 139;4;-0.837314,-0.512941, 0.134408,-0.133158;;, - 140;4;-0.841728,-0.501509, 0.129484,-0.129275;;, - 141;4;-0.855259,-0.466458, 0.114385,-0.117371;;, - 142;4;-0.875587,-0.413802, 0.091702,-0.099487;;, - 143;4;-0.897168,-0.357900, 0.067621,-0.080501;;, - 144;4;-0.915278,-0.310990, 0.047414,-0.064569;;, - 145;4;-0.933387,-0.264081, 0.027207,-0.048637;;, - 146;4;-0.954968,-0.208178, 0.003126,-0.029651;;, - 147;4;-0.975296,-0.155522,-0.019557,-0.011767;;, - 148;4;-0.988828,-0.120471,-0.034656, 0.000137;;, - 149;4;-0.993241,-0.109039,-0.039581, 0.004020;;, - 150;4;-0.988828,-0.120471,-0.034656, 0.000137;;, - 151;4;-0.975296,-0.155522,-0.019557,-0.011767;;, - 152;4;-0.954968,-0.208178, 0.003126,-0.029651;;, - 153;4;-0.933387,-0.264081, 0.027207,-0.048637;;, - 154;4;-0.915278,-0.310990, 0.047414,-0.064569;;, - 155;4;-0.897168,-0.357900, 0.067621,-0.080501;;, - 156;4;-0.875587,-0.413802, 0.091702,-0.099487;;, - 157;4;-0.855259,-0.466458, 0.114385,-0.117371;;, - 158;4;-0.841728,-0.501509, 0.129484,-0.129275;;, - 159;4;-0.837314,-0.512941, 0.134408,-0.133158;;, - 160;4;-0.838143,-0.510978, 0.133668,-0.132424;;, - 161;4;-0.840647,-0.505045, 0.131429,-0.130206;;, - 162;4;-0.844834,-0.495124, 0.127685,-0.126497;;, - 163;4;-0.850676,-0.481282, 0.122461,-0.121321;;, - 164;4;-0.858101,-0.463688, 0.115822,-0.114744;;, - 165;4;-0.866983,-0.442643, 0.107880,-0.106876;;, - 166;4;-0.877136,-0.418587, 0.098802,-0.097882;;, - 167;4;-0.888312,-0.392106, 0.088809,-0.087982;;, - 168;4;-0.900208,-0.363921, 0.078173,-0.077445;;, - 169;4;-0.912475,-0.334855, 0.067204,-0.066579;;, - 170;4;-0.924742,-0.305790, 0.056236,-0.055712;;, - 171;4;-0.936637,-0.277605, 0.045600,-0.045175;;, - 172;4;-0.947813,-0.251124, 0.035606,-0.035275;;, - 173;4;-0.957966,-0.227068, 0.026528,-0.026281;;, - 174;4;-0.966848,-0.206023, 0.018587,-0.018414;;, - 175;4;-0.974273,-0.188429, 0.011947,-0.011836;;, - 176;4;-0.980116,-0.174587, 0.006723,-0.006661;;, - 177;4;-0.984303,-0.164666, 0.002980,-0.002952;;, - 178;4;-0.986807,-0.158733, 0.000741,-0.000734;;, - 179;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 180;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 181;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 182;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 183;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 184;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 185;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 186;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 187;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 188;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 189;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 190;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 191;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 192;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 193;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 194;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 195;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 196;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 197;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 198;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 199;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 200;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 201;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 202;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 203;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 204;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 205;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 206;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 207;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 208;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 209;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 210;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 211;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 212;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 213;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 214;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 215;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 216;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 217;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 218;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 219;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 220;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 221;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 222;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 223;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 224;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 225;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 226;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 227;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 228;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 229;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 230;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 231;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 232;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 233;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 234;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 235;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 236;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 237;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 238;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 239;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 240;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 241;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 242;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 243;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 244;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 245;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 246;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 247;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 248;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 249;4;-0.987635,-0.156770,-0.000000,-0.000000;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3;-0.000000, 1.294481,-0.000000;;, - 1;3; 0.000000, 1.294481,-0.000000;;, - 2;3; 0.000000, 1.294482,-0.000000;;, - 3;3;-0.000000, 1.294482,-0.000000;;, - 4;3; 0.000000, 1.294481, 0.000000;;, - 5;3; 0.000000, 1.294482,-0.000000;;, - 6;3;-0.000000, 1.294482, 0.000000;;, - 7;3; 0.000000, 1.294482,-0.000000;;, - 8;3;-0.000000, 1.294482,-0.000000;;, - 9;3;-0.000000, 1.294482,-0.000000;;, - 10;3; 0.000000, 1.294482,-0.000000;;, - 11;3;-0.000000, 1.294482, 0.000000;;, - 12;3;-0.000000, 1.294482,-0.000000;;, - 13;3; 0.000000, 1.294482,-0.000000;;, - 14;3;-0.000000, 1.294482,-0.000000;;, - 15;3;-0.000000, 1.294482,-0.000000;;, - 16;3;-0.000000, 1.294482,-0.000000;;, - 17;3;-0.000000, 1.294482, 0.000000;;, - 18;3;-0.000000, 1.294482, 0.000000;;, - 19;3; 0.000000, 1.294482,-0.000000;;, - 20;3;-0.000000, 1.294482,-0.000000;;, - 21;3; 0.000000, 1.294481, 0.000000;;, - 22;3; 0.000000, 1.294481, 0.000000;;, - 23;3;-0.000000, 1.294482,-0.000000;;, - 24;3; 0.000000, 1.294482, 0.000000;;, - 25;3;-0.000000, 1.294482, 0.000000;;, - 26;3; 0.000000, 1.294482,-0.000000;;, - 27;3;-0.000000, 1.294482, 0.000000;;, - 28;3; 0.000000, 1.294481, 0.000000;;, - 29;3;-0.000000, 1.294482,-0.000000;;, - 30;3; 0.000000, 1.294481,-0.000000;;, - 31;3; 0.000000, 1.294482,-0.000000;;, - 32;3; 0.000000, 1.294482,-0.000000;;, - 33;3; 0.000000, 1.294482, 0.000000;;, - 34;3;-0.000000, 1.294482, 0.000000;;, - 35;3;-0.000000, 1.294481, 0.000000;;, - 36;3;-0.000000, 1.294482,-0.000000;;, - 37;3;-0.000000, 1.294482,-0.000000;;, - 38;3;-0.000000, 1.294482,-0.000000;;, - 39;3;-0.000000, 1.294482, 0.000000;;, - 40;3; 0.000000, 1.294481,-0.000000;;, - 41;3; 0.000000, 1.294481, 0.000000;;, - 42;3; 0.000000, 1.294481,-0.000000;;, - 43;3; 0.000000, 1.294481, 0.000000;;, - 44;3; 0.000000, 1.294482,-0.000000;;, - 45;3;-0.000000, 1.294482,-0.000000;;, - 46;3;-0.000000, 1.294481,-0.000000;;, - 47;3;-0.000000, 1.294482,-0.000000;;, - 48;3; 0.000000, 1.294482,-0.000000;;, - 49;3;-0.000000, 1.294482, 0.000000;;, - 50;3; 0.000000, 1.294481,-0.000000;;, - 51;3;-0.000000, 1.294482,-0.000000;;, - 52;3;-0.000000, 1.294482, 0.000000;;, - 53;3; 0.000000, 1.294481,-0.000000;;, - 54;3; 0.000000, 1.294482,-0.000000;;, - 55;3; 0.000000, 1.294482, 0.000000;;, - 56;3;-0.000000, 1.294482,-0.000000;;, - 57;3; 0.000000, 1.294481,-0.000000;;, - 58;3;-0.000000, 1.294482,-0.000000;;, - 59;3;-0.000000, 1.294481,-0.000000;;, - 60;3;-0.000000, 1.294481,-0.000000;;, - 61;3;-0.000000, 1.294482, 0.000000;;, - 62;3; 0.000000, 1.294481,-0.000000;;, - 63;3;-0.000000, 1.294482,-0.000000;;, - 64;3;-0.000000, 1.294482,-0.000000;;, - 65;3; 0.000000, 1.294482,-0.000000;;, - 66;3; 0.000000, 1.294482,-0.000000;;, - 67;3;-0.000000, 1.294482,-0.000000;;, - 68;3;-0.000000, 1.294482, 0.000000;;, - 69;3;-0.000000, 1.294482,-0.000000;;, - 70;3; 0.000000, 1.294482, 0.000000;;, - 71;3; 0.000000, 1.294481, 0.000000;;, - 72;3; 0.000000, 1.294481,-0.000000;;, - 73;3;-0.000000, 1.294482, 0.000000;;, - 74;3;-0.000000, 1.294481, 0.000000;;, - 75;3;-0.000000, 1.294482,-0.000000;;, - 76;3;-0.000000, 1.294482, 0.000000;;, - 77;3; 0.000000, 1.294482,-0.000000;;, - 78;3; 0.000000, 1.294481,-0.000000;;, - 79;3; 0.000000, 1.294482, 0.000000;;, - 80;3;-0.000000, 1.294482,-0.000000;;, - 81;3;-0.000000, 1.294481,-0.000000;;, - 82;3;-0.000000, 1.294482,-0.000000;;, - 83;3;-0.000000, 1.294481,-0.000000;;, - 84;3;-0.000000, 1.294482, 0.000000;;, - 85;3;-0.000000, 1.294482,-0.000000;;, - 86;3;-0.000000, 1.294482,-0.000000;;, - 87;3;-0.000000, 1.294482,-0.000000;;, - 88;3; 0.000000, 1.294482,-0.000000;;, - 89;3;-0.000000, 1.294481,-0.000000;;, - 90;3;-0.000000, 1.294481,-0.000000;;, - 91;3; 0.000000, 1.294482,-0.000000;;, - 92;3;-0.000000, 1.294481,-0.000000;;, - 93;3;-0.000000, 1.294482,-0.000000;;, - 94;3; 0.000000, 1.294482, 0.000000;;, - 95;3;-0.000000, 1.294482, 0.000000;;, - 96;3;-0.000000, 1.294482,-0.000000;;, - 97;3;-0.000000, 1.294481,-0.000000;;, - 98;3;-0.000000, 1.294482,-0.000000;;, - 99;3; 0.000000, 1.294481,-0.000000;;, - 100;3;-0.000000, 1.294482,-0.000000;;, - 101;3; 0.000000, 1.294482,-0.000000;;, - 102;3; 0.000000, 1.294481, 0.000000;;, - 103;3;-0.000000, 1.294482,-0.000000;;, - 104;3;-0.000000, 1.294482,-0.000000;;, - 105;3; 0.000000, 1.294481, 0.000000;;, - 106;3; 0.000000, 1.294482, 0.000000;;, - 107;3; 0.000000, 1.294482,-0.000000;;, - 108;3;-0.000000, 1.294482, 0.000000;;, - 109;3; 0.000000, 1.294481, 0.000000;;, - 110;3; 0.000000, 1.294482,-0.000000;;, - 111;3; 0.000000, 1.294482, 0.000000;;, - 112;3;-0.000000, 1.294482, 0.000000;;, - 113;3;-0.000000, 1.294481, 0.000000;;, - 114;3; 0.000000, 1.294481,-0.000000;;, - 115;3;-0.000000, 1.294481, 0.000000;;, - 116;3; 0.000000, 1.294482,-0.000000;;, - 117;3;-0.000000, 1.294482, 0.000000;;, - 118;3; 0.000000, 1.294482,-0.000000;;, - 119;3;-0.000000, 1.294481, 0.000000;;, - 120;3; 0.000000, 1.294482, 0.000000;;, - 121;3; 0.000000, 1.294482, 0.000000;;, - 122;3;-0.000000, 1.294482, 0.000000;;, - 123;3; 0.000000, 1.294482,-0.000000;;, - 124;3;-0.000000, 1.294482,-0.000000;;, - 125;3; 0.000000, 1.294482,-0.000000;;, - 126;3;-0.000000, 1.294482,-0.000000;;, - 127;3;-0.000000, 1.294482,-0.000000;;, - 128;3; 0.000000, 1.294482, 0.000000;;, - 129;3; 0.000000, 1.294481,-0.000000;;, - 130;3; 0.000000, 1.294482,-0.000000;;, - 131;3;-0.000000, 1.294482, 0.000000;;, - 132;3; 0.000000, 1.294482,-0.000000;;, - 133;3;-0.000000, 1.294482, 0.000000;;, - 134;3;-0.000000, 1.294481, 0.000000;;, - 135;3;-0.000000, 1.294482, 0.000000;;, - 136;3;-0.000000, 1.294481,-0.000000;;, - 137;3;-0.000000, 1.294482, 0.000000;;, - 138;3; 0.000000, 1.294482, 0.000000;;, - 139;3; 0.000000, 1.294481,-0.000000;;, - 140;3;-0.000000, 1.294481,-0.000000;;, - 141;3;-0.000000, 1.294482, 0.000000;;, - 142;3; 0.000000, 1.294482, 0.000000;;, - 143;3;-0.000000, 1.294482,-0.000000;;, - 144;3; 0.000000, 1.294481, 0.000000;;, - 145;3; 0.000000, 1.294482, 0.000000;;, - 146;3;-0.000000, 1.294481, 0.000000;;, - 147;3;-0.000000, 1.294481, 0.000000;;, - 148;3;-0.000000, 1.294482, 0.000000;;, - 149;3;-0.000000, 1.294481, 0.000000;;, - 150;3; 0.000000, 1.294482, 0.000000;;, - 151;3; 0.000000, 1.294482,-0.000000;;, - 152;3; 0.000000, 1.294482,-0.000000;;, - 153;3;-0.000000, 1.294482,-0.000000;;, - 154;3; 0.000000, 1.294481,-0.000000;;, - 155;3; 0.000000, 1.294482, 0.000000;;, - 156;3; 0.000000, 1.294481,-0.000000;;, - 157;3;-0.000000, 1.294482,-0.000000;;, - 158;3; 0.000000, 1.294482, 0.000000;;, - 159;3; 0.000000, 1.294481,-0.000000;;, - 160;3;-0.000000, 1.294482,-0.000000;;, - 161;3;-0.000000, 1.294482,-0.000000;;, - 162;3; 0.000000, 1.294482,-0.000000;;, - 163;3;-0.000000, 1.294482, 0.000000;;, - 164;3;-0.000000, 1.294482, 0.000000;;, - 165;3; 0.000000, 1.294482,-0.000000;;, - 166;3; 0.000000, 1.294482,-0.000000;;, - 167;3; 0.000000, 1.294481,-0.000000;;, - 168;3;-0.000000, 1.294482,-0.000000;;, - 169;3;-0.000000, 1.294481, 0.000000;;, - 170;3;-0.000000, 1.294481,-0.000000;;, - 171;3;-0.000000, 1.294481, 0.000000;;, - 172;3;-0.000000, 1.294481,-0.000000;;, - 173;3;-0.000000, 1.294482, 0.000000;;, - 174;3;-0.000000, 1.294482,-0.000000;;, - 175;3; 0.000000, 1.294481,-0.000000;;, - 176;3; 0.000000, 1.294481,-0.000000;;, - 177;3; 0.000000, 1.294482, 0.000000;;, - 178;3; 0.000000, 1.294482, 0.000000;;, - 179;3;-0.000000, 1.294481,-0.000000;;, - 180;3;-0.000000, 1.294482,-0.000000;;, - 181;3; 0.000000, 1.294482,-0.000000;;, - 182;3;-0.000000, 1.294482,-0.000000;;, - 183;3;-0.000000, 1.294481,-0.000000;;, - 184;3; 0.000000, 1.294482,-0.000000;;, - 185;3; 0.000000, 1.294482, 0.000000;;, - 186;3; 0.000000, 1.294481, 0.000000;;, - 187;3; 0.000000, 1.294481, 0.000000;;, - 188;3; 0.000000, 1.294482,-0.000000;;, - 189;3; 0.000000, 1.294482,-0.000000;;, - 190;3; 0.000000, 1.294482, 0.000000;;, - 191;3;-0.000000, 1.294481, 0.000000;;, - 192;3;-0.000000, 1.294482, 0.000000;;, - 193;3; 0.000000, 1.294481,-0.000000;;, - 194;3;-0.000000, 1.294482, 0.000000;;, - 195;3; 0.000000, 1.294481,-0.000000;;, - 196;3;-0.000000, 1.294482, 0.000000;;, - 197;3;-0.000000, 1.294482, 0.000000;;, - 198;3; 0.000000, 1.294481, 0.000000;;, - 199;3;-0.000000, 1.294481,-0.000000;;, - 200;3;-0.000000, 1.294481,-0.000000;;, - 201;3;-0.000000, 1.294481,-0.000000;;, - 202;3;-0.000000, 1.294481,-0.000000;;, - 203;3;-0.000000, 1.294481,-0.000000;;, - 204;3;-0.000000, 1.294481,-0.000000;;, - 205;3;-0.000000, 1.294481,-0.000000;;, - 206;3;-0.000000, 1.294481,-0.000000;;, - 207;3;-0.000000, 1.294481,-0.000000;;, - 208;3;-0.000000, 1.294481,-0.000000;;, - 209;3;-0.000000, 1.294481,-0.000000;;, - 210;3;-0.000000, 1.294481,-0.000000;;, - 211;3;-0.000000, 1.294481,-0.000000;;, - 212;3;-0.000000, 1.294481,-0.000000;;, - 213;3;-0.000000, 1.294481,-0.000000;;, - 214;3;-0.000000, 1.294481,-0.000000;;, - 215;3;-0.000000, 1.294481,-0.000000;;, - 216;3;-0.000000, 1.294481,-0.000000;;, - 217;3;-0.000000, 1.294481,-0.000000;;, - 218;3;-0.000000, 1.294481,-0.000000;;, - 219;3;-0.000000, 1.294481,-0.000000;;, - 220;3;-0.000000, 1.294481,-0.000000;;, - 221;3;-0.000000, 1.294481,-0.000000;;, - 222;3;-0.000000, 1.294481,-0.000000;;, - 223;3;-0.000000, 1.294481,-0.000000;;, - 224;3;-0.000000, 1.294481,-0.000000;;, - 225;3;-0.000000, 1.294481,-0.000000;;, - 226;3;-0.000000, 1.294481,-0.000000;;, - 227;3;-0.000000, 1.294481,-0.000000;;, - 228;3;-0.000000, 1.294481,-0.000000;;, - 229;3;-0.000000, 1.294481,-0.000000;;, - 230;3;-0.000000, 1.294481,-0.000000;;, - 231;3;-0.000000, 1.294481,-0.000000;;, - 232;3;-0.000000, 1.294481,-0.000000;;, - 233;3;-0.000000, 1.294481,-0.000000;;, - 234;3;-0.000000, 1.294481,-0.000000;;, - 235;3;-0.000000, 1.294481,-0.000000;;, - 236;3;-0.000000, 1.294481,-0.000000;;, - 237;3;-0.000000, 1.294481,-0.000000;;, - 238;3;-0.000000, 1.294481,-0.000000;;, - 239;3;-0.000000, 1.294481,-0.000000;;, - 240;3;-0.000000, 1.294481,-0.000000;;, - 241;3;-0.000000, 1.294481,-0.000000;;, - 242;3;-0.000000, 1.294481,-0.000000;;, - 243;3;-0.000000, 1.294481,-0.000000;;, - 244;3;-0.000000, 1.294481,-0.000000;;, - 245;3;-0.000000, 1.294481,-0.000000;;, - 246;3;-0.000000, 1.294481,-0.000000;;, - 247;3;-0.000000, 1.294481,-0.000000;;, - 248;3;-0.000000, 1.294481,-0.000000;;, - 249;3;-0.000000, 1.294481,-0.000000;;; - } - } - Animation { - {Armature_Bone_027} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 1;4;-0.967903,-0.251025, 0.000767, 0.000246;;, - 2;4;-0.968074,-0.249465, 0.003085, 0.000990;;, - 3;4;-0.968359,-0.246858, 0.006959, 0.002233;;, - 4;4;-0.968757,-0.243225, 0.012357, 0.003965;;, - 5;4;-0.969261,-0.238621, 0.019200, 0.006160;;, - 6;4;-0.969861,-0.233136, 0.027349, 0.008775;;, - 7;4;-0.970543,-0.226905, 0.036609, 0.011746;;, - 8;4;-0.971287,-0.220103, 0.046716, 0.014989;;, - 9;4;-0.972071,-0.212942, 0.057358, 0.018403;;, - 10;4;-0.972868,-0.205658, 0.068181, 0.021876;;, - 11;4;-0.973652,-0.198497, 0.078823, 0.025290;;, - 12;4;-0.974396,-0.191695, 0.088930, 0.028533;;, - 13;4;-0.975078,-0.185464, 0.098189, 0.031504;;, - 14;4;-0.975678,-0.179979, 0.106339, 0.034119;;, - 15;4;-0.976182,-0.175375, 0.113181, 0.036314;;, - 16;4;-0.976580,-0.171742, 0.118579, 0.038046;;, - 17;4;-0.976865,-0.169135, 0.122454, 0.039289;;, - 18;4;-0.977036,-0.167575, 0.124772, 0.040033;;, - 19;4;-0.977092,-0.167059, 0.125539, 0.040279;;, - 20;4;-0.977082,-0.167170, 0.125326, 0.040211;;, - 21;4;-0.977050,-0.167511, 0.124674, 0.040002;;, - 22;4;-0.976996,-0.168095, 0.123564, 0.039646;;, - 23;4;-0.976919,-0.168931, 0.121986, 0.039139;;, - 24;4;-0.976816,-0.170022, 0.119935, 0.038481;;, - 25;4;-0.976690,-0.171370, 0.117420, 0.037674;;, - 26;4;-0.976538,-0.172967, 0.114460, 0.036725;;, - 27;4;-0.976364,-0.174800, 0.111091, 0.035644;;, - 28;4;-0.976168,-0.176846, 0.107365, 0.034448;;, - 29;4;-0.975953,-0.179075, 0.103344, 0.033158;;, - 30;4;-0.975721,-0.181452, 0.099104, 0.031798;;, - 31;4;-0.975477,-0.183936, 0.094725, 0.030393;;, - 32;4;-0.975224,-0.186488, 0.090288, 0.028969;;, - 33;4;-0.974965,-0.189067, 0.085870, 0.027551;;, - 34;4;-0.974705,-0.191637, 0.081538, 0.026162;;, - 35;4;-0.974445,-0.194167, 0.077350, 0.024818;;, - 36;4;-0.974189,-0.196632, 0.073350, 0.023534;;, - 37;4;-0.973938,-0.199011, 0.069573, 0.022322;;, - 38;4;-0.973695,-0.201290, 0.066041, 0.021189;;, - 39;4;-0.973459,-0.203460, 0.062769, 0.020140;;, - 40;4;-0.973221,-0.205651, 0.059498, 0.019090;;, - 41;4;-0.972969,-0.208000, 0.055966, 0.017957;;, - 42;4;-0.972702,-0.210502, 0.052189, 0.016745;;, - 43;4;-0.972422,-0.213147, 0.048189, 0.015462;;, - 44;4;-0.972130,-0.215920, 0.044001, 0.014118;;, - 45;4;-0.971826,-0.218801, 0.039669, 0.012728;;, - 46;4;-0.971513,-0.221762, 0.035251, 0.011310;;, - 47;4;-0.971193,-0.224770, 0.030814, 0.009887;;, - 48;4;-0.970868,-0.227785, 0.026435, 0.008482;;, - 49;4;-0.970543,-0.230765, 0.022195, 0.007121;;, - 50;4;-0.970221,-0.233667, 0.018174, 0.005831;;, - 51;4;-0.969904,-0.236450, 0.014447, 0.004636;;, - 52;4;-0.969597,-0.239078, 0.011079, 0.003555;;, - 53;4;-0.969301,-0.241521, 0.008119, 0.002605;;, - 54;4;-0.969019,-0.243757, 0.005604, 0.001798;;, - 55;4;-0.968752,-0.245771, 0.003553, 0.001140;;, - 56;4;-0.968501,-0.247556, 0.001975, 0.000634;;, - 57;4;-0.968266,-0.249110, 0.000865, 0.000278;;, - 58;4;-0.968048,-0.250436, 0.000213, 0.000068;;, - 59;4;-0.967847,-0.251541,-0.000000, 0.000000;;, - 60;4;-0.967654,-0.252526, 0.000017, 0.000006;;, - 61;4;-0.967462,-0.253486, 0.000070, 0.000023;;, - 62;4;-0.967272,-0.254420, 0.000158, 0.000051;;, - 63;4;-0.967084,-0.255326, 0.000282, 0.000091;;, - 64;4;-0.966898,-0.256202, 0.000442, 0.000142;;, - 65;4;-0.966714,-0.257049, 0.000637, 0.000204;;, - 66;4;-0.966533,-0.257864, 0.000867, 0.000278;;, - 67;4;-0.966355,-0.258645, 0.001132, 0.000363;;, - 68;4;-0.966181,-0.259393, 0.001431, 0.000459;;, - 69;4;-0.966010,-0.260106, 0.001762, 0.000565;;, - 70;4;-0.965843,-0.260783, 0.002123, 0.000681;;, - 71;4;-0.965680,-0.261422, 0.002514, 0.000807;;, - 72;4;-0.965523,-0.262024, 0.002932, 0.000941;;, - 73;4;-0.965370,-0.262588, 0.003375, 0.001083;;, - 74;4;-0.965222,-0.263113, 0.003839, 0.001232;;, - 75;4;-0.965080,-0.263599, 0.004322, 0.001387;;, - 76;4;-0.964944,-0.264048, 0.004820, 0.001547;;, - 77;4;-0.964815,-0.264458, 0.005330, 0.001710;;, - 78;4;-0.964691,-0.264831, 0.005848, 0.001876;;, - 79;4;-0.964575,-0.265168, 0.006370, 0.002044;;, - 80;4;-0.964465,-0.265470, 0.006891, 0.002211;;, - 81;4;-0.964362,-0.265739, 0.007409, 0.002377;;, - 82;4;-0.964266,-0.265976, 0.007919, 0.002541;;, - 83;4;-0.964177,-0.266183, 0.008417, 0.002701;;, - 84;4;-0.964095,-0.266362, 0.008900, 0.002856;;, - 85;4;-0.964019,-0.266516, 0.009364, 0.003005;;, - 86;4;-0.963951,-0.266646, 0.009807, 0.003147;;, - 87;4;-0.963889,-0.266754, 0.010225, 0.003281;;, - 88;4;-0.963833,-0.266844, 0.010616, 0.003406;;, - 89;4;-0.963783,-0.266916, 0.010978, 0.003522;;, - 90;4;-0.963740,-0.266974, 0.011308, 0.003628;;, - 91;4;-0.963702,-0.267018, 0.011607, 0.003724;;, - 92;4;-0.963669,-0.267052, 0.011872, 0.003809;;, - 93;4;-0.963642,-0.267076, 0.012102, 0.003883;;, - 94;4;-0.963619,-0.267093, 0.012297, 0.003946;;, - 95;4;-0.963602,-0.267104, 0.012457, 0.003997;;, - 96;4;-0.963588,-0.267111, 0.012581, 0.004037;;, - 97;4;-0.963579,-0.267114, 0.012669, 0.004065;;, - 98;4;-0.963574,-0.267115, 0.012722, 0.004082;;, - 99;4;-0.963572,-0.267115, 0.012739, 0.004087;;, - 100;4;-0.963730,-0.266134, 0.011959, 0.003837;;, - 101;4;-0.964222,-0.263088, 0.009536, 0.003060;;, - 102;4;-0.965058,-0.257914, 0.005419, 0.001739;;, - 103;4;-0.966217,-0.250742,-0.000286,-0.000092;;, - 104;4;-0.967635,-0.241963,-0.007271,-0.002333;;, - 105;4;-0.969212,-0.232195,-0.015042,-0.004826;;, - 106;4;-0.970833,-0.222160,-0.023026,-0.007388;;, - 107;4;-0.972393,-0.212505,-0.030708,-0.009853;;, - 108;4;-0.973817,-0.203692,-0.037719,-0.012102;;, - 109;4;-0.975062,-0.195982,-0.043853,-0.014070;;, - 110;4;-0.976307,-0.188272,-0.049987,-0.016038;;, - 111;4;-0.977731,-0.179459,-0.056998,-0.018288;;, - 112;4;-0.979291,-0.169804,-0.064680,-0.020753;;, - 113;4;-0.980911,-0.159769,-0.072664,-0.023314;;, - 114;4;-0.982489,-0.150002,-0.080434,-0.025807;;, - 115;4;-0.983907,-0.141222,-0.087419,-0.028049;;, - 116;4;-0.985066,-0.134050,-0.093125,-0.029879;;, - 117;4;-0.985902,-0.128876,-0.097241,-0.031200;;, - 118;4;-0.986394,-0.125830,-0.099665,-0.031978;;, - 119;4;-0.986552,-0.124849,-0.100445,-0.032228;;, - 120;4;-0.986394,-0.125830,-0.099665,-0.031978;;, - 121;4;-0.985902,-0.128876,-0.097241,-0.031200;;, - 122;4;-0.985066,-0.134050,-0.093125,-0.029879;;, - 123;4;-0.983907,-0.141222,-0.087419,-0.028049;;, - 124;4;-0.982489,-0.150002,-0.080434,-0.025807;;, - 125;4;-0.980911,-0.159769,-0.072664,-0.023314;;, - 126;4;-0.979291,-0.169804,-0.064680,-0.020753;;, - 127;4;-0.977731,-0.179459,-0.056998,-0.018288;;, - 128;4;-0.976307,-0.188272,-0.049987,-0.016038;;, - 129;4;-0.975062,-0.195982,-0.043853,-0.014070;;, - 130;4;-0.973817,-0.203692,-0.037719,-0.012102;;, - 131;4;-0.972393,-0.212505,-0.030708,-0.009853;;, - 132;4;-0.970833,-0.222160,-0.023026,-0.007388;;, - 133;4;-0.969213,-0.232195,-0.015042,-0.004826;;, - 134;4;-0.967635,-0.241963,-0.007271,-0.002333;;, - 135;4;-0.966217,-0.250742,-0.000286,-0.000092;;, - 136;4;-0.965058,-0.257914, 0.005419, 0.001739;;, - 137;4;-0.964222,-0.263088, 0.009536, 0.003060;;, - 138;4;-0.963730,-0.266134, 0.011959, 0.003837;;, - 139;4;-0.963572,-0.267115, 0.012739, 0.004087;;, - 140;4;-0.964222,-0.263088, 0.009536, 0.003060;;, - 141;4;-0.966217,-0.250742,-0.000286,-0.000092;;, - 142;4;-0.969212,-0.232195,-0.015042,-0.004826;;, - 143;4;-0.972393,-0.212505,-0.030708,-0.009853;;, - 144;4;-0.975062,-0.195982,-0.043853,-0.014070;;, - 145;4;-0.977731,-0.179459,-0.056998,-0.018288;;, - 146;4;-0.980911,-0.159769,-0.072664,-0.023314;;, - 147;4;-0.983907,-0.141222,-0.087419,-0.028049;;, - 148;4;-0.985902,-0.128876,-0.097241,-0.031200;;, - 149;4;-0.986552,-0.124849,-0.100445,-0.032228;;, - 150;4;-0.985902,-0.128876,-0.097241,-0.031200;;, - 151;4;-0.983907,-0.141222,-0.087419,-0.028049;;, - 152;4;-0.980911,-0.159769,-0.072664,-0.023314;;, - 153;4;-0.977731,-0.179459,-0.056998,-0.018288;;, - 154;4;-0.975062,-0.195982,-0.043853,-0.014070;;, - 155;4;-0.972393,-0.212505,-0.030708,-0.009853;;, - 156;4;-0.969213,-0.232195,-0.015042,-0.004826;;, - 157;4;-0.966217,-0.250742,-0.000286,-0.000092;;, - 158;4;-0.964222,-0.263088, 0.009536, 0.003060;;, - 159;4;-0.963572,-0.267115, 0.012739, 0.004087;;, - 160;4;-0.963596,-0.267029, 0.012669, 0.004065;;, - 161;4;-0.963667,-0.266770, 0.012457, 0.003997;;, - 162;4;-0.963786,-0.266336, 0.012102, 0.003883;;, - 163;4;-0.963952,-0.265731, 0.011607, 0.003724;;, - 164;4;-0.964163,-0.264961, 0.010978, 0.003522;;, - 165;4;-0.964416,-0.264041, 0.010225, 0.003281;;, - 166;4;-0.964704,-0.262989, 0.009364, 0.003005;;, - 167;4;-0.965022,-0.261831, 0.008417, 0.002701;;, - 168;4;-0.965360,-0.260599, 0.007409, 0.002377;;, - 169;4;-0.965709,-0.259328, 0.006370, 0.002044;;, - 170;4;-0.966058,-0.258057, 0.005330, 0.001710;;, - 171;4;-0.966396,-0.256825, 0.004322, 0.001387;;, - 172;4;-0.966714,-0.255667, 0.003375, 0.001083;;, - 173;4;-0.967003,-0.254615, 0.002514, 0.000807;;, - 174;4;-0.967256,-0.253695, 0.001762, 0.000565;;, - 175;4;-0.967467,-0.252925, 0.001132, 0.000363;;, - 176;4;-0.967633,-0.252320, 0.000637, 0.000204;;, - 177;4;-0.967752,-0.251886, 0.000282, 0.000091;;, - 178;4;-0.967823,-0.251627, 0.000070, 0.000023;;, - 179;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 180;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 181;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 182;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 183;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 184;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 185;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 186;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 187;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 188;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 189;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 190;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 191;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 192;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 193;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 194;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 195;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 196;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 197;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 198;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 199;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 200;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 201;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 202;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 203;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 204;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 205;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 206;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 207;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 208;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 209;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 210;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 211;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 212;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 213;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 214;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 215;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 216;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 217;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 218;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 219;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 220;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 221;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 222;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 223;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 224;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 225;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 226;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 227;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 228;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 229;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 230;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 231;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 232;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 233;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 234;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 235;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 236;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 237;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 238;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 239;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 240;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 241;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 242;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 243;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 244;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 245;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 246;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 247;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 248;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 249;4;-0.967847,-0.251541,-0.000000,-0.000000;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3;-0.000000, 1.228822,-0.000000;;, - 1;3;-0.000000, 1.228822,-0.000000;;, - 2;3; 0.000000, 1.228822,-0.000000;;, - 3;3;-0.000000, 1.228822,-0.000000;;, - 4;3; 0.000000, 1.228822, 0.000000;;, - 5;3;-0.000000, 1.228822,-0.000000;;, - 6;3;-0.000000, 1.228822,-0.000000;;, - 7;3; 0.000000, 1.228822,-0.000000;;, - 8;3; 0.000000, 1.228822, 0.000000;;, - 9;3; 0.000000, 1.228822,-0.000000;;, - 10;3; 0.000000, 1.228822,-0.000000;;, - 11;3;-0.000000, 1.228822, 0.000000;;, - 12;3; 0.000000, 1.228822,-0.000000;;, - 13;3; 0.000000, 1.228822, 0.000000;;, - 14;3; 0.000000, 1.228822,-0.000000;;, - 15;3;-0.000000, 1.228822,-0.000000;;, - 16;3; 0.000000, 1.228822,-0.000000;;, - 17;3; 0.000000, 1.228822,-0.000000;;, - 18;3; 0.000000, 1.228822,-0.000000;;, - 19;3;-0.000000, 1.228822, 0.000000;;, - 20;3;-0.000000, 1.228822, 0.000000;;, - 21;3;-0.000000, 1.228822, 0.000000;;, - 22;3;-0.000000, 1.228822,-0.000000;;, - 23;3;-0.000000, 1.228822, 0.000000;;, - 24;3;-0.000000, 1.228822,-0.000000;;, - 25;3;-0.000000, 1.228822,-0.000000;;, - 26;3; 0.000000, 1.228822, 0.000000;;, - 27;3; 0.000000, 1.228822,-0.000000;;, - 28;3; 0.000000, 1.228822, 0.000000;;, - 29;3;-0.000000, 1.228822, 0.000000;;, - 30;3; 0.000000, 1.228822, 0.000000;;, - 31;3; 0.000000, 1.228822, 0.000000;;, - 32;3; 0.000000, 1.228822,-0.000000;;, - 33;3; 0.000000, 1.228822,-0.000000;;, - 34;3; 0.000000, 1.228822,-0.000000;;, - 35;3;-0.000000, 1.228822, 0.000000;;, - 36;3;-0.000000, 1.228822, 0.000000;;, - 37;3; 0.000000, 1.228822, 0.000000;;, - 38;3;-0.000000, 1.228822,-0.000000;;, - 39;3; 0.000000, 1.228822, 0.000000;;, - 40;3;-0.000000, 1.228822, 0.000000;;, - 41;3; 0.000000, 1.228822,-0.000000;;, - 42;3; 0.000000, 1.228822, 0.000000;;, - 43;3; 0.000000, 1.228822, 0.000000;;, - 44;3; 0.000000, 1.228822, 0.000000;;, - 45;3; 0.000000, 1.228822, 0.000000;;, - 46;3;-0.000000, 1.228822,-0.000000;;, - 47;3; 0.000000, 1.228822, 0.000000;;, - 48;3; 0.000000, 1.228822, 0.000000;;, - 49;3;-0.000000, 1.228822, 0.000000;;, - 50;3; 0.000000, 1.228822, 0.000000;;, - 51;3;-0.000000, 1.228822,-0.000000;;, - 52;3; 0.000000, 1.228822, 0.000000;;, - 53;3;-0.000000, 1.228822, 0.000000;;, - 54;3;-0.000000, 1.228822,-0.000000;;, - 55;3;-0.000000, 1.228822,-0.000000;;, - 56;3; 0.000000, 1.228822,-0.000000;;, - 57;3; 0.000000, 1.228822,-0.000000;;, - 58;3; 0.000000, 1.228822,-0.000000;;, - 59;3;-0.000000, 1.228822,-0.000000;;, - 60;3; 0.000000, 1.228822, 0.000000;;, - 61;3;-0.000000, 1.228822, 0.000000;;, - 62;3; 0.000000, 1.228822,-0.000000;;, - 63;3; 0.000000, 1.228822,-0.000000;;, - 64;3;-0.000000, 1.228822, 0.000000;;, - 65;3; 0.000000, 1.228822,-0.000000;;, - 66;3;-0.000000, 1.228822, 0.000000;;, - 67;3; 0.000000, 1.228822, 0.000000;;, - 68;3; 0.000000, 1.228822, 0.000000;;, - 69;3; 0.000000, 1.228822,-0.000000;;, - 70;3; 0.000000, 1.228821, 0.000000;;, - 71;3; 0.000000, 1.228822, 0.000000;;, - 72;3;-0.000000, 1.228822,-0.000000;;, - 73;3;-0.000000, 1.228822,-0.000000;;, - 74;3; 0.000000, 1.228822,-0.000000;;, - 75;3; 0.000000, 1.228822,-0.000000;;, - 76;3; 0.000000, 1.228822, 0.000000;;, - 77;3;-0.000000, 1.228822,-0.000000;;, - 78;3; 0.000000, 1.228822, 0.000000;;, - 79;3; 0.000000, 1.228822,-0.000000;;, - 80;3; 0.000000, 1.228822,-0.000000;;, - 81;3; 0.000000, 1.228822,-0.000000;;, - 82;3; 0.000000, 1.228822, 0.000000;;, - 83;3;-0.000000, 1.228822, 0.000000;;, - 84;3; 0.000000, 1.228822,-0.000000;;, - 85;3; 0.000000, 1.228822,-0.000000;;, - 86;3;-0.000000, 1.228822,-0.000000;;, - 87;3; 0.000000, 1.228822, 0.000000;;, - 88;3;-0.000000, 1.228822, 0.000000;;, - 89;3;-0.000000, 1.228822,-0.000000;;, - 90;3;-0.000000, 1.228822, 0.000000;;, - 91;3; 0.000000, 1.228822, 0.000000;;, - 92;3; 0.000000, 1.228822, 0.000000;;, - 93;3; 0.000000, 1.228822,-0.000000;;, - 94;3;-0.000000, 1.228822, 0.000000;;, - 95;3; 0.000000, 1.228822,-0.000000;;, - 96;3;-0.000000, 1.228822, 0.000000;;, - 97;3;-0.000000, 1.228822,-0.000000;;, - 98;3; 0.000000, 1.228822,-0.000000;;, - 99;3;-0.000000, 1.228822,-0.000000;;, - 100;3;-0.000000, 1.228822, 0.000000;;, - 101;3; 0.000000, 1.228822,-0.000000;;, - 102;3;-0.000000, 1.228822, 0.000000;;, - 103;3;-0.000000, 1.228822, 0.000000;;, - 104;3;-0.000000, 1.228822, 0.000000;;, - 105;3; 0.000000, 1.228822,-0.000000;;, - 106;3; 0.000000, 1.228822, 0.000000;;, - 107;3; 0.000000, 1.228822,-0.000000;;, - 108;3;-0.000000, 1.228822, 0.000000;;, - 109;3; 0.000000, 1.228822, 0.000000;;, - 110;3; 0.000000, 1.228822,-0.000000;;, - 111;3; 0.000000, 1.228822,-0.000000;;, - 112;3;-0.000000, 1.228822,-0.000000;;, - 113;3;-0.000000, 1.228822,-0.000000;;, - 114;3; 0.000000, 1.228822,-0.000000;;, - 115;3;-0.000000, 1.228822,-0.000000;;, - 116;3;-0.000000, 1.228822, 0.000000;;, - 117;3; 0.000000, 1.228822,-0.000000;;, - 118;3;-0.000000, 1.228822, 0.000000;;, - 119;3;-0.000000, 1.228822,-0.000000;;, - 120;3;-0.000000, 1.228822, 0.000000;;, - 121;3; 0.000000, 1.228822, 0.000000;;, - 122;3;-0.000000, 1.228822, 0.000000;;, - 123;3; 0.000000, 1.228822,-0.000000;;, - 124;3; 0.000000, 1.228822, 0.000000;;, - 125;3;-0.000000, 1.228822,-0.000000;;, - 126;3; 0.000000, 1.228822, 0.000000;;, - 127;3; 0.000000, 1.228822,-0.000000;;, - 128;3; 0.000000, 1.228822,-0.000000;;, - 129;3; 0.000000, 1.228822, 0.000000;;, - 130;3; 0.000000, 1.228822, 0.000000;;, - 131;3; 0.000000, 1.228822,-0.000000;;, - 132;3; 0.000000, 1.228822, 0.000000;;, - 133;3; 0.000000, 1.228822, 0.000000;;, - 134;3;-0.000000, 1.228822, 0.000000;;, - 135;3; 0.000000, 1.228822,-0.000000;;, - 136;3;-0.000000, 1.228822,-0.000000;;, - 137;3; 0.000000, 1.228822, 0.000000;;, - 138;3; 0.000000, 1.228822,-0.000000;;, - 139;3;-0.000000, 1.228822,-0.000000;;, - 140;3; 0.000000, 1.228822, 0.000000;;, - 141;3;-0.000000, 1.228822, 0.000000;;, - 142;3; 0.000000, 1.228822,-0.000000;;, - 143;3; 0.000000, 1.228822, 0.000000;;, - 144;3; 0.000000, 1.228822, 0.000000;;, - 145;3; 0.000000, 1.228822,-0.000000;;, - 146;3;-0.000000, 1.228822,-0.000000;;, - 147;3;-0.000000, 1.228822,-0.000000;;, - 148;3; 0.000000, 1.228822,-0.000000;;, - 149;3;-0.000000, 1.228822,-0.000000;;, - 150;3; 0.000000, 1.228822, 0.000000;;, - 151;3; 0.000000, 1.228822,-0.000000;;, - 152;3;-0.000000, 1.228822,-0.000000;;, - 153;3; 0.000000, 1.228822,-0.000000;;, - 154;3; 0.000000, 1.228822, 0.000000;;, - 155;3; 0.000000, 1.228822, 0.000000;;, - 156;3; 0.000000, 1.228822, 0.000000;;, - 157;3; 0.000000, 1.228822,-0.000000;;, - 158;3;-0.000000, 1.228822, 0.000000;;, - 159;3;-0.000000, 1.228822,-0.000000;;, - 160;3;-0.000000, 1.228822,-0.000000;;, - 161;3; 0.000000, 1.228822, 0.000000;;, - 162;3; 0.000000, 1.228822,-0.000000;;, - 163;3; 0.000000, 1.228822,-0.000000;;, - 164;3; 0.000000, 1.228822,-0.000000;;, - 165;3; 0.000000, 1.228822, 0.000000;;, - 166;3; 0.000000, 1.228822, 0.000000;;, - 167;3;-0.000000, 1.228822, 0.000000;;, - 168;3; 0.000000, 1.228822, 0.000000;;, - 169;3;-0.000000, 1.228822, 0.000000;;, - 170;3; 0.000000, 1.228822, 0.000000;;, - 171;3; 0.000000, 1.228822, 0.000000;;, - 172;3;-0.000000, 1.228822,-0.000000;;, - 173;3;-0.000000, 1.228822, 0.000000;;, - 174;3;-0.000000, 1.228822,-0.000000;;, - 175;3; 0.000000, 1.228822, 0.000000;;, - 176;3;-0.000000, 1.228822, 0.000000;;, - 177;3; 0.000000, 1.228822, 0.000000;;, - 178;3;-0.000000, 1.228822, 0.000000;;, - 179;3;-0.000000, 1.228822,-0.000000;;, - 180;3;-0.000000, 1.228822,-0.000000;;, - 181;3; 0.000000, 1.228822,-0.000000;;, - 182;3; 0.000000, 1.228822,-0.000000;;, - 183;3;-0.000000, 1.228822,-0.000000;;, - 184;3;-0.000000, 1.228822,-0.000000;;, - 185;3; 0.000000, 1.228822, 0.000000;;, - 186;3;-0.000000, 1.228822, 0.000000;;, - 187;3; 0.000000, 1.228822, 0.000000;;, - 188;3;-0.000000, 1.228822,-0.000000;;, - 189;3; 0.000000, 1.228822,-0.000000;;, - 190;3;-0.000000, 1.228822,-0.000000;;, - 191;3; 0.000000, 1.228822, 0.000000;;, - 192;3;-0.000000, 1.228822,-0.000000;;, - 193;3; 0.000000, 1.228822,-0.000000;;, - 194;3;-0.000000, 1.228822,-0.000000;;, - 195;3;-0.000000, 1.228822,-0.000000;;, - 196;3;-0.000000, 1.228822,-0.000000;;, - 197;3; 0.000000, 1.228822,-0.000000;;, - 198;3;-0.000000, 1.228822, 0.000000;;, - 199;3;-0.000000, 1.228822,-0.000000;;, - 200;3;-0.000000, 1.228822,-0.000000;;, - 201;3;-0.000000, 1.228822,-0.000000;;, - 202;3;-0.000000, 1.228822,-0.000000;;, - 203;3;-0.000000, 1.228822,-0.000000;;, - 204;3;-0.000000, 1.228822,-0.000000;;, - 205;3;-0.000000, 1.228822,-0.000000;;, - 206;3;-0.000000, 1.228822,-0.000000;;, - 207;3;-0.000000, 1.228822,-0.000000;;, - 208;3;-0.000000, 1.228822,-0.000000;;, - 209;3;-0.000000, 1.228822,-0.000000;;, - 210;3;-0.000000, 1.228822,-0.000000;;, - 211;3;-0.000000, 1.228822,-0.000000;;, - 212;3;-0.000000, 1.228822,-0.000000;;, - 213;3;-0.000000, 1.228822,-0.000000;;, - 214;3;-0.000000, 1.228822,-0.000000;;, - 215;3;-0.000000, 1.228822,-0.000000;;, - 216;3;-0.000000, 1.228822,-0.000000;;, - 217;3;-0.000000, 1.228822,-0.000000;;, - 218;3;-0.000000, 1.228822,-0.000000;;, - 219;3;-0.000000, 1.228822,-0.000000;;, - 220;3;-0.000000, 1.228822,-0.000000;;, - 221;3;-0.000000, 1.228822,-0.000000;;, - 222;3;-0.000000, 1.228822,-0.000000;;, - 223;3;-0.000000, 1.228822,-0.000000;;, - 224;3;-0.000000, 1.228822,-0.000000;;, - 225;3;-0.000000, 1.228822,-0.000000;;, - 226;3;-0.000000, 1.228822,-0.000000;;, - 227;3;-0.000000, 1.228822,-0.000000;;, - 228;3;-0.000000, 1.228822,-0.000000;;, - 229;3;-0.000000, 1.228822,-0.000000;;, - 230;3;-0.000000, 1.228822,-0.000000;;, - 231;3;-0.000000, 1.228822,-0.000000;;, - 232;3;-0.000000, 1.228822,-0.000000;;, - 233;3;-0.000000, 1.228822,-0.000000;;, - 234;3;-0.000000, 1.228822,-0.000000;;, - 235;3;-0.000000, 1.228822,-0.000000;;, - 236;3;-0.000000, 1.228822,-0.000000;;, - 237;3;-0.000000, 1.228822,-0.000000;;, - 238;3;-0.000000, 1.228822,-0.000000;;, - 239;3;-0.000000, 1.228822,-0.000000;;, - 240;3;-0.000000, 1.228822,-0.000000;;, - 241;3;-0.000000, 1.228822,-0.000000;;, - 242;3;-0.000000, 1.228822,-0.000000;;, - 243;3;-0.000000, 1.228822,-0.000000;;, - 244;3;-0.000000, 1.228822,-0.000000;;, - 245;3;-0.000000, 1.228822,-0.000000;;, - 246;3;-0.000000, 1.228822,-0.000000;;, - 247;3;-0.000000, 1.228822,-0.000000;;, - 248;3;-0.000000, 1.228822,-0.000000;;, - 249;3;-0.000000, 1.228822,-0.000000;;; - } - } - Animation { - {Armature_Bone_016} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 1;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 2;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 3;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 4;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 5;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 6;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 7;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 8;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 9;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 10;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 11;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 12;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 13;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 14;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 15;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 16;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 17;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 18;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 19;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 20;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 21;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 22;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 23;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 24;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 25;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 26;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 27;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 28;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 29;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 30;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 31;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 32;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 33;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 34;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 35;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 36;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 37;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 38;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 39;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 40;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 41;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 42;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 43;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 44;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 45;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 46;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 47;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 48;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 49;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 50;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 51;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 52;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 53;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 54;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 55;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 56;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 57;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 58;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 59;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 60;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 61;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 62;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 63;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 64;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 65;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 66;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 67;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 68;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 69;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 70;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 71;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 72;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 73;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 74;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 75;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 76;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 77;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 78;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 79;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 80;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 81;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 82;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 83;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 84;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 85;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 86;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 87;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 88;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 89;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 90;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 91;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 92;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 93;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 94;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 95;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 96;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 97;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 98;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 99;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 100;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 101;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 102;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 103;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 104;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 105;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 106;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 107;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 108;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 109;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 110;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 111;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 112;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 113;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 114;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 115;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 116;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 117;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 118;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 119;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 120;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 121;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 122;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 123;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 124;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 125;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 126;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 127;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 128;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 129;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 130;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 131;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 132;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 133;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 134;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 135;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 136;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 137;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 138;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 139;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 140;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 141;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 142;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 143;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 144;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 145;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 146;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 147;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 148;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 149;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 150;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 151;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 152;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 153;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 154;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 155;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 156;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 157;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 158;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 159;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 160;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 161;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 162;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 163;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 164;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 165;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 166;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 167;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 168;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 169;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 170;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 171;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 172;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 173;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 174;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 175;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 176;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 177;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 178;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 179;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 180;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 181;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 182;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 183;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 184;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 185;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 186;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 187;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 188;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 189;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 190;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 191;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 192;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 193;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 194;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 195;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 196;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 197;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 198;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 199;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 200;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 201;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 202;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 203;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 204;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 205;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 206;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 207;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 208;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 209;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 210;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 211;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 212;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 213;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 214;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 215;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 216;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 217;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 218;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 219;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 220;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 221;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 222;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 223;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 224;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 225;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 226;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 227;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 228;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 229;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 230;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 231;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 232;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 233;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 234;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 235;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 236;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 237;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 238;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 239;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 240;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 241;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 242;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 243;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 244;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 245;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 246;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 247;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 248;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 249;4;-0.524827,-0.000000,-0.000000,-0.851209;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3; 0.000000, 0.826434, 0.000000;;, - 1;3; 0.000000, 0.826434, 0.000000;;, - 2;3; 0.000000, 0.826434, 0.000000;;, - 3;3; 0.000000, 0.826434, 0.000000;;, - 4;3; 0.000000, 0.826434, 0.000000;;, - 5;3; 0.000000, 0.826434, 0.000000;;, - 6;3; 0.000000, 0.826434, 0.000000;;, - 7;3; 0.000000, 0.826434, 0.000000;;, - 8;3; 0.000000, 0.826434, 0.000000;;, - 9;3; 0.000000, 0.826434, 0.000000;;, - 10;3; 0.000000, 0.826434, 0.000000;;, - 11;3; 0.000000, 0.826434, 0.000000;;, - 12;3; 0.000000, 0.826434, 0.000000;;, - 13;3; 0.000000, 0.826434, 0.000000;;, - 14;3; 0.000000, 0.826434, 0.000000;;, - 15;3; 0.000000, 0.826434, 0.000000;;, - 16;3; 0.000000, 0.826434, 0.000000;;, - 17;3; 0.000000, 0.826434, 0.000000;;, - 18;3; 0.000000, 0.826434, 0.000000;;, - 19;3; 0.000000, 0.826434, 0.000000;;, - 20;3; 0.000000, 0.826434, 0.000000;;, - 21;3; 0.000000, 0.826434, 0.000000;;, - 22;3; 0.000000, 0.826434, 0.000000;;, - 23;3; 0.000000, 0.826434, 0.000000;;, - 24;3; 0.000000, 0.826434, 0.000000;;, - 25;3; 0.000000, 0.826434, 0.000000;;, - 26;3; 0.000000, 0.826434, 0.000000;;, - 27;3; 0.000000, 0.826434, 0.000000;;, - 28;3; 0.000000, 0.826434, 0.000000;;, - 29;3; 0.000000, 0.826434, 0.000000;;, - 30;3; 0.000000, 0.826434, 0.000000;;, - 31;3; 0.000000, 0.826434, 0.000000;;, - 32;3; 0.000000, 0.826434, 0.000000;;, - 33;3; 0.000000, 0.826434, 0.000000;;, - 34;3; 0.000000, 0.826434, 0.000000;;, - 35;3; 0.000000, 0.826434, 0.000000;;, - 36;3; 0.000000, 0.826434, 0.000000;;, - 37;3; 0.000000, 0.826434, 0.000000;;, - 38;3; 0.000000, 0.826434, 0.000000;;, - 39;3; 0.000000, 0.826434, 0.000000;;, - 40;3; 0.000000, 0.826434, 0.000000;;, - 41;3; 0.000000, 0.826434, 0.000000;;, - 42;3; 0.000000, 0.826434, 0.000000;;, - 43;3; 0.000000, 0.826434, 0.000000;;, - 44;3; 0.000000, 0.826434, 0.000000;;, - 45;3; 0.000000, 0.826434, 0.000000;;, - 46;3; 0.000000, 0.826434, 0.000000;;, - 47;3; 0.000000, 0.826434, 0.000000;;, - 48;3; 0.000000, 0.826434, 0.000000;;, - 49;3; 0.000000, 0.826434, 0.000000;;, - 50;3; 0.000000, 0.826434, 0.000000;;, - 51;3; 0.000000, 0.826434, 0.000000;;, - 52;3; 0.000000, 0.826434, 0.000000;;, - 53;3; 0.000000, 0.826434, 0.000000;;, - 54;3; 0.000000, 0.826434, 0.000000;;, - 55;3; 0.000000, 0.826434, 0.000000;;, - 56;3; 0.000000, 0.826434, 0.000000;;, - 57;3; 0.000000, 0.826434, 0.000000;;, - 58;3; 0.000000, 0.826434, 0.000000;;, - 59;3; 0.000000, 0.826434, 0.000000;;, - 60;3; 0.000000, 0.826434, 0.000000;;, - 61;3; 0.000000, 0.826434, 0.000000;;, - 62;3; 0.000000, 0.826434, 0.000000;;, - 63;3; 0.000000, 0.826434, 0.000000;;, - 64;3; 0.000000, 0.826434, 0.000000;;, - 65;3; 0.000000, 0.826434, 0.000000;;, - 66;3; 0.000000, 0.826434, 0.000000;;, - 67;3; 0.000000, 0.826434, 0.000000;;, - 68;3; 0.000000, 0.826434, 0.000000;;, - 69;3; 0.000000, 0.826434, 0.000000;;, - 70;3; 0.000000, 0.826434, 0.000000;;, - 71;3; 0.000000, 0.826434, 0.000000;;, - 72;3; 0.000000, 0.826434, 0.000000;;, - 73;3; 0.000000, 0.826434, 0.000000;;, - 74;3; 0.000000, 0.826434, 0.000000;;, - 75;3; 0.000000, 0.826434, 0.000000;;, - 76;3; 0.000000, 0.826434, 0.000000;;, - 77;3; 0.000000, 0.826434, 0.000000;;, - 78;3; 0.000000, 0.826434, 0.000000;;, - 79;3; 0.000000, 0.826434, 0.000000;;, - 80;3; 0.000000, 0.826434, 0.000000;;, - 81;3; 0.000000, 0.826434, 0.000000;;, - 82;3; 0.000000, 0.826434, 0.000000;;, - 83;3; 0.000000, 0.826434, 0.000000;;, - 84;3; 0.000000, 0.826434, 0.000000;;, - 85;3; 0.000000, 0.826434, 0.000000;;, - 86;3; 0.000000, 0.826434, 0.000000;;, - 87;3; 0.000000, 0.826434, 0.000000;;, - 88;3; 0.000000, 0.826434, 0.000000;;, - 89;3; 0.000000, 0.826434, 0.000000;;, - 90;3; 0.000000, 0.826434, 0.000000;;, - 91;3; 0.000000, 0.826434, 0.000000;;, - 92;3; 0.000000, 0.826434, 0.000000;;, - 93;3; 0.000000, 0.826434, 0.000000;;, - 94;3; 0.000000, 0.826434, 0.000000;;, - 95;3; 0.000000, 0.826434, 0.000000;;, - 96;3; 0.000000, 0.826434, 0.000000;;, - 97;3; 0.000000, 0.826434, 0.000000;;, - 98;3; 0.000000, 0.826434, 0.000000;;, - 99;3; 0.000000, 0.826434, 0.000000;;, - 100;3; 0.000000, 0.826434, 0.000000;;, - 101;3; 0.000000, 0.826434, 0.000000;;, - 102;3; 0.000000, 0.826434, 0.000000;;, - 103;3; 0.000000, 0.826434, 0.000000;;, - 104;3; 0.000000, 0.826434, 0.000000;;, - 105;3; 0.000000, 0.826434, 0.000000;;, - 106;3; 0.000000, 0.826434, 0.000000;;, - 107;3; 0.000000, 0.826434, 0.000000;;, - 108;3; 0.000000, 0.826434, 0.000000;;, - 109;3; 0.000000, 0.826434, 0.000000;;, - 110;3; 0.000000, 0.826434, 0.000000;;, - 111;3; 0.000000, 0.826434, 0.000000;;, - 112;3; 0.000000, 0.826434, 0.000000;;, - 113;3; 0.000000, 0.826434, 0.000000;;, - 114;3; 0.000000, 0.826434, 0.000000;;, - 115;3; 0.000000, 0.826434, 0.000000;;, - 116;3; 0.000000, 0.826434, 0.000000;;, - 117;3; 0.000000, 0.826434, 0.000000;;, - 118;3; 0.000000, 0.826434, 0.000000;;, - 119;3; 0.000000, 0.826434, 0.000000;;, - 120;3; 0.000000, 0.826434, 0.000000;;, - 121;3; 0.000000, 0.826434, 0.000000;;, - 122;3; 0.000000, 0.826434, 0.000000;;, - 123;3; 0.000000, 0.826434, 0.000000;;, - 124;3; 0.000000, 0.826434, 0.000000;;, - 125;3; 0.000000, 0.826434, 0.000000;;, - 126;3; 0.000000, 0.826434, 0.000000;;, - 127;3; 0.000000, 0.826434, 0.000000;;, - 128;3; 0.000000, 0.826434, 0.000000;;, - 129;3; 0.000000, 0.826434, 0.000000;;, - 130;3; 0.000000, 0.826434, 0.000000;;, - 131;3; 0.000000, 0.826434, 0.000000;;, - 132;3; 0.000000, 0.826434, 0.000000;;, - 133;3; 0.000000, 0.826434, 0.000000;;, - 134;3; 0.000000, 0.826434, 0.000000;;, - 135;3; 0.000000, 0.826434, 0.000000;;, - 136;3; 0.000000, 0.826434, 0.000000;;, - 137;3; 0.000000, 0.826434, 0.000000;;, - 138;3; 0.000000, 0.826434, 0.000000;;, - 139;3; 0.000000, 0.826434, 0.000000;;, - 140;3; 0.000000, 0.826434, 0.000000;;, - 141;3; 0.000000, 0.826434, 0.000000;;, - 142;3; 0.000000, 0.826434, 0.000000;;, - 143;3; 0.000000, 0.826434, 0.000000;;, - 144;3; 0.000000, 0.826434, 0.000000;;, - 145;3; 0.000000, 0.826434, 0.000000;;, - 146;3; 0.000000, 0.826434, 0.000000;;, - 147;3; 0.000000, 0.826434, 0.000000;;, - 148;3; 0.000000, 0.826434, 0.000000;;, - 149;3; 0.000000, 0.826434, 0.000000;;, - 150;3; 0.000000, 0.826434, 0.000000;;, - 151;3; 0.000000, 0.826434, 0.000000;;, - 152;3; 0.000000, 0.826434, 0.000000;;, - 153;3; 0.000000, 0.826434, 0.000000;;, - 154;3; 0.000000, 0.826434, 0.000000;;, - 155;3; 0.000000, 0.826434, 0.000000;;, - 156;3; 0.000000, 0.826434, 0.000000;;, - 157;3; 0.000000, 0.826434, 0.000000;;, - 158;3; 0.000000, 0.826434, 0.000000;;, - 159;3; 0.000000, 0.826434, 0.000000;;, - 160;3; 0.000000, 0.826434, 0.000000;;, - 161;3; 0.000000, 0.826434, 0.000000;;, - 162;3; 0.000000, 0.826434, 0.000000;;, - 163;3; 0.000000, 0.826434, 0.000000;;, - 164;3; 0.000000, 0.826434, 0.000000;;, - 165;3; 0.000000, 0.826434, 0.000000;;, - 166;3; 0.000000, 0.826434, 0.000000;;, - 167;3; 0.000000, 0.826434, 0.000000;;, - 168;3; 0.000000, 0.826434, 0.000000;;, - 169;3; 0.000000, 0.826434, 0.000000;;, - 170;3; 0.000000, 0.826434, 0.000000;;, - 171;3; 0.000000, 0.826434, 0.000000;;, - 172;3; 0.000000, 0.826434, 0.000000;;, - 173;3; 0.000000, 0.826434, 0.000000;;, - 174;3; 0.000000, 0.826434, 0.000000;;, - 175;3; 0.000000, 0.826434, 0.000000;;, - 176;3; 0.000000, 0.826434, 0.000000;;, - 177;3; 0.000000, 0.826434, 0.000000;;, - 178;3; 0.000000, 0.826434, 0.000000;;, - 179;3; 0.000000, 0.826434, 0.000000;;, - 180;3; 0.000000, 0.826434, 0.000000;;, - 181;3; 0.000000, 0.826434, 0.000000;;, - 182;3; 0.000000, 0.826434, 0.000000;;, - 183;3; 0.000000, 0.826434, 0.000000;;, - 184;3; 0.000000, 0.826434, 0.000000;;, - 185;3; 0.000000, 0.826434, 0.000000;;, - 186;3;-0.000000, 0.826434,-0.000000;;, - 187;3;-0.000000, 0.826434,-0.000000;;, - 188;3;-0.000000, 0.826434, 0.000000;;, - 189;3;-0.000000, 0.826434, 0.000000;;, - 190;3;-0.000000, 0.826434,-0.000000;;, - 191;3; 0.000000, 0.826434, 0.000000;;, - 192;3; 0.000000, 0.826434, 0.000000;;, - 193;3; 0.000000, 0.826434, 0.000000;;, - 194;3; 0.000000, 0.826434,-0.000000;;, - 195;3; 0.000000, 0.826434,-0.000000;;, - 196;3; 0.000000, 0.826434, 0.000000;;, - 197;3; 0.000000, 0.826434,-0.000000;;, - 198;3; 0.000000, 0.826434,-0.000000;;, - 199;3; 0.000000, 0.826434, 0.000000;;, - 200;3; 0.000000, 0.826434, 0.000000;;, - 201;3; 0.000000, 0.826434, 0.000000;;, - 202;3; 0.000000, 0.826434, 0.000000;;, - 203;3; 0.000000, 0.826434, 0.000000;;, - 204;3; 0.000000, 0.826434, 0.000000;;, - 205;3; 0.000000, 0.826434, 0.000000;;, - 206;3; 0.000000, 0.826434, 0.000000;;, - 207;3; 0.000000, 0.826434, 0.000000;;, - 208;3; 0.000000, 0.826434, 0.000000;;, - 209;3; 0.000000, 0.826434, 0.000000;;, - 210;3; 0.000000, 0.826434, 0.000000;;, - 211;3; 0.000000, 0.826434, 0.000000;;, - 212;3; 0.000000, 0.826434, 0.000000;;, - 213;3; 0.000000, 0.826434, 0.000000;;, - 214;3; 0.000000, 0.826434, 0.000000;;, - 215;3; 0.000000, 0.826434, 0.000000;;, - 216;3; 0.000000, 0.826434, 0.000000;;, - 217;3; 0.000000, 0.826434, 0.000000;;, - 218;3; 0.000000, 0.826434, 0.000000;;, - 219;3; 0.000000, 0.826434, 0.000000;;, - 220;3; 0.000000, 0.826434, 0.000000;;, - 221;3; 0.000000, 0.826434, 0.000000;;, - 222;3; 0.000000, 0.826434, 0.000000;;, - 223;3; 0.000000, 0.826434, 0.000000;;, - 224;3; 0.000000, 0.826434, 0.000000;;, - 225;3; 0.000000, 0.826434, 0.000000;;, - 226;3; 0.000000, 0.826434, 0.000000;;, - 227;3; 0.000000, 0.826434, 0.000000;;, - 228;3; 0.000000, 0.826434, 0.000000;;, - 229;3; 0.000000, 0.826434, 0.000000;;, - 230;3; 0.000000, 0.826434, 0.000000;;, - 231;3; 0.000000, 0.826434, 0.000000;;, - 232;3; 0.000000, 0.826434, 0.000000;;, - 233;3; 0.000000, 0.826434, 0.000000;;, - 234;3; 0.000000, 0.826434, 0.000000;;, - 235;3; 0.000000, 0.826434, 0.000000;;, - 236;3; 0.000000, 0.826434, 0.000000;;, - 237;3; 0.000000, 0.826434, 0.000000;;, - 238;3; 0.000000, 0.826434, 0.000000;;, - 239;3; 0.000000, 0.826434, 0.000000;;, - 240;3; 0.000000, 0.826434, 0.000000;;, - 241;3; 0.000000, 0.826434, 0.000000;;, - 242;3; 0.000000, 0.826434, 0.000000;;, - 243;3; 0.000000, 0.826434, 0.000000;;, - 244;3; 0.000000, 0.826434, 0.000000;;, - 245;3; 0.000000, 0.826434, 0.000000;;, - 246;3; 0.000000, 0.826434, 0.000000;;, - 247;3; 0.000000, 0.826434, 0.000000;;, - 248;3; 0.000000, 0.826434, 0.000000;;, - 249;3; 0.000000, 0.826434, 0.000000;;; - } - } - Animation { - {Armature_Bone_020} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 1;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 2;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 3;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 4;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 5;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 6;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 7;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 8;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 9;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 10;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 11;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 12;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 13;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 14;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 15;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 16;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 17;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 18;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 19;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 20;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 21;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 22;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 23;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 24;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 25;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 26;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 27;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 28;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 29;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 30;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 31;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 32;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 33;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 34;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 35;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 36;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 37;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 38;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 39;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 40;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 41;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 42;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 43;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 44;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 45;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 46;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 47;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 48;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 49;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 50;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 51;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 52;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 53;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 54;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 55;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 56;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 57;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 58;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 59;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 60;4;-0.969660, 0.172274, 0.032946, 0.170275;;, - 61;4;-0.969685, 0.172117, 0.032898, 0.170282;;, - 62;4;-0.969726, 0.171854, 0.032820, 0.170295;;, - 63;4;-0.969784, 0.171485, 0.032709, 0.170312;;, - 64;4;-0.969860, 0.171010, 0.032566, 0.170335;;, - 65;4;-0.969951, 0.170429, 0.032392, 0.170362;;, - 66;4;-0.970059, 0.169743, 0.032186, 0.170394;;, - 67;4;-0.970184, 0.168955, 0.031949, 0.170431;;, - 68;4;-0.970324, 0.168067, 0.031683, 0.170473;;, - 69;4;-0.970479, 0.167082, 0.031387, 0.170519;;, - 70;4;-0.970649, 0.166005, 0.031064, 0.170570;;, - 71;4;-0.970833, 0.164841, 0.030715, 0.170625;;, - 72;4;-0.971029, 0.163597, 0.030341, 0.170683;;, - 73;4;-0.971237, 0.162280, 0.029946, 0.170745;;, - 74;4;-0.971455, 0.160898, 0.029531, 0.170810;;, - 75;4;-0.971682, 0.159460, 0.029100, 0.170878;;, - 76;4;-0.971916, 0.157977, 0.028655, 0.170948;;, - 77;4;-0.972156, 0.156459, 0.028199, 0.171019;;, - 78;4;-0.972399, 0.154918, 0.027736, 0.171092;;, - 79;4;-0.972644, 0.153364, 0.027270, 0.171165;;, - 80;4;-0.972889, 0.151811, 0.026804, 0.171238;;, - 81;4;-0.973133, 0.150270, 0.026341, 0.171311;;, - 82;4;-0.973372, 0.148752, 0.025886, 0.171382;;, - 83;4;-0.973606, 0.147268, 0.025441, 0.171452;;, - 84;4;-0.973833, 0.145831, 0.025009, 0.171519;;, - 85;4;-0.974051, 0.144449, 0.024594, 0.171584;;, - 86;4;-0.974259, 0.143132, 0.024199, 0.171646;;, - 87;4;-0.974455, 0.141887, 0.023826, 0.171705;;, - 88;4;-0.974639, 0.140724, 0.023476, 0.171760;;, - 89;4;-0.974809, 0.139647, 0.023153, 0.171810;;, - 90;4;-0.974964, 0.138662, 0.022857, 0.171857;;, - 91;4;-0.975105, 0.137773, 0.022591, 0.171899;;, - 92;4;-0.975229, 0.136985, 0.022354, 0.171936;;, - 93;4;-0.975337, 0.136299, 0.022148, 0.171968;;, - 94;4;-0.975429, 0.135718, 0.021974, 0.171995;;, - 95;4;-0.975504, 0.135243, 0.021831, 0.172018;;, - 96;4;-0.975562, 0.134874, 0.021721, 0.172035;;, - 97;4;-0.975604, 0.134611, 0.021642, 0.172047;;, - 98;4;-0.975628, 0.134454, 0.021595, 0.172055;;, - 99;4;-0.975637, 0.134402, 0.021579, 0.172057;;, - 100;4;-0.975372, 0.135547, 0.021924, 0.171988;;, - 101;4;-0.974549, 0.139101, 0.022996, 0.171774;;, - 102;4;-0.973151, 0.145140, 0.024817, 0.171410;;, - 103;4;-0.971214, 0.153508, 0.027340, 0.170906;;, - 104;4;-0.968842, 0.163754, 0.030429, 0.170289;;, - 105;4;-0.966204, 0.175152, 0.033866, 0.169602;;, - 106;4;-0.963493, 0.186862, 0.037397, 0.168897;;, - 107;4;-0.960885, 0.198129, 0.040794, 0.168218;;, - 108;4;-0.958504, 0.208414, 0.043895, 0.167599;;, - 109;4;-0.956421, 0.217410, 0.046607, 0.167057;;, - 110;4;-0.954474, 0.225951, 0.049182, 0.166547;;, - 111;4;-0.952480, 0.234935, 0.051889, 0.166019;;, - 112;4;-0.950450, 0.244258, 0.054698, 0.165477;;, - 113;4;-0.948403, 0.253734, 0.057552, 0.164929;;, - 114;4;-0.946368, 0.263102, 0.060374, 0.164386;;, - 115;4;-0.944376, 0.272073, 0.063078, 0.163858;;, - 116;4;-0.942451, 0.280397, 0.065587, 0.163357;;, - 117;4;-0.940613, 0.287918, 0.067857, 0.162889;;, - 118;4;-0.938865, 0.294583, 0.069871, 0.162456;;, - 119;4;-0.937206, 0.300418, 0.071636, 0.162056;;, - 120;4;-0.935522, 0.305681, 0.073231, 0.161659;;, - 121;4;-0.933726, 0.310514, 0.074701, 0.161241;;, - 122;4;-0.931869, 0.314796, 0.076009, 0.160815;;, - 123;4;-0.930028, 0.318414, 0.077118, 0.160399;;, - 124;4;-0.928306, 0.321287, 0.078005, 0.160019;;, - 125;4;-0.926808, 0.323405, 0.078663, 0.159697;;, - 126;4;-0.925614, 0.324832, 0.079109, 0.159453;;, - 127;4;-0.924769, 0.325687, 0.079379, 0.159295;;, - 128;4;-0.924276, 0.326109, 0.079513, 0.159222;;, - 129;4;-0.924113, 0.326225, 0.079551, 0.159227;;, - 130;4;-0.925247, 0.321972, 0.078266, 0.159548;;, - 131;4;-0.928679, 0.309174, 0.074398, 0.160428;;, - 132;4;-0.934265, 0.288365, 0.068109, 0.161831;;, - 133;4;-0.941576, 0.261147, 0.059883, 0.163651;;, - 134;4;-0.949860, 0.230314, 0.050565, 0.165704;;, - 135;4;-0.958146, 0.199480, 0.041247, 0.167750;;, - 136;4;-0.965461, 0.172263, 0.033021, 0.169554;;, - 137;4;-0.971053, 0.151453, 0.026732, 0.170930;;, - 138;4;-0.974494, 0.138655, 0.022864, 0.171776;;, - 139;4;-0.975637, 0.134402, 0.021579, 0.172057;;, - 140;4;-0.974549, 0.139101, 0.022996, 0.171774;;, - 141;4;-0.971214, 0.153508, 0.027340, 0.170906;;, - 142;4;-0.966204, 0.175152, 0.033866, 0.169602;;, - 143;4;-0.960885, 0.198129, 0.040794, 0.168218;;, - 144;4;-0.956421, 0.217410, 0.046607, 0.167057;;, - 145;4;-0.952480, 0.234935, 0.051889, 0.166019;;, - 146;4;-0.948403, 0.253734, 0.057552, 0.164929;;, - 147;4;-0.944376, 0.272073, 0.063078, 0.163858;;, - 148;4;-0.940613, 0.287918, 0.067857, 0.162889;;, - 149;4;-0.937206, 0.300418, 0.071636, 0.162056;;, - 150;4;-0.933726, 0.310514, 0.074701, 0.161241;;, - 151;4;-0.930028, 0.318414, 0.077118, 0.160399;;, - 152;4;-0.926808, 0.323405, 0.078663, 0.159697;;, - 153;4;-0.924769, 0.325687, 0.079379, 0.159295;;, - 154;4;-0.924113, 0.326225, 0.079551, 0.159227;;, - 155;4;-0.928679, 0.309174, 0.074398, 0.160428;;, - 156;4;-0.941576, 0.261147, 0.059883, 0.163651;;, - 157;4;-0.958146, 0.199480, 0.041247, 0.167750;;, - 158;4;-0.971053, 0.151453, 0.026732, 0.170930;;, - 159;4;-0.975637, 0.134402, 0.021579, 0.172057;;, - 160;4;-0.975636, 0.134611, 0.021642, 0.172057;;, - 161;4;-0.975632, 0.135243, 0.021831, 0.172056;;, - 162;4;-0.975622, 0.136299, 0.022149, 0.172053;;, - 163;4;-0.975600, 0.137773, 0.022591, 0.172046;;, - 164;4;-0.975560, 0.139647, 0.023153, 0.172034;;, - 165;4;-0.975498, 0.141887, 0.023826, 0.172016;;, - 166;4;-0.975406, 0.144449, 0.024594, 0.171989;;, - 167;4;-0.975279, 0.147268, 0.025441, 0.171950;;, - 168;4;-0.975108, 0.150270, 0.026341, 0.171900;;, - 169;4;-0.974889, 0.153364, 0.027270, 0.171834;;, - 170;4;-0.974616, 0.156459, 0.028199, 0.171753;;, - 171;4;-0.974286, 0.159460, 0.029100, 0.171654;;, - 172;4;-0.973897, 0.162280, 0.029946, 0.171538;;, - 173;4;-0.973449, 0.164841, 0.030715, 0.171405;;, - 174;4;-0.972943, 0.167082, 0.031387, 0.171254;;, - 175;4;-0.972382, 0.168955, 0.031949, 0.171087;;, - 176;4;-0.971768, 0.170429, 0.032392, 0.170904;;, - 177;4;-0.971106, 0.171485, 0.032709, 0.170706;;, - 178;4;-0.970399, 0.172117, 0.032898, 0.170495;;, - 179;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 180;4;-0.965531, 0.168065, 0.019598, 0.168830;;, - 181;4;-0.954679, 0.155242,-0.020619, 0.164950;;, - 182;4;-0.937538, 0.134391,-0.086010, 0.158793;;, - 183;4;-0.915398, 0.107120,-0.171538, 0.150822;;, - 184;4;-0.890490, 0.076225,-0.268428, 0.141844;;, - 185;4;-0.865687, 0.045331,-0.365317, 0.132897;;, - 186;4;-0.843856, 0.018060,-0.450846, 0.125019;;, - 187;4;-0.827198,-0.002791,-0.516237, 0.119005;;, - 188;4;-0.816967,-0.015614,-0.556454, 0.115311;;, - 189;4;-0.813572,-0.019875,-0.569817, 0.114084;;, - 190;4;-0.827046,-0.023230,-0.534655, 0.125702;;, - 191;4;-0.865000,-0.031081,-0.432377, 0.158428;;, - 192;4;-0.913733,-0.036874,-0.292359, 0.200447;;, - 193;4;-0.951687,-0.033040,-0.166392, 0.233173;;, - 194;4;-0.965162,-0.016514,-0.090924, 0.244791;;, - 195;4;-0.965561, 0.016499,-0.047013, 0.238167;;, - 196;4;-0.966685, 0.066771,-0.009930, 0.219510;;, - 197;4;-0.968129, 0.120606, 0.015961, 0.195554;;, - 198;4;-0.969253, 0.159193, 0.029356, 0.176896;;, - 199;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 200;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 201;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 202;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 203;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 204;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 205;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 206;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 207;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 208;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 209;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 210;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 211;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 212;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 213;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 214;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 215;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 216;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 217;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 218;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 219;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 220;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 221;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 222;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 223;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 224;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 225;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 226;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 227;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 228;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 229;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 230;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 231;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 232;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 233;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 234;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 235;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 236;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 237;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 238;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 239;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 240;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 241;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 242;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 243;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 244;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 245;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 246;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 247;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 248;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 249;4;-0.969652, 0.172326, 0.032961, 0.170273;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3; 0.000000, 0.683319, 0.000000;;, - 1;3; 0.000000, 0.683319, 0.000000;;, - 2;3; 0.000000, 0.683319, 0.000000;;, - 3;3; 0.000000, 0.683319, 0.000000;;, - 4;3; 0.000000, 0.683319, 0.000000;;, - 5;3; 0.000000, 0.683319, 0.000000;;, - 6;3; 0.000000, 0.683319, 0.000000;;, - 7;3; 0.000000, 0.683319, 0.000000;;, - 8;3; 0.000000, 0.683319, 0.000000;;, - 9;3; 0.000000, 0.683319, 0.000000;;, - 10;3; 0.000000, 0.683319, 0.000000;;, - 11;3; 0.000000, 0.683319, 0.000000;;, - 12;3; 0.000000, 0.683319, 0.000000;;, - 13;3; 0.000000, 0.683319, 0.000000;;, - 14;3; 0.000000, 0.683319, 0.000000;;, - 15;3; 0.000000, 0.683319, 0.000000;;, - 16;3; 0.000000, 0.683319, 0.000000;;, - 17;3; 0.000000, 0.683319, 0.000000;;, - 18;3; 0.000000, 0.683319, 0.000000;;, - 19;3; 0.000000, 0.683319, 0.000000;;, - 20;3; 0.000000, 0.683319, 0.000000;;, - 21;3; 0.000000, 0.683319, 0.000000;;, - 22;3; 0.000000, 0.683319, 0.000000;;, - 23;3; 0.000000, 0.683319, 0.000000;;, - 24;3; 0.000000, 0.683319, 0.000000;;, - 25;3; 0.000000, 0.683319, 0.000000;;, - 26;3; 0.000000, 0.683319, 0.000000;;, - 27;3; 0.000000, 0.683319, 0.000000;;, - 28;3; 0.000000, 0.683319, 0.000000;;, - 29;3; 0.000000, 0.683319, 0.000000;;, - 30;3; 0.000000, 0.683319, 0.000000;;, - 31;3; 0.000000, 0.683319, 0.000000;;, - 32;3; 0.000000, 0.683319, 0.000000;;, - 33;3; 0.000000, 0.683319, 0.000000;;, - 34;3; 0.000000, 0.683319, 0.000000;;, - 35;3; 0.000000, 0.683319, 0.000000;;, - 36;3; 0.000000, 0.683319, 0.000000;;, - 37;3; 0.000000, 0.683319, 0.000000;;, - 38;3; 0.000000, 0.683319, 0.000000;;, - 39;3; 0.000000, 0.683319, 0.000000;;, - 40;3; 0.000000, 0.683319, 0.000000;;, - 41;3; 0.000000, 0.683319, 0.000000;;, - 42;3; 0.000000, 0.683319, 0.000000;;, - 43;3; 0.000000, 0.683319, 0.000000;;, - 44;3; 0.000000, 0.683319, 0.000000;;, - 45;3; 0.000000, 0.683319, 0.000000;;, - 46;3; 0.000000, 0.683319, 0.000000;;, - 47;3; 0.000000, 0.683319, 0.000000;;, - 48;3; 0.000000, 0.683319, 0.000000;;, - 49;3; 0.000000, 0.683319, 0.000000;;, - 50;3; 0.000000, 0.683319, 0.000000;;, - 51;3; 0.000000, 0.683319, 0.000000;;, - 52;3; 0.000000, 0.683319, 0.000000;;, - 53;3; 0.000000, 0.683319, 0.000000;;, - 54;3; 0.000000, 0.683319, 0.000000;;, - 55;3; 0.000000, 0.683319, 0.000000;;, - 56;3; 0.000000, 0.683319, 0.000000;;, - 57;3; 0.000000, 0.683319, 0.000000;;, - 58;3; 0.000000, 0.683319, 0.000000;;, - 59;3; 0.000000, 0.683319, 0.000000;;, - 60;3; 0.000000, 0.683319, 0.000000;;, - 61;3; 0.000000, 0.683319, 0.000000;;, - 62;3; 0.000000, 0.683319, 0.000000;;, - 63;3; 0.000000, 0.683319, 0.000000;;, - 64;3; 0.000000, 0.683319, 0.000000;;, - 65;3; 0.000000, 0.683319, 0.000000;;, - 66;3; 0.000000, 0.683319, 0.000000;;, - 67;3; 0.000000, 0.683319, 0.000000;;, - 68;3; 0.000000, 0.683319, 0.000000;;, - 69;3; 0.000000, 0.683319, 0.000000;;, - 70;3; 0.000000, 0.683319, 0.000000;;, - 71;3; 0.000000, 0.683319, 0.000000;;, - 72;3; 0.000000, 0.683319, 0.000000;;, - 73;3; 0.000000, 0.683319, 0.000000;;, - 74;3; 0.000000, 0.683319, 0.000000;;, - 75;3; 0.000000, 0.683319, 0.000000;;, - 76;3; 0.000000, 0.683319, 0.000000;;, - 77;3; 0.000000, 0.683319, 0.000000;;, - 78;3; 0.000000, 0.683319, 0.000000;;, - 79;3; 0.000000, 0.683319, 0.000000;;, - 80;3; 0.000000, 0.683319, 0.000000;;, - 81;3; 0.000000, 0.683319, 0.000000;;, - 82;3; 0.000000, 0.683319, 0.000000;;, - 83;3; 0.000000, 0.683319, 0.000000;;, - 84;3; 0.000000, 0.683319, 0.000000;;, - 85;3; 0.000000, 0.683319, 0.000000;;, - 86;3; 0.000000, 0.683319, 0.000000;;, - 87;3; 0.000000, 0.683319, 0.000000;;, - 88;3; 0.000000, 0.683319, 0.000000;;, - 89;3; 0.000000, 0.683319, 0.000000;;, - 90;3; 0.000000, 0.683319, 0.000000;;, - 91;3; 0.000000, 0.683319, 0.000000;;, - 92;3; 0.000000, 0.683319, 0.000000;;, - 93;3; 0.000000, 0.683319, 0.000000;;, - 94;3; 0.000000, 0.683319, 0.000000;;, - 95;3; 0.000000, 0.683319, 0.000000;;, - 96;3; 0.000000, 0.683319, 0.000000;;, - 97;3; 0.000000, 0.683319, 0.000000;;, - 98;3; 0.000000, 0.683319, 0.000000;;, - 99;3; 0.000000, 0.683319, 0.000000;;, - 100;3; 0.000000, 0.683319, 0.000000;;, - 101;3; 0.000000, 0.683319, 0.000000;;, - 102;3; 0.000000, 0.683319, 0.000000;;, - 103;3; 0.000000, 0.683319, 0.000000;;, - 104;3; 0.000000, 0.683319, 0.000000;;, - 105;3; 0.000000, 0.683319, 0.000000;;, - 106;3; 0.000000, 0.683319, 0.000000;;, - 107;3; 0.000000, 0.683319, 0.000000;;, - 108;3; 0.000000, 0.683319, 0.000000;;, - 109;3; 0.000000, 0.683319, 0.000000;;, - 110;3; 0.000000, 0.683319, 0.000000;;, - 111;3; 0.000000, 0.683319, 0.000000;;, - 112;3; 0.000000, 0.683319, 0.000000;;, - 113;3; 0.000000, 0.683319, 0.000000;;, - 114;3; 0.000000, 0.683319, 0.000000;;, - 115;3; 0.000000, 0.683319, 0.000000;;, - 116;3; 0.000000, 0.683319, 0.000000;;, - 117;3; 0.000000, 0.683319, 0.000000;;, - 118;3; 0.000000, 0.683319, 0.000000;;, - 119;3; 0.000000, 0.683319, 0.000000;;, - 120;3; 0.000000, 0.683319, 0.000000;;, - 121;3; 0.000000, 0.683319, 0.000000;;, - 122;3; 0.000000, 0.683319, 0.000000;;, - 123;3; 0.000000, 0.683319, 0.000000;;, - 124;3; 0.000000, 0.683319, 0.000000;;, - 125;3; 0.000000, 0.683319, 0.000000;;, - 126;3; 0.000000, 0.683319, 0.000000;;, - 127;3; 0.000000, 0.683319, 0.000000;;, - 128;3; 0.000000, 0.683319, 0.000000;;, - 129;3; 0.000000, 0.683319, 0.000000;;, - 130;3; 0.000000, 0.683319, 0.000000;;, - 131;3; 0.000000, 0.683319, 0.000000;;, - 132;3; 0.000000, 0.683319, 0.000000;;, - 133;3; 0.000000, 0.683319, 0.000000;;, - 134;3; 0.000000, 0.683319, 0.000000;;, - 135;3; 0.000000, 0.683319, 0.000000;;, - 136;3; 0.000000, 0.683319, 0.000000;;, - 137;3; 0.000000, 0.683319, 0.000000;;, - 138;3; 0.000000, 0.683319, 0.000000;;, - 139;3; 0.000000, 0.683319, 0.000000;;, - 140;3; 0.000000, 0.683319, 0.000000;;, - 141;3; 0.000000, 0.683319, 0.000000;;, - 142;3; 0.000000, 0.683319, 0.000000;;, - 143;3; 0.000000, 0.683319, 0.000000;;, - 144;3; 0.000000, 0.683319, 0.000000;;, - 145;3; 0.000000, 0.683319, 0.000000;;, - 146;3; 0.000000, 0.683319, 0.000000;;, - 147;3; 0.000000, 0.683319, 0.000000;;, - 148;3; 0.000000, 0.683319, 0.000000;;, - 149;3; 0.000000, 0.683319, 0.000000;;, - 150;3; 0.000000, 0.683319, 0.000000;;, - 151;3; 0.000000, 0.683319, 0.000000;;, - 152;3; 0.000000, 0.683319, 0.000000;;, - 153;3; 0.000000, 0.683319, 0.000000;;, - 154;3; 0.000000, 0.683319, 0.000000;;, - 155;3; 0.000000, 0.683319, 0.000000;;, - 156;3; 0.000000, 0.683319, 0.000000;;, - 157;3; 0.000000, 0.683319, 0.000000;;, - 158;3; 0.000000, 0.683319, 0.000000;;, - 159;3; 0.000000, 0.683319, 0.000000;;, - 160;3; 0.000000, 0.683319, 0.000000;;, - 161;3; 0.000000, 0.683319, 0.000000;;, - 162;3; 0.000000, 0.683319, 0.000000;;, - 163;3; 0.000000, 0.683319, 0.000000;;, - 164;3; 0.000000, 0.683319, 0.000000;;, - 165;3; 0.000000, 0.683319, 0.000000;;, - 166;3; 0.000000, 0.683319, 0.000000;;, - 167;3; 0.000000, 0.683319, 0.000000;;, - 168;3; 0.000000, 0.683319, 0.000000;;, - 169;3; 0.000000, 0.683319, 0.000000;;, - 170;3; 0.000000, 0.683319, 0.000000;;, - 171;3; 0.000000, 0.683319, 0.000000;;, - 172;3; 0.000000, 0.683319, 0.000000;;, - 173;3; 0.000000, 0.683319, 0.000000;;, - 174;3; 0.000000, 0.683319, 0.000000;;, - 175;3; 0.000000, 0.683319, 0.000000;;, - 176;3; 0.000000, 0.683319, 0.000000;;, - 177;3; 0.000000, 0.683319, 0.000000;;, - 178;3; 0.000000, 0.683319, 0.000000;;, - 179;3; 0.000000, 0.683319, 0.000000;;, - 180;3;-0.000000, 0.683319, 0.000000;;, - 181;3;-0.000000, 0.683319,-0.000000;;, - 182;3;-0.000000, 0.683319, 0.000000;;, - 183;3;-0.000000, 0.683319, 0.000000;;, - 184;3; 0.000000, 0.683319, 0.000000;;, - 185;3; 0.000000, 0.683319, 0.000000;;, - 186;3;-0.000000, 0.683319, 0.000000;;, - 187;3; 0.000000, 0.683319, 0.000000;;, - 188;3; 0.000000, 0.683319, 0.000000;;, - 189;3;-0.000000, 0.683319,-0.000000;;, - 190;3; 0.000000, 0.683319, 0.000000;;, - 191;3;-0.000000, 0.683319,-0.000000;;, - 192;3; 0.000000, 0.683319,-0.000000;;, - 193;3; 0.000000, 0.683320,-0.000000;;, - 194;3;-0.000000, 0.683319,-0.000000;;, - 195;3; 0.000000, 0.683319, 0.000000;;, - 196;3;-0.000000, 0.683319, 0.000000;;, - 197;3; 0.000000, 0.683319, 0.000000;;, - 198;3; 0.000000, 0.683319,-0.000000;;, - 199;3; 0.000000, 0.683319, 0.000000;;, - 200;3; 0.000000, 0.683319, 0.000000;;, - 201;3; 0.000000, 0.683319, 0.000000;;, - 202;3; 0.000000, 0.683319, 0.000000;;, - 203;3; 0.000000, 0.683319, 0.000000;;, - 204;3; 0.000000, 0.683319, 0.000000;;, - 205;3; 0.000000, 0.683319, 0.000000;;, - 206;3; 0.000000, 0.683319, 0.000000;;, - 207;3; 0.000000, 0.683319, 0.000000;;, - 208;3; 0.000000, 0.683319, 0.000000;;, - 209;3; 0.000000, 0.683319, 0.000000;;, - 210;3; 0.000000, 0.683319, 0.000000;;, - 211;3; 0.000000, 0.683319, 0.000000;;, - 212;3; 0.000000, 0.683319, 0.000000;;, - 213;3; 0.000000, 0.683319, 0.000000;;, - 214;3; 0.000000, 0.683319, 0.000000;;, - 215;3; 0.000000, 0.683319, 0.000000;;, - 216;3; 0.000000, 0.683319, 0.000000;;, - 217;3; 0.000000, 0.683319, 0.000000;;, - 218;3; 0.000000, 0.683319, 0.000000;;, - 219;3; 0.000000, 0.683319, 0.000000;;, - 220;3; 0.000000, 0.683319, 0.000000;;, - 221;3; 0.000000, 0.683319, 0.000000;;, - 222;3; 0.000000, 0.683319, 0.000000;;, - 223;3; 0.000000, 0.683319, 0.000000;;, - 224;3; 0.000000, 0.683319, 0.000000;;, - 225;3; 0.000000, 0.683319, 0.000000;;, - 226;3; 0.000000, 0.683319, 0.000000;;, - 227;3; 0.000000, 0.683319, 0.000000;;, - 228;3; 0.000000, 0.683319, 0.000000;;, - 229;3; 0.000000, 0.683319, 0.000000;;, - 230;3; 0.000000, 0.683319, 0.000000;;, - 231;3; 0.000000, 0.683319, 0.000000;;, - 232;3; 0.000000, 0.683319, 0.000000;;, - 233;3; 0.000000, 0.683319, 0.000000;;, - 234;3; 0.000000, 0.683319, 0.000000;;, - 235;3; 0.000000, 0.683319, 0.000000;;, - 236;3; 0.000000, 0.683319, 0.000000;;, - 237;3; 0.000000, 0.683319, 0.000000;;, - 238;3; 0.000000, 0.683319, 0.000000;;, - 239;3; 0.000000, 0.683319, 0.000000;;, - 240;3; 0.000000, 0.683319, 0.000000;;, - 241;3; 0.000000, 0.683319, 0.000000;;, - 242;3; 0.000000, 0.683319, 0.000000;;, - 243;3; 0.000000, 0.683319, 0.000000;;, - 244;3; 0.000000, 0.683319, 0.000000;;, - 245;3; 0.000000, 0.683319, 0.000000;;, - 246;3; 0.000000, 0.683319, 0.000000;;, - 247;3; 0.000000, 0.683319, 0.000000;;, - 248;3; 0.000000, 0.683319, 0.000000;;, - 249;3; 0.000000, 0.683319, 0.000000;;; - } - } - Animation { - {Armature_Bone_024} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 1;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 2;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 3;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 4;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 5;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 6;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 7;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 8;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 9;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 10;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 11;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 12;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 13;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 14;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 15;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 16;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 17;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 18;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 19;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 20;4;-0.946563,-0.322516,-0.000012,-0.000000;;, - 21;4;-0.946459,-0.322813,-0.000049,-0.000001;;, - 22;4;-0.946284,-0.323309,-0.000111,-0.000002;;, - 23;4;-0.946041,-0.324002,-0.000198,-0.000004;;, - 24;4;-0.945731,-0.324883,-0.000308,-0.000006;;, - 25;4;-0.945361,-0.325937,-0.000440,-0.000009;;, - 26;4;-0.944938,-0.327141,-0.000590,-0.000012;;, - 27;4;-0.944472,-0.328467,-0.000755,-0.000015;;, - 28;4;-0.943976,-0.329878,-0.000932,-0.000019;;, - 29;4;-0.943465,-0.331333,-0.001113,-0.000022;;, - 30;4;-0.942954,-0.332789,-0.001295,-0.000026;;, - 31;4;-0.942458,-0.334200,-0.001471,-0.000030;;, - 32;4;-0.941992,-0.335525,-0.001637,-0.000033;;, - 33;4;-0.941569,-0.336730,-0.001787,-0.000036;;, - 34;4;-0.941199,-0.337784,-0.001919,-0.000038;;, - 35;4;-0.940889,-0.338664,-0.002029,-0.000041;;, - 36;4;-0.940646,-0.339357,-0.002115,-0.000042;;, - 37;4;-0.940471,-0.339854,-0.002177,-0.000044;;, - 38;4;-0.940367,-0.340151,-0.002214,-0.000044;;, - 39;4;-0.940333,-0.340249,-0.002227,-0.000045;;, - 40;4;-0.940343,-0.340233,-0.002224,-0.000045;;, - 41;4;-0.940378,-0.340176,-0.002217,-0.000044;;, - 42;4;-0.940438,-0.340071,-0.002203,-0.000044;;, - 43;4;-0.940529,-0.339905,-0.002181,-0.000044;;, - 44;4;-0.940651,-0.339667,-0.002150,-0.000043;;, - 45;4;-0.940808,-0.339345,-0.002108,-0.000042;;, - 46;4;-0.941004,-0.338924,-0.002053,-0.000041;;, - 47;4;-0.941238,-0.338393,-0.001985,-0.000040;;, - 48;4;-0.941513,-0.337742,-0.001902,-0.000038;;, - 49;4;-0.941828,-0.336961,-0.001803,-0.000036;;, - 50;4;-0.942182,-0.336046,-0.001688,-0.000034;;, - 51;4;-0.942573,-0.334995,-0.001556,-0.000031;;, - 52;4;-0.942998,-0.333810,-0.001407,-0.000028;;, - 53;4;-0.943453,-0.332497,-0.001244,-0.000025;;, - 54;4;-0.943934,-0.331061,-0.001065,-0.000021;;, - 55;4;-0.944437,-0.329514,-0.000874,-0.000018;;, - 56;4;-0.944959,-0.327866,-0.000670,-0.000013;;, - 57;4;-0.945495,-0.326127,-0.000456,-0.000009;;, - 58;4;-0.946042,-0.324307,-0.000232,-0.000005;;, - 59;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 60;4;-0.947182,-0.320398, 0.000247, 0.000005;;, - 61;4;-0.947817,-0.318183, 0.000518, 0.000010;;, - 62;4;-0.948503,-0.315774, 0.000813, 0.000016;;, - 63;4;-0.949240,-0.313171, 0.001131, 0.000023;;, - 64;4;-0.950025,-0.310377, 0.001473, 0.000030;;, - 65;4;-0.950859,-0.307397, 0.001837, 0.000037;;, - 66;4;-0.951741,-0.304234, 0.002223, 0.000045;;, - 67;4;-0.952667,-0.300896, 0.002631, 0.000053;;, - 68;4;-0.953636,-0.297391, 0.003058, 0.000061;;, - 69;4;-0.954645,-0.293730, 0.003505, 0.000070;;, - 70;4;-0.955691,-0.289925, 0.003969, 0.000080;;, - 71;4;-0.956770,-0.285989, 0.004449, 0.000089;;, - 72;4;-0.957877,-0.281940, 0.004943, 0.000099;;, - 73;4;-0.959008,-0.277794, 0.005448, 0.000109;;, - 74;4;-0.960158,-0.273572, 0.005962, 0.000120;;, - 75;4;-0.961320,-0.269296, 0.006483, 0.000130;;, - 76;4;-0.962489,-0.264987, 0.007008, 0.000141;;, - 77;4;-0.963659,-0.260671, 0.007534, 0.000151;;, - 78;4;-0.964822,-0.256372, 0.008058, 0.000162;;, - 79;4;-0.965972,-0.252114, 0.008576, 0.000172;;, - 80;4;-0.967103,-0.247924, 0.009086, 0.000182;;, - 81;4;-0.968207,-0.243826, 0.009585, 0.000192;;, - 82;4;-0.969279,-0.239844, 0.010070, 0.000202;;, - 83;4;-0.970313,-0.236001, 0.010538, 0.000211;;, - 84;4;-0.971303,-0.232316, 0.010987, 0.000220;;, - 85;4;-0.972245,-0.228811, 0.011413, 0.000229;;, - 86;4;-0.973133,-0.225501, 0.011816, 0.000237;;, - 87;4;-0.973964,-0.222402, 0.012193, 0.000245;;, - 88;4;-0.974734,-0.219526, 0.012543, 0.000252;;, - 89;4;-0.975441,-0.216886, 0.012865, 0.000258;;, - 90;4;-0.976083,-0.214487, 0.013156, 0.000264;;, - 91;4;-0.976658,-0.212338, 0.013418, 0.000269;;, - 92;4;-0.977164,-0.210442, 0.013649, 0.000274;;, - 93;4;-0.977602,-0.208803, 0.013848, 0.000278;;, - 94;4;-0.977971,-0.207421, 0.014016, 0.000281;;, - 95;4;-0.978271,-0.206296, 0.014153, 0.000284;;, - 96;4;-0.978503,-0.205427, 0.014259, 0.000286;;, - 97;4;-0.978668,-0.204810, 0.014334, 0.000287;;, - 98;4;-0.978765,-0.204444, 0.014378, 0.000288;;, - 99;4;-0.978798,-0.204322, 0.014393, 0.000289;;, - 100;4;-0.977917,-0.206530, 0.014114, 0.000283;;, - 101;4;-0.975180,-0.213386, 0.013245, 0.000266;;, - 102;4;-0.970531,-0.225034, 0.011769, 0.000236;;, - 103;4;-0.964087,-0.241176, 0.009724, 0.000195;;, - 104;4;-0.956199,-0.260939, 0.007221, 0.000145;;, - 105;4;-0.947423,-0.282925, 0.004436, 0.000089;;, - 106;4;-0.938406,-0.305513, 0.001574, 0.000032;;, - 107;4;-0.929731,-0.327247,-0.001179,-0.000024;;, - 108;4;-0.921813,-0.347085,-0.003693,-0.000074;;, - 109;4;-0.914886,-0.364439,-0.005891,-0.000118;;, - 110;4;-0.907959,-0.381793,-0.008089,-0.000162;;, - 111;4;-0.900040,-0.401631,-0.010603,-0.000213;;, - 112;4;-0.891365,-0.423365,-0.013356,-0.000268;;, - 113;4;-0.882348,-0.445954,-0.016218,-0.000325;;, - 114;4;-0.873572,-0.467939,-0.019003,-0.000381;;, - 115;4;-0.865684,-0.487702,-0.021506,-0.000431;;, - 116;4;-0.859241,-0.503845,-0.023551,-0.000472;;, - 117;4;-0.854591,-0.515492,-0.025027,-0.000502;;, - 118;4;-0.851854,-0.522349,-0.025896,-0.000519;;, - 119;4;-0.850973,-0.524556,-0.026175,-0.000525;;, - 120;4;-0.851854,-0.522349,-0.025896,-0.000519;;, - 121;4;-0.854591,-0.515492,-0.025027,-0.000502;;, - 122;4;-0.859240,-0.503845,-0.023551,-0.000472;;, - 123;4;-0.865684,-0.487702,-0.021506,-0.000431;;, - 124;4;-0.873572,-0.467939,-0.019003,-0.000381;;, - 125;4;-0.882348,-0.445954,-0.016218,-0.000325;;, - 126;4;-0.891365,-0.423365,-0.013356,-0.000268;;, - 127;4;-0.900040,-0.401631,-0.010603,-0.000213;;, - 128;4;-0.907959,-0.381793,-0.008089,-0.000162;;, - 129;4;-0.914886,-0.364439,-0.005891,-0.000118;;, - 130;4;-0.921813,-0.347085,-0.003693,-0.000074;;, - 131;4;-0.929731,-0.327247,-0.001179,-0.000024;;, - 132;4;-0.938406,-0.305513, 0.001574, 0.000032;;, - 133;4;-0.947423,-0.282925, 0.004436, 0.000089;;, - 134;4;-0.956199,-0.260939, 0.007221, 0.000145;;, - 135;4;-0.964087,-0.241176, 0.009724, 0.000195;;, - 136;4;-0.970531,-0.225034, 0.011769, 0.000236;;, - 137;4;-0.975180,-0.213386, 0.013245, 0.000266;;, - 138;4;-0.977917,-0.206530, 0.014114, 0.000283;;, - 139;4;-0.978798,-0.204322, 0.014393, 0.000289;;, - 140;4;-0.975180,-0.213386, 0.013245, 0.000266;;, - 141;4;-0.964087,-0.241176, 0.009724, 0.000195;;, - 142;4;-0.947423,-0.282925, 0.004436, 0.000089;;, - 143;4;-0.929731,-0.327247,-0.001179,-0.000024;;, - 144;4;-0.914886,-0.364439,-0.005891,-0.000118;;, - 145;4;-0.900040,-0.401631,-0.010603,-0.000213;;, - 146;4;-0.882348,-0.445954,-0.016218,-0.000325;;, - 147;4;-0.865684,-0.487702,-0.021506,-0.000431;;, - 148;4;-0.854591,-0.515492,-0.025027,-0.000502;;, - 149;4;-0.850973,-0.524556,-0.026175,-0.000525;;, - 150;4;-0.854591,-0.515492,-0.025027,-0.000502;;, - 151;4;-0.865684,-0.487702,-0.021506,-0.000431;;, - 152;4;-0.882348,-0.445954,-0.016218,-0.000325;;, - 153;4;-0.900040,-0.401631,-0.010603,-0.000213;;, - 154;4;-0.914886,-0.364439,-0.005891,-0.000118;;, - 155;4;-0.929731,-0.327247,-0.001179,-0.000024;;, - 156;4;-0.947423,-0.282925, 0.004436, 0.000089;;, - 157;4;-0.964087,-0.241176, 0.009724, 0.000195;;, - 158;4;-0.975180,-0.213386, 0.013245, 0.000266;;, - 159;4;-0.978798,-0.204322, 0.014393, 0.000289;;, - 160;4;-0.978620,-0.204973, 0.014314, 0.000287;;, - 161;4;-0.978084,-0.206941, 0.014074, 0.000282;;, - 162;4;-0.977187,-0.210230, 0.013673, 0.000274;;, - 163;4;-0.975936,-0.214820, 0.013114, 0.000263;;, - 164;4;-0.974345,-0.220653, 0.012403, 0.000249;;, - 165;4;-0.972442,-0.227631, 0.011552, 0.000232;;, - 166;4;-0.970268,-0.235607, 0.010580, 0.000212;;, - 167;4;-0.967874,-0.244388, 0.009510, 0.000191;;, - 168;4;-0.965325,-0.253733, 0.008371, 0.000168;;, - 169;4;-0.962698,-0.263370, 0.007197, 0.000144;;, - 170;4;-0.960070,-0.273007, 0.006022, 0.000121;;, - 171;4;-0.957522,-0.282352, 0.004883, 0.000098;;, - 172;4;-0.955128,-0.291132, 0.003813, 0.000076;;, - 173;4;-0.952953,-0.299109, 0.002841, 0.000057;;, - 174;4;-0.951050,-0.306087, 0.001990, 0.000040;;, - 175;4;-0.949460,-0.311920, 0.001279, 0.000026;;, - 176;4;-0.948208,-0.316510, 0.000720, 0.000014;;, - 177;4;-0.947312,-0.319799, 0.000319, 0.000006;;, - 178;4;-0.946775,-0.321766, 0.000079, 0.000002;;, - 179;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 180;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 181;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 182;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 183;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 184;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 185;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 186;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 187;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 188;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 189;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 190;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 191;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 192;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 193;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 194;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 195;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 196;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 197;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 198;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 199;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 200;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 201;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 202;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 203;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 204;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 205;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 206;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 207;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 208;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 209;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 210;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 211;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 212;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 213;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 214;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 215;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 216;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 217;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 218;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 219;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 220;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 221;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 222;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 223;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 224;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 225;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 226;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 227;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 228;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 229;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 230;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 231;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 232;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 233;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 234;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 235;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 236;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 237;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 238;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 239;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 240;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 241;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 242;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 243;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 244;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 245;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 246;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 247;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 248;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 249;4;-0.946598,-0.322417,-0.000000,-0.000000;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3; 0.000000, 1.294482, 0.000000;;, - 1;3; 0.000000, 1.294482, 0.000000;;, - 2;3; 0.000000, 1.294482, 0.000000;;, - 3;3; 0.000000, 1.294482, 0.000000;;, - 4;3; 0.000000, 1.294482, 0.000000;;, - 5;3; 0.000000, 1.294482, 0.000000;;, - 6;3; 0.000000, 1.294482, 0.000000;;, - 7;3; 0.000000, 1.294482, 0.000000;;, - 8;3; 0.000000, 1.294482, 0.000000;;, - 9;3; 0.000000, 1.294482, 0.000000;;, - 10;3; 0.000000, 1.294482, 0.000000;;, - 11;3; 0.000000, 1.294482, 0.000000;;, - 12;3; 0.000000, 1.294482, 0.000000;;, - 13;3; 0.000000, 1.294482, 0.000000;;, - 14;3; 0.000000, 1.294482, 0.000000;;, - 15;3; 0.000000, 1.294482, 0.000000;;, - 16;3; 0.000000, 1.294482, 0.000000;;, - 17;3; 0.000000, 1.294482, 0.000000;;, - 18;3; 0.000000, 1.294482, 0.000000;;, - 19;3; 0.000000, 1.294482, 0.000000;;, - 20;3; 0.000000, 1.294482, 0.000000;;, - 21;3; 0.000000, 1.294482, 0.000000;;, - 22;3; 0.000000, 1.294482, 0.000000;;, - 23;3; 0.000000, 1.294482, 0.000000;;, - 24;3; 0.000000, 1.294482, 0.000000;;, - 25;3; 0.000000, 1.294482, 0.000000;;, - 26;3; 0.000000, 1.294482, 0.000000;;, - 27;3; 0.000000, 1.294482, 0.000000;;, - 28;3; 0.000000, 1.294482, 0.000000;;, - 29;3; 0.000000, 1.294482, 0.000000;;, - 30;3; 0.000000, 1.294482, 0.000000;;, - 31;3; 0.000000, 1.294482, 0.000000;;, - 32;3; 0.000000, 1.294482, 0.000000;;, - 33;3; 0.000000, 1.294482, 0.000000;;, - 34;3; 0.000000, 1.294482, 0.000000;;, - 35;3; 0.000000, 1.294482, 0.000000;;, - 36;3; 0.000000, 1.294482, 0.000000;;, - 37;3; 0.000000, 1.294482, 0.000000;;, - 38;3; 0.000000, 1.294482, 0.000000;;, - 39;3; 0.000000, 1.294482, 0.000000;;, - 40;3; 0.000000, 1.294482, 0.000000;;, - 41;3; 0.000000, 1.294482, 0.000000;;, - 42;3; 0.000000, 1.294482, 0.000000;;, - 43;3; 0.000000, 1.294482, 0.000000;;, - 44;3; 0.000000, 1.294482, 0.000000;;, - 45;3; 0.000000, 1.294482, 0.000000;;, - 46;3; 0.000000, 1.294482, 0.000000;;, - 47;3; 0.000000, 1.294482, 0.000000;;, - 48;3; 0.000000, 1.294482, 0.000000;;, - 49;3; 0.000000, 1.294482, 0.000000;;, - 50;3; 0.000000, 1.294482, 0.000000;;, - 51;3; 0.000000, 1.294482, 0.000000;;, - 52;3; 0.000000, 1.294482, 0.000000;;, - 53;3; 0.000000, 1.294482, 0.000000;;, - 54;3; 0.000000, 1.294482, 0.000000;;, - 55;3; 0.000000, 1.294482, 0.000000;;, - 56;3; 0.000000, 1.294482, 0.000000;;, - 57;3; 0.000000, 1.294482, 0.000000;;, - 58;3; 0.000000, 1.294482, 0.000000;;, - 59;3; 0.000000, 1.294482, 0.000000;;, - 60;3; 0.000000, 1.294482, 0.000000;;, - 61;3; 0.000000, 1.294482, 0.000000;;, - 62;3; 0.000000, 1.294481,-0.000000;;, - 63;3;-0.000000, 1.294482, 0.000000;;, - 64;3;-0.000000, 1.294482,-0.000000;;, - 65;3; 0.000000, 1.294482,-0.000000;;, - 66;3; 0.000000, 1.294482, 0.000000;;, - 67;3; 0.000000, 1.294482, 0.000000;;, - 68;3; 0.000000, 1.294482, 0.000000;;, - 69;3; 0.000000, 1.294482, 0.000000;;, - 70;3; 0.000000, 1.294482, 0.000000;;, - 71;3;-0.000000, 1.294482,-0.000000;;, - 72;3; 0.000000, 1.294481,-0.000000;;, - 73;3;-0.000000, 1.294482, 0.000000;;, - 74;3;-0.000000, 1.294482, 0.000000;;, - 75;3; 0.000000, 1.294482, 0.000000;;, - 76;3; 0.000000, 1.294482, 0.000000;;, - 77;3; 0.000000, 1.294482,-0.000000;;, - 78;3; 0.000000, 1.294481, 0.000000;;, - 79;3; 0.000000, 1.294482, 0.000000;;, - 80;3;-0.000000, 1.294482, 0.000000;;, - 81;3; 0.000000, 1.294482, 0.000000;;, - 82;3; 0.000000, 1.294482, 0.000000;;, - 83;3; 0.000000, 1.294482, 0.000000;;, - 84;3;-0.000000, 1.294482, 0.000000;;, - 85;3; 0.000000, 1.294482, 0.000000;;, - 86;3; 0.000000, 1.294482, 0.000000;;, - 87;3; 0.000000, 1.294482,-0.000000;;, - 88;3; 0.000000, 1.294482,-0.000000;;, - 89;3; 0.000000, 1.294482,-0.000000;;, - 90;3; 0.000000, 1.294482, 0.000000;;, - 91;3; 0.000000, 1.294482, 0.000000;;, - 92;3; 0.000000, 1.294482, 0.000000;;, - 93;3; 0.000000, 1.294482, 0.000000;;, - 94;3; 0.000000, 1.294481, 0.000000;;, - 95;3; 0.000000, 1.294482, 0.000000;;, - 96;3;-0.000000, 1.294482,-0.000000;;, - 97;3; 0.000000, 1.294482, 0.000000;;, - 98;3; 0.000000, 1.294482, 0.000000;;, - 99;3; 0.000000, 1.294482, 0.000000;;, - 100;3; 0.000000, 1.294482,-0.000000;;, - 101;3; 0.000000, 1.294481, 0.000000;;, - 102;3; 0.000000, 1.294482, 0.000000;;, - 103;3; 0.000000, 1.294482, 0.000000;;, - 104;3; 0.000000, 1.294482,-0.000000;;, - 105;3; 0.000000, 1.294482, 0.000000;;, - 106;3; 0.000000, 1.294482,-0.000000;;, - 107;3; 0.000000, 1.294482, 0.000000;;, - 108;3; 0.000000, 1.294481,-0.000000;;, - 109;3; 0.000000, 1.294482, 0.000000;;, - 110;3;-0.000000, 1.294482,-0.000000;;, - 111;3;-0.000000, 1.294482,-0.000000;;, - 112;3;-0.000000, 1.294482, 0.000000;;, - 113;3;-0.000000, 1.294482,-0.000000;;, - 114;3; 0.000000, 1.294482,-0.000000;;, - 115;3;-0.000000, 1.294482,-0.000000;;, - 116;3; 0.000000, 1.294482, 0.000000;;, - 117;3;-0.000000, 1.294482, 0.000000;;, - 118;3;-0.000000, 1.294481, 0.000000;;, - 119;3;-0.000000, 1.294482,-0.000000;;, - 120;3;-0.000000, 1.294482, 0.000000;;, - 121;3;-0.000000, 1.294482,-0.000000;;, - 122;3; 0.000000, 1.294482,-0.000000;;, - 123;3;-0.000000, 1.294481,-0.000000;;, - 124;3; 0.000000, 1.294482,-0.000000;;, - 125;3; 0.000000, 1.294482,-0.000000;;, - 126;3; 0.000000, 1.294482,-0.000000;;, - 127;3; 0.000000, 1.294482, 0.000000;;, - 128;3; 0.000000, 1.294482, 0.000000;;, - 129;3;-0.000000, 1.294482, 0.000000;;, - 130;3; 0.000000, 1.294482, 0.000000;;, - 131;3; 0.000000, 1.294482, 0.000000;;, - 132;3; 0.000000, 1.294481, 0.000000;;, - 133;3; 0.000000, 1.294482,-0.000000;;, - 134;3;-0.000000, 1.294482, 0.000000;;, - 135;3; 0.000000, 1.294482,-0.000000;;, - 136;3; 0.000000, 1.294482, 0.000000;;, - 137;3;-0.000000, 1.294482,-0.000000;;, - 138;3;-0.000000, 1.294482,-0.000000;;, - 139;3; 0.000000, 1.294482, 0.000000;;, - 140;3; 0.000000, 1.294481, 0.000000;;, - 141;3; 0.000000, 1.294482, 0.000000;;, - 142;3; 0.000000, 1.294482, 0.000000;;, - 143;3; 0.000000, 1.294482, 0.000000;;, - 144;3; 0.000000, 1.294482, 0.000000;;, - 145;3;-0.000000, 1.294482,-0.000000;;, - 146;3;-0.000000, 1.294482,-0.000000;;, - 147;3;-0.000000, 1.294482,-0.000000;;, - 148;3;-0.000000, 1.294482, 0.000000;;, - 149;3;-0.000000, 1.294482,-0.000000;;, - 150;3;-0.000000, 1.294482,-0.000000;;, - 151;3;-0.000000, 1.294481,-0.000000;;, - 152;3; 0.000000, 1.294482,-0.000000;;, - 153;3; 0.000000, 1.294482, 0.000000;;, - 154;3;-0.000000, 1.294482, 0.000000;;, - 155;3; 0.000000, 1.294482, 0.000000;;, - 156;3; 0.000000, 1.294482,-0.000000;;, - 157;3; 0.000000, 1.294482,-0.000000;;, - 158;3;-0.000000, 1.294482,-0.000000;;, - 159;3; 0.000000, 1.294482, 0.000000;;, - 160;3;-0.000000, 1.294482, 0.000000;;, - 161;3;-0.000000, 1.294482, 0.000000;;, - 162;3; 0.000000, 1.294482,-0.000000;;, - 163;3; 0.000000, 1.294482, 0.000000;;, - 164;3;-0.000000, 1.294482, 0.000000;;, - 165;3;-0.000000, 1.294481,-0.000000;;, - 166;3;-0.000000, 1.294482, 0.000000;;, - 167;3;-0.000000, 1.294482, 0.000000;;, - 168;3; 0.000000, 1.294482, 0.000000;;, - 169;3; 0.000000, 1.294482, 0.000000;;, - 170;3; 0.000000, 1.294482,-0.000000;;, - 171;3; 0.000000, 1.294481, 0.000000;;, - 172;3;-0.000000, 1.294482, 0.000000;;, - 173;3;-0.000000, 1.294481, 0.000000;;, - 174;3; 0.000000, 1.294482, 0.000000;;, - 175;3;-0.000000, 1.294482, 0.000000;;, - 176;3; 0.000000, 1.294482,-0.000000;;, - 177;3; 0.000000, 1.294482, 0.000000;;, - 178;3;-0.000000, 1.294482, 0.000000;;, - 179;3; 0.000000, 1.294482, 0.000000;;, - 180;3; 0.000000, 1.294482, 0.000000;;, - 181;3;-0.000000, 1.294482, 0.000000;;, - 182;3;-0.000000, 1.294482,-0.000000;;, - 183;3;-0.000000, 1.294481,-0.000000;;, - 184;3;-0.000000, 1.294482, 0.000000;;, - 185;3;-0.000000, 1.294481,-0.000000;;, - 186;3; 0.000000, 1.294482,-0.000000;;, - 187;3; 0.000000, 1.294482,-0.000000;;, - 188;3; 0.000000, 1.294482,-0.000000;;, - 189;3;-0.000000, 1.294481, 0.000000;;, - 190;3;-0.000000, 1.294482, 0.000000;;, - 191;3;-0.000000, 1.294482,-0.000000;;, - 192;3;-0.000000, 1.294482, 0.000000;;, - 193;3;-0.000000, 1.294482, 0.000000;;, - 194;3; 0.000000, 1.294482, 0.000000;;, - 195;3;-0.000000, 1.294481,-0.000000;;, - 196;3; 0.000000, 1.294481, 0.000000;;, - 197;3;-0.000000, 1.294482,-0.000000;;, - 198;3;-0.000000, 1.294482, 0.000000;;, - 199;3; 0.000000, 1.294482, 0.000000;;, - 200;3; 0.000000, 1.294482, 0.000000;;, - 201;3; 0.000000, 1.294482, 0.000000;;, - 202;3; 0.000000, 1.294482, 0.000000;;, - 203;3; 0.000000, 1.294482, 0.000000;;, - 204;3; 0.000000, 1.294482, 0.000000;;, - 205;3; 0.000000, 1.294482, 0.000000;;, - 206;3; 0.000000, 1.294482, 0.000000;;, - 207;3; 0.000000, 1.294482, 0.000000;;, - 208;3; 0.000000, 1.294482, 0.000000;;, - 209;3; 0.000000, 1.294482, 0.000000;;, - 210;3; 0.000000, 1.294482, 0.000000;;, - 211;3; 0.000000, 1.294482, 0.000000;;, - 212;3; 0.000000, 1.294482, 0.000000;;, - 213;3; 0.000000, 1.294482, 0.000000;;, - 214;3; 0.000000, 1.294482, 0.000000;;, - 215;3; 0.000000, 1.294482, 0.000000;;, - 216;3; 0.000000, 1.294482, 0.000000;;, - 217;3; 0.000000, 1.294482, 0.000000;;, - 218;3; 0.000000, 1.294482, 0.000000;;, - 219;3; 0.000000, 1.294482, 0.000000;;, - 220;3; 0.000000, 1.294482, 0.000000;;, - 221;3; 0.000000, 1.294482, 0.000000;;, - 222;3; 0.000000, 1.294482, 0.000000;;, - 223;3; 0.000000, 1.294482, 0.000000;;, - 224;3; 0.000000, 1.294482, 0.000000;;, - 225;3; 0.000000, 1.294482, 0.000000;;, - 226;3; 0.000000, 1.294482, 0.000000;;, - 227;3; 0.000000, 1.294482, 0.000000;;, - 228;3; 0.000000, 1.294482, 0.000000;;, - 229;3; 0.000000, 1.294482, 0.000000;;, - 230;3; 0.000000, 1.294482, 0.000000;;, - 231;3; 0.000000, 1.294482, 0.000000;;, - 232;3; 0.000000, 1.294482, 0.000000;;, - 233;3; 0.000000, 1.294482, 0.000000;;, - 234;3; 0.000000, 1.294482, 0.000000;;, - 235;3; 0.000000, 1.294482, 0.000000;;, - 236;3; 0.000000, 1.294482, 0.000000;;, - 237;3; 0.000000, 1.294482, 0.000000;;, - 238;3; 0.000000, 1.294482, 0.000000;;, - 239;3; 0.000000, 1.294482, 0.000000;;, - 240;3; 0.000000, 1.294482, 0.000000;;, - 241;3; 0.000000, 1.294482, 0.000000;;, - 242;3; 0.000000, 1.294482, 0.000000;;, - 243;3; 0.000000, 1.294482, 0.000000;;, - 244;3; 0.000000, 1.294482, 0.000000;;, - 245;3; 0.000000, 1.294482, 0.000000;;, - 246;3; 0.000000, 1.294482, 0.000000;;, - 247;3; 0.000000, 1.294482, 0.000000;;, - 248;3; 0.000000, 1.294482, 0.000000;;, - 249;3; 0.000000, 1.294482, 0.000000;;; - } - } - Animation { - {Armature_Bone_028} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 1;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 2;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 3;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 4;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 5;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 6;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 7;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 8;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 9;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 10;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 11;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 12;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 13;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 14;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 15;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 16;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 17;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 18;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 19;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 20;4;-0.979305,-0.202173, 0.000069, 0.000043;;, - 21;4;-0.979598,-0.200095, 0.000280, 0.000172;;, - 22;4;-0.980089,-0.196620, 0.000631, 0.000389;;, - 23;4;-0.980774,-0.191771, 0.001121, 0.000691;;, - 24;4;-0.981645,-0.185609, 0.001744, 0.001076;;, - 25;4;-0.982687,-0.178237, 0.002489, 0.001535;;, - 26;4;-0.983877,-0.169811, 0.003341, 0.002060;;, - 27;4;-0.985188,-0.160535, 0.004279, 0.002639;;, - 28;4;-0.986583,-0.150663, 0.005277, 0.003254;;, - 29;4;-0.988021,-0.140482, 0.006306, 0.003889;;, - 30;4;-0.989460,-0.130301, 0.007335, 0.004523;;, - 31;4;-0.990855,-0.120429, 0.008333, 0.005139;;, - 32;4;-0.992165,-0.111153, 0.009270, 0.005717;;, - 33;4;-0.993356,-0.102727, 0.010122, 0.006242;;, - 34;4;-0.994398,-0.095355, 0.010867, 0.006702;;, - 35;4;-0.995268,-0.089193, 0.011490, 0.007086;;, - 36;4;-0.995953,-0.084344, 0.011981, 0.007388;;, - 37;4;-0.996444,-0.080869, 0.012332, 0.007605;;, - 38;4;-0.996738,-0.078791, 0.012542, 0.007735;;, - 39;4;-0.996835,-0.078103, 0.012611, 0.007777;;, - 40;4;-0.996738,-0.078791, 0.012542, 0.007735;;, - 41;4;-0.996444,-0.080869, 0.012332, 0.007605;;, - 42;4;-0.995953,-0.084344, 0.011981, 0.007388;;, - 43;4;-0.995268,-0.089193, 0.011490, 0.007086;;, - 44;4;-0.994398,-0.095355, 0.010867, 0.006702;;, - 45;4;-0.993356,-0.102727, 0.010122, 0.006242;;, - 46;4;-0.992165,-0.111153, 0.009270, 0.005717;;, - 47;4;-0.990855,-0.120429, 0.008333, 0.005139;;, - 48;4;-0.989460,-0.130301, 0.007335, 0.004523;;, - 49;4;-0.988021,-0.140482, 0.006306, 0.003889;;, - 50;4;-0.986583,-0.150663, 0.005277, 0.003254;;, - 51;4;-0.985188,-0.160535, 0.004279, 0.002639;;, - 52;4;-0.983877,-0.169811, 0.003341, 0.002060;;, - 53;4;-0.982687,-0.178237, 0.002489, 0.001535;;, - 54;4;-0.981645,-0.185609, 0.001744, 0.001075;;, - 55;4;-0.980774,-0.191771, 0.001121, 0.000691;;, - 56;4;-0.980089,-0.196620, 0.000631, 0.000389;;, - 57;4;-0.979598,-0.200095, 0.000280, 0.000172;;, - 58;4;-0.979305,-0.202173, 0.000069, 0.000043;;, - 59;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 60;4;-0.979226,-0.202749, 0.000011, 0.000007;;, - 61;4;-0.979281,-0.202412, 0.000046, 0.000028;;, - 62;4;-0.979374,-0.201848, 0.000103, 0.000063;;, - 63;4;-0.979503,-0.201056, 0.000183, 0.000113;;, - 64;4;-0.979671,-0.200036, 0.000287, 0.000177;;, - 65;4;-0.979875,-0.198789, 0.000413, 0.000255;;, - 66;4;-0.980116,-0.197317, 0.000563, 0.000347;;, - 67;4;-0.980393,-0.195625, 0.000735, 0.000453;;, - 68;4;-0.980706,-0.193718, 0.000928, 0.000573;;, - 69;4;-0.981052,-0.191604, 0.001143, 0.000705;;, - 70;4;-0.981431,-0.189293, 0.001378, 0.000850;;, - 71;4;-0.981841,-0.186795, 0.001631, 0.001006;;, - 72;4;-0.982278,-0.184124, 0.001903, 0.001173;;, - 73;4;-0.982742,-0.181297, 0.002190, 0.001350;;, - 74;4;-0.983228,-0.178331, 0.002491, 0.001536;;, - 75;4;-0.983734,-0.175245, 0.002804, 0.001729;;, - 76;4;-0.984255,-0.172062, 0.003128, 0.001929;;, - 77;4;-0.984789,-0.168804, 0.003458, 0.002133;;, - 78;4;-0.985332,-0.165495, 0.003794, 0.002340;;, - 79;4;-0.985878,-0.162161, 0.004133, 0.002549;;, - 80;4;-0.986425,-0.158827, 0.004471, 0.002758;;, - 81;4;-0.986967,-0.155518, 0.004807, 0.002965;;, - 82;4;-0.987501,-0.152260, 0.005138, 0.003169;;, - 83;4;-0.988023,-0.149077, 0.005462, 0.003368;;, - 84;4;-0.988528,-0.145991, 0.005775, 0.003561;;, - 85;4;-0.989015,-0.143025, 0.006076, 0.003747;;, - 86;4;-0.989478,-0.140198, 0.006363, 0.003924;;, - 87;4;-0.989916,-0.137527, 0.006634, 0.004091;;, - 88;4;-0.990325,-0.135029, 0.006888, 0.004248;;, - 89;4;-0.990704,-0.132717, 0.007123, 0.004393;;, - 90;4;-0.991050,-0.130603, 0.007338, 0.004525;;, - 91;4;-0.991363,-0.128697, 0.007531, 0.004644;;, - 92;4;-0.991640,-0.127004, 0.007703, 0.004750;;, - 93;4;-0.991881,-0.125533, 0.007852, 0.004843;;, - 94;4;-0.992086,-0.124286, 0.007979, 0.004921;;, - 95;4;-0.992253,-0.123266, 0.008083, 0.004985;;, - 96;4;-0.992383,-0.122474, 0.008163, 0.005034;;, - 97;4;-0.992475,-0.121910, 0.008220, 0.005070;;, - 98;4;-0.992530,-0.121573, 0.008255, 0.005091;;, - 99;4;-0.992549,-0.121461, 0.008266, 0.005098;;, - 100;4;-0.992340,-0.122500, 0.008160, 0.005032;;, - 101;4;-0.991690,-0.125726, 0.007830, 0.004829;;, - 102;4;-0.990587,-0.131207, 0.007269, 0.004483;;, - 103;4;-0.989058,-0.138803, 0.006492, 0.004003;;, - 104;4;-0.987186,-0.148103, 0.005540, 0.003417;;, - 105;4;-0.985104,-0.158448, 0.004482, 0.002764;;, - 106;4;-0.982965,-0.169078, 0.003394, 0.002093;;, - 107;4;-0.980906,-0.179305, 0.002348, 0.001448;;, - 108;4;-0.979027,-0.188640, 0.001393, 0.000859;;, - 109;4;-0.977383,-0.196806, 0.000557, 0.000344;;, - 110;4;-0.975740,-0.204972,-0.000278,-0.000171;;, - 111;4;-0.973861,-0.214307,-0.001233,-0.000760;;, - 112;4;-0.971802,-0.224535,-0.002279,-0.001406;;, - 113;4;-0.969663,-0.235164,-0.003367,-0.002076;;, - 114;4;-0.967580,-0.245510,-0.004425,-0.002729;;, - 115;4;-0.965708,-0.254809,-0.005377,-0.003316;;, - 116;4;-0.964180,-0.262405,-0.006154,-0.003795;;, - 117;4;-0.963076,-0.267886,-0.006715,-0.004141;;, - 118;4;-0.962427,-0.271113,-0.007045,-0.004344;;, - 119;4;-0.962218,-0.272151,-0.007151,-0.004410;;, - 120;4;-0.962427,-0.271113,-0.007045,-0.004344;;, - 121;4;-0.963076,-0.267886,-0.006715,-0.004141;;, - 122;4;-0.964180,-0.262405,-0.006154,-0.003795;;, - 123;4;-0.965708,-0.254809,-0.005377,-0.003316;;, - 124;4;-0.967580,-0.245510,-0.004425,-0.002729;;, - 125;4;-0.969663,-0.235164,-0.003367,-0.002076;;, - 126;4;-0.971802,-0.224535,-0.002279,-0.001406;;, - 127;4;-0.973861,-0.214307,-0.001233,-0.000760;;, - 128;4;-0.975740,-0.204972,-0.000278,-0.000171;;, - 129;4;-0.977383,-0.196806, 0.000557, 0.000344;;, - 130;4;-0.979027,-0.188640, 0.001393, 0.000859;;, - 131;4;-0.980906,-0.179305, 0.002348, 0.001448;;, - 132;4;-0.982964,-0.169078, 0.003394, 0.002093;;, - 133;4;-0.985104,-0.158448, 0.004482, 0.002764;;, - 134;4;-0.987186,-0.148103, 0.005540, 0.003417;;, - 135;4;-0.989058,-0.138803, 0.006492, 0.004003;;, - 136;4;-0.990587,-0.131207, 0.007269, 0.004483;;, - 137;4;-0.991690,-0.125726, 0.007830, 0.004829;;, - 138;4;-0.992340,-0.122500, 0.008160, 0.005032;;, - 139;4;-0.992549,-0.121461, 0.008266, 0.005098;;, - 140;4;-0.991690,-0.125726, 0.007830, 0.004829;;, - 141;4;-0.989058,-0.138803, 0.006492, 0.004003;;, - 142;4;-0.985104,-0.158448, 0.004482, 0.002764;;, - 143;4;-0.980906,-0.179305, 0.002348, 0.001448;;, - 144;4;-0.977383,-0.196806, 0.000557, 0.000344;;, - 145;4;-0.973861,-0.214307,-0.001233,-0.000760;;, - 146;4;-0.969663,-0.235164,-0.003367,-0.002076;;, - 147;4;-0.965708,-0.254809,-0.005377,-0.003316;;, - 148;4;-0.963076,-0.267886,-0.006715,-0.004141;;, - 149;4;-0.962218,-0.272151,-0.007151,-0.004410;;, - 150;4;-0.963076,-0.267886,-0.006715,-0.004141;;, - 151;4;-0.965708,-0.254809,-0.005377,-0.003316;;, - 152;4;-0.969663,-0.235164,-0.003367,-0.002076;;, - 153;4;-0.973861,-0.214307,-0.001233,-0.000760;;, - 154;4;-0.977383,-0.196806, 0.000557, 0.000344;;, - 155;4;-0.980906,-0.179305, 0.002348, 0.001448;;, - 156;4;-0.985104,-0.158448, 0.004482, 0.002764;;, - 157;4;-0.989058,-0.138803, 0.006492, 0.004003;;, - 158;4;-0.991690,-0.125726, 0.007830, 0.004829;;, - 159;4;-0.992549,-0.121461, 0.008266, 0.005098;;, - 160;4;-0.992475,-0.121910, 0.008220, 0.005070;;, - 161;4;-0.992253,-0.123266, 0.008083, 0.004985;;, - 162;4;-0.991881,-0.125533, 0.007852, 0.004843;;, - 163;4;-0.991363,-0.128697, 0.007531, 0.004644;;, - 164;4;-0.990704,-0.132717, 0.007123, 0.004393;;, - 165;4;-0.989916,-0.137527, 0.006634, 0.004091;;, - 166;4;-0.989015,-0.143025, 0.006076, 0.003747;;, - 167;4;-0.988023,-0.149077, 0.005462, 0.003368;;, - 168;4;-0.986967,-0.155518, 0.004807, 0.002965;;, - 169;4;-0.985878,-0.162161, 0.004133, 0.002549;;, - 170;4;-0.984789,-0.168804, 0.003458, 0.002133;;, - 171;4;-0.983734,-0.175245, 0.002804, 0.001729;;, - 172;4;-0.982742,-0.181297, 0.002190, 0.001350;;, - 173;4;-0.981841,-0.186795, 0.001631, 0.001006;;, - 174;4;-0.981052,-0.191604, 0.001143, 0.000705;;, - 175;4;-0.980393,-0.195625, 0.000735, 0.000453;;, - 176;4;-0.979875,-0.198789, 0.000413, 0.000255;;, - 177;4;-0.979503,-0.201056, 0.000183, 0.000113;;, - 178;4;-0.979281,-0.202412, 0.000046, 0.000028;;, - 179;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 180;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 181;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 182;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 183;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 184;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 185;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 186;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 187;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 188;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 189;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 190;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 191;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 192;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 193;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 194;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 195;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 196;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 197;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 198;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 199;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 200;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 201;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 202;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 203;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 204;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 205;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 206;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 207;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 208;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 209;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 210;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 211;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 212;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 213;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 214;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 215;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 216;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 217;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 218;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 219;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 220;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 221;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 222;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 223;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 224;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 225;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 226;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 227;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 228;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 229;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 230;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 231;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 232;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 233;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 234;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 235;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 236;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 237;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 238;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 239;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 240;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 241;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 242;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 243;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 244;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 245;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 246;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 247;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 248;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 249;4;-0.979208,-0.202861,-0.000000,-0.000000;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3;-0.000000, 1.228822, 0.000000;;, - 1;3;-0.000000, 1.228822, 0.000000;;, - 2;3;-0.000000, 1.228822, 0.000000;;, - 3;3;-0.000000, 1.228822, 0.000000;;, - 4;3;-0.000000, 1.228822, 0.000000;;, - 5;3;-0.000000, 1.228822, 0.000000;;, - 6;3;-0.000000, 1.228822, 0.000000;;, - 7;3;-0.000000, 1.228822, 0.000000;;, - 8;3;-0.000000, 1.228822, 0.000000;;, - 9;3;-0.000000, 1.228822, 0.000000;;, - 10;3;-0.000000, 1.228822, 0.000000;;, - 11;3;-0.000000, 1.228822, 0.000000;;, - 12;3;-0.000000, 1.228822, 0.000000;;, - 13;3;-0.000000, 1.228822, 0.000000;;, - 14;3;-0.000000, 1.228822, 0.000000;;, - 15;3;-0.000000, 1.228822, 0.000000;;, - 16;3;-0.000000, 1.228822, 0.000000;;, - 17;3;-0.000000, 1.228822, 0.000000;;, - 18;3;-0.000000, 1.228822, 0.000000;;, - 19;3;-0.000000, 1.228822, 0.000000;;, - 20;3;-0.000000, 1.228822,-0.000000;;, - 21;3;-0.000000, 1.228822,-0.000000;;, - 22;3;-0.000000, 1.228822, 0.000000;;, - 23;3;-0.000000, 1.228822, 0.000000;;, - 24;3;-0.000000, 1.228822,-0.000000;;, - 25;3; 0.000000, 1.228822, 0.000000;;, - 26;3; 0.000000, 1.228822, 0.000000;;, - 27;3;-0.000000, 1.228822, 0.000000;;, - 28;3;-0.000000, 1.228822, 0.000000;;, - 29;3;-0.000000, 1.228822,-0.000000;;, - 30;3; 0.000000, 1.228822, 0.000000;;, - 31;3; 0.000000, 1.228822, 0.000000;;, - 32;3; 0.000000, 1.228822, 0.000000;;, - 33;3; 0.000000, 1.228822, 0.000000;;, - 34;3;-0.000000, 1.228822,-0.000000;;, - 35;3;-0.000000, 1.228822,-0.000000;;, - 36;3; 0.000000, 1.228822,-0.000000;;, - 37;3; 0.000000, 1.228822, 0.000000;;, - 38;3;-0.000000, 1.228822, 0.000000;;, - 39;3;-0.000000, 1.228822, 0.000000;;, - 40;3; 0.000000, 1.228822,-0.000000;;, - 41;3; 0.000000, 1.228822,-0.000000;;, - 42;3;-0.000000, 1.228822,-0.000000;;, - 43;3;-0.000000, 1.228822, 0.000000;;, - 44;3;-0.000000, 1.228822, 0.000000;;, - 45;3;-0.000000, 1.228822, 0.000000;;, - 46;3;-0.000000, 1.228822, 0.000000;;, - 47;3;-0.000000, 1.228822, 0.000000;;, - 48;3;-0.000000, 1.228822,-0.000000;;, - 49;3; 0.000000, 1.228822, 0.000000;;, - 50;3;-0.000000, 1.228822,-0.000000;;, - 51;3; 0.000000, 1.228822, 0.000000;;, - 52;3;-0.000000, 1.228822,-0.000000;;, - 53;3; 0.000000, 1.228822, 0.000000;;, - 54;3;-0.000000, 1.228822,-0.000000;;, - 55;3; 0.000000, 1.228822, 0.000000;;, - 56;3; 0.000000, 1.228822, 0.000000;;, - 57;3;-0.000000, 1.228822,-0.000000;;, - 58;3;-0.000000, 1.228822, 0.000000;;, - 59;3;-0.000000, 1.228822, 0.000000;;, - 60;3;-0.000000, 1.228822, 0.000000;;, - 61;3; 0.000000, 1.228822,-0.000000;;, - 62;3;-0.000000, 1.228822,-0.000000;;, - 63;3;-0.000000, 1.228822, 0.000000;;, - 64;3; 0.000000, 1.228822, 0.000000;;, - 65;3;-0.000000, 1.228822,-0.000000;;, - 66;3;-0.000000, 1.228822, 0.000000;;, - 67;3;-0.000000, 1.228822,-0.000000;;, - 68;3; 0.000000, 1.228822, 0.000000;;, - 69;3;-0.000000, 1.228822,-0.000000;;, - 70;3;-0.000000, 1.228822,-0.000000;;, - 71;3;-0.000000, 1.228822, 0.000000;;, - 72;3;-0.000000, 1.228822, 0.000000;;, - 73;3; 0.000000, 1.228822,-0.000000;;, - 74;3;-0.000000, 1.228822,-0.000000;;, - 75;3;-0.000000, 1.228822,-0.000000;;, - 76;3;-0.000000, 1.228822, 0.000000;;, - 77;3;-0.000000, 1.228822, 0.000000;;, - 78;3;-0.000000, 1.228822, 0.000000;;, - 79;3;-0.000000, 1.228822, 0.000000;;, - 80;3;-0.000000, 1.228822,-0.000000;;, - 81;3;-0.000000, 1.228822, 0.000000;;, - 82;3; 0.000000, 1.228822, 0.000000;;, - 83;3; 0.000000, 1.228822,-0.000000;;, - 84;3; 0.000000, 1.228822, 0.000000;;, - 85;3; 0.000000, 1.228822, 0.000000;;, - 86;3; 0.000000, 1.228822,-0.000000;;, - 87;3; 0.000000, 1.228822, 0.000000;;, - 88;3;-0.000000, 1.228822,-0.000000;;, - 89;3; 0.000000, 1.228822,-0.000000;;, - 90;3;-0.000000, 1.228822, 0.000000;;, - 91;3;-0.000000, 1.228822, 0.000000;;, - 92;3; 0.000000, 1.228822, 0.000000;;, - 93;3; 0.000000, 1.228822,-0.000000;;, - 94;3;-0.000000, 1.228822,-0.000000;;, - 95;3;-0.000000, 1.228822,-0.000000;;, - 96;3;-0.000000, 1.228822, 0.000000;;, - 97;3;-0.000000, 1.228822,-0.000000;;, - 98;3;-0.000000, 1.228822, 0.000000;;, - 99;3;-0.000000, 1.228822,-0.000000;;, - 100;3;-0.000000, 1.228822,-0.000000;;, - 101;3; 0.000000, 1.228822, 0.000000;;, - 102;3; 0.000000, 1.228822,-0.000000;;, - 103;3;-0.000000, 1.228822,-0.000000;;, - 104;3;-0.000000, 1.228822, 0.000000;;, - 105;3;-0.000000, 1.228822,-0.000000;;, - 106;3;-0.000000, 1.228822,-0.000000;;, - 107;3; 0.000000, 1.228822, 0.000000;;, - 108;3; 0.000000, 1.228822, 0.000000;;, - 109;3;-0.000000, 1.228822, 0.000000;;, - 110;3; 0.000000, 1.228822,-0.000000;;, - 111;3; 0.000000, 1.228822, 0.000000;;, - 112;3;-0.000000, 1.228822,-0.000000;;, - 113;3; 0.000000, 1.228822, 0.000000;;, - 114;3;-0.000000, 1.228822, 0.000000;;, - 115;3; 0.000000, 1.228822,-0.000000;;, - 116;3;-0.000000, 1.228822, 0.000000;;, - 117;3;-0.000000, 1.228822, 0.000000;;, - 118;3; 0.000000, 1.228822, 0.000000;;, - 119;3; 0.000000, 1.228822,-0.000000;;, - 120;3; 0.000000, 1.228822, 0.000000;;, - 121;3;-0.000000, 1.228822, 0.000000;;, - 122;3; 0.000000, 1.228822, 0.000000;;, - 123;3; 0.000000, 1.228822, 0.000000;;, - 124;3;-0.000000, 1.228822,-0.000000;;, - 125;3; 0.000000, 1.228822, 0.000000;;, - 126;3; 0.000000, 1.228822, 0.000000;;, - 127;3;-0.000000, 1.228822,-0.000000;;, - 128;3;-0.000000, 1.228822, 0.000000;;, - 129;3;-0.000000, 1.228822, 0.000000;;, - 130;3; 0.000000, 1.228822,-0.000000;;, - 131;3;-0.000000, 1.228822, 0.000000;;, - 132;3;-0.000000, 1.228822,-0.000000;;, - 133;3; 0.000000, 1.228822,-0.000000;;, - 134;3;-0.000000, 1.228822, 0.000000;;, - 135;3;-0.000000, 1.228822,-0.000000;;, - 136;3;-0.000000, 1.228822, 0.000000;;, - 137;3;-0.000000, 1.228822,-0.000000;;, - 138;3;-0.000000, 1.228822, 0.000000;;, - 139;3;-0.000000, 1.228822,-0.000000;;, - 140;3; 0.000000, 1.228822, 0.000000;;, - 141;3;-0.000000, 1.228822,-0.000000;;, - 142;3;-0.000000, 1.228822,-0.000000;;, - 143;3; 0.000000, 1.228822, 0.000000;;, - 144;3;-0.000000, 1.228822, 0.000000;;, - 145;3; 0.000000, 1.228822, 0.000000;;, - 146;3; 0.000000, 1.228822, 0.000000;;, - 147;3; 0.000000, 1.228822,-0.000000;;, - 148;3;-0.000000, 1.228822, 0.000000;;, - 149;3; 0.000000, 1.228822,-0.000000;;, - 150;3;-0.000000, 1.228822, 0.000000;;, - 151;3; 0.000000, 1.228822, 0.000000;;, - 152;3; 0.000000, 1.228822, 0.000000;;, - 153;3;-0.000000, 1.228822,-0.000000;;, - 154;3;-0.000000, 1.228822, 0.000000;;, - 155;3;-0.000000, 1.228822, 0.000000;;, - 156;3; 0.000000, 1.228822,-0.000000;;, - 157;3;-0.000000, 1.228822,-0.000000;;, - 158;3;-0.000000, 1.228822,-0.000000;;, - 159;3;-0.000000, 1.228822,-0.000000;;, - 160;3;-0.000000, 1.228822,-0.000000;;, - 161;3; 0.000000, 1.228822,-0.000000;;, - 162;3; 0.000000, 1.228822,-0.000000;;, - 163;3; 0.000000, 1.228822, 0.000000;;, - 164;3; 0.000000, 1.228822, 0.000000;;, - 165;3;-0.000000, 1.228822, 0.000000;;, - 166;3;-0.000000, 1.228822, 0.000000;;, - 167;3; 0.000000, 1.228822,-0.000000;;, - 168;3; 0.000000, 1.228822, 0.000000;;, - 169;3; 0.000000, 1.228822, 0.000000;;, - 170;3; 0.000000, 1.228822, 0.000000;;, - 171;3;-0.000000, 1.228822, 0.000000;;, - 172;3;-0.000000, 1.228822,-0.000000;;, - 173;3; 0.000000, 1.228822, 0.000000;;, - 174;3; 0.000000, 1.228822,-0.000000;;, - 175;3; 0.000000, 1.228822, 0.000000;;, - 176;3;-0.000000, 1.228822,-0.000000;;, - 177;3;-0.000000, 1.228822, 0.000000;;, - 178;3;-0.000000, 1.228822,-0.000000;;, - 179;3;-0.000000, 1.228822, 0.000000;;, - 180;3;-0.000000, 1.228822, 0.000000;;, - 181;3; 0.000000, 1.228822,-0.000000;;, - 182;3; 0.000000, 1.228822, 0.000000;;, - 183;3; 0.000000, 1.228822, 0.000000;;, - 184;3;-0.000000, 1.228822,-0.000000;;, - 185;3;-0.000000, 1.228822, 0.000000;;, - 186;3; 0.000000, 1.228822,-0.000000;;, - 187;3;-0.000000, 1.228822, 0.000000;;, - 188;3;-0.000000, 1.228822, 0.000000;;, - 189;3;-0.000000, 1.228822,-0.000000;;, - 190;3;-0.000000, 1.228822,-0.000000;;, - 191;3; 0.000000, 1.228822,-0.000000;;, - 192;3;-0.000000, 1.228822, 0.000000;;, - 193;3;-0.000000, 1.228822, 0.000000;;, - 194;3;-0.000000, 1.228822,-0.000000;;, - 195;3;-0.000000, 1.228822,-0.000000;;, - 196;3; 0.000000, 1.228822, 0.000000;;, - 197;3;-0.000000, 1.228822,-0.000000;;, - 198;3;-0.000000, 1.228822,-0.000000;;, - 199;3;-0.000000, 1.228822, 0.000000;;, - 200;3;-0.000000, 1.228822, 0.000000;;, - 201;3;-0.000000, 1.228822, 0.000000;;, - 202;3;-0.000000, 1.228822, 0.000000;;, - 203;3;-0.000000, 1.228822, 0.000000;;, - 204;3;-0.000000, 1.228822, 0.000000;;, - 205;3;-0.000000, 1.228822, 0.000000;;, - 206;3;-0.000000, 1.228822, 0.000000;;, - 207;3;-0.000000, 1.228822, 0.000000;;, - 208;3;-0.000000, 1.228822, 0.000000;;, - 209;3;-0.000000, 1.228822, 0.000000;;, - 210;3;-0.000000, 1.228822, 0.000000;;, - 211;3;-0.000000, 1.228822, 0.000000;;, - 212;3;-0.000000, 1.228822, 0.000000;;, - 213;3;-0.000000, 1.228822, 0.000000;;, - 214;3;-0.000000, 1.228822, 0.000000;;, - 215;3;-0.000000, 1.228822, 0.000000;;, - 216;3;-0.000000, 1.228822, 0.000000;;, - 217;3;-0.000000, 1.228822, 0.000000;;, - 218;3;-0.000000, 1.228822, 0.000000;;, - 219;3;-0.000000, 1.228822, 0.000000;;, - 220;3;-0.000000, 1.228822, 0.000000;;, - 221;3;-0.000000, 1.228822, 0.000000;;, - 222;3;-0.000000, 1.228822, 0.000000;;, - 223;3;-0.000000, 1.228822, 0.000000;;, - 224;3;-0.000000, 1.228822, 0.000000;;, - 225;3;-0.000000, 1.228822, 0.000000;;, - 226;3;-0.000000, 1.228822, 0.000000;;, - 227;3;-0.000000, 1.228822, 0.000000;;, - 228;3;-0.000000, 1.228822, 0.000000;;, - 229;3;-0.000000, 1.228822, 0.000000;;, - 230;3;-0.000000, 1.228822, 0.000000;;, - 231;3;-0.000000, 1.228822, 0.000000;;, - 232;3;-0.000000, 1.228822, 0.000000;;, - 233;3;-0.000000, 1.228822, 0.000000;;, - 234;3;-0.000000, 1.228822, 0.000000;;, - 235;3;-0.000000, 1.228822, 0.000000;;, - 236;3;-0.000000, 1.228822, 0.000000;;, - 237;3;-0.000000, 1.228822, 0.000000;;, - 238;3;-0.000000, 1.228822, 0.000000;;, - 239;3;-0.000000, 1.228822, 0.000000;;, - 240;3;-0.000000, 1.228822, 0.000000;;, - 241;3;-0.000000, 1.228822, 0.000000;;, - 242;3;-0.000000, 1.228822, 0.000000;;, - 243;3;-0.000000, 1.228822, 0.000000;;, - 244;3;-0.000000, 1.228822, 0.000000;;, - 245;3;-0.000000, 1.228822, 0.000000;;, - 246;3;-0.000000, 1.228822, 0.000000;;, - 247;3;-0.000000, 1.228822, 0.000000;;, - 248;3;-0.000000, 1.228822, 0.000000;;, - 249;3;-0.000000, 1.228822, 0.000000;;; - } - } - Animation { - {Armature_Bone_001} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 1;4;-0.707099,-0.000262,-0.000262, 0.707099;;, - 2;4;-0.707075,-0.001053,-0.001053, 0.707075;;, - 3;4;-0.707035,-0.002376,-0.002376, 0.707035;;, - 4;4;-0.706979,-0.004219,-0.004219, 0.706979;;, - 5;4;-0.706908,-0.006555,-0.006555, 0.706908;;, - 6;4;-0.706824,-0.009338,-0.009338, 0.706824;;, - 7;4;-0.706728,-0.012499,-0.012499, 0.706728;;, - 8;4;-0.706623,-0.015950,-0.015950, 0.706623;;, - 9;4;-0.706513,-0.019583,-0.019583, 0.706513;;, - 10;4;-0.706401,-0.023279,-0.023279, 0.706401;;, - 11;4;-0.706290,-0.026912,-0.026912, 0.706290;;, - 12;4;-0.706186,-0.030363,-0.030363, 0.706186;;, - 13;4;-0.706090,-0.033524,-0.033524, 0.706090;;, - 14;4;-0.706005,-0.036307,-0.036307, 0.706005;;, - 15;4;-0.705935,-0.038643,-0.038643, 0.705935;;, - 16;4;-0.705879,-0.040486,-0.040486, 0.705879;;, - 17;4;-0.705839,-0.041808,-0.041808, 0.705839;;, - 18;4;-0.705815,-0.042600,-0.042600, 0.705815;;, - 19;4;-0.705807,-0.042862,-0.042862, 0.705807;;, - 20;4;-0.705808,-0.042476,-0.042476, 0.705808;;, - 21;4;-0.705811,-0.041309,-0.041309, 0.705811;;, - 22;4;-0.705817,-0.039359,-0.039359, 0.705817;;, - 23;4;-0.705826,-0.036638,-0.036638, 0.705826;;, - 24;4;-0.705837,-0.033179,-0.033179, 0.705837;;, - 25;4;-0.705852,-0.029042,-0.029042, 0.705852;;, - 26;4;-0.705869,-0.024313,-0.024313, 0.705869;;, - 27;4;-0.705889,-0.019107,-0.019107, 0.705889;;, - 28;4;-0.705912,-0.013566,-0.013566, 0.705912;;, - 29;4;-0.705938,-0.007852,-0.007852, 0.705938;;, - 30;4;-0.705966,-0.002138,-0.002138, 0.705966;;, - 31;4;-0.705996, 0.003403, 0.003403, 0.705996;;, - 32;4;-0.706027, 0.008609, 0.008609, 0.706027;;, - 33;4;-0.706059, 0.013338, 0.013338, 0.706059;;, - 34;4;-0.706093, 0.017475, 0.017475, 0.706093;;, - 35;4;-0.706126, 0.020934, 0.020934, 0.706126;;, - 36;4;-0.706160, 0.023655, 0.023655, 0.706160;;, - 37;4;-0.706194, 0.025605, 0.025605, 0.706194;;, - 38;4;-0.706227, 0.026772, 0.026772, 0.706227;;, - 39;4;-0.706260, 0.027158, 0.027158, 0.706260;;, - 40;4;-0.706295, 0.027008, 0.027008, 0.706295;;, - 41;4;-0.706335, 0.026556, 0.026556, 0.706335;;, - 42;4;-0.706379, 0.025799, 0.025799, 0.706379;;, - 43;4;-0.706428, 0.024744, 0.024744, 0.706428;;, - 44;4;-0.706481, 0.023402, 0.023402, 0.706481;;, - 45;4;-0.706538, 0.021798, 0.021798, 0.706538;;, - 46;4;-0.706597, 0.019963, 0.019963, 0.706597;;, - 47;4;-0.706658, 0.017944, 0.017944, 0.706658;;, - 48;4;-0.706719, 0.015795, 0.015795, 0.706719;;, - 49;4;-0.706779, 0.013579, 0.013579, 0.706779;;, - 50;4;-0.706836, 0.011363, 0.011363, 0.706836;;, - 51;4;-0.706890, 0.009214, 0.009214, 0.706890;;, - 52;4;-0.706940, 0.007194, 0.007194, 0.706940;;, - 53;4;-0.706984, 0.005360, 0.005360, 0.706984;;, - 54;4;-0.707022, 0.003755, 0.003755, 0.707022;;, - 55;4;-0.707053, 0.002414, 0.002414, 0.707053;;, - 56;4;-0.707077, 0.001359, 0.001359, 0.707077;;, - 57;4;-0.707093, 0.000602, 0.000602, 0.707093;;, - 58;4;-0.707104, 0.000150, 0.000150, 0.707104;;, - 59;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 60;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 61;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 62;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 63;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 64;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 65;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 66;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 67;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 68;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 69;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 70;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 71;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 72;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 73;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 74;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 75;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 76;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 77;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 78;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 79;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 80;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 81;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 82;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 83;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 84;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 85;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 86;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 87;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 88;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 89;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 90;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 91;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 92;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 93;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 94;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 95;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 96;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 97;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 98;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 99;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 100;4;-0.707095,-0.000610,-0.000610, 0.707095;;, - 101;4;-0.707059,-0.002445,-0.002445, 0.707059;;, - 102;4;-0.707001,-0.005428,-0.005428, 0.707001;;, - 103;4;-0.706925,-0.009330,-0.009330, 0.706925;;, - 104;4;-0.706839,-0.013751,-0.013751, 0.706839;;, - 105;4;-0.706753,-0.018172,-0.018172, 0.706753;;, - 106;4;-0.706677,-0.022074,-0.022074, 0.706677;;, - 107;4;-0.706619,-0.025057,-0.025057, 0.706619;;, - 108;4;-0.706584,-0.026892,-0.026892, 0.706584;;, - 109;4;-0.706572,-0.027502,-0.027502, 0.706572;;, - 110;4;-0.706584,-0.026892,-0.026892, 0.706584;;, - 111;4;-0.706619,-0.025057,-0.025057, 0.706619;;, - 112;4;-0.706677,-0.022074,-0.022074, 0.706677;;, - 113;4;-0.706753,-0.018172,-0.018172, 0.706753;;, - 114;4;-0.706839,-0.013751,-0.013751, 0.706839;;, - 115;4;-0.706925,-0.009330,-0.009330, 0.706925;;, - 116;4;-0.707001,-0.005428,-0.005428, 0.707001;;, - 117;4;-0.707059,-0.002445,-0.002445, 0.707059;;, - 118;4;-0.707095,-0.000610,-0.000610, 0.707095;;, - 119;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 120;4;-0.707095,-0.000610,-0.000610, 0.707095;;, - 121;4;-0.707059,-0.002445,-0.002445, 0.707059;;, - 122;4;-0.707001,-0.005428,-0.005428, 0.707001;;, - 123;4;-0.706925,-0.009330,-0.009330, 0.706925;;, - 124;4;-0.706839,-0.013751,-0.013751, 0.706839;;, - 125;4;-0.706753,-0.018172,-0.018172, 0.706753;;, - 126;4;-0.706677,-0.022074,-0.022074, 0.706677;;, - 127;4;-0.706619,-0.025057,-0.025057, 0.706619;;, - 128;4;-0.706584,-0.026892,-0.026892, 0.706584;;, - 129;4;-0.706572,-0.027502,-0.027502, 0.706572;;, - 130;4;-0.706584,-0.026892,-0.026892, 0.706584;;, - 131;4;-0.706619,-0.025057,-0.025057, 0.706619;;, - 132;4;-0.706677,-0.022074,-0.022074, 0.706677;;, - 133;4;-0.706753,-0.018172,-0.018172, 0.706753;;, - 134;4;-0.706839,-0.013751,-0.013751, 0.706839;;, - 135;4;-0.706925,-0.009330,-0.009330, 0.706925;;, - 136;4;-0.707001,-0.005428,-0.005428, 0.707001;;, - 137;4;-0.707059,-0.002445,-0.002445, 0.707059;;, - 138;4;-0.707095,-0.000610,-0.000610, 0.707095;;, - 139;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 140;4;-0.707059,-0.002445,-0.002445, 0.707059;;, - 141;4;-0.706925,-0.009330,-0.009330, 0.706925;;, - 142;4;-0.706753,-0.018172,-0.018172, 0.706753;;, - 143;4;-0.706619,-0.025057,-0.025057, 0.706619;;, - 144;4;-0.706572,-0.027502,-0.027502, 0.706572;;, - 145;4;-0.706619,-0.025057,-0.025057, 0.706619;;, - 146;4;-0.706753,-0.018172,-0.018172, 0.706753;;, - 147;4;-0.706925,-0.009330,-0.009330, 0.706925;;, - 148;4;-0.707059,-0.002445,-0.002445, 0.707059;;, - 149;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 150;4;-0.707059,-0.002445,-0.002445, 0.707059;;, - 151;4;-0.706925,-0.009330,-0.009330, 0.706925;;, - 152;4;-0.706753,-0.018172,-0.018172, 0.706753;;, - 153;4;-0.706619,-0.025057,-0.025057, 0.706619;;, - 154;4;-0.706572,-0.027502,-0.027502, 0.706572;;, - 155;4;-0.706619,-0.025057,-0.025057, 0.706619;;, - 156;4;-0.706753,-0.018172,-0.018172, 0.706753;;, - 157;4;-0.706925,-0.009330,-0.009330, 0.706925;;, - 158;4;-0.707059,-0.002445,-0.002445, 0.707059;;, - 159;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 160;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 161;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 162;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 163;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 164;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 165;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 166;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 167;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 168;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 169;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 170;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 171;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 172;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 173;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 174;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 175;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 176;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 177;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 178;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 179;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 180;4;-0.706883,-0.002637,-0.002637, 0.706883;;, - 181;4;-0.706211,-0.010574,-0.010574, 0.706211;;, - 182;4;-0.705118,-0.023479,-0.023479, 0.705118;;, - 183;4;-0.703688,-0.040358,-0.040358, 0.703688;;, - 184;4;-0.702068,-0.059479,-0.059479, 0.702068;;, - 185;4;-0.700448,-0.078600,-0.078600, 0.700448;;, - 186;4;-0.699018,-0.095479,-0.095479, 0.699018;;, - 187;4;-0.697925,-0.108384,-0.108384, 0.697925;;, - 188;4;-0.697252,-0.116321,-0.116321, 0.697252;;, - 189;4;-0.697029,-0.118958,-0.118958, 0.697029;;, - 190;4;-0.697029,-0.118958,-0.118958, 0.697029;;, - 191;4;-0.697029,-0.118958,-0.118958, 0.697029;;, - 192;4;-0.697029,-0.118958,-0.118958, 0.697029;;, - 193;4;-0.697029,-0.118958,-0.118958, 0.697029;;, - 194;4;-0.697029,-0.118958,-0.118958, 0.697029;;, - 195;4;-0.697925,-0.108384,-0.108384, 0.697925;;, - 196;4;-0.700448,-0.078600,-0.078600, 0.700448;;, - 197;4;-0.703688,-0.040358,-0.040358, 0.703688;;, - 198;4;-0.706211,-0.010574,-0.010574, 0.706211;;, - 199;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 200;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 201;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 202;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 203;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 204;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 205;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 206;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 207;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 208;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 209;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 210;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 211;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 212;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 213;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 214;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 215;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 216;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 217;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 218;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 219;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 220;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 221;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 222;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 223;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 224;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 225;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 226;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 227;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 228;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 229;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 230;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 231;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 232;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 233;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 234;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 235;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 236;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 237;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 238;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 239;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 240;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 241;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 242;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 243;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 244;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 245;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 246;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 247;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 248;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 249;4;-0.707107, 0.000000, 0.000000, 0.707107;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3; 0.506179, 1.550838, 1.183012;;, - 1;3; 0.506179, 1.550838, 1.183012;;, - 2;3; 0.506179, 1.550838, 1.183012;;, - 3;3; 0.506179, 1.550838, 1.183012;;, - 4;3; 0.506179, 1.550838, 1.183012;;, - 5;3; 0.506179, 1.550838, 1.183012;;, - 6;3; 0.506179, 1.550838, 1.183012;;, - 7;3; 0.506179, 1.550838, 1.183012;;, - 8;3; 0.506179, 1.550838, 1.183012;;, - 9;3; 0.506179, 1.550838, 1.183012;;, - 10;3; 0.506179, 1.550838, 1.183012;;, - 11;3; 0.506179, 1.550838, 1.183012;;, - 12;3; 0.506179, 1.550838, 1.183012;;, - 13;3; 0.506179, 1.550838, 1.183012;;, - 14;3; 0.506179, 1.550838, 1.183012;;, - 15;3; 0.506179, 1.550838, 1.183012;;, - 16;3; 0.506179, 1.550838, 1.183012;;, - 17;3; 0.506179, 1.550838, 1.183012;;, - 18;3; 0.506179, 1.550838, 1.183012;;, - 19;3; 0.506179, 1.550838, 1.183012;;, - 20;3; 0.506179, 1.550838, 1.183012;;, - 21;3; 0.506179, 1.550838, 1.183012;;, - 22;3; 0.506179, 1.550838, 1.183012;;, - 23;3; 0.506179, 1.550838, 1.183012;;, - 24;3; 0.506179, 1.550838, 1.183012;;, - 25;3; 0.506179, 1.550838, 1.183012;;, - 26;3; 0.506179, 1.550838, 1.183012;;, - 27;3; 0.506179, 1.550838, 1.183012;;, - 28;3; 0.506179, 1.550838, 1.183012;;, - 29;3; 0.506179, 1.550838, 1.183012;;, - 30;3; 0.506179, 1.550838, 1.183012;;, - 31;3; 0.506179, 1.550838, 1.183012;;, - 32;3; 0.506179, 1.550838, 1.183012;;, - 33;3; 0.506179, 1.550838, 1.183012;;, - 34;3; 0.506179, 1.550838, 1.183012;;, - 35;3; 0.506179, 1.550838, 1.183012;;, - 36;3; 0.506179, 1.550838, 1.183012;;, - 37;3; 0.506179, 1.550838, 1.183012;;, - 38;3; 0.506179, 1.550838, 1.183012;;, - 39;3; 0.506179, 1.550838, 1.183012;;, - 40;3; 0.506179, 1.550838, 1.183012;;, - 41;3; 0.506179, 1.550838, 1.183012;;, - 42;3; 0.506179, 1.550838, 1.183012;;, - 43;3; 0.506179, 1.550838, 1.183012;;, - 44;3; 0.506179, 1.550838, 1.183012;;, - 45;3; 0.506179, 1.550838, 1.183012;;, - 46;3; 0.506179, 1.550838, 1.183012;;, - 47;3; 0.506179, 1.550838, 1.183012;;, - 48;3; 0.506179, 1.550838, 1.183012;;, - 49;3; 0.506179, 1.550838, 1.183012;;, - 50;3; 0.506179, 1.550838, 1.183012;;, - 51;3; 0.506179, 1.550838, 1.183012;;, - 52;3; 0.506179, 1.550838, 1.183012;;, - 53;3; 0.506179, 1.550838, 1.183012;;, - 54;3; 0.506179, 1.550838, 1.183012;;, - 55;3; 0.506179, 1.550838, 1.183012;;, - 56;3; 0.506179, 1.550838, 1.183012;;, - 57;3; 0.506179, 1.550838, 1.183012;;, - 58;3; 0.506179, 1.550838, 1.183012;;, - 59;3; 0.506179, 1.550838, 1.183012;;, - 60;3; 0.506179, 1.550838, 1.183012;;, - 61;3; 0.506179, 1.550838, 1.183012;;, - 62;3; 0.506179, 1.550838, 1.183012;;, - 63;3; 0.506179, 1.550838, 1.183012;;, - 64;3; 0.506179, 1.550838, 1.183012;;, - 65;3; 0.506179, 1.550838, 1.183012;;, - 66;3; 0.506179, 1.550838, 1.183012;;, - 67;3; 0.506179, 1.550838, 1.183012;;, - 68;3; 0.506179, 1.550838, 1.183012;;, - 69;3; 0.506179, 1.550838, 1.183012;;, - 70;3; 0.506179, 1.550838, 1.183012;;, - 71;3; 0.506179, 1.550838, 1.183012;;, - 72;3; 0.506179, 1.550838, 1.183012;;, - 73;3; 0.506179, 1.550838, 1.183012;;, - 74;3; 0.506179, 1.550838, 1.183012;;, - 75;3; 0.506179, 1.550838, 1.183012;;, - 76;3; 0.506179, 1.550838, 1.183012;;, - 77;3; 0.506179, 1.550838, 1.183012;;, - 78;3; 0.506179, 1.550838, 1.183012;;, - 79;3; 0.506179, 1.550838, 1.183012;;, - 80;3; 0.506179, 1.550838, 1.183012;;, - 81;3; 0.506179, 1.550838, 1.183012;;, - 82;3; 0.506179, 1.550838, 1.183012;;, - 83;3; 0.506179, 1.550838, 1.183012;;, - 84;3; 0.506179, 1.550838, 1.183012;;, - 85;3; 0.506179, 1.550838, 1.183012;;, - 86;3; 0.506179, 1.550838, 1.183012;;, - 87;3; 0.506179, 1.550838, 1.183012;;, - 88;3; 0.506179, 1.550838, 1.183012;;, - 89;3; 0.506179, 1.550838, 1.183012;;, - 90;3; 0.506179, 1.550838, 1.183012;;, - 91;3; 0.506179, 1.550838, 1.183012;;, - 92;3; 0.506179, 1.550838, 1.183012;;, - 93;3; 0.506179, 1.550838, 1.183012;;, - 94;3; 0.506179, 1.550838, 1.183012;;, - 95;3; 0.506179, 1.550838, 1.183012;;, - 96;3; 0.506179, 1.550838, 1.183012;;, - 97;3; 0.506179, 1.550838, 1.183012;;, - 98;3; 0.506179, 1.550838, 1.183012;;, - 99;3; 0.506179, 1.550838, 1.183012;;, - 100;3; 0.506179, 1.550838, 1.183012;;, - 101;3; 0.506179, 1.550838, 1.183012;;, - 102;3; 0.506179, 1.550838, 1.183012;;, - 103;3; 0.506179, 1.550838, 1.183012;;, - 104;3; 0.506179, 1.550838, 1.183012;;, - 105;3; 0.506179, 1.550838, 1.183012;;, - 106;3; 0.506179, 1.550838, 1.183012;;, - 107;3; 0.506179, 1.550838, 1.183012;;, - 108;3; 0.506179, 1.550838, 1.183012;;, - 109;3; 0.506179, 1.550838, 1.183012;;, - 110;3; 0.506179, 1.550838, 1.183012;;, - 111;3; 0.506179, 1.550838, 1.183012;;, - 112;3; 0.506179, 1.550838, 1.183012;;, - 113;3; 0.506179, 1.550838, 1.183012;;, - 114;3; 0.506179, 1.550838, 1.183012;;, - 115;3; 0.506179, 1.550838, 1.183012;;, - 116;3; 0.506179, 1.550838, 1.183012;;, - 117;3; 0.506179, 1.550838, 1.183012;;, - 118;3; 0.506179, 1.550838, 1.183012;;, - 119;3; 0.506179, 1.550838, 1.183012;;, - 120;3; 0.506179, 1.550838, 1.183012;;, - 121;3; 0.506179, 1.550838, 1.183012;;, - 122;3; 0.506179, 1.550838, 1.183012;;, - 123;3; 0.506179, 1.550838, 1.183012;;, - 124;3; 0.506179, 1.550838, 1.183012;;, - 125;3; 0.506179, 1.550838, 1.183012;;, - 126;3; 0.506179, 1.550838, 1.183012;;, - 127;3; 0.506179, 1.550838, 1.183012;;, - 128;3; 0.506179, 1.550838, 1.183012;;, - 129;3; 0.506179, 1.550838, 1.183012;;, - 130;3; 0.506179, 1.550838, 1.183012;;, - 131;3; 0.506179, 1.550838, 1.183012;;, - 132;3; 0.506179, 1.550838, 1.183012;;, - 133;3; 0.506179, 1.550838, 1.183012;;, - 134;3; 0.506179, 1.550838, 1.183012;;, - 135;3; 0.506179, 1.550838, 1.183012;;, - 136;3; 0.506179, 1.550838, 1.183012;;, - 137;3; 0.506179, 1.550838, 1.183012;;, - 138;3; 0.506179, 1.550838, 1.183012;;, - 139;3; 0.506179, 1.550838, 1.183012;;, - 140;3; 0.506179, 1.550838, 1.183012;;, - 141;3; 0.506179, 1.550838, 1.183012;;, - 142;3; 0.506179, 1.550838, 1.183012;;, - 143;3; 0.506179, 1.550838, 1.183012;;, - 144;3; 0.506179, 1.550838, 1.183012;;, - 145;3; 0.506179, 1.550838, 1.183012;;, - 146;3; 0.506179, 1.550838, 1.183012;;, - 147;3; 0.506179, 1.550838, 1.183012;;, - 148;3; 0.506179, 1.550838, 1.183012;;, - 149;3; 0.506179, 1.550838, 1.183012;;, - 150;3; 0.506179, 1.550838, 1.183012;;, - 151;3; 0.506179, 1.550838, 1.183012;;, - 152;3; 0.506179, 1.550838, 1.183012;;, - 153;3; 0.506179, 1.550838, 1.183012;;, - 154;3; 0.506179, 1.550838, 1.183012;;, - 155;3; 0.506179, 1.550838, 1.183012;;, - 156;3; 0.506179, 1.550838, 1.183012;;, - 157;3; 0.506179, 1.550838, 1.183012;;, - 158;3; 0.506179, 1.550838, 1.183012;;, - 159;3; 0.506179, 1.550838, 1.183012;;, - 160;3; 0.506179, 1.550838, 1.183012;;, - 161;3; 0.506179, 1.550838, 1.183012;;, - 162;3; 0.506179, 1.550838, 1.183012;;, - 163;3; 0.506179, 1.550838, 1.183012;;, - 164;3; 0.506179, 1.550838, 1.183012;;, - 165;3; 0.506179, 1.550838, 1.183012;;, - 166;3; 0.506179, 1.550838, 1.183012;;, - 167;3; 0.506179, 1.550838, 1.183012;;, - 168;3; 0.506179, 1.550838, 1.183012;;, - 169;3; 0.506179, 1.550838, 1.183012;;, - 170;3; 0.506179, 1.550838, 1.183012;;, - 171;3; 0.506179, 1.550838, 1.183012;;, - 172;3; 0.506179, 1.550838, 1.183012;;, - 173;3; 0.506179, 1.550838, 1.183012;;, - 174;3; 0.506179, 1.550838, 1.183012;;, - 175;3; 0.506179, 1.550838, 1.183012;;, - 176;3; 0.506179, 1.550838, 1.183012;;, - 177;3; 0.506179, 1.550838, 1.183012;;, - 178;3; 0.506179, 1.550838, 1.183012;;, - 179;3; 0.506179, 1.550838, 1.183012;;, - 180;3; 0.534224, 1.550838, 1.200614;;, - 181;3; 0.618629, 1.550838, 1.253590;;, - 182;3; 0.755866, 1.550838, 1.339727;;, - 183;3; 0.935366, 1.550838, 1.452389;;, - 184;3; 1.138711, 1.550838, 1.580017;;, - 185;3; 1.342055, 1.550838, 1.707644;;, - 186;3; 1.521555, 1.550838, 1.820307;;, - 187;3; 1.658792, 1.550838, 1.906443;;, - 188;3; 1.743197, 1.550838, 1.959419;;, - 189;3; 1.771243, 1.550838, 1.977021;;, - 190;3; 1.771243, 1.550838, 1.977021;;, - 191;3; 1.771243, 1.550838, 1.977021;;, - 192;3; 1.771243, 1.550838, 1.977021;;, - 193;3; 1.771243, 1.550838, 1.977021;;, - 194;3; 1.771243, 1.550838, 1.977021;;, - 195;3; 1.658792, 1.550838, 1.906443;;, - 196;3; 1.342055, 1.550838, 1.707644;;, - 197;3; 0.935367, 1.550838, 1.452389;;, - 198;3; 0.618629, 1.550838, 1.253590;;, - 199;3; 0.506179, 1.550838, 1.183012;;, - 200;3; 0.506179, 1.550838, 1.183012;;, - 201;3; 0.506179, 1.550838, 1.183012;;, - 202;3; 0.506179, 1.550838, 1.183012;;, - 203;3; 0.506179, 1.550838, 1.183012;;, - 204;3; 0.506179, 1.550838, 1.183012;;, - 205;3; 0.506179, 1.550838, 1.183012;;, - 206;3; 0.506179, 1.550838, 1.183012;;, - 207;3; 0.506179, 1.550838, 1.183012;;, - 208;3; 0.506179, 1.550838, 1.183012;;, - 209;3; 0.506179, 1.550838, 1.183012;;, - 210;3; 0.506179, 1.550838, 1.183012;;, - 211;3; 0.506179, 1.550838, 1.183012;;, - 212;3; 0.506179, 1.550838, 1.183012;;, - 213;3; 0.506179, 1.550838, 1.183012;;, - 214;3; 0.506179, 1.550838, 1.183012;;, - 215;3; 0.506179, 1.550838, 1.183012;;, - 216;3; 0.506179, 1.550838, 1.183012;;, - 217;3; 0.506179, 1.550838, 1.183012;;, - 218;3; 0.506179, 1.550838, 1.183012;;, - 219;3; 0.506179, 1.550838, 1.183012;;, - 220;3; 0.506179, 1.550838, 1.183012;;, - 221;3; 0.506179, 1.550838, 1.183012;;, - 222;3; 0.506179, 1.550838, 1.183012;;, - 223;3; 0.506179, 1.550838, 1.183012;;, - 224;3; 0.506179, 1.550838, 1.183012;;, - 225;3; 0.506179, 1.550838, 1.183012;;, - 226;3; 0.506179, 1.550838, 1.183012;;, - 227;3; 0.506179, 1.550838, 1.183012;;, - 228;3; 0.506179, 1.550838, 1.183012;;, - 229;3; 0.506179, 1.550838, 1.183012;;, - 230;3; 0.506179, 1.550838, 1.183012;;, - 231;3; 0.506179, 1.550838, 1.183012;;, - 232;3; 0.506179, 1.550838, 1.183012;;, - 233;3; 0.506179, 1.550838, 1.183012;;, - 234;3; 0.506179, 1.550838, 1.183012;;, - 235;3; 0.506179, 1.550838, 1.183012;;, - 236;3; 0.506179, 1.550838, 1.183012;;, - 237;3; 0.506179, 1.550838, 1.183012;;, - 238;3; 0.506179, 1.550838, 1.183012;;, - 239;3; 0.506179, 1.550838, 1.183012;;, - 240;3; 0.506179, 1.550838, 1.183012;;, - 241;3; 0.506179, 1.550838, 1.183012;;, - 242;3; 0.506179, 1.550838, 1.183012;;, - 243;3; 0.506179, 1.550838, 1.183012;;, - 244;3; 0.506179, 1.550838, 1.183012;;, - 245;3; 0.506179, 1.550838, 1.183012;;, - 246;3; 0.506179, 1.550838, 1.183012;;, - 247;3; 0.506179, 1.550838, 1.183012;;, - 248;3; 0.506179, 1.550838, 1.183012;;, - 249;3; 0.506179, 1.550838, 1.183012;;; - } - } - Animation { - {Cube_001} - AnimationKey { // Rotation - 0; - 250; - 0;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 1;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 2;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 3;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 4;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 5;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 6;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 7;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 8;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 9;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 10;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 11;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 12;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 13;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 14;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 15;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 16;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 17;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 18;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 19;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 20;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 21;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 22;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 23;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 24;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 25;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 26;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 27;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 28;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 29;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 30;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 31;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 32;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 33;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 34;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 35;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 36;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 37;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 38;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 39;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 40;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 41;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 42;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 43;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 44;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 45;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 46;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 47;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 48;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 49;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 50;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 51;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 52;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 53;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 54;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 55;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 56;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 57;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 58;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 59;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 60;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 61;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 62;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 63;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 64;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 65;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 66;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 67;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 68;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 69;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 70;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 71;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 72;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 73;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 74;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 75;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 76;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 77;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 78;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 79;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 80;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 81;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 82;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 83;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 84;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 85;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 86;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 87;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 88;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 89;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 90;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 91;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 92;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 93;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 94;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 95;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 96;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 97;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 98;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 99;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 100;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 101;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 102;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 103;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 104;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 105;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 106;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 107;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 108;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 109;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 110;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 111;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 112;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 113;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 114;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 115;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 116;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 117;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 118;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 119;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 120;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 121;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 122;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 123;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 124;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 125;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 126;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 127;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 128;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 129;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 130;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 131;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 132;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 133;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 134;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 135;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 136;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 137;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 138;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 139;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 140;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 141;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 142;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 143;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 144;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 145;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 146;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 147;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 148;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 149;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 150;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 151;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 152;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 153;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 154;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 155;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 156;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 157;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 158;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 159;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 160;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 161;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 162;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 163;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 164;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 165;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 166;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 167;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 168;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 169;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 170;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 171;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 172;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 173;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 174;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 175;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 176;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 177;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 178;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 179;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 180;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 181;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 182;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 183;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 184;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 185;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 186;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 187;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 188;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 189;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 190;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 191;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 192;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 193;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 194;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 195;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 196;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 197;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 198;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 199;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 200;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 201;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 202;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 203;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 204;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 205;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 206;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 207;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 208;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 209;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 210;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 211;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 212;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 213;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 214;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 215;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 216;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 217;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 218;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 219;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 220;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 221;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 222;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 223;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 224;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 225;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 226;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 227;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 228;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 229;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 230;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 231;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 232;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 233;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 234;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 235;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 236;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 237;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 238;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 239;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 240;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 241;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 242;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 243;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 244;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 245;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 246;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 247;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 248;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 249;4; 0.000000,-0.000000, 0.000000, 1.000000;;; - } - AnimationKey { // Scale - 1; - 250; - 0;3; 0.165085, 0.348037, 0.189174;;, - 1;3; 0.165085, 0.348037, 0.189174;;, - 2;3; 0.165085, 0.348037, 0.189174;;, - 3;3; 0.165085, 0.348037, 0.189174;;, - 4;3; 0.165085, 0.348037, 0.189174;;, - 5;3; 0.165085, 0.348037, 0.189174;;, - 6;3; 0.165085, 0.348037, 0.189174;;, - 7;3; 0.165085, 0.348037, 0.189174;;, - 8;3; 0.165085, 0.348037, 0.189174;;, - 9;3; 0.165085, 0.348037, 0.189174;;, - 10;3; 0.165085, 0.348037, 0.189174;;, - 11;3; 0.165085, 0.348037, 0.189174;;, - 12;3; 0.165085, 0.348037, 0.189174;;, - 13;3; 0.165085, 0.348037, 0.189174;;, - 14;3; 0.165085, 0.348037, 0.189174;;, - 15;3; 0.165085, 0.348037, 0.189174;;, - 16;3; 0.165085, 0.348037, 0.189174;;, - 17;3; 0.165085, 0.348037, 0.189174;;, - 18;3; 0.165085, 0.348037, 0.189174;;, - 19;3; 0.165085, 0.348037, 0.189174;;, - 20;3; 0.165085, 0.348037, 0.189174;;, - 21;3; 0.165085, 0.348037, 0.189174;;, - 22;3; 0.165085, 0.348037, 0.189174;;, - 23;3; 0.165085, 0.348037, 0.189174;;, - 24;3; 0.165085, 0.348037, 0.189174;;, - 25;3; 0.165085, 0.348037, 0.189174;;, - 26;3; 0.165085, 0.348037, 0.189174;;, - 27;3; 0.165085, 0.348037, 0.189174;;, - 28;3; 0.165085, 0.348037, 0.189174;;, - 29;3; 0.165085, 0.348037, 0.189174;;, - 30;3; 0.165085, 0.348037, 0.189174;;, - 31;3; 0.165085, 0.348037, 0.189174;;, - 32;3; 0.165085, 0.348037, 0.189174;;, - 33;3; 0.165085, 0.348037, 0.189174;;, - 34;3; 0.165085, 0.348037, 0.189174;;, - 35;3; 0.165085, 0.348037, 0.189174;;, - 36;3; 0.165085, 0.348037, 0.189174;;, - 37;3; 0.165085, 0.348037, 0.189174;;, - 38;3; 0.165085, 0.348037, 0.189174;;, - 39;3; 0.165085, 0.348037, 0.189174;;, - 40;3; 0.165085, 0.348037, 0.189174;;, - 41;3; 0.165085, 0.348037, 0.189174;;, - 42;3; 0.165085, 0.348037, 0.189174;;, - 43;3; 0.165085, 0.348037, 0.189174;;, - 44;3; 0.165085, 0.348037, 0.189174;;, - 45;3; 0.165085, 0.348037, 0.189174;;, - 46;3; 0.165085, 0.348037, 0.189174;;, - 47;3; 0.165085, 0.348037, 0.189174;;, - 48;3; 0.165085, 0.348037, 0.189174;;, - 49;3; 0.165085, 0.348037, 0.189174;;, - 50;3; 0.165085, 0.348037, 0.189174;;, - 51;3; 0.165085, 0.348037, 0.189174;;, - 52;3; 0.165085, 0.348037, 0.189174;;, - 53;3; 0.165085, 0.348037, 0.189174;;, - 54;3; 0.165085, 0.348037, 0.189174;;, - 55;3; 0.165085, 0.348037, 0.189174;;, - 56;3; 0.165085, 0.348037, 0.189174;;, - 57;3; 0.165085, 0.348037, 0.189174;;, - 58;3; 0.165085, 0.348037, 0.189174;;, - 59;3; 0.165085, 0.348037, 0.189174;;, - 60;3; 0.165085, 0.348037, 0.189174;;, - 61;3; 0.165085, 0.348037, 0.189174;;, - 62;3; 0.165085, 0.348037, 0.189174;;, - 63;3; 0.165085, 0.348037, 0.189174;;, - 64;3; 0.165085, 0.348037, 0.189174;;, - 65;3; 0.165085, 0.348037, 0.189174;;, - 66;3; 0.165085, 0.348037, 0.189174;;, - 67;3; 0.165085, 0.348037, 0.189174;;, - 68;3; 0.165085, 0.348037, 0.189174;;, - 69;3; 0.165085, 0.348037, 0.189174;;, - 70;3; 0.165085, 0.348037, 0.189174;;, - 71;3; 0.165085, 0.348037, 0.189174;;, - 72;3; 0.165085, 0.348037, 0.189174;;, - 73;3; 0.165085, 0.348037, 0.189174;;, - 74;3; 0.165085, 0.348037, 0.189174;;, - 75;3; 0.165085, 0.348037, 0.189174;;, - 76;3; 0.165085, 0.348037, 0.189174;;, - 77;3; 0.165085, 0.348037, 0.189174;;, - 78;3; 0.165085, 0.348037, 0.189174;;, - 79;3; 0.165085, 0.348037, 0.189174;;, - 80;3; 0.165085, 0.348037, 0.189174;;, - 81;3; 0.165085, 0.348037, 0.189174;;, - 82;3; 0.165085, 0.348037, 0.189174;;, - 83;3; 0.165085, 0.348037, 0.189174;;, - 84;3; 0.165085, 0.348037, 0.189174;;, - 85;3; 0.165085, 0.348037, 0.189174;;, - 86;3; 0.165085, 0.348037, 0.189174;;, - 87;3; 0.165085, 0.348037, 0.189174;;, - 88;3; 0.165085, 0.348037, 0.189174;;, - 89;3; 0.165085, 0.348037, 0.189174;;, - 90;3; 0.165085, 0.348037, 0.189174;;, - 91;3; 0.165085, 0.348037, 0.189174;;, - 92;3; 0.165085, 0.348037, 0.189174;;, - 93;3; 0.165085, 0.348037, 0.189174;;, - 94;3; 0.165085, 0.348037, 0.189174;;, - 95;3; 0.165085, 0.348037, 0.189174;;, - 96;3; 0.165085, 0.348037, 0.189174;;, - 97;3; 0.165085, 0.348037, 0.189174;;, - 98;3; 0.165085, 0.348037, 0.189174;;, - 99;3; 0.165085, 0.348037, 0.189174;;, - 100;3; 0.165085, 0.348037, 0.189174;;, - 101;3; 0.165085, 0.348037, 0.189174;;, - 102;3; 0.165085, 0.348037, 0.189174;;, - 103;3; 0.165085, 0.348037, 0.189174;;, - 104;3; 0.165085, 0.348037, 0.189174;;, - 105;3; 0.165085, 0.348037, 0.189174;;, - 106;3; 0.165085, 0.348037, 0.189174;;, - 107;3; 0.165085, 0.348037, 0.189174;;, - 108;3; 0.165085, 0.348037, 0.189174;;, - 109;3; 0.165085, 0.348037, 0.189174;;, - 110;3; 0.165085, 0.348037, 0.189174;;, - 111;3; 0.165085, 0.348037, 0.189174;;, - 112;3; 0.165085, 0.348037, 0.189174;;, - 113;3; 0.165085, 0.348037, 0.189174;;, - 114;3; 0.165085, 0.348037, 0.189174;;, - 115;3; 0.165085, 0.348037, 0.189174;;, - 116;3; 0.165085, 0.348037, 0.189174;;, - 117;3; 0.165085, 0.348037, 0.189174;;, - 118;3; 0.165085, 0.348037, 0.189174;;, - 119;3; 0.165085, 0.348037, 0.189174;;, - 120;3; 0.165085, 0.348037, 0.189174;;, - 121;3; 0.165085, 0.348037, 0.189174;;, - 122;3; 0.165085, 0.348037, 0.189174;;, - 123;3; 0.165085, 0.348037, 0.189174;;, - 124;3; 0.165085, 0.348037, 0.189174;;, - 125;3; 0.165085, 0.348037, 0.189174;;, - 126;3; 0.165085, 0.348037, 0.189174;;, - 127;3; 0.165085, 0.348037, 0.189174;;, - 128;3; 0.165085, 0.348037, 0.189174;;, - 129;3; 0.165085, 0.348037, 0.189174;;, - 130;3; 0.165085, 0.348037, 0.189174;;, - 131;3; 0.165085, 0.348037, 0.189174;;, - 132;3; 0.165085, 0.348037, 0.189174;;, - 133;3; 0.165085, 0.348037, 0.189174;;, - 134;3; 0.165085, 0.348037, 0.189174;;, - 135;3; 0.165085, 0.348037, 0.189174;;, - 136;3; 0.165085, 0.348037, 0.189174;;, - 137;3; 0.165085, 0.348037, 0.189174;;, - 138;3; 0.165085, 0.348037, 0.189174;;, - 139;3; 0.165085, 0.348037, 0.189174;;, - 140;3; 0.165085, 0.348037, 0.189174;;, - 141;3; 0.165085, 0.348037, 0.189174;;, - 142;3; 0.165085, 0.348037, 0.189174;;, - 143;3; 0.165085, 0.348037, 0.189174;;, - 144;3; 0.165085, 0.348037, 0.189174;;, - 145;3; 0.165085, 0.348037, 0.189174;;, - 146;3; 0.165085, 0.348037, 0.189174;;, - 147;3; 0.165085, 0.348037, 0.189174;;, - 148;3; 0.165085, 0.348037, 0.189174;;, - 149;3; 0.165085, 0.348037, 0.189174;;, - 150;3; 0.165085, 0.348037, 0.189174;;, - 151;3; 0.165085, 0.348037, 0.189174;;, - 152;3; 0.165085, 0.348037, 0.189174;;, - 153;3; 0.165085, 0.348037, 0.189174;;, - 154;3; 0.165085, 0.348037, 0.189174;;, - 155;3; 0.165085, 0.348037, 0.189174;;, - 156;3; 0.165085, 0.348037, 0.189174;;, - 157;3; 0.165085, 0.348037, 0.189174;;, - 158;3; 0.165085, 0.348037, 0.189174;;, - 159;3; 0.165085, 0.348037, 0.189174;;, - 160;3; 0.165085, 0.348037, 0.189174;;, - 161;3; 0.165085, 0.348037, 0.189174;;, - 162;3; 0.165085, 0.348037, 0.189174;;, - 163;3; 0.165085, 0.348037, 0.189174;;, - 164;3; 0.165085, 0.348037, 0.189174;;, - 165;3; 0.165085, 0.348037, 0.189174;;, - 166;3; 0.165085, 0.348037, 0.189174;;, - 167;3; 0.165085, 0.348037, 0.189174;;, - 168;3; 0.165085, 0.348037, 0.189174;;, - 169;3; 0.165085, 0.348037, 0.189174;;, - 170;3; 0.165085, 0.348037, 0.189174;;, - 171;3; 0.165085, 0.348037, 0.189174;;, - 172;3; 0.165085, 0.348037, 0.189174;;, - 173;3; 0.165085, 0.348037, 0.189174;;, - 174;3; 0.165085, 0.348037, 0.189174;;, - 175;3; 0.165085, 0.348037, 0.189174;;, - 176;3; 0.165085, 0.348037, 0.189174;;, - 177;3; 0.165085, 0.348037, 0.189174;;, - 178;3; 0.165085, 0.348037, 0.189174;;, - 179;3; 0.165085, 0.348037, 0.189174;;, - 180;3; 0.165085, 0.348037, 0.189174;;, - 181;3; 0.165085, 0.348037, 0.189174;;, - 182;3; 0.165085, 0.348037, 0.189174;;, - 183;3; 0.165085, 0.348037, 0.189174;;, - 184;3; 0.165085, 0.348037, 0.189174;;, - 185;3; 0.165085, 0.348037, 0.189174;;, - 186;3; 0.165085, 0.348037, 0.189174;;, - 187;3; 0.165085, 0.348037, 0.189174;;, - 188;3; 0.165085, 0.348037, 0.189174;;, - 189;3; 0.165085, 0.348037, 0.189174;;, - 190;3; 0.165085, 0.348037, 0.189174;;, - 191;3; 0.165085, 0.348037, 0.189174;;, - 192;3; 0.165085, 0.348037, 0.189174;;, - 193;3; 0.165085, 0.348037, 0.189174;;, - 194;3; 0.165085, 0.348037, 0.189174;;, - 195;3; 0.165085, 0.348037, 0.189174;;, - 196;3; 0.165085, 0.348037, 0.189174;;, - 197;3; 0.165085, 0.348037, 0.189174;;, - 198;3; 0.165085, 0.348037, 0.189174;;, - 199;3; 0.165085, 0.348037, 0.189174;;, - 200;3; 0.165085, 0.348037, 0.189174;;, - 201;3; 0.165085, 0.348037, 0.189174;;, - 202;3; 0.165085, 0.348037, 0.189174;;, - 203;3; 0.165085, 0.348037, 0.189174;;, - 204;3; 0.165085, 0.348037, 0.189174;;, - 205;3; 0.165085, 0.348037, 0.189174;;, - 206;3; 0.165085, 0.348037, 0.189174;;, - 207;3; 0.165085, 0.348037, 0.189174;;, - 208;3; 0.165085, 0.348037, 0.189174;;, - 209;3; 0.165085, 0.348037, 0.189174;;, - 210;3; 0.165085, 0.348037, 0.189174;;, - 211;3; 0.165085, 0.348037, 0.189174;;, - 212;3; 0.165085, 0.348037, 0.189174;;, - 213;3; 0.165085, 0.348037, 0.189174;;, - 214;3; 0.165085, 0.348037, 0.189174;;, - 215;3; 0.165085, 0.348037, 0.189174;;, - 216;3; 0.165085, 0.348037, 0.189174;;, - 217;3; 0.165085, 0.348037, 0.189174;;, - 218;3; 0.165085, 0.348037, 0.189174;;, - 219;3; 0.165085, 0.348037, 0.189174;;, - 220;3; 0.165085, 0.348037, 0.189174;;, - 221;3; 0.165085, 0.348037, 0.189174;;, - 222;3; 0.165085, 0.348037, 0.189174;;, - 223;3; 0.165085, 0.348037, 0.189174;;, - 224;3; 0.165085, 0.348037, 0.189174;;, - 225;3; 0.165085, 0.348037, 0.189174;;, - 226;3; 0.165085, 0.348037, 0.189174;;, - 227;3; 0.165085, 0.348037, 0.189174;;, - 228;3; 0.165085, 0.348037, 0.189174;;, - 229;3; 0.165085, 0.348037, 0.189174;;, - 230;3; 0.165085, 0.348037, 0.189174;;, - 231;3; 0.165085, 0.348037, 0.189174;;, - 232;3; 0.165085, 0.348037, 0.189174;;, - 233;3; 0.165085, 0.348037, 0.189174;;, - 234;3; 0.165085, 0.348037, 0.189174;;, - 235;3; 0.165085, 0.348037, 0.189174;;, - 236;3; 0.165085, 0.348037, 0.189174;;, - 237;3; 0.165085, 0.348037, 0.189174;;, - 238;3; 0.165085, 0.348037, 0.189174;;, - 239;3; 0.165085, 0.348037, 0.189174;;, - 240;3; 0.165085, 0.348037, 0.189174;;, - 241;3; 0.165085, 0.348037, 0.189174;;, - 242;3; 0.165085, 0.348037, 0.189174;;, - 243;3; 0.165085, 0.348037, 0.189174;;, - 244;3; 0.165085, 0.348037, 0.189174;;, - 245;3; 0.165085, 0.348037, 0.189174;;, - 246;3; 0.165085, 0.348037, 0.189174;;, - 247;3; 0.165085, 0.348037, 0.189174;;, - 248;3; 0.165085, 0.348037, 0.189174;;, - 249;3; 0.165085, 0.348037, 0.189174;;; - } - AnimationKey { // Position - 2; - 250; - 0;3; 0.672467, 1.528196, 1.101588;;, - 1;3; 0.672467, 1.528196, 1.101588;;, - 2;3; 0.672467, 1.528196, 1.101588;;, - 3;3; 0.672467, 1.528196, 1.101588;;, - 4;3; 0.672467, 1.528196, 1.101588;;, - 5;3; 0.672467, 1.528196, 1.101588;;, - 6;3; 0.672467, 1.528196, 1.101588;;, - 7;3; 0.672467, 1.528196, 1.101588;;, - 8;3; 0.672467, 1.528196, 1.101588;;, - 9;3; 0.672467, 1.528196, 1.101588;;, - 10;3; 0.672467, 1.528196, 1.101588;;, - 11;3; 0.672467, 1.528196, 1.101588;;, - 12;3; 0.672467, 1.528196, 1.101588;;, - 13;3; 0.672467, 1.528196, 1.101588;;, - 14;3; 0.672467, 1.528196, 1.101588;;, - 15;3; 0.672467, 1.528196, 1.101588;;, - 16;3; 0.672467, 1.528196, 1.101588;;, - 17;3; 0.672467, 1.528196, 1.101588;;, - 18;3; 0.672467, 1.528196, 1.101588;;, - 19;3; 0.672467, 1.528196, 1.101588;;, - 20;3; 0.672467, 1.528196, 1.101588;;, - 21;3; 0.672467, 1.528196, 1.101588;;, - 22;3; 0.672467, 1.528196, 1.101588;;, - 23;3; 0.672467, 1.528196, 1.101588;;, - 24;3; 0.672467, 1.528196, 1.101588;;, - 25;3; 0.672467, 1.528196, 1.101588;;, - 26;3; 0.672467, 1.528196, 1.101588;;, - 27;3; 0.672467, 1.528196, 1.101588;;, - 28;3; 0.672467, 1.528196, 1.101588;;, - 29;3; 0.672467, 1.528196, 1.101588;;, - 30;3; 0.672467, 1.528196, 1.101588;;, - 31;3; 0.672467, 1.528196, 1.101588;;, - 32;3; 0.672467, 1.528196, 1.101588;;, - 33;3; 0.672467, 1.528196, 1.101588;;, - 34;3; 0.672467, 1.528196, 1.101588;;, - 35;3; 0.672467, 1.528196, 1.101588;;, - 36;3; 0.672467, 1.528196, 1.101588;;, - 37;3; 0.672467, 1.528196, 1.101588;;, - 38;3; 0.672467, 1.528196, 1.101588;;, - 39;3; 0.672467, 1.528196, 1.101588;;, - 40;3; 0.672467, 1.528196, 1.101588;;, - 41;3; 0.672467, 1.528196, 1.101588;;, - 42;3; 0.672467, 1.528196, 1.101588;;, - 43;3; 0.672467, 1.528196, 1.101588;;, - 44;3; 0.672467, 1.528196, 1.101588;;, - 45;3; 0.672467, 1.528196, 1.101588;;, - 46;3; 0.672467, 1.528196, 1.101588;;, - 47;3; 0.672467, 1.528196, 1.101588;;, - 48;3; 0.672467, 1.528196, 1.101588;;, - 49;3; 0.672467, 1.528196, 1.101588;;, - 50;3; 0.672467, 1.528196, 1.101588;;, - 51;3; 0.672467, 1.528196, 1.101588;;, - 52;3; 0.672467, 1.528196, 1.101588;;, - 53;3; 0.672467, 1.528196, 1.101588;;, - 54;3; 0.672467, 1.528196, 1.101588;;, - 55;3; 0.672467, 1.528196, 1.101588;;, - 56;3; 0.672467, 1.528196, 1.101588;;, - 57;3; 0.672467, 1.528196, 1.101588;;, - 58;3; 0.672467, 1.528196, 1.101588;;, - 59;3; 0.672467, 1.528196, 1.101588;;, - 60;3; 0.672467, 1.528196, 1.101588;;, - 61;3; 0.672467, 1.528196, 1.101588;;, - 62;3; 0.672467, 1.528196, 1.101588;;, - 63;3; 0.672467, 1.528196, 1.101588;;, - 64;3; 0.672467, 1.528196, 1.101588;;, - 65;3; 0.672467, 1.528196, 1.101588;;, - 66;3; 0.672467, 1.528196, 1.101588;;, - 67;3; 0.672467, 1.528196, 1.101588;;, - 68;3; 0.672467, 1.528196, 1.101588;;, - 69;3; 0.672467, 1.528196, 1.101588;;, - 70;3; 0.672467, 1.528196, 1.101588;;, - 71;3; 0.672467, 1.528196, 1.101588;;, - 72;3; 0.672467, 1.528196, 1.101588;;, - 73;3; 0.672467, 1.528196, 1.101588;;, - 74;3; 0.672467, 1.528196, 1.101588;;, - 75;3; 0.672467, 1.528196, 1.101588;;, - 76;3; 0.672467, 1.528196, 1.101588;;, - 77;3; 0.672467, 1.528196, 1.101588;;, - 78;3; 0.672467, 1.528196, 1.101588;;, - 79;3; 0.672467, 1.528196, 1.101588;;, - 80;3; 0.672467, 1.528196, 1.101588;;, - 81;3; 0.672467, 1.528196, 1.101588;;, - 82;3; 0.672467, 1.528196, 1.101588;;, - 83;3; 0.672467, 1.528196, 1.101588;;, - 84;3; 0.672467, 1.528196, 1.101588;;, - 85;3; 0.672467, 1.528196, 1.101588;;, - 86;3; 0.672467, 1.528196, 1.101588;;, - 87;3; 0.672467, 1.528196, 1.101588;;, - 88;3; 0.672467, 1.528196, 1.101588;;, - 89;3; 0.672467, 1.528196, 1.101588;;, - 90;3; 0.672467, 1.528196, 1.101588;;, - 91;3; 0.672467, 1.528196, 1.101588;;, - 92;3; 0.672467, 1.528196, 1.101588;;, - 93;3; 0.672467, 1.528196, 1.101588;;, - 94;3; 0.672467, 1.528196, 1.101588;;, - 95;3; 0.672467, 1.528196, 1.101588;;, - 96;3; 0.672467, 1.528196, 1.101588;;, - 97;3; 0.672467, 1.528196, 1.101588;;, - 98;3; 0.672467, 1.528196, 1.101588;;, - 99;3; 0.672467, 1.528196, 1.101588;;, - 100;3; 0.672467, 1.528196, 1.101588;;, - 101;3; 0.672467, 1.528196, 1.101588;;, - 102;3; 0.672467, 1.528196, 1.101588;;, - 103;3; 0.672467, 1.528196, 1.101588;;, - 104;3; 0.672467, 1.528196, 1.101588;;, - 105;3; 0.672467, 1.528196, 1.101588;;, - 106;3; 0.672467, 1.528196, 1.101588;;, - 107;3; 0.672467, 1.528196, 1.101588;;, - 108;3; 0.672467, 1.528196, 1.101588;;, - 109;3; 0.672467, 1.528196, 1.101588;;, - 110;3; 0.672467, 1.528196, 1.101588;;, - 111;3; 0.672467, 1.528196, 1.101588;;, - 112;3; 0.672467, 1.528196, 1.101588;;, - 113;3; 0.672467, 1.528196, 1.101588;;, - 114;3; 0.672467, 1.528196, 1.101588;;, - 115;3; 0.672467, 1.528196, 1.101588;;, - 116;3; 0.672467, 1.528196, 1.101588;;, - 117;3; 0.672467, 1.528196, 1.101588;;, - 118;3; 0.672467, 1.528196, 1.101588;;, - 119;3; 0.672467, 1.528196, 1.101588;;, - 120;3; 0.672467, 1.528196, 1.101588;;, - 121;3; 0.672467, 1.528196, 1.101588;;, - 122;3; 0.672467, 1.528196, 1.101588;;, - 123;3; 0.672467, 1.528196, 1.101588;;, - 124;3; 0.672467, 1.528196, 1.101588;;, - 125;3; 0.672467, 1.528196, 1.101588;;, - 126;3; 0.672467, 1.528196, 1.101588;;, - 127;3; 0.672467, 1.528196, 1.101588;;, - 128;3; 0.672467, 1.528196, 1.101588;;, - 129;3; 0.672467, 1.528196, 1.101588;;, - 130;3; 0.672467, 1.528196, 1.101588;;, - 131;3; 0.672467, 1.528196, 1.101588;;, - 132;3; 0.672467, 1.528196, 1.101588;;, - 133;3; 0.672467, 1.528196, 1.101588;;, - 134;3; 0.672467, 1.528196, 1.101588;;, - 135;3; 0.672467, 1.528196, 1.101588;;, - 136;3; 0.672467, 1.528196, 1.101588;;, - 137;3; 0.672467, 1.528196, 1.101588;;, - 138;3; 0.672467, 1.528196, 1.101588;;, - 139;3; 0.672467, 1.528196, 1.101588;;, - 140;3; 0.672467, 1.528196, 1.101588;;, - 141;3; 0.672467, 1.528196, 1.101588;;, - 142;3; 0.672467, 1.528196, 1.101588;;, - 143;3; 0.672467, 1.528196, 1.101588;;, - 144;3; 0.672467, 1.528196, 1.101588;;, - 145;3; 0.672467, 1.528196, 1.101588;;, - 146;3; 0.672467, 1.528196, 1.101588;;, - 147;3; 0.672467, 1.528196, 1.101588;;, - 148;3; 0.672467, 1.528196, 1.101588;;, - 149;3; 0.672467, 1.528196, 1.101588;;, - 150;3; 0.672467, 1.528196, 1.101588;;, - 151;3; 0.672467, 1.528196, 1.101588;;, - 152;3; 0.672467, 1.528196, 1.101588;;, - 153;3; 0.672467, 1.528196, 1.101588;;, - 154;3; 0.672467, 1.528196, 1.101588;;, - 155;3; 0.672467, 1.528196, 1.101588;;, - 156;3; 0.672467, 1.528196, 1.101588;;, - 157;3; 0.672467, 1.528196, 1.101588;;, - 158;3; 0.672467, 1.528196, 1.101588;;, - 159;3; 0.672467, 1.528196, 1.101588;;, - 160;3; 0.672467, 1.528196, 1.101588;;, - 161;3; 0.672467, 1.528196, 1.101588;;, - 162;3; 0.672467, 1.528196, 1.101588;;, - 163;3; 0.672467, 1.528196, 1.101588;;, - 164;3; 0.672467, 1.528196, 1.101588;;, - 165;3; 0.672467, 1.528196, 1.101588;;, - 166;3; 0.672467, 1.528196, 1.101588;;, - 167;3; 0.672467, 1.528196, 1.101588;;, - 168;3; 0.672467, 1.528196, 1.101588;;, - 169;3; 0.672467, 1.528196, 1.101588;;, - 170;3; 0.672467, 1.528196, 1.101588;;, - 171;3; 0.672467, 1.528196, 1.101588;;, - 172;3; 0.672467, 1.528196, 1.101588;;, - 173;3; 0.672467, 1.528196, 1.101588;;, - 174;3; 0.672467, 1.528196, 1.101588;;, - 175;3; 0.672467, 1.528196, 1.101588;;, - 176;3; 0.672467, 1.528196, 1.101588;;, - 177;3; 0.672467, 1.528196, 1.101588;;, - 178;3; 0.672467, 1.528196, 1.101588;;, - 179;3; 0.672467, 1.528196, 1.101588;;, - 180;3; 0.672467, 1.528196, 1.101588;;, - 181;3; 0.672467, 1.528196, 1.101588;;, - 182;3; 0.672467, 1.528196, 1.101588;;, - 183;3; 0.672467, 1.528196, 1.101588;;, - 184;3; 0.672467, 1.528196, 1.101588;;, - 185;3; 0.672467, 1.528196, 1.101588;;, - 186;3; 0.672467, 1.528196, 1.101588;;, - 187;3; 0.672467, 1.528196, 1.101588;;, - 188;3; 0.672467, 1.528196, 1.101588;;, - 189;3; 0.672467, 1.528196, 1.101588;;, - 190;3; 0.672467, 1.528196, 1.101588;;, - 191;3; 0.672467, 1.528196, 1.101588;;, - 192;3; 0.672467, 1.528196, 1.101588;;, - 193;3; 0.672467, 1.528196, 1.101588;;, - 194;3; 0.672467, 1.528196, 1.101588;;, - 195;3; 0.672467, 1.528196, 1.101588;;, - 196;3; 0.672467, 1.528196, 1.101588;;, - 197;3; 0.672467, 1.528196, 1.101588;;, - 198;3; 0.672467, 1.528196, 1.101588;;, - 199;3; 0.672467, 1.528196, 1.101588;;, - 200;3; 0.672467, 1.528196, 1.101588;;, - 201;3; 0.672467, 1.528196, 1.101588;;, - 202;3; 0.672467, 1.528196, 1.101588;;, - 203;3; 0.672467, 1.528196, 1.101588;;, - 204;3; 0.672467, 1.528196, 1.101588;;, - 205;3; 0.672467, 1.528196, 1.101588;;, - 206;3; 0.672467, 1.528196, 1.101588;;, - 207;3; 0.672467, 1.528196, 1.101588;;, - 208;3; 0.672467, 1.528196, 1.101588;;, - 209;3; 0.672467, 1.528196, 1.101588;;, - 210;3; 0.672467, 1.528196, 1.101588;;, - 211;3; 0.672467, 1.528196, 1.101588;;, - 212;3; 0.672467, 1.528196, 1.101588;;, - 213;3; 0.672467, 1.528196, 1.101588;;, - 214;3; 0.672467, 1.528196, 1.101588;;, - 215;3; 0.672467, 1.528196, 1.101588;;, - 216;3; 0.672467, 1.528196, 1.101588;;, - 217;3; 0.672467, 1.528196, 1.101588;;, - 218;3; 0.672467, 1.528196, 1.101588;;, - 219;3; 0.672467, 1.528196, 1.101588;;, - 220;3; 0.672467, 1.528196, 1.101588;;, - 221;3; 0.672467, 1.528196, 1.101588;;, - 222;3; 0.672467, 1.528196, 1.101588;;, - 223;3; 0.672467, 1.528196, 1.101588;;, - 224;3; 0.672467, 1.528196, 1.101588;;, - 225;3; 0.672467, 1.528196, 1.101588;;, - 226;3; 0.672467, 1.528196, 1.101588;;, - 227;3; 0.672467, 1.528196, 1.101588;;, - 228;3; 0.672467, 1.528196, 1.101588;;, - 229;3; 0.672467, 1.528196, 1.101588;;, - 230;3; 0.672467, 1.528196, 1.101588;;, - 231;3; 0.672467, 1.528196, 1.101588;;, - 232;3; 0.672467, 1.528196, 1.101588;;, - 233;3; 0.672467, 1.528196, 1.101588;;, - 234;3; 0.672467, 1.528196, 1.101588;;, - 235;3; 0.672467, 1.528196, 1.101588;;, - 236;3; 0.672467, 1.528196, 1.101588;;, - 237;3; 0.672467, 1.528196, 1.101588;;, - 238;3; 0.672467, 1.528196, 1.101588;;, - 239;3; 0.672467, 1.528196, 1.101588;;, - 240;3; 0.672467, 1.528196, 1.101588;;, - 241;3; 0.672467, 1.528196, 1.101588;;, - 242;3; 0.672467, 1.528196, 1.101588;;, - 243;3; 0.672467, 1.528196, 1.101588;;, - 244;3; 0.672467, 1.528196, 1.101588;;, - 245;3; 0.672467, 1.528196, 1.101588;;, - 246;3; 0.672467, 1.528196, 1.101588;;, - 247;3; 0.672467, 1.528196, 1.101588;;, - 248;3; 0.672467, 1.528196, 1.101588;;, - 249;3; 0.672467, 1.528196, 1.101588;;; - } - } -} // End of AnimationSet Global diff --git a/mods/_various/mobs/models/tarantula_propower.x b/mods/_various/mobs/models/tarantula_propower.x deleted file mode 100644 index 80e9794d3..000000000 --- a/mods/_various/mobs/models/tarantula_propower.x +++ /dev/null @@ -1,37588 +0,0 @@ -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.672467,-1.528196,-0.828771, 1.000000;; - } - Frame Armature_Bone { - FrameTransformMatrix { - -0.022287, 0.000001,-0.999752, 0.000000, - 0.999752, 0.000000,-0.022287, 0.000000, - -0.000000,-1.000000,-0.000001, 0.000000, - 0.506179, 1.550838, 1.103719, 1.000000;; - } - Frame Armature_Bone_002 { - FrameTransformMatrix { - -0.000001,-0.000000, 1.000000, 0.000000, - -0.022286, 0.999752,-0.000000, 0.000000, - -0.999752,-0.022287,-0.000001, 0.000000, - 0.000000, 0.344354,-0.000000, 1.000000;; - } - Frame Armature_Bone_003 { - FrameTransformMatrix { - 0.920869,-0.389858, 0.003366, 0.000000, - 0.374396, 0.886689, 0.271313, 0.000000, - -0.108759,-0.248583, 0.962485, 0.000000, - 0.000000, 0.826434, 0.000000, 1.000000;; - } - Frame Armature_Bone_005 { - FrameTransformMatrix { - -0.387537, 0.916651,-0.097809, 0.000000, - -0.044231,-0.124468,-0.991237, 0.000000, - -0.920793,-0.379815, 0.088780, 0.000000, - 0.000000, 0.761776, 0.000000, 1.000000;; - } - Frame Armature_Bone_006 { - FrameTransformMatrix { - 0.994682, 0.102985,-0.000918, 0.000000, - -0.102944, 0.994472, 0.020679, 0.000000, - 0.003042,-0.020475, 0.999786, 0.000000, - 0.000000, 0.660698, 0.000000, 1.000000;; - } - } // End of Armature_Bone_006 - } // End of Armature_Bone_005 - } // End of Armature_Bone_003 - Frame Armature_Bone_004 { - FrameTransformMatrix { - 0.936957, 0.349445, 0.000925, 0.000000, - -0.333569, 0.893594, 0.300370, 0.000000, - 0.104136,-0.281742, 0.953822, 0.000000, - 0.000000, 0.826434, 0.000000, 1.000000;; - } - Frame Armature_Bone_007 { - FrameTransformMatrix { - 0.341940, 0.931761,-0.122062, 0.000000, - 0.074553,-0.156381,-0.984879, 0.000000, - -0.936760, 0.327669,-0.122939, 0.000000, - -0.000000, 0.747179,-0.000000, 1.000000;; - } - Frame Armature_Bone_008 { - FrameTransformMatrix { - 0.994198, 0.107557,-0.001024, 0.000000, - -0.107516, 0.994008, 0.019680, 0.000000, - 0.003134,-0.019455, 0.999806, 0.000000, - 0.000000, 0.672674, 0.000000, 1.000000;; - } - } // End of Armature_Bone_008 - } // End of Armature_Bone_007 - } // End of Armature_Bone_004 - Frame Armature_Bone_009 { - FrameTransformMatrix { - -0.738149, 0.674637, 0.000000, 0.000000, - -0.674637,-0.738150,-0.000000, 0.000000, - 0.000000,-0.000000, 1.000000, 0.000000, - 0.000000, 0.826434, 0.000000, 1.000000;; - } - Frame Armature_Bone_029 { - FrameTransformMatrix { - 0.674637,-0.738150,-0.000000, 0.000000, - 0.738150, 0.674637, 0.000000, 0.000000, - 0.000000,-0.000000, 1.000000, 0.000000, - 0.000000, 0.868658, 0.000000, 1.000000;; - } - Frame Armature_Bone_033 { - 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, 1.279916, 0.000000, 1.000000;; - } - Frame Armature_Bone_037 { - 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, 1.228417, 0.000000, 1.000000;; - } - } // End of Armature_Bone_037 - } // End of Armature_Bone_033 - } // End of Armature_Bone_029 - } // End of Armature_Bone_009 - Frame Armature_Bone_010 { - FrameTransformMatrix { - -0.443098, 0.896473, 0.000000, 0.000000, - -0.896473,-0.443098, 0.000000, 0.000000, - 0.000000,-0.000000, 1.000000, 0.000000, - 0.000000, 0.826434, 0.000000, 1.000000;; - } - Frame Armature_Bone_030 { - FrameTransformMatrix { - 0.896473,-0.443098,-0.000000, 0.000000, - 0.443098, 0.896473, 0.000000, 0.000000, - 0.000000,-0.000000, 1.000000, 0.000000, - 0.000000, 0.666142,-0.000000, 1.000000;; - } - Frame Armature_Bone_034 { - 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, 1.279916, 0.000000, 1.000000;; - } - Frame Armature_Bone_038 { - 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, 1.228416,-0.000000, 1.000000;; - } - } // End of Armature_Bone_038 - } // End of Armature_Bone_034 - } // End of Armature_Bone_030 - } // End of Armature_Bone_010 - Frame Armature_Bone_011 { - FrameTransformMatrix { - 0.142387, 0.989811,-0.000000, 0.000000, - -0.989811, 0.142387, 0.000000, 0.000000, - 0.000000, 0.000000, 1.000000, 0.000000, - 0.000000, 0.826434, 0.000000, 1.000000;; - } - Frame Armature_Bone_031 { - FrameTransformMatrix { - 0.989811, 0.142387, 0.000000, 0.000000, - -0.142387, 0.989811,-0.000000, 0.000000, - -0.000000,-0.000000, 1.000000, 0.000000, - 0.000000, 0.586459, 0.000000, 1.000000;; - } - Frame Armature_Bone_035 { - 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, 1.279916, 0.000000, 1.000000;; - } - Frame Armature_Bone_039 { - 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, 1.228416,-0.000000, 1.000000;; - } - } // End of Armature_Bone_039 - } // End of Armature_Bone_035 - } // End of Armature_Bone_031 - } // End of Armature_Bone_011 - Frame Armature_Bone_012 { - FrameTransformMatrix { - 0.577704, 0.816246,-0.000000, 0.000000, - -0.816246, 0.577704,-0.000000, 0.000000, - 0.000000, 0.000000, 1.000000, 0.000000, - 0.000000, 0.826434, 0.000000, 1.000000;; - } - Frame Armature_Bone_032 { - FrameTransformMatrix { - 0.816246, 0.577704, 0.000000, 0.000000, - -0.577704, 0.816246,-0.000000, 0.000000, - -0.000000,-0.000000, 1.000000, 0.000000, - -0.000000, 0.690756, 0.000000, 1.000000;; - } - Frame Armature_Bone_036 { - 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, 1.279916, 0.000000, 1.000000;; - } - Frame Armature_Bone_040 { - 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, 1.228417, 0.000000, 1.000000;; - } - } // End of Armature_Bone_040 - } // End of Armature_Bone_036 - } // End of Armature_Bone_032 - } // End of Armature_Bone_012 - Frame Armature_Bone_013 { - FrameTransformMatrix { - -0.724868,-0.688888, 0.000000, 0.000000, - 0.688888,-0.724868, 0.000000, 0.000000, - 0.000000, 0.000000, 1.000000, 0.000000, - 0.000000, 0.826434, 0.000000, 1.000000;; - } - Frame Armature_Bone_017 { - FrameTransformMatrix { - 0.688888, 0.724868,-0.000000, 0.000000, - -0.724868, 0.688888, 0.000000, 0.000000, - 0.000000, 0.000000, 1.000000, 0.000000, - -0.000000, 0.893468, 0.000000, 1.000000;; - } - Frame Armature_Bone_021 { - 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, 1.294482,-0.000000, 1.000000;; - } - Frame Armature_Bone_025 { - 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, 1.228822,-0.000000, 1.000000;; - } - } // End of Armature_Bone_025 - } // End of Armature_Bone_021 - } // End of Armature_Bone_017 - } // End of Armature_Bone_013 - Frame Armature_Bone_014 { - FrameTransformMatrix { - 0.525789,-0.850615,-0.000000, 0.000000, - 0.850615, 0.525789, 0.000000, 0.000000, - 0.000000,-0.000000, 1.000000, 0.000000, - 0.000000, 0.826434, 0.000000, 1.000000;; - } - Frame Armature_Bone_018 { - FrameTransformMatrix { - 0.850615,-0.525789, 0.000000, 0.000000, - 0.525789, 0.850615,-0.000000, 0.000000, - -0.000000, 0.000000, 1.000000, 0.000000, - -0.000000, 0.680634,-0.000000, 1.000000;; - } - Frame Armature_Bone_022 { - 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, 1.294481,-0.000000, 1.000000;; - } - Frame Armature_Bone_026 { - 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, 1.228822,-0.000000, 1.000000;; - } - } // End of Armature_Bone_026 - } // End of Armature_Bone_022 - } // End of Armature_Bone_018 - } // End of Armature_Bone_014 - Frame Armature_Bone_015 { - FrameTransformMatrix { - 0.077964,-0.996956,-0.000000, 0.000000, - 0.996956, 0.077964, 0.000000, 0.000000, - 0.000000,-0.000000, 1.000000, 0.000000, - 0.000000, 0.826434, 0.000000, 1.000000;; - } - Frame Armature_Bone_019 { - FrameTransformMatrix { - 0.996956,-0.077964, 0.000000, 0.000000, - 0.077964, 0.996956,-0.000000, 0.000000, - -0.000000, 0.000000, 1.000000, 0.000000, - -0.000000, 0.592826, 0.000000, 1.000000;; - } - Frame Armature_Bone_023 { - 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, 1.294482,-0.000000, 1.000000;; - } - Frame Armature_Bone_027 { - 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, 1.228822,-0.000000, 1.000000;; - } - } // End of Armature_Bone_027 - } // End of Armature_Bone_023 - } // End of Armature_Bone_019 - } // End of Armature_Bone_015 - Frame Armature_Bone_016 { - FrameTransformMatrix { - -0.449112,-0.893475, 0.000000, 0.000000, - 0.893475,-0.449113, 0.000000, 0.000000, - 0.000000, 0.000000, 1.000000, 0.000000, - 0.000000, 0.826434, 0.000000, 1.000000;; - } - Frame Armature_Bone_020 { - FrameTransformMatrix { - 0.893475, 0.449112,-0.000000, 0.000000, - -0.449112, 0.893475,-0.000000, 0.000000, - 0.000000, 0.000000, 1.000000, 0.000000, - 0.000000, 0.683319, 0.000000, 1.000000;; - } - Frame Armature_Bone_024 { - 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, 1.294482,-0.000000, 1.000000;; - } - Frame Armature_Bone_028 { - 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, 1.228822,-0.000000, 1.000000;; - } - } // End of Armature_Bone_028 - } // End of Armature_Bone_024 - } // End of Armature_Bone_020 - } // End of Armature_Bone_016 - } // End of Armature_Bone_002 - } // End of Armature_Bone - Frame Armature_Bone_001 { - FrameTransformMatrix { - 0.000000, 1.000000, 0.000000, 0.000000, - -1.000000, 0.000000, 0.000000, 0.000000, - 0.000000, 0.000000, 1.000000, 0.000000, - 0.506179, 1.550838, 1.103719, 1.000000;; - } - } // End of Armature_Bone_001 - Frame Cube_001 { - FrameTransformMatrix { - -0.165085,-0.000000, 0.000000, 0.000000, - 0.000000,-0.348037, 0.000000, 0.000000, - 0.000000, 0.000000, 0.189174, 0.000000, - 0.672467, 1.528196, 1.101588, 1.000000;; - } - Mesh { // Cube_001 mesh - 744; - -7.525823; 8.883257;-0.581474;, - -7.525823; 5.349147;-0.581474;, - -8.858474; 5.349147;-0.581474;, - -8.858473; 8.883258;-0.581474;, - -7.525823; 8.883256; 0.581474;, - -8.858474; 8.883257; 0.581474;, - -8.858474; 5.349147; 0.581474;, - -7.525823; 5.349146; 0.581474;, - -7.525823; 8.883257;-0.581474;, - -7.525823; 8.883256; 0.581474;, - -7.525823; 5.349146; 0.581474;, - -7.525823; 5.349147;-0.581474;, - -7.525823; 5.349147;-0.581474;, - -7.525823; 5.349146; 0.581474;, - -8.858474; 5.349147; 0.581474;, - -8.858474; 5.349147;-0.581474;, - -8.858474; 5.349147;-0.581474;, - -8.858474; 5.349147; 0.581474;, - -8.858474; 8.883257; 0.581474;, - -8.858473; 8.883258;-0.581474;, - -7.525823; 8.883256; 0.581474;, - -7.525823; 8.883257;-0.581474;, - -8.858473; 8.883258;-0.581474;, - -8.858474; 8.883257; 0.581474;, - -6.941897; 5.325300;-0.960908;, - -6.941897; 1.791190;-0.960908;, - -9.132964; 1.791191;-0.960908;, - -9.132964; 5.325301;-0.960908;, - -6.941897; 5.325299; 1.407544;, - -9.132964; 5.325300; 1.407544;, - -9.132964; 1.791191; 1.407544;, - -6.941898; 1.791189; 1.407544;, - -6.941897; 5.325300;-0.960908;, - -6.941897; 5.325299; 1.407544;, - -6.941898; 1.791189; 1.407544;, - -6.941897; 1.791190;-0.960908;, - -6.941897; 1.791190;-0.960908;, - -6.941898; 1.791189; 1.407544;, - -9.132964; 1.791191; 1.407544;, - -9.132964; 1.791191;-0.960908;, - -9.132964; 1.791191;-0.960908;, - -9.132964; 1.791191; 1.407544;, - -9.132964; 5.325300; 1.407544;, - -9.132964; 5.325301;-0.960908;, - -6.941897; 5.325299; 1.407544;, - -6.941897; 5.325300;-0.960908;, - -9.132964; 5.325301;-0.960908;, - -9.132964; 5.325300; 1.407544;, - -7.051261;10.606580;-0.677308;, - -7.051261; 8.904172;-0.677308;, - -9.112616; 8.904172;-0.677308;, - -9.112616;10.606581;-0.677308;, - -7.051261;10.606580; 0.737293;, - -9.112616;10.606580; 0.737293;, - -9.112617; 8.904172; 0.737293;, - -7.051261; 8.904171; 0.737293;, - -7.051261;10.606580;-0.677308;, - -7.051261;10.606580; 0.737293;, - -7.051261; 8.904171; 0.737293;, - -7.051261; 8.904172;-0.677308;, - -7.051261; 8.904172;-0.677308;, - -7.051261; 8.904171; 0.737293;, - -9.112617; 8.904172; 0.737293;, - -9.112616; 8.904172;-0.677308;, - -9.112616; 8.904172;-0.677308;, - -9.112617; 8.904172; 0.737293;, - -9.112616;10.606580; 0.737293;, - -9.112616;10.606581;-0.677308;, - -7.051261;10.606580; 0.737293;, - -7.051261;10.606580;-0.677308;, - -9.112616;10.606581;-0.677308;, - -9.112616;10.606580; 0.737293;, - -5.059513;10.606580;-0.677308;, - -5.059513; 8.904172;-0.677308;, - -7.242017; 8.904172;-0.677308;, - -7.242017;10.606581;-0.677308;, - -5.059512;10.606580; 0.737293;, - -7.242017;10.606580; 0.737293;, - -7.242017; 8.904172; 0.737293;, - -5.059513; 8.904171; 0.737293;, - -5.059513;10.606580;-0.677308;, - -5.059512;10.606580; 0.737293;, - -5.059513; 8.904171; 0.737293;, - -5.059513; 8.904172;-0.677308;, - -5.059513; 8.904172;-0.677308;, - -5.059513; 8.904171; 0.737293;, - -7.242017; 8.904172; 0.737293;, - -7.242017; 8.904172;-0.677308;, - -7.242017; 8.904172;-0.677308;, - -7.242017; 8.904172; 0.737293;, - -7.242017;10.606580; 0.737293;, - -7.242017;10.606581;-0.677308;, - -5.059512;10.606580; 0.737293;, - -5.059513;10.606580;-0.677308;, - -7.242017;10.606581;-0.677308;, - -7.242017;10.606580; 0.737293;, - -5.010724; 5.325300;-0.960908;, - -5.010724; 1.791190;-0.960908;, - -7.201790; 1.791191;-0.960908;, - -7.201790; 5.325301;-0.960908;, - -5.010723; 5.325299; 1.407544;, - -7.201790; 5.325300; 1.407544;, - -7.201790; 1.791191; 1.407544;, - -5.010724; 1.791189; 1.407544;, - -5.010724; 5.325300;-0.960908;, - -5.010723; 5.325299; 1.407544;, - -5.010724; 1.791189; 1.407544;, - -5.010724; 1.791190;-0.960908;, - -5.010724; 1.791190;-0.960908;, - -5.010724; 1.791189; 1.407544;, - -7.201790; 1.791191; 1.407544;, - -7.201790; 1.791191;-0.960908;, - -7.201790; 1.791191;-0.960908;, - -7.201790; 1.791191; 1.407544;, - -7.201790; 5.325300; 1.407544;, - -7.201790; 5.325301;-0.960908;, - -5.010723; 5.325299; 1.407544;, - -5.010724; 5.325300;-0.960908;, - -7.201790; 5.325301;-0.960908;, - -7.201790; 5.325300; 1.407544;, - -5.594649; 8.883257;-0.581474;, - -5.594649; 5.349147;-0.581474;, - -6.927300; 5.349147;-0.581474;, - -6.927299; 8.883258;-0.581474;, - -5.594649; 8.883256; 0.581474;, - -6.927299; 8.883257; 0.581474;, - -6.927300; 5.349147; 0.581474;, - -5.594649; 5.349146; 0.581474;, - -5.594649; 8.883257;-0.581474;, - -5.594649; 8.883256; 0.581474;, - -5.594649; 5.349146; 0.581474;, - -5.594649; 5.349147;-0.581474;, - -5.594649; 5.349147;-0.581474;, - -5.594649; 5.349146; 0.581474;, - -6.927300; 5.349147; 0.581474;, - -6.927300; 5.349147;-0.581474;, - -6.927300; 5.349147;-0.581474;, - -6.927300; 5.349147; 0.581474;, - -6.927299; 8.883257; 0.581474;, - -6.927299; 8.883258;-0.581474;, - -5.594649; 8.883256; 0.581474;, - -5.594649; 8.883257;-0.581474;, - -6.927299; 8.883258;-0.581474;, - -6.927299; 8.883257; 0.581474;, - -3.424468; 8.883257;-0.581474;, - -3.424468; 5.349147;-0.581474;, - -4.757119; 5.349147;-0.581474;, - -4.757119; 8.883258;-0.581474;, - -3.424468; 8.883256; 0.581474;, - -4.757119; 8.883257; 0.581474;, - -4.757119; 5.349147; 0.581474;, - -3.424469; 5.349146; 0.581474;, - -3.424468; 8.883257;-0.581474;, - -3.424468; 8.883256; 0.581474;, - -3.424469; 5.349146; 0.581474;, - -3.424468; 5.349147;-0.581474;, - -3.424468; 5.349147;-0.581474;, - -3.424469; 5.349146; 0.581474;, - -4.757119; 5.349147; 0.581474;, - -4.757119; 5.349147;-0.581474;, - -4.757119; 5.349147;-0.581474;, - -4.757119; 5.349147; 0.581474;, - -4.757119; 8.883257; 0.581474;, - -4.757119; 8.883258;-0.581474;, - -3.424468; 8.883256; 0.581474;, - -3.424468; 8.883257;-0.581474;, - -4.757119; 8.883258;-0.581474;, - -4.757119; 8.883257; 0.581474;, - -2.840543; 5.325300;-0.960908;, - -2.840543; 1.791190;-0.960908;, - -5.031610; 1.791191;-0.960908;, - -5.031609; 5.325301;-0.960908;, - -2.840542; 5.325299; 1.407544;, - -5.031610; 5.325300; 1.407544;, - -5.031610; 1.791191; 1.407544;, - -2.840543; 1.791189; 1.407544;, - -2.840543; 5.325300;-0.960908;, - -2.840542; 5.325299; 1.407544;, - -2.840543; 1.791189; 1.407544;, - -2.840543; 1.791190;-0.960908;, - -2.840543; 1.791190;-0.960908;, - -2.840543; 1.791189; 1.407544;, - -5.031610; 1.791191; 1.407544;, - -5.031610; 1.791191;-0.960908;, - -5.031610; 1.791191;-0.960908;, - -5.031610; 1.791191; 1.407544;, - -5.031610; 5.325300; 1.407544;, - -5.031609; 5.325301;-0.960908;, - -2.840542; 5.325299; 1.407544;, - -2.840543; 5.325300;-0.960908;, - -5.031609; 5.325301;-0.960908;, - -5.031610; 5.325300; 1.407544;, - -2.949907;10.606580;-0.677308;, - -2.949907; 8.904172;-0.677308;, - -5.011261; 8.904172;-0.677308;, - -5.011261;10.606581;-0.677308;, - -2.949906;10.606580; 0.737293;, - -5.011261;10.606580; 0.737293;, - -5.011261; 8.904172; 0.737293;, - -2.949907; 8.904171; 0.737293;, - -2.949907;10.606580;-0.677308;, - -2.949906;10.606580; 0.737293;, - -2.949907; 8.904171; 0.737293;, - -2.949907; 8.904172;-0.677308;, - -2.949907; 8.904172;-0.677308;, - -2.949907; 8.904171; 0.737293;, - -5.011261; 8.904172; 0.737293;, - -5.011261; 8.904172;-0.677308;, - -5.011261; 8.904172;-0.677308;, - -5.011261; 8.904172; 0.737293;, - -5.011261;10.606580; 0.737293;, - -5.011261;10.606581;-0.677308;, - -2.949906;10.606580; 0.737293;, - -2.949907;10.606580;-0.677308;, - -5.011261;10.606581;-0.677308;, - -5.011261;10.606580; 0.737293;, - -1.005693;10.606580;-0.677308;, - -1.005693; 8.904172;-0.677308;, - -3.067047; 8.904172;-0.677308;, - -3.067047;10.606581;-0.677308;, - -1.005692;10.606580; 0.737293;, - -3.067047;10.606580; 0.737293;, - -3.067047; 8.904172; 0.737293;, - -1.005693; 8.904171; 0.737293;, - -1.005693;10.606580;-0.677308;, - -1.005692;10.606580; 0.737293;, - -1.005693; 8.904171; 0.737293;, - -1.005693; 8.904172;-0.677308;, - -1.005693; 8.904172;-0.677308;, - -1.005693; 8.904171; 0.737293;, - -3.067047; 8.904172; 0.737293;, - -3.067047; 8.904172;-0.677308;, - -3.067047; 8.904172;-0.677308;, - -3.067047; 8.904172; 0.737293;, - -3.067047;10.606580; 0.737293;, - -3.067047;10.606581;-0.677308;, - -1.005692;10.606580; 0.737293;, - -1.005693;10.606580;-0.677308;, - -3.067047;10.606581;-0.677308;, - -3.067047;10.606580; 0.737293;, - -0.835754; 5.325300;-0.960908;, - -0.835754; 1.791190;-0.960908;, - -3.147970; 1.791191;-0.960908;, - -3.147970; 5.325301;-0.960908;, - -0.835753; 5.325299; 1.407544;, - -3.147970; 5.325300; 1.407544;, - -3.147971; 1.791191; 1.407544;, - -0.835754; 1.791189; 1.407544;, - -0.835754; 5.325300;-0.960908;, - -0.835753; 5.325299; 1.407544;, - -0.835754; 1.791189; 1.407544;, - -0.835754; 1.791190;-0.960908;, - -0.835754; 1.791190;-0.960908;, - -0.835754; 1.791189; 1.407544;, - -3.147971; 1.791191; 1.407544;, - -3.147970; 1.791191;-0.960908;, - -3.147970; 1.791191;-0.960908;, - -3.147971; 1.791191; 1.407544;, - -3.147970; 5.325300; 1.407544;, - -3.147970; 5.325301;-0.960908;, - -0.835753; 5.325299; 1.407544;, - -0.835754; 5.325300;-0.960908;, - -3.147970; 5.325301;-0.960908;, - -3.147970; 5.325300; 1.407544;, - -1.480254; 8.883257;-0.581474;, - -1.480254; 5.349147;-0.581474;, - -2.812905; 5.349147;-0.581474;, - -2.812905; 8.883258;-0.581474;, - -1.480254; 8.883256; 0.581474;, - -2.812905; 8.883257; 0.581474;, - -2.812905; 5.349147; 0.581474;, - -1.480255; 5.349146; 0.581474;, - -1.480254; 8.883257;-0.581474;, - -1.480254; 8.883256; 0.581474;, - -1.480255; 5.349146; 0.581474;, - -1.480254; 5.349147;-0.581474;, - -1.480254; 5.349147;-0.581474;, - -1.480255; 5.349146; 0.581474;, - -2.812905; 5.349147; 0.581474;, - -2.812905; 5.349147;-0.581474;, - -2.812905; 5.349147;-0.581474;, - -2.812905; 5.349147; 0.581474;, - -2.812905; 8.883257; 0.581474;, - -2.812905; 8.883258;-0.581474;, - -1.480254; 8.883256; 0.581474;, - -1.480254; 8.883257;-0.581474;, - -2.812905; 8.883258;-0.581474;, - -2.812905; 8.883257; 0.581474;, - -0.896329;-1.799264;-0.908047;, - -0.896329;-5.333374;-0.908047;, - -3.087395;-5.333374;-0.908047;, - -3.087395;-1.799264;-0.908047;, - -0.896328;-1.799265; 1.354682;, - -3.087395;-1.799264; 1.354682;, - -3.087396;-5.333374; 1.354682;, - -0.896329;-5.333375; 1.354682;, - -0.896329;-1.799264;-0.908047;, - -0.896328;-1.799265; 1.354682;, - -0.896329;-5.333375; 1.354682;, - -0.896329;-5.333374;-0.908047;, - -0.896329;-5.333374;-0.908047;, - -0.896329;-5.333375; 1.354682;, - -3.087396;-5.333374; 1.354682;, - -3.087395;-5.333374;-0.908047;, - -3.087395;-5.333374;-0.908047;, - -3.087396;-5.333374; 1.354682;, - -3.087395;-1.799264; 1.354682;, - -3.087395;-1.799264;-0.908047;, - -0.896328;-1.799265; 1.354682;, - -0.896329;-1.799264;-0.908047;, - -3.087395;-1.799264;-0.908047;, - -3.087395;-1.799264; 1.354682;, - -1.480254;-5.357221;-0.581474;, - -1.480254;-8.891331;-0.581474;, - -2.812905;-8.891331;-0.581474;, - -2.812905;-5.357221;-0.581474;, - -1.480254;-5.357222; 0.581474;, - -2.812905;-5.357221; 0.581474;, - -2.812905;-8.891331; 0.581474;, - -1.480255;-8.891333; 0.581474;, - -1.480254;-5.357221;-0.581474;, - -1.480254;-5.357222; 0.581474;, - -1.480255;-8.891333; 0.581474;, - -1.480254;-8.891331;-0.581474;, - -1.480254;-8.891331;-0.581474;, - -1.480255;-8.891333; 0.581474;, - -2.812905;-8.891331; 0.581474;, - -2.812905;-8.891331;-0.581474;, - -2.812905;-8.891331;-0.581474;, - -2.812905;-8.891331; 0.581474;, - -2.812905;-5.357221; 0.581474;, - -2.812905;-5.357221;-0.581474;, - -1.480254;-5.357222; 0.581474;, - -1.480254;-5.357221;-0.581474;, - -2.812905;-5.357221;-0.581474;, - -2.812905;-5.357221; 0.581474;, - -1.005693;-8.911617;-0.677308;, - -1.005693;-10.614025;-0.677308;, - -3.067047;-10.614025;-0.677308;, - -3.067047;-8.911616;-0.677308;, - -1.005692;-8.911617; 0.737293;, - -3.067047;-8.911617; 0.737293;, - -3.067047;-10.614025; 0.737293;, - -1.005693;-10.614026; 0.737293;, - -1.005693;-8.911617;-0.677308;, - -1.005692;-8.911617; 0.737293;, - -1.005693;-10.614026; 0.737293;, - -1.005693;-10.614025;-0.677308;, - -1.005693;-10.614025;-0.677308;, - -1.005693;-10.614026; 0.737293;, - -3.067047;-10.614025; 0.737293;, - -3.067047;-10.614025;-0.677308;, - -3.067047;-10.614025;-0.677308;, - -3.067047;-10.614025; 0.737293;, - -3.067047;-8.911617; 0.737293;, - -3.067047;-8.911616;-0.677308;, - -1.005692;-8.911617; 0.737293;, - -1.005693;-8.911617;-0.677308;, - -3.067047;-8.911616;-0.677308;, - -3.067047;-8.911617; 0.737293;, - -2.935827;-8.911617;-0.677308;, - -2.935827;-10.614025;-0.677308;, - -4.997181;-10.614025;-0.677308;, - -4.997181;-8.911616;-0.677308;, - -2.935826;-8.911617; 0.737293;, - -4.997181;-8.911617; 0.737293;, - -4.997181;-10.614025; 0.737293;, - -2.935827;-10.614026; 0.737293;, - -2.935827;-8.911617;-0.677308;, - -2.935826;-8.911617; 0.737293;, - -2.935827;-10.614026; 0.737293;, - -2.935827;-10.614025;-0.677308;, - -2.935827;-10.614025;-0.677308;, - -2.935827;-10.614026; 0.737293;, - -4.997181;-10.614025; 0.737293;, - -4.997181;-10.614025;-0.677308;, - -4.997181;-10.614025;-0.677308;, - -4.997181;-10.614025; 0.737293;, - -4.997181;-8.911617; 0.737293;, - -4.997181;-8.911616;-0.677308;, - -2.935826;-8.911617; 0.737293;, - -2.935827;-8.911617;-0.677308;, - -4.997181;-8.911616;-0.677308;, - -4.997181;-8.911617; 0.737293;, - -3.410388;-5.357221;-0.581474;, - -3.410388;-8.891331;-0.581474;, - -4.743039;-8.891331;-0.581474;, - -4.743039;-5.357221;-0.581474;, - -3.410388;-5.357222; 0.581474;, - -4.743039;-5.357221; 0.581474;, - -4.743039;-8.891331; 0.581474;, - -3.410389;-8.891333; 0.581474;, - -3.410388;-5.357221;-0.581474;, - -3.410388;-5.357222; 0.581474;, - -3.410389;-8.891333; 0.581474;, - -3.410388;-8.891331;-0.581474;, - -3.410388;-8.891331;-0.581474;, - -3.410389;-8.891333; 0.581474;, - -4.743039;-8.891331; 0.581474;, - -4.743039;-8.891331;-0.581474;, - -4.743039;-8.891331;-0.581474;, - -4.743039;-8.891331; 0.581474;, - -4.743039;-5.357221; 0.581474;, - -4.743039;-5.357221;-0.581474;, - -3.410388;-5.357222; 0.581474;, - -3.410388;-5.357221;-0.581474;, - -4.743039;-5.357221;-0.581474;, - -4.743039;-5.357221; 0.581474;, - -2.826463;-1.799264;-0.960908;, - -2.826463;-5.333374;-0.960908;, - -5.017529;-5.333374;-0.960908;, - -5.017529;-1.799264;-0.960908;, - -2.826462;-1.799265; 1.407544;, - -5.017529;-1.799264; 1.407544;, - -5.017529;-5.333374; 1.407544;, - -2.826463;-5.333375; 1.407544;, - -2.826463;-1.799264;-0.960908;, - -2.826462;-1.799265; 1.407544;, - -2.826463;-5.333375; 1.407544;, - -2.826463;-5.333374;-0.960908;, - -2.826463;-5.333374;-0.960908;, - -2.826463;-5.333375; 1.407544;, - -5.017529;-5.333374; 1.407544;, - -5.017529;-5.333374;-0.960908;, - -5.017529;-5.333374;-0.960908;, - -5.017529;-5.333374; 1.407544;, - -5.017529;-1.799264; 1.407544;, - -5.017529;-1.799264;-0.960908;, - -2.826462;-1.799265; 1.407544;, - -2.826463;-1.799264;-0.960908;, - -5.017529;-1.799264;-0.960908;, - -5.017529;-1.799264; 1.407544;, - -5.166610;-1.799264;-0.960908;, - -5.166610;-5.333374;-0.960908;, - -7.357677;-5.333374;-0.960908;, - -7.357676;-1.799264;-0.960908;, - -5.166610;-1.799265; 1.407544;, - -7.357677;-1.799264; 1.407544;, - -7.357677;-5.333374; 1.407544;, - -5.166610;-5.333375; 1.407544;, - -5.166610;-1.799264;-0.960908;, - -5.166610;-1.799265; 1.407544;, - -5.166610;-5.333375; 1.407544;, - -5.166610;-5.333374;-0.960908;, - -5.166610;-5.333374;-0.960908;, - -5.166610;-5.333375; 1.407544;, - -7.357677;-5.333374; 1.407544;, - -7.357677;-5.333374;-0.960908;, - -7.357677;-5.333374;-0.960908;, - -7.357677;-5.333374; 1.407544;, - -7.357677;-1.799264; 1.407544;, - -7.357676;-1.799264;-0.960908;, - -5.166610;-1.799265; 1.407544;, - -5.166610;-1.799264;-0.960908;, - -7.357676;-1.799264;-0.960908;, - -7.357677;-1.799264; 1.407544;, - -5.750535;-5.357221;-0.581474;, - -5.750535;-8.891331;-0.581474;, - -7.083186;-8.891331;-0.581474;, - -7.083186;-5.357221;-0.581474;, - -5.750535;-5.357222; 0.581474;, - -7.083186;-5.357221; 0.581474;, - -7.083186;-8.891331; 0.581474;, - -5.750535;-8.891333; 0.581474;, - -5.750535;-5.357221;-0.581474;, - -5.750535;-5.357222; 0.581474;, - -5.750535;-8.891333; 0.581474;, - -5.750535;-8.891331;-0.581474;, - -5.750535;-8.891331;-0.581474;, - -5.750535;-8.891333; 0.581474;, - -7.083186;-8.891331; 0.581474;, - -7.083186;-8.891331;-0.581474;, - -7.083186;-8.891331;-0.581474;, - -7.083186;-8.891331; 0.581474;, - -7.083186;-5.357221; 0.581474;, - -7.083186;-5.357221;-0.581474;, - -5.750535;-5.357222; 0.581474;, - -5.750535;-5.357221;-0.581474;, - -7.083186;-5.357221;-0.581474;, - -7.083186;-5.357221; 0.581474;, - -5.275974;-8.911617;-0.677308;, - -5.275974;-10.614025;-0.677308;, - -7.337328;-10.614025;-0.677308;, - -7.337328;-8.911616;-0.677308;, - -5.275973;-8.911617; 0.737293;, - -7.337328;-8.911617; 0.737293;, - -7.337328;-10.614025; 0.737293;, - -5.275974;-10.614026; 0.737293;, - -5.275974;-8.911617;-0.677308;, - -5.275973;-8.911617; 0.737293;, - -5.275974;-10.614026; 0.737293;, - -5.275974;-10.614025;-0.677308;, - -5.275974;-10.614025;-0.677308;, - -5.275974;-10.614026; 0.737293;, - -7.337328;-10.614025; 0.737293;, - -7.337328;-10.614025;-0.677308;, - -7.337328;-10.614025;-0.677308;, - -7.337328;-10.614025; 0.737293;, - -7.337328;-8.911617; 0.737293;, - -7.337328;-8.911616;-0.677308;, - -5.275973;-8.911617; 0.737293;, - -5.275974;-8.911617;-0.677308;, - -7.337328;-8.911616;-0.677308;, - -7.337328;-8.911617; 0.737293;, - -7.333074;-8.911617;-0.677308;, - -7.333074;-10.614025;-0.677308;, - -9.394428;-10.614025;-0.677308;, - -9.394428;-8.911616;-0.677308;, - -7.333074;-8.911617; 0.737293;, - -9.394428;-8.911617; 0.737293;, - -9.394429;-10.614025; 0.737293;, - -7.333074;-10.614026; 0.737293;, - -7.333074;-8.911617;-0.677308;, - -7.333074;-8.911617; 0.737293;, - -7.333074;-10.614026; 0.737293;, - -7.333074;-10.614025;-0.677308;, - -7.333074;-10.614025;-0.677308;, - -7.333074;-10.614026; 0.737293;, - -9.394429;-10.614025; 0.737293;, - -9.394428;-10.614025;-0.677308;, - -9.394428;-10.614025;-0.677308;, - -9.394429;-10.614025; 0.737293;, - -9.394428;-8.911617; 0.737293;, - -9.394428;-8.911616;-0.677308;, - -7.333074;-8.911617; 0.737293;, - -7.333074;-8.911617;-0.677308;, - -9.394428;-8.911616;-0.677308;, - -9.394428;-8.911617; 0.737293;, - -7.807635;-5.357221;-0.581474;, - -7.807635;-8.891331;-0.581474;, - -9.140286;-8.891331;-0.581474;, - -9.140285;-5.357221;-0.581474;, - -7.807635;-5.357222; 0.581474;, - -9.140286;-5.357221; 0.581474;, - -9.140286;-8.891331; 0.581474;, - -7.807636;-8.891333; 0.581474;, - -7.807635;-5.357221;-0.581474;, - -7.807635;-5.357222; 0.581474;, - -7.807636;-8.891333; 0.581474;, - -7.807635;-8.891331;-0.581474;, - -7.807635;-8.891331;-0.581474;, - -7.807636;-8.891333; 0.581474;, - -9.140286;-8.891331; 0.581474;, - -9.140286;-8.891331;-0.581474;, - -9.140286;-8.891331;-0.581474;, - -9.140286;-8.891331; 0.581474;, - -9.140286;-5.357221; 0.581474;, - -9.140285;-5.357221;-0.581474;, - -7.807635;-5.357222; 0.581474;, - -7.807635;-5.357221;-0.581474;, - -9.140285;-5.357221;-0.581474;, - -9.140286;-5.357221; 0.581474;, - -7.223710;-1.799264;-0.960908;, - -7.223710;-5.333374;-0.960908;, - -9.414777;-5.333374;-0.960908;, - -9.414777;-1.799264;-0.960908;, - -7.223710;-1.799265; 1.407544;, - -9.414777;-1.799264; 1.407544;, - -9.414777;-5.333374; 1.407544;, - -7.223711;-5.333375; 1.407544;, - -7.223710;-1.799264;-0.960908;, - -7.223710;-1.799265; 1.407544;, - -7.223711;-5.333375; 1.407544;, - -7.223710;-5.333374;-0.960908;, - -7.223710;-5.333374;-0.960908;, - -7.223711;-5.333375; 1.407544;, - -9.414777;-5.333374; 1.407544;, - -9.414777;-5.333374;-0.960908;, - -9.414777;-5.333374;-0.960908;, - -9.414777;-5.333374; 1.407544;, - -9.414777;-1.799264; 1.407544;, - -9.414777;-1.799264;-0.960908;, - -7.223710;-1.799265; 1.407544;, - -7.223710;-1.799264;-0.960908;, - -9.414777;-1.799264;-0.960908;, - -9.414777;-1.799264; 1.407544;, - -10.182327;-0.553378;-4.591125;, - -10.182327;-0.978322;-4.591125;, - -11.024656;-0.978322;-4.591125;, - -11.024656;-0.553377;-4.591125;, - -10.182327;-0.553378;-2.555301;, - -11.024656;-0.553378;-2.555301;, - -11.024656;-0.978322;-2.555301;, - -10.182327;-0.978322;-2.555301;, - -10.182327;-0.553378;-4.591125;, - -10.182327;-0.553378;-2.555301;, - -10.182327;-0.978322;-2.555301;, - -10.182327;-0.978322;-4.591125;, - -10.182327;-0.978322;-4.591125;, - -10.182327;-0.978322;-2.555301;, - -11.024656;-0.978322;-2.555301;, - -11.024656;-0.978322;-4.591125;, - -11.024656;-0.978322;-4.591125;, - -11.024656;-0.978322;-2.555301;, - -11.024656;-0.553378;-2.555301;, - -11.024656;-0.553377;-4.591125;, - -10.182327;-0.553378;-2.555301;, - -10.182327;-0.553378;-4.591125;, - -11.024656;-0.553377;-4.591125;, - -11.024656;-0.553378;-2.555301;, - -10.182327; 0.972910;-4.584551;, - -10.182327; 0.525326;-4.584551;, - -11.024656; 0.525326;-4.584551;, - -11.024656; 0.972911;-4.584551;, - -10.182327; 0.972910;-2.548727;, - -11.024656; 0.972910;-2.548727;, - -11.024656; 0.525326;-2.548727;, - -10.182327; 0.525326;-2.548727;, - -10.182327; 0.972910;-4.584551;, - -10.182327; 0.972910;-2.548727;, - -10.182327; 0.525326;-2.548727;, - -10.182327; 0.525326;-4.584551;, - -10.182327; 0.525326;-4.584551;, - -10.182327; 0.525326;-2.548727;, - -11.024656; 0.525326;-2.548727;, - -11.024656; 0.525326;-4.584551;, - -11.024656; 0.525326;-4.584551;, - -11.024656; 0.525326;-2.548727;, - -11.024656; 0.972910;-2.548727;, - -11.024656; 0.972911;-4.584551;, - -10.182327; 0.972910;-2.548727;, - -10.182327; 0.972910;-4.584551;, - -11.024656; 0.972911;-4.584551;, - -11.024656; 0.972910;-2.548727;, - -9.828722; 1.338463;-2.663285;, - -9.828722; 0.183701;-2.663285;, - -11.094425; 0.183701;-2.663285;, - -11.094424; 1.338464;-2.663285;, - -9.828722; 1.338463; 1.618752;, - -11.094424; 1.338464; 1.618752;, - -11.094425; 0.183701; 1.618752;, - -9.828723; 0.183700; 1.618752;, - -9.828722; 1.338463;-2.663285;, - -9.828722; 1.338463; 1.618752;, - -9.828723; 0.183700; 1.618752;, - -9.828722; 0.183701;-2.663285;, - -9.828722; 0.183701;-2.663285;, - -9.828723; 0.183700; 1.618752;, - -11.094425; 0.183701; 1.618752;, - -11.094425; 0.183701;-2.663285;, - -11.094425; 0.183701;-2.663285;, - -11.094425; 0.183701; 1.618752;, - -11.094424; 1.338464; 1.618752;, - -11.094424; 1.338464;-2.663285;, - -9.828722; 1.338463; 1.618752;, - -9.828722; 1.338463;-2.663285;, - -11.094424; 1.338464;-2.663285;, - -11.094424; 1.338464; 1.618752;, - -9.850704;-0.142858;-2.654951;, - -9.850704;-1.326516;-2.654951;, - -11.116406;-1.326516;-2.654951;, - -11.116405;-0.142858;-2.654951;, - -9.850703;-0.142858; 1.574314;, - -11.116405;-0.142858; 1.574314;, - -11.116406;-1.326516; 1.574314;, - -9.850704;-1.326516; 1.574314;, - -9.850704;-0.142858;-2.654951;, - -9.850703;-0.142858; 1.574314;, - -9.850704;-1.326516; 1.574314;, - -9.850704;-1.326516;-2.654951;, - -9.850704;-1.326516;-2.654951;, - -9.850704;-1.326516; 1.574314;, - -11.116406;-1.326516; 1.574314;, - -11.116406;-1.326516;-2.654951;, - -11.116406;-1.326516;-2.654951;, - -11.116406;-1.326516; 1.574314;, - -11.116405;-0.142858; 1.574314;, - -11.116405;-0.142858;-2.654951;, - -9.850703;-0.142858; 1.574314;, - -9.850704;-0.142858;-2.654951;, - -11.116405;-0.142858;-2.654951;, - -11.116405;-0.142858; 1.574314;, - -1.067807; 1.767679;-1.776137;, - -1.067807;-1.767679;-1.776137;, - -9.790613;-1.767679;-1.776137;, - -9.790611; 1.767680;-1.776137;, - -1.067805; 1.767678; 3.361375;, - -9.790613; 1.767679; 3.361375;, - -9.790615;-1.767679; 3.361375;, - -1.067810;-1.767680; 3.361375;, - -1.067807; 1.767679;-1.776137;, - -1.067805; 1.767678; 3.361375;, - -1.067810;-1.767680; 3.361375;, - -1.067807;-1.767679;-1.776137;, - -1.067807;-1.767679;-1.776137;, - -1.067810;-1.767680; 3.361375;, - -9.790615;-1.767679; 3.361375;, - -9.790613;-1.767679;-1.776137;, - -9.790613;-1.767679;-1.776137;, - -9.790615;-1.767679; 3.361375;, - -9.790613; 1.767679; 3.361375;, - -9.790611; 1.767680;-1.776137;, - -1.067805; 1.767678; 3.361375;, - -1.067807; 1.767679;-1.776137;, - -9.790611; 1.767680;-1.776137;, - -9.790613; 1.767679; 3.361375;, - 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.999999; 1.000000;, - -1.000000; 1.000000; 1.000000;, - -1.000000;-1.000000; 1.000000;, - 0.999999;-1.000001; 1.000000;, - 1.000000; 1.000000;-1.000000;, - 1.000000; 0.999999; 1.000000;, - 0.999999;-1.000001; 1.000000;, - 1.000000;-1.000000;-1.000000;, - 1.000000;-1.000000;-1.000000;, - 0.999999;-1.000001; 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.999999; 1.000000;, - 1.000000; 1.000000;-1.000000;, - -1.000000; 1.000000;-1.000000;, - -1.000000; 1.000000; 1.000000;, - 12.090038; 2.577776;-1.156314;, - 12.090038;-2.506783;-1.156314;, - 1.099999;-2.506782;-1.156314;, - 1.100001; 2.577777;-1.156314;, - 12.090041; 2.577775; 2.951054;, - 1.100000; 2.577776; 2.951054;, - 1.099998;-2.506782; 2.951054;, - 12.090035;-2.506784; 2.951054;, - 12.090038; 2.577776;-1.156314;, - 12.090041; 2.577775; 2.951054;, - 12.090035;-2.506784; 2.951054;, - 12.090038;-2.506783;-1.156314;, - 12.090038;-2.506783;-1.156314;, - 12.090035;-2.506784; 2.951054;, - 1.099998;-2.506782; 2.951054;, - 1.099999;-2.506782;-1.156314;, - 1.099999;-2.506782;-1.156314;, - 1.099998;-2.506782; 2.951054;, - 1.100000; 2.577776; 2.951054;, - 1.100001; 2.577777;-1.156314;, - 12.090041; 2.577775; 2.951054;, - 12.090038; 2.577776;-1.156314;, - 1.100001; 2.577777;-1.156314;, - 1.100000; 2.577776; 2.951054;; - 186; - 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;, - 4;351,350,349,348;, - 4;355,354,353,352;, - 4;359,358,357,356;, - 4;363,362,361,360;, - 4;367,366,365,364;, - 4;371,370,369,368;, - 4;375,374,373,372;, - 4;379,378,377,376;, - 4;383,382,381,380;, - 4;387,386,385,384;, - 4;391,390,389,388;, - 4;395,394,393,392;, - 4;399,398,397,396;, - 4;403,402,401,400;, - 4;407,406,405,404;, - 4;411,410,409,408;, - 4;415,414,413,412;, - 4;419,418,417,416;, - 4;423,422,421,420;, - 4;427,426,425,424;, - 4;431,430,429,428;, - 4;435,434,433,432;, - 4;439,438,437,436;, - 4;443,442,441,440;, - 4;447,446,445,444;, - 4;451,450,449,448;, - 4;455,454,453,452;, - 4;459,458,457,456;, - 4;463,462,461,460;, - 4;467,466,465,464;, - 4;471,470,469,468;, - 4;475,474,473,472;, - 4;479,478,477,476;, - 4;483,482,481,480;, - 4;487,486,485,484;, - 4;491,490,489,488;, - 4;495,494,493,492;, - 4;499,498,497,496;, - 4;503,502,501,500;, - 4;507,506,505,504;, - 4;511,510,509,508;, - 4;515,514,513,512;, - 4;519,518,517,516;, - 4;523,522,521,520;, - 4;527,526,525,524;, - 4;531,530,529,528;, - 4;535,534,533,532;, - 4;539,538,537,536;, - 4;543,542,541,540;, - 4;547,546,545,544;, - 4;551,550,549,548;, - 4;555,554,553,552;, - 4;559,558,557,556;, - 4;563,562,561,560;, - 4;567,566,565,564;, - 4;571,570,569,568;, - 4;575,574,573,572;, - 4;579,578,577,576;, - 4;583,582,581,580;, - 4;587,586,585,584;, - 4;591,590,589,588;, - 4;595,594,593,592;, - 4;599,598,597,596;, - 4;603,602,601,600;, - 4;607,606,605,604;, - 4;611,610,609,608;, - 4;615,614,613,612;, - 4;619,618,617,616;, - 4;623,622,621,620;, - 4;627,626,625,624;, - 4;631,630,629,628;, - 4;635,634,633,632;, - 4;639,638,637,636;, - 4;643,642,641,640;, - 4;647,646,645,644;, - 4;651,650,649,648;, - 4;655,654,653,652;, - 4;659,658,657,656;, - 4;663,662,661,660;, - 4;667,666,665,664;, - 4;671,670,669,668;, - 4;675,674,673,672;, - 4;679,678,677,676;, - 4;683,682,681,680;, - 4;687,686,685,684;, - 4;691,690,689,688;, - 4;695,694,693,692;, - 4;699,698,697,696;, - 4;703,702,701,700;, - 4;707,706,705,704;, - 4;711,710,709,708;, - 4;715,714,713,712;, - 4;719,718,717,716;, - 4;723,722,721,720;, - 4;727,726,725,724;, - 4;731,730,729,728;, - 4;735,734,733,732;, - 4;739,738,737,736;, - 4;743,742,741,740;; - MeshNormals { // Cube_001 normals - 186; - 0.000000; 0.000000;-1.000000;, - 0.000000;-0.000000; 1.000000;, - 1.000000;-0.000000; 0.000000;, - -0.000001;-1.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - 0.000001; 1.000000; 0.000001;, - 0.000000; 0.000000;-1.000000;, - 0.000000;-0.000000; 1.000000;, - 1.000000;-0.000000; 0.000000;, - -0.000000;-1.000000;-0.000000;, - -1.000000;-0.000000; 0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 0.000000;-1.000000;, - 0.000000;-0.000000; 1.000000;, - 1.000000;-0.000000;-0.000000;, - -0.000000;-1.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 0.000000;-1.000000;, - 0.000000;-0.000000; 1.000000;, - 1.000000;-0.000000;-0.000000;, - -0.000000;-1.000000;-0.000000;, - -1.000000; 0.000000; 0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 0.000000;-1.000000;, - 0.000000;-0.000000; 1.000000;, - 1.000000;-0.000000;-0.000000;, - -0.000000;-1.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 0.000000;-1.000000;, - 0.000000;-0.000000; 1.000000;, - 1.000000;-0.000000;-0.000000;, - -0.000001;-1.000000;-0.000000;, - -1.000000; 0.000000; 0.000000;, - 0.000001; 1.000000; 0.000001;, - 0.000000; 0.000000;-1.000000;, - 0.000000;-0.000000; 1.000000;, - 1.000000;-0.000000; 0.000000;, - -0.000001;-1.000000;-0.000000;, - -1.000000; 0.000000; 0.000000;, - 0.000001; 1.000000; 0.000001;, - 0.000000; 0.000000;-1.000000;, - 0.000000;-0.000000; 1.000000;, - 1.000000;-0.000000; 0.000000;, - -0.000000;-1.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 0.000000;-1.000000;, - 0.000000;-0.000000; 1.000000;, - 1.000000;-0.000000; 0.000000;, - -0.000000;-1.000000;-0.000000;, - -1.000000; 0.000000; 0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 0.000000;-1.000000;, - 0.000000;-0.000000; 1.000000;, - 1.000000;-0.000000; 0.000000;, - -0.000000;-1.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 0.000000;-1.000000;, - 0.000000;-0.000000; 1.000000;, - 1.000000;-0.000000; 0.000000;, - -0.000000;-1.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 0.000000;-1.000000;, - 0.000000;-0.000000; 1.000000;, - 1.000000;-0.000000; 0.000000;, - -0.000001;-1.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - 0.000001; 1.000000; 0.000001;, - 0.000000; 0.000000;-1.000000;, - 0.000000;-0.000000; 1.000000;, - 1.000000;-0.000000; 0.000000;, - -0.000000;-1.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 0.000000;-1.000000;, - 0.000000;-0.000000; 1.000000;, - 1.000000;-0.000000; 0.000000;, - -0.000001;-1.000000;-0.000001;, - -1.000000; 0.000000;-0.000000;, - 0.000001; 1.000000; 0.000001;, - 0.000000; 0.000000;-1.000000;, - 0.000000;-0.000000; 1.000000;, - 1.000000;-0.000000; 0.000000;, - -0.000000;-1.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 0.000000;-1.000000;, - 0.000000;-0.000000; 1.000000;, - 1.000000;-0.000000; 0.000000;, - -0.000000;-1.000000;-0.000000;, - -1.000000; 0.000000; 0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 0.000000;-1.000000;, - 0.000000;-0.000000; 1.000000;, - 1.000000;-0.000000; 0.000000;, - -0.000001;-1.000000;-0.000001;, - -1.000000; 0.000000; 0.000000;, - 0.000001; 1.000000; 0.000001;, - 0.000000; 0.000000;-1.000000;, - 0.000000;-0.000000; 1.000000;, - 1.000000;-0.000000; 0.000000;, - -0.000000;-1.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 0.000000;-1.000000;, - 0.000000;-0.000000; 1.000000;, - 1.000000;-0.000000; 0.000000;, - -0.000000;-1.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 0.000000;-1.000000;, - 0.000000;-0.000000; 1.000000;, - 1.000000;-0.000000; 0.000000;, - -0.000001;-1.000000;-0.000001;, - -1.000000; 0.000000; 0.000000;, - 0.000001; 1.000000; 0.000001;, - 0.000000; 0.000000;-1.000000;, - 0.000000;-0.000000; 1.000000;, - 1.000000;-0.000000;-0.000000;, - -0.000000;-1.000000;-0.000000;, - -1.000000; 0.000000; 0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 0.000000;-1.000000;, - 0.000000;-0.000000; 1.000000;, - 1.000000;-0.000000;-0.000000;, - -0.000000;-1.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 0.000000;-1.000000;, - 0.000000;-0.000000; 1.000000;, - 1.000000;-0.000000; 0.000000;, - -0.000001;-1.000000;-0.000001;, - -1.000000; 0.000000;-0.000000;, - 0.000001; 1.000000; 0.000001;, - 0.000000; 0.000000;-1.000000;, - 0.000000;-0.000000; 1.000000;, - 1.000000;-0.000000; 0.000000;, - -0.000000;-1.000000;-0.000000;, - -1.000000;-0.000000; 0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 0.000000;-1.000000;, - 0.000000;-0.000000; 1.000000;, - 1.000000;-0.000000; 0.000000;, - -0.000000;-1.000000; 0.000000;, - -1.000000;-0.000000; 0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 0.000000;-1.000000;, - 0.000000;-0.000000; 1.000000;, - 1.000000;-0.000000; 0.000000;, - -0.000000;-1.000000; 0.000000;, - -1.000000;-0.000000; 0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 0.000000;-1.000000;, - 0.000000;-0.000000; 1.000000;, - 1.000000;-0.000000; 0.000000;, - -0.000000;-1.000000;-0.000000;, - -1.000000; 0.000001; 0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 0.000000;-1.000000;, - 0.000000;-0.000000; 1.000000;, - 1.000000;-0.000000;-0.000000;, - -0.000000;-1.000000;-0.000000;, - -1.000000; 0.000001; 0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 0.000000;-1.000000;, - 0.000000;-0.000000; 1.000000;, - 1.000000;-0.000001; 0.000000;, - -0.000000;-1.000000;-0.000000;, - -1.000000; 0.000001;-0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 0.000000;-1.000000;, - 0.000000;-0.000000; 1.000000;, - 1.000000;-0.000000; 0.000000;, - -0.000000;-1.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 0.000000;-1.000000;, - 0.000000;-0.000000; 1.000000;, - 1.000000;-0.000001;-0.000000;, - -0.000000;-1.000000;-0.000000;, - -1.000000; 0.000000;-0.000000;, - 0.000000; 1.000000; 0.000000;; - 186; - 4;0,0,0,0;, - 4;1,1,1,1;, - 4;2,2,2,2;, - 4;3,3,3,3;, - 4;4,4,4,4;, - 4;5,5,5,5;, - 4;6,6,6,6;, - 4;7,7,7,7;, - 4;8,8,8,8;, - 4;9,9,9,9;, - 4;10,10,10,10;, - 4;11,11,11,11;, - 4;12,12,12,12;, - 4;13,13,13,13;, - 4;14,14,14,14;, - 4;15,15,15,15;, - 4;16,16,16,16;, - 4;17,17,17,17;, - 4;18,18,18,18;, - 4;19,19,19,19;, - 4;20,20,20,20;, - 4;21,21,21,21;, - 4;22,22,22,22;, - 4;23,23,23,23;, - 4;24,24,24,24;, - 4;25,25,25,25;, - 4;26,26,26,26;, - 4;27,27,27,27;, - 4;28,28,28,28;, - 4;29,29,29,29;, - 4;30,30,30,30;, - 4;31,31,31,31;, - 4;32,32,32,32;, - 4;33,33,33,33;, - 4;34,34,34,34;, - 4;35,35,35,35;, - 4;36,36,36,36;, - 4;37,37,37,37;, - 4;38,38,38,38;, - 4;39,39,39,39;, - 4;40,40,40,40;, - 4;41,41,41,41;, - 4;42,42,42,42;, - 4;43,43,43,43;, - 4;44,44,44,44;, - 4;45,45,45,45;, - 4;46,46,46,46;, - 4;47,47,47,47;, - 4;48,48,48,48;, - 4;49,49,49,49;, - 4;50,50,50,50;, - 4;51,51,51,51;, - 4;52,52,52,52;, - 4;53,53,53,53;, - 4;54,54,54,54;, - 4;55,55,55,55;, - 4;56,56,56,56;, - 4;57,57,57,57;, - 4;58,58,58,58;, - 4;59,59,59,59;, - 4;60,60,60,60;, - 4;61,61,61,61;, - 4;62,62,62,62;, - 4;63,63,63,63;, - 4;64,64,64,64;, - 4;65,65,65,65;, - 4;66,66,66,66;, - 4;67,67,67,67;, - 4;68,68,68,68;, - 4;69,69,69,69;, - 4;70,70,70,70;, - 4;71,71,71,71;, - 4;72,72,72,72;, - 4;73,73,73,73;, - 4;74,74,74,74;, - 4;75,75,75,75;, - 4;76,76,76,76;, - 4;77,77,77,77;, - 4;78,78,78,78;, - 4;79,79,79,79;, - 4;80,80,80,80;, - 4;81,81,81,81;, - 4;82,82,82,82;, - 4;83,83,83,83;, - 4;84,84,84,84;, - 4;85,85,85,85;, - 4;86,86,86,86;, - 4;87,87,87,87;, - 4;88,88,88,88;, - 4;89,89,89,89;, - 4;90,90,90,90;, - 4;91,91,91,91;, - 4;92,92,92,92;, - 4;93,93,93,93;, - 4;94,94,94,94;, - 4;95,95,95,95;, - 4;96,96,96,96;, - 4;97,97,97,97;, - 4;98,98,98,98;, - 4;99,99,99,99;, - 4;100,100,100,100;, - 4;101,101,101,101;, - 4;102,102,102,102;, - 4;103,103,103,103;, - 4;104,104,104,104;, - 4;105,105,105,105;, - 4;106,106,106,106;, - 4;107,107,107,107;, - 4;108,108,108,108;, - 4;109,109,109,109;, - 4;110,110,110,110;, - 4;111,111,111,111;, - 4;112,112,112,112;, - 4;113,113,113,113;, - 4;114,114,114,114;, - 4;115,115,115,115;, - 4;116,116,116,116;, - 4;117,117,117,117;, - 4;118,118,118,118;, - 4;119,119,119,119;, - 4;120,120,120,120;, - 4;121,121,121,121;, - 4;122,122,122,122;, - 4;123,123,123,123;, - 4;124,124,124,124;, - 4;125,125,125,125;, - 4;126,126,126,126;, - 4;127,127,127,127;, - 4;128,128,128,128;, - 4;129,129,129,129;, - 4;130,130,130,130;, - 4;131,131,131,131;, - 4;132,132,132,132;, - 4;133,133,133,133;, - 4;134,134,134,134;, - 4;135,135,135,135;, - 4;136,136,136,136;, - 4;137,137,137,137;, - 4;138,138,138,138;, - 4;139,139,139,139;, - 4;140,140,140,140;, - 4;141,141,141,141;, - 4;142,142,142,142;, - 4;143,143,143,143;, - 4;144,144,144,144;, - 4;145,145,145,145;, - 4;146,146,146,146;, - 4;147,147,147,147;, - 4;148,148,148,148;, - 4;149,149,149,149;, - 4;150,150,150,150;, - 4;151,151,151,151;, - 4;152,152,152,152;, - 4;153,153,153,153;, - 4;154,154,154,154;, - 4;155,155,155,155;, - 4;156,156,156,156;, - 4;157,157,157,157;, - 4;158,158,158,158;, - 4;159,159,159,159;, - 4;160,160,160,160;, - 4;161,161,161,161;, - 4;162,162,162,162;, - 4;163,163,163,163;, - 4;164,164,164,164;, - 4;165,165,165,165;, - 4;166,166,166,166;, - 4;167,167,167,167;, - 4;168,168,168,168;, - 4;169,169,169,169;, - 4;170,170,170,170;, - 4;171,171,171,171;, - 4;172,172,172,172;, - 4;173,173,173,173;, - 4;174,174,174,174;, - 4;175,175,175,175;, - 4;176,176,176,176;, - 4;177,177,177,177;, - 4;178,178,178,178;, - 4;179,179,179,179;, - 4;180,180,180,180;, - 4;181,181,181,181;, - 4;182,182,182,182;, - 4;183,183,183,183;, - 4;184,184,184,184;, - 4;185,185,185,185;; - } // End of Cube_001 normals - MeshTextureCoords { // Cube_001 UV coordinates - 744; - 0.302262; 0.155803;, - 0.302262; 0.269389;, - 0.345250; 0.269389;, - 0.345250; 0.155802;, - 0.087322; 0.155803;, - 0.044334; 0.155803;, - 0.044334; 0.269389;, - 0.087322; 0.269389;, - 0.882562; 0.772828;, - 0.845048; 0.772828;, - 0.845048; 0.886414;, - 0.882562; 0.886414;, - 0.987958; 0.452192;, - 0.950444; 0.452192;, - 0.950444; 0.495024;, - 0.987958; 0.495024;, - 0.848057; 0.322567;, - 0.885571; 0.322567;, - 0.885571; 0.208981;, - 0.848058; 0.208981;, - 0.898216; 0.663600;, - 0.860703; 0.663600;, - 0.860703; 0.706431;, - 0.898216; 0.706431;, - 0.508039; 0.382975;, - 0.508039; 0.269389;, - 0.457235; 0.269389;, - 0.457235; 0.382975;, - 0.000000; 0.382975;, - 0.050804; 0.382975;, - 0.050804; 0.269389;, - 0.000000; 0.269389;, - 0.760735; 0.208981;, - 0.716401; 0.208981;, - 0.716401; 0.322567;, - 0.760735; 0.322567;, - 0.478320; 0.054565;, - 0.433985; 0.054565;, - 0.433985; 0.105184;, - 0.478319; 0.105184;, - 0.000000; 0.269389;, - 0.044334; 0.269389;, - 0.044334; 0.155803;, - 0.000000; 0.155803;, - 0.590377; 0.133027;, - 0.634711; 0.133027;, - 0.634711; 0.082408;, - 0.590377; 0.082408;, - 0.965897; 0.099550;, - 0.965897; 0.044835;, - 0.926817; 0.044835;, - 0.926817; 0.099550;, - 0.539573; 0.104751;, - 0.578653; 0.104751;, - 0.578653; 0.050035;, - 0.539573; 0.050035;, - 0.984548; 0.495024;, - 0.950444; 0.495024;, - 0.950444; 0.549739;, - 0.984548; 0.549739;, - 0.672066; 0.040680;, - 0.706170; 0.040680;, - 0.706170; 0.001742;, - 0.672066; 0.001742;, - 0.668815; 0.023597;, - 0.634711; 0.023597;, - 0.634711; 0.078312;, - 0.668815; 0.078312;, - 0.965897; 0.170043;, - 1.000000; 0.170043;, - 1.000000; 0.131106;, - 0.965897; 0.131106;, - 0.863882; 0.763263;, - 0.863882; 0.708548;, - 0.820894; 0.708548;, - 0.820894; 0.763263;, - 0.748161; 0.663600;, - 0.705173; 0.663600;, - 0.705173; 0.718315;, - 0.748161; 0.718315;, - 0.288185; 0.036807;, - 0.254082; 0.036807;, - 0.254082; 0.091523;, - 0.288185; 0.091523;, - 0.962566; 0.957169;, - 0.996669; 0.957169;, - 0.996669; 0.914337;, - 0.962566; 0.914337;, - 0.322288; 0.036807;, - 0.288185; 0.036807;, - 0.288185; 0.091523;, - 0.322288; 0.091523;, - 0.996669; 0.957169;, - 0.962566; 0.957169;, - 0.962566; 1.000000;, - 0.996669; 1.000000;, - 0.590377; 0.382541;, - 0.590377; 0.268955;, - 0.539573; 0.268955;, - 0.539573; 0.382541;, - 0.722870; 0.549739;, - 0.672066; 0.549739;, - 0.672066; 0.663325;, - 0.722870; 0.663325;, - 0.767205; 0.322567;, - 0.722870; 0.322567;, - 0.722870; 0.436153;, - 0.767205; 0.436153;, - 0.478319; 0.155802;, - 0.522654; 0.155802;, - 0.522654; 0.105184;, - 0.478320; 0.105184;, - 0.811539; 0.436153;, - 0.767205; 0.436153;, - 0.767205; 0.549739;, - 0.811539; 0.549739;, - 0.433985; 0.105184;, - 0.389651; 0.105184;, - 0.389651; 0.155802;, - 0.433985; 0.155802;, - 0.173298; 0.155803;, - 0.173298; 0.269389;, - 0.216286; 0.269389;, - 0.216286; 0.155802;, - 0.539573; 0.268955;, - 0.582561; 0.268955;, - 0.582561; 0.155369;, - 0.539573; 0.155369;, - 0.892041; 0.322567;, - 0.854527; 0.322567;, - 0.854527; 0.436153;, - 0.892041; 0.436153;, - 0.959156; 0.748790;, - 0.996669; 0.748790;, - 0.996669; 0.705958;, - 0.959156; 0.705958;, - 0.859635; 0.095395;, - 0.822121; 0.095395;, - 0.822121; 0.208981;, - 0.859635; 0.208981;, - 0.382830; 0.011734;, - 0.345316; 0.011734;, - 0.345316; 0.054565;, - 0.382830; 0.054565;, - 0.854527; 0.663325;, - 0.854527; 0.549739;, - 0.811539; 0.549739;, - 0.811539; 0.663325;, - 0.388238; 0.269389;, - 0.431226; 0.269389;, - 0.431226; 0.155803;, - 0.388238; 0.155803;, - 0.892041; 0.436153;, - 0.854527; 0.436153;, - 0.854527; 0.549739;, - 0.892041; 0.549739;, - 0.962165; 0.322567;, - 0.999679; 0.322567;, - 0.999679; 0.279736;, - 0.962165; 0.279736;, - 0.709580; 0.208981;, - 0.747094; 0.208981;, - 0.747094; 0.095395;, - 0.709580; 0.095395;, - 0.495371; 0.054565;, - 0.532885; 0.054565;, - 0.532885; 0.011734;, - 0.495371; 0.011734;, - 0.457235; 0.382975;, - 0.457235; 0.269389;, - 0.406431; 0.269389;, - 0.406431; 0.382975;, - 0.101608; 0.269389;, - 0.050804; 0.269389;, - 0.050804; 0.382975;, - 0.101608; 0.382975;, - 0.716401; 0.208981;, - 0.672066; 0.208981;, - 0.672066; 0.322567;, - 0.716401; 0.322567;, - 0.863882; 0.763263;, - 0.908217; 0.763263;, - 0.908217; 0.712645;, - 0.863882; 0.712645;, - 0.845048; 0.772828;, - 0.800714; 0.772828;, - 0.800714; 0.886414;, - 0.845048; 0.886414;, - 0.389651; 0.105184;, - 0.345316; 0.105184;, - 0.345316; 0.155802;, - 0.389651; 0.155802;, - 0.962566; 1.000000;, - 0.962566; 0.945285;, - 0.923486; 0.945285;, - 0.923486; 1.000000;, - 0.750226; 0.040680;, - 0.711146; 0.040680;, - 0.711146; 0.095395;, - 0.750226; 0.095395;, - 0.963658; 0.553894;, - 0.929555; 0.553894;, - 0.929555; 0.608610;, - 0.963658; 0.608610;, - 0.965897; 0.131106;, - 1.000000; 0.131106;, - 1.000000; 0.092168;, - 0.965897; 0.092168;, - 0.185875; 0.036807;, - 0.151771; 0.036807;, - 0.151771; 0.091523;, - 0.185875; 0.091523;, - 0.965897; 0.208981;, - 1.000000; 0.208981;, - 1.000000; 0.170043;, - 0.965897; 0.170043;, - 0.867466; 0.095395;, - 0.867466; 0.040680;, - 0.828386; 0.040680;, - 0.828386; 0.095395;, - 0.962566; 0.890569;, - 0.923486; 0.890569;, - 0.923486; 0.945285;, - 0.962566; 0.945285;, - 0.668815; 0.078312;, - 0.634711; 0.078312;, - 0.634711; 0.133027;, - 0.668815; 0.133027;, - 0.997761; 0.624387;, - 0.963658; 0.624388;, - 0.963658; 0.663325;, - 0.997761; 0.663325;, - 0.150055; 0.036807;, - 0.115952; 0.036807;, - 0.115952; 0.091523;, - 0.150055; 0.091523;, - 0.995023; 0.005898;, - 0.960920; 0.005898;, - 0.960920; 0.044835;, - 0.995023; 0.044835;, - 0.715551; 0.886414;, - 0.715551; 0.772828;, - 0.660839; 0.772828;, - 0.660839; 0.886414;, - 0.715551; 0.886414;, - 0.660839; 0.886414;, - 0.660839; 1.000000;, - 0.715551; 1.000000;, - 0.800714; 0.886414;, - 0.756379; 0.886414;, - 0.756379; 1.000000;, - 0.800714; 1.000000;, - 0.660839; 0.772828;, - 0.705173; 0.772828;, - 0.705173; 0.718315;, - 0.660839; 0.718315;, - 0.767205; 0.549739;, - 0.722870; 0.549739;, - 0.722870; 0.663325;, - 0.767205; 0.663325;, - 0.660839; 0.718315;, - 0.705173; 0.718315;, - 0.705173; 0.663803;, - 0.660839; 0.663803;, - 0.302262; 0.269389;, - 0.302262; 0.155803;, - 0.259274; 0.155803;, - 0.259274; 0.269389;, - 0.811539; 0.549739;, - 0.854527; 0.549739;, - 0.854527; 0.436153;, - 0.811539; 0.436153;, - 0.822121; 0.095395;, - 0.784607; 0.095395;, - 0.784608; 0.208981;, - 0.822121; 0.208981;, - 0.577087; 0.007204;, - 0.539573; 0.007204;, - 0.539573; 0.050035;, - 0.577087; 0.050035;, - 0.920076; 0.772828;, - 0.882562; 0.772828;, - 0.882562; 0.886414;, - 0.920076; 0.886414;, - 0.860703; 0.663600;, - 0.823189; 0.663600;, - 0.823189; 0.706431;, - 0.860703; 0.706431;, - 0.355628; 0.382975;, - 0.355628; 0.269389;, - 0.304824; 0.269389;, - 0.304824; 0.382975;, - 0.101608; 0.382975;, - 0.152412; 0.382975;, - 0.152412; 0.269389;, - 0.101608; 0.269389;, - 0.885972; 0.886414;, - 0.845048; 0.886414;, - 0.845048; 1.000000;, - 0.885972; 1.000000;, - 0.000000; 0.091523;, - 0.040924; 0.091523;, - 0.040924; 0.040904;, - 0.000000; 0.040904;, - 0.631301; 0.133027;, - 0.590377; 0.133027;, - 0.590377; 0.246613;, - 0.631301; 0.246613;, - 0.040924; 0.091523;, - 0.081848; 0.091523;, - 0.081848; 0.040904;, - 0.040924; 0.040904;, - 0.848057; 0.322567;, - 0.848057; 0.208981;, - 0.805070; 0.208981;, - 0.805070; 0.322567;, - 0.216286; 0.269389;, - 0.259274; 0.269389;, - 0.259274; 0.155803;, - 0.216286; 0.155803;, - 0.784607; 0.095395;, - 0.747094; 0.095395;, - 0.747094; 0.208981;, - 0.784607; 0.208981;, - 0.823189; 0.663600;, - 0.785675; 0.663600;, - 0.785675; 0.706431;, - 0.823189; 0.706431;, - 0.923085; 0.208981;, - 0.885571; 0.208981;, - 0.885571; 0.322567;, - 0.923085; 0.322567;, - 0.495371; 0.011734;, - 0.457857; 0.011734;, - 0.457857; 0.054565;, - 0.495371; 0.054565;, - 0.828386; 0.095395;, - 0.828386; 0.040680;, - 0.789306; 0.040680;, - 0.789306; 0.095395;, - 0.959156; 0.694074;, - 0.920076; 0.694074;, - 0.920076; 0.748790;, - 0.959156; 0.748790;, - 0.115952; 0.036807;, - 0.081848; 0.036807;, - 0.081848; 0.091523;, - 0.115952; 0.091523;, - 0.960920; 0.005898;, - 0.926817; 0.005898;, - 0.926817; 0.044835;, - 0.960920; 0.044835;, - 0.963658; 0.608610;, - 0.929555; 0.608610;, - 0.929555; 0.663325;, - 0.963658; 0.663325;, - 0.997761; 0.585450;, - 0.963658; 0.585450;, - 0.963658; 0.624387;, - 0.997761; 0.624387;, - 0.711146; 0.095395;, - 0.711146; 0.040680;, - 0.672066; 0.040680;, - 0.672066; 0.095395;, - 0.789306; 0.040680;, - 0.750226; 0.040680;, - 0.750226; 0.095395;, - 0.789306; 0.095395;, - 0.254082; 0.036807;, - 0.219978; 0.036807;, - 0.219978; 0.091523;, - 0.254082; 0.091523;, - 0.706170; 0.040680;, - 0.740273; 0.040680;, - 0.740273; 0.001742;, - 0.706170; 0.001742;, - 0.219978; 0.036807;, - 0.185875; 0.036807;, - 0.185875; 0.091523;, - 0.219978; 0.091523;, - 0.000000; 0.040904;, - 0.034103; 0.040904;, - 0.034103; 0.001966;, - 0.000000; 0.001966;, - 0.517202; 0.269389;, - 0.517202; 0.155803;, - 0.474214; 0.155803;, - 0.474214; 0.269389;, - 0.345250; 0.269389;, - 0.388238; 0.269389;, - 0.388238; 0.155803;, - 0.345250; 0.155803;, - 0.892041; 0.549739;, - 0.854527; 0.549739;, - 0.854527; 0.663325;, - 0.892041; 0.663325;, - 0.926817; 0.030221;, - 0.889303; 0.030221;, - 0.889303; 0.073053;, - 0.926817; 0.073053;, - 0.923486; 0.886414;, - 0.885972; 0.886414;, - 0.885972; 1.000000;, - 0.923486; 1.000000;, - 0.987958; 0.409361;, - 0.950444; 0.409361;, - 0.950444; 0.452192;, - 0.987958; 0.452192;, - 0.254020; 0.269389;, - 0.254020; 0.382975;, - 0.304824; 0.382975;, - 0.304824; 0.269389;, - 0.722870; 0.436153;, - 0.672066; 0.436153;, - 0.672066; 0.549739;, - 0.722870; 0.549739;, - 0.800714; 0.772828;, - 0.756379; 0.772828;, - 0.756379; 0.886414;, - 0.800714; 0.886414;, - 0.936375; 0.322567;, - 0.892041; 0.322567;, - 0.892041; 0.373186;, - 0.936375; 0.373186;, - 0.845048; 0.886414;, - 0.800714; 0.886414;, - 0.800714; 1.000000;, - 0.845048; 1.000000;, - 0.345316; 0.105184;, - 0.389651; 0.105184;, - 0.389651; 0.054565;, - 0.345316; 0.054565;, - 0.406431; 0.382975;, - 0.406431; 0.269389;, - 0.355628; 0.269389;, - 0.355628; 0.382975;, - 0.203216; 0.382975;, - 0.254020; 0.382975;, - 0.254020; 0.269389;, - 0.203216; 0.269389;, - 0.767205; 0.436153;, - 0.722870; 0.436153;, - 0.722870; 0.549739;, - 0.767205; 0.549739;, - 0.583907; 0.104751;, - 0.539573; 0.104751;, - 0.539573; 0.155369;, - 0.583907; 0.155369;, - 0.811539; 0.322567;, - 0.767205; 0.322567;, - 0.767205; 0.436153;, - 0.811539; 0.436153;, - 0.389651; 0.105184;, - 0.433985; 0.105184;, - 0.433985; 0.054565;, - 0.389651; 0.054565;, - 0.854527; 0.436153;, - 0.854527; 0.322567;, - 0.811539; 0.322567;, - 0.811539; 0.436153;, - 0.474214; 0.155803;, - 0.431226; 0.155803;, - 0.431226; 0.269389;, - 0.474214; 0.269389;, - 0.709580; 0.095395;, - 0.672066; 0.095395;, - 0.672066; 0.208981;, - 0.709580; 0.208981;, - 0.420344; 0.011734;, - 0.382830; 0.011734;, - 0.382830; 0.054565;, - 0.420344; 0.054565;, - 0.929554; 0.549739;, - 0.892041; 0.549739;, - 0.892041; 0.663325;, - 0.929554; 0.663325;, - 0.962165; 0.279736;, - 0.999679; 0.279736;, - 0.999679; 0.236904;, - 0.962165; 0.236904;, - 0.965897; 0.154266;, - 0.965897; 0.099550;, - 0.926817; 0.099550;, - 0.926817; 0.154266;, - 0.962165; 0.213136;, - 0.923085; 0.213136;, - 0.923085; 0.267852;, - 0.962165; 0.267852;, - 0.982915; 0.831699;, - 0.948811; 0.831699;, - 0.948811; 0.886414;, - 0.982915; 0.886414;, - 0.034103; 0.040904;, - 0.068207; 0.040904;, - 0.068207; 0.001966;, - 0.034103; 0.001966;, - 0.970479; 0.322567;, - 0.936375; 0.322567;, - 0.936375; 0.377282;, - 0.970479; 0.377282;, - 0.740273; 0.040680;, - 0.774376; 0.040680;, - 0.774376; 0.001742;, - 0.740273; 0.001742;, - 0.962165; 0.322567;, - 0.962165; 0.267852;, - 0.923085; 0.267852;, - 0.923085; 0.322567;, - 0.965897; 0.154266;, - 0.926817; 0.154266;, - 0.926817; 0.208981;, - 0.965897; 0.208981;, - 0.624480; 0.027693;, - 0.590377; 0.027693;, - 0.590377; 0.082408;, - 0.624480; 0.082408;, - 0.993259; 0.667021;, - 0.959156; 0.667021;, - 0.959156; 0.705958;, - 0.993259; 0.705958;, - 0.982915; 0.776983;, - 0.948811; 0.776983;, - 0.948811; 0.831699;, - 0.982915; 0.831699;, - 0.965897; 0.092168;, - 1.000000; 0.092168;, - 1.000000; 0.053231;, - 0.965897; 0.053231;, - 0.130310; 0.155803;, - 0.130310; 0.269389;, - 0.173298; 0.269389;, - 0.173298; 0.155803;, - 0.130310; 0.155803;, - 0.087322; 0.155802;, - 0.087322; 0.269389;, - 0.130310; 0.269389;, - 0.668815; 0.133027;, - 0.631301; 0.133027;, - 0.631301; 0.246613;, - 0.668815; 0.246613;, - 0.457857; 0.011734;, - 0.420344; 0.011734;, - 0.420344; 0.054565;, - 0.457857; 0.054565;, - 0.897149; 0.095395;, - 0.859635; 0.095395;, - 0.859635; 0.208981;, - 0.897149; 0.208981;, - 0.748161; 0.706431;, - 0.785675; 0.706431;, - 0.785675; 0.663600;, - 0.748161; 0.663600;, - 0.722870; 0.436153;, - 0.722870; 0.322567;, - 0.672066; 0.322567;, - 0.672066; 0.436153;, - 0.152412; 0.382975;, - 0.203216; 0.382975;, - 0.203216; 0.269389;, - 0.152412; 0.269389;, - 0.805070; 0.208981;, - 0.760735; 0.208981;, - 0.760735; 0.322567;, - 0.805070; 0.322567;, - 0.478319; 0.105184;, - 0.522654; 0.105184;, - 0.522654; 0.054565;, - 0.478320; 0.054565;, - 0.811539; 0.549739;, - 0.767205; 0.549739;, - 0.767205; 0.663325;, - 0.811539; 0.663325;, - 0.433985; 0.155802;, - 0.478319; 0.155802;, - 0.478319; 0.105184;, - 0.433985; 0.105184;, - 0.553530; 0.666283;, - 0.546797; 0.666283;, - 0.546797; 0.674071;, - 0.553530; 0.674071;, - 0.560262; 0.674071;, - 0.560262; 0.666283;, - 0.553530; 0.666283;, - 0.553530; 0.674071;, - 0.582561; 0.167018;, - 0.582561; 0.217987;, - 0.589293; 0.217987;, - 0.589293; 0.167018;, - 0.582561; 0.217987;, - 0.582561; 0.268955;, - 0.590377; 0.268955;, - 0.590377; 0.217987;, - 0.536270; 0.199678;, - 0.536270; 0.148709;, - 0.529538; 0.148709;, - 0.529538; 0.199678;, - 0.529891; 0.250647;, - 0.529891; 0.301616;, - 0.537707; 0.301616;, - 0.537707; 0.250647;, - 0.554260; 0.681858;, - 0.546797; 0.681858;, - 0.546797; 0.689646;, - 0.554260; 0.689646;, - 0.554260; 0.681858;, - 0.554260; 0.674071;, - 0.546797; 0.674071;, - 0.546797; 0.681858;, - 0.529891; 0.199678;, - 0.529891; 0.250647;, - 0.537354; 0.250647;, - 0.537354; 0.199678;, - 0.705173; 0.721859;, - 0.705173; 0.772828;, - 0.712989; 0.772828;, - 0.712989; 0.721859;, - 0.522075; 0.199678;, - 0.522075; 0.250647;, - 0.529538; 0.250647;, - 0.529538; 0.199678;, - 0.529891; 0.301616;, - 0.529891; 0.250647;, - 0.522075; 0.250647;, - 0.522075; 0.301616;, - 0.970479; 0.377282;, - 0.999214; 0.377282;, - 0.999214; 0.336603;, - 0.970479; 0.336603;, - 0.774376; 0.000000;, - 0.774376; 0.040680;, - 0.803112; 0.040680;, - 0.803112; 0.000000;, - 0.950444; 0.549739;, - 0.950444; 0.412115;, - 0.921709; 0.412115;, - 0.921709; 0.549739;, - 0.715551; 0.724751;, - 0.715551; 0.862376;, - 0.756379; 0.862376;, - 0.756379; 0.724751;, - 0.920076; 0.748790;, - 0.920076; 0.886414;, - 0.948811; 0.886414;, - 0.948811; 0.748790;, - 0.756379; 1.000000;, - 0.756379; 0.862376;, - 0.715551; 0.862376;, - 0.715551; 1.000000;, - 0.537707; 0.342295;, - 0.508039; 0.342295;, - 0.508039; 0.382975;, - 0.537707; 0.382975;, - 0.537707; 0.342295;, - 0.537707; 0.301616;, - 0.508039; 0.301616;, - 0.508039; 0.342295;, - 0.892041; 0.413811;, - 0.892041; 0.549739;, - 0.921709; 0.549739;, - 0.921709; 0.413811;, - 0.590377; 0.246613;, - 0.590377; 0.382541;, - 0.631205; 0.382541;, - 0.631205; 0.246613;, - 0.926817; 0.208981;, - 0.926817; 0.073053;, - 0.897149; 0.073053;, - 0.897149; 0.208981;, - 0.672033; 0.382541;, - 0.672033; 0.246613;, - 0.631205; 0.246613;, - 0.631205; 0.382541;, - 0.425531; 0.663325;, - 0.539573; 0.663325;, - 0.539573; 0.382975;, - 0.425531; 0.382975;, - 0.311489; 0.382975;, - 0.311489; 0.663325;, - 0.425531; 0.663325;, - 0.425531; 0.382975;, - 0.660839; 1.000000;, - 0.660839; 0.844823;, - 0.546797; 0.844823;, - 0.546797; 1.000000;, - 0.311489; 0.382975;, - 0.155745; 0.382975;, - 0.155745; 0.663325;, - 0.311489; 0.663325;, - 0.546797; 0.689646;, - 0.546797; 0.844823;, - 0.660839; 0.844823;, - 0.660839; 0.689646;, - 0.000000; 0.663325;, - 0.155745; 0.663325;, - 0.155745; 0.382975;, - 0.000000; 0.382975;, - 0.280801; 0.155802;, - 0.345316; 0.155802;, - 0.345316; 0.091523;, - 0.280801; 0.091523;, - 0.280801; 0.155802;, - 0.280801; 0.091523;, - 0.216286; 0.091523;, - 0.216286; 0.155802;, - 0.820894; 0.708548;, - 0.756379; 0.708548;, - 0.756379; 0.772828;, - 0.820894; 0.772828;, - 0.000000; 0.091523;, - 0.000000; 0.155802;, - 0.064515; 0.155803;, - 0.064515; 0.091523;, - 0.216286; 0.091523;, - 0.151771; 0.091523;, - 0.151771; 0.155802;, - 0.216286; 0.155802;, - 0.064515; 0.155803;, - 0.129030; 0.155803;, - 0.129030; 0.091523;, - 0.064515; 0.091523;, - 0.140905; 1.000000;, - 0.281810; 1.000000;, - 0.281810; 0.663325;, - 0.140905; 0.663325;, - 0.000000; 0.663325;, - 0.000000; 1.000000;, - 0.140905; 1.000000;, - 0.140905; 0.663325;, - 0.672066; 0.522933;, - 0.539573; 0.522933;, - 0.539573; 0.663325;, - 0.672066; 0.663325;, - 0.546797; 0.663325;, - 0.414304; 0.663325;, - 0.414304; 1.000000;, - 0.546797; 1.000000;, - 0.672066; 0.382541;, - 0.539573; 0.382541;, - 0.539573; 0.522933;, - 0.672066; 0.522933;, - 0.281810; 1.000000;, - 0.414304; 1.000000;, - 0.414304; 0.663325;, - 0.281811; 0.663325;; - } // End of Cube_001 UV coordinates - MeshMaterialList { // Cube_001 material list - 1; - 186; - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0;; - Material Material { - 0.640000; 0.640000; 0.640000; 1.000000;; - 96.078431; - 0.500000; 0.500000; 0.500000;; - 0.000000; 0.000000; 0.000000;; - TextureFilename {"tarantula.png";} - } - } // End of Cube_001 material list - XSkinMeshHeader { - 4; - 12; - 41; - } - SkinWeights { - "Armature_Bone_013"; - 21; - 672, - 673, - 675, - 676, - 677, - 678, - 679, - 680, - 681, - 682, - 683, - 684, - 685, - 686, - 689, - 690, - 691, - 692, - 693, - 694, - 695; - 1.000000, - 0.020645, - 0.031604, - 0.876569, - 0.250363, - 0.102980, - 0.107790, - 1.000000, - 0.876569, - 0.107790, - 0.020645, - 0.020645, - 0.107790, - 0.102980, - 0.102980, - 0.250363, - 0.031604, - 0.876569, - 1.000000, - 0.031604, - 0.250363; - 0.113725, 0.119665,-0.000000, 0.000000, - -0.252281, 0.239758,-0.000000, 0.000000, - 0.000000, 0.000000, 0.189174, 0.000000, - 0.675516, 0.743666, 0.005543, 1.000000;; - } // End of Armature_Bone_013 skin weights - SkinWeights { - "Armature_Bone_003"; - 15; - 627, - 628, - 629, - 630, - 631, - 633, - 634, - 637, - 638, - 641, - 642, - 643, - 644, - 646, - 647; - 0.052897, - 0.473024, - 0.484951, - 0.442607, - 0.133675, - 0.473024, - 0.133675, - 0.133675, - 0.442607, - 0.442607, - 0.484951, - 0.052897, - 0.473024, - 0.052897, - 0.484951; - 0.064360,-0.146379, 0.041037, 0.000000, - 0.320496, 0.130304,-0.037852, 0.000000, - 0.000637, 0.051325, 0.182078, 0.000000, - 0.412448,-0.880622, 0.252553, 1.000000;; - } // End of Armature_Bone_003 skin weights - SkinWeights { - "Armature_Bone_037"; - 24; - 336, - 337, - 338, - 339, - 340, - 341, - 342, - 343, - 344, - 345, - 346, - 347, - 348, - 349, - 350, - 351, - 352, - 353, - 354, - 355, - 356, - 357, - 358, - 359; - 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.165085,-0.000000, 0.000000, 0.000000, - 0.000000,-0.348037,-0.000000, 0.000000, - 0.000000,-0.000000, 0.189174, 0.000000, - -0.363215,-3.117004, 0.005543, 1.000000;; - } // End of Armature_Bone_037 skin weights - SkinWeights { - "Armature_Bone_030"; - 24; - 408, - 409, - 410, - 411, - 412, - 413, - 414, - 415, - 416, - 417, - 418, - 419, - 420, - 421, - 422, - 423, - 424, - 425, - 426, - 427, - 428, - 429, - 430, - 431; - 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.165085, 0.000000, 0.000000, 0.000000, - 0.000000,-0.348037,-0.000000, 0.000000, - 0.000000,-0.000000, 0.189174, 0.000000, - -0.709248,-0.619820, 0.005543, 1.000000;; - } // End of Armature_Bone_030 skin weights - SkinWeights { - "Armature_Bone_038"; - 24; - 360, - 361, - 362, - 363, - 364, - 365, - 366, - 367, - 368, - 369, - 370, - 371, - 372, - 373, - 374, - 375, - 376, - 377, - 378, - 379, - 380, - 381, - 382, - 383; - 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.165085, 0.000000, 0.000000, 0.000000, - 0.000000,-0.348037,-0.000000, 0.000000, - 0.000000,-0.000000, 0.189174, 0.000000, - -0.709249,-3.128153, 0.005543, 1.000000;; - } // End of Armature_Bone_038 skin weights - SkinWeights { - "Armature_Bone_023"; - 24; - 120, - 121, - 122, - 123, - 124, - 125, - 126, - 127, - 128, - 129, - 130, - 131, - 132, - 133, - 134, - 135, - 136, - 137, - 138, - 139, - 140, - 141, - 142, - 143; - 0.476087, - 0.980288, - 1.000000, - 0.130105, - 0.498086, - 0.478004, - 1.000000, - 0.980912, - 0.476087, - 0.498086, - 0.980912, - 0.980288, - 0.980288, - 0.980912, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 0.478004, - 0.130105, - 0.498086, - 0.476087, - 0.130105, - 0.478004; - 0.165085, 0.000000, 0.000000, 0.000000, - -0.000000, 0.348037,-0.000000, 0.000000, - -0.000000, 0.000000, 0.189174, 0.000000, - 1.050634,-1.862861, 0.005543, 1.000000;; - } // End of Armature_Bone_023 skin weights - SkinWeights { - "Armature_Bone_036"; - 24; - 528, - 529, - 530, - 531, - 532, - 533, - 534, - 535, - 536, - 537, - 538, - 539, - 540, - 541, - 542, - 543, - 544, - 545, - 546, - 547, - 548, - 549, - 550, - 551; - 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.165085,-0.000000, 0.000000, 0.000000, - 0.000000,-0.348037,-0.000000, 0.000000, - 0.000000,-0.000000, 0.189174, 0.000000, - -1.403467,-1.866385, 0.005543, 1.000000;; - } // End of Armature_Bone_036 skin weights - SkinWeights { - "Armature_Bone_015"; - 0; - 0.164582,-0.012871, 0.000000, 0.000000, - 0.027134, 0.346977,-0.000000, 0.000000, - -0.000000, 0.000000, 0.189174, 0.000000, - 1.003122,-0.055735, 0.005543, 1.000000;; - } // End of Armature_Bone_015 skin weights - SkinWeights { - "Armature_Bone_034"; - 24; - 384, - 385, - 386, - 387, - 388, - 389, - 390, - 391, - 392, - 393, - 394, - 395, - 396, - 397, - 398, - 399, - 400, - 401, - 402, - 403, - 404, - 405, - 406, - 407; - 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.165085, 0.000000, 0.000000, 0.000000, - 0.000000,-0.348037,-0.000000, 0.000000, - 0.000000,-0.000000, 0.189174, 0.000000, - -0.709248,-1.899737, 0.005543, 1.000000;; - } // End of Armature_Bone_034 skin weights - SkinWeights { - "Armature_Bone_020"; - 24; - 168, - 169, - 170, - 171, - 172, - 173, - 174, - 175, - 176, - 177, - 178, - 179, - 180, - 181, - 182, - 183, - 184, - 185, - 186, - 187, - 188, - 189, - 190, - 191; - 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.165085, 0.000000, 0.000000, 0.000000, - -0.000000, 0.348037,-0.000000, 0.000000, - -0.000000, 0.000000, 0.189174, 0.000000, - 0.697527,-0.587887, 0.005543, 1.000000;; - } // End of Armature_Bone_020 skin weights - SkinWeights { - "Armature_Bone_012"; - 18; - 673, - 674, - 675, - 677, - 678, - 679, - 682, - 683, - 684, - 685, - 686, - 687, - 688, - 689, - 690, - 691, - 694, - 695; - 0.000132, - 0.994826, - 0.037213, - 0.175329, - 0.499827, - 0.046383, - 0.046383, - 0.000132, - 0.000132, - 0.046383, - 0.499827, - 0.994826, - 0.994826, - 0.499827, - 0.175329, - 0.037213, - 0.037213, - 0.175329; - -0.134750,-0.095370,-0.000000, 0.000000, - 0.201062,-0.284084,-0.000000, 0.000000, - 0.000000,-0.000000, 0.189174, 0.000000, - -0.806769,-0.598736, 0.005543, 1.000000;; - } // End of Armature_Bone_012 skin weights - SkinWeights { - "Armature_Bone_007"; - 24; - 648, - 649, - 650, - 651, - 652, - 653, - 654, - 655, - 656, - 657, - 658, - 659, - 660, - 661, - 662, - 663, - 664, - 665, - 666, - 667, - 668, - 669, - 670, - 671; - 0.996040, - 1.000000, - 1.000000, - 0.942805, - 0.545704, - 0.514810, - 0.509983, - 0.508597, - 0.996040, - 0.545704, - 0.508597, - 1.000000, - 1.000000, - 0.508597, - 0.509983, - 1.000000, - 1.000000, - 0.509983, - 0.514810, - 0.942805, - 0.545704, - 0.996040, - 0.942805, - 0.514810; - -0.162855,-0.027040,-0.000016, 0.000000, - -0.001091, 0.006771,-0.347969, 0.000000, - 0.030980,-0.186583,-0.003728, 0.000000, - -1.686205,-0.052699,-0.267670, 1.000000;; - } // End of Armature_Bone_007 skin weights - SkinWeights { - "Armature_Bone_004"; - 18; - 648, - 651, - 652, - 653, - 654, - 655, - 656, - 657, - 658, - 661, - 662, - 665, - 666, - 667, - 668, - 669, - 670, - 671; - 0.003960, - 0.057195, - 0.454296, - 0.485190, - 0.490017, - 0.491403, - 0.003960, - 0.454296, - 0.491403, - 0.491403, - 0.490017, - 0.490017, - 0.485190, - 0.057195, - 0.454296, - 0.003960, - 0.057195, - 0.485190; - -0.057688,-0.147519, 0.046511, 0.000000, - 0.326095,-0.116094, 0.036243, 0.000000, - 0.000175, 0.056822, 0.180439, 0.000000, - -0.329768,-0.903427, 0.290631, 1.000000;; - } // End of Armature_Bone_004 skin weights - SkinWeights { - "Armature_Bone_031"; - 24; - 432, - 433, - 434, - 435, - 436, - 437, - 438, - 439, - 440, - 441, - 442, - 443, - 444, - 445, - 446, - 447, - 448, - 449, - 450, - 451, - 452, - 453, - 454, - 455; - 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.165084,-0.000000, 0.000000, 0.000000, - 0.000000,-0.348037,-0.000000, 0.000000, - 0.000000,-0.000000, 0.189174, 0.000000, - -1.087919,-0.603126, 0.005543, 1.000000;; - } // End of Armature_Bone_031 skin weights - SkinWeights { - "Armature_Bone_011"; - 0; - -0.163402,-0.023506,-0.000000, 0.000000, - 0.049556,-0.344491,-0.000000, 0.000000, - 0.000000,-0.000000, 0.189174, 0.000000, - -0.990957,-0.165427, 0.005543, 1.000000;; - } // End of Armature_Bone_011 skin weights - SkinWeights { - "Armature_Bone_024"; - 24; - 144, - 145, - 146, - 147, - 148, - 149, - 150, - 151, - 152, - 153, - 154, - 155, - 156, - 157, - 158, - 159, - 160, - 161, - 162, - 163, - 164, - 165, - 166, - 167; - 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.165085, 0.000000, 0.000000, 0.000000, - -0.000000, 0.348037,-0.000000, 0.000000, - -0.000000, 0.000000, 0.189174, 0.000000, - 0.697527,-1.882368, 0.005543, 1.000000;; - } // End of Armature_Bone_024 skin weights - SkinWeights { - "Armature_Bone_017"; - 24; - 240, - 241, - 242, - 243, - 244, - 245, - 246, - 247, - 248, - 249, - 250, - 251, - 252, - 253, - 254, - 255, - 256, - 257, - 258, - 259, - 260, - 261, - 262, - 263; - 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.165085, 0.000000, 0.000000, 0.000000, - -0.000000, 0.348037,-0.000000, 0.000000, - -0.000000, 0.000000, 0.189174, 0.000000, - 0.356768,-0.592857, 0.005543, 1.000000;; - } // End of Armature_Bone_017 skin weights - SkinWeights { - "Armature_Bone_005"; - 24; - 624, - 625, - 626, - 627, - 628, - 629, - 630, - 631, - 632, - 633, - 634, - 635, - 636, - 637, - 638, - 639, - 640, - 641, - 642, - 643, - 644, - 645, - 646, - 647; - 1.000000, - 1.000000, - 1.000000, - 0.947103, - 0.526976, - 0.515049, - 0.557393, - 0.866325, - 1.000000, - 0.526976, - 0.866325, - 1.000000, - 1.000000, - 0.866325, - 0.557393, - 1.000000, - 1.000000, - 0.557393, - 0.515049, - 0.947103, - 0.526976, - 1.000000, - 0.947103, - 0.515049; - -0.163134,-0.025305,-0.000022, 0.000000, - -0.001059, 0.007126,-0.347962, 0.000000, - 0.028992,-0.186899,-0.003916, 0.000000, - -1.690046,-0.064158, 0.266449, 1.000000;; - } // End of Armature_Bone_005 skin weights - SkinWeights { - "Armature_Bone_025"; - 24; - 216, - 217, - 218, - 219, - 220, - 221, - 222, - 223, - 224, - 225, - 226, - 227, - 228, - 229, - 230, - 231, - 232, - 233, - 234, - 235, - 236, - 237, - 238, - 239; - 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.165085, 0.000000, 0.000000, 0.000000, - -0.000000, 0.348037,-0.000000, 0.000000, - -0.000000, 0.000000, 0.189174, 0.000000, - 0.356768,-3.116160, 0.005543, 1.000000;; - } // End of Armature_Bone_025 skin weights - SkinWeights { - "Armature_Bone_010"; - 0; - -0.147994, 0.073149, 0.000000, 0.000000, - -0.154214,-0.312006,-0.000000, 0.000000, - 0.000000,-0.000000, 0.189174, 0.000000, - -0.910463, 0.424756, 0.005543, 1.000000;; - } // End of Armature_Bone_010 skin weights - SkinWeights { - "Armature_Bone_039"; - 24; - 480, - 481, - 482, - 483, - 484, - 485, - 486, - 487, - 488, - 489, - 490, - 491, - 492, - 493, - 494, - 495, - 496, - 497, - 498, - 499, - 500, - 501, - 502, - 503; - 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.165084,-0.000000, 0.000000, 0.000000, - 0.000000,-0.348037,-0.000000, 0.000000, - 0.000000,-0.000000, 0.189174, 0.000000, - -1.087919,-3.111459, 0.005543, 1.000000;; - } // End of Armature_Bone_039 skin weights - SkinWeights { - "Armature_Bone_001"; - 48; - 696, - 697, - 698, - 699, - 700, - 701, - 702, - 703, - 704, - 705, - 706, - 707, - 708, - 709, - 710, - 711, - 712, - 713, - 714, - 715, - 716, - 717, - 718, - 719, - 720, - 721, - 722, - 723, - 724, - 725, - 726, - 727, - 728, - 729, - 730, - 731, - 732, - 733, - 734, - 735, - 736, - 737, - 738, - 739, - 740, - 741, - 742, - 743; - 0.111799, - 0.081663, - 0.041212, - 0.056513, - 0.379139, - 0.131483, - 0.094456, - 0.353594, - 0.111799, - 0.379139, - 0.353594, - 0.081663, - 0.081663, - 0.353594, - 0.094456, - 0.041212, - 0.041212, - 0.094456, - 0.131483, - 0.056513, - 0.379139, - 0.111799, - 0.056513, - 0.131483, - 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.165085, 0.000000, 0.000000, - -0.348037,-0.000000, 0.000000, 0.000000, - 0.000000, 0.000000, 0.189174, 0.000000, - -0.022642,-0.166288,-0.002131, 1.000000;; - } // End of Armature_Bone_001 skin weights - SkinWeights { - "Armature_Bone_028"; - 24; - 192, - 193, - 194, - 195, - 196, - 197, - 198, - 199, - 200, - 201, - 202, - 203, - 204, - 205, - 206, - 207, - 208, - 209, - 210, - 211, - 212, - 213, - 214, - 215; - 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.165085, 0.000000, 0.000000, 0.000000, - -0.000000, 0.348037,-0.000000, 0.000000, - -0.000000, 0.000000, 0.189174, 0.000000, - 0.697527,-3.111190, 0.005543, 1.000000;; - } // End of Armature_Bone_028 skin weights - SkinWeights { - "Armature_Bone_006"; - 24; - 600, - 601, - 602, - 603, - 604, - 605, - 606, - 607, - 608, - 609, - 610, - 611, - 612, - 613, - 614, - 615, - 616, - 617, - 618, - 619, - 620, - 621, - 622, - 623; - 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.164872,-0.008372,-0.000000, 0.000000, - 0.000000, 0.000000,-0.348037, 0.000000, - 0.009593,-0.188931, 0.000000, 0.000000, - -1.755953,-0.541359, 0.276091, 1.000000;; - } // End of Armature_Bone_006 skin weights - SkinWeights { - "Armature_Bone_027"; - 42; - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 120, - 121, - 123, - 124, - 125, - 127, - 128, - 129, - 130, - 131, - 132, - 133, - 138, - 139, - 140, - 141, - 142, - 143; - 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.523913, - 0.019712, - 0.869895, - 0.501914, - 0.521996, - 0.019088, - 0.523913, - 0.501914, - 0.019088, - 0.019712, - 0.019712, - 0.019088, - 0.521996, - 0.869895, - 0.501914, - 0.523913, - 0.869895, - 0.521996; - 0.165085, 0.000000, 0.000000, 0.000000, - -0.000000, 0.348037,-0.000000, 0.000000, - -0.000000, 0.000000, 0.189174, 0.000000, - 1.050634,-3.091683, 0.005543, 1.000000;; - } // End of Armature_Bone_027 skin weights - SkinWeights { - "Armature_Bone_019"; - 24; - 96, - 97, - 98, - 99, - 100, - 101, - 102, - 103, - 104, - 105, - 106, - 107, - 108, - 109, - 110, - 111, - 112, - 113, - 114, - 115, - 116, - 117, - 118, - 119; - 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.165085, 0.000000, 0.000000, 0.000000, - -0.000000, 0.348037,-0.000000, 0.000000, - -0.000000, 0.000000, 0.189174, 0.000000, - 1.050634,-0.568380, 0.005543, 1.000000;; - } // End of Armature_Bone_019 skin weights - SkinWeights { - "Armature_Bone_021"; - 24; - 264, - 265, - 266, - 267, - 268, - 269, - 270, - 271, - 272, - 273, - 274, - 275, - 276, - 277, - 278, - 279, - 280, - 281, - 282, - 283, - 284, - 285, - 286, - 287; - 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.165085, 0.000000, 0.000000, 0.000000, - -0.000000, 0.348037,-0.000000, 0.000000, - -0.000000, 0.000000, 0.189174, 0.000000, - 0.356768,-1.887338, 0.005543, 1.000000;; - } // End of Armature_Bone_021 skin weights - SkinWeights { - "Armature_Bone_018"; - 24; - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47; - 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.165085,-0.000000, 0.000000, 0.000000, - 0.000000, 0.348037,-0.000000, 0.000000, - 0.000000, 0.000000, 0.189174, 0.000000, - 1.362284,-0.556315, 0.005543, 1.000000;; - } // End of Armature_Bone_018 skin weights - SkinWeights { - "Armature_Bone_032"; - 24; - 552, - 553, - 554, - 555, - 556, - 557, - 558, - 559, - 560, - 561, - 562, - 563, - 564, - 565, - 566, - 567, - 568, - 569, - 570, - 571, - 572, - 573, - 574, - 575; - 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.165085,-0.000000, 0.000000, 0.000000, - 0.000000,-0.348037,-0.000000, 0.000000, - 0.000000,-0.000000, 0.189174, 0.000000, - -1.403467,-0.586469, 0.005543, 1.000000;; - } // End of Armature_Bone_032 skin weights - SkinWeights { - "Armature_Bone_002"; - 0; - 0.000000,-0.165085, 0.000000, 0.000000, - 0.348037, 0.000000,-0.000000, 0.000000, - 0.000000,-0.000000, 0.189174, 0.000000, - 0.022642,-0.177981, 0.005543, 1.000000;; - } // End of Armature_Bone_002 skin weights - SkinWeights { - "Armature_Bone_014"; - 15; - 674, - 675, - 676, - 677, - 678, - 681, - 686, - 687, - 688, - 689, - 690, - 691, - 692, - 694, - 695; - 0.004078, - 0.931183, - 0.030704, - 0.478693, - 0.161453, - 0.030704, - 0.161453, - 0.004078, - 0.004078, - 0.161453, - 0.478693, - 0.931183, - 0.030704, - 0.931183, - 0.478693; - 0.140423,-0.086800, 0.000000, 0.000000, - 0.182994, 0.296045,-0.000000, 0.000000, - 0.000000, 0.000000, 0.189174, 0.000000, - 0.866275,-0.508851, 0.005543, 1.000000;; - } // End of Armature_Bone_014 skin weights - SkinWeights { - "Armature_Bone_033"; - 24; - 312, - 313, - 314, - 315, - 316, - 317, - 318, - 319, - 320, - 321, - 322, - 323, - 324, - 325, - 326, - 327, - 328, - 329, - 330, - 331, - 332, - 333, - 334, - 335; - 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.165085,-0.000000, 0.000000, 0.000000, - 0.000000,-0.348037,-0.000000, 0.000000, - 0.000000,-0.000000, 0.189174, 0.000000, - -0.363215,-1.888587, 0.005543, 1.000000;; - } // End of Armature_Bone_033 skin weights - SkinWeights { - "Armature_Bone_040"; - 24; - 504, - 505, - 506, - 507, - 508, - 509, - 510, - 511, - 512, - 513, - 514, - 515, - 516, - 517, - 518, - 519, - 520, - 521, - 522, - 523, - 524, - 525, - 526, - 527; - 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.165085,-0.000000, 0.000000, 0.000000, - 0.000000,-0.348037,-0.000000, 0.000000, - 0.000000,-0.000000, 0.189174, 0.000000, - -1.403467,-3.094802, 0.005543, 1.000000;; - } // End of Armature_Bone_040 skin weights - SkinWeights { - "Armature_Bone_016"; - 0; - 0.147499, 0.074142,-0.000000, 0.000000, - -0.156308, 0.310962,-0.000000, 0.000000, - -0.000000, 0.000000, 0.189174, 0.000000, - 0.887251, 0.471325, 0.005543, 1.000000;; - } // End of Armature_Bone_016 skin weights - SkinWeights { - "Armature_Bone_022"; - 24; - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23; - 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.165085,-0.000000, 0.000000, 0.000000, - 0.000000, 0.348037,-0.000000, 0.000000, - 0.000000, 0.000000, 0.189174, 0.000000, - 1.362284,-1.850797, 0.005543, 1.000000;; - } // End of Armature_Bone_022 skin weights - SkinWeights { - "Armature_Bone_009"; - 18; - 673, - 674, - 676, - 677, - 678, - 679, - 681, - 682, - 683, - 684, - 685, - 686, - 687, - 688, - 689, - 690, - 692, - 695; - 0.979223, - 0.001095, - 0.092727, - 0.095615, - 0.235740, - 0.845827, - 0.092727, - 0.845827, - 0.979223, - 0.979223, - 0.845827, - 0.235740, - 0.001095, - 0.001095, - 0.235740, - 0.095615, - 0.092727, - 0.095615; - -0.111372, 0.121857, 0.000000, 0.000000, - -0.256903,-0.234799,-0.000000, 0.000000, - 0.000000,-0.000000, 0.189174, 0.000000, - -0.694329, 0.726133, 0.005543, 1.000000;; - } // End of Armature_Bone_009 skin weights - SkinWeights { - "Armature_Bone_026"; - 24; - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71; - 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.165085,-0.000000, 0.000000, 0.000000, - 0.000000, 0.348037,-0.000000, 0.000000, - 0.000000, 0.000000, 0.189174, 0.000000, - 1.362284,-3.079619, 0.005543, 1.000000;; - } // End of Armature_Bone_026 skin weights - SkinWeights { - "Armature_Bone"; - 24; - 696, - 697, - 698, - 699, - 700, - 701, - 702, - 703, - 704, - 705, - 706, - 707, - 708, - 709, - 710, - 711, - 712, - 713, - 714, - 715, - 716, - 717, - 718, - 719; - 0.888201, - 0.918337, - 0.958788, - 0.943487, - 0.620861, - 0.868517, - 0.905544, - 0.646406, - 0.888201, - 0.620861, - 0.646406, - 0.918337, - 0.918337, - 0.646406, - 0.905544, - 0.958788, - 0.958788, - 0.905544, - 0.868517, - 0.943487, - 0.620861, - 0.888201, - 0.943487, - 0.868517; - 0.003679,-0.165043, 0.000000, 0.000000, - -0.000000, 0.000000, 0.348037, 0.000000, - -0.189127,-0.004216,-0.000000, 0.000000, - -0.001575, 0.166294, 0.022642, 1.000000;; - } // End of Armature_Bone skin weights - SkinWeights { - "Armature_Bone_035"; - 24; - 456, - 457, - 458, - 459, - 460, - 461, - 462, - 463, - 464, - 465, - 466, - 467, - 468, - 469, - 470, - 471, - 472, - 473, - 474, - 475, - 476, - 477, - 478, - 479; - 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.165084,-0.000000, 0.000000, 0.000000, - 0.000000,-0.348037,-0.000000, 0.000000, - 0.000000,-0.000000, 0.189174, 0.000000, - -1.087919,-1.883042, 0.005543, 1.000000;; - } // End of Armature_Bone_035 skin weights - SkinWeights { - "Armature_Bone_029"; - 24; - 288, - 289, - 290, - 291, - 292, - 293, - 294, - 295, - 296, - 297, - 298, - 299, - 300, - 301, - 302, - 303, - 304, - 305, - 306, - 307, - 308, - 309, - 310, - 311; - 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.165085,-0.000000, 0.000000, 0.000000, - 0.000000,-0.348037,-0.000000, 0.000000, - 0.000000,-0.000000, 0.189174, 0.000000, - -0.363215,-0.608671, 0.005543, 1.000000;; - } // End of Armature_Bone_029 skin weights - SkinWeights { - "Armature_Bone_008"; - 24; - 576, - 577, - 578, - 579, - 580, - 581, - 582, - 583, - 584, - 585, - 586, - 587, - 588, - 589, - 590, - 591, - 592, - 593, - 594, - 595, - 596, - 597, - 598, - 599; - 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.164818,-0.009368,-0.000000, 0.000000, - 0.000000, 0.000000,-0.348037, 0.000000, - 0.010735,-0.188870, 0.000000, 0.000000, - -1.754168,-0.545000,-0.258790, 1.000000;; - } // End of Armature_Bone_008 skin weights - } // End of Cube_001 mesh - } // End of Cube_001 - } // End of Armature -} // End of Root -AnimationSet Global { - Animation { - {Armature} - AnimationKey { // Rotation - 0; - 250; - 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;;, - 189;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 190;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 191;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 192;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 193;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 194;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 195;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 196;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 197;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 198;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 199;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 200;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 201;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 202;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 203;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 204;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 205;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 206;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 207;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 208;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 209;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 210;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 211;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 212;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 213;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 214;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 215;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 216;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 217;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 218;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 219;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 220;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 221;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 222;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 223;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 224;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 225;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 226;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 227;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 228;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 229;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 230;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 231;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 232;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 233;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 234;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 235;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 236;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 237;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 238;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 239;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 240;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 241;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 242;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 243;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 244;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 245;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 246;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 247;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 248;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 249;4;-1.000000, 0.000000, 0.000000, 0.000000;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3;-0.672467,-1.528196,-0.828771;;, - 1;3;-0.672467,-1.528196,-0.828771;;, - 2;3;-0.672467,-1.528196,-0.828771;;, - 3;3;-0.672467,-1.528196,-0.828771;;, - 4;3;-0.672467,-1.528196,-0.828771;;, - 5;3;-0.672467,-1.528196,-0.828771;;, - 6;3;-0.672467,-1.528196,-0.828771;;, - 7;3;-0.672467,-1.528196,-0.828771;;, - 8;3;-0.672467,-1.528196,-0.828771;;, - 9;3;-0.672467,-1.528196,-0.828771;;, - 10;3;-0.672467,-1.528196,-0.828771;;, - 11;3;-0.672467,-1.528196,-0.828771;;, - 12;3;-0.672467,-1.528196,-0.828771;;, - 13;3;-0.672467,-1.528196,-0.828771;;, - 14;3;-0.672467,-1.528196,-0.828771;;, - 15;3;-0.672467,-1.528196,-0.828771;;, - 16;3;-0.672467,-1.528196,-0.828771;;, - 17;3;-0.672467,-1.528196,-0.828771;;, - 18;3;-0.672467,-1.528196,-0.828771;;, - 19;3;-0.672467,-1.528196,-0.828771;;, - 20;3;-0.672467,-1.528196,-0.828771;;, - 21;3;-0.672467,-1.528196,-0.828771;;, - 22;3;-0.672467,-1.528196,-0.828771;;, - 23;3;-0.672467,-1.528196,-0.828771;;, - 24;3;-0.672467,-1.528196,-0.828771;;, - 25;3;-0.672467,-1.528196,-0.828771;;, - 26;3;-0.672467,-1.528196,-0.828771;;, - 27;3;-0.672467,-1.528196,-0.828771;;, - 28;3;-0.672467,-1.528196,-0.828771;;, - 29;3;-0.672467,-1.528196,-0.828771;;, - 30;3;-0.672467,-1.528196,-0.828771;;, - 31;3;-0.672467,-1.528196,-0.828771;;, - 32;3;-0.672467,-1.528196,-0.828771;;, - 33;3;-0.672467,-1.528196,-0.828771;;, - 34;3;-0.672467,-1.528196,-0.828771;;, - 35;3;-0.672467,-1.528196,-0.828771;;, - 36;3;-0.672467,-1.528196,-0.828771;;, - 37;3;-0.672467,-1.528196,-0.828771;;, - 38;3;-0.672467,-1.528196,-0.828771;;, - 39;3;-0.672467,-1.528196,-0.828771;;, - 40;3;-0.672467,-1.528196,-0.828771;;, - 41;3;-0.672467,-1.528196,-0.828771;;, - 42;3;-0.672467,-1.528196,-0.828771;;, - 43;3;-0.672467,-1.528196,-0.828771;;, - 44;3;-0.672467,-1.528196,-0.828771;;, - 45;3;-0.672467,-1.528196,-0.828771;;, - 46;3;-0.672467,-1.528196,-0.828771;;, - 47;3;-0.672467,-1.528196,-0.828771;;, - 48;3;-0.672467,-1.528196,-0.828771;;, - 49;3;-0.672467,-1.528196,-0.828771;;, - 50;3;-0.672467,-1.528196,-0.828771;;, - 51;3;-0.672467,-1.528196,-0.828771;;, - 52;3;-0.672467,-1.528196,-0.828771;;, - 53;3;-0.672467,-1.528196,-0.828771;;, - 54;3;-0.672467,-1.528196,-0.828771;;, - 55;3;-0.672467,-1.528196,-0.828771;;, - 56;3;-0.672467,-1.528196,-0.828771;;, - 57;3;-0.672467,-1.528196,-0.828771;;, - 58;3;-0.672467,-1.528196,-0.828771;;, - 59;3;-0.672467,-1.528196,-0.828771;;, - 60;3;-0.672467,-1.528196,-0.828771;;, - 61;3;-0.672467,-1.528196,-0.828771;;, - 62;3;-0.672467,-1.528196,-0.828771;;, - 63;3;-0.672467,-1.528196,-0.828771;;, - 64;3;-0.672467,-1.528196,-0.828771;;, - 65;3;-0.672467,-1.528196,-0.828771;;, - 66;3;-0.672467,-1.528196,-0.828771;;, - 67;3;-0.672467,-1.528196,-0.828771;;, - 68;3;-0.672467,-1.528196,-0.828771;;, - 69;3;-0.672467,-1.528196,-0.828771;;, - 70;3;-0.672467,-1.528196,-0.828771;;, - 71;3;-0.672467,-1.528196,-0.828771;;, - 72;3;-0.672467,-1.528196,-0.828771;;, - 73;3;-0.672467,-1.528196,-0.828771;;, - 74;3;-0.672467,-1.528196,-0.828771;;, - 75;3;-0.672467,-1.528196,-0.828771;;, - 76;3;-0.672467,-1.528196,-0.828771;;, - 77;3;-0.672467,-1.528196,-0.828771;;, - 78;3;-0.672467,-1.528196,-0.828771;;, - 79;3;-0.672467,-1.528196,-0.828771;;, - 80;3;-0.672467,-1.528196,-0.828771;;, - 81;3;-0.672467,-1.528196,-0.828771;;, - 82;3;-0.672467,-1.528196,-0.828771;;, - 83;3;-0.672467,-1.528196,-0.828771;;, - 84;3;-0.672467,-1.528196,-0.828771;;, - 85;3;-0.672467,-1.528196,-0.828771;;, - 86;3;-0.672467,-1.528196,-0.828771;;, - 87;3;-0.672467,-1.528196,-0.828771;;, - 88;3;-0.672467,-1.528196,-0.828771;;, - 89;3;-0.672467,-1.528196,-0.828771;;, - 90;3;-0.672467,-1.528196,-0.828771;;, - 91;3;-0.672467,-1.528196,-0.828771;;, - 92;3;-0.672467,-1.528196,-0.828771;;, - 93;3;-0.672467,-1.528196,-0.828771;;, - 94;3;-0.672467,-1.528196,-0.828771;;, - 95;3;-0.672467,-1.528196,-0.828771;;, - 96;3;-0.672467,-1.528196,-0.828771;;, - 97;3;-0.672467,-1.528196,-0.828771;;, - 98;3;-0.672467,-1.528196,-0.828771;;, - 99;3;-0.672467,-1.528196,-0.828771;;, - 100;3;-0.672467,-1.528196,-0.828771;;, - 101;3;-0.672467,-1.528196,-0.828771;;, - 102;3;-0.672467,-1.528196,-0.828771;;, - 103;3;-0.672467,-1.528196,-0.828771;;, - 104;3;-0.672467,-1.528196,-0.828771;;, - 105;3;-0.672467,-1.528196,-0.828771;;, - 106;3;-0.672467,-1.528196,-0.828771;;, - 107;3;-0.672467,-1.528196,-0.828771;;, - 108;3;-0.672467,-1.528196,-0.828771;;, - 109;3;-0.672467,-1.528196,-0.828771;;, - 110;3;-0.672467,-1.528196,-0.828771;;, - 111;3;-0.672467,-1.528196,-0.828771;;, - 112;3;-0.672467,-1.528196,-0.828771;;, - 113;3;-0.672467,-1.528196,-0.828771;;, - 114;3;-0.672467,-1.528196,-0.828771;;, - 115;3;-0.672467,-1.528196,-0.828771;;, - 116;3;-0.672467,-1.528196,-0.828771;;, - 117;3;-0.672467,-1.528196,-0.828771;;, - 118;3;-0.672467,-1.528196,-0.828771;;, - 119;3;-0.672467,-1.528196,-0.828771;;, - 120;3;-0.672467,-1.528196,-0.828771;;, - 121;3;-0.672467,-1.528196,-0.828771;;, - 122;3;-0.672467,-1.528196,-0.828771;;, - 123;3;-0.672467,-1.528196,-0.828771;;, - 124;3;-0.672467,-1.528196,-0.828771;;, - 125;3;-0.672467,-1.528196,-0.828771;;, - 126;3;-0.672467,-1.528196,-0.828771;;, - 127;3;-0.672467,-1.528196,-0.828771;;, - 128;3;-0.672467,-1.528196,-0.828771;;, - 129;3;-0.672467,-1.528196,-0.828771;;, - 130;3;-0.672467,-1.528196,-0.828771;;, - 131;3;-0.672467,-1.528196,-0.828771;;, - 132;3;-0.672467,-1.528196,-0.828771;;, - 133;3;-0.672467,-1.528196,-0.828771;;, - 134;3;-0.672467,-1.528196,-0.828771;;, - 135;3;-0.672467,-1.528196,-0.828771;;, - 136;3;-0.672467,-1.528196,-0.828771;;, - 137;3;-0.672467,-1.528196,-0.828771;;, - 138;3;-0.672467,-1.528196,-0.828771;;, - 139;3;-0.672467,-1.528196,-0.828771;;, - 140;3;-0.672467,-1.528196,-0.828771;;, - 141;3;-0.672467,-1.528196,-0.828771;;, - 142;3;-0.672467,-1.528196,-0.828771;;, - 143;3;-0.672467,-1.528196,-0.828771;;, - 144;3;-0.672467,-1.528196,-0.828771;;, - 145;3;-0.672467,-1.528196,-0.828771;;, - 146;3;-0.672467,-1.528196,-0.828771;;, - 147;3;-0.672467,-1.528196,-0.828771;;, - 148;3;-0.672467,-1.528196,-0.828771;;, - 149;3;-0.672467,-1.528196,-0.828771;;, - 150;3;-0.672467,-1.528196,-0.828771;;, - 151;3;-0.672467,-1.528196,-0.828771;;, - 152;3;-0.672467,-1.528196,-0.828771;;, - 153;3;-0.672467,-1.528196,-0.828771;;, - 154;3;-0.672467,-1.528196,-0.828771;;, - 155;3;-0.672467,-1.528196,-0.828771;;, - 156;3;-0.672467,-1.528196,-0.828771;;, - 157;3;-0.672467,-1.528196,-0.828771;;, - 158;3;-0.672467,-1.528196,-0.828771;;, - 159;3;-0.672467,-1.528196,-0.828771;;, - 160;3;-0.672467,-1.528196,-0.828771;;, - 161;3;-0.672467,-1.528196,-0.828771;;, - 162;3;-0.672467,-1.528196,-0.828771;;, - 163;3;-0.672467,-1.528196,-0.828771;;, - 164;3;-0.672467,-1.528196,-0.828771;;, - 165;3;-0.672467,-1.528196,-0.828771;;, - 166;3;-0.672467,-1.528196,-0.828771;;, - 167;3;-0.672467,-1.528196,-0.828771;;, - 168;3;-0.672467,-1.528196,-0.828771;;, - 169;3;-0.672467,-1.528196,-0.828771;;, - 170;3;-0.672467,-1.528196,-0.828771;;, - 171;3;-0.672467,-1.528196,-0.828771;;, - 172;3;-0.672467,-1.528196,-0.828771;;, - 173;3;-0.672467,-1.528196,-0.828771;;, - 174;3;-0.672467,-1.528196,-0.828771;;, - 175;3;-0.672467,-1.528196,-0.828771;;, - 176;3;-0.672467,-1.528196,-0.828771;;, - 177;3;-0.672467,-1.528196,-0.828771;;, - 178;3;-0.672467,-1.528196,-0.828771;;, - 179;3;-0.672467,-1.528196,-0.828771;;, - 180;3;-0.672467,-1.528196,-0.828771;;, - 181;3;-0.672467,-1.528196,-0.828771;;, - 182;3;-0.672467,-1.528196,-0.828771;;, - 183;3;-0.672467,-1.528196,-0.828771;;, - 184;3;-0.672467,-1.528196,-0.828771;;, - 185;3;-0.672467,-1.528196,-0.828771;;, - 186;3;-0.672467,-1.528196,-0.828771;;, - 187;3;-0.672467,-1.528196,-0.828771;;, - 188;3;-0.672467,-1.528196,-0.828771;;, - 189;3;-0.672467,-1.528196,-0.828771;;, - 190;3;-0.672467,-1.528196,-0.828771;;, - 191;3;-0.672467,-1.528196,-0.828771;;, - 192;3;-0.672467,-1.528196,-0.828771;;, - 193;3;-0.672467,-1.528196,-0.828771;;, - 194;3;-0.672467,-1.528196,-0.828771;;, - 195;3;-0.672467,-1.528196,-0.828771;;, - 196;3;-0.672467,-1.528196,-0.828771;;, - 197;3;-0.672467,-1.528196,-0.828771;;, - 198;3;-0.672467,-1.528196,-0.828771;;, - 199;3;-0.672467,-1.528196,-0.828771;;, - 200;3;-0.672467,-1.528196,-0.828771;;, - 201;3;-0.672467,-1.528196,-0.828771;;, - 202;3;-0.672467,-1.528196,-0.828771;;, - 203;3;-0.672467,-1.528196,-0.828771;;, - 204;3;-0.672467,-1.528196,-0.828771;;, - 205;3;-0.672467,-1.528196,-0.828771;;, - 206;3;-0.672467,-1.528196,-0.828771;;, - 207;3;-0.672467,-1.528196,-0.828771;;, - 208;3;-0.672467,-1.528196,-0.828771;;, - 209;3;-0.672467,-1.528196,-0.828771;;, - 210;3;-0.672467,-1.528196,-0.828771;;, - 211;3;-0.672467,-1.528196,-0.828771;;, - 212;3;-0.672467,-1.528196,-0.828771;;, - 213;3;-0.672467,-1.528196,-0.828771;;, - 214;3;-0.672467,-1.528196,-0.828771;;, - 215;3;-0.672467,-1.528196,-0.828771;;, - 216;3;-0.672467,-1.528196,-0.828771;;, - 217;3;-0.672467,-1.528196,-0.828771;;, - 218;3;-0.672467,-1.528196,-0.828771;;, - 219;3;-0.672467,-1.528196,-0.828771;;, - 220;3;-0.672467,-1.528196,-0.828771;;, - 221;3;-0.672467,-1.528196,-0.828771;;, - 222;3;-0.672467,-1.528196,-0.828771;;, - 223;3;-0.672467,-1.528196,-0.828771;;, - 224;3;-0.672467,-1.528196,-0.828771;;, - 225;3;-0.672467,-1.528196,-0.828771;;, - 226;3;-0.672467,-1.528196,-0.828771;;, - 227;3;-0.672467,-1.528196,-0.828771;;, - 228;3;-0.672467,-1.528196,-0.828771;;, - 229;3;-0.672467,-1.528196,-0.828771;;, - 230;3;-0.672467,-1.528196,-0.828771;;, - 231;3;-0.672467,-1.528196,-0.828771;;, - 232;3;-0.672467,-1.528196,-0.828771;;, - 233;3;-0.672467,-1.528196,-0.828771;;, - 234;3;-0.672467,-1.528196,-0.828771;;, - 235;3;-0.672467,-1.528196,-0.828771;;, - 236;3;-0.672467,-1.528196,-0.828771;;, - 237;3;-0.672467,-1.528196,-0.828771;;, - 238;3;-0.672467,-1.528196,-0.828771;;, - 239;3;-0.672467,-1.528196,-0.828771;;, - 240;3;-0.672467,-1.528196,-0.828771;;, - 241;3;-0.672467,-1.528196,-0.828771;;, - 242;3;-0.672467,-1.528196,-0.828771;;, - 243;3;-0.672467,-1.528196,-0.828771;;, - 244;3;-0.672467,-1.528196,-0.828771;;, - 245;3;-0.672467,-1.528196,-0.828771;;, - 246;3;-0.672467,-1.528196,-0.828771;;, - 247;3;-0.672467,-1.528196,-0.828771;;, - 248;3;-0.672467,-1.528196,-0.828771;;, - 249;3;-0.672467,-1.528196,-0.828771;;; - } - } - Animation { - {Armature_Bone} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 1;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 2;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 3;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 4;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 5;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 6;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 7;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 8;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 9;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 10;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 11;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 12;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 13;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 14;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 15;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 16;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 17;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 18;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 19;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 20;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 21;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 22;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 23;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 24;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 25;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 26;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 27;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 28;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 29;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 30;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 31;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 32;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 33;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 34;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 35;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 36;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 37;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 38;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 39;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 40;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 41;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 42;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 43;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 44;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 45;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 46;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 47;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 48;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 49;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 50;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 51;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 52;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 53;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 54;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 55;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 56;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 57;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 58;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 59;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 60;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 61;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 62;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 63;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 64;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 65;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 66;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 67;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 68;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 69;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 70;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 71;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 72;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 73;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 74;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 75;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 76;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 77;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 78;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 79;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 80;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 81;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 82;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 83;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 84;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 85;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 86;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 87;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 88;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 89;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 90;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 91;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 92;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 93;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 94;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 95;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 96;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 97;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 98;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 99;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 100;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 101;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 102;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 103;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 104;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 105;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 106;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 107;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 108;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 109;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 110;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 111;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 112;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 113;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 114;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 115;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 116;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 117;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 118;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 119;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 120;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 121;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 122;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 123;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 124;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 125;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 126;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 127;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 128;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 129;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 130;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 131;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 132;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 133;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 134;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 135;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 136;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 137;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 138;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 139;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 140;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 141;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 142;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 143;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 144;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 145;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 146;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 147;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 148;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 149;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 150;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 151;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 152;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 153;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 154;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 155;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 156;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 157;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 158;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 159;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 160;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 161;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 162;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 163;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 164;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 165;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 166;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 167;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 168;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 169;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 170;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 171;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 172;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 173;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 174;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 175;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 176;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 177;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 178;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 179;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 180;4;-0.498303, 0.498304, 0.499305,-0.499305;;, - 181;4;-0.510060, 0.510060, 0.480538,-0.480538;;, - 182;4;-0.529175, 0.529175, 0.450023,-0.450023;;, - 183;4;-0.554177, 0.554177, 0.410112,-0.410111;;, - 184;4;-0.582500, 0.582501, 0.364898,-0.364898;;, - 185;4;-0.610824, 0.610824, 0.319685,-0.319685;;, - 186;4;-0.635826, 0.635826, 0.279773,-0.279773;;, - 187;4;-0.654941, 0.654941, 0.249259,-0.249258;;, - 188;4;-0.666697, 0.666698, 0.230492,-0.230491;;, - 189;4;-0.670604, 0.670604, 0.224256,-0.224255;;, - 190;4;-0.670604, 0.670604, 0.224256,-0.224255;;, - 191;4;-0.670604, 0.670604, 0.224256,-0.224255;;, - 192;4;-0.670604, 0.670604, 0.224256,-0.224255;;, - 193;4;-0.670604, 0.670604, 0.224256,-0.224255;;, - 194;4;-0.670604, 0.670604, 0.224256,-0.224255;;, - 195;4;-0.654941, 0.654941, 0.249259,-0.249258;;, - 196;4;-0.610824, 0.610824, 0.319685,-0.319685;;, - 197;4;-0.554177, 0.554177, 0.410112,-0.410111;;, - 198;4;-0.510060, 0.510060, 0.480538,-0.480538;;, - 199;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 200;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 201;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 202;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 203;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 204;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 205;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 206;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 207;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 208;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 209;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 210;4;-0.498922, 0.498923, 0.500618,-0.500617;;, - 211;4;-0.511670, 0.511670, 0.486750,-0.486749;;, - 212;4;-0.528037, 0.528037, 0.468943,-0.468943;;, - 213;4;-0.540784, 0.540785, 0.455076,-0.455075;;, - 214;4;-0.545310, 0.545310, 0.450152,-0.450152;;, - 215;4;-0.543869, 0.543869, 0.451720,-0.451720;;, - 216;4;-0.539451, 0.539451, 0.456527,-0.456526;;, - 217;4;-0.532813, 0.532814, 0.463748,-0.463747;;, - 218;4;-0.525767, 0.525767, 0.471414,-0.471413;;, - 219;4;-0.519853, 0.519854, 0.477847,-0.477846;;, - 220;4;-0.513940, 0.513941, 0.484280,-0.484279;;, - 221;4;-0.506894, 0.506894, 0.491946,-0.491945;;, - 222;4;-0.500256, 0.500256, 0.499167,-0.499166;;, - 223;4;-0.495838, 0.495838, 0.503973,-0.503973;;, - 224;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 225;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 226;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 227;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 228;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 229;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 230;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 231;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 232;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 233;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 234;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 235;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 236;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 237;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 238;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 239;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 240;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 241;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 242;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 243;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 244;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 245;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 246;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 247;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 248;4;-0.494397, 0.494397, 0.505541,-0.505541;;, - 249;4;-0.494397, 0.494397, 0.505541,-0.505541;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3; 0.506179, 1.550838, 1.183012;;, - 1;3; 0.506179, 1.550838, 1.183012;;, - 2;3; 0.506179, 1.550838, 1.183012;;, - 3;3; 0.506179, 1.550838, 1.183012;;, - 4;3; 0.506179, 1.550838, 1.183012;;, - 5;3; 0.506179, 1.550838, 1.183012;;, - 6;3; 0.506179, 1.550838, 1.183012;;, - 7;3; 0.506179, 1.550838, 1.183012;;, - 8;3; 0.506179, 1.550838, 1.183012;;, - 9;3; 0.506179, 1.550838, 1.183012;;, - 10;3; 0.506179, 1.550838, 1.183012;;, - 11;3; 0.506179, 1.550838, 1.183012;;, - 12;3; 0.506179, 1.550838, 1.183012;;, - 13;3; 0.506179, 1.550838, 1.183012;;, - 14;3; 0.506179, 1.550838, 1.183012;;, - 15;3; 0.506179, 1.550838, 1.183012;;, - 16;3; 0.506179, 1.550838, 1.183012;;, - 17;3; 0.506179, 1.550838, 1.183012;;, - 18;3; 0.506179, 1.550838, 1.183012;;, - 19;3; 0.506179, 1.550838, 1.183012;;, - 20;3; 0.506179, 1.550838, 1.183012;;, - 21;3; 0.506179, 1.550838, 1.183012;;, - 22;3; 0.506179, 1.550838, 1.183012;;, - 23;3; 0.506179, 1.550838, 1.183012;;, - 24;3; 0.506179, 1.550838, 1.183012;;, - 25;3; 0.506179, 1.550838, 1.183012;;, - 26;3; 0.506179, 1.550838, 1.183012;;, - 27;3; 0.506179, 1.550838, 1.183012;;, - 28;3; 0.506179, 1.550838, 1.183012;;, - 29;3; 0.506179, 1.550838, 1.183012;;, - 30;3; 0.506179, 1.550838, 1.183012;;, - 31;3; 0.506179, 1.550838, 1.183012;;, - 32;3; 0.506179, 1.550838, 1.183012;;, - 33;3; 0.506179, 1.550838, 1.183012;;, - 34;3; 0.506179, 1.550838, 1.183012;;, - 35;3; 0.506179, 1.550838, 1.183012;;, - 36;3; 0.506179, 1.550838, 1.183012;;, - 37;3; 0.506179, 1.550838, 1.183012;;, - 38;3; 0.506179, 1.550838, 1.183012;;, - 39;3; 0.506179, 1.550838, 1.183012;;, - 40;3; 0.506179, 1.550838, 1.183012;;, - 41;3; 0.506179, 1.550838, 1.183012;;, - 42;3; 0.506179, 1.550838, 1.183012;;, - 43;3; 0.506179, 1.550838, 1.183012;;, - 44;3; 0.506179, 1.550838, 1.183012;;, - 45;3; 0.506179, 1.550838, 1.183012;;, - 46;3; 0.506179, 1.550838, 1.183012;;, - 47;3; 0.506179, 1.550838, 1.183012;;, - 48;3; 0.506179, 1.550838, 1.183012;;, - 49;3; 0.506179, 1.550838, 1.183012;;, - 50;3; 0.506179, 1.550838, 1.183012;;, - 51;3; 0.506179, 1.550838, 1.183012;;, - 52;3; 0.506179, 1.550838, 1.183012;;, - 53;3; 0.506179, 1.550838, 1.183012;;, - 54;3; 0.506179, 1.550838, 1.183012;;, - 55;3; 0.506179, 1.550838, 1.183012;;, - 56;3; 0.506179, 1.550838, 1.183012;;, - 57;3; 0.506179, 1.550838, 1.183012;;, - 58;3; 0.506179, 1.550838, 1.183012;;, - 59;3; 0.506179, 1.550838, 1.183012;;, - 60;3; 0.506179, 1.550838, 1.183012;;, - 61;3; 0.506179, 1.550838, 1.183012;;, - 62;3; 0.506179, 1.550838, 1.183012;;, - 63;3; 0.506179, 1.550838, 1.183012;;, - 64;3; 0.506179, 1.550838, 1.183012;;, - 65;3; 0.506179, 1.550838, 1.183012;;, - 66;3; 0.506179, 1.550838, 1.183012;;, - 67;3; 0.506179, 1.550838, 1.183012;;, - 68;3; 0.506179, 1.550838, 1.183012;;, - 69;3; 0.506179, 1.550838, 1.183012;;, - 70;3; 0.506179, 1.550838, 1.183012;;, - 71;3; 0.506179, 1.550838, 1.183012;;, - 72;3; 0.506179, 1.550838, 1.183012;;, - 73;3; 0.506179, 1.550838, 1.183012;;, - 74;3; 0.506179, 1.550838, 1.183012;;, - 75;3; 0.506179, 1.550838, 1.183012;;, - 76;3; 0.506179, 1.550838, 1.183012;;, - 77;3; 0.506179, 1.550838, 1.183012;;, - 78;3; 0.506179, 1.550838, 1.183012;;, - 79;3; 0.506179, 1.550838, 1.183012;;, - 80;3; 0.506179, 1.550838, 1.183012;;, - 81;3; 0.506179, 1.550838, 1.183012;;, - 82;3; 0.506179, 1.550838, 1.183012;;, - 83;3; 0.506179, 1.550838, 1.183012;;, - 84;3; 0.506179, 1.550838, 1.183012;;, - 85;3; 0.506179, 1.550838, 1.183012;;, - 86;3; 0.506179, 1.550838, 1.183012;;, - 87;3; 0.506179, 1.550838, 1.183012;;, - 88;3; 0.506179, 1.550838, 1.183012;;, - 89;3; 0.506179, 1.550838, 1.183012;;, - 90;3; 0.506179, 1.550838, 1.183012;;, - 91;3; 0.506179, 1.550838, 1.183012;;, - 92;3; 0.506179, 1.550838, 1.183012;;, - 93;3; 0.506179, 1.550838, 1.183012;;, - 94;3; 0.506179, 1.550838, 1.183012;;, - 95;3; 0.506179, 1.550838, 1.183012;;, - 96;3; 0.506179, 1.550838, 1.183012;;, - 97;3; 0.506179, 1.550838, 1.183012;;, - 98;3; 0.506179, 1.550838, 1.183012;;, - 99;3; 0.506179, 1.550838, 1.183012;;, - 100;3; 0.506179, 1.550838, 1.183012;;, - 101;3; 0.506179, 1.550838, 1.183012;;, - 102;3; 0.506179, 1.550838, 1.183012;;, - 103;3; 0.506179, 1.550838, 1.183012;;, - 104;3; 0.506179, 1.550838, 1.183012;;, - 105;3; 0.506179, 1.550838, 1.183012;;, - 106;3; 0.506179, 1.550838, 1.183012;;, - 107;3; 0.506179, 1.550838, 1.183012;;, - 108;3; 0.506179, 1.550838, 1.183012;;, - 109;3; 0.506179, 1.550838, 1.183012;;, - 110;3; 0.506179, 1.550838, 1.183012;;, - 111;3; 0.506179, 1.550838, 1.183012;;, - 112;3; 0.506179, 1.550838, 1.183012;;, - 113;3; 0.506179, 1.550838, 1.183012;;, - 114;3; 0.506179, 1.550838, 1.183012;;, - 115;3; 0.506179, 1.550838, 1.183012;;, - 116;3; 0.506179, 1.550838, 1.183012;;, - 117;3; 0.506179, 1.550838, 1.183012;;, - 118;3; 0.506179, 1.550838, 1.183012;;, - 119;3; 0.506179, 1.550838, 1.183012;;, - 120;3; 0.506179, 1.550838, 1.183012;;, - 121;3; 0.506179, 1.550838, 1.183012;;, - 122;3; 0.506179, 1.550838, 1.183012;;, - 123;3; 0.506179, 1.550838, 1.183012;;, - 124;3; 0.506179, 1.550838, 1.183012;;, - 125;3; 0.506179, 1.550838, 1.183012;;, - 126;3; 0.506179, 1.550838, 1.183012;;, - 127;3; 0.506179, 1.550838, 1.183012;;, - 128;3; 0.506179, 1.550838, 1.183012;;, - 129;3; 0.506179, 1.550838, 1.183012;;, - 130;3; 0.506179, 1.550838, 1.183012;;, - 131;3; 0.506179, 1.550838, 1.183012;;, - 132;3; 0.506179, 1.550838, 1.183012;;, - 133;3; 0.506179, 1.550838, 1.183012;;, - 134;3; 0.506179, 1.550838, 1.183012;;, - 135;3; 0.506179, 1.550838, 1.183012;;, - 136;3; 0.506179, 1.550838, 1.183012;;, - 137;3; 0.506179, 1.550838, 1.183012;;, - 138;3; 0.506179, 1.550838, 1.183012;;, - 139;3; 0.506179, 1.550838, 1.183012;;, - 140;3; 0.506179, 1.550838, 1.183012;;, - 141;3; 0.506179, 1.550838, 1.183012;;, - 142;3; 0.506179, 1.550838, 1.183012;;, - 143;3; 0.506179, 1.550838, 1.183012;;, - 144;3; 0.506179, 1.550838, 1.183012;;, - 145;3; 0.506179, 1.550838, 1.183012;;, - 146;3; 0.506179, 1.550838, 1.183012;;, - 147;3; 0.506179, 1.550838, 1.183012;;, - 148;3; 0.506179, 1.550838, 1.183012;;, - 149;3; 0.506179, 1.550838, 1.183012;;, - 150;3; 0.506179, 1.550838, 1.183012;;, - 151;3; 0.506179, 1.550838, 1.183012;;, - 152;3; 0.506179, 1.550838, 1.183012;;, - 153;3; 0.506179, 1.550838, 1.183012;;, - 154;3; 0.506179, 1.550838, 1.183012;;, - 155;3; 0.506179, 1.550838, 1.183012;;, - 156;3; 0.506179, 1.550838, 1.183012;;, - 157;3; 0.506179, 1.550838, 1.183012;;, - 158;3; 0.506179, 1.550838, 1.183012;;, - 159;3; 0.506179, 1.550838, 1.183012;;, - 160;3; 0.506179, 1.550838, 1.183012;;, - 161;3; 0.506179, 1.550838, 1.183012;;, - 162;3; 0.506179, 1.550838, 1.183012;;, - 163;3; 0.506179, 1.550838, 1.183012;;, - 164;3; 0.506179, 1.550838, 1.183012;;, - 165;3; 0.506179, 1.550838, 1.183012;;, - 166;3; 0.506179, 1.550838, 1.183012;;, - 167;3; 0.506179, 1.550838, 1.183012;;, - 168;3; 0.506179, 1.550838, 1.183012;;, - 169;3; 0.506179, 1.550838, 1.183012;;, - 170;3; 0.506179, 1.550838, 1.183012;;, - 171;3; 0.506179, 1.550838, 1.183012;;, - 172;3; 0.506179, 1.550838, 1.183012;;, - 173;3; 0.506179, 1.550838, 1.183012;;, - 174;3; 0.506179, 1.550838, 1.183012;;, - 175;3; 0.506179, 1.550838, 1.183012;;, - 176;3; 0.506179, 1.550838, 1.183012;;, - 177;3; 0.506179, 1.550838, 1.183012;;, - 178;3; 0.506179, 1.550838, 1.183012;;, - 179;3; 0.506179, 1.550838, 1.183012;;, - 180;3; 0.534224, 1.550838, 1.200614;;, - 181;3; 0.618629, 1.550838, 1.253590;;, - 182;3; 0.755866, 1.550838, 1.339727;;, - 183;3; 0.935366, 1.550838, 1.452389;;, - 184;3; 1.138711, 1.550838, 1.580017;;, - 185;3; 1.342055, 1.550838, 1.707644;;, - 186;3; 1.521555, 1.550838, 1.820307;;, - 187;3; 1.658792, 1.550838, 1.906443;;, - 188;3; 1.743197, 1.550838, 1.959419;;, - 189;3; 1.771243, 1.550838, 1.977021;;, - 190;3; 1.771243, 1.550838, 1.977021;;, - 191;3; 1.771243, 1.550838, 1.977021;;, - 192;3; 1.771243, 1.550838, 1.977021;;, - 193;3; 1.771243, 1.550838, 1.977021;;, - 194;3; 1.771243, 1.550838, 1.977021;;, - 195;3; 1.658792, 1.550838, 1.906443;;, - 196;3; 1.342055, 1.550838, 1.707644;;, - 197;3; 0.935367, 1.550838, 1.452389;;, - 198;3; 0.618629, 1.550838, 1.253590;;, - 199;3; 0.506179, 1.550838, 1.183012;;, - 200;3; 0.506179, 1.550838, 1.183012;;, - 201;3; 0.506179, 1.550838, 1.183012;;, - 202;3; 0.506179, 1.550838, 1.183012;;, - 203;3; 0.506179, 1.550838, 1.183012;;, - 204;3; 0.506179, 1.550838, 1.183012;;, - 205;3; 0.506179, 1.550838, 1.183012;;, - 206;3; 0.506179, 1.550838, 1.183012;;, - 207;3; 0.506179, 1.550838, 1.183012;;, - 208;3; 0.506179, 1.550838, 1.183012;;, - 209;3; 0.506179, 1.550838, 1.183012;;, - 210;3; 0.363665, 1.550838, 1.220984;;, - 211;3;-0.037440, 1.550838, 1.342045;;, - 212;3;-0.551611, 1.550838, 1.535358;;, - 213;3;-0.950415, 1.550838, 1.759623;;, - 214;3;-1.089015, 1.550838, 1.973187;;, - 215;3;-0.988112, 1.550838, 2.225044;;, - 216;3;-0.688117, 1.550838, 2.556626;;, - 217;3;-0.240085, 1.550838, 2.886285;;, - 218;3; 0.234610, 1.550838, 3.110718;;, - 219;3; 0.632749, 1.550838, 3.180268;;, - 220;3; 1.031500, 1.550838, 3.115619;;, - 221;3; 1.507408, 1.550838, 2.939241;;, - 222;3; 1.955633, 1.550838, 2.693020;;, - 223;3; 2.253121, 1.550838, 2.456898;;, - 224;3; 2.348306, 1.550838, 2.290598;;, - 225;3; 2.327718, 1.550838, 2.167573;;, - 226;3; 2.271061, 1.550838, 2.045905;;, - 227;3; 2.178646, 1.550838, 1.926793;;, - 228;3; 2.052372, 1.550838, 1.811709;;, - 229;3; 1.896185, 1.550838, 1.702353;;, - 230;3; 1.716337, 1.550838, 1.600557;;, - 231;3; 1.521299, 1.550838, 1.508105;;, - 232;3; 1.321170, 1.550838, 1.426527;;, - 233;3; 1.126641, 1.550838, 1.356892;;, - 234;3; 0.947788, 1.550838, 1.299692;;, - 235;3; 0.793037, 1.550838, 1.254831;;, - 236;3; 0.668592, 1.550838, 1.221727;;, - 237;3; 0.578335, 1.550838, 1.199460;;, - 238;3; 0.524111, 1.550838, 1.186937;;, - 239;3; 0.506179, 1.550838, 1.183012;;, - 240;3; 0.506179, 1.550838, 1.183012;;, - 241;3; 0.506179, 1.550838, 1.183012;;, - 242;3; 0.506179, 1.550838, 1.183012;;, - 243;3; 0.506179, 1.550838, 1.183012;;, - 244;3; 0.506179, 1.550838, 1.183012;;, - 245;3; 0.506179, 1.550838, 1.183012;;, - 246;3; 0.506179, 1.550838, 1.183012;;, - 247;3; 0.506179, 1.550838, 1.183012;;, - 248;3; 0.506179, 1.550838, 1.183012;;, - 249;3; 0.506179, 1.550838, 1.183012;;; - } - } - Animation { - {Armature_Bone_002} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 1;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 2;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 3;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 4;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 5;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 6;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 7;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 8;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 9;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 10;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 11;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 12;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 13;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 14;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 15;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 16;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 17;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 18;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 19;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 20;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 21;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 22;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 23;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 24;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 25;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 26;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 27;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 28;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 29;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 30;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 31;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 32;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 33;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 34;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 35;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 36;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 37;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 38;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 39;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 40;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 41;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 42;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 43;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 44;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 45;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 46;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 47;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 48;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 49;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 50;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 51;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 52;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 53;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 54;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 55;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 56;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 57;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 58;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 59;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 60;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 61;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 62;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 63;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 64;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 65;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 66;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 67;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 68;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 69;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 70;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 71;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 72;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 73;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 74;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 75;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 76;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 77;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 78;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 79;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 80;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 81;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 82;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 83;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 84;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 85;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 86;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 87;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 88;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 89;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 90;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 91;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 92;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 93;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 94;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 95;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 96;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 97;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 98;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 99;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 100;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 101;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 102;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 103;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 104;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 105;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 106;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 107;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 108;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 109;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 110;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 111;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 112;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 113;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 114;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 115;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 116;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 117;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 118;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 119;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 120;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 121;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 122;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 123;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 124;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 125;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 126;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 127;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 128;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 129;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 130;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 131;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 132;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 133;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 134;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 135;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 136;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 137;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 138;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 139;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 140;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 141;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 142;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 143;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 144;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 145;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 146;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 147;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 148;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 149;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 150;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 151;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 152;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 153;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 154;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 155;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 156;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 157;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 158;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 159;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 160;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 161;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 162;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 163;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 164;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 165;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 166;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 167;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 168;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 169;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 170;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 171;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 172;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 173;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 174;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 175;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 176;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 177;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 178;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 179;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 180;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 181;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 182;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 183;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 184;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 185;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 186;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 187;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 188;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 189;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 190;4;-0.702411,-0.016559,-0.702412,-0.016559;;, - 191;4;-0.689311,-0.085395,-0.689311,-0.085395;;, - 192;4;-0.672490,-0.173780,-0.672490,-0.173780;;, - 193;4;-0.659389,-0.242616,-0.659389,-0.242616;;, - 194;4;-0.654738,-0.267054,-0.654738,-0.267055;;, - 195;4;-0.659389,-0.242616,-0.659389,-0.242616;;, - 196;4;-0.672490,-0.173780,-0.672490,-0.173780;;, - 197;4;-0.689311,-0.085395,-0.689311,-0.085395;;, - 198;4;-0.702411,-0.016559,-0.702412,-0.016559;;, - 199;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 200;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 201;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 202;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 203;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 204;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 205;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 206;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 207;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 208;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 209;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 210;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 211;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 212;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 213;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 214;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 215;4;-0.706826, 0.010736,-0.706826, 0.010736;;, - 216;4;-0.706099, 0.019492,-0.706099, 0.019492;;, - 217;4;-0.705007, 0.032647,-0.705008, 0.032647;;, - 218;4;-0.703848, 0.046613,-0.703849, 0.046613;;, - 219;4;-0.702876, 0.058332,-0.702876, 0.058332;;, - 220;4;-0.701903, 0.070051,-0.701904, 0.070051;;, - 221;4;-0.700744, 0.084017,-0.700745, 0.084017;;, - 222;4;-0.699652, 0.097171,-0.699653, 0.097171;;, - 223;4;-0.698926, 0.105928,-0.698926, 0.105928;;, - 224;4;-0.698689, 0.108784,-0.698689, 0.108784;;, - 225;4;-0.698771, 0.107793,-0.698771, 0.107793;;, - 226;4;-0.699019, 0.104798,-0.699020, 0.104798;;, - 227;4;-0.699433, 0.099815,-0.699434, 0.099815;;, - 228;4;-0.700003, 0.092946,-0.700004, 0.092946;;, - 229;4;-0.700711, 0.084410,-0.700712, 0.084410;;, - 230;4;-0.701530, 0.074551,-0.701530, 0.074551;;, - 231;4;-0.702419, 0.063837,-0.702419, 0.063837;;, - 232;4;-0.703332, 0.052827,-0.703333, 0.052827;;, - 233;4;-0.704222, 0.042113,-0.704222, 0.042113;;, - 234;4;-0.705040, 0.032254,-0.705040, 0.032254;;, - 235;4;-0.705748, 0.023717,-0.705749, 0.023717;;, - 236;4;-0.706318, 0.016849,-0.706319, 0.016849;;, - 237;4;-0.706732, 0.011866,-0.706732, 0.011866;;, - 238;4;-0.706980, 0.008871,-0.706981, 0.008871;;, - 239;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 240;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 241;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 242;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 243;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 244;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 245;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 246;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 247;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 248;4;-0.707063, 0.007880,-0.707063, 0.007880;;, - 249;4;-0.707063, 0.007880,-0.707063, 0.007880;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3; 0.000000, 0.344354,-0.000000;;, - 1;3; 0.000000, 0.344354,-0.000000;;, - 2;3; 0.000000, 0.344354,-0.000000;;, - 3;3; 0.000000, 0.344354,-0.000000;;, - 4;3; 0.000000, 0.344354,-0.000000;;, - 5;3; 0.000000, 0.344354,-0.000000;;, - 6;3; 0.000000, 0.344354,-0.000000;;, - 7;3; 0.000000, 0.344354,-0.000000;;, - 8;3; 0.000000, 0.344354,-0.000000;;, - 9;3; 0.000000, 0.344354,-0.000000;;, - 10;3; 0.000000, 0.344354,-0.000000;;, - 11;3; 0.000000, 0.344354,-0.000000;;, - 12;3; 0.000000, 0.344354,-0.000000;;, - 13;3; 0.000000, 0.344354,-0.000000;;, - 14;3; 0.000000, 0.344354,-0.000000;;, - 15;3; 0.000000, 0.344354,-0.000000;;, - 16;3; 0.000000, 0.344354,-0.000000;;, - 17;3; 0.000000, 0.344354,-0.000000;;, - 18;3; 0.000000, 0.344354,-0.000000;;, - 19;3; 0.000000, 0.344354,-0.000000;;, - 20;3; 0.000000, 0.344354,-0.000000;;, - 21;3; 0.000000, 0.344354,-0.000000;;, - 22;3; 0.000000, 0.344354,-0.000000;;, - 23;3; 0.000000, 0.344354,-0.000000;;, - 24;3; 0.000000, 0.344354,-0.000000;;, - 25;3; 0.000000, 0.344354,-0.000000;;, - 26;3; 0.000000, 0.344354,-0.000000;;, - 27;3; 0.000000, 0.344354,-0.000000;;, - 28;3; 0.000000, 0.344354,-0.000000;;, - 29;3; 0.000000, 0.344354,-0.000000;;, - 30;3; 0.000000, 0.344354,-0.000000;;, - 31;3; 0.000000, 0.344354,-0.000000;;, - 32;3; 0.000000, 0.344354,-0.000000;;, - 33;3; 0.000000, 0.344354,-0.000000;;, - 34;3; 0.000000, 0.344354,-0.000000;;, - 35;3; 0.000000, 0.344354,-0.000000;;, - 36;3; 0.000000, 0.344354,-0.000000;;, - 37;3; 0.000000, 0.344354,-0.000000;;, - 38;3; 0.000000, 0.344354,-0.000000;;, - 39;3; 0.000000, 0.344354,-0.000000;;, - 40;3; 0.000000, 0.344354,-0.000000;;, - 41;3; 0.000000, 0.344354,-0.000000;;, - 42;3; 0.000000, 0.344354,-0.000000;;, - 43;3; 0.000000, 0.344354,-0.000000;;, - 44;3; 0.000000, 0.344354,-0.000000;;, - 45;3; 0.000000, 0.344354,-0.000000;;, - 46;3; 0.000000, 0.344354,-0.000000;;, - 47;3; 0.000000, 0.344354,-0.000000;;, - 48;3; 0.000000, 0.344354,-0.000000;;, - 49;3; 0.000000, 0.344354,-0.000000;;, - 50;3; 0.000000, 0.344354,-0.000000;;, - 51;3; 0.000000, 0.344354,-0.000000;;, - 52;3; 0.000000, 0.344354,-0.000000;;, - 53;3; 0.000000, 0.344354,-0.000000;;, - 54;3; 0.000000, 0.344354,-0.000000;;, - 55;3; 0.000000, 0.344354,-0.000000;;, - 56;3; 0.000000, 0.344354,-0.000000;;, - 57;3; 0.000000, 0.344354,-0.000000;;, - 58;3; 0.000000, 0.344354,-0.000000;;, - 59;3; 0.000000, 0.344354,-0.000000;;, - 60;3; 0.000000, 0.344354,-0.000000;;, - 61;3; 0.000000, 0.344354,-0.000000;;, - 62;3; 0.000000, 0.344354,-0.000000;;, - 63;3; 0.000000, 0.344354,-0.000000;;, - 64;3; 0.000000, 0.344354,-0.000000;;, - 65;3; 0.000000, 0.344354,-0.000000;;, - 66;3; 0.000000, 0.344354,-0.000000;;, - 67;3; 0.000000, 0.344354,-0.000000;;, - 68;3; 0.000000, 0.344354,-0.000000;;, - 69;3; 0.000000, 0.344354,-0.000000;;, - 70;3; 0.000000, 0.344354,-0.000000;;, - 71;3; 0.000000, 0.344354,-0.000000;;, - 72;3; 0.000000, 0.344354,-0.000000;;, - 73;3; 0.000000, 0.344354,-0.000000;;, - 74;3; 0.000000, 0.344354,-0.000000;;, - 75;3; 0.000000, 0.344354,-0.000000;;, - 76;3; 0.000000, 0.344354,-0.000000;;, - 77;3; 0.000000, 0.344354,-0.000000;;, - 78;3; 0.000000, 0.344354,-0.000000;;, - 79;3; 0.000000, 0.344354,-0.000000;;, - 80;3; 0.000000, 0.344354,-0.000000;;, - 81;3; 0.000000, 0.344354,-0.000000;;, - 82;3; 0.000000, 0.344354,-0.000000;;, - 83;3; 0.000000, 0.344354,-0.000000;;, - 84;3; 0.000000, 0.344354,-0.000000;;, - 85;3; 0.000000, 0.344354,-0.000000;;, - 86;3; 0.000000, 0.344354,-0.000000;;, - 87;3; 0.000000, 0.344354,-0.000000;;, - 88;3; 0.000000, 0.344354,-0.000000;;, - 89;3; 0.000000, 0.344354,-0.000000;;, - 90;3; 0.000000, 0.344354,-0.000000;;, - 91;3; 0.000000, 0.344354,-0.000000;;, - 92;3; 0.000000, 0.344354,-0.000000;;, - 93;3; 0.000000, 0.344354,-0.000000;;, - 94;3; 0.000000, 0.344354,-0.000000;;, - 95;3; 0.000000, 0.344354,-0.000000;;, - 96;3; 0.000000, 0.344354,-0.000000;;, - 97;3; 0.000000, 0.344354,-0.000000;;, - 98;3; 0.000000, 0.344354,-0.000000;;, - 99;3; 0.000000, 0.344354,-0.000000;;, - 100;3; 0.000000, 0.344354,-0.000000;;, - 101;3; 0.000000, 0.344354,-0.000000;;, - 102;3; 0.000000, 0.344354,-0.000000;;, - 103;3; 0.000000, 0.344354,-0.000000;;, - 104;3; 0.000000, 0.344354,-0.000000;;, - 105;3; 0.000000, 0.344354,-0.000000;;, - 106;3; 0.000000, 0.344354,-0.000000;;, - 107;3; 0.000000, 0.344354,-0.000000;;, - 108;3; 0.000000, 0.344354,-0.000000;;, - 109;3; 0.000000, 0.344354,-0.000000;;, - 110;3; 0.000000, 0.344354,-0.000000;;, - 111;3; 0.000000, 0.344354,-0.000000;;, - 112;3; 0.000000, 0.344354,-0.000000;;, - 113;3; 0.000000, 0.344354,-0.000000;;, - 114;3; 0.000000, 0.344354,-0.000000;;, - 115;3; 0.000000, 0.344354,-0.000000;;, - 116;3; 0.000000, 0.344354,-0.000000;;, - 117;3; 0.000000, 0.344354,-0.000000;;, - 118;3; 0.000000, 0.344354,-0.000000;;, - 119;3; 0.000000, 0.344354,-0.000000;;, - 120;3; 0.000000, 0.344354,-0.000000;;, - 121;3; 0.000000, 0.344354,-0.000000;;, - 122;3; 0.000000, 0.344354,-0.000000;;, - 123;3; 0.000000, 0.344354,-0.000000;;, - 124;3; 0.000000, 0.344354,-0.000000;;, - 125;3; 0.000000, 0.344354,-0.000000;;, - 126;3; 0.000000, 0.344354,-0.000000;;, - 127;3; 0.000000, 0.344354,-0.000000;;, - 128;3; 0.000000, 0.344354,-0.000000;;, - 129;3; 0.000000, 0.344354,-0.000000;;, - 130;3; 0.000000, 0.344354,-0.000000;;, - 131;3; 0.000000, 0.344354,-0.000000;;, - 132;3; 0.000000, 0.344354,-0.000000;;, - 133;3; 0.000000, 0.344354,-0.000000;;, - 134;3; 0.000000, 0.344354,-0.000000;;, - 135;3; 0.000000, 0.344354,-0.000000;;, - 136;3; 0.000000, 0.344354,-0.000000;;, - 137;3; 0.000000, 0.344354,-0.000000;;, - 138;3; 0.000000, 0.344354,-0.000000;;, - 139;3; 0.000000, 0.344354,-0.000000;;, - 140;3; 0.000000, 0.344354,-0.000000;;, - 141;3; 0.000000, 0.344354,-0.000000;;, - 142;3; 0.000000, 0.344354,-0.000000;;, - 143;3; 0.000000, 0.344354,-0.000000;;, - 144;3; 0.000000, 0.344354,-0.000000;;, - 145;3; 0.000000, 0.344354,-0.000000;;, - 146;3; 0.000000, 0.344354,-0.000000;;, - 147;3; 0.000000, 0.344354,-0.000000;;, - 148;3; 0.000000, 0.344354,-0.000000;;, - 149;3; 0.000000, 0.344354,-0.000000;;, - 150;3; 0.000000, 0.344354,-0.000000;;, - 151;3; 0.000000, 0.344354,-0.000000;;, - 152;3; 0.000000, 0.344354,-0.000000;;, - 153;3; 0.000000, 0.344354,-0.000000;;, - 154;3; 0.000000, 0.344354,-0.000000;;, - 155;3; 0.000000, 0.344354,-0.000000;;, - 156;3; 0.000000, 0.344354,-0.000000;;, - 157;3; 0.000000, 0.344354,-0.000000;;, - 158;3; 0.000000, 0.344354,-0.000000;;, - 159;3; 0.000000, 0.344354,-0.000000;;, - 160;3; 0.000000, 0.344354,-0.000000;;, - 161;3; 0.000000, 0.344354,-0.000000;;, - 162;3; 0.000000, 0.344354,-0.000000;;, - 163;3; 0.000000, 0.344354,-0.000000;;, - 164;3; 0.000000, 0.344354,-0.000000;;, - 165;3; 0.000000, 0.344354,-0.000000;;, - 166;3; 0.000000, 0.344354,-0.000000;;, - 167;3; 0.000000, 0.344354,-0.000000;;, - 168;3; 0.000000, 0.344354,-0.000000;;, - 169;3; 0.000000, 0.344354,-0.000000;;, - 170;3; 0.000000, 0.344354,-0.000000;;, - 171;3; 0.000000, 0.344354,-0.000000;;, - 172;3; 0.000000, 0.344354,-0.000000;;, - 173;3; 0.000000, 0.344354,-0.000000;;, - 174;3; 0.000000, 0.344354,-0.000000;;, - 175;3; 0.000000, 0.344354,-0.000000;;, - 176;3; 0.000000, 0.344354,-0.000000;;, - 177;3; 0.000000, 0.344354,-0.000000;;, - 178;3; 0.000000, 0.344354,-0.000000;;, - 179;3; 0.000000, 0.344354,-0.000000;;, - 180;3;-0.000000, 0.344354, 0.000000;;, - 181;3;-0.000000, 0.344354, 0.000000;;, - 182;3;-0.000000, 0.344354,-0.000000;;, - 183;3; 0.000000, 0.344354, 0.000000;;, - 184;3;-0.000000, 0.344355,-0.000000;;, - 185;3; 0.000000, 0.344354, 0.000000;;, - 186;3;-0.000000, 0.344355,-0.000000;;, - 187;3; 0.000000, 0.344354,-0.000000;;, - 188;3;-0.000000, 0.344354,-0.000000;;, - 189;3;-0.000000, 0.344355, 0.000000;;, - 190;3;-0.000000, 0.344355, 0.000000;;, - 191;3;-0.000000, 0.344355, 0.000000;;, - 192;3;-0.000000, 0.344355, 0.000000;;, - 193;3;-0.000000, 0.344355, 0.000000;;, - 194;3;-0.000000, 0.344355, 0.000000;;, - 195;3; 0.000000, 0.344354,-0.000000;;, - 196;3; 0.000000, 0.344355, 0.000000;;, - 197;3; 0.000000, 0.344354, 0.000000;;, - 198;3;-0.000000, 0.344354, 0.000000;;, - 199;3; 0.000000, 0.344354,-0.000000;;, - 200;3; 0.000000, 0.344354,-0.000000;;, - 201;3; 0.000000, 0.344354,-0.000000;;, - 202;3; 0.000000, 0.344354,-0.000000;;, - 203;3; 0.000000, 0.344354,-0.000000;;, - 204;3; 0.000000, 0.344354,-0.000000;;, - 205;3; 0.000000, 0.344354,-0.000000;;, - 206;3; 0.000000, 0.344354,-0.000000;;, - 207;3; 0.000000, 0.344354,-0.000000;;, - 208;3; 0.000000, 0.344354,-0.000000;;, - 209;3; 0.000000, 0.344354,-0.000000;;, - 210;3;-0.000000, 0.344354,-0.000000;;, - 211;3;-0.000000, 0.344354,-0.000000;;, - 212;3;-0.000000, 0.344355, 0.000000;;, - 213;3; 0.000000, 0.344354,-0.000000;;, - 214;3; 0.000000, 0.344354,-0.000000;;, - 215;3; 0.000000, 0.344354,-0.000000;;, - 216;3;-0.000000, 0.344355,-0.000000;;, - 217;3;-0.000000, 0.344354, 0.000000;;, - 218;3;-0.000000, 0.344354, 0.000000;;, - 219;3;-0.000000, 0.344354,-0.000000;;, - 220;3;-0.000000, 0.344354, 0.000000;;, - 221;3; 0.000000, 0.344355, 0.000000;;, - 222;3;-0.000000, 0.344354, 0.000000;;, - 223;3; 0.000000, 0.344355, 0.000000;;, - 224;3;-0.000000, 0.344355,-0.000000;;, - 225;3; 0.000000, 0.344355,-0.000000;;, - 226;3; 0.000000, 0.344355, 0.000000;;, - 227;3;-0.000000, 0.344355,-0.000000;;, - 228;3;-0.000000, 0.344355,-0.000000;;, - 229;3;-0.000000, 0.344355,-0.000000;;, - 230;3;-0.000000, 0.344354,-0.000000;;, - 231;3;-0.000000, 0.344354,-0.000000;;, - 232;3; 0.000000, 0.344354, 0.000000;;, - 233;3; 0.000000, 0.344354,-0.000000;;, - 234;3; 0.000000, 0.344354,-0.000000;;, - 235;3; 0.000000, 0.344354,-0.000000;;, - 236;3;-0.000000, 0.344354,-0.000000;;, - 237;3; 0.000000, 0.344354,-0.000000;;, - 238;3; 0.000000, 0.344354,-0.000000;;, - 239;3; 0.000000, 0.344354,-0.000000;;, - 240;3; 0.000000, 0.344354,-0.000000;;, - 241;3; 0.000000, 0.344354,-0.000000;;, - 242;3; 0.000000, 0.344354,-0.000000;;, - 243;3; 0.000000, 0.344354,-0.000000;;, - 244;3; 0.000000, 0.344354,-0.000000;;, - 245;3; 0.000000, 0.344354,-0.000000;;, - 246;3; 0.000000, 0.344354,-0.000000;;, - 247;3; 0.000000, 0.344354,-0.000000;;, - 248;3; 0.000000, 0.344354,-0.000000;;, - 249;3; 0.000000, 0.344354,-0.000000;;; - } - } - Animation { - {Armature_Bone_003} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 1;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 2;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 3;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 4;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 5;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 6;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 7;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 8;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 9;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 10;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 11;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 12;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 13;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 14;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 15;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 16;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 17;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 18;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 19;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 20;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 21;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 22;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 23;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 24;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 25;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 26;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 27;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 28;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 29;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 30;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 31;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 32;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 33;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 34;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 35;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 36;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 37;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 38;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 39;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 40;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 41;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 42;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 43;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 44;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 45;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 46;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 47;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 48;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 49;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 50;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 51;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 52;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 53;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 54;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 55;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 56;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 57;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 58;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 59;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 60;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 61;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 62;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 63;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 64;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 65;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 66;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 67;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 68;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 69;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 70;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 71;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 72;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 73;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 74;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 75;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 76;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 77;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 78;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 79;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 80;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 81;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 82;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 83;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 84;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 85;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 86;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 87;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 88;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 89;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 90;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 91;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 92;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 93;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 94;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 95;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 96;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 97;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 98;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 99;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 100;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 101;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 102;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 103;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 104;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 105;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 106;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 107;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 108;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 109;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 110;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 111;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 112;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 113;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 114;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 115;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 116;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 117;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 118;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 119;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 120;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 121;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 122;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 123;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 124;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 125;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 126;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 127;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 128;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 129;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 130;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 131;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 132;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 133;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 134;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 135;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 136;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 137;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 138;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 139;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 140;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 141;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 142;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 143;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 144;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 145;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 146;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 147;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 148;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 149;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 150;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 151;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 152;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 153;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 154;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 155;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 156;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 157;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 158;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 159;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 160;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 161;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 162;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 163;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 164;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 165;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 166;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 167;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 168;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 169;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 170;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 171;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 172;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 173;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 174;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 175;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 176;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 177;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 178;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 179;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 180;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 181;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 182;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 183;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 184;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 185;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 186;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 187;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 188;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 189;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 190;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 191;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 192;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 193;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 194;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 195;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 196;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 197;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 198;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 199;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 200;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 201;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 202;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 203;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 204;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 205;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 206;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 207;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 208;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 209;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 210;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 211;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 212;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 213;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 214;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 215;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 216;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 217;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 218;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 219;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 220;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 221;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 222;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 223;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 224;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 225;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 226;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 227;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 228;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 229;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 230;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 231;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 232;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 233;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 234;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 235;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 236;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 237;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 238;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 239;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 240;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 241;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 242;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 243;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 244;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 245;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 246;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 247;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 248;4;-0.970830, 0.133879,-0.028874,-0.196804;;, - 249;4;-0.970830, 0.133879,-0.028874,-0.196804;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3; 0.000000, 0.826434, 0.000000;;, - 1;3; 0.000000, 0.826434, 0.000000;;, - 2;3; 0.000000, 0.826434, 0.000000;;, - 3;3; 0.000000, 0.826434, 0.000000;;, - 4;3; 0.000000, 0.826434, 0.000000;;, - 5;3; 0.000000, 0.826434, 0.000000;;, - 6;3; 0.000000, 0.826434, 0.000000;;, - 7;3; 0.000000, 0.826434, 0.000000;;, - 8;3; 0.000000, 0.826434, 0.000000;;, - 9;3; 0.000000, 0.826434, 0.000000;;, - 10;3; 0.000000, 0.826434, 0.000000;;, - 11;3; 0.000000, 0.826434, 0.000000;;, - 12;3; 0.000000, 0.826434, 0.000000;;, - 13;3; 0.000000, 0.826434, 0.000000;;, - 14;3; 0.000000, 0.826434, 0.000000;;, - 15;3; 0.000000, 0.826434, 0.000000;;, - 16;3; 0.000000, 0.826434, 0.000000;;, - 17;3; 0.000000, 0.826434, 0.000000;;, - 18;3; 0.000000, 0.826434, 0.000000;;, - 19;3; 0.000000, 0.826434, 0.000000;;, - 20;3; 0.000000, 0.826434, 0.000000;;, - 21;3; 0.000000, 0.826434, 0.000000;;, - 22;3; 0.000000, 0.826434, 0.000000;;, - 23;3; 0.000000, 0.826434, 0.000000;;, - 24;3; 0.000000, 0.826434, 0.000000;;, - 25;3; 0.000000, 0.826434, 0.000000;;, - 26;3; 0.000000, 0.826434, 0.000000;;, - 27;3; 0.000000, 0.826434, 0.000000;;, - 28;3; 0.000000, 0.826434, 0.000000;;, - 29;3; 0.000000, 0.826434, 0.000000;;, - 30;3; 0.000000, 0.826434, 0.000000;;, - 31;3; 0.000000, 0.826434, 0.000000;;, - 32;3; 0.000000, 0.826434, 0.000000;;, - 33;3; 0.000000, 0.826434, 0.000000;;, - 34;3; 0.000000, 0.826434, 0.000000;;, - 35;3; 0.000000, 0.826434, 0.000000;;, - 36;3; 0.000000, 0.826434, 0.000000;;, - 37;3; 0.000000, 0.826434, 0.000000;;, - 38;3; 0.000000, 0.826434, 0.000000;;, - 39;3; 0.000000, 0.826434, 0.000000;;, - 40;3; 0.000000, 0.826434, 0.000000;;, - 41;3; 0.000000, 0.826434, 0.000000;;, - 42;3; 0.000000, 0.826434, 0.000000;;, - 43;3; 0.000000, 0.826434, 0.000000;;, - 44;3; 0.000000, 0.826434, 0.000000;;, - 45;3; 0.000000, 0.826434, 0.000000;;, - 46;3; 0.000000, 0.826434, 0.000000;;, - 47;3; 0.000000, 0.826434, 0.000000;;, - 48;3; 0.000000, 0.826434, 0.000000;;, - 49;3; 0.000000, 0.826434, 0.000000;;, - 50;3; 0.000000, 0.826434, 0.000000;;, - 51;3; 0.000000, 0.826434, 0.000000;;, - 52;3; 0.000000, 0.826434, 0.000000;;, - 53;3; 0.000000, 0.826434, 0.000000;;, - 54;3; 0.000000, 0.826434, 0.000000;;, - 55;3; 0.000000, 0.826434, 0.000000;;, - 56;3; 0.000000, 0.826434, 0.000000;;, - 57;3; 0.000000, 0.826434, 0.000000;;, - 58;3; 0.000000, 0.826434, 0.000000;;, - 59;3; 0.000000, 0.826434, 0.000000;;, - 60;3; 0.000000, 0.826434, 0.000000;;, - 61;3; 0.000000, 0.826434, 0.000000;;, - 62;3; 0.000000, 0.826434, 0.000000;;, - 63;3; 0.000000, 0.826434, 0.000000;;, - 64;3; 0.000000, 0.826434, 0.000000;;, - 65;3; 0.000000, 0.826434, 0.000000;;, - 66;3; 0.000000, 0.826434, 0.000000;;, - 67;3; 0.000000, 0.826434, 0.000000;;, - 68;3; 0.000000, 0.826434, 0.000000;;, - 69;3; 0.000000, 0.826434, 0.000000;;, - 70;3; 0.000000, 0.826434, 0.000000;;, - 71;3; 0.000000, 0.826434, 0.000000;;, - 72;3; 0.000000, 0.826434, 0.000000;;, - 73;3; 0.000000, 0.826434, 0.000000;;, - 74;3; 0.000000, 0.826434, 0.000000;;, - 75;3; 0.000000, 0.826434, 0.000000;;, - 76;3; 0.000000, 0.826434, 0.000000;;, - 77;3; 0.000000, 0.826434, 0.000000;;, - 78;3; 0.000000, 0.826434, 0.000000;;, - 79;3; 0.000000, 0.826434, 0.000000;;, - 80;3; 0.000000, 0.826434, 0.000000;;, - 81;3; 0.000000, 0.826434, 0.000000;;, - 82;3; 0.000000, 0.826434, 0.000000;;, - 83;3; 0.000000, 0.826434, 0.000000;;, - 84;3; 0.000000, 0.826434, 0.000000;;, - 85;3; 0.000000, 0.826434, 0.000000;;, - 86;3; 0.000000, 0.826434, 0.000000;;, - 87;3; 0.000000, 0.826434, 0.000000;;, - 88;3; 0.000000, 0.826434, 0.000000;;, - 89;3; 0.000000, 0.826434, 0.000000;;, - 90;3; 0.000000, 0.826434, 0.000000;;, - 91;3; 0.000000, 0.826434, 0.000000;;, - 92;3; 0.000000, 0.826434, 0.000000;;, - 93;3; 0.000000, 0.826434, 0.000000;;, - 94;3; 0.000000, 0.826434, 0.000000;;, - 95;3; 0.000000, 0.826434, 0.000000;;, - 96;3; 0.000000, 0.826434, 0.000000;;, - 97;3; 0.000000, 0.826434, 0.000000;;, - 98;3; 0.000000, 0.826434, 0.000000;;, - 99;3; 0.000000, 0.826434, 0.000000;;, - 100;3; 0.000000, 0.826434, 0.000000;;, - 101;3; 0.000000, 0.826434, 0.000000;;, - 102;3; 0.000000, 0.826434, 0.000000;;, - 103;3; 0.000000, 0.826434, 0.000000;;, - 104;3; 0.000000, 0.826434, 0.000000;;, - 105;3; 0.000000, 0.826434, 0.000000;;, - 106;3; 0.000000, 0.826434, 0.000000;;, - 107;3; 0.000000, 0.826434, 0.000000;;, - 108;3; 0.000000, 0.826434, 0.000000;;, - 109;3; 0.000000, 0.826434, 0.000000;;, - 110;3; 0.000000, 0.826434, 0.000000;;, - 111;3; 0.000000, 0.826434, 0.000000;;, - 112;3; 0.000000, 0.826434, 0.000000;;, - 113;3; 0.000000, 0.826434, 0.000000;;, - 114;3; 0.000000, 0.826434, 0.000000;;, - 115;3; 0.000000, 0.826434, 0.000000;;, - 116;3; 0.000000, 0.826434, 0.000000;;, - 117;3; 0.000000, 0.826434, 0.000000;;, - 118;3; 0.000000, 0.826434, 0.000000;;, - 119;3; 0.000000, 0.826434, 0.000000;;, - 120;3; 0.000000, 0.826434, 0.000000;;, - 121;3; 0.000000, 0.826434, 0.000000;;, - 122;3; 0.000000, 0.826434, 0.000000;;, - 123;3; 0.000000, 0.826434, 0.000000;;, - 124;3; 0.000000, 0.826434, 0.000000;;, - 125;3; 0.000000, 0.826434, 0.000000;;, - 126;3; 0.000000, 0.826434, 0.000000;;, - 127;3; 0.000000, 0.826434, 0.000000;;, - 128;3; 0.000000, 0.826434, 0.000000;;, - 129;3; 0.000000, 0.826434, 0.000000;;, - 130;3; 0.000000, 0.826434, 0.000000;;, - 131;3; 0.000000, 0.826434, 0.000000;;, - 132;3; 0.000000, 0.826434, 0.000000;;, - 133;3; 0.000000, 0.826434, 0.000000;;, - 134;3; 0.000000, 0.826434, 0.000000;;, - 135;3; 0.000000, 0.826434, 0.000000;;, - 136;3; 0.000000, 0.826434, 0.000000;;, - 137;3; 0.000000, 0.826434, 0.000000;;, - 138;3; 0.000000, 0.826434, 0.000000;;, - 139;3; 0.000000, 0.826434, 0.000000;;, - 140;3; 0.000000, 0.826434, 0.000000;;, - 141;3; 0.000000, 0.826434, 0.000000;;, - 142;3; 0.000000, 0.826434, 0.000000;;, - 143;3; 0.000000, 0.826434, 0.000000;;, - 144;3; 0.000000, 0.826434, 0.000000;;, - 145;3; 0.000000, 0.826434, 0.000000;;, - 146;3; 0.000000, 0.826434, 0.000000;;, - 147;3; 0.000000, 0.826434, 0.000000;;, - 148;3; 0.000000, 0.826434, 0.000000;;, - 149;3; 0.000000, 0.826434, 0.000000;;, - 150;3; 0.000000, 0.826434, 0.000000;;, - 151;3; 0.000000, 0.826434, 0.000000;;, - 152;3; 0.000000, 0.826434, 0.000000;;, - 153;3; 0.000000, 0.826434, 0.000000;;, - 154;3; 0.000000, 0.826434, 0.000000;;, - 155;3; 0.000000, 0.826434, 0.000000;;, - 156;3; 0.000000, 0.826434, 0.000000;;, - 157;3; 0.000000, 0.826434, 0.000000;;, - 158;3; 0.000000, 0.826434, 0.000000;;, - 159;3; 0.000000, 0.826434, 0.000000;;, - 160;3; 0.000000, 0.826434, 0.000000;;, - 161;3; 0.000000, 0.826434, 0.000000;;, - 162;3; 0.000000, 0.826434, 0.000000;;, - 163;3; 0.000000, 0.826434, 0.000000;;, - 164;3; 0.000000, 0.826434, 0.000000;;, - 165;3; 0.000000, 0.826434, 0.000000;;, - 166;3; 0.000000, 0.826434, 0.000000;;, - 167;3; 0.000000, 0.826434, 0.000000;;, - 168;3; 0.000000, 0.826434, 0.000000;;, - 169;3; 0.000000, 0.826434, 0.000000;;, - 170;3; 0.000000, 0.826434, 0.000000;;, - 171;3; 0.000000, 0.826434, 0.000000;;, - 172;3; 0.000000, 0.826434, 0.000000;;, - 173;3; 0.000000, 0.826434, 0.000000;;, - 174;3; 0.000000, 0.826434, 0.000000;;, - 175;3; 0.000000, 0.826434, 0.000000;;, - 176;3; 0.000000, 0.826434, 0.000000;;, - 177;3; 0.000000, 0.826434, 0.000000;;, - 178;3; 0.000000, 0.826434, 0.000000;;, - 179;3; 0.000000, 0.826434, 0.000000;;, - 180;3; 0.000000, 0.826434, 0.000000;;, - 181;3; 0.000000, 0.826434, 0.000000;;, - 182;3; 0.000000, 0.826434, 0.000000;;, - 183;3; 0.000000, 0.826434, 0.000000;;, - 184;3; 0.000000, 0.826434, 0.000000;;, - 185;3; 0.000000, 0.826434, 0.000000;;, - 186;3;-0.000000, 0.826434,-0.000000;;, - 187;3;-0.000000, 0.826434,-0.000000;;, - 188;3;-0.000000, 0.826434, 0.000000;;, - 189;3;-0.000000, 0.826434, 0.000000;;, - 190;3;-0.000000, 0.826434,-0.000000;;, - 191;3; 0.000000, 0.826434, 0.000000;;, - 192;3; 0.000000, 0.826434, 0.000000;;, - 193;3; 0.000000, 0.826434, 0.000000;;, - 194;3; 0.000000, 0.826434,-0.000000;;, - 195;3; 0.000000, 0.826434,-0.000000;;, - 196;3; 0.000000, 0.826434, 0.000000;;, - 197;3; 0.000000, 0.826434,-0.000000;;, - 198;3; 0.000000, 0.826434,-0.000000;;, - 199;3; 0.000000, 0.826434, 0.000000;;, - 200;3; 0.000000, 0.826434, 0.000000;;, - 201;3; 0.000000, 0.826434, 0.000000;;, - 202;3; 0.000000, 0.826434, 0.000000;;, - 203;3; 0.000000, 0.826434, 0.000000;;, - 204;3; 0.000000, 0.826434, 0.000000;;, - 205;3; 0.000000, 0.826434, 0.000000;;, - 206;3; 0.000000, 0.826434, 0.000000;;, - 207;3; 0.000000, 0.826434, 0.000000;;, - 208;3; 0.000000, 0.826434, 0.000000;;, - 209;3; 0.000000, 0.826434, 0.000000;;, - 210;3;-0.000000, 0.826434, 0.000000;;, - 211;3;-0.000000, 0.826434, 0.000000;;, - 212;3; 0.000000, 0.826434,-0.000000;;, - 213;3; 0.000000, 0.826434, 0.000000;;, - 214;3; 0.000000, 0.826434, 0.000000;;, - 215;3;-0.000000, 0.826434,-0.000000;;, - 216;3;-0.000000, 0.826434,-0.000000;;, - 217;3;-0.000000, 0.826434,-0.000000;;, - 218;3;-0.000000, 0.826434, 0.000000;;, - 219;3;-0.000000, 0.826434,-0.000000;;, - 220;3;-0.000000, 0.826434, 0.000000;;, - 221;3; 0.000000, 0.826434, 0.000000;;, - 222;3;-0.000000, 0.826434, 0.000000;;, - 223;3; 0.000000, 0.826434,-0.000000;;, - 224;3; 0.000000, 0.826434,-0.000000;;, - 225;3; 0.000000, 0.826434, 0.000000;;, - 226;3; 0.000000, 0.826434, 0.000000;;, - 227;3; 0.000000, 0.826434, 0.000000;;, - 228;3;-0.000000, 0.826434, 0.000000;;, - 229;3; 0.000000, 0.826434, 0.000000;;, - 230;3; 0.000000, 0.826434, 0.000000;;, - 231;3; 0.000000, 0.826434,-0.000000;;, - 232;3;-0.000000, 0.826434,-0.000000;;, - 233;3; 0.000000, 0.826434, 0.000000;;, - 234;3; 0.000000, 0.826434, 0.000000;;, - 235;3; 0.000000, 0.826434, 0.000000;;, - 236;3; 0.000000, 0.826434, 0.000000;;, - 237;3; 0.000000, 0.826434, 0.000000;;, - 238;3; 0.000000, 0.826434, 0.000000;;, - 239;3; 0.000000, 0.826434, 0.000000;;, - 240;3; 0.000000, 0.826434, 0.000000;;, - 241;3; 0.000000, 0.826434, 0.000000;;, - 242;3; 0.000000, 0.826434, 0.000000;;, - 243;3; 0.000000, 0.826434, 0.000000;;, - 244;3; 0.000000, 0.826434, 0.000000;;, - 245;3; 0.000000, 0.826434, 0.000000;;, - 246;3; 0.000000, 0.826434, 0.000000;;, - 247;3; 0.000000, 0.826434, 0.000000;;, - 248;3; 0.000000, 0.826434, 0.000000;;, - 249;3; 0.000000, 0.826434, 0.000000;;; - } - } - Animation { - {Armature_Bone_005} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 1;4;-0.380162,-0.402155,-0.542078, 0.632313;;, - 2;4;-0.381472,-0.400992,-0.542850, 0.631414;;, - 3;4;-0.383661,-0.399049,-0.544140, 0.629912;;, - 4;4;-0.386712,-0.396342,-0.545936, 0.627819;;, - 5;4;-0.390578,-0.392911,-0.548214, 0.625166;;, - 6;4;-0.395184,-0.388825,-0.550926, 0.622006;;, - 7;4;-0.400416,-0.384182,-0.554008, 0.618416;;, - 8;4;-0.406128,-0.379113,-0.557373, 0.614497;;, - 9;4;-0.412141,-0.373777,-0.560915, 0.610370;;, - 10;4;-0.418257,-0.368350,-0.564517, 0.606174;;, - 11;4;-0.424271,-0.363013,-0.568059, 0.602047;;, - 12;4;-0.429982,-0.357945,-0.571424, 0.598128;;, - 13;4;-0.435214,-0.353302,-0.574506, 0.594538;;, - 14;4;-0.439820,-0.349215,-0.577218, 0.591378;;, - 15;4;-0.443686,-0.345784,-0.579496, 0.588725;;, - 16;4;-0.446737,-0.343077,-0.581293, 0.586632;;, - 17;4;-0.448926,-0.341134,-0.582582, 0.585130;;, - 18;4;-0.450236,-0.339972,-0.583354, 0.584231;;, - 19;4;-0.450669,-0.339587,-0.583609, 0.583933;;, - 20;4;-0.450231,-0.339962,-0.583344, 0.584216;;, - 21;4;-0.448905,-0.341094,-0.582544, 0.585072;;, - 22;4;-0.446688,-0.342987,-0.581207, 0.586504;;, - 23;4;-0.443596,-0.345630,-0.579341, 0.588503;;, - 24;4;-0.439666,-0.348989,-0.576972, 0.591046;;, - 25;4;-0.434967,-0.353009,-0.574139, 0.594089;;, - 26;4;-0.429597,-0.357605,-0.570904, 0.597570;;, - 27;4;-0.423689,-0.362668,-0.567346, 0.601405;;, - 28;4;-0.417402,-0.368059,-0.563562, 0.605493;;, - 29;4;-0.410923,-0.373622,-0.559666, 0.609713;;, - 30;4;-0.404448,-0.379190,-0.555776, 0.613941;;, - 31;4;-0.398175,-0.384594,-0.552011, 0.618050;;, - 32;4;-0.392288,-0.389679,-0.548482, 0.621921;;, - 33;4;-0.386947,-0.394306,-0.545288, 0.625451;;, - 34;4;-0.382284,-0.398364,-0.542507, 0.628553;;, - 35;4;-0.378397,-0.401769,-0.540198, 0.631166;;, - 36;4;-0.375352,-0.404462,-0.538402, 0.633245;;, - 37;4;-0.373188,-0.406411,-0.537140, 0.634765;;, - 38;4;-0.371920,-0.407604,-0.536421, 0.635717;;, - 39;4;-0.371542,-0.408043,-0.536243, 0.636101;;, - 40;4;-0.371645,-0.408074,-0.536356, 0.636178;;, - 41;4;-0.371830,-0.408034,-0.536520, 0.636202;;, - 42;4;-0.372099,-0.407924,-0.536732, 0.636172;;, - 43;4;-0.372448,-0.407743,-0.536993, 0.636088;;, - 44;4;-0.372874,-0.407494,-0.537300, 0.635951;;, - 45;4;-0.373370,-0.407182,-0.537647, 0.635766;;, - 46;4;-0.373926,-0.406814,-0.538029, 0.635536;;, - 47;4;-0.374531,-0.406400,-0.538437, 0.635269;;, - 48;4;-0.375167,-0.405952,-0.538862, 0.634973;;, - 49;4;-0.375817,-0.405484,-0.539293, 0.634659;;, - 50;4;-0.376464,-0.405012,-0.539717, 0.634338;;, - 51;4;-0.377087,-0.404550,-0.540124, 0.634021;;, - 52;4;-0.377670,-0.404114,-0.540502, 0.633718;;, - 53;4;-0.378197,-0.403715,-0.540842, 0.633440;;, - 54;4;-0.378658,-0.403365,-0.541138, 0.633195;;, - 55;4;-0.379041,-0.403071,-0.541384, 0.632988;;, - 56;4;-0.379342,-0.402839,-0.541577, 0.632823;;, - 57;4;-0.379558,-0.402672,-0.541714, 0.632705;;, - 58;4;-0.379686,-0.402572,-0.541796, 0.632634;;, - 59;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 60;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 61;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 62;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 63;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 64;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 65;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 66;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 67;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 68;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 69;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 70;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 71;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 72;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 73;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 74;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 75;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 76;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 77;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 78;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 79;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 80;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 81;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 82;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 83;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 84;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 85;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 86;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 87;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 88;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 89;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 90;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 91;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 92;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 93;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 94;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 95;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 96;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 97;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 98;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 99;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 100;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 101;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 102;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 103;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 104;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 105;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 106;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 107;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 108;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 109;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 110;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 111;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 112;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 113;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 114;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 115;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 116;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 117;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 118;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 119;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 120;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 121;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 122;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 123;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 124;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 125;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 126;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 127;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 128;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 129;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 130;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 131;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 132;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 133;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 134;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 135;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 136;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 137;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 138;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 139;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 140;4;-0.385652,-0.397309,-0.545323, 0.628577;;, - 141;4;-0.402334,-0.382576,-0.555180, 0.617217;;, - 142;4;-0.423755,-0.363660,-0.567837, 0.602630;;, - 143;4;-0.440438,-0.348928,-0.577695, 0.591270;;, - 144;4;-0.446361,-0.343698,-0.581195, 0.587236;;, - 145;4;-0.440438,-0.348928,-0.577695, 0.591270;;, - 146;4;-0.423755,-0.363660,-0.567837, 0.602630;;, - 147;4;-0.402334,-0.382576,-0.555180, 0.617217;;, - 148;4;-0.385652,-0.397309,-0.545323, 0.628577;;, - 149;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 150;4;-0.385652,-0.397309,-0.545323, 0.628577;;, - 151;4;-0.402334,-0.382576,-0.555180, 0.617217;;, - 152;4;-0.423755,-0.363660,-0.567837, 0.602630;;, - 153;4;-0.440438,-0.348928,-0.577695, 0.591270;;, - 154;4;-0.446361,-0.343698,-0.581195, 0.587236;;, - 155;4;-0.440438,-0.348928,-0.577695, 0.591270;;, - 156;4;-0.423755,-0.363660,-0.567837, 0.602630;;, - 157;4;-0.402334,-0.382576,-0.555180, 0.617217;;, - 158;4;-0.385652,-0.397309,-0.545323, 0.628577;;, - 159;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 160;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 161;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 162;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 163;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 164;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 165;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 166;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 167;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 168;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 169;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 170;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 171;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 172;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 173;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 174;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 175;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 176;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 177;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 178;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 179;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 180;4;-0.383627,-0.398602,-0.543913, 0.629358;;, - 181;4;-0.395358,-0.386753,-0.550205, 0.619571;;, - 182;4;-0.414433,-0.367486,-0.560434, 0.603656;;, - 183;4;-0.439382,-0.342286,-0.573813, 0.582841;;, - 184;4;-0.467646,-0.313739,-0.588969, 0.559260;;, - 185;4;-0.495909,-0.285192,-0.604126, 0.535680;;, - 186;4;-0.520858,-0.259993,-0.617505, 0.514865;;, - 187;4;-0.539933,-0.240726,-0.627734, 0.498951;;, - 188;4;-0.551665,-0.228877,-0.634025, 0.489163;;, - 189;4;-0.555563,-0.224940,-0.636116, 0.485911;;, - 190;4;-0.549242,-0.232253,-0.633125, 0.492305;;, - 191;4;-0.530164,-0.254070,-0.623991, 0.511300;;, - 192;4;-0.502253,-0.285357,-0.610356, 0.538326;;, - 193;4;-0.473867,-0.316098,-0.596023, 0.564508;;, - 194;4;-0.451706,-0.338592,-0.584188, 0.583131;;, - 195;4;-0.432380,-0.356668,-0.573202, 0.597511;;, - 196;4;-0.411975,-0.374964,-0.561264, 0.611740;;, - 197;4;-0.394312,-0.390272,-0.550703, 0.623418;;, - 198;4;-0.383216,-0.399645,-0.543964, 0.630459;;, - 199;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 200;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 201;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 202;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 203;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 204;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 205;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 206;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 207;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 208;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 209;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 210;4;-0.400993,-0.378907,-0.552300, 0.612268;;, - 211;4;-0.460890,-0.312344,-0.581810, 0.554970;;, - 212;4;-0.537796,-0.226878,-0.619701, 0.481400;;, - 213;4;-0.597692,-0.160315,-0.649211, 0.424102;;, - 214;4;-0.618957,-0.136683,-0.659688, 0.403760;;, - 215;4;-0.608725,-0.146498,-0.653978, 0.411669;;, - 216;4;-0.577389,-0.176625,-0.636518, 0.435972;;, - 217;4;-0.530391,-0.221968,-0.610400, 0.472615;;, - 218;4;-0.480628,-0.270247,-0.582861, 0.511737;;, - 219;4;-0.439046,-0.310945,-0.560003, 0.544858;;, - 220;4;-0.397563,-0.351748,-0.537284, 0.578142;;, - 221;4;-0.348146,-0.400393,-0.510239, 0.617840;;, - 222;4;-0.301780,-0.446406,-0.485023, 0.655536;;, - 223;4;-0.271301,-0.477443,-0.468786, 0.681268;;, - 224;4;-0.262038,-0.488284,-0.464459, 0.690791;;, - 225;4;-0.264095,-0.488398,-0.466504, 0.691721;;, - 226;4;-0.268302,-0.486609,-0.469818, 0.691183;;, - 227;4;-0.274632,-0.482923,-0.474378, 0.689171;;, - 228;4;-0.282962,-0.477424,-0.480099, 0.685742;;, - 229;4;-0.293044,-0.470304,-0.486823, 0.681030;;, - 230;4;-0.304491,-0.461871,-0.494309, 0.675259;;, - 231;4;-0.316786,-0.452552,-0.502235, 0.668745;;, - 232;4;-0.329312,-0.442862,-0.510226, 0.661871;;, - 233;4;-0.341423,-0.433349,-0.517891, 0.655051;;, - 234;4;-0.352512,-0.424536,-0.524865, 0.648684;;, - 235;4;-0.362076,-0.416866,-0.530850, 0.643108;;, - 236;4;-0.369747,-0.410670,-0.535631, 0.638582;;, - 237;4;-0.375299,-0.406159,-0.539080, 0.635274;;, - 238;4;-0.378629,-0.403440,-0.541143, 0.633275;;, - 239;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 240;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 241;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 242;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 243;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 244;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 245;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 246;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 247;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 248;4;-0.379729,-0.402539,-0.541823, 0.632611;;, - 249;4;-0.379729,-0.402539,-0.541823, 0.632611;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3; 0.000000, 0.761776, 0.000000;;, - 1;3; 0.000000, 0.761776, 0.000000;;, - 2;3; 0.000000, 0.761776, 0.000000;;, - 3;3; 0.000000, 0.761776, 0.000000;;, - 4;3; 0.000000, 0.761776, 0.000000;;, - 5;3; 0.000000, 0.761776, 0.000000;;, - 6;3; 0.000000, 0.761776, 0.000000;;, - 7;3; 0.000000, 0.761776, 0.000000;;, - 8;3; 0.000000, 0.761776, 0.000000;;, - 9;3; 0.000000, 0.761776, 0.000000;;, - 10;3; 0.000000, 0.761776, 0.000000;;, - 11;3; 0.000000, 0.761776, 0.000000;;, - 12;3; 0.000000, 0.761776, 0.000000;;, - 13;3; 0.000000, 0.761776, 0.000000;;, - 14;3; 0.000000, 0.761776, 0.000000;;, - 15;3; 0.000000, 0.761776, 0.000000;;, - 16;3; 0.000000, 0.761776, 0.000000;;, - 17;3; 0.000000, 0.761776, 0.000000;;, - 18;3; 0.000000, 0.761776, 0.000000;;, - 19;3; 0.000000, 0.761776, 0.000000;;, - 20;3; 0.000000, 0.761776, 0.000000;;, - 21;3; 0.000000, 0.761776, 0.000000;;, - 22;3; 0.000000, 0.761776, 0.000000;;, - 23;3; 0.000000, 0.761776, 0.000000;;, - 24;3; 0.000000, 0.761776, 0.000000;;, - 25;3; 0.000000, 0.761776, 0.000000;;, - 26;3; 0.000000, 0.761776, 0.000000;;, - 27;3; 0.000000, 0.761776, 0.000000;;, - 28;3; 0.000000, 0.761776, 0.000000;;, - 29;3; 0.000000, 0.761776, 0.000000;;, - 30;3; 0.000000, 0.761776, 0.000000;;, - 31;3; 0.000000, 0.761776, 0.000000;;, - 32;3; 0.000000, 0.761776, 0.000000;;, - 33;3; 0.000000, 0.761776, 0.000000;;, - 34;3; 0.000000, 0.761776, 0.000000;;, - 35;3; 0.000000, 0.761776, 0.000000;;, - 36;3; 0.000000, 0.761776, 0.000000;;, - 37;3; 0.000000, 0.761776, 0.000000;;, - 38;3; 0.000000, 0.761776, 0.000000;;, - 39;3; 0.000000, 0.761776, 0.000000;;, - 40;3; 0.000000, 0.761776, 0.000000;;, - 41;3; 0.000000, 0.761776, 0.000000;;, - 42;3; 0.000000, 0.761776, 0.000000;;, - 43;3; 0.000000, 0.761776, 0.000000;;, - 44;3; 0.000000, 0.761776, 0.000000;;, - 45;3; 0.000000, 0.761776, 0.000000;;, - 46;3; 0.000000, 0.761776, 0.000000;;, - 47;3; 0.000000, 0.761776, 0.000000;;, - 48;3; 0.000000, 0.761776, 0.000000;;, - 49;3; 0.000000, 0.761776, 0.000000;;, - 50;3; 0.000000, 0.761776, 0.000000;;, - 51;3; 0.000000, 0.761776, 0.000000;;, - 52;3; 0.000000, 0.761776, 0.000000;;, - 53;3; 0.000000, 0.761776, 0.000000;;, - 54;3; 0.000000, 0.761776, 0.000000;;, - 55;3; 0.000000, 0.761776, 0.000000;;, - 56;3; 0.000000, 0.761776, 0.000000;;, - 57;3; 0.000000, 0.761776, 0.000000;;, - 58;3; 0.000000, 0.761776, 0.000000;;, - 59;3; 0.000000, 0.761776, 0.000000;;, - 60;3; 0.000000, 0.761776, 0.000000;;, - 61;3; 0.000000, 0.761776, 0.000000;;, - 62;3; 0.000000, 0.761776, 0.000000;;, - 63;3; 0.000000, 0.761776, 0.000000;;, - 64;3; 0.000000, 0.761776, 0.000000;;, - 65;3; 0.000000, 0.761776, 0.000000;;, - 66;3; 0.000000, 0.761776, 0.000000;;, - 67;3; 0.000000, 0.761776, 0.000000;;, - 68;3; 0.000000, 0.761776, 0.000000;;, - 69;3; 0.000000, 0.761776, 0.000000;;, - 70;3; 0.000000, 0.761776, 0.000000;;, - 71;3; 0.000000, 0.761776, 0.000000;;, - 72;3; 0.000000, 0.761776, 0.000000;;, - 73;3; 0.000000, 0.761776, 0.000000;;, - 74;3; 0.000000, 0.761776, 0.000000;;, - 75;3; 0.000000, 0.761776, 0.000000;;, - 76;3; 0.000000, 0.761776, 0.000000;;, - 77;3; 0.000000, 0.761776, 0.000000;;, - 78;3; 0.000000, 0.761776, 0.000000;;, - 79;3; 0.000000, 0.761776, 0.000000;;, - 80;3; 0.000000, 0.761776, 0.000000;;, - 81;3; 0.000000, 0.761776, 0.000000;;, - 82;3; 0.000000, 0.761776, 0.000000;;, - 83;3; 0.000000, 0.761776, 0.000000;;, - 84;3; 0.000000, 0.761776, 0.000000;;, - 85;3; 0.000000, 0.761776, 0.000000;;, - 86;3; 0.000000, 0.761776, 0.000000;;, - 87;3; 0.000000, 0.761776, 0.000000;;, - 88;3; 0.000000, 0.761776, 0.000000;;, - 89;3; 0.000000, 0.761776, 0.000000;;, - 90;3; 0.000000, 0.761776, 0.000000;;, - 91;3; 0.000000, 0.761776, 0.000000;;, - 92;3; 0.000000, 0.761776, 0.000000;;, - 93;3; 0.000000, 0.761776, 0.000000;;, - 94;3; 0.000000, 0.761776, 0.000000;;, - 95;3; 0.000000, 0.761776, 0.000000;;, - 96;3; 0.000000, 0.761776, 0.000000;;, - 97;3; 0.000000, 0.761776, 0.000000;;, - 98;3; 0.000000, 0.761776, 0.000000;;, - 99;3; 0.000000, 0.761776, 0.000000;;, - 100;3; 0.000000, 0.761776, 0.000000;;, - 101;3; 0.000000, 0.761776, 0.000000;;, - 102;3; 0.000000, 0.761776, 0.000000;;, - 103;3; 0.000000, 0.761776, 0.000000;;, - 104;3; 0.000000, 0.761776, 0.000000;;, - 105;3; 0.000000, 0.761776, 0.000000;;, - 106;3; 0.000000, 0.761776, 0.000000;;, - 107;3; 0.000000, 0.761776, 0.000000;;, - 108;3; 0.000000, 0.761776, 0.000000;;, - 109;3; 0.000000, 0.761776, 0.000000;;, - 110;3; 0.000000, 0.761776, 0.000000;;, - 111;3; 0.000000, 0.761776, 0.000000;;, - 112;3; 0.000000, 0.761776, 0.000000;;, - 113;3; 0.000000, 0.761776, 0.000000;;, - 114;3; 0.000000, 0.761776, 0.000000;;, - 115;3; 0.000000, 0.761776, 0.000000;;, - 116;3; 0.000000, 0.761776, 0.000000;;, - 117;3; 0.000000, 0.761776, 0.000000;;, - 118;3; 0.000000, 0.761776, 0.000000;;, - 119;3; 0.000000, 0.761776, 0.000000;;, - 120;3; 0.000000, 0.761776, 0.000000;;, - 121;3; 0.000000, 0.761776, 0.000000;;, - 122;3; 0.000000, 0.761776, 0.000000;;, - 123;3; 0.000000, 0.761776, 0.000000;;, - 124;3; 0.000000, 0.761776, 0.000000;;, - 125;3; 0.000000, 0.761776, 0.000000;;, - 126;3; 0.000000, 0.761776, 0.000000;;, - 127;3; 0.000000, 0.761776, 0.000000;;, - 128;3; 0.000000, 0.761776, 0.000000;;, - 129;3; 0.000000, 0.761776, 0.000000;;, - 130;3; 0.000000, 0.761776, 0.000000;;, - 131;3; 0.000000, 0.761776, 0.000000;;, - 132;3; 0.000000, 0.761776, 0.000000;;, - 133;3; 0.000000, 0.761776, 0.000000;;, - 134;3; 0.000000, 0.761776, 0.000000;;, - 135;3; 0.000000, 0.761776, 0.000000;;, - 136;3; 0.000000, 0.761776, 0.000000;;, - 137;3; 0.000000, 0.761776, 0.000000;;, - 138;3; 0.000000, 0.761776, 0.000000;;, - 139;3; 0.000000, 0.761776, 0.000000;;, - 140;3; 0.000000, 0.761776, 0.000000;;, - 141;3; 0.000000, 0.761776, 0.000000;;, - 142;3; 0.000000, 0.761776, 0.000000;;, - 143;3; 0.000000, 0.761776, 0.000000;;, - 144;3; 0.000000, 0.761776, 0.000000;;, - 145;3; 0.000000, 0.761776, 0.000000;;, - 146;3; 0.000000, 0.761776, 0.000000;;, - 147;3; 0.000000, 0.761776, 0.000000;;, - 148;3; 0.000000, 0.761776, 0.000000;;, - 149;3; 0.000000, 0.761776, 0.000000;;, - 150;3; 0.000000, 0.761776, 0.000000;;, - 151;3; 0.000000, 0.761776, 0.000000;;, - 152;3; 0.000000, 0.761776, 0.000000;;, - 153;3; 0.000000, 0.761776, 0.000000;;, - 154;3; 0.000000, 0.761776, 0.000000;;, - 155;3; 0.000000, 0.761776, 0.000000;;, - 156;3; 0.000000, 0.761776, 0.000000;;, - 157;3; 0.000000, 0.761776, 0.000000;;, - 158;3; 0.000000, 0.761776, 0.000000;;, - 159;3; 0.000000, 0.761776, 0.000000;;, - 160;3; 0.000000, 0.761776, 0.000000;;, - 161;3; 0.000000, 0.761776, 0.000000;;, - 162;3; 0.000000, 0.761776, 0.000000;;, - 163;3; 0.000000, 0.761776, 0.000000;;, - 164;3; 0.000000, 0.761776, 0.000000;;, - 165;3; 0.000000, 0.761776, 0.000000;;, - 166;3; 0.000000, 0.761776, 0.000000;;, - 167;3; 0.000000, 0.761776, 0.000000;;, - 168;3; 0.000000, 0.761776, 0.000000;;, - 169;3; 0.000000, 0.761776, 0.000000;;, - 170;3; 0.000000, 0.761776, 0.000000;;, - 171;3; 0.000000, 0.761776, 0.000000;;, - 172;3; 0.000000, 0.761776, 0.000000;;, - 173;3; 0.000000, 0.761776, 0.000000;;, - 174;3; 0.000000, 0.761776, 0.000000;;, - 175;3; 0.000000, 0.761776, 0.000000;;, - 176;3; 0.000000, 0.761776, 0.000000;;, - 177;3; 0.000000, 0.761776, 0.000000;;, - 178;3; 0.000000, 0.761776, 0.000000;;, - 179;3; 0.000000, 0.761776, 0.000000;;, - 180;3; 0.000000, 0.761776,-0.000000;;, - 181;3; 0.000000, 0.761775, 0.000000;;, - 182;3;-0.000000, 0.761776,-0.000000;;, - 183;3;-0.000000, 0.761776, 0.000000;;, - 184;3; 0.000000, 0.761776, 0.000000;;, - 185;3; 0.000000, 0.761776,-0.000000;;, - 186;3;-0.000000, 0.761776, 0.000000;;, - 187;3; 0.000000, 0.761775, 0.000000;;, - 188;3;-0.000000, 0.761776, 0.000000;;, - 189;3;-0.000000, 0.761775, 0.000000;;, - 190;3;-0.000000, 0.761775,-0.000000;;, - 191;3; 0.000000, 0.761776, 0.000000;;, - 192;3; 0.000000, 0.761776,-0.000000;;, - 193;3; 0.000000, 0.761775,-0.000000;;, - 194;3;-0.000000, 0.761775, 0.000000;;, - 195;3; 0.000000, 0.761775,-0.000000;;, - 196;3; 0.000000, 0.761776, 0.000000;;, - 197;3; 0.000000, 0.761776, 0.000000;;, - 198;3;-0.000000, 0.761776, 0.000000;;, - 199;3; 0.000000, 0.761776, 0.000000;;, - 200;3; 0.000000, 0.761776, 0.000000;;, - 201;3; 0.000000, 0.761776, 0.000000;;, - 202;3; 0.000000, 0.761776, 0.000000;;, - 203;3; 0.000000, 0.761776, 0.000000;;, - 204;3; 0.000000, 0.761776, 0.000000;;, - 205;3; 0.000000, 0.761776, 0.000000;;, - 206;3; 0.000000, 0.761776, 0.000000;;, - 207;3; 0.000000, 0.761776, 0.000000;;, - 208;3; 0.000000, 0.761776, 0.000000;;, - 209;3; 0.000000, 0.761776, 0.000000;;, - 210;3;-0.000000, 0.761775, 0.000000;;, - 211;3; 0.000000, 0.761775, 0.000000;;, - 212;3;-0.000000, 0.761776,-0.000000;;, - 213;3;-0.000000, 0.761776,-0.000000;;, - 214;3;-0.000000, 0.761776,-0.000000;;, - 215;3;-0.000000, 0.761776,-0.000000;;, - 216;3;-0.000000, 0.761775, 0.000000;;, - 217;3; 0.000000, 0.761776,-0.000000;;, - 218;3; 0.000000, 0.761776,-0.000000;;, - 219;3; 0.000000, 0.761775,-0.000000;;, - 220;3;-0.000000, 0.761775,-0.000000;;, - 221;3;-0.000000, 0.761776,-0.000000;;, - 222;3;-0.000000, 0.761775, 0.000000;;, - 223;3; 0.000000, 0.761775, 0.000000;;, - 224;3;-0.000000, 0.761775, 0.000000;;, - 225;3;-0.000000, 0.761775, 0.000000;;, - 226;3; 0.000000, 0.761775, 0.000000;;, - 227;3; 0.000000, 0.761776, 0.000000;;, - 228;3;-0.000000, 0.761775, 0.000000;;, - 229;3;-0.000000, 0.761775,-0.000000;;, - 230;3;-0.000000, 0.761776,-0.000000;;, - 231;3;-0.000000, 0.761776, 0.000000;;, - 232;3;-0.000000, 0.761776,-0.000000;;, - 233;3;-0.000000, 0.761776,-0.000000;;, - 234;3;-0.000000, 0.761775,-0.000000;;, - 235;3; 0.000000, 0.761775,-0.000000;;, - 236;3;-0.000000, 0.761775,-0.000000;;, - 237;3; 0.000000, 0.761776,-0.000000;;, - 238;3; 0.000000, 0.761776,-0.000000;;, - 239;3; 0.000000, 0.761776, 0.000000;;, - 240;3; 0.000000, 0.761776, 0.000000;;, - 241;3; 0.000000, 0.761776, 0.000000;;, - 242;3; 0.000000, 0.761776, 0.000000;;, - 243;3; 0.000000, 0.761776, 0.000000;;, - 244;3; 0.000000, 0.761776, 0.000000;;, - 245;3; 0.000000, 0.761776, 0.000000;;, - 246;3; 0.000000, 0.761776, 0.000000;;, - 247;3; 0.000000, 0.761776, 0.000000;;, - 248;3; 0.000000, 0.761776, 0.000000;;, - 249;3; 0.000000, 0.761776, 0.000000;;; - } - } - Animation { - {Armature_Bone_006} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 1;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 2;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 3;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 4;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 5;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 6;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 7;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 8;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 9;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 10;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 11;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 12;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 13;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 14;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 15;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 16;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 17;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 18;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 19;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 20;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 21;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 22;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 23;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 24;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 25;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 26;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 27;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 28;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 29;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 30;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 31;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 32;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 33;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 34;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 35;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 36;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 37;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 38;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 39;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 40;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 41;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 42;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 43;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 44;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 45;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 46;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 47;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 48;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 49;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 50;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 51;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 52;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 53;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 54;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 55;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 56;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 57;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 58;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 59;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 60;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 61;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 62;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 63;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 64;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 65;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 66;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 67;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 68;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 69;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 70;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 71;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 72;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 73;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 74;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 75;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 76;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 77;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 78;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 79;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 80;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 81;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 82;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 83;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 84;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 85;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 86;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 87;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 88;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 89;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 90;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 91;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 92;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 93;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 94;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 95;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 96;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 97;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 98;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 99;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 100;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 101;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 102;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 103;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 104;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 105;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 106;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 107;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 108;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 109;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 110;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 111;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 112;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 113;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 114;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 115;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 116;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 117;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 118;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 119;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 120;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 121;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 122;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 123;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 124;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 125;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 126;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 127;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 128;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 129;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 130;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 131;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 132;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 133;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 134;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 135;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 136;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 137;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 138;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 139;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 140;4;-0.997332, 0.010306, 0.000875, 0.062699;;, - 141;4;-0.993715, 0.010317, 0.000548, 0.094092;;, - 142;4;-0.989070, 0.010331, 0.000129, 0.134399;;, - 143;4;-0.985452, 0.010342,-0.000198, 0.165792;;, - 144;4;-0.984168, 0.010345,-0.000314, 0.176937;;, - 145;4;-0.985452, 0.010342,-0.000198, 0.165792;;, - 146;4;-0.989070, 0.010331, 0.000129, 0.134399;;, - 147;4;-0.993715, 0.010317, 0.000548, 0.094092;;, - 148;4;-0.997332, 0.010306, 0.000875, 0.062699;;, - 149;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 150;4;-0.997332, 0.010306, 0.000875, 0.062699;;, - 151;4;-0.993715, 0.010317, 0.000548, 0.094092;;, - 152;4;-0.989070, 0.010331, 0.000129, 0.134399;;, - 153;4;-0.985452, 0.010342,-0.000198, 0.165792;;, - 154;4;-0.984168, 0.010345,-0.000314, 0.176937;;, - 155;4;-0.985452, 0.010342,-0.000198, 0.165792;;, - 156;4;-0.989070, 0.010331, 0.000129, 0.134399;;, - 157;4;-0.993715, 0.010317, 0.000548, 0.094092;;, - 158;4;-0.997332, 0.010306, 0.000875, 0.062699;;, - 159;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 160;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 161;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 162;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 163;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 164;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 165;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 166;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 167;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 168;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 169;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 170;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 171;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 172;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 173;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 174;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 175;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 176;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 177;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 178;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 179;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 180;4;-0.996222, 0.010292, 0.000896, 0.060490;;, - 181;4;-0.989016, 0.010259, 0.000610, 0.087384;;, - 182;4;-0.977300, 0.010205, 0.000144, 0.131113;;, - 183;4;-0.961975, 0.010136,-0.000464, 0.188308;;, - 184;4;-0.944614, 0.010056,-0.001154, 0.253100;;, - 185;4;-0.927254, 0.009977,-0.001844, 0.317893;;, - 186;4;-0.911929, 0.009907,-0.002453, 0.375088;;, - 187;4;-0.900212, 0.009854,-0.002918, 0.418816;;, - 188;4;-0.893006, 0.009821,-0.003205, 0.445711;;, - 189;4;-0.890612, 0.009810,-0.003300, 0.454647;;, - 190;4;-0.890612, 0.009810,-0.003300, 0.454647;;, - 191;4;-0.890612, 0.009810,-0.003300, 0.454647;;, - 192;4;-0.890612, 0.009810,-0.003300, 0.454647;;, - 193;4;-0.890612, 0.009810,-0.003300, 0.454647;;, - 194;4;-0.890612, 0.009810,-0.003300, 0.454647;;, - 195;4;-0.900212, 0.009854,-0.002918, 0.418816;;, - 196;4;-0.927254, 0.009977,-0.001844, 0.317893;;, - 197;4;-0.961975, 0.010136,-0.000464, 0.188308;;, - 198;4;-0.989016, 0.010259, 0.000610, 0.087384;;, - 199;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 200;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 201;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 202;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 203;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 204;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 205;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 206;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 207;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 208;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 209;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 210;4;-0.990009, 0.010266, 0.000632, 0.085376;;, - 211;4;-0.965766, 0.010163,-0.000380, 0.180644;;, - 212;4;-0.934637, 0.010030,-0.001680, 0.302968;;, - 213;4;-0.910393, 0.009927,-0.002692, 0.398236;;, - 214;4;-0.901786, 0.009890,-0.003052, 0.432059;;, - 215;4;-0.901865, 0.009891,-0.003051, 0.432032;;, - 216;4;-0.902206, 0.009894,-0.003048, 0.431780;;, - 217;4;-0.902967, 0.009901,-0.003039, 0.430986;;, - 218;4;-0.904188, 0.009911,-0.003021, 0.429450;;, - 219;4;-0.905764, 0.009924,-0.002996, 0.427239;;, - 220;4;-0.907566, 0.009938,-0.002968, 0.424786;;, - 221;4;-0.909706, 0.009955,-0.002932, 0.421521;;, - 222;4;-0.912409, 0.009974,-0.002868, 0.415698;;, - 223;4;-0.915743, 0.009993,-0.002764, 0.406065;;, - 224;4;-0.919575, 0.010013,-0.002622, 0.392778;;, - 225;4;-0.924002, 0.010032,-0.002443, 0.375955;;, - 226;4;-0.929238, 0.010054,-0.002223, 0.355160;;, - 227;4;-0.935239, 0.010078,-0.001962, 0.330570;;, - 228;4;-0.941911, 0.010104,-0.001665, 0.302576;;, - 229;4;-0.949107, 0.010131,-0.001339, 0.271828;;, - 230;4;-0.956621, 0.010158,-0.000994, 0.239259;;, - 231;4;-0.964195, 0.010185,-0.000643, 0.206050;;, - 232;4;-0.971541, 0.010211,-0.000299, 0.173535;;, - 233;4;-0.978372, 0.010235, 0.000024, 0.143066;;, - 234;4;-0.984435, 0.010255, 0.000311, 0.115855;;, - 235;4;-0.989532, 0.010272, 0.000555, 0.092855;;, - 236;4;-0.993535, 0.010286, 0.000747, 0.074709;;, - 237;4;-0.996383, 0.010295, 0.000884, 0.061752;;, - 238;4;-0.998067, 0.010301, 0.000965, 0.054069;;, - 239;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 240;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 241;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 242;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 243;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 244;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 245;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 246;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 247;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 248;4;-0.998617, 0.010303, 0.000991, 0.051554;;, - 249;4;-0.998617, 0.010303, 0.000991, 0.051554;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3;-0.000000, 0.660698,-0.000000;;, - 1;3;-0.000000, 0.660698,-0.000000;;, - 2;3;-0.000000, 0.660698,-0.000000;;, - 3;3;-0.000000, 0.660698,-0.000000;;, - 4;3; 0.000000, 0.660698,-0.000000;;, - 5;3;-0.000000, 0.660698,-0.000000;;, - 6;3;-0.000000, 0.660698,-0.000000;;, - 7;3; 0.000000, 0.660698,-0.000000;;, - 8;3;-0.000000, 0.660698,-0.000000;;, - 9;3; 0.000000, 0.660698,-0.000000;;, - 10;3;-0.000000, 0.660698,-0.000000;;, - 11;3; 0.000000, 0.660698, 0.000000;;, - 12;3;-0.000000, 0.660698,-0.000000;;, - 13;3;-0.000000, 0.660698,-0.000000;;, - 14;3; 0.000000, 0.660698, 0.000000;;, - 15;3; 0.000000, 0.660698,-0.000000;;, - 16;3;-0.000000, 0.660698,-0.000000;;, - 17;3;-0.000000, 0.660698,-0.000000;;, - 18;3;-0.000000, 0.660698,-0.000000;;, - 19;3;-0.000000, 0.660698,-0.000000;;, - 20;3;-0.000000, 0.660698,-0.000000;;, - 21;3; 0.000000, 0.660698,-0.000000;;, - 22;3;-0.000000, 0.660698, 0.000000;;, - 23;3; 0.000000, 0.660698,-0.000000;;, - 24;3;-0.000000, 0.660698,-0.000000;;, - 25;3; 0.000000, 0.660698,-0.000000;;, - 26;3;-0.000000, 0.660698,-0.000000;;, - 27;3; 0.000000, 0.660698,-0.000000;;, - 28;3; 0.000000, 0.660698,-0.000000;;, - 29;3; 0.000000, 0.660698,-0.000000;;, - 30;3; 0.000000, 0.660698,-0.000000;;, - 31;3;-0.000000, 0.660698, 0.000000;;, - 32;3; 0.000000, 0.660698,-0.000000;;, - 33;3; 0.000000, 0.660698,-0.000000;;, - 34;3; 0.000000, 0.660698,-0.000000;;, - 35;3; 0.000000, 0.660698,-0.000000;;, - 36;3; 0.000000, 0.660698,-0.000000;;, - 37;3; 0.000000, 0.660698,-0.000000;;, - 38;3; 0.000000, 0.660698,-0.000000;;, - 39;3; 0.000000, 0.660698,-0.000000;;, - 40;3;-0.000000, 0.660698,-0.000000;;, - 41;3;-0.000000, 0.660698,-0.000000;;, - 42;3; 0.000000, 0.660698,-0.000000;;, - 43;3;-0.000000, 0.660698,-0.000000;;, - 44;3; 0.000000, 0.660698,-0.000000;;, - 45;3;-0.000000, 0.660698,-0.000000;;, - 46;3; 0.000000, 0.660698,-0.000000;;, - 47;3;-0.000000, 0.660698,-0.000000;;, - 48;3;-0.000000, 0.660698,-0.000000;;, - 49;3;-0.000000, 0.660698,-0.000000;;, - 50;3;-0.000000, 0.660698,-0.000000;;, - 51;3; 0.000000, 0.660698,-0.000000;;, - 52;3; 0.000000, 0.660698,-0.000000;;, - 53;3;-0.000000, 0.660698,-0.000000;;, - 54;3;-0.000000, 0.660698,-0.000000;;, - 55;3; 0.000000, 0.660698,-0.000000;;, - 56;3; 0.000000, 0.660698,-0.000000;;, - 57;3; 0.000000, 0.660698,-0.000000;;, - 58;3;-0.000000, 0.660698,-0.000000;;, - 59;3;-0.000000, 0.660698,-0.000000;;, - 60;3;-0.000000, 0.660698,-0.000000;;, - 61;3;-0.000000, 0.660698,-0.000000;;, - 62;3;-0.000000, 0.660698,-0.000000;;, - 63;3;-0.000000, 0.660698,-0.000000;;, - 64;3;-0.000000, 0.660698,-0.000000;;, - 65;3;-0.000000, 0.660698,-0.000000;;, - 66;3;-0.000000, 0.660698,-0.000000;;, - 67;3;-0.000000, 0.660698,-0.000000;;, - 68;3;-0.000000, 0.660698,-0.000000;;, - 69;3;-0.000000, 0.660698,-0.000000;;, - 70;3;-0.000000, 0.660698,-0.000000;;, - 71;3;-0.000000, 0.660698,-0.000000;;, - 72;3;-0.000000, 0.660698,-0.000000;;, - 73;3;-0.000000, 0.660698,-0.000000;;, - 74;3;-0.000000, 0.660698,-0.000000;;, - 75;3;-0.000000, 0.660698,-0.000000;;, - 76;3;-0.000000, 0.660698,-0.000000;;, - 77;3;-0.000000, 0.660698,-0.000000;;, - 78;3;-0.000000, 0.660698,-0.000000;;, - 79;3;-0.000000, 0.660698,-0.000000;;, - 80;3;-0.000000, 0.660698,-0.000000;;, - 81;3;-0.000000, 0.660698,-0.000000;;, - 82;3;-0.000000, 0.660698,-0.000000;;, - 83;3;-0.000000, 0.660698,-0.000000;;, - 84;3;-0.000000, 0.660698,-0.000000;;, - 85;3;-0.000000, 0.660698,-0.000000;;, - 86;3;-0.000000, 0.660698,-0.000000;;, - 87;3;-0.000000, 0.660698,-0.000000;;, - 88;3;-0.000000, 0.660698,-0.000000;;, - 89;3;-0.000000, 0.660698,-0.000000;;, - 90;3;-0.000000, 0.660698,-0.000000;;, - 91;3;-0.000000, 0.660698,-0.000000;;, - 92;3;-0.000000, 0.660698,-0.000000;;, - 93;3;-0.000000, 0.660698,-0.000000;;, - 94;3;-0.000000, 0.660698,-0.000000;;, - 95;3;-0.000000, 0.660698,-0.000000;;, - 96;3;-0.000000, 0.660698,-0.000000;;, - 97;3;-0.000000, 0.660698,-0.000000;;, - 98;3;-0.000000, 0.660698,-0.000000;;, - 99;3;-0.000000, 0.660698,-0.000000;;, - 100;3;-0.000000, 0.660698,-0.000000;;, - 101;3;-0.000000, 0.660698,-0.000000;;, - 102;3;-0.000000, 0.660698,-0.000000;;, - 103;3;-0.000000, 0.660698,-0.000000;;, - 104;3;-0.000000, 0.660698,-0.000000;;, - 105;3;-0.000000, 0.660698,-0.000000;;, - 106;3;-0.000000, 0.660698,-0.000000;;, - 107;3;-0.000000, 0.660698,-0.000000;;, - 108;3;-0.000000, 0.660698,-0.000000;;, - 109;3;-0.000000, 0.660698,-0.000000;;, - 110;3;-0.000000, 0.660698,-0.000000;;, - 111;3;-0.000000, 0.660698,-0.000000;;, - 112;3;-0.000000, 0.660698,-0.000000;;, - 113;3;-0.000000, 0.660698,-0.000000;;, - 114;3;-0.000000, 0.660698,-0.000000;;, - 115;3;-0.000000, 0.660698,-0.000000;;, - 116;3;-0.000000, 0.660698,-0.000000;;, - 117;3;-0.000000, 0.660698,-0.000000;;, - 118;3;-0.000000, 0.660698,-0.000000;;, - 119;3;-0.000000, 0.660698,-0.000000;;, - 120;3;-0.000000, 0.660698,-0.000000;;, - 121;3;-0.000000, 0.660698,-0.000000;;, - 122;3;-0.000000, 0.660698,-0.000000;;, - 123;3;-0.000000, 0.660698,-0.000000;;, - 124;3;-0.000000, 0.660698,-0.000000;;, - 125;3;-0.000000, 0.660698,-0.000000;;, - 126;3;-0.000000, 0.660698,-0.000000;;, - 127;3;-0.000000, 0.660698,-0.000000;;, - 128;3;-0.000000, 0.660698,-0.000000;;, - 129;3;-0.000000, 0.660698,-0.000000;;, - 130;3;-0.000000, 0.660698,-0.000000;;, - 131;3;-0.000000, 0.660698,-0.000000;;, - 132;3;-0.000000, 0.660698,-0.000000;;, - 133;3;-0.000000, 0.660698,-0.000000;;, - 134;3;-0.000000, 0.660698,-0.000000;;, - 135;3;-0.000000, 0.660698,-0.000000;;, - 136;3;-0.000000, 0.660698,-0.000000;;, - 137;3;-0.000000, 0.660698,-0.000000;;, - 138;3;-0.000000, 0.660698,-0.000000;;, - 139;3;-0.000000, 0.660698,-0.000000;;, - 140;3;-0.000000, 0.660698,-0.000000;;, - 141;3; 0.000000, 0.660698,-0.000000;;, - 142;3;-0.000000, 0.660698,-0.000000;;, - 143;3;-0.000000, 0.660698,-0.000000;;, - 144;3;-0.000000, 0.660698,-0.000000;;, - 145;3;-0.000000, 0.660698, 0.000000;;, - 146;3;-0.000000, 0.660698,-0.000000;;, - 147;3; 0.000000, 0.660698,-0.000000;;, - 148;3;-0.000000, 0.660698,-0.000000;;, - 149;3;-0.000000, 0.660698,-0.000000;;, - 150;3;-0.000000, 0.660698,-0.000000;;, - 151;3; 0.000000, 0.660698,-0.000000;;, - 152;3;-0.000000, 0.660698,-0.000000;;, - 153;3;-0.000000, 0.660698,-0.000000;;, - 154;3;-0.000000, 0.660698,-0.000000;;, - 155;3;-0.000000, 0.660698, 0.000000;;, - 156;3;-0.000000, 0.660698,-0.000000;;, - 157;3; 0.000000, 0.660698,-0.000000;;, - 158;3;-0.000000, 0.660698,-0.000000;;, - 159;3;-0.000000, 0.660698,-0.000000;;, - 160;3;-0.000000, 0.660698,-0.000000;;, - 161;3;-0.000000, 0.660698,-0.000000;;, - 162;3;-0.000000, 0.660698,-0.000000;;, - 163;3;-0.000000, 0.660698,-0.000000;;, - 164;3;-0.000000, 0.660698,-0.000000;;, - 165;3;-0.000000, 0.660698,-0.000000;;, - 166;3;-0.000000, 0.660698,-0.000000;;, - 167;3;-0.000000, 0.660698,-0.000000;;, - 168;3;-0.000000, 0.660698,-0.000000;;, - 169;3;-0.000000, 0.660698,-0.000000;;, - 170;3;-0.000000, 0.660698,-0.000000;;, - 171;3;-0.000000, 0.660698,-0.000000;;, - 172;3;-0.000000, 0.660698,-0.000000;;, - 173;3;-0.000000, 0.660698,-0.000000;;, - 174;3;-0.000000, 0.660698,-0.000000;;, - 175;3;-0.000000, 0.660698,-0.000000;;, - 176;3;-0.000000, 0.660698,-0.000000;;, - 177;3;-0.000000, 0.660698,-0.000000;;, - 178;3;-0.000000, 0.660698,-0.000000;;, - 179;3;-0.000000, 0.660698,-0.000000;;, - 180;3;-0.000000, 0.660698,-0.000000;;, - 181;3; 0.000000, 0.660698,-0.000000;;, - 182;3; 0.000000, 0.660698,-0.000000;;, - 183;3;-0.000000, 0.660698,-0.000000;;, - 184;3; 0.000000, 0.660699,-0.000000;;, - 185;3;-0.000000, 0.660699,-0.000000;;, - 186;3;-0.000000, 0.660698,-0.000000;;, - 187;3;-0.000000, 0.660698,-0.000000;;, - 188;3; 0.000000, 0.660698, 0.000000;;, - 189;3;-0.000000, 0.660698,-0.000000;;, - 190;3;-0.000000, 0.660699,-0.000000;;, - 191;3;-0.000000, 0.660698,-0.000000;;, - 192;3;-0.000000, 0.660698,-0.000000;;, - 193;3; 0.000000, 0.660698,-0.000000;;, - 194;3;-0.000000, 0.660698,-0.000000;;, - 195;3;-0.000001, 0.660698, 0.000000;;, - 196;3; 0.000000, 0.660698, 0.000000;;, - 197;3; 0.000000, 0.660698,-0.000000;;, - 198;3;-0.000000, 0.660698,-0.000000;;, - 199;3;-0.000000, 0.660698,-0.000000;;, - 200;3;-0.000000, 0.660698,-0.000000;;, - 201;3;-0.000000, 0.660698,-0.000000;;, - 202;3;-0.000000, 0.660698,-0.000000;;, - 203;3;-0.000000, 0.660698,-0.000000;;, - 204;3;-0.000000, 0.660698,-0.000000;;, - 205;3;-0.000000, 0.660698,-0.000000;;, - 206;3;-0.000000, 0.660698,-0.000000;;, - 207;3;-0.000000, 0.660698,-0.000000;;, - 208;3;-0.000000, 0.660698,-0.000000;;, - 209;3;-0.000000, 0.660698,-0.000000;;, - 210;3;-0.000000, 0.660698,-0.000000;;, - 211;3;-0.000000, 0.660698, 0.000000;;, - 212;3;-0.000000, 0.660699, 0.000000;;, - 213;3; 0.000000, 0.660698,-0.000000;;, - 214;3; 0.000000, 0.660698, 0.000000;;, - 215;3; 0.000000, 0.660698, 0.000000;;, - 216;3; 0.000000, 0.660698, 0.000000;;, - 217;3; 0.000000, 0.660698,-0.000000;;, - 218;3; 0.000000, 0.660698,-0.000000;;, - 219;3;-0.000000, 0.660698, 0.000000;;, - 220;3;-0.000000, 0.660698,-0.000000;;, - 221;3;-0.000000, 0.660699, 0.000000;;, - 222;3; 0.000000, 0.660698, 0.000000;;, - 223;3; 0.000000, 0.660698,-0.000000;;, - 224;3; 0.000000, 0.660698,-0.000000;;, - 225;3; 0.000000, 0.660698, 0.000000;;, - 226;3; 0.000000, 0.660698,-0.000000;;, - 227;3;-0.000000, 0.660698, 0.000000;;, - 228;3;-0.000000, 0.660698,-0.000000;;, - 229;3;-0.000000, 0.660698, 0.000000;;, - 230;3; 0.000000, 0.660698, 0.000000;;, - 231;3;-0.000000, 0.660698, 0.000000;;, - 232;3; 0.000000, 0.660698,-0.000000;;, - 233;3; 0.000000, 0.660698,-0.000000;;, - 234;3; 0.000000, 0.660698,-0.000000;;, - 235;3;-0.000000, 0.660698, 0.000000;;, - 236;3;-0.000000, 0.660698,-0.000000;;, - 237;3;-0.000000, 0.660698,-0.000000;;, - 238;3; 0.000000, 0.660698, 0.000000;;, - 239;3;-0.000000, 0.660698,-0.000000;;, - 240;3;-0.000000, 0.660698,-0.000000;;, - 241;3;-0.000000, 0.660698,-0.000000;;, - 242;3;-0.000000, 0.660698,-0.000000;;, - 243;3;-0.000000, 0.660698,-0.000000;;, - 244;3;-0.000000, 0.660698,-0.000000;;, - 245;3;-0.000000, 0.660698,-0.000000;;, - 246;3;-0.000000, 0.660698,-0.000000;;, - 247;3;-0.000000, 0.660698,-0.000000;;, - 248;3;-0.000000, 0.660698,-0.000000;;, - 249;3;-0.000000, 0.660698,-0.000000;;; - } - } - Animation { - {Armature_Bone_004} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 1;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 2;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 3;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 4;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 5;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 6;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 7;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 8;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 9;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 10;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 11;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 12;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 13;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 14;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 15;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 16;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 17;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 18;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 19;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 20;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 21;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 22;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 23;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 24;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 25;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 26;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 27;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 28;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 29;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 30;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 31;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 32;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 33;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 34;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 35;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 36;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 37;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 38;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 39;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 40;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 41;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 42;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 43;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 44;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 45;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 46;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 47;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 48;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 49;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 50;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 51;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 52;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 53;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 54;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 55;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 56;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 57;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 58;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 59;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 60;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 61;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 62;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 63;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 64;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 65;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 66;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 67;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 68;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 69;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 70;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 71;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 72;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 73;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 74;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 75;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 76;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 77;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 78;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 79;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 80;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 81;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 82;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 83;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 84;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 85;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 86;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 87;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 88;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 89;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 90;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 91;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 92;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 93;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 94;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 95;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 96;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 97;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 98;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 99;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 100;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 101;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 102;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 103;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 104;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 105;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 106;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 107;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 108;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 109;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 110;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 111;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 112;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 113;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 114;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 115;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 116;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 117;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 118;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 119;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 120;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 121;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 122;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 123;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 124;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 125;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 126;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 127;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 128;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 129;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 130;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 131;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 132;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 133;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 134;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 135;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 136;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 137;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 138;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 139;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 140;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 141;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 142;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 143;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 144;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 145;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 146;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 147;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 148;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 149;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 150;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 151;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 152;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 153;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 154;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 155;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 156;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 157;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 158;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 159;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 160;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 161;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 162;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 163;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 164;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 165;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 166;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 167;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 168;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 169;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 170;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 171;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 172;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 173;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 174;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 175;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 176;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 177;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 178;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 179;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 180;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 181;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 182;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 183;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 184;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 185;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 186;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 187;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 188;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 189;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 190;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 191;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 192;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 193;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 194;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 195;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 196;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 197;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 198;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 199;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 200;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 201;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 202;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 203;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 204;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 205;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 206;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 207;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 208;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 209;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 210;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 211;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 212;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 213;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 214;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 215;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 216;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 217;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 218;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 219;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 220;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 221;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 222;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 223;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 224;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 225;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 226;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 227;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 228;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 229;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 230;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 231;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 232;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 233;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 234;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 235;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 236;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 237;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 238;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 239;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 240;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 241;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 242;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 243;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 244;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 245;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 246;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 247;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 248;4;-0.972673, 0.149616, 0.026528, 0.175551;;, - 249;4;-0.972673, 0.149616, 0.026528, 0.175551;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3; 0.000000, 0.826434, 0.000000;;, - 1;3; 0.000000, 0.826434, 0.000000;;, - 2;3; 0.000000, 0.826434, 0.000000;;, - 3;3; 0.000000, 0.826434, 0.000000;;, - 4;3; 0.000000, 0.826434, 0.000000;;, - 5;3; 0.000000, 0.826434, 0.000000;;, - 6;3; 0.000000, 0.826434, 0.000000;;, - 7;3; 0.000000, 0.826434, 0.000000;;, - 8;3; 0.000000, 0.826434, 0.000000;;, - 9;3; 0.000000, 0.826434, 0.000000;;, - 10;3; 0.000000, 0.826434, 0.000000;;, - 11;3; 0.000000, 0.826434, 0.000000;;, - 12;3; 0.000000, 0.826434, 0.000000;;, - 13;3; 0.000000, 0.826434, 0.000000;;, - 14;3; 0.000000, 0.826434, 0.000000;;, - 15;3; 0.000000, 0.826434, 0.000000;;, - 16;3; 0.000000, 0.826434, 0.000000;;, - 17;3; 0.000000, 0.826434, 0.000000;;, - 18;3; 0.000000, 0.826434, 0.000000;;, - 19;3; 0.000000, 0.826434, 0.000000;;, - 20;3; 0.000000, 0.826434, 0.000000;;, - 21;3; 0.000000, 0.826434, 0.000000;;, - 22;3; 0.000000, 0.826434, 0.000000;;, - 23;3; 0.000000, 0.826434, 0.000000;;, - 24;3; 0.000000, 0.826434, 0.000000;;, - 25;3; 0.000000, 0.826434, 0.000000;;, - 26;3; 0.000000, 0.826434, 0.000000;;, - 27;3; 0.000000, 0.826434, 0.000000;;, - 28;3; 0.000000, 0.826434, 0.000000;;, - 29;3; 0.000000, 0.826434, 0.000000;;, - 30;3; 0.000000, 0.826434, 0.000000;;, - 31;3; 0.000000, 0.826434, 0.000000;;, - 32;3; 0.000000, 0.826434, 0.000000;;, - 33;3; 0.000000, 0.826434, 0.000000;;, - 34;3; 0.000000, 0.826434, 0.000000;;, - 35;3; 0.000000, 0.826434, 0.000000;;, - 36;3; 0.000000, 0.826434, 0.000000;;, - 37;3; 0.000000, 0.826434, 0.000000;;, - 38;3; 0.000000, 0.826434, 0.000000;;, - 39;3; 0.000000, 0.826434, 0.000000;;, - 40;3; 0.000000, 0.826434, 0.000000;;, - 41;3; 0.000000, 0.826434, 0.000000;;, - 42;3; 0.000000, 0.826434, 0.000000;;, - 43;3; 0.000000, 0.826434, 0.000000;;, - 44;3; 0.000000, 0.826434, 0.000000;;, - 45;3; 0.000000, 0.826434, 0.000000;;, - 46;3; 0.000000, 0.826434, 0.000000;;, - 47;3; 0.000000, 0.826434, 0.000000;;, - 48;3; 0.000000, 0.826434, 0.000000;;, - 49;3; 0.000000, 0.826434, 0.000000;;, - 50;3; 0.000000, 0.826434, 0.000000;;, - 51;3; 0.000000, 0.826434, 0.000000;;, - 52;3; 0.000000, 0.826434, 0.000000;;, - 53;3; 0.000000, 0.826434, 0.000000;;, - 54;3; 0.000000, 0.826434, 0.000000;;, - 55;3; 0.000000, 0.826434, 0.000000;;, - 56;3; 0.000000, 0.826434, 0.000000;;, - 57;3; 0.000000, 0.826434, 0.000000;;, - 58;3; 0.000000, 0.826434, 0.000000;;, - 59;3; 0.000000, 0.826434, 0.000000;;, - 60;3; 0.000000, 0.826434, 0.000000;;, - 61;3; 0.000000, 0.826434, 0.000000;;, - 62;3; 0.000000, 0.826434, 0.000000;;, - 63;3; 0.000000, 0.826434, 0.000000;;, - 64;3; 0.000000, 0.826434, 0.000000;;, - 65;3; 0.000000, 0.826434, 0.000000;;, - 66;3; 0.000000, 0.826434, 0.000000;;, - 67;3; 0.000000, 0.826434, 0.000000;;, - 68;3; 0.000000, 0.826434, 0.000000;;, - 69;3; 0.000000, 0.826434, 0.000000;;, - 70;3; 0.000000, 0.826434, 0.000000;;, - 71;3; 0.000000, 0.826434, 0.000000;;, - 72;3; 0.000000, 0.826434, 0.000000;;, - 73;3; 0.000000, 0.826434, 0.000000;;, - 74;3; 0.000000, 0.826434, 0.000000;;, - 75;3; 0.000000, 0.826434, 0.000000;;, - 76;3; 0.000000, 0.826434, 0.000000;;, - 77;3; 0.000000, 0.826434, 0.000000;;, - 78;3; 0.000000, 0.826434, 0.000000;;, - 79;3; 0.000000, 0.826434, 0.000000;;, - 80;3; 0.000000, 0.826434, 0.000000;;, - 81;3; 0.000000, 0.826434, 0.000000;;, - 82;3; 0.000000, 0.826434, 0.000000;;, - 83;3; 0.000000, 0.826434, 0.000000;;, - 84;3; 0.000000, 0.826434, 0.000000;;, - 85;3; 0.000000, 0.826434, 0.000000;;, - 86;3; 0.000000, 0.826434, 0.000000;;, - 87;3; 0.000000, 0.826434, 0.000000;;, - 88;3; 0.000000, 0.826434, 0.000000;;, - 89;3; 0.000000, 0.826434, 0.000000;;, - 90;3; 0.000000, 0.826434, 0.000000;;, - 91;3; 0.000000, 0.826434, 0.000000;;, - 92;3; 0.000000, 0.826434, 0.000000;;, - 93;3; 0.000000, 0.826434, 0.000000;;, - 94;3; 0.000000, 0.826434, 0.000000;;, - 95;3; 0.000000, 0.826434, 0.000000;;, - 96;3; 0.000000, 0.826434, 0.000000;;, - 97;3; 0.000000, 0.826434, 0.000000;;, - 98;3; 0.000000, 0.826434, 0.000000;;, - 99;3; 0.000000, 0.826434, 0.000000;;, - 100;3; 0.000000, 0.826434, 0.000000;;, - 101;3; 0.000000, 0.826434, 0.000000;;, - 102;3; 0.000000, 0.826434, 0.000000;;, - 103;3; 0.000000, 0.826434, 0.000000;;, - 104;3; 0.000000, 0.826434, 0.000000;;, - 105;3; 0.000000, 0.826434, 0.000000;;, - 106;3; 0.000000, 0.826434, 0.000000;;, - 107;3; 0.000000, 0.826434, 0.000000;;, - 108;3; 0.000000, 0.826434, 0.000000;;, - 109;3; 0.000000, 0.826434, 0.000000;;, - 110;3; 0.000000, 0.826434, 0.000000;;, - 111;3; 0.000000, 0.826434, 0.000000;;, - 112;3; 0.000000, 0.826434, 0.000000;;, - 113;3; 0.000000, 0.826434, 0.000000;;, - 114;3; 0.000000, 0.826434, 0.000000;;, - 115;3; 0.000000, 0.826434, 0.000000;;, - 116;3; 0.000000, 0.826434, 0.000000;;, - 117;3; 0.000000, 0.826434, 0.000000;;, - 118;3; 0.000000, 0.826434, 0.000000;;, - 119;3; 0.000000, 0.826434, 0.000000;;, - 120;3; 0.000000, 0.826434, 0.000000;;, - 121;3; 0.000000, 0.826434, 0.000000;;, - 122;3; 0.000000, 0.826434, 0.000000;;, - 123;3; 0.000000, 0.826434, 0.000000;;, - 124;3; 0.000000, 0.826434, 0.000000;;, - 125;3; 0.000000, 0.826434, 0.000000;;, - 126;3; 0.000000, 0.826434, 0.000000;;, - 127;3; 0.000000, 0.826434, 0.000000;;, - 128;3; 0.000000, 0.826434, 0.000000;;, - 129;3; 0.000000, 0.826434, 0.000000;;, - 130;3; 0.000000, 0.826434, 0.000000;;, - 131;3; 0.000000, 0.826434, 0.000000;;, - 132;3; 0.000000, 0.826434, 0.000000;;, - 133;3; 0.000000, 0.826434, 0.000000;;, - 134;3; 0.000000, 0.826434, 0.000000;;, - 135;3; 0.000000, 0.826434, 0.000000;;, - 136;3; 0.000000, 0.826434, 0.000000;;, - 137;3; 0.000000, 0.826434, 0.000000;;, - 138;3; 0.000000, 0.826434, 0.000000;;, - 139;3; 0.000000, 0.826434, 0.000000;;, - 140;3; 0.000000, 0.826434, 0.000000;;, - 141;3; 0.000000, 0.826434, 0.000000;;, - 142;3; 0.000000, 0.826434, 0.000000;;, - 143;3; 0.000000, 0.826434, 0.000000;;, - 144;3; 0.000000, 0.826434, 0.000000;;, - 145;3; 0.000000, 0.826434, 0.000000;;, - 146;3; 0.000000, 0.826434, 0.000000;;, - 147;3; 0.000000, 0.826434, 0.000000;;, - 148;3; 0.000000, 0.826434, 0.000000;;, - 149;3; 0.000000, 0.826434, 0.000000;;, - 150;3; 0.000000, 0.826434, 0.000000;;, - 151;3; 0.000000, 0.826434, 0.000000;;, - 152;3; 0.000000, 0.826434, 0.000000;;, - 153;3; 0.000000, 0.826434, 0.000000;;, - 154;3; 0.000000, 0.826434, 0.000000;;, - 155;3; 0.000000, 0.826434, 0.000000;;, - 156;3; 0.000000, 0.826434, 0.000000;;, - 157;3; 0.000000, 0.826434, 0.000000;;, - 158;3; 0.000000, 0.826434, 0.000000;;, - 159;3; 0.000000, 0.826434, 0.000000;;, - 160;3; 0.000000, 0.826434, 0.000000;;, - 161;3; 0.000000, 0.826434, 0.000000;;, - 162;3; 0.000000, 0.826434, 0.000000;;, - 163;3; 0.000000, 0.826434, 0.000000;;, - 164;3; 0.000000, 0.826434, 0.000000;;, - 165;3; 0.000000, 0.826434, 0.000000;;, - 166;3; 0.000000, 0.826434, 0.000000;;, - 167;3; 0.000000, 0.826434, 0.000000;;, - 168;3; 0.000000, 0.826434, 0.000000;;, - 169;3; 0.000000, 0.826434, 0.000000;;, - 170;3; 0.000000, 0.826434, 0.000000;;, - 171;3; 0.000000, 0.826434, 0.000000;;, - 172;3; 0.000000, 0.826434, 0.000000;;, - 173;3; 0.000000, 0.826434, 0.000000;;, - 174;3; 0.000000, 0.826434, 0.000000;;, - 175;3; 0.000000, 0.826434, 0.000000;;, - 176;3; 0.000000, 0.826434, 0.000000;;, - 177;3; 0.000000, 0.826434, 0.000000;;, - 178;3; 0.000000, 0.826434, 0.000000;;, - 179;3; 0.000000, 0.826434, 0.000000;;, - 180;3; 0.000000, 0.826434, 0.000000;;, - 181;3; 0.000000, 0.826434, 0.000000;;, - 182;3; 0.000000, 0.826434, 0.000000;;, - 183;3; 0.000000, 0.826434, 0.000000;;, - 184;3; 0.000000, 0.826434, 0.000000;;, - 185;3; 0.000000, 0.826434, 0.000000;;, - 186;3;-0.000000, 0.826434,-0.000000;;, - 187;3;-0.000000, 0.826434,-0.000000;;, - 188;3;-0.000000, 0.826434, 0.000000;;, - 189;3;-0.000000, 0.826434, 0.000000;;, - 190;3;-0.000000, 0.826434,-0.000000;;, - 191;3; 0.000000, 0.826434, 0.000000;;, - 192;3; 0.000000, 0.826434, 0.000000;;, - 193;3; 0.000000, 0.826434, 0.000000;;, - 194;3; 0.000000, 0.826434,-0.000000;;, - 195;3; 0.000000, 0.826434,-0.000000;;, - 196;3; 0.000000, 0.826434, 0.000000;;, - 197;3; 0.000000, 0.826434,-0.000000;;, - 198;3; 0.000000, 0.826434,-0.000000;;, - 199;3; 0.000000, 0.826434, 0.000000;;, - 200;3; 0.000000, 0.826434, 0.000000;;, - 201;3; 0.000000, 0.826434, 0.000000;;, - 202;3; 0.000000, 0.826434, 0.000000;;, - 203;3; 0.000000, 0.826434, 0.000000;;, - 204;3; 0.000000, 0.826434, 0.000000;;, - 205;3; 0.000000, 0.826434, 0.000000;;, - 206;3; 0.000000, 0.826434, 0.000000;;, - 207;3; 0.000000, 0.826434, 0.000000;;, - 208;3; 0.000000, 0.826434, 0.000000;;, - 209;3; 0.000000, 0.826434, 0.000000;;, - 210;3;-0.000000, 0.826434, 0.000000;;, - 211;3;-0.000000, 0.826434, 0.000000;;, - 212;3; 0.000000, 0.826434,-0.000000;;, - 213;3; 0.000000, 0.826434, 0.000000;;, - 214;3; 0.000000, 0.826434, 0.000000;;, - 215;3;-0.000000, 0.826434,-0.000000;;, - 216;3;-0.000000, 0.826434,-0.000000;;, - 217;3;-0.000000, 0.826434,-0.000000;;, - 218;3;-0.000000, 0.826434, 0.000000;;, - 219;3;-0.000000, 0.826434,-0.000000;;, - 220;3;-0.000000, 0.826434, 0.000000;;, - 221;3; 0.000000, 0.826434, 0.000000;;, - 222;3;-0.000000, 0.826434, 0.000000;;, - 223;3; 0.000000, 0.826434,-0.000000;;, - 224;3; 0.000000, 0.826434,-0.000000;;, - 225;3; 0.000000, 0.826434, 0.000000;;, - 226;3; 0.000000, 0.826434, 0.000000;;, - 227;3; 0.000000, 0.826434, 0.000000;;, - 228;3;-0.000000, 0.826434, 0.000000;;, - 229;3; 0.000000, 0.826434, 0.000000;;, - 230;3; 0.000000, 0.826434, 0.000000;;, - 231;3; 0.000000, 0.826434,-0.000000;;, - 232;3;-0.000000, 0.826434,-0.000000;;, - 233;3; 0.000000, 0.826434, 0.000000;;, - 234;3; 0.000000, 0.826434, 0.000000;;, - 235;3; 0.000000, 0.826434, 0.000000;;, - 236;3; 0.000000, 0.826434, 0.000000;;, - 237;3; 0.000000, 0.826434, 0.000000;;, - 238;3; 0.000000, 0.826434, 0.000000;;, - 239;3; 0.000000, 0.826434, 0.000000;;, - 240;3; 0.000000, 0.826434, 0.000000;;, - 241;3; 0.000000, 0.826434, 0.000000;;, - 242;3; 0.000000, 0.826434, 0.000000;;, - 243;3; 0.000000, 0.826434, 0.000000;;, - 244;3; 0.000000, 0.826434, 0.000000;;, - 245;3; 0.000000, 0.826434, 0.000000;;, - 246;3; 0.000000, 0.826434, 0.000000;;, - 247;3; 0.000000, 0.826434, 0.000000;;, - 248;3; 0.000000, 0.826434, 0.000000;;, - 249;3; 0.000000, 0.826434, 0.000000;;; - } - } - Animation { - {Armature_Bone_007} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 1;4;-0.515659,-0.636389,-0.395534, 0.415448;;, - 2;4;-0.516387,-0.635621,-0.396654, 0.414436;;, - 3;4;-0.517605,-0.634337,-0.398525, 0.412744;;, - 4;4;-0.519301,-0.632548,-0.401133, 0.410387;;, - 5;4;-0.521451,-0.630280,-0.404438, 0.407399;;, - 6;4;-0.524013,-0.627579,-0.408374, 0.403840;;, - 7;4;-0.526923,-0.624511,-0.412847, 0.399796;;, - 8;4;-0.530100,-0.621161,-0.417729, 0.395382;;, - 9;4;-0.533444,-0.617634,-0.422869, 0.390735;;, - 10;4;-0.536846,-0.614047,-0.428097, 0.386009;;, - 11;4;-0.540190,-0.610520,-0.433237, 0.381362;;, - 12;4;-0.543367,-0.607170,-0.438119, 0.376948;;, - 13;4;-0.546277,-0.604101,-0.442591, 0.372904;;, - 14;4;-0.548838,-0.601400,-0.446528, 0.369345;;, - 15;4;-0.550988,-0.599133,-0.449833, 0.366357;;, - 16;4;-0.552685,-0.597344,-0.452440, 0.364000;;, - 17;4;-0.553903,-0.596060,-0.454312, 0.362308;;, - 18;4;-0.554631,-0.595291,-0.455431, 0.361296;;, - 19;4;-0.554872,-0.595037,-0.455802, 0.360961;;, - 20;4;-0.554616,-0.595287,-0.455415, 0.361298;;, - 21;4;-0.553843,-0.596044,-0.454247, 0.362316;;, - 22;4;-0.552551,-0.597310,-0.452293, 0.364019;;, - 23;4;-0.550749,-0.599077,-0.449568, 0.366395;;, - 24;4;-0.548460,-0.601325,-0.446106, 0.369416;;, - 25;4;-0.545722,-0.604014,-0.441965, 0.373031;;, - 26;4;-0.542594,-0.607091,-0.437232, 0.377164;;, - 27;4;-0.539154,-0.610481,-0.432025, 0.381716;;, - 28;4;-0.535495,-0.614092,-0.426485, 0.386563;;, - 29;4;-0.531725,-0.617821,-0.420774, 0.391564;;, - 30;4;-0.527960,-0.621555,-0.415067, 0.396569;;, - 31;4;-0.524314,-0.625182,-0.409537, 0.401427;;, - 32;4;-0.520896,-0.628599,-0.404346, 0.405996;;, - 33;4;-0.517798,-0.631712,-0.399636, 0.410154;;, - 34;4;-0.515097,-0.634448,-0.395524, 0.413798;;, - 35;4;-0.512852,-0.636749,-0.392095, 0.416855;;, - 36;4;-0.511099,-0.638578,-0.389408, 0.419271;;, - 37;4;-0.509861,-0.639911,-0.387496, 0.421018;;, - 38;4;-0.509147,-0.640741,-0.386373, 0.422084;;, - 39;4;-0.508954,-0.641069,-0.386035, 0.422471;;, - 40;4;-0.509050,-0.641118,-0.386131, 0.422482;;, - 41;4;-0.509208,-0.641107,-0.386322, 0.422412;;, - 42;4;-0.509430,-0.641035,-0.386608, 0.422259;;, - 43;4;-0.509713,-0.640903,-0.386987, 0.422025;;, - 44;4;-0.510054,-0.640712,-0.387455, 0.421713;;, - 45;4;-0.510449,-0.640466,-0.388004, 0.421328;;, - 46;4;-0.510889,-0.640172,-0.388624, 0.420879;;, - 47;4;-0.511365,-0.639837,-0.389299, 0.420378;;, - 48;4;-0.511864,-0.639472,-0.390012, 0.419839;;, - 49;4;-0.512374,-0.639088,-0.390743, 0.419279;;, - 50;4;-0.512879,-0.638699,-0.391471, 0.418715;;, - 51;4;-0.513365,-0.638318,-0.392174, 0.418165;;, - 52;4;-0.513819,-0.637956,-0.392832, 0.417646;;, - 53;4;-0.514229,-0.637625,-0.393429, 0.417174;;, - 54;4;-0.514587,-0.637333,-0.393950, 0.416759;;, - 55;4;-0.514884,-0.637088,-0.394384, 0.416411;;, - 56;4;-0.515118,-0.636894,-0.394726, 0.416137;;, - 57;4;-0.515285,-0.636755,-0.394970, 0.415940;;, - 58;4;-0.515385,-0.636671,-0.395116, 0.415822;;, - 59;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 60;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 61;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 62;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 63;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 64;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 65;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 66;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 67;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 68;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 69;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 70;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 71;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 72;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 73;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 74;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 75;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 76;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 77;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 78;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 79;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 80;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 81;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 82;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 83;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 84;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 85;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 86;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 87;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 88;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 89;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 90;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 91;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 92;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 93;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 94;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 95;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 96;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 97;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 98;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 99;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 100;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 101;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 102;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 103;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 104;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 105;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 106;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 107;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 108;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 109;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 110;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 111;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 112;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 113;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 114;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 115;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 116;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 117;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 118;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 119;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 120;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 121;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 122;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 123;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 124;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 125;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 126;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 127;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 128;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 129;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 130;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 131;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 132;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 133;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 134;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 135;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 136;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 137;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 138;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 139;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 140;4;-0.519167,-0.632648,-0.400940, 0.410533;;, - 141;4;-0.529727,-0.621393,-0.417211, 0.395746;;, - 142;4;-0.543287,-0.606942,-0.438102, 0.376759;;, - 143;4;-0.553848,-0.595687,-0.454372, 0.361972;;, - 144;4;-0.557597,-0.591691,-0.460149, 0.356722;;, - 145;4;-0.553848,-0.595687,-0.454372, 0.361972;;, - 146;4;-0.543287,-0.606942,-0.438102, 0.376759;;, - 147;4;-0.529727,-0.621393,-0.417211, 0.395746;;, - 148;4;-0.519167,-0.632648,-0.400940, 0.410533;;, - 149;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 150;4;-0.519167,-0.632648,-0.400940, 0.410533;;, - 151;4;-0.529727,-0.621393,-0.417211, 0.395746;;, - 152;4;-0.543287,-0.606942,-0.438102, 0.376759;;, - 153;4;-0.553848,-0.595687,-0.454372, 0.361972;;, - 154;4;-0.557597,-0.591691,-0.460149, 0.356722;;, - 155;4;-0.553848,-0.595687,-0.454372, 0.361972;;, - 156;4;-0.543287,-0.606942,-0.438102, 0.376759;;, - 157;4;-0.529727,-0.621393,-0.417211, 0.395746;;, - 158;4;-0.519167,-0.632648,-0.400940, 0.410533;;, - 159;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 160;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 161;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 162;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 163;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 164;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 165;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 166;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 167;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 168;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 169;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 170;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 171;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 172;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 173;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 174;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 175;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 176;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 177;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 178;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 179;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 180;4;-0.517803,-0.633175,-0.399151, 0.411554;;, - 181;4;-0.524982,-0.622736,-0.411150, 0.398827;;, - 182;4;-0.536656,-0.605762,-0.430659, 0.378134;;, - 183;4;-0.551924,-0.583561,-0.456177, 0.351068;;, - 184;4;-0.569221,-0.558412,-0.485084, 0.320407;;, - 185;4;-0.586517,-0.533262,-0.513991, 0.289746;;, - 186;4;-0.601785,-0.511061,-0.539509, 0.262681;;, - 187;4;-0.613459,-0.494087,-0.559018, 0.241988;;, - 188;4;-0.620638,-0.483648,-0.571017, 0.229261;;, - 189;4;-0.623024,-0.480179,-0.575004, 0.225032;;, - 190;4;-0.617019,-0.490586,-0.564405, 0.237283;;, - 191;4;-0.599355,-0.520635,-0.533415, 0.272782;;, - 192;4;-0.574661,-0.561199,-0.490578, 0.321024;;, - 193;4;-0.551509,-0.596645,-0.451285, 0.363775;;, - 194;4;-0.536168,-0.616235,-0.426559, 0.388364;;, - 195;4;-0.526702,-0.625545,-0.412238, 0.400872;;, - 196;4;-0.520101,-0.632037,-0.402251, 0.409594;;, - 197;4;-0.516659,-0.635422,-0.397042, 0.414142;;, - 198;4;-0.515546,-0.636517,-0.395359, 0.415613;;, - 199;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 200;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 201;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 202;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 203;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 204;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 205;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 206;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 207;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 208;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 209;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 210;4;-0.527069,-0.616425,-0.415740, 0.391986;;, - 211;4;-0.559890,-0.559476,-0.473695, 0.324956;;, - 212;4;-0.602030,-0.486354,-0.548109, 0.238891;;, - 213;4;-0.634851,-0.429405,-0.606064, 0.171861;;, - 214;4;-0.646503,-0.409187,-0.626640, 0.148064;;, - 215;4;-0.640317,-0.417033,-0.616688, 0.157928;;, - 216;4;-0.621395,-0.441144,-0.586208, 0.188207;;, - 217;4;-0.593076,-0.477497,-0.540502, 0.233781;;, - 218;4;-0.563190,-0.516313,-0.492115, 0.282309;;, - 219;4;-0.538351,-0.549180,-0.451696, 0.323223;;, - 220;4;-0.513645,-0.582211,-0.411378, 0.364244;;, - 221;4;-0.484229,-0.621607,-0.363351, 0.413151;;, - 222;4;-0.456767,-0.659020,-0.318303, 0.459417;;, - 223;4;-0.439010,-0.684568,-0.288716, 0.490635;;, - 224;4;-0.434138,-0.694038,-0.279772, 0.501560;;, - 225;4;-0.436160,-0.694986,-0.281842, 0.501704;;, - 226;4;-0.439540,-0.694478,-0.286010, 0.499940;;, - 227;4;-0.444257,-0.692511,-0.292247, 0.496270;;, - 228;4;-0.450222,-0.689139,-0.300434, 0.490780;;, - 229;4;-0.457269,-0.684495,-0.310327, 0.483662;;, - 230;4;-0.465141,-0.678800,-0.321548, 0.475224;;, - 231;4;-0.473497,-0.672367,-0.333590, 0.465895;;, - 232;4;-0.481937,-0.665575,-0.345852, 0.456190;;, - 233;4;-0.490044,-0.658835,-0.357704, 0.446660;;, - 234;4;-0.497430,-0.652540,-0.368552, 0.437830;;, - 235;4;-0.503773,-0.647026,-0.377906, 0.430144;;, - 236;4;-0.508844,-0.642550,-0.385406, 0.423933;;, - 237;4;-0.512505,-0.639278,-0.390834, 0.419412;;, - 238;4;-0.514695,-0.637301,-0.394089, 0.416686;;, - 239;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 240;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 241;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 242;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 243;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 244;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 245;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 246;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 247;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 248;4;-0.515417,-0.636643,-0.395164, 0.415783;;, - 249;4;-0.515417,-0.636643,-0.395164, 0.415783;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3;-0.000000, 0.747179, 0.000000;;, - 1;3;-0.000000, 0.747179, 0.000000;;, - 2;3;-0.000000, 0.747179, 0.000000;;, - 3;3;-0.000000, 0.747179, 0.000000;;, - 4;3;-0.000000, 0.747179, 0.000000;;, - 5;3;-0.000000, 0.747179, 0.000000;;, - 6;3;-0.000000, 0.747179, 0.000000;;, - 7;3;-0.000000, 0.747179, 0.000000;;, - 8;3;-0.000000, 0.747179, 0.000000;;, - 9;3;-0.000000, 0.747179, 0.000000;;, - 10;3;-0.000000, 0.747179, 0.000000;;, - 11;3;-0.000000, 0.747179, 0.000000;;, - 12;3;-0.000000, 0.747179, 0.000000;;, - 13;3;-0.000000, 0.747179, 0.000000;;, - 14;3;-0.000000, 0.747179, 0.000000;;, - 15;3;-0.000000, 0.747179, 0.000000;;, - 16;3;-0.000000, 0.747179, 0.000000;;, - 17;3;-0.000000, 0.747179, 0.000000;;, - 18;3;-0.000000, 0.747179, 0.000000;;, - 19;3;-0.000000, 0.747179, 0.000000;;, - 20;3;-0.000000, 0.747179, 0.000000;;, - 21;3;-0.000000, 0.747179, 0.000000;;, - 22;3;-0.000000, 0.747179, 0.000000;;, - 23;3;-0.000000, 0.747179, 0.000000;;, - 24;3;-0.000000, 0.747179, 0.000000;;, - 25;3;-0.000000, 0.747179, 0.000000;;, - 26;3;-0.000000, 0.747179, 0.000000;;, - 27;3;-0.000000, 0.747179, 0.000000;;, - 28;3;-0.000000, 0.747179, 0.000000;;, - 29;3;-0.000000, 0.747179, 0.000000;;, - 30;3;-0.000000, 0.747179, 0.000000;;, - 31;3;-0.000000, 0.747179, 0.000000;;, - 32;3;-0.000000, 0.747179, 0.000000;;, - 33;3;-0.000000, 0.747179, 0.000000;;, - 34;3;-0.000000, 0.747179, 0.000000;;, - 35;3;-0.000000, 0.747179, 0.000000;;, - 36;3;-0.000000, 0.747179, 0.000000;;, - 37;3;-0.000000, 0.747179, 0.000000;;, - 38;3;-0.000000, 0.747179, 0.000000;;, - 39;3;-0.000000, 0.747179, 0.000000;;, - 40;3;-0.000000, 0.747179, 0.000000;;, - 41;3;-0.000000, 0.747179, 0.000000;;, - 42;3;-0.000000, 0.747179, 0.000000;;, - 43;3;-0.000000, 0.747179, 0.000000;;, - 44;3;-0.000000, 0.747179, 0.000000;;, - 45;3;-0.000000, 0.747179, 0.000000;;, - 46;3;-0.000000, 0.747179, 0.000000;;, - 47;3;-0.000000, 0.747179, 0.000000;;, - 48;3;-0.000000, 0.747179, 0.000000;;, - 49;3;-0.000000, 0.747179, 0.000000;;, - 50;3;-0.000000, 0.747179, 0.000000;;, - 51;3;-0.000000, 0.747179, 0.000000;;, - 52;3;-0.000000, 0.747179, 0.000000;;, - 53;3;-0.000000, 0.747179, 0.000000;;, - 54;3;-0.000000, 0.747179, 0.000000;;, - 55;3;-0.000000, 0.747179, 0.000000;;, - 56;3;-0.000000, 0.747179, 0.000000;;, - 57;3;-0.000000, 0.747179, 0.000000;;, - 58;3;-0.000000, 0.747179, 0.000000;;, - 59;3;-0.000000, 0.747179, 0.000000;;, - 60;3;-0.000000, 0.747179, 0.000000;;, - 61;3;-0.000000, 0.747179, 0.000000;;, - 62;3;-0.000000, 0.747179, 0.000000;;, - 63;3;-0.000000, 0.747179, 0.000000;;, - 64;3;-0.000000, 0.747179, 0.000000;;, - 65;3;-0.000000, 0.747179, 0.000000;;, - 66;3;-0.000000, 0.747179, 0.000000;;, - 67;3;-0.000000, 0.747179, 0.000000;;, - 68;3;-0.000000, 0.747179, 0.000000;;, - 69;3;-0.000000, 0.747179, 0.000000;;, - 70;3;-0.000000, 0.747179, 0.000000;;, - 71;3;-0.000000, 0.747179, 0.000000;;, - 72;3;-0.000000, 0.747179, 0.000000;;, - 73;3;-0.000000, 0.747179, 0.000000;;, - 74;3;-0.000000, 0.747179, 0.000000;;, - 75;3;-0.000000, 0.747179, 0.000000;;, - 76;3;-0.000000, 0.747179, 0.000000;;, - 77;3;-0.000000, 0.747179, 0.000000;;, - 78;3;-0.000000, 0.747179, 0.000000;;, - 79;3;-0.000000, 0.747179, 0.000000;;, - 80;3;-0.000000, 0.747179, 0.000000;;, - 81;3;-0.000000, 0.747179, 0.000000;;, - 82;3;-0.000000, 0.747179, 0.000000;;, - 83;3;-0.000000, 0.747179, 0.000000;;, - 84;3;-0.000000, 0.747179, 0.000000;;, - 85;3;-0.000000, 0.747179, 0.000000;;, - 86;3;-0.000000, 0.747179, 0.000000;;, - 87;3;-0.000000, 0.747179, 0.000000;;, - 88;3;-0.000000, 0.747179, 0.000000;;, - 89;3;-0.000000, 0.747179, 0.000000;;, - 90;3;-0.000000, 0.747179, 0.000000;;, - 91;3;-0.000000, 0.747179, 0.000000;;, - 92;3;-0.000000, 0.747179, 0.000000;;, - 93;3;-0.000000, 0.747179, 0.000000;;, - 94;3;-0.000000, 0.747179, 0.000000;;, - 95;3;-0.000000, 0.747179, 0.000000;;, - 96;3;-0.000000, 0.747179, 0.000000;;, - 97;3;-0.000000, 0.747179, 0.000000;;, - 98;3;-0.000000, 0.747179, 0.000000;;, - 99;3;-0.000000, 0.747179, 0.000000;;, - 100;3;-0.000000, 0.747179, 0.000000;;, - 101;3;-0.000000, 0.747179, 0.000000;;, - 102;3;-0.000000, 0.747179, 0.000000;;, - 103;3;-0.000000, 0.747179, 0.000000;;, - 104;3;-0.000000, 0.747179, 0.000000;;, - 105;3;-0.000000, 0.747179, 0.000000;;, - 106;3;-0.000000, 0.747179, 0.000000;;, - 107;3;-0.000000, 0.747179, 0.000000;;, - 108;3;-0.000000, 0.747179, 0.000000;;, - 109;3;-0.000000, 0.747179, 0.000000;;, - 110;3;-0.000000, 0.747179, 0.000000;;, - 111;3;-0.000000, 0.747179, 0.000000;;, - 112;3;-0.000000, 0.747179, 0.000000;;, - 113;3;-0.000000, 0.747179, 0.000000;;, - 114;3;-0.000000, 0.747179, 0.000000;;, - 115;3;-0.000000, 0.747179, 0.000000;;, - 116;3;-0.000000, 0.747179, 0.000000;;, - 117;3;-0.000000, 0.747179, 0.000000;;, - 118;3;-0.000000, 0.747179, 0.000000;;, - 119;3;-0.000000, 0.747179, 0.000000;;, - 120;3;-0.000000, 0.747179, 0.000000;;, - 121;3;-0.000000, 0.747179, 0.000000;;, - 122;3;-0.000000, 0.747179, 0.000000;;, - 123;3;-0.000000, 0.747179, 0.000000;;, - 124;3;-0.000000, 0.747179, 0.000000;;, - 125;3;-0.000000, 0.747179, 0.000000;;, - 126;3;-0.000000, 0.747179, 0.000000;;, - 127;3;-0.000000, 0.747179, 0.000000;;, - 128;3;-0.000000, 0.747179, 0.000000;;, - 129;3;-0.000000, 0.747179, 0.000000;;, - 130;3;-0.000000, 0.747179, 0.000000;;, - 131;3;-0.000000, 0.747179, 0.000000;;, - 132;3;-0.000000, 0.747179, 0.000000;;, - 133;3;-0.000000, 0.747179, 0.000000;;, - 134;3;-0.000000, 0.747179, 0.000000;;, - 135;3;-0.000000, 0.747179, 0.000000;;, - 136;3;-0.000000, 0.747179, 0.000000;;, - 137;3;-0.000000, 0.747179, 0.000000;;, - 138;3;-0.000000, 0.747179, 0.000000;;, - 139;3;-0.000000, 0.747179, 0.000000;;, - 140;3;-0.000000, 0.747179, 0.000000;;, - 141;3;-0.000000, 0.747179, 0.000000;;, - 142;3;-0.000000, 0.747179, 0.000000;;, - 143;3;-0.000000, 0.747179, 0.000000;;, - 144;3;-0.000000, 0.747179, 0.000000;;, - 145;3;-0.000000, 0.747179, 0.000000;;, - 146;3;-0.000000, 0.747179, 0.000000;;, - 147;3;-0.000000, 0.747179, 0.000000;;, - 148;3;-0.000000, 0.747179, 0.000000;;, - 149;3;-0.000000, 0.747179, 0.000000;;, - 150;3;-0.000000, 0.747179, 0.000000;;, - 151;3;-0.000000, 0.747179, 0.000000;;, - 152;3;-0.000000, 0.747179, 0.000000;;, - 153;3;-0.000000, 0.747179, 0.000000;;, - 154;3;-0.000000, 0.747179, 0.000000;;, - 155;3;-0.000000, 0.747179, 0.000000;;, - 156;3;-0.000000, 0.747179, 0.000000;;, - 157;3;-0.000000, 0.747179, 0.000000;;, - 158;3;-0.000000, 0.747179, 0.000000;;, - 159;3;-0.000000, 0.747179, 0.000000;;, - 160;3;-0.000000, 0.747179, 0.000000;;, - 161;3;-0.000000, 0.747179, 0.000000;;, - 162;3;-0.000000, 0.747179, 0.000000;;, - 163;3;-0.000000, 0.747179, 0.000000;;, - 164;3;-0.000000, 0.747179, 0.000000;;, - 165;3;-0.000000, 0.747179, 0.000000;;, - 166;3;-0.000000, 0.747179, 0.000000;;, - 167;3;-0.000000, 0.747179, 0.000000;;, - 168;3;-0.000000, 0.747179, 0.000000;;, - 169;3;-0.000000, 0.747179, 0.000000;;, - 170;3;-0.000000, 0.747179, 0.000000;;, - 171;3;-0.000000, 0.747179, 0.000000;;, - 172;3;-0.000000, 0.747179, 0.000000;;, - 173;3;-0.000000, 0.747179, 0.000000;;, - 174;3;-0.000000, 0.747179, 0.000000;;, - 175;3;-0.000000, 0.747179, 0.000000;;, - 176;3;-0.000000, 0.747179, 0.000000;;, - 177;3;-0.000000, 0.747179, 0.000000;;, - 178;3;-0.000000, 0.747179, 0.000000;;, - 179;3;-0.000000, 0.747179, 0.000000;;, - 180;3; 0.000000, 0.747180, 0.000000;;, - 181;3; 0.000000, 0.747180, 0.000000;;, - 182;3; 0.000000, 0.747180,-0.000000;;, - 183;3; 0.000000, 0.747180,-0.000000;;, - 184;3; 0.000000, 0.747179,-0.000000;;, - 185;3; 0.000000, 0.747180, 0.000000;;, - 186;3; 0.000000, 0.747180, 0.000000;;, - 187;3; 0.000000, 0.747180, 0.000000;;, - 188;3; 0.000000, 0.747179, 0.000000;;, - 189;3; 0.000000, 0.747180, 0.000000;;, - 190;3; 0.000000, 0.747180,-0.000000;;, - 191;3; 0.000000, 0.747179, 0.000000;;, - 192;3; 0.000000, 0.747180, 0.000000;;, - 193;3; 0.000000, 0.747179,-0.000000;;, - 194;3; 0.000000, 0.747179, 0.000000;;, - 195;3; 0.000000, 0.747179,-0.000000;;, - 196;3; 0.000000, 0.747180, 0.000000;;, - 197;3; 0.000000, 0.747179, 0.000000;;, - 198;3;-0.000000, 0.747179, 0.000000;;, - 199;3;-0.000000, 0.747179, 0.000000;;, - 200;3;-0.000000, 0.747179, 0.000000;;, - 201;3;-0.000000, 0.747179, 0.000000;;, - 202;3;-0.000000, 0.747179, 0.000000;;, - 203;3;-0.000000, 0.747179, 0.000000;;, - 204;3;-0.000000, 0.747179, 0.000000;;, - 205;3;-0.000000, 0.747179, 0.000000;;, - 206;3;-0.000000, 0.747179, 0.000000;;, - 207;3;-0.000000, 0.747179, 0.000000;;, - 208;3;-0.000000, 0.747179, 0.000000;;, - 209;3;-0.000000, 0.747179, 0.000000;;, - 210;3;-0.000000, 0.747180, 0.000000;;, - 211;3; 0.000000, 0.747180, 0.000000;;, - 212;3; 0.000000, 0.747179,-0.000000;;, - 213;3; 0.000000, 0.747180, 0.000000;;, - 214;3; 0.000000, 0.747180,-0.000000;;, - 215;3; 0.000000, 0.747179, 0.000000;;, - 216;3; 0.000000, 0.747179, 0.000000;;, - 217;3; 0.000000, 0.747179,-0.000000;;, - 218;3; 0.000000, 0.747179,-0.000000;;, - 219;3; 0.000000, 0.747179, 0.000000;;, - 220;3;-0.000000, 0.747180,-0.000000;;, - 221;3; 0.000000, 0.747179,-0.000000;;, - 222;3; 0.000000, 0.747179, 0.000000;;, - 223;3;-0.000000, 0.747179, 0.000000;;, - 224;3; 0.000000, 0.747180,-0.000000;;, - 225;3; 0.000000, 0.747179,-0.000000;;, - 226;3; 0.000000, 0.747180,-0.000000;;, - 227;3; 0.000000, 0.747179,-0.000000;;, - 228;3; 0.000000, 0.747180,-0.000000;;, - 229;3; 0.000000, 0.747179, 0.000000;;, - 230;3; 0.000000, 0.747179, 0.000000;;, - 231;3; 0.000000, 0.747179, 0.000000;;, - 232;3; 0.000000, 0.747179, 0.000000;;, - 233;3;-0.000000, 0.747180,-0.000000;;, - 234;3; 0.000000, 0.747179,-0.000000;;, - 235;3; 0.000000, 0.747179,-0.000000;;, - 236;3; 0.000000, 0.747179,-0.000000;;, - 237;3; 0.000000, 0.747179,-0.000000;;, - 238;3;-0.000000, 0.747179,-0.000000;;, - 239;3;-0.000000, 0.747179, 0.000000;;, - 240;3;-0.000000, 0.747179, 0.000000;;, - 241;3;-0.000000, 0.747179, 0.000000;;, - 242;3;-0.000000, 0.747179, 0.000000;;, - 243;3;-0.000000, 0.747179, 0.000000;;, - 244;3;-0.000000, 0.747179, 0.000000;;, - 245;3;-0.000000, 0.747179, 0.000000;;, - 246;3;-0.000000, 0.747179, 0.000000;;, - 247;3;-0.000000, 0.747179, 0.000000;;, - 248;3;-0.000000, 0.747179, 0.000000;;, - 249;3;-0.000000, 0.747179, 0.000000;;; - } - } - Animation { - {Armature_Bone_008} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 1;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 2;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 3;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 4;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 5;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 6;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 7;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 8;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 9;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 10;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 11;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 12;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 13;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 14;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 15;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 16;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 17;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 18;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 19;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 20;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 21;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 22;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 23;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 24;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 25;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 26;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 27;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 28;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 29;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 30;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 31;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 32;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 33;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 34;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 35;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 36;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 37;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 38;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 39;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 40;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 41;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 42;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 43;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 44;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 45;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 46;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 47;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 48;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 49;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 50;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 51;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 52;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 53;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 54;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 55;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 56;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 57;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 58;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 59;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 60;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 61;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 62;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 63;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 64;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 65;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 66;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 67;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 68;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 69;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 70;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 71;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 72;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 73;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 74;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 75;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 76;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 77;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 78;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 79;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 80;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 81;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 82;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 83;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 84;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 85;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 86;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 87;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 88;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 89;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 90;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 91;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 92;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 93;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 94;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 95;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 96;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 97;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 98;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 99;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 100;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 101;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 102;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 103;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 104;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 105;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 106;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 107;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 108;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 109;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 110;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 111;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 112;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 113;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 114;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 115;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 116;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 117;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 118;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 119;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 120;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 121;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 122;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 123;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 124;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 125;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 126;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 127;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 128;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 129;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 130;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 131;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 132;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 133;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 134;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 135;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 136;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 137;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 138;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 139;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 140;4;-0.997190, 0.009803, 0.000931, 0.064991;;, - 141;4;-0.993501, 0.009816, 0.000619, 0.096376;;, - 142;4;-0.988763, 0.009834, 0.000220, 0.136673;;, - 143;4;-0.985073, 0.009847,-0.000091, 0.168058;;, - 144;4;-0.983763, 0.009852,-0.000202, 0.179200;;, - 145;4;-0.985073, 0.009847,-0.000091, 0.168058;;, - 146;4;-0.988763, 0.009834, 0.000220, 0.136673;;, - 147;4;-0.993501, 0.009816, 0.000619, 0.096376;;, - 148;4;-0.997191, 0.009803, 0.000931, 0.064991;;, - 149;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 150;4;-0.997190, 0.009803, 0.000931, 0.064991;;, - 151;4;-0.993501, 0.009816, 0.000619, 0.096376;;, - 152;4;-0.988763, 0.009834, 0.000220, 0.136673;;, - 153;4;-0.985073, 0.009847,-0.000091, 0.168058;;, - 154;4;-0.983763, 0.009852,-0.000202, 0.179200;;, - 155;4;-0.985073, 0.009847,-0.000091, 0.168058;;, - 156;4;-0.988763, 0.009834, 0.000220, 0.136673;;, - 157;4;-0.993501, 0.009816, 0.000619, 0.096376;;, - 158;4;-0.997191, 0.009803, 0.000931, 0.064991;;, - 159;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 160;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 161;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 162;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 163;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 164;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 165;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 166;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 167;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 168;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 169;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 170;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 171;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 172;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 173;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 174;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 175;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 176;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 177;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 178;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 179;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 180;4;-0.995868, 0.009787, 0.000946, 0.063192;;, - 181;4;-0.987946, 0.009754, 0.000660, 0.091312;;, - 182;4;-0.975066, 0.009701, 0.000195, 0.137033;;, - 183;4;-0.958218, 0.009631,-0.000413, 0.196833;;, - 184;4;-0.939133, 0.009551,-0.001102, 0.264577;;, - 185;4;-0.920048, 0.009472,-0.001791, 0.332321;;, - 186;4;-0.903201, 0.009401,-0.002399, 0.392121;;, - 187;4;-0.890320, 0.009348,-0.002864, 0.437842;;, - 188;4;-0.882398, 0.009315,-0.003150, 0.465962;;, - 189;4;-0.879766, 0.009304,-0.003245, 0.475305;;, - 190;4;-0.879766, 0.009304,-0.003245, 0.475305;;, - 191;4;-0.879766, 0.009304,-0.003245, 0.475305;;, - 192;4;-0.879766, 0.009304,-0.003245, 0.475305;;, - 193;4;-0.879766, 0.009304,-0.003245, 0.475305;;, - 194;4;-0.879766, 0.009304,-0.003245, 0.475305;;, - 195;4;-0.890320, 0.009348,-0.002864, 0.437842;;, - 196;4;-0.920048, 0.009472,-0.001791, 0.332321;;, - 197;4;-0.958218, 0.009631,-0.000413, 0.196833;;, - 198;4;-0.987946, 0.009754, 0.000660, 0.091312;;, - 199;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 200;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 201;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 202;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 203;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 204;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 205;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 206;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 207;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 208;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 209;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 210;4;-0.989815, 0.009767, 0.000699, 0.087652;;, - 211;4;-0.965353, 0.009678,-0.000266, 0.182865;;, - 212;4;-0.933943, 0.009564,-0.001505, 0.305117;;, - 213;4;-0.909480, 0.009475,-0.002469, 0.400330;;, - 214;4;-0.900795, 0.009444,-0.002812, 0.434133;;, - 215;4;-0.900874, 0.009445,-0.002811, 0.434106;;, - 216;4;-0.901215, 0.009448,-0.002808, 0.433855;;, - 217;4;-0.901979, 0.009454,-0.002799, 0.433062;;, - 218;4;-0.903203, 0.009463,-0.002783, 0.431530;;, - 219;4;-0.904784, 0.009475,-0.002759, 0.429322;;, - 220;4;-0.906591, 0.009489,-0.002732, 0.426873;;, - 221;4;-0.908740, 0.009505,-0.002697, 0.423613;;, - 222;4;-0.911456, 0.009522,-0.002636, 0.417796;;, - 223;4;-0.914812, 0.009540,-0.002537, 0.408171;;, - 224;4;-0.918674, 0.009556,-0.002402, 0.394893;;, - 225;4;-0.923140, 0.009573,-0.002231, 0.378080;;, - 226;4;-0.928424, 0.009592,-0.002021, 0.357297;;, - 227;4;-0.934481, 0.009613,-0.001772, 0.332721;;, - 228;4;-0.941218, 0.009634,-0.001490, 0.304741;;, - 229;4;-0.948485, 0.009657,-0.001179, 0.274011;;, - 230;4;-0.956073, 0.009680,-0.000851, 0.241459;;, - 231;4;-0.963724, 0.009702,-0.000516, 0.208266;;, - 232;4;-0.971145, 0.009723,-0.000188, 0.175769;;, - 233;4;-0.978046, 0.009743, 0.000119, 0.145315;;, - 234;4;-0.984170, 0.009760, 0.000393, 0.118118;;, - 235;4;-0.989320, 0.009774, 0.000625, 0.095130;;, - 236;4;-0.993366, 0.009785, 0.000808, 0.076992;;, - 237;4;-0.996244, 0.009792, 0.000938, 0.064043;;, - 238;4;-0.997945, 0.009797, 0.001016, 0.056363;;, - 239;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 240;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 241;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 242;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 243;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 244;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 245;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 246;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 247;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 248;4;-0.998500, 0.009798, 0.001041, 0.053849;;, - 249;4;-0.998500, 0.009798, 0.001041, 0.053849;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3; 0.000000, 0.672674,-0.000000;;, - 1;3;-0.000000, 0.672674, 0.000000;;, - 2;3; 0.000000, 0.672674, 0.000000;;, - 3;3; 0.000000, 0.672674,-0.000000;;, - 4;3;-0.000000, 0.672674, 0.000000;;, - 5;3;-0.000000, 0.672674, 0.000000;;, - 6;3;-0.000000, 0.672674,-0.000000;;, - 7;3;-0.000000, 0.672674,-0.000000;;, - 8;3;-0.000000, 0.672674,-0.000000;;, - 9;3;-0.000000, 0.672674, 0.000000;;, - 10;3; 0.000000, 0.672674,-0.000000;;, - 11;3; 0.000000, 0.672674,-0.000000;;, - 12;3; 0.000000, 0.672674,-0.000000;;, - 13;3;-0.000000, 0.672674,-0.000000;;, - 14;3;-0.000000, 0.672674,-0.000000;;, - 15;3;-0.000000, 0.672674,-0.000000;;, - 16;3;-0.000000, 0.672674, 0.000000;;, - 17;3; 0.000000, 0.672674,-0.000000;;, - 18;3;-0.000000, 0.672674, 0.000000;;, - 19;3;-0.000000, 0.672674,-0.000000;;, - 20;3; 0.000000, 0.672674,-0.000000;;, - 21;3; 0.000000, 0.672674, 0.000000;;, - 22;3; 0.000000, 0.672674,-0.000000;;, - 23;3; 0.000000, 0.672674,-0.000000;;, - 24;3; 0.000000, 0.672674,-0.000000;;, - 25;3;-0.000000, 0.672674,-0.000000;;, - 26;3;-0.000000, 0.672674,-0.000000;;, - 27;3;-0.000000, 0.672674,-0.000000;;, - 28;3;-0.000000, 0.672674, 0.000000;;, - 29;3;-0.000000, 0.672674,-0.000000;;, - 30;3;-0.000001, 0.672674, 0.000000;;, - 31;3;-0.000000, 0.672674,-0.000000;;, - 32;3;-0.000000, 0.672674,-0.000000;;, - 33;3;-0.000000, 0.672674,-0.000000;;, - 34;3;-0.000000, 0.672674,-0.000000;;, - 35;3; 0.000000, 0.672674,-0.000000;;, - 36;3;-0.000000, 0.672674,-0.000000;;, - 37;3;-0.000001, 0.672674,-0.000000;;, - 38;3;-0.000000, 0.672674,-0.000000;;, - 39;3;-0.000000, 0.672674,-0.000000;;, - 40;3;-0.000000, 0.672674, 0.000000;;, - 41;3; 0.000000, 0.672674,-0.000000;;, - 42;3; 0.000000, 0.672674,-0.000000;;, - 43;3;-0.000000, 0.672674,-0.000000;;, - 44;3; 0.000000, 0.672674, 0.000000;;, - 45;3; 0.000000, 0.672674, 0.000000;;, - 46;3;-0.000000, 0.672674,-0.000000;;, - 47;3;-0.000000, 0.672674, 0.000000;;, - 48;3;-0.000000, 0.672674,-0.000000;;, - 49;3; 0.000000, 0.672674,-0.000000;;, - 50;3; 0.000000, 0.672674,-0.000000;;, - 51;3;-0.000000, 0.672674,-0.000000;;, - 52;3;-0.000000, 0.672674, 0.000000;;, - 53;3;-0.000000, 0.672674,-0.000000;;, - 54;3; 0.000000, 0.672674,-0.000000;;, - 55;3; 0.000000, 0.672675, 0.000000;;, - 56;3;-0.000000, 0.672674,-0.000000;;, - 57;3; 0.000000, 0.672674,-0.000000;;, - 58;3; 0.000000, 0.672674,-0.000000;;, - 59;3; 0.000000, 0.672674,-0.000000;;, - 60;3; 0.000000, 0.672674,-0.000000;;, - 61;3; 0.000000, 0.672674,-0.000000;;, - 62;3; 0.000000, 0.672674,-0.000000;;, - 63;3; 0.000000, 0.672674,-0.000000;;, - 64;3; 0.000000, 0.672674,-0.000000;;, - 65;3; 0.000000, 0.672674,-0.000000;;, - 66;3; 0.000000, 0.672674,-0.000000;;, - 67;3; 0.000000, 0.672674,-0.000000;;, - 68;3; 0.000000, 0.672674,-0.000000;;, - 69;3; 0.000000, 0.672674,-0.000000;;, - 70;3; 0.000000, 0.672674,-0.000000;;, - 71;3; 0.000000, 0.672674,-0.000000;;, - 72;3; 0.000000, 0.672674,-0.000000;;, - 73;3; 0.000000, 0.672674,-0.000000;;, - 74;3; 0.000000, 0.672674,-0.000000;;, - 75;3; 0.000000, 0.672674,-0.000000;;, - 76;3; 0.000000, 0.672674,-0.000000;;, - 77;3; 0.000000, 0.672674,-0.000000;;, - 78;3; 0.000000, 0.672674,-0.000000;;, - 79;3; 0.000000, 0.672674,-0.000000;;, - 80;3; 0.000000, 0.672674,-0.000000;;, - 81;3; 0.000000, 0.672674,-0.000000;;, - 82;3; 0.000000, 0.672674,-0.000000;;, - 83;3; 0.000000, 0.672674,-0.000000;;, - 84;3; 0.000000, 0.672674,-0.000000;;, - 85;3; 0.000000, 0.672674,-0.000000;;, - 86;3; 0.000000, 0.672674,-0.000000;;, - 87;3; 0.000000, 0.672674,-0.000000;;, - 88;3; 0.000000, 0.672674,-0.000000;;, - 89;3; 0.000000, 0.672674,-0.000000;;, - 90;3; 0.000000, 0.672674,-0.000000;;, - 91;3; 0.000000, 0.672674,-0.000000;;, - 92;3; 0.000000, 0.672674,-0.000000;;, - 93;3; 0.000000, 0.672674,-0.000000;;, - 94;3; 0.000000, 0.672674,-0.000000;;, - 95;3; 0.000000, 0.672674,-0.000000;;, - 96;3; 0.000000, 0.672674,-0.000000;;, - 97;3; 0.000000, 0.672674,-0.000000;;, - 98;3; 0.000000, 0.672674,-0.000000;;, - 99;3; 0.000000, 0.672674,-0.000000;;, - 100;3; 0.000000, 0.672674,-0.000000;;, - 101;3; 0.000000, 0.672674,-0.000000;;, - 102;3; 0.000000, 0.672674,-0.000000;;, - 103;3; 0.000000, 0.672674,-0.000000;;, - 104;3; 0.000000, 0.672674,-0.000000;;, - 105;3; 0.000000, 0.672674,-0.000000;;, - 106;3; 0.000000, 0.672674,-0.000000;;, - 107;3; 0.000000, 0.672674,-0.000000;;, - 108;3; 0.000000, 0.672674,-0.000000;;, - 109;3; 0.000000, 0.672674,-0.000000;;, - 110;3; 0.000000, 0.672674,-0.000000;;, - 111;3; 0.000000, 0.672674,-0.000000;;, - 112;3; 0.000000, 0.672674,-0.000000;;, - 113;3; 0.000000, 0.672674,-0.000000;;, - 114;3; 0.000000, 0.672674,-0.000000;;, - 115;3; 0.000000, 0.672674,-0.000000;;, - 116;3; 0.000000, 0.672674,-0.000000;;, - 117;3; 0.000000, 0.672674,-0.000000;;, - 118;3; 0.000000, 0.672674,-0.000000;;, - 119;3; 0.000000, 0.672674,-0.000000;;, - 120;3; 0.000000, 0.672674,-0.000000;;, - 121;3; 0.000000, 0.672674,-0.000000;;, - 122;3; 0.000000, 0.672674,-0.000000;;, - 123;3; 0.000000, 0.672674,-0.000000;;, - 124;3; 0.000000, 0.672674,-0.000000;;, - 125;3; 0.000000, 0.672674,-0.000000;;, - 126;3; 0.000000, 0.672674,-0.000000;;, - 127;3; 0.000000, 0.672674,-0.000000;;, - 128;3; 0.000000, 0.672674,-0.000000;;, - 129;3; 0.000000, 0.672674,-0.000000;;, - 130;3; 0.000000, 0.672674,-0.000000;;, - 131;3; 0.000000, 0.672674,-0.000000;;, - 132;3; 0.000000, 0.672674,-0.000000;;, - 133;3; 0.000000, 0.672674,-0.000000;;, - 134;3; 0.000000, 0.672674,-0.000000;;, - 135;3; 0.000000, 0.672674,-0.000000;;, - 136;3; 0.000000, 0.672674,-0.000000;;, - 137;3; 0.000000, 0.672674,-0.000000;;, - 138;3; 0.000000, 0.672674,-0.000000;;, - 139;3; 0.000000, 0.672674,-0.000000;;, - 140;3;-0.000000, 0.672674,-0.000000;;, - 141;3;-0.000000, 0.672674,-0.000000;;, - 142;3; 0.000000, 0.672674, 0.000000;;, - 143;3;-0.000000, 0.672674, 0.000000;;, - 144;3; 0.000000, 0.672674,-0.000000;;, - 145;3; 0.000000, 0.672674, 0.000000;;, - 146;3; 0.000000, 0.672674, 0.000000;;, - 147;3;-0.000000, 0.672674,-0.000000;;, - 148;3;-0.000000, 0.672674,-0.000000;;, - 149;3; 0.000000, 0.672674,-0.000000;;, - 150;3;-0.000000, 0.672674,-0.000000;;, - 151;3;-0.000000, 0.672674,-0.000000;;, - 152;3; 0.000000, 0.672674, 0.000000;;, - 153;3;-0.000000, 0.672674, 0.000000;;, - 154;3; 0.000000, 0.672674,-0.000000;;, - 155;3; 0.000000, 0.672674, 0.000000;;, - 156;3; 0.000000, 0.672674, 0.000000;;, - 157;3;-0.000000, 0.672674,-0.000000;;, - 158;3;-0.000000, 0.672674,-0.000000;;, - 159;3; 0.000000, 0.672674,-0.000000;;, - 160;3; 0.000000, 0.672674,-0.000000;;, - 161;3; 0.000000, 0.672674,-0.000000;;, - 162;3; 0.000000, 0.672674,-0.000000;;, - 163;3; 0.000000, 0.672674,-0.000000;;, - 164;3; 0.000000, 0.672674,-0.000000;;, - 165;3; 0.000000, 0.672674,-0.000000;;, - 166;3; 0.000000, 0.672674,-0.000000;;, - 167;3; 0.000000, 0.672674,-0.000000;;, - 168;3; 0.000000, 0.672674,-0.000000;;, - 169;3; 0.000000, 0.672674,-0.000000;;, - 170;3; 0.000000, 0.672674,-0.000000;;, - 171;3; 0.000000, 0.672674,-0.000000;;, - 172;3; 0.000000, 0.672674,-0.000000;;, - 173;3; 0.000000, 0.672674,-0.000000;;, - 174;3; 0.000000, 0.672674,-0.000000;;, - 175;3; 0.000000, 0.672674,-0.000000;;, - 176;3; 0.000000, 0.672674,-0.000000;;, - 177;3; 0.000000, 0.672674,-0.000000;;, - 178;3; 0.000000, 0.672674,-0.000000;;, - 179;3; 0.000000, 0.672674,-0.000000;;, - 180;3;-0.000000, 0.672674, 0.000000;;, - 181;3;-0.000000, 0.672674, 0.000000;;, - 182;3;-0.000000, 0.672674,-0.000000;;, - 183;3;-0.000000, 0.672674, 0.000000;;, - 184;3;-0.000000, 0.672674, 0.000000;;, - 185;3; 0.000000, 0.672674,-0.000000;;, - 186;3; 0.000000, 0.672674, 0.000000;;, - 187;3; 0.000000, 0.672675, 0.000000;;, - 188;3; 0.000000, 0.672674,-0.000000;;, - 189;3;-0.000000, 0.672674,-0.000000;;, - 190;3; 0.000000, 0.672674, 0.000000;;, - 191;3; 0.000000, 0.672674, 0.000000;;, - 192;3; 0.000001, 0.672674, 0.000000;;, - 193;3;-0.000000, 0.672674,-0.000000;;, - 194;3; 0.000000, 0.672674, 0.000000;;, - 195;3;-0.000000, 0.672674, 0.000000;;, - 196;3;-0.000000, 0.672674,-0.000000;;, - 197;3; 0.000000, 0.672674, 0.000000;;, - 198;3; 0.000000, 0.672674,-0.000000;;, - 199;3; 0.000000, 0.672674,-0.000000;;, - 200;3; 0.000000, 0.672674,-0.000000;;, - 201;3; 0.000000, 0.672674,-0.000000;;, - 202;3; 0.000000, 0.672674,-0.000000;;, - 203;3; 0.000000, 0.672674,-0.000000;;, - 204;3; 0.000000, 0.672674,-0.000000;;, - 205;3; 0.000000, 0.672674,-0.000000;;, - 206;3; 0.000000, 0.672674,-0.000000;;, - 207;3; 0.000000, 0.672674,-0.000000;;, - 208;3; 0.000000, 0.672674,-0.000000;;, - 209;3; 0.000000, 0.672674,-0.000000;;, - 210;3; 0.000000, 0.672674, 0.000000;;, - 211;3;-0.000000, 0.672674, 0.000000;;, - 212;3;-0.000000, 0.672674,-0.000000;;, - 213;3;-0.000000, 0.672674, 0.000000;;, - 214;3;-0.000000, 0.672674, 0.000000;;, - 215;3; 0.000000, 0.672674, 0.000000;;, - 216;3;-0.000000, 0.672674,-0.000000;;, - 217;3; 0.000000, 0.672674, 0.000000;;, - 218;3;-0.000000, 0.672674,-0.000000;;, - 219;3;-0.000000, 0.672674, 0.000000;;, - 220;3; 0.000000, 0.672674,-0.000000;;, - 221;3;-0.000000, 0.672675,-0.000000;;, - 222;3;-0.000000, 0.672674,-0.000000;;, - 223;3; 0.000000, 0.672674, 0.000000;;, - 224;3;-0.000000, 0.672674,-0.000000;;, - 225;3; 0.000000, 0.672674,-0.000000;;, - 226;3; 0.000001, 0.672674, 0.000000;;, - 227;3;-0.000000, 0.672674, 0.000000;;, - 228;3; 0.000000, 0.672674, 0.000000;;, - 229;3;-0.000000, 0.672674, 0.000000;;, - 230;3; 0.000000, 0.672674, 0.000000;;, - 231;3; 0.000000, 0.672674, 0.000000;;, - 232;3; 0.000001, 0.672674, 0.000000;;, - 233;3; 0.000000, 0.672675,-0.000000;;, - 234;3; 0.000000, 0.672674,-0.000000;;, - 235;3; 0.000000, 0.672675,-0.000000;;, - 236;3; 0.000000, 0.672674, 0.000000;;, - 237;3;-0.000000, 0.672674, 0.000000;;, - 238;3; 0.000000, 0.672674, 0.000000;;, - 239;3; 0.000000, 0.672674,-0.000000;;, - 240;3; 0.000000, 0.672674,-0.000000;;, - 241;3; 0.000000, 0.672674,-0.000000;;, - 242;3; 0.000000, 0.672674,-0.000000;;, - 243;3; 0.000000, 0.672674,-0.000000;;, - 244;3; 0.000000, 0.672674,-0.000000;;, - 245;3; 0.000000, 0.672674,-0.000000;;, - 246;3; 0.000000, 0.672674,-0.000000;;, - 247;3; 0.000000, 0.672674,-0.000000;;, - 248;3; 0.000000, 0.672674,-0.000000;;, - 249;3; 0.000000, 0.672674,-0.000000;;; - } - } - Animation { - {Armature_Bone_009} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 1;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 2;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 3;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 4;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 5;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 6;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 7;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 8;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 9;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 10;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 11;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 12;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 13;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 14;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 15;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 16;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 17;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 18;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 19;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 20;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 21;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 22;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 23;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 24;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 25;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 26;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 27;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 28;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 29;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 30;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 31;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 32;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 33;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 34;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 35;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 36;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 37;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 38;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 39;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 40;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 41;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 42;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 43;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 44;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 45;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 46;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 47;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 48;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 49;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 50;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 51;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 52;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 53;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 54;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 55;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 56;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 57;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 58;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 59;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 60;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 61;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 62;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 63;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 64;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 65;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 66;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 67;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 68;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 69;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 70;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 71;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 72;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 73;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 74;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 75;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 76;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 77;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 78;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 79;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 80;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 81;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 82;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 83;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 84;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 85;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 86;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 87;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 88;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 89;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 90;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 91;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 92;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 93;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 94;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 95;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 96;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 97;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 98;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 99;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 100;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 101;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 102;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 103;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 104;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 105;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 106;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 107;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 108;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 109;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 110;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 111;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 112;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 113;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 114;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 115;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 116;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 117;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 118;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 119;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 120;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 121;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 122;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 123;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 124;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 125;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 126;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 127;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 128;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 129;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 130;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 131;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 132;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 133;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 134;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 135;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 136;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 137;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 138;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 139;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 140;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 141;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 142;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 143;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 144;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 145;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 146;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 147;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 148;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 149;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 150;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 151;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 152;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 153;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 154;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 155;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 156;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 157;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 158;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 159;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 160;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 161;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 162;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 163;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 164;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 165;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 166;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 167;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 168;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 169;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 170;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 171;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 172;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 173;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 174;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 175;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 176;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 177;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 178;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 179;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 180;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 181;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 182;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 183;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 184;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 185;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 186;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 187;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 188;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 189;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 190;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 191;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 192;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 193;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 194;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 195;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 196;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 197;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 198;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 199;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 200;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 201;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 202;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 203;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 204;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 205;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 206;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 207;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 208;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 209;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 210;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 211;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 212;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 213;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 214;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 215;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 216;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 217;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 218;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 219;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 220;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 221;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 222;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 223;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 224;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 225;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 226;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 227;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 228;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 229;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 230;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 231;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 232;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 233;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 234;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 235;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 236;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 237;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 238;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 239;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 240;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 241;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 242;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 243;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 244;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 245;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 246;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 247;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 248;4;-0.361836, 0.000000,-0.000000, 0.932242;;, - 249;4;-0.361836, 0.000000,-0.000000, 0.932242;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3; 0.000000, 0.826434, 0.000000;;, - 1;3; 0.000000, 0.826434, 0.000000;;, - 2;3; 0.000000, 0.826434, 0.000000;;, - 3;3; 0.000000, 0.826434, 0.000000;;, - 4;3; 0.000000, 0.826434, 0.000000;;, - 5;3; 0.000000, 0.826434, 0.000000;;, - 6;3; 0.000000, 0.826434, 0.000000;;, - 7;3; 0.000000, 0.826434, 0.000000;;, - 8;3; 0.000000, 0.826434, 0.000000;;, - 9;3; 0.000000, 0.826434, 0.000000;;, - 10;3; 0.000000, 0.826434, 0.000000;;, - 11;3; 0.000000, 0.826434, 0.000000;;, - 12;3; 0.000000, 0.826434, 0.000000;;, - 13;3; 0.000000, 0.826434, 0.000000;;, - 14;3; 0.000000, 0.826434, 0.000000;;, - 15;3; 0.000000, 0.826434, 0.000000;;, - 16;3; 0.000000, 0.826434, 0.000000;;, - 17;3; 0.000000, 0.826434, 0.000000;;, - 18;3; 0.000000, 0.826434, 0.000000;;, - 19;3; 0.000000, 0.826434, 0.000000;;, - 20;3; 0.000000, 0.826434, 0.000000;;, - 21;3; 0.000000, 0.826434, 0.000000;;, - 22;3; 0.000000, 0.826434, 0.000000;;, - 23;3; 0.000000, 0.826434, 0.000000;;, - 24;3; 0.000000, 0.826434, 0.000000;;, - 25;3; 0.000000, 0.826434, 0.000000;;, - 26;3; 0.000000, 0.826434, 0.000000;;, - 27;3; 0.000000, 0.826434, 0.000000;;, - 28;3; 0.000000, 0.826434, 0.000000;;, - 29;3; 0.000000, 0.826434, 0.000000;;, - 30;3; 0.000000, 0.826434, 0.000000;;, - 31;3; 0.000000, 0.826434, 0.000000;;, - 32;3; 0.000000, 0.826434, 0.000000;;, - 33;3; 0.000000, 0.826434, 0.000000;;, - 34;3; 0.000000, 0.826434, 0.000000;;, - 35;3; 0.000000, 0.826434, 0.000000;;, - 36;3; 0.000000, 0.826434, 0.000000;;, - 37;3; 0.000000, 0.826434, 0.000000;;, - 38;3; 0.000000, 0.826434, 0.000000;;, - 39;3; 0.000000, 0.826434, 0.000000;;, - 40;3; 0.000000, 0.826434, 0.000000;;, - 41;3; 0.000000, 0.826434, 0.000000;;, - 42;3; 0.000000, 0.826434, 0.000000;;, - 43;3; 0.000000, 0.826434, 0.000000;;, - 44;3; 0.000000, 0.826434, 0.000000;;, - 45;3; 0.000000, 0.826434, 0.000000;;, - 46;3; 0.000000, 0.826434, 0.000000;;, - 47;3; 0.000000, 0.826434, 0.000000;;, - 48;3; 0.000000, 0.826434, 0.000000;;, - 49;3; 0.000000, 0.826434, 0.000000;;, - 50;3; 0.000000, 0.826434, 0.000000;;, - 51;3; 0.000000, 0.826434, 0.000000;;, - 52;3; 0.000000, 0.826434, 0.000000;;, - 53;3; 0.000000, 0.826434, 0.000000;;, - 54;3; 0.000000, 0.826434, 0.000000;;, - 55;3; 0.000000, 0.826434, 0.000000;;, - 56;3; 0.000000, 0.826434, 0.000000;;, - 57;3; 0.000000, 0.826434, 0.000000;;, - 58;3; 0.000000, 0.826434, 0.000000;;, - 59;3; 0.000000, 0.826434, 0.000000;;, - 60;3; 0.000000, 0.826434, 0.000000;;, - 61;3; 0.000000, 0.826434, 0.000000;;, - 62;3; 0.000000, 0.826434, 0.000000;;, - 63;3; 0.000000, 0.826434, 0.000000;;, - 64;3; 0.000000, 0.826434, 0.000000;;, - 65;3; 0.000000, 0.826434, 0.000000;;, - 66;3; 0.000000, 0.826434, 0.000000;;, - 67;3; 0.000000, 0.826434, 0.000000;;, - 68;3; 0.000000, 0.826434, 0.000000;;, - 69;3; 0.000000, 0.826434, 0.000000;;, - 70;3; 0.000000, 0.826434, 0.000000;;, - 71;3; 0.000000, 0.826434, 0.000000;;, - 72;3; 0.000000, 0.826434, 0.000000;;, - 73;3; 0.000000, 0.826434, 0.000000;;, - 74;3; 0.000000, 0.826434, 0.000000;;, - 75;3; 0.000000, 0.826434, 0.000000;;, - 76;3; 0.000000, 0.826434, 0.000000;;, - 77;3; 0.000000, 0.826434, 0.000000;;, - 78;3; 0.000000, 0.826434, 0.000000;;, - 79;3; 0.000000, 0.826434, 0.000000;;, - 80;3; 0.000000, 0.826434, 0.000000;;, - 81;3; 0.000000, 0.826434, 0.000000;;, - 82;3; 0.000000, 0.826434, 0.000000;;, - 83;3; 0.000000, 0.826434, 0.000000;;, - 84;3; 0.000000, 0.826434, 0.000000;;, - 85;3; 0.000000, 0.826434, 0.000000;;, - 86;3; 0.000000, 0.826434, 0.000000;;, - 87;3; 0.000000, 0.826434, 0.000000;;, - 88;3; 0.000000, 0.826434, 0.000000;;, - 89;3; 0.000000, 0.826434, 0.000000;;, - 90;3; 0.000000, 0.826434, 0.000000;;, - 91;3; 0.000000, 0.826434, 0.000000;;, - 92;3; 0.000000, 0.826434, 0.000000;;, - 93;3; 0.000000, 0.826434, 0.000000;;, - 94;3; 0.000000, 0.826434, 0.000000;;, - 95;3; 0.000000, 0.826434, 0.000000;;, - 96;3; 0.000000, 0.826434, 0.000000;;, - 97;3; 0.000000, 0.826434, 0.000000;;, - 98;3; 0.000000, 0.826434, 0.000000;;, - 99;3; 0.000000, 0.826434, 0.000000;;, - 100;3; 0.000000, 0.826434, 0.000000;;, - 101;3; 0.000000, 0.826434, 0.000000;;, - 102;3; 0.000000, 0.826434, 0.000000;;, - 103;3; 0.000000, 0.826434, 0.000000;;, - 104;3; 0.000000, 0.826434, 0.000000;;, - 105;3; 0.000000, 0.826434, 0.000000;;, - 106;3; 0.000000, 0.826434, 0.000000;;, - 107;3; 0.000000, 0.826434, 0.000000;;, - 108;3; 0.000000, 0.826434, 0.000000;;, - 109;3; 0.000000, 0.826434, 0.000000;;, - 110;3; 0.000000, 0.826434, 0.000000;;, - 111;3; 0.000000, 0.826434, 0.000000;;, - 112;3; 0.000000, 0.826434, 0.000000;;, - 113;3; 0.000000, 0.826434, 0.000000;;, - 114;3; 0.000000, 0.826434, 0.000000;;, - 115;3; 0.000000, 0.826434, 0.000000;;, - 116;3; 0.000000, 0.826434, 0.000000;;, - 117;3; 0.000000, 0.826434, 0.000000;;, - 118;3; 0.000000, 0.826434, 0.000000;;, - 119;3; 0.000000, 0.826434, 0.000000;;, - 120;3; 0.000000, 0.826434, 0.000000;;, - 121;3; 0.000000, 0.826434, 0.000000;;, - 122;3; 0.000000, 0.826434, 0.000000;;, - 123;3; 0.000000, 0.826434, 0.000000;;, - 124;3; 0.000000, 0.826434, 0.000000;;, - 125;3; 0.000000, 0.826434, 0.000000;;, - 126;3; 0.000000, 0.826434, 0.000000;;, - 127;3; 0.000000, 0.826434, 0.000000;;, - 128;3; 0.000000, 0.826434, 0.000000;;, - 129;3; 0.000000, 0.826434, 0.000000;;, - 130;3; 0.000000, 0.826434, 0.000000;;, - 131;3; 0.000000, 0.826434, 0.000000;;, - 132;3; 0.000000, 0.826434, 0.000000;;, - 133;3; 0.000000, 0.826434, 0.000000;;, - 134;3; 0.000000, 0.826434, 0.000000;;, - 135;3; 0.000000, 0.826434, 0.000000;;, - 136;3; 0.000000, 0.826434, 0.000000;;, - 137;3; 0.000000, 0.826434, 0.000000;;, - 138;3; 0.000000, 0.826434, 0.000000;;, - 139;3; 0.000000, 0.826434, 0.000000;;, - 140;3; 0.000000, 0.826434, 0.000000;;, - 141;3; 0.000000, 0.826434, 0.000000;;, - 142;3; 0.000000, 0.826434, 0.000000;;, - 143;3; 0.000000, 0.826434, 0.000000;;, - 144;3; 0.000000, 0.826434, 0.000000;;, - 145;3; 0.000000, 0.826434, 0.000000;;, - 146;3; 0.000000, 0.826434, 0.000000;;, - 147;3; 0.000000, 0.826434, 0.000000;;, - 148;3; 0.000000, 0.826434, 0.000000;;, - 149;3; 0.000000, 0.826434, 0.000000;;, - 150;3; 0.000000, 0.826434, 0.000000;;, - 151;3; 0.000000, 0.826434, 0.000000;;, - 152;3; 0.000000, 0.826434, 0.000000;;, - 153;3; 0.000000, 0.826434, 0.000000;;, - 154;3; 0.000000, 0.826434, 0.000000;;, - 155;3; 0.000000, 0.826434, 0.000000;;, - 156;3; 0.000000, 0.826434, 0.000000;;, - 157;3; 0.000000, 0.826434, 0.000000;;, - 158;3; 0.000000, 0.826434, 0.000000;;, - 159;3; 0.000000, 0.826434, 0.000000;;, - 160;3; 0.000000, 0.826434, 0.000000;;, - 161;3; 0.000000, 0.826434, 0.000000;;, - 162;3; 0.000000, 0.826434, 0.000000;;, - 163;3; 0.000000, 0.826434, 0.000000;;, - 164;3; 0.000000, 0.826434, 0.000000;;, - 165;3; 0.000000, 0.826434, 0.000000;;, - 166;3; 0.000000, 0.826434, 0.000000;;, - 167;3; 0.000000, 0.826434, 0.000000;;, - 168;3; 0.000000, 0.826434, 0.000000;;, - 169;3; 0.000000, 0.826434, 0.000000;;, - 170;3; 0.000000, 0.826434, 0.000000;;, - 171;3; 0.000000, 0.826434, 0.000000;;, - 172;3; 0.000000, 0.826434, 0.000000;;, - 173;3; 0.000000, 0.826434, 0.000000;;, - 174;3; 0.000000, 0.826434, 0.000000;;, - 175;3; 0.000000, 0.826434, 0.000000;;, - 176;3; 0.000000, 0.826434, 0.000000;;, - 177;3; 0.000000, 0.826434, 0.000000;;, - 178;3; 0.000000, 0.826434, 0.000000;;, - 179;3; 0.000000, 0.826434, 0.000000;;, - 180;3; 0.000000, 0.826434, 0.000000;;, - 181;3; 0.000000, 0.826434, 0.000000;;, - 182;3; 0.000000, 0.826434, 0.000000;;, - 183;3; 0.000000, 0.826434, 0.000000;;, - 184;3; 0.000000, 0.826434, 0.000000;;, - 185;3; 0.000000, 0.826434, 0.000000;;, - 186;3;-0.000000, 0.826434,-0.000000;;, - 187;3;-0.000000, 0.826434,-0.000000;;, - 188;3;-0.000000, 0.826434, 0.000000;;, - 189;3;-0.000000, 0.826434, 0.000000;;, - 190;3;-0.000000, 0.826434,-0.000000;;, - 191;3; 0.000000, 0.826434, 0.000000;;, - 192;3; 0.000000, 0.826434, 0.000000;;, - 193;3; 0.000000, 0.826434, 0.000000;;, - 194;3; 0.000000, 0.826434,-0.000000;;, - 195;3; 0.000000, 0.826434,-0.000000;;, - 196;3; 0.000000, 0.826434, 0.000000;;, - 197;3; 0.000000, 0.826434,-0.000000;;, - 198;3; 0.000000, 0.826434,-0.000000;;, - 199;3; 0.000000, 0.826434, 0.000000;;, - 200;3; 0.000000, 0.826434, 0.000000;;, - 201;3; 0.000000, 0.826434, 0.000000;;, - 202;3; 0.000000, 0.826434, 0.000000;;, - 203;3; 0.000000, 0.826434, 0.000000;;, - 204;3; 0.000000, 0.826434, 0.000000;;, - 205;3; 0.000000, 0.826434, 0.000000;;, - 206;3; 0.000000, 0.826434, 0.000000;;, - 207;3; 0.000000, 0.826434, 0.000000;;, - 208;3; 0.000000, 0.826434, 0.000000;;, - 209;3; 0.000000, 0.826434, 0.000000;;, - 210;3;-0.000000, 0.826434, 0.000000;;, - 211;3;-0.000000, 0.826434, 0.000000;;, - 212;3; 0.000000, 0.826434,-0.000000;;, - 213;3; 0.000000, 0.826434, 0.000000;;, - 214;3; 0.000000, 0.826434, 0.000000;;, - 215;3;-0.000000, 0.826434,-0.000000;;, - 216;3;-0.000000, 0.826434,-0.000000;;, - 217;3;-0.000000, 0.826434,-0.000000;;, - 218;3;-0.000000, 0.826434, 0.000000;;, - 219;3;-0.000000, 0.826434,-0.000000;;, - 220;3;-0.000000, 0.826434, 0.000000;;, - 221;3; 0.000000, 0.826434, 0.000000;;, - 222;3;-0.000000, 0.826434, 0.000000;;, - 223;3; 0.000000, 0.826434,-0.000000;;, - 224;3; 0.000000, 0.826434,-0.000000;;, - 225;3; 0.000000, 0.826434, 0.000000;;, - 226;3; 0.000000, 0.826434, 0.000000;;, - 227;3; 0.000000, 0.826434, 0.000000;;, - 228;3;-0.000000, 0.826434, 0.000000;;, - 229;3; 0.000000, 0.826434, 0.000000;;, - 230;3; 0.000000, 0.826434, 0.000000;;, - 231;3; 0.000000, 0.826434,-0.000000;;, - 232;3;-0.000000, 0.826434,-0.000000;;, - 233;3; 0.000000, 0.826434, 0.000000;;, - 234;3; 0.000000, 0.826434, 0.000000;;, - 235;3; 0.000000, 0.826434, 0.000000;;, - 236;3; 0.000000, 0.826434, 0.000000;;, - 237;3; 0.000000, 0.826434, 0.000000;;, - 238;3; 0.000000, 0.826434, 0.000000;;, - 239;3; 0.000000, 0.826434, 0.000000;;, - 240;3; 0.000000, 0.826434, 0.000000;;, - 241;3; 0.000000, 0.826434, 0.000000;;, - 242;3; 0.000000, 0.826434, 0.000000;;, - 243;3; 0.000000, 0.826434, 0.000000;;, - 244;3; 0.000000, 0.826434, 0.000000;;, - 245;3; 0.000000, 0.826434, 0.000000;;, - 246;3; 0.000000, 0.826434, 0.000000;;, - 247;3; 0.000000, 0.826434, 0.000000;;, - 248;3; 0.000000, 0.826434, 0.000000;;, - 249;3; 0.000000, 0.826434, 0.000000;;; - } - } - Animation { - {Armature_Bone_029} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 1;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 2;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 3;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 4;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 5;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 6;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 7;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 8;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 9;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 10;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 11;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 12;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 13;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 14;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 15;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 16;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 17;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 18;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 19;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 20;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 21;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 22;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 23;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 24;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 25;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 26;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 27;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 28;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 29;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 30;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 31;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 32;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 33;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 34;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 35;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 36;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 37;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 38;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 39;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 40;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 41;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 42;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 43;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 44;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 45;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 46;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 47;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 48;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 49;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 50;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 51;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 52;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 53;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 54;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 55;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 56;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 57;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 58;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 59;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 60;4;-0.988993, 0.075798,-0.009673,-0.126694;;, - 61;4;-0.989001, 0.075642,-0.009541,-0.126701;;, - 62;4;-0.989014, 0.075380,-0.009320,-0.126713;;, - 63;4;-0.989033, 0.075013,-0.009009,-0.126730;;, - 64;4;-0.989057, 0.074540,-0.008609,-0.126752;;, - 65;4;-0.989086, 0.073962,-0.008120,-0.126778;;, - 66;4;-0.989121, 0.073279,-0.007543,-0.126810;;, - 67;4;-0.989161, 0.072494,-0.006880,-0.126847;;, - 68;4;-0.989205, 0.071610,-0.006132,-0.126888;;, - 69;4;-0.989255, 0.070630,-0.005303,-0.126935;;, - 70;4;-0.989309, 0.069558,-0.004397,-0.126986;;, - 71;4;-0.989366, 0.068400,-0.003417,-0.127041;;, - 72;4;-0.989428, 0.067161,-0.002370,-0.127101;;, - 73;4;-0.989493, 0.065850,-0.001262,-0.127165;;, - 74;4;-0.989561, 0.064475,-0.000099,-0.127233;;, - 75;4;-0.989632, 0.063044, 0.001111,-0.127304;;, - 76;4;-0.989704, 0.061568, 0.002359,-0.127378;;, - 77;4;-0.989778, 0.060057, 0.003637,-0.127455;;, - 78;4;-0.989852, 0.058522, 0.004934,-0.127535;;, - 79;4;-0.989926, 0.056976, 0.006241,-0.127616;;, - 80;4;-0.990000, 0.055430, 0.007548,-0.127698;;, - 81;4;-0.990072, 0.053896, 0.008846,-0.127781;;, - 82;4;-0.990143, 0.052385, 0.010123,-0.127865;;, - 83;4;-0.990211, 0.050909, 0.011371,-0.127948;;, - 84;4;-0.990276, 0.049478, 0.012581,-0.128031;;, - 85;4;-0.990338, 0.048103, 0.013744,-0.128113;;, - 86;4;-0.990396, 0.046792, 0.014853,-0.128194;;, - 87;4;-0.990449, 0.045553, 0.015900,-0.128272;;, - 88;4;-0.990498, 0.044395, 0.016879,-0.128349;;, - 89;4;-0.990542, 0.043323, 0.017785,-0.128423;;, - 90;4;-0.990580, 0.042342, 0.018614,-0.128494;;, - 91;4;-0.990613, 0.041458, 0.019362,-0.128562;;, - 92;4;-0.990640, 0.040674, 0.020025,-0.128627;;, - 93;4;-0.990661, 0.039991, 0.020602,-0.128689;;, - 94;4;-0.990677, 0.039413, 0.021091,-0.128747;;, - 95;4;-0.990686, 0.038940, 0.021491,-0.128802;;, - 96;4;-0.990690, 0.038573, 0.021802,-0.128853;;, - 97;4;-0.990688, 0.038311, 0.022023,-0.128900;;, - 98;4;-0.990680, 0.038155, 0.022155,-0.128944;;, - 99;4;-0.990666, 0.038103, 0.022199,-0.128984;;, - 100;4;-0.990381, 0.039510, 0.020997,-0.128905;;, - 101;4;-0.989533, 0.043882, 0.017266,-0.128581;;, - 102;4;-0.988103, 0.051309, 0.010927,-0.128004;;, - 103;4;-0.986127, 0.061601, 0.002142,-0.127189;;, - 104;4;-0.983714, 0.074201,-0.008614,-0.126181;;, - 105;4;-0.981031, 0.088219,-0.020579,-0.125055;;, - 106;4;-0.978276, 0.102621,-0.032873,-0.123895;;, - 107;4;-0.975625, 0.116479,-0.044701,-0.122778;;, - 108;4;-0.973205, 0.129127,-0.055498,-0.121760;;, - 109;4;-0.971087, 0.140192,-0.064942,-0.120871;;, - 110;4;-0.969159, 0.150606,-0.074100,-0.120059;;, - 111;4;-0.967282, 0.161397,-0.084078,-0.119258;;, - 112;4;-0.965442, 0.172477,-0.094682,-0.118465;;, - 113;4;-0.963621, 0.183688,-0.105568,-0.117675;;, - 114;4;-0.961789, 0.194806,-0.116256,-0.116879;;, - 115;4;-0.959913, 0.205586,-0.126209,-0.116071;;, - 116;4;-0.957965, 0.215815,-0.134966,-0.115243;;, - 117;4;-0.955928, 0.225360,-0.142239,-0.114392;;, - 118;4;-0.953796, 0.234175,-0.147929,-0.113515;;, - 119;4;-0.951571, 0.242281,-0.152083,-0.112615;;, - 120;4;-0.948958, 0.251248,-0.152162,-0.111800;;, - 121;4;-0.945681, 0.262514,-0.145470,-0.111192;;, - 122;4;-0.941843, 0.275725,-0.132340,-0.110802;;, - 123;4;-0.937651, 0.290171,-0.113916,-0.110625;;, - 124;4;-0.933412, 0.304787,-0.092274,-0.110628;;, - 125;4;-0.929488, 0.318325,-0.070157,-0.110759;;, - 126;4;-0.926209, 0.329642,-0.050354,-0.110948;;, - 127;4;-0.923801, 0.337959,-0.035066,-0.111132;;, - 128;4;-0.922363, 0.342924,-0.025597,-0.111263;;, - 129;4;-0.921895, 0.344540,-0.022436,-0.111310;;, - 130;4;-0.923420, 0.338017,-0.020833,-0.111702;;, - 131;4;-0.928008, 0.318342,-0.016107,-0.112881;;, - 132;4;-0.935468, 0.286251,-0.008651,-0.114798;;, - 133;4;-0.945226, 0.244095, 0.000687,-0.117306;;, - 134;4;-0.956280, 0.196042, 0.010591,-0.120147;;, - 135;4;-0.967335, 0.147541, 0.019479,-0.122988;;, - 136;4;-0.977093, 0.104087, 0.025872,-0.125495;;, - 137;4;-0.984553, 0.069965, 0.028720,-0.127413;;, - 138;4;-0.989141, 0.047676, 0.027516,-0.128592;;, - 139;4;-0.990666, 0.038103, 0.022199,-0.128984;;, - 140;4;-0.989556, 0.041570, 0.012021,-0.128527;;, - 141;4;-0.986156, 0.058863,-0.004070,-0.127124;;, - 142;4;-0.981049, 0.086461,-0.024569,-0.125014;;, - 143;4;-0.975630, 0.115958,-0.045882,-0.122766;;, - 144;4;-0.971087, 0.140192,-0.064942,-0.120871;;, - 145;4;-0.967282, 0.161397,-0.084078,-0.119258;;, - 146;4;-0.963621, 0.183688,-0.105568,-0.117675;;, - 147;4;-0.959913, 0.205586,-0.126209,-0.116071;;, - 148;4;-0.955928, 0.225360,-0.142239,-0.114392;;, - 149;4;-0.951571, 0.242281,-0.152083,-0.112615;;, - 150;4;-0.945681, 0.262514,-0.145470,-0.111192;;, - 151;4;-0.937651, 0.290171,-0.113916,-0.110625;;, - 152;4;-0.929488, 0.318325,-0.070157,-0.110759;;, - 153;4;-0.923801, 0.337959,-0.035066,-0.111132;;, - 154;4;-0.921895, 0.344540,-0.022436,-0.111310;;, - 155;4;-0.927996, 0.317417,-0.018204,-0.112908;;, - 156;4;-0.945186, 0.240971,-0.006399,-0.117397;;, - 157;4;-0.967272, 0.142678, 0.008447,-0.123129;;, - 158;4;-0.984500, 0.065860, 0.019406,-0.127532;;, - 159;4;-0.990666, 0.038103, 0.022199,-0.128984;;, - 160;4;-0.990734, 0.037638, 0.020496,-0.128828;;, - 161;4;-0.990791, 0.037695, 0.018666,-0.128695;;, - 162;4;-0.990836, 0.038279, 0.016718,-0.128583;;, - 163;4;-0.990866, 0.039387, 0.014664,-0.128492;;, - 164;4;-0.990880, 0.041002, 0.012519,-0.128419;;, - 165;4;-0.990878, 0.043089, 0.010308,-0.128362;;, - 166;4;-0.990856, 0.045597, 0.008059,-0.128318;;, - 167;4;-0.990815, 0.048456, 0.005807,-0.128281;;, - 168;4;-0.990753, 0.051579, 0.003588,-0.128247;;, - 169;4;-0.990671, 0.054862, 0.001444,-0.128210;;, - 170;4;-0.990569, 0.058196,-0.000585,-0.128163;;, - 171;4;-0.990448, 0.061468,-0.002463,-0.128103;;, - 172;4;-0.990309, 0.064573,-0.004158,-0.128023;;, - 173;4;-0.990153, 0.067417,-0.005646,-0.127919;;, - 174;4;-0.989984, 0.069922,-0.006909,-0.127789;;, - 175;4;-0.989802, 0.072028,-0.007937,-0.127630;;, - 176;4;-0.989610, 0.073693,-0.008728,-0.127441;;, - 177;4;-0.989410, 0.074892,-0.009284,-0.127221;;, - 178;4;-0.989203, 0.075611,-0.009610,-0.126971;;, - 179;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 180;4;-0.986083, 0.079754, 0.000101,-0.124537;;, - 181;4;-0.977768, 0.091301, 0.029737,-0.118645;;, - 182;4;-0.964390, 0.109598, 0.078133,-0.109258;;, - 183;4;-0.946970, 0.132664, 0.141816,-0.097088;;, - 184;4;-0.927284, 0.157384, 0.214578,-0.083366;;, - 185;4;-0.907628, 0.179982, 0.288277,-0.069686;;, - 186;4;-0.890294, 0.196893, 0.354672,-0.057633;;, - 187;4;-0.877051, 0.205560, 0.407313,-0.048431;;, - 188;4;-0.868910, 0.204713, 0.442412,-0.042777;;, - 189;4;-0.866206, 0.194155, 0.458604,-0.040900;;, - 190;4;-0.874856, 0.162582, 0.444607,-0.047644;;, - 191;4;-0.899688, 0.101149, 0.389390,-0.066848;;, - 192;4;-0.932828, 0.025866, 0.307044,-0.092059;;, - 193;4;-0.961083,-0.037592, 0.225849,-0.112772;;, - 194;4;-0.975559,-0.072609, 0.167655,-0.122084;;, - 195;4;-0.981508,-0.073185, 0.120643,-0.124590;;, - 196;4;-0.985748,-0.038554, 0.070473,-0.126130;;, - 197;4;-0.988051, 0.015005, 0.026688,-0.126723;;, - 198;4;-0.988867, 0.059553,-0.000984,-0.126754;;, - 199;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 200;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 201;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 202;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 203;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 204;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 205;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 206;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 207;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 208;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 209;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 210;4;-0.988357, 0.072095,-0.014826,-0.100879;;, - 211;4;-0.986573, 0.060925,-0.030252,-0.028170;;, - 212;4;-0.984283, 0.044986,-0.052838, 0.065187;;, - 213;4;-0.982499, 0.029464,-0.075836, 0.137896;;, - 214;4;-0.981866, 0.018305,-0.093828, 0.163710;;, - 215;4;-0.981850, 0.010182,-0.108392, 0.162074;;, - 216;4;-0.981810, 0.002927,-0.122330, 0.156684;;, - 217;4;-0.981770,-0.003155,-0.134876, 0.147665;;, - 218;4;-0.981760,-0.008118,-0.145587, 0.136556;;, - 219;4;-0.981796,-0.012343,-0.154660, 0.125188;;, - 220;4;-0.981850,-0.016142,-0.162713, 0.112954;;, - 221;4;-0.981912,-0.019316,-0.169517, 0.098469;;, - 222;4;-0.982019,-0.021502,-0.174270, 0.082613;;, - 223;4;-0.982198,-0.022615,-0.176730, 0.067026;;, - 224;4;-0.982449,-0.022911,-0.177393, 0.052916;;, - 225;4;-0.982771,-0.021941,-0.175746, 0.039140;;, - 226;4;-0.983169,-0.019010,-0.170770, 0.024299;;, - 227;4;-0.983640,-0.014132,-0.162488, 0.008529;;, - 228;4;-0.984177,-0.007410,-0.151075,-0.007948;;, - 229;4;-0.984766, 0.000945,-0.136890,-0.024819;;, - 230;4;-0.985390, 0.010595,-0.120507,-0.041681;;, - 231;4;-0.986027, 0.021081,-0.102703,-0.058057;;, - 232;4;-0.986651, 0.031858,-0.084407,-0.073448;;, - 233;4;-0.987235, 0.042344,-0.066603,-0.087381;;, - 234;4;-0.987757, 0.051994,-0.050219,-0.099466;;, - 235;4;-0.988198, 0.060349,-0.036034,-0.109429;;, - 236;4;-0.988546, 0.067071,-0.024621,-0.117125;;, - 237;4;-0.988795, 0.071949,-0.016340,-0.122522;;, - 238;4;-0.988942, 0.074880,-0.011363,-0.125673;;, - 239;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 240;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 241;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 242;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 243;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 244;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 245;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 246;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 247;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 248;4;-0.988990, 0.075850,-0.009717,-0.126692;;, - 249;4;-0.988990, 0.075850,-0.009717,-0.126692;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3; 0.000000, 0.868658, 0.000000;;, - 1;3; 0.000000, 0.868658, 0.000000;;, - 2;3; 0.000000, 0.868658, 0.000000;;, - 3;3; 0.000000, 0.868658, 0.000000;;, - 4;3; 0.000000, 0.868658, 0.000000;;, - 5;3; 0.000000, 0.868658, 0.000000;;, - 6;3; 0.000000, 0.868658, 0.000000;;, - 7;3; 0.000000, 0.868658, 0.000000;;, - 8;3; 0.000000, 0.868658, 0.000000;;, - 9;3; 0.000000, 0.868658, 0.000000;;, - 10;3; 0.000000, 0.868658, 0.000000;;, - 11;3; 0.000000, 0.868658, 0.000000;;, - 12;3; 0.000000, 0.868658, 0.000000;;, - 13;3; 0.000000, 0.868658, 0.000000;;, - 14;3; 0.000000, 0.868658, 0.000000;;, - 15;3; 0.000000, 0.868658, 0.000000;;, - 16;3; 0.000000, 0.868658, 0.000000;;, - 17;3; 0.000000, 0.868658, 0.000000;;, - 18;3; 0.000000, 0.868658, 0.000000;;, - 19;3; 0.000000, 0.868658, 0.000000;;, - 20;3; 0.000000, 0.868658, 0.000000;;, - 21;3; 0.000000, 0.868658, 0.000000;;, - 22;3; 0.000000, 0.868658, 0.000000;;, - 23;3; 0.000000, 0.868658, 0.000000;;, - 24;3; 0.000000, 0.868658, 0.000000;;, - 25;3; 0.000000, 0.868658, 0.000000;;, - 26;3; 0.000000, 0.868658, 0.000000;;, - 27;3; 0.000000, 0.868658, 0.000000;;, - 28;3; 0.000000, 0.868658, 0.000000;;, - 29;3; 0.000000, 0.868658, 0.000000;;, - 30;3; 0.000000, 0.868658, 0.000000;;, - 31;3; 0.000000, 0.868658, 0.000000;;, - 32;3; 0.000000, 0.868658, 0.000000;;, - 33;3; 0.000000, 0.868658, 0.000000;;, - 34;3; 0.000000, 0.868658, 0.000000;;, - 35;3; 0.000000, 0.868658, 0.000000;;, - 36;3; 0.000000, 0.868658, 0.000000;;, - 37;3; 0.000000, 0.868658, 0.000000;;, - 38;3; 0.000000, 0.868658, 0.000000;;, - 39;3; 0.000000, 0.868658, 0.000000;;, - 40;3; 0.000000, 0.868658, 0.000000;;, - 41;3; 0.000000, 0.868658, 0.000000;;, - 42;3; 0.000000, 0.868658, 0.000000;;, - 43;3; 0.000000, 0.868658, 0.000000;;, - 44;3; 0.000000, 0.868658, 0.000000;;, - 45;3; 0.000000, 0.868658, 0.000000;;, - 46;3; 0.000000, 0.868658, 0.000000;;, - 47;3; 0.000000, 0.868658, 0.000000;;, - 48;3; 0.000000, 0.868658, 0.000000;;, - 49;3; 0.000000, 0.868658, 0.000000;;, - 50;3; 0.000000, 0.868658, 0.000000;;, - 51;3; 0.000000, 0.868658, 0.000000;;, - 52;3; 0.000000, 0.868658, 0.000000;;, - 53;3; 0.000000, 0.868658, 0.000000;;, - 54;3; 0.000000, 0.868658, 0.000000;;, - 55;3; 0.000000, 0.868658, 0.000000;;, - 56;3; 0.000000, 0.868658, 0.000000;;, - 57;3; 0.000000, 0.868658, 0.000000;;, - 58;3; 0.000000, 0.868658, 0.000000;;, - 59;3; 0.000000, 0.868658, 0.000000;;, - 60;3; 0.000000, 0.868658, 0.000000;;, - 61;3; 0.000000, 0.868658, 0.000000;;, - 62;3; 0.000000, 0.868658, 0.000000;;, - 63;3; 0.000000, 0.868658, 0.000000;;, - 64;3; 0.000000, 0.868658, 0.000000;;, - 65;3; 0.000000, 0.868658, 0.000000;;, - 66;3; 0.000000, 0.868658, 0.000000;;, - 67;3; 0.000000, 0.868658, 0.000000;;, - 68;3; 0.000000, 0.868658, 0.000000;;, - 69;3; 0.000000, 0.868658, 0.000000;;, - 70;3; 0.000000, 0.868658, 0.000000;;, - 71;3; 0.000000, 0.868658, 0.000000;;, - 72;3; 0.000000, 0.868658, 0.000000;;, - 73;3; 0.000000, 0.868658, 0.000000;;, - 74;3; 0.000000, 0.868658, 0.000000;;, - 75;3; 0.000000, 0.868658, 0.000000;;, - 76;3; 0.000000, 0.868658, 0.000000;;, - 77;3; 0.000000, 0.868658, 0.000000;;, - 78;3; 0.000000, 0.868658, 0.000000;;, - 79;3; 0.000000, 0.868658, 0.000000;;, - 80;3; 0.000000, 0.868658, 0.000000;;, - 81;3; 0.000000, 0.868658, 0.000000;;, - 82;3; 0.000000, 0.868658, 0.000000;;, - 83;3; 0.000000, 0.868658, 0.000000;;, - 84;3; 0.000000, 0.868658, 0.000000;;, - 85;3; 0.000000, 0.868658, 0.000000;;, - 86;3; 0.000000, 0.868658, 0.000000;;, - 87;3; 0.000000, 0.868658, 0.000000;;, - 88;3; 0.000000, 0.868658, 0.000000;;, - 89;3; 0.000000, 0.868658, 0.000000;;, - 90;3; 0.000000, 0.868658, 0.000000;;, - 91;3; 0.000000, 0.868658, 0.000000;;, - 92;3; 0.000000, 0.868658, 0.000000;;, - 93;3; 0.000000, 0.868658, 0.000000;;, - 94;3; 0.000000, 0.868658, 0.000000;;, - 95;3; 0.000000, 0.868658, 0.000000;;, - 96;3; 0.000000, 0.868658, 0.000000;;, - 97;3; 0.000000, 0.868658, 0.000000;;, - 98;3; 0.000000, 0.868658, 0.000000;;, - 99;3; 0.000000, 0.868658, 0.000000;;, - 100;3; 0.000000, 0.868658, 0.000000;;, - 101;3; 0.000000, 0.868658, 0.000000;;, - 102;3; 0.000000, 0.868658, 0.000000;;, - 103;3; 0.000000, 0.868658, 0.000000;;, - 104;3; 0.000000, 0.868658, 0.000000;;, - 105;3; 0.000000, 0.868658, 0.000000;;, - 106;3; 0.000000, 0.868658, 0.000000;;, - 107;3; 0.000000, 0.868658, 0.000000;;, - 108;3; 0.000000, 0.868658, 0.000000;;, - 109;3; 0.000000, 0.868658, 0.000000;;, - 110;3; 0.000000, 0.868658, 0.000000;;, - 111;3; 0.000000, 0.868658, 0.000000;;, - 112;3; 0.000000, 0.868658, 0.000000;;, - 113;3; 0.000000, 0.868658, 0.000000;;, - 114;3; 0.000000, 0.868658, 0.000000;;, - 115;3; 0.000000, 0.868658, 0.000000;;, - 116;3; 0.000000, 0.868658, 0.000000;;, - 117;3; 0.000000, 0.868658, 0.000000;;, - 118;3; 0.000000, 0.868658, 0.000000;;, - 119;3; 0.000000, 0.868658, 0.000000;;, - 120;3; 0.000000, 0.868658, 0.000000;;, - 121;3; 0.000000, 0.868658, 0.000000;;, - 122;3; 0.000000, 0.868658, 0.000000;;, - 123;3; 0.000000, 0.868658, 0.000000;;, - 124;3; 0.000000, 0.868658, 0.000000;;, - 125;3; 0.000000, 0.868658, 0.000000;;, - 126;3; 0.000000, 0.868658, 0.000000;;, - 127;3; 0.000000, 0.868658, 0.000000;;, - 128;3; 0.000000, 0.868658, 0.000000;;, - 129;3; 0.000000, 0.868658, 0.000000;;, - 130;3; 0.000000, 0.868658, 0.000000;;, - 131;3; 0.000000, 0.868658, 0.000000;;, - 132;3; 0.000000, 0.868658, 0.000000;;, - 133;3; 0.000000, 0.868658, 0.000000;;, - 134;3; 0.000000, 0.868658, 0.000000;;, - 135;3; 0.000000, 0.868658, 0.000000;;, - 136;3; 0.000000, 0.868658, 0.000000;;, - 137;3; 0.000000, 0.868658, 0.000000;;, - 138;3; 0.000000, 0.868658, 0.000000;;, - 139;3; 0.000000, 0.868658, 0.000000;;, - 140;3; 0.000000, 0.868658, 0.000000;;, - 141;3; 0.000000, 0.868658, 0.000000;;, - 142;3; 0.000000, 0.868658, 0.000000;;, - 143;3; 0.000000, 0.868658, 0.000000;;, - 144;3; 0.000000, 0.868658, 0.000000;;, - 145;3; 0.000000, 0.868658, 0.000000;;, - 146;3; 0.000000, 0.868658, 0.000000;;, - 147;3; 0.000000, 0.868658, 0.000000;;, - 148;3; 0.000000, 0.868658, 0.000000;;, - 149;3; 0.000000, 0.868658, 0.000000;;, - 150;3; 0.000000, 0.868658, 0.000000;;, - 151;3; 0.000000, 0.868658, 0.000000;;, - 152;3; 0.000000, 0.868658, 0.000000;;, - 153;3; 0.000000, 0.868658, 0.000000;;, - 154;3; 0.000000, 0.868658, 0.000000;;, - 155;3; 0.000000, 0.868658, 0.000000;;, - 156;3; 0.000000, 0.868658, 0.000000;;, - 157;3; 0.000000, 0.868658, 0.000000;;, - 158;3; 0.000000, 0.868658, 0.000000;;, - 159;3; 0.000000, 0.868658, 0.000000;;, - 160;3; 0.000000, 0.868658, 0.000000;;, - 161;3; 0.000000, 0.868658, 0.000000;;, - 162;3; 0.000000, 0.868658, 0.000000;;, - 163;3; 0.000000, 0.868658, 0.000000;;, - 164;3; 0.000000, 0.868658, 0.000000;;, - 165;3; 0.000000, 0.868658, 0.000000;;, - 166;3; 0.000000, 0.868658, 0.000000;;, - 167;3; 0.000000, 0.868658, 0.000000;;, - 168;3; 0.000000, 0.868658, 0.000000;;, - 169;3; 0.000000, 0.868658, 0.000000;;, - 170;3; 0.000000, 0.868658, 0.000000;;, - 171;3; 0.000000, 0.868658, 0.000000;;, - 172;3; 0.000000, 0.868658, 0.000000;;, - 173;3; 0.000000, 0.868658, 0.000000;;, - 174;3; 0.000000, 0.868658, 0.000000;;, - 175;3; 0.000000, 0.868658, 0.000000;;, - 176;3; 0.000000, 0.868658, 0.000000;;, - 177;3; 0.000000, 0.868658, 0.000000;;, - 178;3; 0.000000, 0.868658, 0.000000;;, - 179;3; 0.000000, 0.868658, 0.000000;;, - 180;3; 0.000000, 0.868658, 0.000000;;, - 181;3; 0.000000, 0.868658, 0.000000;;, - 182;3; 0.000000, 0.868658,-0.000000;;, - 183;3; 0.000000, 0.868658, 0.000000;;, - 184;3;-0.000000, 0.868658,-0.000000;;, - 185;3; 0.000000, 0.868658,-0.000000;;, - 186;3; 0.000000, 0.868658,-0.000000;;, - 187;3; 0.000000, 0.868658,-0.000000;;, - 188;3;-0.000000, 0.868658, 0.000000;;, - 189;3; 0.000000, 0.868658, 0.000000;;, - 190;3; 0.000000, 0.868658, 0.000000;;, - 191;3;-0.000000, 0.868658, 0.000000;;, - 192;3; 0.000000, 0.868658,-0.000000;;, - 193;3; 0.000000, 0.868658,-0.000000;;, - 194;3;-0.000000, 0.868658,-0.000000;;, - 195;3;-0.000000, 0.868658,-0.000000;;, - 196;3; 0.000000, 0.868658, 0.000000;;, - 197;3;-0.000000, 0.868658, 0.000000;;, - 198;3; 0.000000, 0.868658, 0.000000;;, - 199;3; 0.000000, 0.868658, 0.000000;;, - 200;3; 0.000000, 0.868658, 0.000000;;, - 201;3; 0.000000, 0.868658, 0.000000;;, - 202;3; 0.000000, 0.868658, 0.000000;;, - 203;3; 0.000000, 0.868658, 0.000000;;, - 204;3; 0.000000, 0.868658, 0.000000;;, - 205;3; 0.000000, 0.868658, 0.000000;;, - 206;3; 0.000000, 0.868658, 0.000000;;, - 207;3; 0.000000, 0.868658, 0.000000;;, - 208;3; 0.000000, 0.868658, 0.000000;;, - 209;3; 0.000000, 0.868658, 0.000000;;, - 210;3; 0.000000, 0.868658, 0.000000;;, - 211;3;-0.000000, 0.868658,-0.000000;;, - 212;3;-0.000000, 0.868658, 0.000000;;, - 213;3;-0.000000, 0.868658,-0.000000;;, - 214;3; 0.000000, 0.868658,-0.000000;;, - 215;3; 0.000000, 0.868658, 0.000000;;, - 216;3;-0.000000, 0.868658,-0.000000;;, - 217;3; 0.000000, 0.868658,-0.000000;;, - 218;3;-0.000000, 0.868658, 0.000000;;, - 219;3; 0.000000, 0.868658,-0.000000;;, - 220;3; 0.000000, 0.868658, 0.000000;;, - 221;3;-0.000000, 0.868658, 0.000000;;, - 222;3;-0.000000, 0.868658, 0.000000;;, - 223;3;-0.000000, 0.868658, 0.000000;;, - 224;3;-0.000000, 0.868658,-0.000000;;, - 225;3;-0.000000, 0.868658, 0.000000;;, - 226;3;-0.000000, 0.868658, 0.000000;;, - 227;3; 0.000000, 0.868658, 0.000000;;, - 228;3;-0.000000, 0.868658,-0.000000;;, - 229;3; 0.000000, 0.868658,-0.000000;;, - 230;3; 0.000000, 0.868658, 0.000000;;, - 231;3;-0.000000, 0.868658, 0.000000;;, - 232;3;-0.000000, 0.868658,-0.000000;;, - 233;3;-0.000000, 0.868658, 0.000000;;, - 234;3;-0.000000, 0.868658, 0.000000;;, - 235;3;-0.000000, 0.868658, 0.000000;;, - 236;3;-0.000000, 0.868658,-0.000000;;, - 237;3; 0.000000, 0.868658,-0.000000;;, - 238;3;-0.000000, 0.868658, 0.000000;;, - 239;3; 0.000000, 0.868658, 0.000000;;, - 240;3; 0.000000, 0.868658, 0.000000;;, - 241;3; 0.000000, 0.868658, 0.000000;;, - 242;3; 0.000000, 0.868658, 0.000000;;, - 243;3; 0.000000, 0.868658, 0.000000;;, - 244;3; 0.000000, 0.868658, 0.000000;;, - 245;3; 0.000000, 0.868658, 0.000000;;, - 246;3; 0.000000, 0.868658, 0.000000;;, - 247;3; 0.000000, 0.868658, 0.000000;;, - 248;3; 0.000000, 0.868658, 0.000000;;, - 249;3; 0.000000, 0.868658, 0.000000;;; - } - } - Animation { - {Armature_Bone_033} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 1;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 2;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 3;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 4;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 5;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 6;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 7;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 8;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 9;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 10;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 11;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 12;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 13;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 14;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 15;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 16;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 17;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 18;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 19;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 20;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 21;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 22;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 23;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 24;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 25;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 26;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 27;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 28;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 29;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 30;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 31;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 32;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 33;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 34;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 35;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 36;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 37;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 38;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 39;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 40;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 41;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 42;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 43;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 44;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 45;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 46;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 47;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 48;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 49;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 50;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 51;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 52;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 53;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 54;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 55;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 56;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 57;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 58;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 59;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 60;4;-0.984118,-0.177486,-0.000064,-0.000002;;, - 61;4;-0.984156,-0.177191,-0.000256,-0.000007;;, - 62;4;-0.984219,-0.176698,-0.000578,-0.000015;;, - 63;4;-0.984308,-0.176006,-0.001030,-0.000026;;, - 64;4;-0.984423,-0.175114,-0.001613,-0.000041;;, - 65;4;-0.984563,-0.174023,-0.002325,-0.000059;;, - 66;4;-0.984728,-0.172737,-0.003165,-0.000081;;, - 67;4;-0.984917,-0.171257,-0.004131,-0.000105;;, - 68;4;-0.985131,-0.169590,-0.005220,-0.000133;;, - 69;4;-0.985368,-0.167742,-0.006427,-0.000164;;, - 70;4;-0.985627,-0.165720,-0.007747,-0.000197;;, - 71;4;-0.985908,-0.163536,-0.009173,-0.000233;;, - 72;4;-0.986207,-0.161201,-0.010698,-0.000272;;, - 73;4;-0.986524,-0.158729,-0.012312,-0.000313;;, - 74;4;-0.986857,-0.156135,-0.014006,-0.000356;;, - 75;4;-0.987203,-0.153437,-0.015768,-0.000401;;, - 76;4;-0.987560,-0.150654,-0.017586,-0.000448;;, - 77;4;-0.987925,-0.147805,-0.019446,-0.000495;;, - 78;4;-0.988296,-0.144912,-0.021335,-0.000543;;, - 79;4;-0.988670,-0.141997,-0.023239,-0.000591;;, - 80;4;-0.989044,-0.139082,-0.025142,-0.000640;;, - 81;4;-0.989415,-0.136189,-0.027031,-0.000688;;, - 82;4;-0.989781,-0.133340,-0.028892,-0.000735;;, - 83;4;-0.990138,-0.130557,-0.030709,-0.000781;;, - 84;4;-0.990484,-0.127859,-0.032471,-0.000826;;, - 85;4;-0.990816,-0.125265,-0.034165,-0.000869;;, - 86;4;-0.991134,-0.122793,-0.035779,-0.000910;;, - 87;4;-0.991433,-0.120458,-0.037304,-0.000949;;, - 88;4;-0.991713,-0.118274,-0.038730,-0.000986;;, - 89;4;-0.991973,-0.116253,-0.040050,-0.001019;;, - 90;4;-0.992210,-0.114405,-0.041257,-0.001050;;, - 91;4;-0.992423,-0.112737,-0.042346,-0.001078;;, - 92;4;-0.992613,-0.111258,-0.043312,-0.001102;;, - 93;4;-0.992778,-0.109971,-0.044152,-0.001124;;, - 94;4;-0.992918,-0.108881,-0.044864,-0.001142;;, - 95;4;-0.993033,-0.107989,-0.045447,-0.001157;;, - 96;4;-0.993121,-0.107296,-0.045899,-0.001168;;, - 97;4;-0.993185,-0.106803,-0.046221,-0.001176;;, - 98;4;-0.993222,-0.106509,-0.046413,-0.001181;;, - 99;4;-0.993235,-0.106411,-0.046477,-0.001183;;, - 100;4;-0.992457,-0.108704,-0.044924,-0.001143;;, - 101;4;-0.990042,-0.115829,-0.040099,-0.001020;;, - 102;4;-0.985938,-0.127931,-0.031902,-0.000812;;, - 103;4;-0.980251,-0.144703,-0.020542,-0.000523;;, - 104;4;-0.973289,-0.165237,-0.006635,-0.000169;;, - 105;4;-0.965544,-0.188081, 0.008838, 0.000225;;, - 106;4;-0.957586,-0.211550, 0.024734, 0.000629;;, - 107;4;-0.949929,-0.234133, 0.040028, 0.001019;;, - 108;4;-0.942940,-0.254745, 0.053989, 0.001374;;, - 109;4;-0.936827,-0.272776, 0.066201, 0.001685;;, - 110;4;-0.930713,-0.290807, 0.078414, 0.001995;;, - 111;4;-0.923724,-0.311419, 0.092374, 0.002351;;, - 112;4;-0.916067,-0.334001, 0.107669, 0.002740;;, - 113;4;-0.908110,-0.357471, 0.123565, 0.003144;;, - 114;4;-0.900364,-0.380315, 0.139037, 0.003538;;, - 115;4;-0.893402,-0.400849, 0.152945, 0.003892;;, - 116;4;-0.887715,-0.417621, 0.164305, 0.004181;;, - 117;4;-0.883612,-0.429723, 0.172501, 0.004390;;, - 118;4;-0.881196,-0.436847, 0.177327, 0.004513;;, - 119;4;-0.880418,-0.439141, 0.178880, 0.004552;;, - 120;4;-0.881196,-0.436848, 0.177327, 0.004513;;, - 121;4;-0.883612,-0.429723, 0.172501, 0.004390;;, - 122;4;-0.887715,-0.417621, 0.164305, 0.004181;;, - 123;4;-0.893402,-0.400849, 0.152945, 0.003892;;, - 124;4;-0.900364,-0.380315, 0.139037, 0.003538;;, - 125;4;-0.908110,-0.357471, 0.123565, 0.003144;;, - 126;4;-0.916067,-0.334001, 0.107669, 0.002740;;, - 127;4;-0.923724,-0.311419, 0.092374, 0.002351;;, - 128;4;-0.930713,-0.290807, 0.078414, 0.001995;;, - 129;4;-0.936827,-0.272776, 0.066201, 0.001685;;, - 130;4;-0.942940,-0.254745, 0.053989, 0.001374;;, - 131;4;-0.949929,-0.234133, 0.040028, 0.001019;;, - 132;4;-0.957586,-0.211550, 0.024734, 0.000629;;, - 133;4;-0.965544,-0.188081, 0.008838, 0.000225;;, - 134;4;-0.973289,-0.165237,-0.006635,-0.000169;;, - 135;4;-0.980251,-0.144703,-0.020542,-0.000523;;, - 136;4;-0.985938,-0.127931,-0.031902,-0.000812;;, - 137;4;-0.990042,-0.115829,-0.040099,-0.001020;;, - 138;4;-0.992457,-0.108704,-0.044924,-0.001143;;, - 139;4;-0.993235,-0.106411,-0.046477,-0.001183;;, - 140;4;-0.990042,-0.115829,-0.040099,-0.001020;;, - 141;4;-0.980251,-0.144703,-0.020542,-0.000523;;, - 142;4;-0.965544,-0.188081, 0.008838, 0.000225;;, - 143;4;-0.949929,-0.234133, 0.040028, 0.001019;;, - 144;4;-0.936827,-0.272776, 0.066201, 0.001685;;, - 145;4;-0.923724,-0.311419, 0.092374, 0.002351;;, - 146;4;-0.908110,-0.357471, 0.123565, 0.003144;;, - 147;4;-0.893402,-0.400849, 0.152945, 0.003892;;, - 148;4;-0.883612,-0.429723, 0.172501, 0.004390;;, - 149;4;-0.880418,-0.439141, 0.178880, 0.004552;;, - 150;4;-0.883612,-0.429723, 0.172501, 0.004390;;, - 151;4;-0.893402,-0.400849, 0.152945, 0.003892;;, - 152;4;-0.908110,-0.357471, 0.123565, 0.003144;;, - 153;4;-0.923724,-0.311419, 0.092374, 0.002351;;, - 154;4;-0.936827,-0.272776, 0.066201, 0.001685;;, - 155;4;-0.949929,-0.234133, 0.040028, 0.001019;;, - 156;4;-0.965544,-0.188081, 0.008838, 0.000225;;, - 157;4;-0.980251,-0.144703,-0.020542,-0.000523;;, - 158;4;-0.990042,-0.115829,-0.040099,-0.001020;;, - 159;4;-0.993235,-0.106411,-0.046477,-0.001183;;, - 160;4;-0.993185,-0.106803,-0.046221,-0.001176;;, - 161;4;-0.993032,-0.107989,-0.045447,-0.001157;;, - 162;4;-0.992778,-0.109971,-0.044152,-0.001124;;, - 163;4;-0.992423,-0.112737,-0.042346,-0.001078;;, - 164;4;-0.991972,-0.116253,-0.040050,-0.001019;;, - 165;4;-0.991433,-0.120458,-0.037304,-0.000949;;, - 166;4;-0.990816,-0.125266,-0.034165,-0.000869;;, - 167;4;-0.990138,-0.130557,-0.030709,-0.000781;;, - 168;4;-0.989415,-0.136189,-0.027031,-0.000688;;, - 169;4;-0.988670,-0.141997,-0.023239,-0.000591;;, - 170;4;-0.987925,-0.147805,-0.019446,-0.000495;;, - 171;4;-0.987203,-0.153437,-0.015768,-0.000401;;, - 172;4;-0.986524,-0.158729,-0.012312,-0.000313;;, - 173;4;-0.985908,-0.163536,-0.009173,-0.000233;;, - 174;4;-0.985368,-0.167742,-0.006427,-0.000164;;, - 175;4;-0.984917,-0.171257,-0.004131,-0.000105;;, - 176;4;-0.984562,-0.174023,-0.002325,-0.000059;;, - 177;4;-0.984308,-0.176006,-0.001030,-0.000026;;, - 178;4;-0.984156,-0.177191,-0.000256,-0.000007;;, - 179;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 180;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 181;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 182;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 183;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 184;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 185;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 186;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 187;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 188;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 189;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 190;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 191;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 192;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 193;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 194;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 195;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 196;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 197;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 198;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 199;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 200;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 201;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 202;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 203;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 204;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 205;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 206;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 207;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 208;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 209;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 210;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 211;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 212;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 213;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 214;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 215;4;-0.985123,-0.166367, 0.006745,-0.001948;;, - 216;4;-0.987989,-0.134773, 0.025742,-0.007435;;, - 217;4;-0.991668,-0.094207, 0.050134,-0.014481;;, - 218;4;-0.994533,-0.062614, 0.069132,-0.019968;;, - 219;4;-0.995551,-0.051397, 0.075876,-0.021916;;, - 220;4;-0.994533,-0.062614, 0.069132,-0.019968;;, - 221;4;-0.991668,-0.094207, 0.050134,-0.014481;;, - 222;4;-0.987989,-0.134773, 0.025742,-0.007435;;, - 223;4;-0.985123,-0.166367, 0.006745,-0.001948;;, - 224;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 225;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 226;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 227;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 228;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 229;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 230;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 231;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 232;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 233;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 234;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 235;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 236;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 237;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 238;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 239;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 240;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 241;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 242;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 243;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 244;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 245;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 246;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 247;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 248;4;-0.984106,-0.177584,-0.000000, 0.000000;;, - 249;4;-0.984106,-0.177584,-0.000000, 0.000000;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3;-0.000000, 1.279916,-0.000000;;, - 1;3;-0.000000, 1.279916,-0.000000;;, - 2;3;-0.000000, 1.279916,-0.000000;;, - 3;3;-0.000000, 1.279916,-0.000000;;, - 4;3;-0.000000, 1.279916,-0.000000;;, - 5;3;-0.000000, 1.279916,-0.000000;;, - 6;3;-0.000000, 1.279916,-0.000000;;, - 7;3;-0.000000, 1.279916,-0.000000;;, - 8;3;-0.000000, 1.279916,-0.000000;;, - 9;3;-0.000000, 1.279916,-0.000000;;, - 10;3;-0.000000, 1.279916,-0.000000;;, - 11;3;-0.000000, 1.279916,-0.000000;;, - 12;3;-0.000000, 1.279916,-0.000000;;, - 13;3;-0.000000, 1.279916,-0.000000;;, - 14;3;-0.000000, 1.279916,-0.000000;;, - 15;3;-0.000000, 1.279916,-0.000000;;, - 16;3;-0.000000, 1.279916,-0.000000;;, - 17;3;-0.000000, 1.279916,-0.000000;;, - 18;3;-0.000000, 1.279916,-0.000000;;, - 19;3;-0.000000, 1.279916,-0.000000;;, - 20;3;-0.000000, 1.279916,-0.000000;;, - 21;3;-0.000000, 1.279916,-0.000000;;, - 22;3;-0.000000, 1.279916,-0.000000;;, - 23;3;-0.000000, 1.279916,-0.000000;;, - 24;3;-0.000000, 1.279916,-0.000000;;, - 25;3;-0.000000, 1.279916,-0.000000;;, - 26;3;-0.000000, 1.279916,-0.000000;;, - 27;3;-0.000000, 1.279916,-0.000000;;, - 28;3;-0.000000, 1.279916,-0.000000;;, - 29;3;-0.000000, 1.279916,-0.000000;;, - 30;3;-0.000000, 1.279916,-0.000000;;, - 31;3;-0.000000, 1.279916,-0.000000;;, - 32;3;-0.000000, 1.279916,-0.000000;;, - 33;3;-0.000000, 1.279916,-0.000000;;, - 34;3;-0.000000, 1.279916,-0.000000;;, - 35;3;-0.000000, 1.279916,-0.000000;;, - 36;3;-0.000000, 1.279916,-0.000000;;, - 37;3;-0.000000, 1.279916,-0.000000;;, - 38;3;-0.000000, 1.279916,-0.000000;;, - 39;3;-0.000000, 1.279916,-0.000000;;, - 40;3;-0.000000, 1.279916,-0.000000;;, - 41;3;-0.000000, 1.279916,-0.000000;;, - 42;3;-0.000000, 1.279916,-0.000000;;, - 43;3;-0.000000, 1.279916,-0.000000;;, - 44;3;-0.000000, 1.279916,-0.000000;;, - 45;3;-0.000000, 1.279916,-0.000000;;, - 46;3;-0.000000, 1.279916,-0.000000;;, - 47;3;-0.000000, 1.279916,-0.000000;;, - 48;3;-0.000000, 1.279916,-0.000000;;, - 49;3;-0.000000, 1.279916,-0.000000;;, - 50;3;-0.000000, 1.279916,-0.000000;;, - 51;3;-0.000000, 1.279916,-0.000000;;, - 52;3;-0.000000, 1.279916,-0.000000;;, - 53;3;-0.000000, 1.279916,-0.000000;;, - 54;3;-0.000000, 1.279916,-0.000000;;, - 55;3;-0.000000, 1.279916,-0.000000;;, - 56;3;-0.000000, 1.279916,-0.000000;;, - 57;3;-0.000000, 1.279916,-0.000000;;, - 58;3;-0.000000, 1.279916,-0.000000;;, - 59;3;-0.000000, 1.279916,-0.000000;;, - 60;3; 0.000000, 1.279916, 0.000000;;, - 61;3;-0.000000, 1.279916,-0.000000;;, - 62;3;-0.000000, 1.279916,-0.000000;;, - 63;3;-0.000000, 1.279916, 0.000000;;, - 64;3;-0.000000, 1.279916, 0.000000;;, - 65;3; 0.000000, 1.279916,-0.000000;;, - 66;3;-0.000000, 1.279916, 0.000000;;, - 67;3; 0.000000, 1.279916,-0.000000;;, - 68;3; 0.000000, 1.279916,-0.000000;;, - 69;3; 0.000000, 1.279916, 0.000000;;, - 70;3;-0.000000, 1.279916,-0.000000;;, - 71;3;-0.000000, 1.279916,-0.000000;;, - 72;3;-0.000000, 1.279916, 0.000000;;, - 73;3;-0.000000, 1.279916,-0.000000;;, - 74;3;-0.000000, 1.279916, 0.000000;;, - 75;3;-0.000000, 1.279916,-0.000000;;, - 76;3;-0.000000, 1.279916, 0.000000;;, - 77;3;-0.000000, 1.279916, 0.000000;;, - 78;3;-0.000000, 1.279916,-0.000000;;, - 79;3;-0.000000, 1.279916, 0.000000;;, - 80;3;-0.000000, 1.279916,-0.000000;;, - 81;3;-0.000000, 1.279916, 0.000000;;, - 82;3;-0.000000, 1.279916, 0.000000;;, - 83;3;-0.000000, 1.279916, 0.000000;;, - 84;3;-0.000000, 1.279916, 0.000000;;, - 85;3; 0.000000, 1.279916, 0.000000;;, - 86;3;-0.000000, 1.279916,-0.000000;;, - 87;3;-0.000000, 1.279916,-0.000000;;, - 88;3;-0.000000, 1.279916, 0.000000;;, - 89;3;-0.000000, 1.279916,-0.000000;;, - 90;3; 0.000000, 1.279916, 0.000000;;, - 91;3; 0.000000, 1.279916,-0.000000;;, - 92;3;-0.000000, 1.279916,-0.000000;;, - 93;3; 0.000000, 1.279916,-0.000000;;, - 94;3; 0.000000, 1.279916,-0.000000;;, - 95;3; 0.000000, 1.279916,-0.000000;;, - 96;3; 0.000000, 1.279916, 0.000000;;, - 97;3;-0.000000, 1.279916, 0.000000;;, - 98;3; 0.000000, 1.279916, 0.000000;;, - 99;3;-0.000000, 1.279916,-0.000000;;, - 100;3;-0.000000, 1.279916,-0.000000;;, - 101;3;-0.000000, 1.279916, 0.000000;;, - 102;3;-0.000000, 1.279916, 0.000000;;, - 103;3; 0.000000, 1.279916,-0.000000;;, - 104;3;-0.000000, 1.279916, 0.000000;;, - 105;3;-0.000000, 1.279916, 0.000000;;, - 106;3;-0.000000, 1.279916,-0.000000;;, - 107;3; 0.000000, 1.279916,-0.000000;;, - 108;3; 0.000000, 1.279916, 0.000000;;, - 109;3; 0.000000, 1.279916, 0.000000;;, - 110;3; 0.000000, 1.279916, 0.000000;;, - 111;3;-0.000000, 1.279916,-0.000000;;, - 112;3;-0.000000, 1.279916,-0.000000;;, - 113;3;-0.000000, 1.279916, 0.000000;;, - 114;3;-0.000000, 1.279916,-0.000000;;, - 115;3;-0.000000, 1.279916,-0.000000;;, - 116;3;-0.000000, 1.279916,-0.000000;;, - 117;3;-0.000000, 1.279916, 0.000000;;, - 118;3; 0.000000, 1.279916, 0.000000;;, - 119;3;-0.000000, 1.279916, 0.000000;;, - 120;3;-0.000000, 1.279916, 0.000000;;, - 121;3; 0.000000, 1.279916, 0.000000;;, - 122;3;-0.000000, 1.279916, 0.000000;;, - 123;3;-0.000000, 1.279916, 0.000000;;, - 124;3;-0.000000, 1.279916, 0.000000;;, - 125;3;-0.000000, 1.279916, 0.000000;;, - 126;3; 0.000000, 1.279916,-0.000000;;, - 127;3;-0.000000, 1.279916,-0.000000;;, - 128;3;-0.000000, 1.279916,-0.000000;;, - 129;3;-0.000000, 1.279916, 0.000000;;, - 130;3; 0.000000, 1.279916, 0.000000;;, - 131;3; 0.000000, 1.279916,-0.000000;;, - 132;3; 0.000000, 1.279916, 0.000000;;, - 133;3;-0.000000, 1.279916,-0.000000;;, - 134;3;-0.000000, 1.279916, 0.000000;;, - 135;3; 0.000000, 1.279916, 0.000000;;, - 136;3; 0.000000, 1.279916, 0.000000;;, - 137;3;-0.000000, 1.279916,-0.000000;;, - 138;3;-0.000000, 1.279916,-0.000000;;, - 139;3;-0.000000, 1.279916,-0.000000;;, - 140;3; 0.000000, 1.279916,-0.000000;;, - 141;3; 0.000000, 1.279916,-0.000000;;, - 142;3;-0.000000, 1.279916, 0.000000;;, - 143;3; 0.000000, 1.279916,-0.000000;;, - 144;3; 0.000000, 1.279916, 0.000000;;, - 145;3;-0.000000, 1.279916,-0.000000;;, - 146;3;-0.000000, 1.279916, 0.000000;;, - 147;3;-0.000000, 1.279916,-0.000000;;, - 148;3;-0.000000, 1.279916, 0.000000;;, - 149;3;-0.000000, 1.279916, 0.000000;;, - 150;3; 0.000000, 1.279916, 0.000000;;, - 151;3;-0.000000, 1.279916, 0.000000;;, - 152;3;-0.000000, 1.279916, 0.000000;;, - 153;3;-0.000000, 1.279916,-0.000000;;, - 154;3;-0.000000, 1.279916, 0.000000;;, - 155;3;-0.000000, 1.279916, 0.000000;;, - 156;3; 0.000000, 1.279916,-0.000000;;, - 157;3; 0.000000, 1.279917,-0.000000;;, - 158;3;-0.000000, 1.279916, 0.000000;;, - 159;3;-0.000000, 1.279916,-0.000000;;, - 160;3; 0.000000, 1.279916, 0.000000;;, - 161;3; 0.000000, 1.279916,-0.000000;;, - 162;3;-0.000000, 1.279916,-0.000000;;, - 163;3; 0.000000, 1.279916,-0.000000;;, - 164;3; 0.000000, 1.279916,-0.000000;;, - 165;3; 0.000000, 1.279916, 0.000000;;, - 166;3; 0.000000, 1.279916,-0.000000;;, - 167;3; 0.000000, 1.279916, 0.000000;;, - 168;3; 0.000000, 1.279916, 0.000000;;, - 169;3; 0.000000, 1.279916,-0.000000;;, - 170;3;-0.000000, 1.279916, 0.000000;;, - 171;3;-0.000000, 1.279916, 0.000000;;, - 172;3;-0.000000, 1.279916, 0.000000;;, - 173;3;-0.000000, 1.279916, 0.000000;;, - 174;3;-0.000000, 1.279916,-0.000000;;, - 175;3;-0.000000, 1.279916, 0.000000;;, - 176;3;-0.000000, 1.279916, 0.000000;;, - 177;3;-0.000000, 1.279916,-0.000000;;, - 178;3;-0.000000, 1.279916,-0.000000;;, - 179;3;-0.000000, 1.279916,-0.000000;;, - 180;3; 0.000000, 1.279916,-0.000000;;, - 181;3;-0.000000, 1.279916,-0.000000;;, - 182;3; 0.000000, 1.279916,-0.000000;;, - 183;3; 0.000000, 1.279916,-0.000000;;, - 184;3;-0.000000, 1.279916, 0.000000;;, - 185;3; 0.000000, 1.279916, 0.000000;;, - 186;3; 0.000000, 1.279916,-0.000000;;, - 187;3;-0.000000, 1.279916, 0.000000;;, - 188;3;-0.000000, 1.279916, 0.000000;;, - 189;3; 0.000000, 1.279916, 0.000000;;, - 190;3; 0.000000, 1.279916,-0.000000;;, - 191;3; 0.000000, 1.279916,-0.000000;;, - 192;3; 0.000000, 1.279916, 0.000000;;, - 193;3; 0.000000, 1.279916,-0.000000;;, - 194;3;-0.000000, 1.279916, 0.000000;;, - 195;3; 0.000000, 1.279916, 0.000000;;, - 196;3;-0.000000, 1.279916,-0.000000;;, - 197;3;-0.000000, 1.279916, 0.000000;;, - 198;3; 0.000000, 1.279916,-0.000000;;, - 199;3;-0.000000, 1.279916,-0.000000;;, - 200;3;-0.000000, 1.279916,-0.000000;;, - 201;3;-0.000000, 1.279916,-0.000000;;, - 202;3;-0.000000, 1.279916,-0.000000;;, - 203;3;-0.000000, 1.279916,-0.000000;;, - 204;3;-0.000000, 1.279916,-0.000000;;, - 205;3;-0.000000, 1.279916,-0.000000;;, - 206;3;-0.000000, 1.279916,-0.000000;;, - 207;3;-0.000000, 1.279916,-0.000000;;, - 208;3;-0.000000, 1.279916,-0.000000;;, - 209;3;-0.000000, 1.279916,-0.000000;;, - 210;3;-0.000000, 1.279916,-0.000000;;, - 211;3;-0.000000, 1.279916,-0.000000;;, - 212;3;-0.000000, 1.279916,-0.000000;;, - 213;3;-0.000000, 1.279916, 0.000000;;, - 214;3;-0.000000, 1.279916, 0.000000;;, - 215;3; 0.000000, 1.279916, 0.000000;;, - 216;3; 0.000000, 1.279916,-0.000000;;, - 217;3;-0.000000, 1.279916,-0.000000;;, - 218;3;-0.000001, 1.279916,-0.000000;;, - 219;3;-0.000000, 1.279916, 0.000000;;, - 220;3;-0.000000, 1.279916,-0.000000;;, - 221;3;-0.000000, 1.279916,-0.000000;;, - 222;3; 0.000000, 1.279916,-0.000000;;, - 223;3;-0.000000, 1.279916, 0.000000;;, - 224;3; 0.000000, 1.279916,-0.000000;;, - 225;3; 0.000000, 1.279916,-0.000000;;, - 226;3;-0.000000, 1.279916,-0.000000;;, - 227;3; 0.000000, 1.279916, 0.000000;;, - 228;3;-0.000000, 1.279916,-0.000000;;, - 229;3; 0.000000, 1.279917, 0.000000;;, - 230;3; 0.000000, 1.279916,-0.000000;;, - 231;3;-0.000000, 1.279916,-0.000000;;, - 232;3; 0.000000, 1.279916,-0.000000;;, - 233;3; 0.000000, 1.279916, 0.000000;;, - 234;3;-0.000000, 1.279916,-0.000000;;, - 235;3;-0.000000, 1.279916,-0.000000;;, - 236;3; 0.000000, 1.279916,-0.000000;;, - 237;3;-0.000000, 1.279916,-0.000000;;, - 238;3;-0.000000, 1.279916, 0.000000;;, - 239;3;-0.000000, 1.279916,-0.000000;;, - 240;3;-0.000000, 1.279916,-0.000000;;, - 241;3;-0.000000, 1.279916,-0.000000;;, - 242;3;-0.000000, 1.279916,-0.000000;;, - 243;3;-0.000000, 1.279916,-0.000000;;, - 244;3;-0.000000, 1.279916,-0.000000;;, - 245;3;-0.000000, 1.279916,-0.000000;;, - 246;3;-0.000000, 1.279916,-0.000000;;, - 247;3;-0.000000, 1.279916,-0.000000;;, - 248;3;-0.000000, 1.279916,-0.000000;;, - 249;3;-0.000000, 1.279916,-0.000000;;; - } - } - Animation { - {Armature_Bone_037} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 1;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 2;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 3;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 4;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 5;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 6;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 7;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 8;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 9;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 10;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 11;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 12;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 13;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 14;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 15;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 16;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 17;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 18;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 19;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 20;4;-0.969856,-0.243669,-0.000080,-0.000039;;, - 21;4;-0.969950,-0.243264,-0.000323,-0.000156;;, - 22;4;-0.970108,-0.242587,-0.000730,-0.000353;;, - 23;4;-0.970328,-0.241641,-0.001296,-0.000627;;, - 24;4;-0.970607,-0.240440,-0.002017,-0.000975;;, - 25;4;-0.970941,-0.239003,-0.002878,-0.001391;;, - 26;4;-0.971323,-0.237360,-0.003863,-0.001867;;, - 27;4;-0.971744,-0.235552,-0.004948,-0.002392;;, - 28;4;-0.972192,-0.233627,-0.006102,-0.002949;;, - 29;4;-0.972653,-0.231643,-0.007292,-0.003525;;, - 30;4;-0.973115,-0.229658,-0.008482,-0.004100;;, - 31;4;-0.973563,-0.227733,-0.009636,-0.004658;;, - 32;4;-0.973983,-0.225925,-0.010720,-0.005182;;, - 33;4;-0.974366,-0.224282,-0.011705,-0.005658;;, - 34;4;-0.974700,-0.222845,-0.012567,-0.006074;;, - 35;4;-0.974979,-0.221644,-0.013287,-0.006423;;, - 36;4;-0.975199,-0.220698,-0.013854,-0.006697;;, - 37;4;-0.975357,-0.220021,-0.014260,-0.006893;;, - 38;4;-0.975451,-0.219616,-0.014503,-0.007010;;, - 39;4;-0.975482,-0.219482,-0.014583,-0.007049;;, - 40;4;-0.975451,-0.219616,-0.014503,-0.007010;;, - 41;4;-0.975357,-0.220021,-0.014260,-0.006893;;, - 42;4;-0.975199,-0.220698,-0.013854,-0.006697;;, - 43;4;-0.974979,-0.221644,-0.013287,-0.006423;;, - 44;4;-0.974700,-0.222845,-0.012567,-0.006074;;, - 45;4;-0.974366,-0.224282,-0.011705,-0.005658;;, - 46;4;-0.973983,-0.225925,-0.010720,-0.005182;;, - 47;4;-0.973563,-0.227733,-0.009636,-0.004658;;, - 48;4;-0.973115,-0.229658,-0.008482,-0.004100;;, - 49;4;-0.972653,-0.231643,-0.007292,-0.003525;;, - 50;4;-0.972192,-0.233627,-0.006102,-0.002949;;, - 51;4;-0.971744,-0.235552,-0.004948,-0.002392;;, - 52;4;-0.971323,-0.237360,-0.003863,-0.001867;;, - 53;4;-0.970941,-0.239003,-0.002878,-0.001391;;, - 54;4;-0.970607,-0.240440,-0.002017,-0.000975;;, - 55;4;-0.970328,-0.241641,-0.001296,-0.000627;;, - 56;4;-0.970108,-0.242587,-0.000730,-0.000353;;, - 57;4;-0.969950,-0.243264,-0.000323,-0.000156;;, - 58;4;-0.969856,-0.243669,-0.000080,-0.000039;;, - 59;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 60;4;-0.969850,-0.243657,-0.000087,-0.000042;;, - 61;4;-0.969925,-0.243215,-0.000348,-0.000168;;, - 62;4;-0.970052,-0.242475,-0.000785,-0.000379;;, - 63;4;-0.970230,-0.241435,-0.001399,-0.000676;;, - 64;4;-0.970459,-0.240097,-0.002190,-0.001059;;, - 65;4;-0.970738,-0.238460,-0.003157,-0.001526;;, - 66;4;-0.971069,-0.236529,-0.004298,-0.002078;;, - 67;4;-0.971448,-0.234309,-0.005610,-0.002712;;, - 68;4;-0.971876,-0.231806,-0.007088,-0.003426;;, - 69;4;-0.972350,-0.229032,-0.008727,-0.004218;;, - 70;4;-0.972869,-0.225999,-0.010520,-0.005085;;, - 71;4;-0.973430,-0.222721,-0.012456,-0.006021;;, - 72;4;-0.974029,-0.219217,-0.014527,-0.007022;;, - 73;4;-0.974663,-0.215506,-0.016719,-0.008081;;, - 74;4;-0.975329,-0.211614,-0.019019,-0.009193;;, - 75;4;-0.976021,-0.207565,-0.021411,-0.010349;;, - 76;4;-0.976736,-0.203387,-0.023879,-0.011542;;, - 77;4;-0.977467,-0.199112,-0.026405,-0.012763;;, - 78;4;-0.978209,-0.194770,-0.028970,-0.014003;;, - 79;4;-0.978957,-0.190395,-0.031555,-0.015253;;, - 80;4;-0.979705,-0.186020,-0.034140,-0.016502;;, - 81;4;-0.980448,-0.181678,-0.036705,-0.017742;;, - 82;4;-0.981179,-0.177403,-0.039231,-0.018963;;, - 83;4;-0.981893,-0.173226,-0.041700,-0.020156;;, - 84;4;-0.982585,-0.169177,-0.044092,-0.021313;;, - 85;4;-0.983251,-0.165284,-0.046392,-0.022424;;, - 86;4;-0.983885,-0.161574,-0.048584,-0.023484;;, - 87;4;-0.984485,-0.158070,-0.050654,-0.024485;;, - 88;4;-0.985045,-0.154792,-0.052591,-0.025421;;, - 89;4;-0.985564,-0.151758,-0.054383,-0.026287;;, - 90;4;-0.986038,-0.148984,-0.056022,-0.027080;;, - 91;4;-0.986466,-0.146482,-0.057501,-0.027794;;, - 92;4;-0.986846,-0.144261,-0.058812,-0.028428;;, - 93;4;-0.987176,-0.142330,-0.059953,-0.028980;;, - 94;4;-0.987456,-0.140694,-0.060920,-0.029447;;, - 95;4;-0.987685,-0.139355,-0.061711,-0.029830;;, - 96;4;-0.987862,-0.138316,-0.062325,-0.030126;;, - 97;4;-0.987989,-0.137576,-0.062763,-0.030338;;, - 98;4;-0.988065,-0.137134,-0.063024,-0.030464;;, - 99;4;-0.988090,-0.136987,-0.063110,-0.030506;;, - 100;4;-0.987822,-0.138188,-0.062392,-0.030159;;, - 101;4;-0.986990,-0.141919,-0.060160,-0.029080;;, - 102;4;-0.985577,-0.148256,-0.056369,-0.027247;;, - 103;4;-0.983618,-0.157039,-0.051114,-0.024707;;, - 104;4;-0.981220,-0.167792,-0.044682,-0.021598;;, - 105;4;-0.978553,-0.179755,-0.037525,-0.018139;;, - 106;4;-0.975812,-0.192046,-0.030173,-0.014585;;, - 107;4;-0.973176,-0.203871,-0.023098,-0.011165;;, - 108;4;-0.970769,-0.214665,-0.016641,-0.008044;;, - 109;4;-0.968663,-0.224108,-0.010992,-0.005313;;, - 110;4;-0.966558,-0.233550,-0.005343,-0.002583;;, - 111;4;-0.964151,-0.244344, 0.001114, 0.000539;;, - 112;4;-0.961514,-0.256170, 0.008189, 0.003958;;, - 113;4;-0.958773,-0.268460, 0.015541, 0.007512;;, - 114;4;-0.956106,-0.280423, 0.022698, 0.010972;;, - 115;4;-0.953708,-0.291176, 0.029130, 0.014081;;, - 116;4;-0.951750,-0.299959, 0.034385, 0.016621;;, - 117;4;-0.950337,-0.306296, 0.038176, 0.018453;;, - 118;4;-0.949505,-0.310027, 0.040408, 0.019532;;, - 119;4;-0.949237,-0.311228, 0.041127, 0.019880;;, - 120;4;-0.949505,-0.310027, 0.040408, 0.019532;;, - 121;4;-0.950337,-0.306296, 0.038176, 0.018453;;, - 122;4;-0.951750,-0.299959, 0.034385, 0.016621;;, - 123;4;-0.953708,-0.291176, 0.029130, 0.014081;;, - 124;4;-0.956106,-0.280423, 0.022698, 0.010972;;, - 125;4;-0.958773,-0.268460, 0.015541, 0.007512;;, - 126;4;-0.961514,-0.256170, 0.008189, 0.003958;;, - 127;4;-0.964151,-0.244344, 0.001114, 0.000539;;, - 128;4;-0.966558,-0.233550,-0.005343,-0.002583;;, - 129;4;-0.968663,-0.224108,-0.010992,-0.005313;;, - 130;4;-0.970769,-0.214665,-0.016641,-0.008044;;, - 131;4;-0.973176,-0.203871,-0.023098,-0.011165;;, - 132;4;-0.975812,-0.192046,-0.030173,-0.014585;;, - 133;4;-0.978553,-0.179755,-0.037525,-0.018139;;, - 134;4;-0.981220,-0.167792,-0.044682,-0.021598;;, - 135;4;-0.983618,-0.157039,-0.051114,-0.024707;;, - 136;4;-0.985577,-0.148256,-0.056369,-0.027247;;, - 137;4;-0.986990,-0.141919,-0.060160,-0.029080;;, - 138;4;-0.987822,-0.138188,-0.062392,-0.030159;;, - 139;4;-0.988090,-0.136987,-0.063110,-0.030506;;, - 140;4;-0.986990,-0.141919,-0.060160,-0.029080;;, - 141;4;-0.983618,-0.157039,-0.051114,-0.024707;;, - 142;4;-0.978553,-0.179755,-0.037525,-0.018139;;, - 143;4;-0.973176,-0.203871,-0.023098,-0.011165;;, - 144;4;-0.968663,-0.224108,-0.010992,-0.005313;;, - 145;4;-0.964151,-0.244344, 0.001114, 0.000539;;, - 146;4;-0.958773,-0.268460, 0.015541, 0.007512;;, - 147;4;-0.953708,-0.291176, 0.029130, 0.014081;;, - 148;4;-0.950337,-0.306296, 0.038176, 0.018453;;, - 149;4;-0.949237,-0.311228, 0.041127, 0.019880;;, - 150;4;-0.950337,-0.306296, 0.038176, 0.018453;;, - 151;4;-0.953708,-0.291176, 0.029130, 0.014081;;, - 152;4;-0.958773,-0.268460, 0.015541, 0.007512;;, - 153;4;-0.964151,-0.244344, 0.001114, 0.000539;;, - 154;4;-0.968663,-0.224108,-0.010992,-0.005313;;, - 155;4;-0.973176,-0.203871,-0.023098,-0.011165;;, - 156;4;-0.978553,-0.179755,-0.037525,-0.018139;;, - 157;4;-0.983618,-0.157039,-0.051114,-0.024707;;, - 158;4;-0.986990,-0.141919,-0.060160,-0.029080;;, - 159;4;-0.988090,-0.136987,-0.063110,-0.030506;;, - 160;4;-0.987989,-0.137576,-0.062763,-0.030338;;, - 161;4;-0.987685,-0.139355,-0.061711,-0.029830;;, - 162;4;-0.987176,-0.142330,-0.059953,-0.028980;;, - 163;4;-0.986466,-0.146482,-0.057501,-0.027794;;, - 164;4;-0.985564,-0.151758,-0.054383,-0.026287;;, - 165;4;-0.984485,-0.158070,-0.050654,-0.024485;;, - 166;4;-0.983251,-0.165284,-0.046392,-0.022424;;, - 167;4;-0.981893,-0.173226,-0.041700,-0.020156;;, - 168;4;-0.980448,-0.181678,-0.036705,-0.017742;;, - 169;4;-0.978957,-0.190395,-0.031555,-0.015253;;, - 170;4;-0.977467,-0.199112,-0.026405,-0.012763;;, - 171;4;-0.976021,-0.207565,-0.021411,-0.010349;;, - 172;4;-0.974663,-0.215506,-0.016719,-0.008081;;, - 173;4;-0.973430,-0.222721,-0.012456,-0.006021;;, - 174;4;-0.972350,-0.229032,-0.008727,-0.004218;;, - 175;4;-0.971448,-0.234309,-0.005610,-0.002712;;, - 176;4;-0.970738,-0.238460,-0.003157,-0.001526;;, - 177;4;-0.970230,-0.241435,-0.001399,-0.000676;;, - 178;4;-0.969925,-0.243215,-0.000348,-0.000168;;, - 179;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 180;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 181;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 182;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 183;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 184;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 185;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 186;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 187;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 188;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 189;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 190;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 191;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 192;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 193;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 194;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 195;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 196;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 197;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 198;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 199;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 200;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 201;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 202;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 203;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 204;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 205;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 206;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 207;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 208;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 209;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 210;4;-0.972002,-0.230274, 0.006046, 0.001263;;, - 211;4;-0.978134,-0.190099, 0.024224, 0.004983;;, - 212;4;-0.986008,-0.132963, 0.050649, 0.010192;;, - 213;4;-0.992141,-0.077657, 0.077232, 0.015091;;, - 214;4;-0.994318,-0.038385, 0.097578, 0.018361;;, - 215;4;-0.993304,-0.009580, 0.115048, 0.020396;;, - 216;4;-0.990274, 0.016243, 0.133530, 0.021818;;, - 217;4;-0.985919, 0.035525, 0.149555, 0.022563;;, - 218;4;-0.981625, 0.046217, 0.159633, 0.022806;;, - 219;4;-0.978459, 0.049279, 0.162803, 0.022835;;, - 220;4;-0.975935, 0.023228, 0.148331, 0.020806;;, - 221;4;-0.973450,-0.050152, 0.107570, 0.015088;;, - 222;4;-0.971418,-0.144372, 0.055233, 0.007747;;, - 223;4;-0.970197,-0.217752, 0.014471, 0.002030;;, - 224;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 225;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 226;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 227;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 228;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 229;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 230;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 231;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 232;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 233;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 234;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 235;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 236;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 237;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 238;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 239;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 240;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 241;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 242;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 243;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 244;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 245;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 246;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 247;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 248;4;-0.969825,-0.243803,-0.000000, 0.000000;;, - 249;4;-0.969825,-0.243803,-0.000000, 0.000000;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3;-0.000000, 1.228416,-0.000000;;, - 1;3;-0.000000, 1.228416,-0.000000;;, - 2;3;-0.000000, 1.228416,-0.000000;;, - 3;3;-0.000000, 1.228416,-0.000000;;, - 4;3;-0.000000, 1.228416,-0.000000;;, - 5;3;-0.000000, 1.228416,-0.000000;;, - 6;3;-0.000000, 1.228416,-0.000000;;, - 7;3;-0.000000, 1.228416,-0.000000;;, - 8;3;-0.000000, 1.228416,-0.000000;;, - 9;3;-0.000000, 1.228416,-0.000000;;, - 10;3;-0.000000, 1.228416,-0.000000;;, - 11;3;-0.000000, 1.228416,-0.000000;;, - 12;3;-0.000000, 1.228416,-0.000000;;, - 13;3;-0.000000, 1.228416,-0.000000;;, - 14;3;-0.000000, 1.228416,-0.000000;;, - 15;3;-0.000000, 1.228416,-0.000000;;, - 16;3;-0.000000, 1.228416,-0.000000;;, - 17;3;-0.000000, 1.228416,-0.000000;;, - 18;3;-0.000000, 1.228416,-0.000000;;, - 19;3;-0.000000, 1.228416,-0.000000;;, - 20;3;-0.000000, 1.228416,-0.000000;;, - 21;3;-0.000000, 1.228416,-0.000000;;, - 22;3;-0.000000, 1.228416,-0.000000;;, - 23;3;-0.000000, 1.228416,-0.000000;;, - 24;3;-0.000000, 1.228416,-0.000000;;, - 25;3;-0.000000, 1.228416,-0.000000;;, - 26;3;-0.000000, 1.228416,-0.000000;;, - 27;3;-0.000000, 1.228416,-0.000000;;, - 28;3;-0.000000, 1.228416,-0.000000;;, - 29;3;-0.000000, 1.228416,-0.000000;;, - 30;3;-0.000000, 1.228416,-0.000000;;, - 31;3;-0.000000, 1.228416,-0.000000;;, - 32;3;-0.000000, 1.228416,-0.000000;;, - 33;3;-0.000000, 1.228416,-0.000000;;, - 34;3;-0.000000, 1.228416,-0.000000;;, - 35;3;-0.000000, 1.228416,-0.000000;;, - 36;3;-0.000000, 1.228416,-0.000000;;, - 37;3;-0.000000, 1.228416,-0.000000;;, - 38;3;-0.000000, 1.228416,-0.000000;;, - 39;3;-0.000000, 1.228416,-0.000000;;, - 40;3;-0.000000, 1.228416,-0.000000;;, - 41;3;-0.000000, 1.228416,-0.000000;;, - 42;3;-0.000000, 1.228416,-0.000000;;, - 43;3;-0.000000, 1.228416,-0.000000;;, - 44;3;-0.000000, 1.228416,-0.000000;;, - 45;3;-0.000000, 1.228416,-0.000000;;, - 46;3;-0.000000, 1.228416,-0.000000;;, - 47;3;-0.000000, 1.228416,-0.000000;;, - 48;3;-0.000000, 1.228416,-0.000000;;, - 49;3;-0.000000, 1.228416,-0.000000;;, - 50;3;-0.000000, 1.228416,-0.000000;;, - 51;3;-0.000000, 1.228416,-0.000000;;, - 52;3;-0.000000, 1.228416,-0.000000;;, - 53;3;-0.000000, 1.228416,-0.000000;;, - 54;3;-0.000000, 1.228416,-0.000000;;, - 55;3;-0.000000, 1.228416,-0.000000;;, - 56;3;-0.000000, 1.228416,-0.000000;;, - 57;3;-0.000000, 1.228416,-0.000000;;, - 58;3;-0.000000, 1.228416,-0.000000;;, - 59;3;-0.000000, 1.228416,-0.000000;;, - 60;3;-0.000000, 1.228417,-0.000000;;, - 61;3;-0.000000, 1.228416, 0.000000;;, - 62;3;-0.000000, 1.228416, 0.000000;;, - 63;3;-0.000000, 1.228416, 0.000000;;, - 64;3; 0.000000, 1.228416, 0.000000;;, - 65;3;-0.000000, 1.228416,-0.000000;;, - 66;3;-0.000000, 1.228417, 0.000000;;, - 67;3; 0.000000, 1.228417, 0.000000;;, - 68;3; 0.000000, 1.228417,-0.000000;;, - 69;3; 0.000000, 1.228416,-0.000000;;, - 70;3;-0.000000, 1.228417,-0.000000;;, - 71;3;-0.000000, 1.228416, 0.000000;;, - 72;3;-0.000000, 1.228417, 0.000000;;, - 73;3; 0.000000, 1.228416, 0.000000;;, - 74;3;-0.000000, 1.228417, 0.000000;;, - 75;3;-0.000000, 1.228417, 0.000000;;, - 76;3;-0.000000, 1.228416, 0.000000;;, - 77;3; 0.000000, 1.228417, 0.000000;;, - 78;3;-0.000000, 1.228417,-0.000000;;, - 79;3;-0.000000, 1.228417,-0.000000;;, - 80;3;-0.000000, 1.228417, 0.000000;;, - 81;3;-0.000001, 1.228416, 0.000000;;, - 82;3;-0.000000, 1.228416,-0.000000;;, - 83;3; 0.000000, 1.228416, 0.000000;;, - 84;3;-0.000000, 1.228416, 0.000000;;, - 85;3;-0.000000, 1.228417,-0.000000;;, - 86;3;-0.000000, 1.228416, 0.000000;;, - 87;3;-0.000000, 1.228416,-0.000000;;, - 88;3;-0.000000, 1.228416, 0.000000;;, - 89;3; 0.000000, 1.228416,-0.000000;;, - 90;3;-0.000000, 1.228417, 0.000000;;, - 91;3;-0.000000, 1.228417,-0.000000;;, - 92;3;-0.000000, 1.228416,-0.000000;;, - 93;3; 0.000000, 1.228417,-0.000000;;, - 94;3; 0.000000, 1.228416, 0.000000;;, - 95;3;-0.000000, 1.228417,-0.000000;;, - 96;3; 0.000000, 1.228417,-0.000000;;, - 97;3;-0.000000, 1.228416,-0.000000;;, - 98;3; 0.000000, 1.228417, 0.000000;;, - 99;3;-0.000000, 1.228416,-0.000000;;, - 100;3;-0.000000, 1.228416, 0.000000;;, - 101;3;-0.000000, 1.228417, 0.000000;;, - 102;3;-0.000000, 1.228416,-0.000000;;, - 103;3;-0.000000, 1.228416,-0.000000;;, - 104;3;-0.000000, 1.228416,-0.000000;;, - 105;3;-0.000000, 1.228416,-0.000000;;, - 106;3; 0.000000, 1.228416, 0.000000;;, - 107;3;-0.000000, 1.228416, 0.000000;;, - 108;3; 0.000000, 1.228416,-0.000000;;, - 109;3; 0.000000, 1.228416,-0.000000;;, - 110;3; 0.000000, 1.228416, 0.000000;;, - 111;3; 0.000000, 1.228417, 0.000000;;, - 112;3; 0.000000, 1.228416,-0.000000;;, - 113;3; 0.000000, 1.228416,-0.000000;;, - 114;3;-0.000000, 1.228416,-0.000000;;, - 115;3; 0.000000, 1.228417,-0.000000;;, - 116;3; 0.000000, 1.228416, 0.000000;;, - 117;3;-0.000000, 1.228416, 0.000000;;, - 118;3;-0.000000, 1.228416,-0.000000;;, - 119;3;-0.000000, 1.228416,-0.000000;;, - 120;3;-0.000000, 1.228416, 0.000000;;, - 121;3;-0.000000, 1.228416,-0.000000;;, - 122;3; 0.000000, 1.228416,-0.000000;;, - 123;3; 0.000000, 1.228417,-0.000000;;, - 124;3; 0.000000, 1.228417,-0.000000;;, - 125;3; 0.000000, 1.228416, 0.000000;;, - 126;3; 0.000000, 1.228417, 0.000000;;, - 127;3;-0.000000, 1.228416, 0.000000;;, - 128;3; 0.000000, 1.228416,-0.000000;;, - 129;3;-0.000000, 1.228417, 0.000000;;, - 130;3;-0.000000, 1.228416,-0.000000;;, - 131;3; 0.000000, 1.228416, 0.000000;;, - 132;3;-0.000000, 1.228416, 0.000000;;, - 133;3;-0.000000, 1.228417,-0.000000;;, - 134;3; 0.000000, 1.228417,-0.000000;;, - 135;3; 0.000000, 1.228416, 0.000000;;, - 136;3;-0.000000, 1.228417,-0.000000;;, - 137;3; 0.000000, 1.228416, 0.000000;;, - 138;3; 0.000000, 1.228417, 0.000000;;, - 139;3;-0.000000, 1.228416,-0.000000;;, - 140;3; 0.000000, 1.228416, 0.000000;;, - 141;3; 0.000000, 1.228417,-0.000000;;, - 142;3;-0.000000, 1.228416, 0.000000;;, - 143;3;-0.000000, 1.228416,-0.000000;;, - 144;3; 0.000000, 1.228416,-0.000000;;, - 145;3; 0.000000, 1.228417, 0.000000;;, - 146;3; 0.000000, 1.228416,-0.000000;;, - 147;3; 0.000000, 1.228417,-0.000000;;, - 148;3;-0.000000, 1.228416, 0.000000;;, - 149;3;-0.000000, 1.228416,-0.000000;;, - 150;3;-0.000000, 1.228416,-0.000000;;, - 151;3; 0.000000, 1.228417,-0.000000;;, - 152;3; 0.000000, 1.228416, 0.000000;;, - 153;3;-0.000000, 1.228416, 0.000000;;, - 154;3;-0.000000, 1.228417, 0.000000;;, - 155;3;-0.000000, 1.228416, 0.000000;;, - 156;3;-0.000000, 1.228417, 0.000000;;, - 157;3;-0.000000, 1.228417, 0.000000;;, - 158;3;-0.000000, 1.228416,-0.000000;;, - 159;3;-0.000000, 1.228416,-0.000000;;, - 160;3;-0.000000, 1.228417,-0.000000;;, - 161;3;-0.000000, 1.228417,-0.000000;;, - 162;3;-0.000000, 1.228417, 0.000000;;, - 163;3;-0.000000, 1.228416, 0.000000;;, - 164;3;-0.000000, 1.228416,-0.000000;;, - 165;3;-0.000000, 1.228416,-0.000000;;, - 166;3; 0.000000, 1.228417,-0.000000;;, - 167;3;-0.000000, 1.228416,-0.000000;;, - 168;3; 0.000000, 1.228416,-0.000000;;, - 169;3;-0.000000, 1.228416, 0.000000;;, - 170;3;-0.000000, 1.228416, 0.000000;;, - 171;3;-0.000000, 1.228416,-0.000000;;, - 172;3;-0.000000, 1.228416,-0.000000;;, - 173;3;-0.000000, 1.228416, 0.000000;;, - 174;3;-0.000000, 1.228417,-0.000000;;, - 175;3;-0.000000, 1.228416, 0.000000;;, - 176;3;-0.000000, 1.228416,-0.000000;;, - 177;3;-0.000000, 1.228417, 0.000000;;, - 178;3; 0.000000, 1.228417, 0.000000;;, - 179;3;-0.000000, 1.228416,-0.000000;;, - 180;3; 0.000000, 1.228417, 0.000000;;, - 181;3;-0.000000, 1.228416, 0.000000;;, - 182;3; 0.000000, 1.228417,-0.000000;;, - 183;3;-0.000000, 1.228416, 0.000000;;, - 184;3; 0.000000, 1.228416,-0.000000;;, - 185;3;-0.000000, 1.228416,-0.000000;;, - 186;3; 0.000000, 1.228416,-0.000000;;, - 187;3; 0.000000, 1.228416,-0.000000;;, - 188;3;-0.000000, 1.228417, 0.000000;;, - 189;3;-0.000000, 1.228416, 0.000000;;, - 190;3;-0.000000, 1.228416, 0.000000;;, - 191;3; 0.000000, 1.228416, 0.000000;;, - 192;3; 0.000000, 1.228416, 0.000000;;, - 193;3; 0.000000, 1.228416, 0.000000;;, - 194;3; 0.000000, 1.228416, 0.000000;;, - 195;3;-0.000000, 1.228417, 0.000000;;, - 196;3; 0.000000, 1.228417, 0.000000;;, - 197;3; 0.000000, 1.228417,-0.000000;;, - 198;3;-0.000000, 1.228417, 0.000000;;, - 199;3;-0.000000, 1.228416,-0.000000;;, - 200;3;-0.000000, 1.228416,-0.000000;;, - 201;3;-0.000000, 1.228416,-0.000000;;, - 202;3;-0.000000, 1.228416,-0.000000;;, - 203;3;-0.000000, 1.228416,-0.000000;;, - 204;3;-0.000000, 1.228416,-0.000000;;, - 205;3;-0.000000, 1.228416,-0.000000;;, - 206;3;-0.000000, 1.228416,-0.000000;;, - 207;3;-0.000000, 1.228416,-0.000000;;, - 208;3;-0.000000, 1.228416,-0.000000;;, - 209;3;-0.000000, 1.228416,-0.000000;;, - 210;3;-0.000000, 1.228416, 0.000000;;, - 211;3;-0.000000, 1.228417, 0.000000;;, - 212;3; 0.000000, 1.228416,-0.000000;;, - 213;3; 0.000000, 1.228416,-0.000000;;, - 214;3; 0.000000, 1.228416, 0.000000;;, - 215;3;-0.000000, 1.228416, 0.000000;;, - 216;3; 0.000000, 1.228416,-0.000000;;, - 217;3; 0.000000, 1.228416,-0.000001;;, - 218;3; 0.000000, 1.228417,-0.000000;;, - 219;3;-0.000000, 1.228417,-0.000001;;, - 220;3;-0.000000, 1.228416,-0.000000;;, - 221;3; 0.000000, 1.228417, 0.000000;;, - 222;3;-0.000000, 1.228417, 0.000000;;, - 223;3;-0.000000, 1.228416, 0.000000;;, - 224;3; 0.000000, 1.228416, 0.000000;;, - 225;3;-0.000001, 1.228417,-0.000000;;, - 226;3; 0.000000, 1.228417, 0.000000;;, - 227;3;-0.000000, 1.228416, 0.000000;;, - 228;3;-0.000000, 1.228417,-0.000000;;, - 229;3; 0.000000, 1.228417, 0.000000;;, - 230;3; 0.000000, 1.228417, 0.000000;;, - 231;3; 0.000000, 1.228416,-0.000000;;, - 232;3; 0.000000, 1.228416, 0.000000;;, - 233;3;-0.000000, 1.228416,-0.000000;;, - 234;3;-0.000000, 1.228416,-0.000000;;, - 235;3; 0.000000, 1.228417,-0.000000;;, - 236;3;-0.000000, 1.228416, 0.000000;;, - 237;3;-0.000000, 1.228416, 0.000000;;, - 238;3; 0.000000, 1.228417, 0.000000;;, - 239;3;-0.000000, 1.228416,-0.000000;;, - 240;3;-0.000000, 1.228416,-0.000000;;, - 241;3;-0.000000, 1.228416,-0.000000;;, - 242;3;-0.000000, 1.228416,-0.000000;;, - 243;3;-0.000000, 1.228416,-0.000000;;, - 244;3;-0.000000, 1.228416,-0.000000;;, - 245;3;-0.000000, 1.228416,-0.000000;;, - 246;3;-0.000000, 1.228416,-0.000000;;, - 247;3;-0.000000, 1.228416,-0.000000;;, - 248;3;-0.000000, 1.228416,-0.000000;;, - 249;3;-0.000000, 1.228416,-0.000000;;; - } - } - Animation { - {Armature_Bone_010} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 1;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 2;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 3;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 4;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 5;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 6;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 7;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 8;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 9;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 10;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 11;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 12;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 13;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 14;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 15;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 16;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 17;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 18;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 19;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 20;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 21;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 22;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 23;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 24;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 25;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 26;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 27;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 28;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 29;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 30;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 31;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 32;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 33;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 34;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 35;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 36;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 37;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 38;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 39;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 40;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 41;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 42;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 43;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 44;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 45;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 46;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 47;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 48;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 49;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 50;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 51;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 52;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 53;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 54;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 55;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 56;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 57;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 58;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 59;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 60;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 61;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 62;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 63;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 64;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 65;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 66;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 67;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 68;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 69;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 70;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 71;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 72;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 73;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 74;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 75;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 76;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 77;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 78;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 79;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 80;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 81;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 82;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 83;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 84;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 85;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 86;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 87;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 88;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 89;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 90;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 91;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 92;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 93;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 94;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 95;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 96;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 97;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 98;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 99;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 100;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 101;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 102;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 103;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 104;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 105;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 106;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 107;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 108;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 109;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 110;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 111;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 112;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 113;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 114;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 115;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 116;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 117;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 118;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 119;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 120;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 121;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 122;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 123;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 124;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 125;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 126;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 127;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 128;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 129;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 130;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 131;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 132;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 133;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 134;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 135;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 136;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 137;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 138;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 139;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 140;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 141;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 142;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 143;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 144;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 145;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 146;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 147;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 148;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 149;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 150;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 151;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 152;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 153;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 154;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 155;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 156;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 157;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 158;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 159;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 160;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 161;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 162;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 163;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 164;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 165;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 166;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 167;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 168;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 169;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 170;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 171;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 172;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 173;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 174;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 175;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 176;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 177;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 178;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 179;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 180;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 181;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 182;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 183;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 184;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 185;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 186;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 187;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 188;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 189;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 190;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 191;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 192;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 193;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 194;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 195;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 196;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 197;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 198;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 199;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 200;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 201;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 202;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 203;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 204;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 205;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 206;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 207;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 208;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 209;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 210;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 211;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 212;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 213;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 214;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 215;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 216;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 217;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 218;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 219;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 220;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 221;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 222;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 223;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 224;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 225;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 226;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 227;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 228;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 229;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 230;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 231;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 232;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 233;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 234;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 235;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 236;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 237;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 238;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 239;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 240;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 241;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 242;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 243;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 244;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 245;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 246;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 247;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 248;4;-0.527685, 0.000000,-0.000000, 0.849440;;, - 249;4;-0.527685, 0.000000,-0.000000, 0.849440;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3; 0.000000, 0.826434, 0.000000;;, - 1;3; 0.000000, 0.826434, 0.000000;;, - 2;3; 0.000000, 0.826434, 0.000000;;, - 3;3; 0.000000, 0.826434, 0.000000;;, - 4;3; 0.000000, 0.826434, 0.000000;;, - 5;3; 0.000000, 0.826434, 0.000000;;, - 6;3; 0.000000, 0.826434, 0.000000;;, - 7;3; 0.000000, 0.826434, 0.000000;;, - 8;3; 0.000000, 0.826434, 0.000000;;, - 9;3; 0.000000, 0.826434, 0.000000;;, - 10;3; 0.000000, 0.826434, 0.000000;;, - 11;3; 0.000000, 0.826434, 0.000000;;, - 12;3; 0.000000, 0.826434, 0.000000;;, - 13;3; 0.000000, 0.826434, 0.000000;;, - 14;3; 0.000000, 0.826434, 0.000000;;, - 15;3; 0.000000, 0.826434, 0.000000;;, - 16;3; 0.000000, 0.826434, 0.000000;;, - 17;3; 0.000000, 0.826434, 0.000000;;, - 18;3; 0.000000, 0.826434, 0.000000;;, - 19;3; 0.000000, 0.826434, 0.000000;;, - 20;3; 0.000000, 0.826434, 0.000000;;, - 21;3; 0.000000, 0.826434, 0.000000;;, - 22;3; 0.000000, 0.826434, 0.000000;;, - 23;3; 0.000000, 0.826434, 0.000000;;, - 24;3; 0.000000, 0.826434, 0.000000;;, - 25;3; 0.000000, 0.826434, 0.000000;;, - 26;3; 0.000000, 0.826434, 0.000000;;, - 27;3; 0.000000, 0.826434, 0.000000;;, - 28;3; 0.000000, 0.826434, 0.000000;;, - 29;3; 0.000000, 0.826434, 0.000000;;, - 30;3; 0.000000, 0.826434, 0.000000;;, - 31;3; 0.000000, 0.826434, 0.000000;;, - 32;3; 0.000000, 0.826434, 0.000000;;, - 33;3; 0.000000, 0.826434, 0.000000;;, - 34;3; 0.000000, 0.826434, 0.000000;;, - 35;3; 0.000000, 0.826434, 0.000000;;, - 36;3; 0.000000, 0.826434, 0.000000;;, - 37;3; 0.000000, 0.826434, 0.000000;;, - 38;3; 0.000000, 0.826434, 0.000000;;, - 39;3; 0.000000, 0.826434, 0.000000;;, - 40;3; 0.000000, 0.826434, 0.000000;;, - 41;3; 0.000000, 0.826434, 0.000000;;, - 42;3; 0.000000, 0.826434, 0.000000;;, - 43;3; 0.000000, 0.826434, 0.000000;;, - 44;3; 0.000000, 0.826434, 0.000000;;, - 45;3; 0.000000, 0.826434, 0.000000;;, - 46;3; 0.000000, 0.826434, 0.000000;;, - 47;3; 0.000000, 0.826434, 0.000000;;, - 48;3; 0.000000, 0.826434, 0.000000;;, - 49;3; 0.000000, 0.826434, 0.000000;;, - 50;3; 0.000000, 0.826434, 0.000000;;, - 51;3; 0.000000, 0.826434, 0.000000;;, - 52;3; 0.000000, 0.826434, 0.000000;;, - 53;3; 0.000000, 0.826434, 0.000000;;, - 54;3; 0.000000, 0.826434, 0.000000;;, - 55;3; 0.000000, 0.826434, 0.000000;;, - 56;3; 0.000000, 0.826434, 0.000000;;, - 57;3; 0.000000, 0.826434, 0.000000;;, - 58;3; 0.000000, 0.826434, 0.000000;;, - 59;3; 0.000000, 0.826434, 0.000000;;, - 60;3; 0.000000, 0.826434, 0.000000;;, - 61;3; 0.000000, 0.826434, 0.000000;;, - 62;3; 0.000000, 0.826434, 0.000000;;, - 63;3; 0.000000, 0.826434, 0.000000;;, - 64;3; 0.000000, 0.826434, 0.000000;;, - 65;3; 0.000000, 0.826434, 0.000000;;, - 66;3; 0.000000, 0.826434, 0.000000;;, - 67;3; 0.000000, 0.826434, 0.000000;;, - 68;3; 0.000000, 0.826434, 0.000000;;, - 69;3; 0.000000, 0.826434, 0.000000;;, - 70;3; 0.000000, 0.826434, 0.000000;;, - 71;3; 0.000000, 0.826434, 0.000000;;, - 72;3; 0.000000, 0.826434, 0.000000;;, - 73;3; 0.000000, 0.826434, 0.000000;;, - 74;3; 0.000000, 0.826434, 0.000000;;, - 75;3; 0.000000, 0.826434, 0.000000;;, - 76;3; 0.000000, 0.826434, 0.000000;;, - 77;3; 0.000000, 0.826434, 0.000000;;, - 78;3; 0.000000, 0.826434, 0.000000;;, - 79;3; 0.000000, 0.826434, 0.000000;;, - 80;3; 0.000000, 0.826434, 0.000000;;, - 81;3; 0.000000, 0.826434, 0.000000;;, - 82;3; 0.000000, 0.826434, 0.000000;;, - 83;3; 0.000000, 0.826434, 0.000000;;, - 84;3; 0.000000, 0.826434, 0.000000;;, - 85;3; 0.000000, 0.826434, 0.000000;;, - 86;3; 0.000000, 0.826434, 0.000000;;, - 87;3; 0.000000, 0.826434, 0.000000;;, - 88;3; 0.000000, 0.826434, 0.000000;;, - 89;3; 0.000000, 0.826434, 0.000000;;, - 90;3; 0.000000, 0.826434, 0.000000;;, - 91;3; 0.000000, 0.826434, 0.000000;;, - 92;3; 0.000000, 0.826434, 0.000000;;, - 93;3; 0.000000, 0.826434, 0.000000;;, - 94;3; 0.000000, 0.826434, 0.000000;;, - 95;3; 0.000000, 0.826434, 0.000000;;, - 96;3; 0.000000, 0.826434, 0.000000;;, - 97;3; 0.000000, 0.826434, 0.000000;;, - 98;3; 0.000000, 0.826434, 0.000000;;, - 99;3; 0.000000, 0.826434, 0.000000;;, - 100;3; 0.000000, 0.826434, 0.000000;;, - 101;3; 0.000000, 0.826434, 0.000000;;, - 102;3; 0.000000, 0.826434, 0.000000;;, - 103;3; 0.000000, 0.826434, 0.000000;;, - 104;3; 0.000000, 0.826434, 0.000000;;, - 105;3; 0.000000, 0.826434, 0.000000;;, - 106;3; 0.000000, 0.826434, 0.000000;;, - 107;3; 0.000000, 0.826434, 0.000000;;, - 108;3; 0.000000, 0.826434, 0.000000;;, - 109;3; 0.000000, 0.826434, 0.000000;;, - 110;3; 0.000000, 0.826434, 0.000000;;, - 111;3; 0.000000, 0.826434, 0.000000;;, - 112;3; 0.000000, 0.826434, 0.000000;;, - 113;3; 0.000000, 0.826434, 0.000000;;, - 114;3; 0.000000, 0.826434, 0.000000;;, - 115;3; 0.000000, 0.826434, 0.000000;;, - 116;3; 0.000000, 0.826434, 0.000000;;, - 117;3; 0.000000, 0.826434, 0.000000;;, - 118;3; 0.000000, 0.826434, 0.000000;;, - 119;3; 0.000000, 0.826434, 0.000000;;, - 120;3; 0.000000, 0.826434, 0.000000;;, - 121;3; 0.000000, 0.826434, 0.000000;;, - 122;3; 0.000000, 0.826434, 0.000000;;, - 123;3; 0.000000, 0.826434, 0.000000;;, - 124;3; 0.000000, 0.826434, 0.000000;;, - 125;3; 0.000000, 0.826434, 0.000000;;, - 126;3; 0.000000, 0.826434, 0.000000;;, - 127;3; 0.000000, 0.826434, 0.000000;;, - 128;3; 0.000000, 0.826434, 0.000000;;, - 129;3; 0.000000, 0.826434, 0.000000;;, - 130;3; 0.000000, 0.826434, 0.000000;;, - 131;3; 0.000000, 0.826434, 0.000000;;, - 132;3; 0.000000, 0.826434, 0.000000;;, - 133;3; 0.000000, 0.826434, 0.000000;;, - 134;3; 0.000000, 0.826434, 0.000000;;, - 135;3; 0.000000, 0.826434, 0.000000;;, - 136;3; 0.000000, 0.826434, 0.000000;;, - 137;3; 0.000000, 0.826434, 0.000000;;, - 138;3; 0.000000, 0.826434, 0.000000;;, - 139;3; 0.000000, 0.826434, 0.000000;;, - 140;3; 0.000000, 0.826434, 0.000000;;, - 141;3; 0.000000, 0.826434, 0.000000;;, - 142;3; 0.000000, 0.826434, 0.000000;;, - 143;3; 0.000000, 0.826434, 0.000000;;, - 144;3; 0.000000, 0.826434, 0.000000;;, - 145;3; 0.000000, 0.826434, 0.000000;;, - 146;3; 0.000000, 0.826434, 0.000000;;, - 147;3; 0.000000, 0.826434, 0.000000;;, - 148;3; 0.000000, 0.826434, 0.000000;;, - 149;3; 0.000000, 0.826434, 0.000000;;, - 150;3; 0.000000, 0.826434, 0.000000;;, - 151;3; 0.000000, 0.826434, 0.000000;;, - 152;3; 0.000000, 0.826434, 0.000000;;, - 153;3; 0.000000, 0.826434, 0.000000;;, - 154;3; 0.000000, 0.826434, 0.000000;;, - 155;3; 0.000000, 0.826434, 0.000000;;, - 156;3; 0.000000, 0.826434, 0.000000;;, - 157;3; 0.000000, 0.826434, 0.000000;;, - 158;3; 0.000000, 0.826434, 0.000000;;, - 159;3; 0.000000, 0.826434, 0.000000;;, - 160;3; 0.000000, 0.826434, 0.000000;;, - 161;3; 0.000000, 0.826434, 0.000000;;, - 162;3; 0.000000, 0.826434, 0.000000;;, - 163;3; 0.000000, 0.826434, 0.000000;;, - 164;3; 0.000000, 0.826434, 0.000000;;, - 165;3; 0.000000, 0.826434, 0.000000;;, - 166;3; 0.000000, 0.826434, 0.000000;;, - 167;3; 0.000000, 0.826434, 0.000000;;, - 168;3; 0.000000, 0.826434, 0.000000;;, - 169;3; 0.000000, 0.826434, 0.000000;;, - 170;3; 0.000000, 0.826434, 0.000000;;, - 171;3; 0.000000, 0.826434, 0.000000;;, - 172;3; 0.000000, 0.826434, 0.000000;;, - 173;3; 0.000000, 0.826434, 0.000000;;, - 174;3; 0.000000, 0.826434, 0.000000;;, - 175;3; 0.000000, 0.826434, 0.000000;;, - 176;3; 0.000000, 0.826434, 0.000000;;, - 177;3; 0.000000, 0.826434, 0.000000;;, - 178;3; 0.000000, 0.826434, 0.000000;;, - 179;3; 0.000000, 0.826434, 0.000000;;, - 180;3; 0.000000, 0.826434, 0.000000;;, - 181;3; 0.000000, 0.826434, 0.000000;;, - 182;3; 0.000000, 0.826434, 0.000000;;, - 183;3; 0.000000, 0.826434, 0.000000;;, - 184;3; 0.000000, 0.826434, 0.000000;;, - 185;3; 0.000000, 0.826434, 0.000000;;, - 186;3;-0.000000, 0.826434,-0.000000;;, - 187;3;-0.000000, 0.826434,-0.000000;;, - 188;3;-0.000000, 0.826434, 0.000000;;, - 189;3;-0.000000, 0.826434, 0.000000;;, - 190;3;-0.000000, 0.826434,-0.000000;;, - 191;3; 0.000000, 0.826434, 0.000000;;, - 192;3; 0.000000, 0.826434, 0.000000;;, - 193;3; 0.000000, 0.826434, 0.000000;;, - 194;3; 0.000000, 0.826434,-0.000000;;, - 195;3; 0.000000, 0.826434,-0.000000;;, - 196;3; 0.000000, 0.826434, 0.000000;;, - 197;3; 0.000000, 0.826434,-0.000000;;, - 198;3; 0.000000, 0.826434,-0.000000;;, - 199;3; 0.000000, 0.826434, 0.000000;;, - 200;3; 0.000000, 0.826434, 0.000000;;, - 201;3; 0.000000, 0.826434, 0.000000;;, - 202;3; 0.000000, 0.826434, 0.000000;;, - 203;3; 0.000000, 0.826434, 0.000000;;, - 204;3; 0.000000, 0.826434, 0.000000;;, - 205;3; 0.000000, 0.826434, 0.000000;;, - 206;3; 0.000000, 0.826434, 0.000000;;, - 207;3; 0.000000, 0.826434, 0.000000;;, - 208;3; 0.000000, 0.826434, 0.000000;;, - 209;3; 0.000000, 0.826434, 0.000000;;, - 210;3;-0.000000, 0.826434, 0.000000;;, - 211;3;-0.000000, 0.826434, 0.000000;;, - 212;3; 0.000000, 0.826434,-0.000000;;, - 213;3; 0.000000, 0.826434, 0.000000;;, - 214;3; 0.000000, 0.826434, 0.000000;;, - 215;3;-0.000000, 0.826434,-0.000000;;, - 216;3;-0.000000, 0.826434,-0.000000;;, - 217;3;-0.000000, 0.826434,-0.000000;;, - 218;3;-0.000000, 0.826434, 0.000000;;, - 219;3;-0.000000, 0.826434,-0.000000;;, - 220;3;-0.000000, 0.826434, 0.000000;;, - 221;3; 0.000000, 0.826434, 0.000000;;, - 222;3;-0.000000, 0.826434, 0.000000;;, - 223;3; 0.000000, 0.826434,-0.000000;;, - 224;3; 0.000000, 0.826434,-0.000000;;, - 225;3; 0.000000, 0.826434, 0.000000;;, - 226;3; 0.000000, 0.826434, 0.000000;;, - 227;3; 0.000000, 0.826434, 0.000000;;, - 228;3;-0.000000, 0.826434, 0.000000;;, - 229;3; 0.000000, 0.826434, 0.000000;;, - 230;3; 0.000000, 0.826434, 0.000000;;, - 231;3; 0.000000, 0.826434,-0.000000;;, - 232;3;-0.000000, 0.826434,-0.000000;;, - 233;3; 0.000000, 0.826434, 0.000000;;, - 234;3; 0.000000, 0.826434, 0.000000;;, - 235;3; 0.000000, 0.826434, 0.000000;;, - 236;3; 0.000000, 0.826434, 0.000000;;, - 237;3; 0.000000, 0.826434, 0.000000;;, - 238;3; 0.000000, 0.826434, 0.000000;;, - 239;3; 0.000000, 0.826434, 0.000000;;, - 240;3; 0.000000, 0.826434, 0.000000;;, - 241;3; 0.000000, 0.826434, 0.000000;;, - 242;3; 0.000000, 0.826434, 0.000000;;, - 243;3; 0.000000, 0.826434, 0.000000;;, - 244;3; 0.000000, 0.826434, 0.000000;;, - 245;3; 0.000000, 0.826434, 0.000000;;, - 246;3; 0.000000, 0.826434, 0.000000;;, - 247;3; 0.000000, 0.826434, 0.000000;;, - 248;3; 0.000000, 0.826434, 0.000000;;, - 249;3; 0.000000, 0.826434, 0.000000;;; - } - } - Animation { - {Armature_Bone_030} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 1;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 2;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 3;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 4;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 5;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 6;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 7;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 8;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 9;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 10;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 11;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 12;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 13;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 14;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 15;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 16;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 17;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 18;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 19;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 20;4;-0.989934, 0.106238,-0.009968,-0.092884;;, - 21;4;-0.989819, 0.106226,-0.010069,-0.093822;;, - 22;4;-0.989627, 0.106205,-0.010237,-0.095391;;, - 23;4;-0.989359, 0.106176,-0.010472,-0.097580;;, - 24;4;-0.989019, 0.106140,-0.010771,-0.100361;;, - 25;4;-0.988612, 0.106096,-0.011128,-0.103689;;, - 26;4;-0.988146, 0.106046,-0.011536,-0.107492;;, - 27;4;-0.987634, 0.105991,-0.011985,-0.111679;;, - 28;4;-0.987088, 0.105933,-0.012463,-0.116135;;, - 29;4;-0.986526, 0.105872,-0.012957,-0.120731;;, - 30;4;-0.985964, 0.105812,-0.013450,-0.125327;;, - 31;4;-0.985418, 0.105753,-0.013928,-0.129783;;, - 32;4;-0.984906, 0.105698,-0.014377,-0.133970;;, - 33;4;-0.984440, 0.105648,-0.014786,-0.137773;;, - 34;4;-0.984033, 0.105605,-0.015143,-0.141101;;, - 35;4;-0.983693, 0.105568,-0.015441,-0.143882;;, - 36;4;-0.983425, 0.105539,-0.015676,-0.146071;;, - 37;4;-0.983233, 0.105519,-0.015844,-0.147640;;, - 38;4;-0.983118, 0.105506,-0.015945,-0.148578;;, - 39;4;-0.983080, 0.105502,-0.015978,-0.148888;;, - 40;4;-0.983138, 0.105506,-0.015945,-0.148584;;, - 41;4;-0.983310, 0.105519,-0.015844,-0.147665;;, - 42;4;-0.983596, 0.105539,-0.015676,-0.146127;;, - 43;4;-0.983990, 0.105568,-0.015441,-0.143980;;, - 44;4;-0.984485, 0.105605,-0.015143,-0.141249;;, - 45;4;-0.985067, 0.105648,-0.014786,-0.137979;;, - 46;4;-0.985720, 0.105698,-0.014377,-0.134237;;, - 47;4;-0.986423, 0.105753,-0.013928,-0.130112;;, - 48;4;-0.987151, 0.105812,-0.013450,-0.125716;;, - 49;4;-0.987875, 0.105872,-0.012957,-0.121173;;, - 50;4;-0.988567, 0.105933,-0.012463,-0.116620;;, - 51;4;-0.989199, 0.105991,-0.011985,-0.112192;;, - 52;4;-0.989745, 0.106046,-0.011536,-0.108016;;, - 53;4;-0.990184, 0.106096,-0.011128,-0.104204;;, - 54;4;-0.990500, 0.106140,-0.010771,-0.100847;;, - 55;4;-0.990680, 0.106176,-0.010472,-0.098013;;, - 56;4;-0.990719, 0.106205,-0.010237,-0.095749;;, - 57;4;-0.990613, 0.106226,-0.010069,-0.094083;;, - 58;4;-0.990363, 0.106238,-0.009968,-0.093025;;, - 59;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 60;4;-0.989514, 0.106358,-0.009979,-0.092424;;, - 61;4;-0.989061, 0.106711,-0.010114,-0.092277;;, - 62;4;-0.988614, 0.107305,-0.010342,-0.092131;;, - 63;4;-0.988170, 0.108146,-0.010664,-0.091988;;, - 64;4;-0.987730, 0.109238,-0.011083,-0.091847;;, - 65;4;-0.987292, 0.110585,-0.011599,-0.091708;;, - 66;4;-0.986856, 0.112190,-0.012214,-0.091571;;, - 67;4;-0.986420, 0.114053,-0.012929,-0.091435;;, - 68;4;-0.985983, 0.116175,-0.013742,-0.091301;;, - 69;4;-0.985544, 0.118554,-0.014655,-0.091167;;, - 70;4;-0.985101, 0.121188,-0.015665,-0.091034;;, - 71;4;-0.984653, 0.124071,-0.016771,-0.090902;;, - 72;4;-0.984198, 0.127196,-0.017971,-0.090769;;, - 73;4;-0.983735, 0.130555,-0.019260,-0.090636;;, - 74;4;-0.983261, 0.134136,-0.020635,-0.090503;;, - 75;4;-0.982774, 0.137926,-0.022091,-0.090368;;, - 76;4;-0.982274, 0.141910,-0.023621,-0.090232;;, - 77;4;-0.981758, 0.146070,-0.025220,-0.090093;;, - 78;4;-0.981224, 0.150388,-0.026880,-0.089952;;, - 79;4;-0.980671, 0.154844,-0.028593,-0.089808;;, - 80;4;-0.980097, 0.159416,-0.030351,-0.089661;;, - 81;4;-0.979501, 0.164082,-0.032147,-0.089510;;, - 82;4;-0.978880, 0.168819,-0.033970,-0.089355;;, - 83;4;-0.978236, 0.173604,-0.035813,-0.089195;;, - 84;4;-0.977566, 0.178416,-0.037666,-0.089031;;, - 85;4;-0.976869, 0.183233,-0.039523,-0.088862;;, - 86;4;-0.976146, 0.188033,-0.041374,-0.088687;;, - 87;4;-0.975396, 0.192799,-0.043213,-0.088507;;, - 88;4;-0.974618, 0.197511,-0.045031,-0.088321;;, - 89;4;-0.973814, 0.202154,-0.046825,-0.088130;;, - 90;4;-0.972983, 0.206712,-0.048586,-0.087934;;, - 91;4;-0.972125, 0.211172,-0.050311,-0.087731;;, - 92;4;-0.971241, 0.215524,-0.051995,-0.087523;;, - 93;4;-0.970331, 0.219757,-0.053634,-0.087310;;, - 94;4;-0.969397, 0.223862,-0.055225,-0.087091;;, - 95;4;-0.968438, 0.227833,-0.056765,-0.086866;;, - 96;4;-0.967456, 0.231665,-0.058253,-0.086637;;, - 97;4;-0.966452, 0.235353,-0.059686,-0.086402;;, - 98;4;-0.965425, 0.238893,-0.061063,-0.086162;;, - 99;4;-0.964378, 0.242285,-0.062384,-0.085917;;, - 100;4;-0.963136, 0.245860,-0.063780,-0.085643;;, - 101;4;-0.961538, 0.249912,-0.065368,-0.085319;;, - 102;4;-0.959635, 0.254320,-0.067101,-0.084957;;, - 103;4;-0.957530, 0.258878,-0.068897,-0.084578;;, - 104;4;-0.955382, 0.263294,-0.070640,-0.084213;;, - 105;4;-0.953378, 0.267250,-0.072204,-0.083893;;, - 106;4;-0.951691, 0.270473,-0.073480,-0.083648;;, - 107;4;-0.950442, 0.272793,-0.074399,-0.083494;;, - 108;4;-0.949686, 0.274156,-0.074939,-0.083438;;, - 109;4;-0.949426, 0.274594,-0.075113,-0.083477;;, - 110;4;-0.950399, 0.269670,-0.073213,-0.083796;;, - 111;4;-0.953367, 0.254850,-0.067493,-0.084588;;, - 112;4;-0.958205, 0.230754,-0.058194,-0.085820;;, - 113;4;-0.964540, 0.199237,-0.046031,-0.087401;;, - 114;4;-0.971721, 0.163534,-0.032252,-0.089173;;, - 115;4;-0.978905, 0.127831,-0.018473,-0.090933;;, - 116;4;-0.985248, 0.096314,-0.006309,-0.092480;;, - 117;4;-0.990098, 0.072218, 0.002990,-0.093659;;, - 118;4;-0.993081, 0.057398, 0.008709,-0.094383;;, - 119;4;-0.994073, 0.052474, 0.010610,-0.094623;;, - 120;4;-0.993868, 0.053782, 0.010107,-0.094563;;, - 121;4;-0.993232, 0.057846, 0.008544,-0.094376;;, - 122;4;-0.992152, 0.064750, 0.005889,-0.094060;;, - 123;4;-0.990655, 0.074318, 0.002209,-0.093621;;, - 124;4;-0.988823, 0.086032,-0.002295,-0.093083;;, - 125;4;-0.986784, 0.099063,-0.007307,-0.092486;;, - 126;4;-0.984690, 0.112452,-0.012455,-0.091872;;, - 127;4;-0.982674, 0.125334,-0.017410,-0.091281;;, - 128;4;-0.980835, 0.137093,-0.021931,-0.090742;;, - 129;4;-0.979225, 0.147379,-0.025887,-0.090270;;, - 130;4;-0.977803, 0.156997,-0.029583,-0.089842;;, - 131;4;-0.976495, 0.166849,-0.033365,-0.089427;;, - 132;4;-0.975274, 0.176881,-0.037212,-0.089021;;, - 133;4;-0.974093, 0.186993,-0.041088,-0.088621;;, - 134;4;-0.972884, 0.197049,-0.044944,-0.088217;;, - 135;4;-0.971572, 0.206894,-0.048723,-0.087801;;, - 136;4;-0.970094, 0.216397,-0.052377,-0.087367;;, - 137;4;-0.968407, 0.225475,-0.055876,-0.086909;;, - 138;4;-0.966500, 0.234100,-0.059210,-0.086425;;, - 139;4;-0.964378, 0.242285,-0.062384,-0.085917;;, - 140;4;-0.961461, 0.250875,-0.065736,-0.085301;;, - 141;4;-0.957438, 0.260019,-0.069333,-0.084557;;, - 142;4;-0.953319, 0.267984,-0.072484,-0.083879;;, - 143;4;-0.950424, 0.273010,-0.074482,-0.083490;;, - 144;4;-0.949426, 0.274594,-0.075113,-0.083477;;, - 145;4;-0.953367, 0.254850,-0.067493,-0.084588;;, - 146;4;-0.964540, 0.199237,-0.046031,-0.087401;;, - 147;4;-0.978905, 0.127831,-0.018473,-0.090933;;, - 148;4;-0.990098, 0.072218, 0.002990,-0.093659;;, - 149;4;-0.994073, 0.052474, 0.010610,-0.094623;;, - 150;4;-0.993232, 0.057846, 0.008544,-0.094376;;, - 151;4;-0.990655, 0.074318, 0.002209,-0.093621;;, - 152;4;-0.986784, 0.099063,-0.007307,-0.092486;;, - 153;4;-0.982674, 0.125334,-0.017410,-0.091281;;, - 154;4;-0.979225, 0.147379,-0.025887,-0.090270;;, - 155;4;-0.975777, 0.169424,-0.034365,-0.089259;;, - 156;4;-0.971667, 0.195695,-0.044467,-0.088054;;, - 157;4;-0.967795, 0.220440,-0.053984,-0.086919;;, - 158;4;-0.965218, 0.236912,-0.060318,-0.086163;;, - 159;4;-0.964378, 0.242285,-0.062384,-0.085917;;, - 160;4;-0.964519, 0.242113,-0.062342,-0.085954;;, - 161;4;-0.964945, 0.241557,-0.062200,-0.086065;;, - 162;4;-0.965658, 0.240545,-0.061926,-0.086250;;, - 163;4;-0.966653, 0.239002,-0.061489,-0.086509;;, - 164;4;-0.967917, 0.236848,-0.060850,-0.086838;;, - 165;4;-0.969429, 0.233998,-0.059970,-0.087231;;, - 166;4;-0.971158, 0.230375,-0.058806,-0.087681;;, - 167;4;-0.973061, 0.225905,-0.057321,-0.088175;;, - 168;4;-0.975086, 0.220534,-0.055476,-0.088702;;, - 169;4;-0.977175, 0.214222,-0.053244,-0.089245;;, - 170;4;-0.979263, 0.206956,-0.050604,-0.089789;;, - 171;4;-0.981289, 0.198748,-0.047548,-0.090315;;, - 172;4;-0.983192, 0.189634,-0.044076,-0.090810;;, - 173;4;-0.984920, 0.179668,-0.040201,-0.091260;;, - 174;4;-0.986433, 0.168921,-0.035944,-0.091653;;, - 175;4;-0.987697, 0.157471,-0.031330,-0.091982;;, - 176;4;-0.988692, 0.145400,-0.026391,-0.092241;;, - 177;4;-0.989404, 0.132788,-0.021159,-0.092426;;, - 178;4;-0.989831, 0.119713,-0.015663,-0.092537;;, - 179;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 180;4;-0.987443, 0.092015, 0.006008,-0.090256;;, - 181;4;-0.979832, 0.076804, 0.042188,-0.083279;;, - 182;4;-0.967458, 0.061039, 0.097179,-0.071936;;, - 183;4;-0.951272, 0.045395, 0.166977,-0.057099;;, - 184;4;-0.932937, 0.030744, 0.244733,-0.040291;;, - 185;4;-0.914601, 0.017988, 0.321680,-0.023484;;, - 186;4;-0.898416, 0.007838, 0.389129,-0.008647;;, - 187;4;-0.886042, 0.000670, 0.440444, 0.002697;;, - 188;4;-0.878431,-0.003478, 0.471893, 0.009673;;, - 189;4;-0.875902,-0.004795, 0.482317, 0.011991;;, - 190;4;-0.885999,-0.014233, 0.441198, 0.000728;;, - 191;4;-0.914439,-0.039878, 0.325161,-0.030996;;, - 192;4;-0.950957,-0.070291, 0.175583,-0.071729;;, - 193;4;-0.979397,-0.089081, 0.057945,-0.103453;;, - 194;4;-0.989494,-0.086855, 0.014101,-0.114716;;, - 195;4;-0.989536,-0.060170, 0.009741,-0.112748;;, - 196;4;-0.989656,-0.010069, 0.003312,-0.107204;;, - 197;4;-0.989810, 0.047975,-0.003473,-0.100086;;, - 198;4;-0.989929, 0.091221,-0.008299,-0.094542;;, - 199;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 200;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 201;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 202;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 203;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 204;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 205;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 206;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 207;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 208;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 209;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 210;4;-0.989668, 0.098460,-0.001145,-0.072888;;, - 211;4;-0.988829, 0.075764, 0.023797,-0.017368;;, - 212;4;-0.987797, 0.044538, 0.056308, 0.054113;;, - 213;4;-0.987081, 0.016162, 0.082576, 0.110158;;, - 214;4;-0.986986,-0.001283, 0.093624, 0.130737;;, - 215;4;-0.987194,-0.011437, 0.093239, 0.131618;;, - 216;4;-0.987345,-0.019537, 0.086679, 0.132190;;, - 217;4;-0.987464,-0.025436, 0.075359, 0.132462;;, - 218;4;-0.987594,-0.029782, 0.062893, 0.132565;;, - 219;4;-0.987765,-0.033549, 0.052460, 0.132648;;, - 220;4;-0.987924,-0.037455, 0.042060, 0.132747;;, - 221;4;-0.988085,-0.041417, 0.029505, 0.132804;;, - 222;4;-0.988412,-0.044740, 0.017582, 0.132777;;, - 223;4;-0.989055,-0.046777, 0.009606, 0.132643;;, - 224;4;-0.990035,-0.047407, 0.006996, 0.132416;;, - 225;4;-0.991061,-0.045898, 0.006830, 0.129967;;, - 226;4;-0.991872,-0.041337, 0.006327, 0.123099;;, - 227;4;-0.992458,-0.033749, 0.005491, 0.111849;;, - 228;4;-0.992818,-0.023291, 0.004339, 0.096450;;, - 229;4;-0.992956,-0.010292, 0.002906, 0.077383;;, - 230;4;-0.992890, 0.004720, 0.001252, 0.055413;;, - 231;4;-0.992653, 0.021035,-0.000546, 0.031578;;, - 232;4;-0.992287, 0.037800,-0.002393, 0.007112;;, - 233;4;-0.991841, 0.054115,-0.004191,-0.016675;;, - 234;4;-0.991368, 0.069128,-0.005845,-0.038549;;, - 235;4;-0.990916, 0.082126,-0.007277,-0.057479;;, - 236;4;-0.990524, 0.092584,-0.008430,-0.072703;;, - 237;4;-0.990224, 0.100173,-0.009266,-0.083745;;, - 238;4;-0.990036, 0.104733,-0.009769,-0.090380;;, - 239;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 240;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 241;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 242;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 243;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 244;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 245;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 246;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 247;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 248;4;-0.989972, 0.106242,-0.009935,-0.092574;;, - 249;4;-0.989972, 0.106242,-0.009935,-0.092574;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3; 0.000000, 0.666142, 0.000000;;, - 1;3; 0.000000, 0.666142, 0.000000;;, - 2;3; 0.000000, 0.666142, 0.000000;;, - 3;3; 0.000000, 0.666142, 0.000000;;, - 4;3; 0.000000, 0.666142, 0.000000;;, - 5;3; 0.000000, 0.666142, 0.000000;;, - 6;3; 0.000000, 0.666142, 0.000000;;, - 7;3; 0.000000, 0.666142, 0.000000;;, - 8;3; 0.000000, 0.666142, 0.000000;;, - 9;3; 0.000000, 0.666142, 0.000000;;, - 10;3; 0.000000, 0.666142, 0.000000;;, - 11;3; 0.000000, 0.666142, 0.000000;;, - 12;3; 0.000000, 0.666142, 0.000000;;, - 13;3; 0.000000, 0.666142, 0.000000;;, - 14;3; 0.000000, 0.666142, 0.000000;;, - 15;3; 0.000000, 0.666142, 0.000000;;, - 16;3; 0.000000, 0.666142, 0.000000;;, - 17;3; 0.000000, 0.666142, 0.000000;;, - 18;3; 0.000000, 0.666142, 0.000000;;, - 19;3; 0.000000, 0.666142, 0.000000;;, - 20;3; 0.000000, 0.666142, 0.000000;;, - 21;3; 0.000000, 0.666142, 0.000000;;, - 22;3; 0.000000, 0.666142, 0.000000;;, - 23;3; 0.000000, 0.666142, 0.000000;;, - 24;3; 0.000000, 0.666142, 0.000000;;, - 25;3; 0.000000, 0.666142, 0.000000;;, - 26;3; 0.000000, 0.666142, 0.000000;;, - 27;3; 0.000000, 0.666142, 0.000000;;, - 28;3; 0.000000, 0.666142, 0.000000;;, - 29;3; 0.000000, 0.666142, 0.000000;;, - 30;3; 0.000000, 0.666142, 0.000000;;, - 31;3; 0.000000, 0.666142, 0.000000;;, - 32;3; 0.000000, 0.666142, 0.000000;;, - 33;3; 0.000000, 0.666142, 0.000000;;, - 34;3; 0.000000, 0.666142, 0.000000;;, - 35;3; 0.000000, 0.666142, 0.000000;;, - 36;3; 0.000000, 0.666142, 0.000000;;, - 37;3; 0.000000, 0.666142, 0.000000;;, - 38;3; 0.000000, 0.666142, 0.000000;;, - 39;3; 0.000000, 0.666142, 0.000000;;, - 40;3; 0.000000, 0.666142, 0.000000;;, - 41;3; 0.000000, 0.666142, 0.000000;;, - 42;3; 0.000000, 0.666142, 0.000000;;, - 43;3; 0.000000, 0.666142, 0.000000;;, - 44;3; 0.000000, 0.666142, 0.000000;;, - 45;3; 0.000000, 0.666142, 0.000000;;, - 46;3; 0.000000, 0.666142, 0.000000;;, - 47;3; 0.000000, 0.666142, 0.000000;;, - 48;3; 0.000000, 0.666142, 0.000000;;, - 49;3; 0.000000, 0.666142, 0.000000;;, - 50;3; 0.000000, 0.666142, 0.000000;;, - 51;3; 0.000000, 0.666142, 0.000000;;, - 52;3; 0.000000, 0.666142, 0.000000;;, - 53;3; 0.000000, 0.666142, 0.000000;;, - 54;3; 0.000000, 0.666142, 0.000000;;, - 55;3; 0.000000, 0.666142, 0.000000;;, - 56;3; 0.000000, 0.666142, 0.000000;;, - 57;3; 0.000000, 0.666142, 0.000000;;, - 58;3; 0.000000, 0.666142, 0.000000;;, - 59;3; 0.000000, 0.666142, 0.000000;;, - 60;3; 0.000000, 0.666142, 0.000000;;, - 61;3; 0.000000, 0.666142, 0.000000;;, - 62;3; 0.000000, 0.666142, 0.000000;;, - 63;3; 0.000000, 0.666142, 0.000000;;, - 64;3; 0.000000, 0.666142, 0.000000;;, - 65;3; 0.000000, 0.666142, 0.000000;;, - 66;3; 0.000000, 0.666142, 0.000000;;, - 67;3; 0.000000, 0.666142, 0.000000;;, - 68;3; 0.000000, 0.666142, 0.000000;;, - 69;3; 0.000000, 0.666142, 0.000000;;, - 70;3; 0.000000, 0.666142, 0.000000;;, - 71;3; 0.000000, 0.666142, 0.000000;;, - 72;3; 0.000000, 0.666142, 0.000000;;, - 73;3; 0.000000, 0.666142, 0.000000;;, - 74;3; 0.000000, 0.666142, 0.000000;;, - 75;3; 0.000000, 0.666142, 0.000000;;, - 76;3; 0.000000, 0.666142, 0.000000;;, - 77;3; 0.000000, 0.666142, 0.000000;;, - 78;3; 0.000000, 0.666142, 0.000000;;, - 79;3; 0.000000, 0.666142, 0.000000;;, - 80;3; 0.000000, 0.666142, 0.000000;;, - 81;3; 0.000000, 0.666142, 0.000000;;, - 82;3; 0.000000, 0.666142, 0.000000;;, - 83;3; 0.000000, 0.666142, 0.000000;;, - 84;3; 0.000000, 0.666142, 0.000000;;, - 85;3; 0.000000, 0.666142, 0.000000;;, - 86;3; 0.000000, 0.666142, 0.000000;;, - 87;3; 0.000000, 0.666142, 0.000000;;, - 88;3; 0.000000, 0.666142, 0.000000;;, - 89;3; 0.000000, 0.666142, 0.000000;;, - 90;3; 0.000000, 0.666142, 0.000000;;, - 91;3; 0.000000, 0.666142, 0.000000;;, - 92;3; 0.000000, 0.666142, 0.000000;;, - 93;3; 0.000000, 0.666142, 0.000000;;, - 94;3; 0.000000, 0.666142, 0.000000;;, - 95;3; 0.000000, 0.666142, 0.000000;;, - 96;3; 0.000000, 0.666142, 0.000000;;, - 97;3; 0.000000, 0.666142, 0.000000;;, - 98;3; 0.000000, 0.666142, 0.000000;;, - 99;3; 0.000000, 0.666142, 0.000000;;, - 100;3; 0.000000, 0.666142, 0.000000;;, - 101;3; 0.000000, 0.666142, 0.000000;;, - 102;3; 0.000000, 0.666142, 0.000000;;, - 103;3; 0.000000, 0.666142, 0.000000;;, - 104;3; 0.000000, 0.666142, 0.000000;;, - 105;3; 0.000000, 0.666142, 0.000000;;, - 106;3; 0.000000, 0.666142, 0.000000;;, - 107;3; 0.000000, 0.666142, 0.000000;;, - 108;3; 0.000000, 0.666142, 0.000000;;, - 109;3; 0.000000, 0.666142, 0.000000;;, - 110;3; 0.000000, 0.666142, 0.000000;;, - 111;3; 0.000000, 0.666142, 0.000000;;, - 112;3; 0.000000, 0.666142, 0.000000;;, - 113;3; 0.000000, 0.666142, 0.000000;;, - 114;3; 0.000000, 0.666142, 0.000000;;, - 115;3; 0.000000, 0.666142, 0.000000;;, - 116;3; 0.000000, 0.666142, 0.000000;;, - 117;3; 0.000000, 0.666142, 0.000000;;, - 118;3; 0.000000, 0.666142, 0.000000;;, - 119;3; 0.000000, 0.666142, 0.000000;;, - 120;3; 0.000000, 0.666142, 0.000000;;, - 121;3; 0.000000, 0.666142, 0.000000;;, - 122;3; 0.000000, 0.666142, 0.000000;;, - 123;3; 0.000000, 0.666142, 0.000000;;, - 124;3; 0.000000, 0.666142, 0.000000;;, - 125;3; 0.000000, 0.666142, 0.000000;;, - 126;3; 0.000000, 0.666142, 0.000000;;, - 127;3; 0.000000, 0.666142, 0.000000;;, - 128;3; 0.000000, 0.666142, 0.000000;;, - 129;3; 0.000000, 0.666142, 0.000000;;, - 130;3; 0.000000, 0.666142, 0.000000;;, - 131;3; 0.000000, 0.666142, 0.000000;;, - 132;3; 0.000000, 0.666142, 0.000000;;, - 133;3; 0.000000, 0.666142, 0.000000;;, - 134;3; 0.000000, 0.666142, 0.000000;;, - 135;3; 0.000000, 0.666142, 0.000000;;, - 136;3; 0.000000, 0.666142, 0.000000;;, - 137;3; 0.000000, 0.666142, 0.000000;;, - 138;3; 0.000000, 0.666142, 0.000000;;, - 139;3; 0.000000, 0.666142, 0.000000;;, - 140;3; 0.000000, 0.666142, 0.000000;;, - 141;3; 0.000000, 0.666142, 0.000000;;, - 142;3; 0.000000, 0.666142, 0.000000;;, - 143;3; 0.000000, 0.666142, 0.000000;;, - 144;3; 0.000000, 0.666142, 0.000000;;, - 145;3; 0.000000, 0.666142, 0.000000;;, - 146;3; 0.000000, 0.666142, 0.000000;;, - 147;3; 0.000000, 0.666142, 0.000000;;, - 148;3; 0.000000, 0.666142, 0.000000;;, - 149;3; 0.000000, 0.666142, 0.000000;;, - 150;3; 0.000000, 0.666142, 0.000000;;, - 151;3; 0.000000, 0.666142, 0.000000;;, - 152;3; 0.000000, 0.666142, 0.000000;;, - 153;3; 0.000000, 0.666142, 0.000000;;, - 154;3; 0.000000, 0.666142, 0.000000;;, - 155;3; 0.000000, 0.666142, 0.000000;;, - 156;3; 0.000000, 0.666142, 0.000000;;, - 157;3; 0.000000, 0.666142, 0.000000;;, - 158;3; 0.000000, 0.666142, 0.000000;;, - 159;3; 0.000000, 0.666142, 0.000000;;, - 160;3; 0.000000, 0.666142, 0.000000;;, - 161;3; 0.000000, 0.666142, 0.000000;;, - 162;3; 0.000000, 0.666142, 0.000000;;, - 163;3; 0.000000, 0.666142, 0.000000;;, - 164;3; 0.000000, 0.666142, 0.000000;;, - 165;3; 0.000000, 0.666142, 0.000000;;, - 166;3; 0.000000, 0.666142, 0.000000;;, - 167;3; 0.000000, 0.666142, 0.000000;;, - 168;3; 0.000000, 0.666142, 0.000000;;, - 169;3; 0.000000, 0.666142, 0.000000;;, - 170;3; 0.000000, 0.666142, 0.000000;;, - 171;3; 0.000000, 0.666142, 0.000000;;, - 172;3; 0.000000, 0.666142, 0.000000;;, - 173;3; 0.000000, 0.666142, 0.000000;;, - 174;3; 0.000000, 0.666142, 0.000000;;, - 175;3; 0.000000, 0.666142, 0.000000;;, - 176;3; 0.000000, 0.666142, 0.000000;;, - 177;3; 0.000000, 0.666142, 0.000000;;, - 178;3; 0.000000, 0.666142, 0.000000;;, - 179;3; 0.000000, 0.666142, 0.000000;;, - 180;3;-0.000000, 0.666142, 0.000000;;, - 181;3; 0.000000, 0.666142,-0.000000;;, - 182;3; 0.000000, 0.666142,-0.000000;;, - 183;3; 0.000000, 0.666142,-0.000000;;, - 184;3;-0.000000, 0.666142, 0.000000;;, - 185;3;-0.000000, 0.666142, 0.000000;;, - 186;3; 0.000000, 0.666142,-0.000000;;, - 187;3; 0.000000, 0.666142,-0.000000;;, - 188;3; 0.000000, 0.666142, 0.000000;;, - 189;3;-0.000000, 0.666142, 0.000000;;, - 190;3; 0.000001, 0.666142, 0.000000;;, - 191;3;-0.000000, 0.666142,-0.000001;;, - 192;3;-0.000000, 0.666142,-0.000000;;, - 193;3;-0.000000, 0.666142, 0.000000;;, - 194;3;-0.000000, 0.666142,-0.000000;;, - 195;3; 0.000000, 0.666142, 0.000000;;, - 196;3; 0.000000, 0.666142,-0.000000;;, - 197;3;-0.000000, 0.666142,-0.000000;;, - 198;3;-0.000000, 0.666142,-0.000000;;, - 199;3; 0.000000, 0.666142, 0.000000;;, - 200;3; 0.000000, 0.666142, 0.000000;;, - 201;3; 0.000000, 0.666142, 0.000000;;, - 202;3; 0.000000, 0.666142, 0.000000;;, - 203;3; 0.000000, 0.666142, 0.000000;;, - 204;3; 0.000000, 0.666142, 0.000000;;, - 205;3; 0.000000, 0.666142, 0.000000;;, - 206;3; 0.000000, 0.666142, 0.000000;;, - 207;3; 0.000000, 0.666142, 0.000000;;, - 208;3; 0.000000, 0.666142, 0.000000;;, - 209;3; 0.000000, 0.666142, 0.000000;;, - 210;3; 0.000000, 0.666142, 0.000000;;, - 211;3; 0.000000, 0.666142, 0.000000;;, - 212;3;-0.000000, 0.666142, 0.000000;;, - 213;3;-0.000000, 0.666142,-0.000000;;, - 214;3;-0.000000, 0.666142,-0.000000;;, - 215;3;-0.000000, 0.666142, 0.000000;;, - 216;3;-0.000000, 0.666142, 0.000000;;, - 217;3;-0.000000, 0.666142,-0.000000;;, - 218;3;-0.000000, 0.666142,-0.000000;;, - 219;3; 0.000000, 0.666142, 0.000000;;, - 220;3; 0.000000, 0.666142, 0.000000;;, - 221;3; 0.000000, 0.666142, 0.000000;;, - 222;3;-0.000000, 0.666142, 0.000000;;, - 223;3;-0.000000, 0.666142,-0.000000;;, - 224;3;-0.000000, 0.666142,-0.000000;;, - 225;3;-0.000000, 0.666142,-0.000000;;, - 226;3; 0.000000, 0.666142,-0.000000;;, - 227;3; 0.000000, 0.666142,-0.000000;;, - 228;3;-0.000000, 0.666142, 0.000000;;, - 229;3; 0.000000, 0.666142,-0.000000;;, - 230;3; 0.000000, 0.666142,-0.000000;;, - 231;3; 0.000000, 0.666142,-0.000000;;, - 232;3;-0.000000, 0.666142,-0.000000;;, - 233;3;-0.000000, 0.666142, 0.000000;;, - 234;3;-0.000000, 0.666142,-0.000000;;, - 235;3;-0.000000, 0.666142,-0.000000;;, - 236;3;-0.000000, 0.666142,-0.000000;;, - 237;3;-0.000000, 0.666142,-0.000000;;, - 238;3;-0.000000, 0.666142, 0.000000;;, - 239;3; 0.000000, 0.666142, 0.000000;;, - 240;3; 0.000000, 0.666142, 0.000000;;, - 241;3; 0.000000, 0.666142, 0.000000;;, - 242;3; 0.000000, 0.666142, 0.000000;;, - 243;3; 0.000000, 0.666142, 0.000000;;, - 244;3; 0.000000, 0.666142, 0.000000;;, - 245;3; 0.000000, 0.666142, 0.000000;;, - 246;3; 0.000000, 0.666142, 0.000000;;, - 247;3; 0.000000, 0.666142, 0.000000;;, - 248;3; 0.000000, 0.666142, 0.000000;;, - 249;3; 0.000000, 0.666142, 0.000000;;; - } - } - Animation { - {Armature_Bone_034} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 1;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 2;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 3;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 4;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 5;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 6;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 7;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 8;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 9;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 10;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 11;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 12;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 13;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 14;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 15;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 16;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 17;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 18;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 19;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 20;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 21;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 22;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 23;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 24;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 25;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 26;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 27;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 28;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 29;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 30;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 31;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 32;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 33;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 34;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 35;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 36;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 37;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 38;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 39;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 40;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 41;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 42;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 43;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 44;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 45;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 46;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 47;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 48;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 49;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 50;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 51;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 52;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 53;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 54;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 55;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 56;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 57;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 58;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 59;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 60;4;-0.977258,-0.211870, 0.000087,-0.000000;;, - 61;4;-0.976944,-0.212767, 0.000351,-0.000000;;, - 62;4;-0.976417,-0.214269, 0.000793,-0.000001;;, - 63;4;-0.975677,-0.216379, 0.001413,-0.000001;;, - 64;4;-0.974725,-0.219096, 0.002212,-0.000001;;, - 65;4;-0.973560,-0.222418, 0.003188,-0.000002;;, - 66;4;-0.972186,-0.226337, 0.004340,-0.000003;;, - 67;4;-0.970605,-0.230844, 0.005665,-0.000004;;, - 68;4;-0.968825,-0.235923, 0.007158,-0.000005;;, - 69;4;-0.966851,-0.241554, 0.008813,-0.000006;;, - 70;4;-0.964692,-0.247711, 0.010623,-0.000007;;, - 71;4;-0.962359,-0.254365, 0.012578,-0.000008;;, - 72;4;-0.959865,-0.261478, 0.014669,-0.000009;;, - 73;4;-0.957225,-0.269008, 0.016883,-0.000011;;, - 74;4;-0.954455,-0.276909, 0.019205,-0.000012;;, - 75;4;-0.951573,-0.285128, 0.021621,-0.000014;;, - 76;4;-0.948600,-0.293607, 0.024113,-0.000015;;, - 77;4;-0.945558,-0.302285, 0.026664,-0.000017;;, - 78;4;-0.942468,-0.311098, 0.029254,-0.000019;;, - 79;4;-0.939355,-0.319978, 0.031864,-0.000020;;, - 80;4;-0.936241,-0.328858, 0.034475,-0.000022;;, - 81;4;-0.933151,-0.337671, 0.037065,-0.000024;;, - 82;4;-0.930109,-0.346349, 0.039616,-0.000025;;, - 83;4;-0.927136,-0.354828, 0.042108,-0.000027;;, - 84;4;-0.924254,-0.363047, 0.044524,-0.000028;;, - 85;4;-0.921484,-0.370948, 0.046846,-0.000030;;, - 86;4;-0.918844,-0.378479, 0.049060,-0.000031;;, - 87;4;-0.916350,-0.385592, 0.051150,-0.000032;;, - 88;4;-0.914017,-0.392245, 0.053106,-0.000034;;, - 89;4;-0.911859,-0.398402, 0.054916,-0.000035;;, - 90;4;-0.909884,-0.404033, 0.056571,-0.000036;;, - 91;4;-0.908104,-0.409112, 0.058064,-0.000037;;, - 92;4;-0.906524,-0.413619, 0.059388,-0.000038;;, - 93;4;-0.905149,-0.417538, 0.060541,-0.000038;;, - 94;4;-0.903985,-0.420860, 0.061517,-0.000039;;, - 95;4;-0.903032,-0.423578, 0.062316,-0.000040;;, - 96;4;-0.902292,-0.425687, 0.062936,-0.000040;;, - 97;4;-0.901766,-0.427189, 0.063377,-0.000040;;, - 98;4;-0.901451,-0.428086, 0.063641,-0.000040;;, - 99;4;-0.901347,-0.428384, 0.063728,-0.000040;;, - 100;4;-0.901991,-0.426101, 0.063067,-0.000040;;, - 101;4;-0.903990,-0.419011, 0.061011,-0.000039;;, - 102;4;-0.907387,-0.406965, 0.057520,-0.000037;;, - 103;4;-0.912095,-0.390272, 0.052681,-0.000033;;, - 104;4;-0.917859,-0.369834, 0.046756,-0.000030;;, - 105;4;-0.924271,-0.347098, 0.040165,-0.000026;;, - 106;4;-0.930858,-0.323738, 0.033394,-0.000021;;, - 107;4;-0.937197,-0.301262, 0.026879,-0.000017;;, - 108;4;-0.942982,-0.280747, 0.020932,-0.000013;;, - 109;4;-0.948044,-0.262800, 0.015729,-0.000010;;, - 110;4;-0.953105,-0.244853, 0.010527,-0.000007;;, - 111;4;-0.958890,-0.224338, 0.004580,-0.000003;;, - 112;4;-0.965229,-0.201862,-0.001935, 0.000001;;, - 113;4;-0.971817,-0.178502,-0.008707, 0.000005;;, - 114;4;-0.978229,-0.155766,-0.015297, 0.000010;;, - 115;4;-0.983992,-0.135328,-0.021222, 0.000013;;, - 116;4;-0.988700,-0.118635,-0.026061, 0.000017;;, - 117;4;-0.992097,-0.106589,-0.029553, 0.000019;;, - 118;4;-0.994097,-0.099499,-0.031608, 0.000020;;, - 119;4;-0.994740,-0.097216,-0.032270, 0.000020;;, - 120;4;-0.994097,-0.099499,-0.031608, 0.000020;;, - 121;4;-0.992097,-0.106589,-0.029553, 0.000019;;, - 122;4;-0.988700,-0.118635,-0.026061, 0.000017;;, - 123;4;-0.983992,-0.135328,-0.021222, 0.000013;;, - 124;4;-0.978229,-0.155766,-0.015297, 0.000010;;, - 125;4;-0.971817,-0.178502,-0.008707, 0.000005;;, - 126;4;-0.965229,-0.201862,-0.001935, 0.000001;;, - 127;4;-0.958890,-0.224338, 0.004580,-0.000003;;, - 128;4;-0.953105,-0.244853, 0.010527,-0.000007;;, - 129;4;-0.948044,-0.262800, 0.015729,-0.000010;;, - 130;4;-0.942982,-0.280747, 0.020932,-0.000013;;, - 131;4;-0.937197,-0.301262, 0.026879,-0.000017;;, - 132;4;-0.930858,-0.323738, 0.033394,-0.000021;;, - 133;4;-0.924271,-0.347098, 0.040165,-0.000026;;, - 134;4;-0.917859,-0.369834, 0.046756,-0.000030;;, - 135;4;-0.912095,-0.390272, 0.052681,-0.000033;;, - 136;4;-0.907387,-0.406965, 0.057520,-0.000037;;, - 137;4;-0.903990,-0.419011, 0.061011,-0.000039;;, - 138;4;-0.901991,-0.426101, 0.063067,-0.000040;;, - 139;4;-0.901347,-0.428384, 0.063728,-0.000040;;, - 140;4;-0.903990,-0.419011, 0.061011,-0.000039;;, - 141;4;-0.912095,-0.390272, 0.052681,-0.000033;;, - 142;4;-0.924271,-0.347098, 0.040165,-0.000026;;, - 143;4;-0.937197,-0.301262, 0.026879,-0.000017;;, - 144;4;-0.948044,-0.262800, 0.015729,-0.000010;;, - 145;4;-0.958890,-0.224338, 0.004580,-0.000003;;, - 146;4;-0.971817,-0.178502,-0.008707, 0.000005;;, - 147;4;-0.983992,-0.135328,-0.021222, 0.000013;;, - 148;4;-0.992097,-0.106589,-0.029553, 0.000019;;, - 149;4;-0.994740,-0.097216,-0.032270, 0.000020;;, - 150;4;-0.992097,-0.106589,-0.029553, 0.000019;;, - 151;4;-0.983992,-0.135328,-0.021222, 0.000013;;, - 152;4;-0.971817,-0.178502,-0.008707, 0.000005;;, - 153;4;-0.958890,-0.224338, 0.004580,-0.000003;;, - 154;4;-0.948044,-0.262800, 0.015729,-0.000010;;, - 155;4;-0.937197,-0.301262, 0.026879,-0.000017;;, - 156;4;-0.924271,-0.347098, 0.040165,-0.000026;;, - 157;4;-0.912095,-0.390272, 0.052681,-0.000033;;, - 158;4;-0.903990,-0.419011, 0.061011,-0.000039;;, - 159;4;-0.901347,-0.428384, 0.063728,-0.000040;;, - 160;4;-0.901766,-0.427189, 0.063377,-0.000040;;, - 161;4;-0.903032,-0.423578, 0.062316,-0.000040;;, - 162;4;-0.905149,-0.417538, 0.060541,-0.000038;;, - 163;4;-0.908104,-0.409112, 0.058064,-0.000037;;, - 164;4;-0.911859,-0.398402, 0.054916,-0.000035;;, - 165;4;-0.916350,-0.385592, 0.051150,-0.000032;;, - 166;4;-0.921484,-0.370948, 0.046846,-0.000030;;, - 167;4;-0.927136,-0.354828, 0.042108,-0.000027;;, - 168;4;-0.933151,-0.337671, 0.037065,-0.000024;;, - 169;4;-0.939355,-0.319978, 0.031864,-0.000020;;, - 170;4;-0.945558,-0.302285, 0.026664,-0.000017;;, - 171;4;-0.951573,-0.285128, 0.021621,-0.000014;;, - 172;4;-0.957225,-0.269008, 0.016883,-0.000011;;, - 173;4;-0.962359,-0.254365, 0.012578,-0.000008;;, - 174;4;-0.966851,-0.241554, 0.008813,-0.000006;;, - 175;4;-0.970605,-0.230844, 0.005665,-0.000004;;, - 176;4;-0.973560,-0.222418, 0.003188,-0.000002;;, - 177;4;-0.975677,-0.216379, 0.001413,-0.000001;;, - 178;4;-0.976943,-0.212767, 0.000351,-0.000000;;, - 179;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 180;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 181;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 182;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 183;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 184;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 185;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 186;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 187;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 188;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 189;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 190;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 191;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 192;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 193;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 194;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 195;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 196;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 197;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 198;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 199;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 200;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 201;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 202;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 203;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 204;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 205;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 206;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 207;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 208;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 209;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 210;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 211;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 212;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 213;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 214;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 215;4;-0.977231,-0.194273, 0.018070, 0.006911;;, - 216;4;-0.976860,-0.145546, 0.068966, 0.026379;;, - 217;4;-0.976384,-0.082982, 0.134317, 0.051375;;, - 218;4;-0.976013,-0.034255, 0.185213, 0.070842;;, - 219;4;-0.975881,-0.016956, 0.203282, 0.077753;;, - 220;4;-0.976013,-0.034255, 0.185213, 0.070842;;, - 221;4;-0.976383,-0.082982, 0.134317, 0.051375;;, - 222;4;-0.976860,-0.145546, 0.068966, 0.026379;;, - 223;4;-0.977231,-0.194273, 0.018070, 0.006911;;, - 224;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 225;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 226;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 227;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 228;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 229;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 230;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 231;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 232;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 233;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 234;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 235;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 236;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 237;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 238;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 239;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 240;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 241;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 242;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 243;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 244;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 245;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 246;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 247;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 248;4;-0.977362,-0.211572, 0.000000,-0.000000;;, - 249;4;-0.977362,-0.211572, 0.000000,-0.000000;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3;-0.000000, 1.279916, 0.000000;;, - 1;3;-0.000000, 1.279916, 0.000000;;, - 2;3;-0.000000, 1.279916, 0.000000;;, - 3;3;-0.000000, 1.279916, 0.000000;;, - 4;3;-0.000000, 1.279916, 0.000000;;, - 5;3;-0.000000, 1.279916, 0.000000;;, - 6;3;-0.000000, 1.279916, 0.000000;;, - 7;3;-0.000000, 1.279916, 0.000000;;, - 8;3;-0.000000, 1.279916, 0.000000;;, - 9;3;-0.000000, 1.279916, 0.000000;;, - 10;3;-0.000000, 1.279916, 0.000000;;, - 11;3;-0.000000, 1.279916, 0.000000;;, - 12;3;-0.000000, 1.279916, 0.000000;;, - 13;3;-0.000000, 1.279916, 0.000000;;, - 14;3;-0.000000, 1.279916, 0.000000;;, - 15;3;-0.000000, 1.279916, 0.000000;;, - 16;3;-0.000000, 1.279916, 0.000000;;, - 17;3;-0.000000, 1.279916, 0.000000;;, - 18;3;-0.000000, 1.279916, 0.000000;;, - 19;3;-0.000000, 1.279916, 0.000000;;, - 20;3; 0.000000, 1.279916,-0.000000;;, - 21;3;-0.000000, 1.279916, 0.000000;;, - 22;3;-0.000000, 1.279916, 0.000000;;, - 23;3;-0.000000, 1.279916,-0.000000;;, - 24;3; 0.000000, 1.279916,-0.000000;;, - 25;3; 0.000000, 1.279916,-0.000000;;, - 26;3; 0.000000, 1.279916,-0.000000;;, - 27;3;-0.000000, 1.279916, 0.000000;;, - 28;3; 0.000000, 1.279916,-0.000000;;, - 29;3; 0.000000, 1.279916,-0.000000;;, - 30;3;-0.000000, 1.279916,-0.000000;;, - 31;3;-0.000000, 1.279916,-0.000000;;, - 32;3;-0.000000, 1.279915, 0.000000;;, - 33;3; 0.000000, 1.279916, 0.000000;;, - 34;3; 0.000000, 1.279916,-0.000000;;, - 35;3; 0.000000, 1.279916,-0.000000;;, - 36;3;-0.000000, 1.279916, 0.000000;;, - 37;3;-0.000000, 1.279916, 0.000000;;, - 38;3;-0.000000, 1.279916, 0.000000;;, - 39;3; 0.000000, 1.279916, 0.000000;;, - 40;3;-0.000000, 1.279915,-0.000000;;, - 41;3;-0.000000, 1.279916,-0.000000;;, - 42;3; 0.000000, 1.279916,-0.000000;;, - 43;3; 0.000000, 1.279916,-0.000000;;, - 44;3;-0.000000, 1.279916,-0.000000;;, - 45;3;-0.000000, 1.279916, 0.000000;;, - 46;3;-0.000000, 1.279916, 0.000000;;, - 47;3;-0.000000, 1.279916, 0.000000;;, - 48;3;-0.000000, 1.279916, 0.000000;;, - 49;3;-0.000000, 1.279916, 0.000000;;, - 50;3;-0.000000, 1.279916, 0.000000;;, - 51;3;-0.000000, 1.279916,-0.000000;;, - 52;3; 0.000000, 1.279916, 0.000000;;, - 53;3; 0.000000, 1.279916, 0.000000;;, - 54;3; 0.000000, 1.279916,-0.000000;;, - 55;3; 0.000000, 1.279916, 0.000000;;, - 56;3;-0.000000, 1.279916,-0.000000;;, - 57;3; 0.000000, 1.279916, 0.000000;;, - 58;3;-0.000000, 1.279916,-0.000000;;, - 59;3;-0.000000, 1.279916, 0.000000;;, - 60;3; 0.000000, 1.279915,-0.000000;;, - 61;3; 0.000000, 1.279916,-0.000000;;, - 62;3; 0.000000, 1.279916, 0.000000;;, - 63;3; 0.000000, 1.279916,-0.000000;;, - 64;3;-0.000000, 1.279916,-0.000000;;, - 65;3; 0.000000, 1.279915, 0.000000;;, - 66;3;-0.000000, 1.279916,-0.000000;;, - 67;3; 0.000000, 1.279916,-0.000000;;, - 68;3; 0.000000, 1.279916, 0.000000;;, - 69;3; 0.000000, 1.279916, 0.000000;;, - 70;3; 0.000000, 1.279916, 0.000000;;, - 71;3;-0.000000, 1.279916, 0.000000;;, - 72;3;-0.000000, 1.279916, 0.000000;;, - 73;3;-0.000000, 1.279916,-0.000000;;, - 74;3; 0.000000, 1.279916, 0.000000;;, - 75;3; 0.000000, 1.279916,-0.000000;;, - 76;3; 0.000000, 1.279916,-0.000000;;, - 77;3; 0.000000, 1.279916, 0.000000;;, - 78;3; 0.000000, 1.279916,-0.000000;;, - 79;3;-0.000000, 1.279915, 0.000000;;, - 80;3; 0.000000, 1.279916,-0.000000;;, - 81;3;-0.000000, 1.279916,-0.000000;;, - 82;3; 0.000000, 1.279916, 0.000000;;, - 83;3;-0.000000, 1.279916,-0.000000;;, - 84;3; 0.000000, 1.279916,-0.000000;;, - 85;3; 0.000000, 1.279916,-0.000000;;, - 86;3; 0.000000, 1.279916,-0.000000;;, - 87;3;-0.000000, 1.279916,-0.000000;;, - 88;3;-0.000000, 1.279916, 0.000000;;, - 89;3; 0.000000, 1.279915,-0.000000;;, - 90;3;-0.000000, 1.279916, 0.000000;;, - 91;3; 0.000000, 1.279916,-0.000000;;, - 92;3; 0.000000, 1.279916, 0.000000;;, - 93;3; 0.000000, 1.279916,-0.000000;;, - 94;3; 0.000000, 1.279916, 0.000000;;, - 95;3; 0.000000, 1.279916,-0.000000;;, - 96;3; 0.000000, 1.279915,-0.000000;;, - 97;3; 0.000000, 1.279915,-0.000000;;, - 98;3; 0.000000, 1.279916, 0.000000;;, - 99;3; 0.000000, 1.279916, 0.000000;;, - 100;3;-0.000000, 1.279915, 0.000000;;, - 101;3;-0.000000, 1.279916, 0.000000;;, - 102;3; 0.000000, 1.279916,-0.000000;;, - 103;3; 0.000000, 1.279916, 0.000000;;, - 104;3;-0.000000, 1.279916,-0.000000;;, - 105;3; 0.000000, 1.279916, 0.000000;;, - 106;3;-0.000000, 1.279916, 0.000000;;, - 107;3;-0.000000, 1.279916, 0.000000;;, - 108;3;-0.000000, 1.279916,-0.000000;;, - 109;3; 0.000000, 1.279916, 0.000000;;, - 110;3; 0.000000, 1.279916, 0.000000;;, - 111;3; 0.000000, 1.279916, 0.000000;;, - 112;3; 0.000000, 1.279916,-0.000000;;, - 113;3;-0.000000, 1.279916, 0.000000;;, - 114;3;-0.000000, 1.279916,-0.000000;;, - 115;3;-0.000000, 1.279915,-0.000000;;, - 116;3; 0.000000, 1.279916, 0.000000;;, - 117;3;-0.000000, 1.279916,-0.000000;;, - 118;3; 0.000000, 1.279916, 0.000000;;, - 119;3; 0.000000, 1.279916,-0.000000;;, - 120;3;-0.000000, 1.279916, 0.000000;;, - 121;3;-0.000000, 1.279916, 0.000000;;, - 122;3;-0.000000, 1.279916,-0.000000;;, - 123;3;-0.000000, 1.279916,-0.000000;;, - 124;3;-0.000000, 1.279916, 0.000000;;, - 125;3;-0.000000, 1.279916,-0.000000;;, - 126;3;-0.000000, 1.279916, 0.000000;;, - 127;3;-0.000000, 1.279916,-0.000000;;, - 128;3; 0.000000, 1.279916, 0.000000;;, - 129;3; 0.000000, 1.279916,-0.000000;;, - 130;3;-0.000000, 1.279916,-0.000000;;, - 131;3; 0.000000, 1.279916, 0.000000;;, - 132;3; 0.000000, 1.279916, 0.000000;;, - 133;3; 0.000000, 1.279916, 0.000000;;, - 134;3;-0.000000, 1.279916, 0.000000;;, - 135;3;-0.000000, 1.279916,-0.000000;;, - 136;3;-0.000000, 1.279916, 0.000000;;, - 137;3;-0.000000, 1.279915, 0.000000;;, - 138;3;-0.000000, 1.279916, 0.000000;;, - 139;3; 0.000000, 1.279916, 0.000000;;, - 140;3; 0.000000, 1.279916,-0.000000;;, - 141;3; 0.000000, 1.279916,-0.000000;;, - 142;3; 0.000000, 1.279916, 0.000000;;, - 143;3;-0.000000, 1.279916,-0.000000;;, - 144;3; 0.000000, 1.279916, 0.000000;;, - 145;3; 0.000000, 1.279916, 0.000000;;, - 146;3;-0.000000, 1.279916, 0.000000;;, - 147;3;-0.000000, 1.279915,-0.000000;;, - 148;3;-0.000000, 1.279916,-0.000000;;, - 149;3; 0.000000, 1.279916,-0.000000;;, - 150;3;-0.000000, 1.279916, 0.000000;;, - 151;3;-0.000000, 1.279916,-0.000000;;, - 152;3;-0.000000, 1.279916,-0.000000;;, - 153;3;-0.000000, 1.279916,-0.000000;;, - 154;3; 0.000000, 1.279916,-0.000000;;, - 155;3; 0.000000, 1.279915,-0.000000;;, - 156;3;-0.000000, 1.279916,-0.000000;;, - 157;3; 0.000000, 1.279916, 0.000000;;, - 158;3; 0.000000, 1.279916, 0.000000;;, - 159;3; 0.000000, 1.279916, 0.000000;;, - 160;3;-0.000000, 1.279916,-0.000000;;, - 161;3;-0.000000, 1.279916, 0.000000;;, - 162;3;-0.000000, 1.279916, 0.000000;;, - 163;3; 0.000000, 1.279916,-0.000000;;, - 164;3; 0.000000, 1.279916, 0.000000;;, - 165;3; 0.000000, 1.279916,-0.000000;;, - 166;3;-0.000000, 1.279916,-0.000000;;, - 167;3;-0.000000, 1.279916, 0.000000;;, - 168;3;-0.000000, 1.279916, 0.000000;;, - 169;3; 0.000000, 1.279916,-0.000000;;, - 170;3;-0.000000, 1.279916,-0.000000;;, - 171;3; 0.000000, 1.279916,-0.000000;;, - 172;3;-0.000000, 1.279916, 0.000000;;, - 173;3;-0.000000, 1.279916,-0.000000;;, - 174;3;-0.000000, 1.279916,-0.000000;;, - 175;3; 0.000000, 1.279916,-0.000000;;, - 176;3; 0.000000, 1.279916,-0.000000;;, - 177;3;-0.000000, 1.279915, 0.000000;;, - 178;3; 0.000000, 1.279916, 0.000000;;, - 179;3;-0.000000, 1.279916, 0.000000;;, - 180;3; 0.000000, 1.279915, 0.000000;;, - 181;3; 0.000000, 1.279916,-0.000000;;, - 182;3;-0.000000, 1.279916,-0.000000;;, - 183;3;-0.000000, 1.279916, 0.000000;;, - 184;3;-0.000000, 1.279916,-0.000000;;, - 185;3;-0.000000, 1.279916,-0.000000;;, - 186;3;-0.000000, 1.279916,-0.000000;;, - 187;3; 0.000000, 1.279916,-0.000000;;, - 188;3; 0.000000, 1.279916, 0.000000;;, - 189;3;-0.000000, 1.279916,-0.000000;;, - 190;3; 0.000000, 1.279916,-0.000000;;, - 191;3;-0.000000, 1.279916, 0.000000;;, - 192;3;-0.000000, 1.279915,-0.000000;;, - 193;3;-0.000000, 1.279915,-0.000000;;, - 194;3; 0.000000, 1.279916,-0.000000;;, - 195;3; 0.000000, 1.279916,-0.000000;;, - 196;3; 0.000000, 1.279916,-0.000000;;, - 197;3;-0.000000, 1.279916, 0.000000;;, - 198;3;-0.000000, 1.279916, 0.000000;;, - 199;3;-0.000000, 1.279916, 0.000000;;, - 200;3;-0.000000, 1.279916, 0.000000;;, - 201;3;-0.000000, 1.279916, 0.000000;;, - 202;3;-0.000000, 1.279916, 0.000000;;, - 203;3;-0.000000, 1.279916, 0.000000;;, - 204;3;-0.000000, 1.279916, 0.000000;;, - 205;3;-0.000000, 1.279916, 0.000000;;, - 206;3;-0.000000, 1.279916, 0.000000;;, - 207;3;-0.000000, 1.279916, 0.000000;;, - 208;3;-0.000000, 1.279916, 0.000000;;, - 209;3;-0.000000, 1.279916, 0.000000;;, - 210;3; 0.000000, 1.279916,-0.000000;;, - 211;3; 0.000000, 1.279916,-0.000000;;, - 212;3;-0.000000, 1.279916, 0.000000;;, - 213;3;-0.000000, 1.279916,-0.000000;;, - 214;3; 0.000000, 1.279916, 0.000000;;, - 215;3; 0.000000, 1.279916,-0.000000;;, - 216;3;-0.000000, 1.279916, 0.000000;;, - 217;3; 0.000000, 1.279916,-0.000000;;, - 218;3;-0.000000, 1.279916,-0.000000;;, - 219;3; 0.000000, 1.279916,-0.000000;;, - 220;3; 0.000000, 1.279916, 0.000000;;, - 221;3; 0.000000, 1.279916,-0.000000;;, - 222;3; 0.000000, 1.279916, 0.000000;;, - 223;3; 0.000000, 1.279916,-0.000000;;, - 224;3;-0.000000, 1.279916,-0.000000;;, - 225;3; 0.000000, 1.279916,-0.000000;;, - 226;3; 0.000000, 1.279916,-0.000000;;, - 227;3;-0.000000, 1.279916, 0.000000;;, - 228;3; 0.000000, 1.279916, 0.000000;;, - 229;3; 0.000000, 1.279916, 0.000000;;, - 230;3; 0.000000, 1.279916,-0.000000;;, - 231;3;-0.000000, 1.279916, 0.000000;;, - 232;3; 0.000000, 1.279916,-0.000000;;, - 233;3; 0.000000, 1.279916,-0.000000;;, - 234;3;-0.000000, 1.279916, 0.000000;;, - 235;3;-0.000000, 1.279916, 0.000000;;, - 236;3; 0.000000, 1.279916, 0.000000;;, - 237;3;-0.000000, 1.279916,-0.000000;;, - 238;3;-0.000000, 1.279916, 0.000000;;, - 239;3;-0.000000, 1.279916, 0.000000;;, - 240;3;-0.000000, 1.279916, 0.000000;;, - 241;3;-0.000000, 1.279916, 0.000000;;, - 242;3;-0.000000, 1.279916, 0.000000;;, - 243;3;-0.000000, 1.279916, 0.000000;;, - 244;3;-0.000000, 1.279916, 0.000000;;, - 245;3;-0.000000, 1.279916, 0.000000;;, - 246;3;-0.000000, 1.279916, 0.000000;;, - 247;3;-0.000000, 1.279916, 0.000000;;, - 248;3;-0.000000, 1.279916, 0.000000;;, - 249;3;-0.000000, 1.279916, 0.000000;;; - } - } - Animation { - {Armature_Bone_038} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 1;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 2;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 3;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 4;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 5;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 6;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 7;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 8;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 9;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 10;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 11;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 12;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 13;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 14;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 15;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 16;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 17;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 18;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 19;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 20;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 21;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 22;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 23;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 24;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 25;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 26;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 27;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 28;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 29;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 30;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 31;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 32;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 33;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 34;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 35;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 36;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 37;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 38;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 39;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 40;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 41;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 42;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 43;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 44;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 45;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 46;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 47;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 48;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 49;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 50;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 51;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 52;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 53;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 54;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 55;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 56;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 57;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 58;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 59;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 60;4;-0.958244,-0.285931, 0.000030, 0.000016;;, - 61;4;-0.958123,-0.286275, 0.000119, 0.000065;;, - 62;4;-0.957921,-0.286851, 0.000268, 0.000147;;, - 63;4;-0.957638,-0.287661, 0.000478, 0.000263;;, - 64;4;-0.957272,-0.288703, 0.000748, 0.000411;;, - 65;4;-0.956825,-0.289977, 0.001079, 0.000593;;, - 66;4;-0.956298,-0.291480, 0.001468, 0.000807;;, - 67;4;-0.955692,-0.293208, 0.001917, 0.001053;;, - 68;4;-0.955008,-0.295156, 0.002422, 0.001331;;, - 69;4;-0.954251,-0.297315, 0.002982, 0.001638;;, - 70;4;-0.953423,-0.299677, 0.003594, 0.001975;;, - 71;4;-0.952528,-0.302228, 0.004256, 0.002338;;, - 72;4;-0.951571,-0.304956, 0.004963, 0.002727;;, - 73;4;-0.950558,-0.307844, 0.005712, 0.003138;;, - 74;4;-0.949495,-0.310874, 0.006498, 0.003570;;, - 75;4;-0.948389,-0.314026, 0.007315, 0.004019;;, - 76;4;-0.947249,-0.317278, 0.008159, 0.004483;;, - 77;4;-0.946081,-0.320606, 0.009022, 0.004957;;, - 78;4;-0.944896,-0.323985, 0.009898, 0.005438;;, - 79;4;-0.943701,-0.327391, 0.010781, 0.005924;;, - 80;4;-0.942506,-0.330796, 0.011664, 0.006409;;, - 81;4;-0.941321,-0.334176, 0.012541, 0.006890;;, - 82;4;-0.940153,-0.337504, 0.013404, 0.007364;;, - 83;4;-0.939013,-0.340756, 0.014247, 0.007828;;, - 84;4;-0.937907,-0.343908, 0.015064, 0.008277;;, - 85;4;-0.936844,-0.346938, 0.015850, 0.008709;;, - 86;4;-0.935831,-0.349826, 0.016599, 0.009120;;, - 87;4;-0.934875,-0.352553, 0.017307, 0.009509;;, - 88;4;-0.933979,-0.355105, 0.017968, 0.009872;;, - 89;4;-0.933151,-0.357466, 0.018581, 0.010209;;, - 90;4;-0.932394,-0.359626, 0.019141, 0.010516;;, - 91;4;-0.931710,-0.361574, 0.019646, 0.010794;;, - 92;4;-0.931104,-0.363302, 0.020094, 0.011040;;, - 93;4;-0.930577,-0.364805, 0.020484, 0.011254;;, - 94;4;-0.930130,-0.366079, 0.020814, 0.011436;;, - 95;4;-0.929765,-0.367121, 0.021084, 0.011584;;, - 96;4;-0.929481,-0.367930, 0.021294, 0.011700;;, - 97;4;-0.929279,-0.368506, 0.021443, 0.011782;;, - 98;4;-0.929158,-0.368850, 0.021533, 0.011831;;, - 99;4;-0.929118,-0.368964, 0.021562, 0.011847;;, - 100;4;-0.929521,-0.367474, 0.021184, 0.011639;;, - 101;4;-0.930772,-0.362843, 0.020009, 0.010994;;, - 102;4;-0.932897,-0.354977, 0.018014, 0.009897;;, - 103;4;-0.935842,-0.344075, 0.015248, 0.008378;;, - 104;4;-0.939447,-0.330728, 0.011862, 0.006518;;, - 105;4;-0.943459,-0.315879, 0.008096, 0.004448;;, - 106;4;-0.947580,-0.300624, 0.004226, 0.002322;;, - 107;4;-0.951545,-0.285946, 0.000502, 0.000276;;, - 108;4;-0.955165,-0.272548,-0.002897,-0.001592;;, - 109;4;-0.958331,-0.260827,-0.005870,-0.003225;;, - 110;4;-0.961497,-0.249107,-0.008843,-0.004859;;, - 111;4;-0.965116,-0.235709,-0.012242,-0.006726;;, - 112;4;-0.969082,-0.221031,-0.015966,-0.008772;;, - 113;4;-0.973203,-0.205776,-0.019836,-0.010898;;, - 114;4;-0.977214,-0.190927,-0.023602,-0.012968;;, - 115;4;-0.980820,-0.177580,-0.026988,-0.014828;;, - 116;4;-0.983765,-0.166678,-0.029754,-0.016348;;, - 117;4;-0.985890,-0.158812,-0.031749,-0.017444;;, - 118;4;-0.987141,-0.154181,-0.032924,-0.018090;;, - 119;4;-0.987543,-0.152690,-0.033302,-0.018297;;, - 120;4;-0.987141,-0.154181,-0.032924,-0.018090;;, - 121;4;-0.985890,-0.158812,-0.031749,-0.017444;;, - 122;4;-0.983765,-0.166678,-0.029754,-0.016348;;, - 123;4;-0.980820,-0.177580,-0.026988,-0.014828;;, - 124;4;-0.977214,-0.190927,-0.023602,-0.012968;;, - 125;4;-0.973203,-0.205776,-0.019836,-0.010898;;, - 126;4;-0.969082,-0.221031,-0.015966,-0.008772;;, - 127;4;-0.965116,-0.235709,-0.012242,-0.006726;;, - 128;4;-0.961497,-0.249107,-0.008843,-0.004859;;, - 129;4;-0.958331,-0.260827,-0.005870,-0.003225;;, - 130;4;-0.955165,-0.272548,-0.002897,-0.001592;;, - 131;4;-0.951545,-0.285945, 0.000502, 0.000276;;, - 132;4;-0.947580,-0.300624, 0.004226, 0.002322;;, - 133;4;-0.943459,-0.315879, 0.008096, 0.004448;;, - 134;4;-0.939447,-0.330728, 0.011862, 0.006518;;, - 135;4;-0.935842,-0.344075, 0.015248, 0.008378;;, - 136;4;-0.932897,-0.354977, 0.018014, 0.009897;;, - 137;4;-0.930772,-0.362843, 0.020009, 0.010994;;, - 138;4;-0.929521,-0.367474, 0.021184, 0.011639;;, - 139;4;-0.929118,-0.368964, 0.021562, 0.011847;;, - 140;4;-0.930772,-0.362843, 0.020009, 0.010994;;, - 141;4;-0.935842,-0.344075, 0.015248, 0.008378;;, - 142;4;-0.943459,-0.315879, 0.008096, 0.004448;;, - 143;4;-0.951545,-0.285946, 0.000502, 0.000276;;, - 144;4;-0.958331,-0.260827,-0.005870,-0.003225;;, - 145;4;-0.965116,-0.235709,-0.012242,-0.006726;;, - 146;4;-0.973203,-0.205776,-0.019836,-0.010898;;, - 147;4;-0.980820,-0.177580,-0.026988,-0.014828;;, - 148;4;-0.985890,-0.158812,-0.031749,-0.017444;;, - 149;4;-0.987543,-0.152690,-0.033302,-0.018297;;, - 150;4;-0.985890,-0.158812,-0.031749,-0.017444;;, - 151;4;-0.980820,-0.177580,-0.026988,-0.014828;;, - 152;4;-0.973203,-0.205776,-0.019836,-0.010898;;, - 153;4;-0.965116,-0.235709,-0.012242,-0.006726;;, - 154;4;-0.958331,-0.260827,-0.005870,-0.003225;;, - 155;4;-0.951545,-0.285945, 0.000502, 0.000276;;, - 156;4;-0.943459,-0.315879, 0.008096, 0.004448;;, - 157;4;-0.935842,-0.344075, 0.015248, 0.008378;;, - 158;4;-0.930772,-0.362843, 0.020009, 0.010994;;, - 159;4;-0.929118,-0.368964, 0.021562, 0.011847;;, - 160;4;-0.929279,-0.368506, 0.021443, 0.011782;;, - 161;4;-0.929765,-0.367121, 0.021084, 0.011584;;, - 162;4;-0.930577,-0.364805, 0.020484, 0.011254;;, - 163;4;-0.931710,-0.361573, 0.019646, 0.010794;;, - 164;4;-0.933151,-0.357466, 0.018581, 0.010209;;, - 165;4;-0.934874,-0.352553, 0.017307, 0.009509;;, - 166;4;-0.936844,-0.346938, 0.015850, 0.008709;;, - 167;4;-0.939013,-0.340756, 0.014247, 0.007828;;, - 168;4;-0.941321,-0.334176, 0.012541, 0.006890;;, - 169;4;-0.943701,-0.327391, 0.010781, 0.005924;;, - 170;4;-0.946081,-0.320606, 0.009022, 0.004957;;, - 171;4;-0.948389,-0.314026, 0.007315, 0.004019;;, - 172;4;-0.950558,-0.307844, 0.005712, 0.003138;;, - 173;4;-0.952528,-0.302228, 0.004256, 0.002338;;, - 174;4;-0.954251,-0.297315, 0.002982, 0.001638;;, - 175;4;-0.955692,-0.293208, 0.001917, 0.001053;;, - 176;4;-0.956825,-0.289977, 0.001079, 0.000593;;, - 177;4;-0.957638,-0.287661, 0.000478, 0.000263;;, - 178;4;-0.958123,-0.286275, 0.000119, 0.000065;;, - 179;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 180;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 181;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 182;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 183;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 184;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 185;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 186;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 187;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 188;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 189;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 190;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 191;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 192;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 193;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 194;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 195;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 196;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 197;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 198;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 199;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 200;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 201;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 202;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 203;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 204;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 205;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 206;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 207;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 208;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 209;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 210;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 211;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 212;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 213;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 214;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 215;4;-0.959377,-0.267880, 0.012959, 0.015310;;, - 216;4;-0.962455,-0.217358, 0.049461, 0.058433;;, - 217;4;-0.966407,-0.152488, 0.096328, 0.113802;;, - 218;4;-0.969484,-0.101966, 0.132830, 0.156925;;, - 219;4;-0.970577,-0.084029, 0.145789, 0.172234;;, - 220;4;-0.969484,-0.101966, 0.132830, 0.156925;;, - 221;4;-0.966407,-0.152488, 0.096328, 0.113802;;, - 222;4;-0.962455,-0.217358, 0.049461, 0.058433;;, - 223;4;-0.959377,-0.267880, 0.012959, 0.015310;;, - 224;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 225;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 226;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 227;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 228;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 229;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 230;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 231;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 232;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 233;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 234;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 235;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 236;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 237;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 238;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 239;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 240;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 241;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 242;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 243;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 244;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 245;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 246;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 247;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 248;4;-0.958284,-0.285817, 0.000000,-0.000000;;, - 249;4;-0.958284,-0.285817, 0.000000,-0.000000;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3; 0.000000, 1.228417,-0.000000;;, - 1;3; 0.000000, 1.228417,-0.000000;;, - 2;3; 0.000000, 1.228417,-0.000000;;, - 3;3; 0.000000, 1.228417,-0.000000;;, - 4;3; 0.000000, 1.228417,-0.000000;;, - 5;3; 0.000000, 1.228417,-0.000000;;, - 6;3; 0.000000, 1.228417,-0.000000;;, - 7;3; 0.000000, 1.228417,-0.000000;;, - 8;3; 0.000000, 1.228417,-0.000000;;, - 9;3; 0.000000, 1.228417,-0.000000;;, - 10;3; 0.000000, 1.228417,-0.000000;;, - 11;3; 0.000000, 1.228417,-0.000000;;, - 12;3; 0.000000, 1.228417,-0.000000;;, - 13;3; 0.000000, 1.228417,-0.000000;;, - 14;3; 0.000000, 1.228417,-0.000000;;, - 15;3; 0.000000, 1.228417,-0.000000;;, - 16;3; 0.000000, 1.228417,-0.000000;;, - 17;3; 0.000000, 1.228417,-0.000000;;, - 18;3; 0.000000, 1.228417,-0.000000;;, - 19;3; 0.000000, 1.228417,-0.000000;;, - 20;3;-0.000000, 1.228416,-0.000000;;, - 21;3; 0.000000, 1.228416, 0.000000;;, - 22;3; 0.000000, 1.228417, 0.000000;;, - 23;3;-0.000000, 1.228416, 0.000000;;, - 24;3; 0.000000, 1.228416,-0.000000;;, - 25;3;-0.000000, 1.228417, 0.000000;;, - 26;3;-0.000000, 1.228416,-0.000000;;, - 27;3; 0.000000, 1.228416,-0.000000;;, - 28;3; 0.000000, 1.228416,-0.000000;;, - 29;3; 0.000000, 1.228417,-0.000000;;, - 30;3; 0.000000, 1.228417, 0.000000;;, - 31;3;-0.000000, 1.228417,-0.000000;;, - 32;3;-0.000000, 1.228416, 0.000000;;, - 33;3;-0.000000, 1.228416,-0.000000;;, - 34;3;-0.000000, 1.228416, 0.000000;;, - 35;3; 0.000000, 1.228417,-0.000000;;, - 36;3;-0.000000, 1.228417,-0.000000;;, - 37;3;-0.000000, 1.228416, 0.000000;;, - 38;3;-0.000000, 1.228416,-0.000000;;, - 39;3;-0.000000, 1.228416,-0.000000;;, - 40;3; 0.000000, 1.228416, 0.000000;;, - 41;3;-0.000000, 1.228416, 0.000000;;, - 42;3; 0.000000, 1.228417, 0.000000;;, - 43;3;-0.000000, 1.228416,-0.000000;;, - 44;3;-0.000000, 1.228416,-0.000000;;, - 45;3; 0.000000, 1.228416,-0.000000;;, - 46;3;-0.000000, 1.228416,-0.000000;;, - 47;3;-0.000000, 1.228416,-0.000000;;, - 48;3; 0.000000, 1.228416,-0.000000;;, - 49;3; 0.000000, 1.228416, 0.000000;;, - 50;3;-0.000000, 1.228416,-0.000000;;, - 51;3; 0.000000, 1.228417, 0.000000;;, - 52;3; 0.000000, 1.228417, 0.000000;;, - 53;3;-0.000000, 1.228416, 0.000000;;, - 54;3;-0.000000, 1.228416, 0.000000;;, - 55;3;-0.000000, 1.228417, 0.000000;;, - 56;3; 0.000000, 1.228416,-0.000000;;, - 57;3; 0.000000, 1.228416,-0.000000;;, - 58;3;-0.000000, 1.228416,-0.000000;;, - 59;3; 0.000000, 1.228417,-0.000000;;, - 60;3;-0.000000, 1.228416,-0.000000;;, - 61;3;-0.000000, 1.228417,-0.000000;;, - 62;3;-0.000000, 1.228416,-0.000000;;, - 63;3;-0.000000, 1.228417, 0.000000;;, - 64;3; 0.000000, 1.228417, 0.000000;;, - 65;3;-0.000000, 1.228417,-0.000000;;, - 66;3;-0.000000, 1.228416, 0.000000;;, - 67;3;-0.000000, 1.228416, 0.000000;;, - 68;3; 0.000000, 1.228417, 0.000000;;, - 69;3;-0.000000, 1.228417,-0.000000;;, - 70;3; 0.000000, 1.228417, 0.000000;;, - 71;3;-0.000000, 1.228417,-0.000000;;, - 72;3; 0.000000, 1.228417, 0.000000;;, - 73;3;-0.000000, 1.228416,-0.000000;;, - 74;3; 0.000000, 1.228417,-0.000000;;, - 75;3; 0.000000, 1.228416, 0.000000;;, - 76;3;-0.000000, 1.228417,-0.000000;;, - 77;3; 0.000000, 1.228417, 0.000000;;, - 78;3; 0.000000, 1.228416, 0.000000;;, - 79;3;-0.000000, 1.228416,-0.000000;;, - 80;3;-0.000000, 1.228417, 0.000000;;, - 81;3; 0.000000, 1.228417, 0.000000;;, - 82;3; 0.000000, 1.228417,-0.000000;;, - 83;3; 0.000000, 1.228416,-0.000000;;, - 84;3; 0.000000, 1.228416,-0.000000;;, - 85;3;-0.000000, 1.228416,-0.000000;;, - 86;3; 0.000000, 1.228417,-0.000000;;, - 87;3; 0.000000, 1.228416,-0.000000;;, - 88;3;-0.000000, 1.228416,-0.000000;;, - 89;3;-0.000000, 1.228416,-0.000000;;, - 90;3; 0.000000, 1.228417, 0.000000;;, - 91;3;-0.000000, 1.228416,-0.000000;;, - 92;3; 0.000000, 1.228417, 0.000000;;, - 93;3; 0.000000, 1.228417, 0.000000;;, - 94;3; 0.000000, 1.228417,-0.000000;;, - 95;3;-0.000000, 1.228416, 0.000000;;, - 96;3; 0.000000, 1.228417,-0.000000;;, - 97;3; 0.000000, 1.228416, 0.000000;;, - 98;3;-0.000000, 1.228416, 0.000000;;, - 99;3; 0.000000, 1.228416, 0.000000;;, - 100;3; 0.000000, 1.228417,-0.000000;;, - 101;3;-0.000000, 1.228416,-0.000000;;, - 102;3; 0.000000, 1.228417, 0.000000;;, - 103;3; 0.000000, 1.228416,-0.000000;;, - 104;3; 0.000000, 1.228416, 0.000000;;, - 105;3;-0.000000, 1.228416,-0.000000;;, - 106;3;-0.000000, 1.228416, 0.000000;;, - 107;3;-0.000000, 1.228416,-0.000000;;, - 108;3;-0.000000, 1.228416, 0.000000;;, - 109;3; 0.000000, 1.228416, 0.000000;;, - 110;3;-0.000000, 1.228416,-0.000000;;, - 111;3; 0.000000, 1.228417, 0.000000;;, - 112;3; 0.000000, 1.228417, 0.000000;;, - 113;3;-0.000000, 1.228416, 0.000000;;, - 114;3; 0.000000, 1.228416, 0.000000;;, - 115;3;-0.000000, 1.228416, 0.000000;;, - 116;3;-0.000000, 1.228418, 0.000000;;, - 117;3; 0.000000, 1.228416,-0.000000;;, - 118;3; 0.000000, 1.228417,-0.000000;;, - 119;3; 0.000000, 1.228417,-0.000000;;, - 120;3;-0.000000, 1.228416,-0.000000;;, - 121;3;-0.000000, 1.228417,-0.000000;;, - 122;3; 0.000000, 1.228417, 0.000000;;, - 123;3; 0.000000, 1.228417,-0.000000;;, - 124;3; 0.000000, 1.228416,-0.000000;;, - 125;3; 0.000000, 1.228417,-0.000000;;, - 126;3;-0.000000, 1.228416,-0.000000;;, - 127;3;-0.000000, 1.228416,-0.000000;;, - 128;3; 0.000000, 1.228416,-0.000000;;, - 129;3; 0.000000, 1.228417,-0.000000;;, - 130;3; 0.000000, 1.228416,-0.000000;;, - 131;3;-0.000000, 1.228416,-0.000000;;, - 132;3; 0.000000, 1.228417, 0.000000;;, - 133;3;-0.000000, 1.228416,-0.000000;;, - 134;3;-0.000000, 1.228417,-0.000000;;, - 135;3; 0.000000, 1.228417, 0.000000;;, - 136;3; 0.000000, 1.228416,-0.000000;;, - 137;3; 0.000000, 1.228417, 0.000000;;, - 138;3; 0.000000, 1.228417,-0.000000;;, - 139;3; 0.000000, 1.228416, 0.000000;;, - 140;3;-0.000000, 1.228417,-0.000000;;, - 141;3;-0.000000, 1.228417,-0.000000;;, - 142;3;-0.000000, 1.228416, 0.000000;;, - 143;3; 0.000000, 1.228417, 0.000000;;, - 144;3; 0.000000, 1.228416, 0.000000;;, - 145;3; 0.000000, 1.228417, 0.000000;;, - 146;3;-0.000000, 1.228416, 0.000000;;, - 147;3;-0.000000, 1.228416, 0.000000;;, - 148;3; 0.000000, 1.228416,-0.000000;;, - 149;3; 0.000000, 1.228417,-0.000000;;, - 150;3;-0.000000, 1.228417,-0.000000;;, - 151;3; 0.000000, 1.228417,-0.000000;;, - 152;3; 0.000000, 1.228417,-0.000000;;, - 153;3;-0.000000, 1.228416,-0.000000;;, - 154;3; 0.000000, 1.228417,-0.000000;;, - 155;3; 0.000000, 1.228417,-0.000000;;, - 156;3; 0.000000, 1.228416,-0.000000;;, - 157;3; 0.000000, 1.228416,-0.000000;;, - 158;3;-0.000000, 1.228416,-0.000000;;, - 159;3; 0.000000, 1.228416, 0.000000;;, - 160;3;-0.000000, 1.228416, 0.000000;;, - 161;3; 0.000000, 1.228416, 0.000000;;, - 162;3;-0.000000, 1.228416, 0.000000;;, - 163;3; 0.000000, 1.228417,-0.000000;;, - 164;3; 0.000000, 1.228417, 0.000000;;, - 165;3;-0.000000, 1.228416,-0.000000;;, - 166;3; 0.000000, 1.228416, 0.000000;;, - 167;3;-0.000000, 1.228416, 0.000000;;, - 168;3;-0.000000, 1.228417,-0.000000;;, - 169;3; 0.000000, 1.228416, 0.000000;;, - 170;3;-0.000000, 1.228416,-0.000000;;, - 171;3; 0.000000, 1.228417, 0.000000;;, - 172;3; 0.000000, 1.228417, 0.000000;;, - 173;3;-0.000000, 1.228416,-0.000000;;, - 174;3;-0.000000, 1.228417, 0.000000;;, - 175;3;-0.000000, 1.228417, 0.000000;;, - 176;3;-0.000000, 1.228416, 0.000000;;, - 177;3; 0.000000, 1.228416,-0.000000;;, - 178;3; 0.000000, 1.228417, 0.000000;;, - 179;3; 0.000000, 1.228417,-0.000000;;, - 180;3; 0.000000, 1.228416,-0.000000;;, - 181;3; 0.000000, 1.228417, 0.000000;;, - 182;3; 0.000000, 1.228416, 0.000000;;, - 183;3;-0.000000, 1.228416, 0.000000;;, - 184;3;-0.000000, 1.228416, 0.000000;;, - 185;3; 0.000000, 1.228417, 0.000000;;, - 186;3;-0.000000, 1.228416,-0.000000;;, - 187;3; 0.000000, 1.228416, 0.000000;;, - 188;3; 0.000000, 1.228416, 0.000000;;, - 189;3;-0.000000, 1.228416, 0.000001;;, - 190;3;-0.000000, 1.228417, 0.000000;;, - 191;3;-0.000000, 1.228416,-0.000000;;, - 192;3; 0.000000, 1.228417,-0.000000;;, - 193;3; 0.000000, 1.228416, 0.000001;;, - 194;3; 0.000000, 1.228416,-0.000000;;, - 195;3;-0.000000, 1.228416, 0.000000;;, - 196;3;-0.000000, 1.228417, 0.000000;;, - 197;3; 0.000000, 1.228416, 0.000000;;, - 198;3; 0.000000, 1.228417, 0.000000;;, - 199;3; 0.000000, 1.228417,-0.000000;;, - 200;3; 0.000000, 1.228417,-0.000000;;, - 201;3; 0.000000, 1.228417,-0.000000;;, - 202;3; 0.000000, 1.228417,-0.000000;;, - 203;3; 0.000000, 1.228417,-0.000000;;, - 204;3; 0.000000, 1.228417,-0.000000;;, - 205;3; 0.000000, 1.228417,-0.000000;;, - 206;3; 0.000000, 1.228417,-0.000000;;, - 207;3; 0.000000, 1.228417,-0.000000;;, - 208;3; 0.000000, 1.228417,-0.000000;;, - 209;3; 0.000000, 1.228417,-0.000000;;, - 210;3; 0.000000, 1.228417,-0.000000;;, - 211;3; 0.000000, 1.228417,-0.000000;;, - 212;3;-0.000000, 1.228417, 0.000000;;, - 213;3; 0.000000, 1.228417, 0.000000;;, - 214;3;-0.000000, 1.228416,-0.000000;;, - 215;3;-0.000000, 1.228416, 0.000000;;, - 216;3; 0.000000, 1.228417, 0.000000;;, - 217;3;-0.000000, 1.228416, 0.000000;;, - 218;3; 0.000000, 1.228416, 0.000000;;, - 219;3; 0.000000, 1.228416, 0.000000;;, - 220;3; 0.000000, 1.228417,-0.000000;;, - 221;3;-0.000000, 1.228416,-0.000000;;, - 222;3;-0.000000, 1.228417,-0.000000;;, - 223;3; 0.000000, 1.228416, 0.000000;;, - 224;3;-0.000000, 1.228416,-0.000000;;, - 225;3;-0.000000, 1.228417,-0.000000;;, - 226;3;-0.000001, 1.228416, 0.000000;;, - 227;3;-0.000000, 1.228417,-0.000000;;, - 228;3; 0.000000, 1.228416, 0.000000;;, - 229;3; 0.000000, 1.228416,-0.000000;;, - 230;3; 0.000000, 1.228417,-0.000000;;, - 231;3;-0.000000, 1.228416, 0.000000;;, - 232;3; 0.000000, 1.228416, 0.000000;;, - 233;3;-0.000000, 1.228416, 0.000000;;, - 234;3; 0.000000, 1.228416, 0.000000;;, - 235;3;-0.000000, 1.228416,-0.000000;;, - 236;3; 0.000000, 1.228416, 0.000000;;, - 237;3;-0.000000, 1.228416, 0.000000;;, - 238;3;-0.000000, 1.228416,-0.000000;;, - 239;3; 0.000000, 1.228417,-0.000000;;, - 240;3; 0.000000, 1.228417,-0.000000;;, - 241;3; 0.000000, 1.228417,-0.000000;;, - 242;3; 0.000000, 1.228417,-0.000000;;, - 243;3; 0.000000, 1.228417,-0.000000;;, - 244;3; 0.000000, 1.228417,-0.000000;;, - 245;3; 0.000000, 1.228417,-0.000000;;, - 246;3; 0.000000, 1.228417,-0.000000;;, - 247;3; 0.000000, 1.228417,-0.000000;;, - 248;3; 0.000000, 1.228417,-0.000000;;, - 249;3; 0.000000, 1.228417,-0.000000;;; - } - } - Animation { - {Armature_Bone_011} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 1;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 2;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 3;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 4;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 5;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 6;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 7;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 8;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 9;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 10;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 11;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 12;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 13;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 14;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 15;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 16;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 17;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 18;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 19;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 20;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 21;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 22;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 23;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 24;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 25;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 26;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 27;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 28;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 29;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 30;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 31;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 32;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 33;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 34;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 35;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 36;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 37;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 38;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 39;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 40;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 41;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 42;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 43;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 44;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 45;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 46;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 47;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 48;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 49;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 50;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 51;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 52;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 53;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 54;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 55;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 56;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 57;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 58;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 59;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 60;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 61;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 62;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 63;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 64;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 65;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 66;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 67;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 68;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 69;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 70;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 71;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 72;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 73;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 74;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 75;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 76;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 77;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 78;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 79;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 80;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 81;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 82;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 83;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 84;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 85;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 86;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 87;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 88;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 89;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 90;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 91;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 92;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 93;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 94;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 95;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 96;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 97;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 98;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 99;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 100;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 101;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 102;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 103;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 104;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 105;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 106;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 107;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 108;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 109;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 110;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 111;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 112;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 113;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 114;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 115;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 116;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 117;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 118;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 119;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 120;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 121;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 122;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 123;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 124;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 125;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 126;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 127;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 128;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 129;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 130;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 131;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 132;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 133;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 134;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 135;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 136;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 137;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 138;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 139;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 140;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 141;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 142;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 143;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 144;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 145;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 146;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 147;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 148;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 149;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 150;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 151;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 152;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 153;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 154;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 155;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 156;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 157;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 158;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 159;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 160;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 161;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 162;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 163;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 164;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 165;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 166;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 167;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 168;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 169;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 170;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 171;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 172;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 173;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 174;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 175;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 176;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 177;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 178;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 179;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 180;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 181;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 182;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 183;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 184;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 185;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 186;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 187;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 188;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 189;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 190;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 191;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 192;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 193;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 194;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 195;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 196;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 197;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 198;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 199;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 200;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 201;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 202;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 203;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 204;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 205;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 206;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 207;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 208;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 209;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 210;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 211;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 212;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 213;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 214;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 215;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 216;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 217;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 218;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 219;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 220;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 221;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 222;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 223;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 224;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 225;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 226;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 227;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 228;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 229;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 230;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 231;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 232;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 233;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 234;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 235;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 236;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 237;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 238;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 239;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 240;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 241;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 242;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 243;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 244;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 245;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 246;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 247;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 248;4;-0.755773,-0.000000, 0.000000, 0.654833;;, - 249;4;-0.755773,-0.000000, 0.000000, 0.654833;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3; 0.000000, 0.826434, 0.000000;;, - 1;3; 0.000000, 0.826434, 0.000000;;, - 2;3; 0.000000, 0.826434, 0.000000;;, - 3;3; 0.000000, 0.826434, 0.000000;;, - 4;3; 0.000000, 0.826434, 0.000000;;, - 5;3; 0.000000, 0.826434, 0.000000;;, - 6;3; 0.000000, 0.826434, 0.000000;;, - 7;3; 0.000000, 0.826434, 0.000000;;, - 8;3; 0.000000, 0.826434, 0.000000;;, - 9;3; 0.000000, 0.826434, 0.000000;;, - 10;3; 0.000000, 0.826434, 0.000000;;, - 11;3; 0.000000, 0.826434, 0.000000;;, - 12;3; 0.000000, 0.826434, 0.000000;;, - 13;3; 0.000000, 0.826434, 0.000000;;, - 14;3; 0.000000, 0.826434, 0.000000;;, - 15;3; 0.000000, 0.826434, 0.000000;;, - 16;3; 0.000000, 0.826434, 0.000000;;, - 17;3; 0.000000, 0.826434, 0.000000;;, - 18;3; 0.000000, 0.826434, 0.000000;;, - 19;3; 0.000000, 0.826434, 0.000000;;, - 20;3; 0.000000, 0.826434, 0.000000;;, - 21;3; 0.000000, 0.826434, 0.000000;;, - 22;3; 0.000000, 0.826434, 0.000000;;, - 23;3; 0.000000, 0.826434, 0.000000;;, - 24;3; 0.000000, 0.826434, 0.000000;;, - 25;3; 0.000000, 0.826434, 0.000000;;, - 26;3; 0.000000, 0.826434, 0.000000;;, - 27;3; 0.000000, 0.826434, 0.000000;;, - 28;3; 0.000000, 0.826434, 0.000000;;, - 29;3; 0.000000, 0.826434, 0.000000;;, - 30;3; 0.000000, 0.826434, 0.000000;;, - 31;3; 0.000000, 0.826434, 0.000000;;, - 32;3; 0.000000, 0.826434, 0.000000;;, - 33;3; 0.000000, 0.826434, 0.000000;;, - 34;3; 0.000000, 0.826434, 0.000000;;, - 35;3; 0.000000, 0.826434, 0.000000;;, - 36;3; 0.000000, 0.826434, 0.000000;;, - 37;3; 0.000000, 0.826434, 0.000000;;, - 38;3; 0.000000, 0.826434, 0.000000;;, - 39;3; 0.000000, 0.826434, 0.000000;;, - 40;3; 0.000000, 0.826434, 0.000000;;, - 41;3; 0.000000, 0.826434, 0.000000;;, - 42;3; 0.000000, 0.826434, 0.000000;;, - 43;3; 0.000000, 0.826434, 0.000000;;, - 44;3; 0.000000, 0.826434, 0.000000;;, - 45;3; 0.000000, 0.826434, 0.000000;;, - 46;3; 0.000000, 0.826434, 0.000000;;, - 47;3; 0.000000, 0.826434, 0.000000;;, - 48;3; 0.000000, 0.826434, 0.000000;;, - 49;3; 0.000000, 0.826434, 0.000000;;, - 50;3; 0.000000, 0.826434, 0.000000;;, - 51;3; 0.000000, 0.826434, 0.000000;;, - 52;3; 0.000000, 0.826434, 0.000000;;, - 53;3; 0.000000, 0.826434, 0.000000;;, - 54;3; 0.000000, 0.826434, 0.000000;;, - 55;3; 0.000000, 0.826434, 0.000000;;, - 56;3; 0.000000, 0.826434, 0.000000;;, - 57;3; 0.000000, 0.826434, 0.000000;;, - 58;3; 0.000000, 0.826434, 0.000000;;, - 59;3; 0.000000, 0.826434, 0.000000;;, - 60;3; 0.000000, 0.826434, 0.000000;;, - 61;3; 0.000000, 0.826434, 0.000000;;, - 62;3; 0.000000, 0.826434, 0.000000;;, - 63;3; 0.000000, 0.826434, 0.000000;;, - 64;3; 0.000000, 0.826434, 0.000000;;, - 65;3; 0.000000, 0.826434, 0.000000;;, - 66;3; 0.000000, 0.826434, 0.000000;;, - 67;3; 0.000000, 0.826434, 0.000000;;, - 68;3; 0.000000, 0.826434, 0.000000;;, - 69;3; 0.000000, 0.826434, 0.000000;;, - 70;3; 0.000000, 0.826434, 0.000000;;, - 71;3; 0.000000, 0.826434, 0.000000;;, - 72;3; 0.000000, 0.826434, 0.000000;;, - 73;3; 0.000000, 0.826434, 0.000000;;, - 74;3; 0.000000, 0.826434, 0.000000;;, - 75;3; 0.000000, 0.826434, 0.000000;;, - 76;3; 0.000000, 0.826434, 0.000000;;, - 77;3; 0.000000, 0.826434, 0.000000;;, - 78;3; 0.000000, 0.826434, 0.000000;;, - 79;3; 0.000000, 0.826434, 0.000000;;, - 80;3; 0.000000, 0.826434, 0.000000;;, - 81;3; 0.000000, 0.826434, 0.000000;;, - 82;3; 0.000000, 0.826434, 0.000000;;, - 83;3; 0.000000, 0.826434, 0.000000;;, - 84;3; 0.000000, 0.826434, 0.000000;;, - 85;3; 0.000000, 0.826434, 0.000000;;, - 86;3; 0.000000, 0.826434, 0.000000;;, - 87;3; 0.000000, 0.826434, 0.000000;;, - 88;3; 0.000000, 0.826434, 0.000000;;, - 89;3; 0.000000, 0.826434, 0.000000;;, - 90;3; 0.000000, 0.826434, 0.000000;;, - 91;3; 0.000000, 0.826434, 0.000000;;, - 92;3; 0.000000, 0.826434, 0.000000;;, - 93;3; 0.000000, 0.826434, 0.000000;;, - 94;3; 0.000000, 0.826434, 0.000000;;, - 95;3; 0.000000, 0.826434, 0.000000;;, - 96;3; 0.000000, 0.826434, 0.000000;;, - 97;3; 0.000000, 0.826434, 0.000000;;, - 98;3; 0.000000, 0.826434, 0.000000;;, - 99;3; 0.000000, 0.826434, 0.000000;;, - 100;3; 0.000000, 0.826434, 0.000000;;, - 101;3; 0.000000, 0.826434, 0.000000;;, - 102;3; 0.000000, 0.826434, 0.000000;;, - 103;3; 0.000000, 0.826434, 0.000000;;, - 104;3; 0.000000, 0.826434, 0.000000;;, - 105;3; 0.000000, 0.826434, 0.000000;;, - 106;3; 0.000000, 0.826434, 0.000000;;, - 107;3; 0.000000, 0.826434, 0.000000;;, - 108;3; 0.000000, 0.826434, 0.000000;;, - 109;3; 0.000000, 0.826434, 0.000000;;, - 110;3; 0.000000, 0.826434, 0.000000;;, - 111;3; 0.000000, 0.826434, 0.000000;;, - 112;3; 0.000000, 0.826434, 0.000000;;, - 113;3; 0.000000, 0.826434, 0.000000;;, - 114;3; 0.000000, 0.826434, 0.000000;;, - 115;3; 0.000000, 0.826434, 0.000000;;, - 116;3; 0.000000, 0.826434, 0.000000;;, - 117;3; 0.000000, 0.826434, 0.000000;;, - 118;3; 0.000000, 0.826434, 0.000000;;, - 119;3; 0.000000, 0.826434, 0.000000;;, - 120;3; 0.000000, 0.826434, 0.000000;;, - 121;3; 0.000000, 0.826434, 0.000000;;, - 122;3; 0.000000, 0.826434, 0.000000;;, - 123;3; 0.000000, 0.826434, 0.000000;;, - 124;3; 0.000000, 0.826434, 0.000000;;, - 125;3; 0.000000, 0.826434, 0.000000;;, - 126;3; 0.000000, 0.826434, 0.000000;;, - 127;3; 0.000000, 0.826434, 0.000000;;, - 128;3; 0.000000, 0.826434, 0.000000;;, - 129;3; 0.000000, 0.826434, 0.000000;;, - 130;3; 0.000000, 0.826434, 0.000000;;, - 131;3; 0.000000, 0.826434, 0.000000;;, - 132;3; 0.000000, 0.826434, 0.000000;;, - 133;3; 0.000000, 0.826434, 0.000000;;, - 134;3; 0.000000, 0.826434, 0.000000;;, - 135;3; 0.000000, 0.826434, 0.000000;;, - 136;3; 0.000000, 0.826434, 0.000000;;, - 137;3; 0.000000, 0.826434, 0.000000;;, - 138;3; 0.000000, 0.826434, 0.000000;;, - 139;3; 0.000000, 0.826434, 0.000000;;, - 140;3; 0.000000, 0.826434, 0.000000;;, - 141;3; 0.000000, 0.826434, 0.000000;;, - 142;3; 0.000000, 0.826434, 0.000000;;, - 143;3; 0.000000, 0.826434, 0.000000;;, - 144;3; 0.000000, 0.826434, 0.000000;;, - 145;3; 0.000000, 0.826434, 0.000000;;, - 146;3; 0.000000, 0.826434, 0.000000;;, - 147;3; 0.000000, 0.826434, 0.000000;;, - 148;3; 0.000000, 0.826434, 0.000000;;, - 149;3; 0.000000, 0.826434, 0.000000;;, - 150;3; 0.000000, 0.826434, 0.000000;;, - 151;3; 0.000000, 0.826434, 0.000000;;, - 152;3; 0.000000, 0.826434, 0.000000;;, - 153;3; 0.000000, 0.826434, 0.000000;;, - 154;3; 0.000000, 0.826434, 0.000000;;, - 155;3; 0.000000, 0.826434, 0.000000;;, - 156;3; 0.000000, 0.826434, 0.000000;;, - 157;3; 0.000000, 0.826434, 0.000000;;, - 158;3; 0.000000, 0.826434, 0.000000;;, - 159;3; 0.000000, 0.826434, 0.000000;;, - 160;3; 0.000000, 0.826434, 0.000000;;, - 161;3; 0.000000, 0.826434, 0.000000;;, - 162;3; 0.000000, 0.826434, 0.000000;;, - 163;3; 0.000000, 0.826434, 0.000000;;, - 164;3; 0.000000, 0.826434, 0.000000;;, - 165;3; 0.000000, 0.826434, 0.000000;;, - 166;3; 0.000000, 0.826434, 0.000000;;, - 167;3; 0.000000, 0.826434, 0.000000;;, - 168;3; 0.000000, 0.826434, 0.000000;;, - 169;3; 0.000000, 0.826434, 0.000000;;, - 170;3; 0.000000, 0.826434, 0.000000;;, - 171;3; 0.000000, 0.826434, 0.000000;;, - 172;3; 0.000000, 0.826434, 0.000000;;, - 173;3; 0.000000, 0.826434, 0.000000;;, - 174;3; 0.000000, 0.826434, 0.000000;;, - 175;3; 0.000000, 0.826434, 0.000000;;, - 176;3; 0.000000, 0.826434, 0.000000;;, - 177;3; 0.000000, 0.826434, 0.000000;;, - 178;3; 0.000000, 0.826434, 0.000000;;, - 179;3; 0.000000, 0.826434, 0.000000;;, - 180;3; 0.000000, 0.826434, 0.000000;;, - 181;3; 0.000000, 0.826434, 0.000000;;, - 182;3; 0.000000, 0.826434, 0.000000;;, - 183;3; 0.000000, 0.826434, 0.000000;;, - 184;3; 0.000000, 0.826434, 0.000000;;, - 185;3; 0.000000, 0.826434, 0.000000;;, - 186;3;-0.000000, 0.826434,-0.000000;;, - 187;3;-0.000000, 0.826434,-0.000000;;, - 188;3;-0.000000, 0.826434, 0.000000;;, - 189;3;-0.000000, 0.826434, 0.000000;;, - 190;3;-0.000000, 0.826434,-0.000000;;, - 191;3; 0.000000, 0.826434, 0.000000;;, - 192;3; 0.000000, 0.826434, 0.000000;;, - 193;3; 0.000000, 0.826434, 0.000000;;, - 194;3; 0.000000, 0.826434,-0.000000;;, - 195;3; 0.000000, 0.826434,-0.000000;;, - 196;3; 0.000000, 0.826434, 0.000000;;, - 197;3; 0.000000, 0.826434,-0.000000;;, - 198;3; 0.000000, 0.826434,-0.000000;;, - 199;3; 0.000000, 0.826434, 0.000000;;, - 200;3; 0.000000, 0.826434, 0.000000;;, - 201;3; 0.000000, 0.826434, 0.000000;;, - 202;3; 0.000000, 0.826434, 0.000000;;, - 203;3; 0.000000, 0.826434, 0.000000;;, - 204;3; 0.000000, 0.826434, 0.000000;;, - 205;3; 0.000000, 0.826434, 0.000000;;, - 206;3; 0.000000, 0.826434, 0.000000;;, - 207;3; 0.000000, 0.826434, 0.000000;;, - 208;3; 0.000000, 0.826434, 0.000000;;, - 209;3; 0.000000, 0.826434, 0.000000;;, - 210;3;-0.000000, 0.826434, 0.000000;;, - 211;3;-0.000000, 0.826434, 0.000000;;, - 212;3; 0.000000, 0.826434,-0.000000;;, - 213;3; 0.000000, 0.826434, 0.000000;;, - 214;3; 0.000000, 0.826434, 0.000000;;, - 215;3;-0.000000, 0.826434,-0.000000;;, - 216;3;-0.000000, 0.826434,-0.000000;;, - 217;3;-0.000000, 0.826434,-0.000000;;, - 218;3;-0.000000, 0.826434, 0.000000;;, - 219;3;-0.000000, 0.826434,-0.000000;;, - 220;3;-0.000000, 0.826434, 0.000000;;, - 221;3; 0.000000, 0.826434, 0.000000;;, - 222;3;-0.000000, 0.826434, 0.000000;;, - 223;3; 0.000000, 0.826434,-0.000000;;, - 224;3; 0.000000, 0.826434,-0.000000;;, - 225;3; 0.000000, 0.826434, 0.000000;;, - 226;3; 0.000000, 0.826434, 0.000000;;, - 227;3; 0.000000, 0.826434, 0.000000;;, - 228;3;-0.000000, 0.826434, 0.000000;;, - 229;3; 0.000000, 0.826434, 0.000000;;, - 230;3; 0.000000, 0.826434, 0.000000;;, - 231;3; 0.000000, 0.826434,-0.000000;;, - 232;3;-0.000000, 0.826434,-0.000000;;, - 233;3; 0.000000, 0.826434, 0.000000;;, - 234;3; 0.000000, 0.826434, 0.000000;;, - 235;3; 0.000000, 0.826434, 0.000000;;, - 236;3; 0.000000, 0.826434, 0.000000;;, - 237;3; 0.000000, 0.826434, 0.000000;;, - 238;3; 0.000000, 0.826434, 0.000000;;, - 239;3; 0.000000, 0.826434, 0.000000;;, - 240;3; 0.000000, 0.826434, 0.000000;;, - 241;3; 0.000000, 0.826434, 0.000000;;, - 242;3; 0.000000, 0.826434, 0.000000;;, - 243;3; 0.000000, 0.826434, 0.000000;;, - 244;3; 0.000000, 0.826434, 0.000000;;, - 245;3; 0.000000, 0.826434, 0.000000;;, - 246;3; 0.000000, 0.826434, 0.000000;;, - 247;3; 0.000000, 0.826434, 0.000000;;, - 248;3; 0.000000, 0.826434, 0.000000;;, - 249;3; 0.000000, 0.826434, 0.000000;;; - } - } - Animation { - {Armature_Bone_031} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 1;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 2;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 3;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 4;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 5;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 6;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 7;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 8;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 9;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 10;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 11;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 12;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 13;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 14;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 15;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 16;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 17;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 18;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 19;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 20;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 21;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 22;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 23;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 24;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 25;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 26;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 27;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 28;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 29;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 30;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 31;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 32;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 33;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 34;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 35;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 36;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 37;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 38;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 39;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 40;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 41;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 42;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 43;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 44;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 45;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 46;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 47;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 48;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 49;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 50;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 51;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 52;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 53;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 54;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 55;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 56;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 57;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 58;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 59;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 60;4;-0.968689, 0.113446,-0.025742,-0.219325;;, - 61;4;-0.968710, 0.113171,-0.025846,-0.219310;;, - 62;4;-0.968747, 0.112711,-0.026021,-0.219286;;, - 63;4;-0.968798, 0.112066,-0.026266,-0.219251;;, - 64;4;-0.968865, 0.111234,-0.026582,-0.219207;;, - 65;4;-0.968946, 0.110217,-0.026969,-0.219153;;, - 66;4;-0.969041, 0.109018,-0.027425,-0.219090;;, - 67;4;-0.969151, 0.107638,-0.027949,-0.219017;;, - 68;4;-0.969275, 0.106084,-0.028540,-0.218934;;, - 69;4;-0.969412, 0.104361,-0.029195,-0.218843;;, - 70;4;-0.969562, 0.102476,-0.029911,-0.218743;;, - 71;4;-0.969724, 0.100440,-0.030685,-0.218635;;, - 72;4;-0.969897, 0.098263,-0.031512,-0.218519;;, - 73;4;-0.970081, 0.095959,-0.032388,-0.218397;;, - 74;4;-0.970273, 0.093541,-0.033307,-0.218268;;, - 75;4;-0.970474, 0.091025,-0.034263,-0.218135;;, - 76;4;-0.970680, 0.088430,-0.035250,-0.217997;;, - 77;4;-0.970892, 0.085774,-0.036259,-0.217856;;, - 78;4;-0.971107, 0.083077,-0.037284,-0.217713;;, - 79;4;-0.971323, 0.080360,-0.038317,-0.217569;;, - 80;4;-0.971539, 0.077642,-0.039350,-0.217425;;, - 81;4;-0.971754, 0.074945,-0.040376,-0.217282;;, - 82;4;-0.971966, 0.072289,-0.041385,-0.217141;;, - 83;4;-0.972172, 0.069694,-0.042371,-0.217003;;, - 84;4;-0.972373, 0.067179,-0.043327,-0.216870;;, - 85;4;-0.972565, 0.064761,-0.044246,-0.216741;;, - 86;4;-0.972748, 0.062456,-0.045122,-0.216619;;, - 87;4;-0.972922, 0.060279,-0.045950,-0.216504;;, - 88;4;-0.973084, 0.058243,-0.046724,-0.216396;;, - 89;4;-0.973234, 0.056358,-0.047440,-0.216296;;, - 90;4;-0.973371, 0.054635,-0.048095,-0.216204;;, - 91;4;-0.973495, 0.053081,-0.048686,-0.216122;;, - 92;4;-0.973605, 0.051701,-0.049210,-0.216049;;, - 93;4;-0.973700, 0.050502,-0.049666,-0.215985;;, - 94;4;-0.973781, 0.049485,-0.050053,-0.215931;;, - 95;4;-0.973848, 0.048654,-0.050369,-0.215887;;, - 96;4;-0.973899, 0.048008,-0.050614,-0.215853;;, - 97;4;-0.973936, 0.047548,-0.050789,-0.215828;;, - 98;4;-0.973957, 0.047274,-0.050893,-0.215814;;, - 99;4;-0.973965, 0.047183,-0.050928,-0.215809;;, - 100;4;-0.973713, 0.048686,-0.050347,-0.215860;;, - 101;4;-0.972929, 0.053356,-0.048543,-0.216018;;, - 102;4;-0.971599, 0.061289,-0.045479,-0.216286;;, - 103;4;-0.969755, 0.072283,-0.041231,-0.216658;;, - 104;4;-0.967498, 0.085743,-0.036032,-0.217114;;, - 105;4;-0.964987, 0.100717,-0.030247,-0.217621;;, - 106;4;-0.962407, 0.116102,-0.024304,-0.218141;;, - 107;4;-0.959925, 0.130904,-0.018586,-0.218642;;, - 108;4;-0.957659, 0.144416,-0.013367,-0.219100;;, - 109;4;-0.955677, 0.156235,-0.008801,-0.219500;;, - 110;4;-0.953850, 0.167357,-0.004285,-0.219889;;, - 111;4;-0.952025, 0.178878, 0.000792,-0.220314;;, - 112;4;-0.950203, 0.190704, 0.006297,-0.220768;;, - 113;4;-0.948381, 0.202668, 0.011995,-0.221234;;, - 114;4;-0.946559, 0.214535, 0.017557,-0.221692;;, - 115;4;-0.944735, 0.226044, 0.022617,-0.222117;;, - 116;4;-0.942906, 0.236970, 0.026859,-0.222488;;, - 117;4;-0.941072, 0.247173, 0.030086,-0.222792;;, - 118;4;-0.939233, 0.256605, 0.032231,-0.223026;;, - 119;4;-0.937389, 0.265288, 0.033326,-0.223190;;, - 120;4;-0.935346, 0.273755, 0.033008,-0.222765;;, - 121;4;-0.932935, 0.282392, 0.030802,-0.221215;;, - 122;4;-0.930228, 0.290970, 0.026717,-0.218609;;, - 123;4;-0.927360, 0.299167, 0.020963,-0.215153;;, - 124;4;-0.924527, 0.306602, 0.013995,-0.211207;;, - 125;4;-0.921951, 0.312914, 0.006471,-0.207243;;, - 126;4;-0.919827, 0.317856,-0.000898,-0.203733;;, - 127;4;-0.918283, 0.321342,-0.007510,-0.201044;;, - 128;4;-0.917369, 0.323425,-0.012968,-0.199388;;, - 129;4;-0.917073, 0.324245,-0.017079,-0.198837;;, - 130;4;-0.918327, 0.318313,-0.020774,-0.199111;;, - 131;4;-0.922102, 0.299967,-0.024984,-0.199953;;, - 132;4;-0.928243, 0.269978,-0.029587,-0.201361;;, - 133;4;-0.936279, 0.230663,-0.034362,-0.203270;;, - 134;4;-0.945392, 0.186071,-0.039003,-0.205545;;, - 135;4;-0.954516, 0.141446,-0.043170,-0.207989;;, - 136;4;-0.962588, 0.102033,-0.046570,-0.210387;;, - 137;4;-0.968783, 0.071889,-0.049021,-0.212559;;, - 138;4;-0.972629, 0.053345,-0.050464,-0.214386;;, - 139;4;-0.973965, 0.047183,-0.050928,-0.215809;;, - 140;4;-0.972992, 0.053356,-0.048543,-0.216888;;, - 141;4;-0.969829, 0.072283,-0.041231,-0.217689;;, - 142;4;-0.965034, 0.100717,-0.030247,-0.218283;;, - 143;4;-0.959939, 0.130904,-0.018586,-0.218838;;, - 144;4;-0.955677, 0.156235,-0.008801,-0.219500;;, - 145;4;-0.952025, 0.178878, 0.000792,-0.220314;;, - 146;4;-0.948381, 0.202668, 0.011995,-0.221234;;, - 147;4;-0.944735, 0.226044, 0.022617,-0.222117;;, - 148;4;-0.941072, 0.247173, 0.030086,-0.222792;;, - 149;4;-0.937389, 0.265288, 0.033326,-0.223190;;, - 150;4;-0.932935, 0.282392, 0.030802,-0.221215;;, - 151;4;-0.927360, 0.299167, 0.020963,-0.215153;;, - 152;4;-0.921951, 0.312914, 0.006471,-0.207243;;, - 153;4;-0.918283, 0.321342,-0.007510,-0.201044;;, - 154;4;-0.917073, 0.324245,-0.017079,-0.198837;;, - 155;4;-0.922126, 0.299967,-0.024984,-0.200281;;, - 156;4;-0.936359, 0.230663,-0.034362,-0.204376;;, - 157;4;-0.954639, 0.141446,-0.043170,-0.209711;;, - 158;4;-0.968887, 0.071889,-0.049021,-0.214013;;, - 159;4;-0.973965, 0.047183,-0.050928,-0.215809;;, - 160;4;-0.973992, 0.047556,-0.050899,-0.216199;;, - 161;4;-0.974015, 0.048685,-0.050806,-0.216569;;, - 162;4;-0.974030, 0.050571,-0.050634,-0.216915;;, - 163;4;-0.974033, 0.053201,-0.050370,-0.217238;;, - 164;4;-0.974017, 0.056541,-0.049997,-0.217533;;, - 165;4;-0.973979, 0.060533,-0.049499,-0.217802;;, - 166;4;-0.973912, 0.065091,-0.048859,-0.218042;;, - 167;4;-0.973808, 0.070101,-0.048063,-0.218253;;, - 168;4;-0.973664, 0.075426,-0.047098,-0.218437;;, - 169;4;-0.973472, 0.080906,-0.045955,-0.218594;;, - 170;4;-0.973229, 0.086373,-0.044631,-0.218726;;, - 171;4;-0.972932, 0.091659,-0.043124,-0.218837;;, - 172;4;-0.972579, 0.096606,-0.041440,-0.218930;;, - 173;4;-0.972170, 0.101077,-0.039588,-0.219007;;, - 174;4;-0.971707, 0.104961,-0.037580,-0.219073;;, - 175;4;-0.971192, 0.108174,-0.035430,-0.219130;;, - 176;4;-0.970628, 0.110660,-0.033153,-0.219182;;, - 177;4;-0.970019, 0.112387,-0.030764,-0.219232;;, - 178;4;-0.969369, 0.113345,-0.028278,-0.219280;;, - 179;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 180;4;-0.964552, 0.104241,-0.012007,-0.211874;;, - 181;4;-0.953551, 0.076644, 0.023948,-0.189333;;, - 182;4;-0.936127, 0.031895, 0.080694,-0.152650;;, - 183;4;-0.913594,-0.026567, 0.153964,-0.104652;;, - 184;4;-0.888228,-0.092752, 0.236381,-0.050266;;, - 185;4;-0.862959,-0.158912, 0.318435, 0.004126;;, - 186;4;-0.840710,-0.217298, 0.390655, 0.052145;;, - 187;4;-0.823731,-0.261930, 0.445758, 0.088860;;, - 188;4;-0.813301,-0.289376, 0.479598, 0.111441;;, - 189;4;-0.809839,-0.298495, 0.490830, 0.118945;;, - 190;4;-0.824998,-0.291801, 0.463471, 0.113940;;, - 191;4;-0.867871,-0.270041, 0.382764, 0.097389;;, - 192;4;-0.923392,-0.234296, 0.269351, 0.069548;;, - 193;4;-0.967550,-0.191264, 0.161977, 0.035039;;, - 194;4;-0.984895,-0.148379, 0.089247,-0.000521;;, - 195;4;-0.985239,-0.095557, 0.041995,-0.044910;;, - 196;4;-0.981508,-0.024533, 0.006385,-0.104293;;, - 197;4;-0.975540, 0.047153,-0.014883,-0.164070;;, - 198;4;-0.970524, 0.096906,-0.023826,-0.205494;;, - 199;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 200;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 201;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 202;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 203;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 204;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 205;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 206;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 207;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 208;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 209;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 210;4;-0.968760, 0.102570,-0.006639,-0.187605;;, - 211;4;-0.968980, 0.068720, 0.046858,-0.098246;;, - 212;4;-0.969263, 0.017305, 0.114978, 0.016490;;, - 213;4;-0.969484,-0.038215, 0.166924, 0.105849;;, - 214;4;-0.969562,-0.086050, 0.183354, 0.137574;;, - 215;4;-0.966365,-0.134782, 0.146925, 0.114845;;, - 216;4;-0.957361,-0.192828, 0.049986, 0.050825;;, - 217;4;-0.945799,-0.247487,-0.073062,-0.031376;;, - 218;4;-0.936794,-0.283863,-0.168450,-0.095396;;, - 219;4;-0.933597,-0.295726,-0.202241,-0.118125;;, - 220;4;-0.935776,-0.290184,-0.180994,-0.089195;;, - 221;4;-0.941912,-0.273026,-0.121039,-0.007709;;, - 222;4;-0.949791,-0.246845,-0.043761, 0.096918;;, - 223;4;-0.955928,-0.218375, 0.017004, 0.178404;;, - 224;4;-0.958106,-0.193584, 0.039627, 0.207334;;, - 225;4;-0.958210,-0.170647, 0.040411, 0.203145;;, - 226;4;-0.958524,-0.145758, 0.039601, 0.190481;;, - 227;4;-0.959046,-0.119149, 0.037193, 0.169408;;, - 228;4;-0.959766,-0.091193, 0.033250, 0.140367;;, - 229;4;-0.960661,-0.062431, 0.027922, 0.104272;;, - 230;4;-0.961694,-0.033564, 0.021457, 0.062583;;, - 231;4;-0.962817,-0.005421, 0.014200, 0.017280;;, - 232;4;-0.963971, 0.021113, 0.006571,-0.029276;;, - 233;4;-0.965094, 0.045203,-0.000975,-0.074579;;, - 234;4;-0.966127, 0.066148,-0.008008,-0.116268;;, - 235;4;-0.967022, 0.083455,-0.014156,-0.152362;;, - 236;4;-0.967741, 0.096848,-0.019140,-0.181404;;, - 237;4;-0.968264, 0.106255,-0.022779,-0.202476;;, - 238;4;-0.968578, 0.111756,-0.024977,-0.215140;;, - 239;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 240;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 241;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 242;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 243;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 244;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 245;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 246;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 247;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 248;4;-0.968681, 0.113537,-0.025707,-0.219330;;, - 249;4;-0.968681, 0.113537,-0.025707,-0.219330;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3; 0.000000, 0.586459, 0.000000;;, - 1;3; 0.000000, 0.586459, 0.000000;;, - 2;3; 0.000000, 0.586459, 0.000000;;, - 3;3; 0.000000, 0.586459, 0.000000;;, - 4;3; 0.000000, 0.586459, 0.000000;;, - 5;3; 0.000000, 0.586459, 0.000000;;, - 6;3; 0.000000, 0.586459, 0.000000;;, - 7;3; 0.000000, 0.586459, 0.000000;;, - 8;3; 0.000000, 0.586459, 0.000000;;, - 9;3; 0.000000, 0.586459, 0.000000;;, - 10;3; 0.000000, 0.586459, 0.000000;;, - 11;3; 0.000000, 0.586459, 0.000000;;, - 12;3; 0.000000, 0.586459, 0.000000;;, - 13;3; 0.000000, 0.586459, 0.000000;;, - 14;3; 0.000000, 0.586459, 0.000000;;, - 15;3; 0.000000, 0.586459, 0.000000;;, - 16;3; 0.000000, 0.586459, 0.000000;;, - 17;3; 0.000000, 0.586459, 0.000000;;, - 18;3; 0.000000, 0.586459, 0.000000;;, - 19;3; 0.000000, 0.586459, 0.000000;;, - 20;3; 0.000000, 0.586459, 0.000000;;, - 21;3; 0.000000, 0.586459, 0.000000;;, - 22;3; 0.000000, 0.586459, 0.000000;;, - 23;3; 0.000000, 0.586459, 0.000000;;, - 24;3; 0.000000, 0.586459, 0.000000;;, - 25;3; 0.000000, 0.586459, 0.000000;;, - 26;3; 0.000000, 0.586459, 0.000000;;, - 27;3; 0.000000, 0.586459, 0.000000;;, - 28;3; 0.000000, 0.586459, 0.000000;;, - 29;3; 0.000000, 0.586459, 0.000000;;, - 30;3; 0.000000, 0.586459, 0.000000;;, - 31;3; 0.000000, 0.586459, 0.000000;;, - 32;3; 0.000000, 0.586459, 0.000000;;, - 33;3; 0.000000, 0.586459, 0.000000;;, - 34;3; 0.000000, 0.586459, 0.000000;;, - 35;3; 0.000000, 0.586459, 0.000000;;, - 36;3; 0.000000, 0.586459, 0.000000;;, - 37;3; 0.000000, 0.586459, 0.000000;;, - 38;3; 0.000000, 0.586459, 0.000000;;, - 39;3; 0.000000, 0.586459, 0.000000;;, - 40;3; 0.000000, 0.586459, 0.000000;;, - 41;3; 0.000000, 0.586459, 0.000000;;, - 42;3; 0.000000, 0.586459, 0.000000;;, - 43;3; 0.000000, 0.586459, 0.000000;;, - 44;3; 0.000000, 0.586459, 0.000000;;, - 45;3; 0.000000, 0.586459, 0.000000;;, - 46;3; 0.000000, 0.586459, 0.000000;;, - 47;3; 0.000000, 0.586459, 0.000000;;, - 48;3; 0.000000, 0.586459, 0.000000;;, - 49;3; 0.000000, 0.586459, 0.000000;;, - 50;3; 0.000000, 0.586459, 0.000000;;, - 51;3; 0.000000, 0.586459, 0.000000;;, - 52;3; 0.000000, 0.586459, 0.000000;;, - 53;3; 0.000000, 0.586459, 0.000000;;, - 54;3; 0.000000, 0.586459, 0.000000;;, - 55;3; 0.000000, 0.586459, 0.000000;;, - 56;3; 0.000000, 0.586459, 0.000000;;, - 57;3; 0.000000, 0.586459, 0.000000;;, - 58;3; 0.000000, 0.586459, 0.000000;;, - 59;3; 0.000000, 0.586459, 0.000000;;, - 60;3; 0.000000, 0.586459, 0.000000;;, - 61;3; 0.000000, 0.586459, 0.000000;;, - 62;3; 0.000000, 0.586459, 0.000000;;, - 63;3; 0.000000, 0.586459, 0.000000;;, - 64;3; 0.000000, 0.586459, 0.000000;;, - 65;3; 0.000000, 0.586459, 0.000000;;, - 66;3; 0.000000, 0.586459, 0.000000;;, - 67;3; 0.000000, 0.586459, 0.000000;;, - 68;3; 0.000000, 0.586459, 0.000000;;, - 69;3; 0.000000, 0.586459, 0.000000;;, - 70;3; 0.000000, 0.586459, 0.000000;;, - 71;3; 0.000000, 0.586459, 0.000000;;, - 72;3; 0.000000, 0.586459, 0.000000;;, - 73;3; 0.000000, 0.586459, 0.000000;;, - 74;3; 0.000000, 0.586459, 0.000000;;, - 75;3; 0.000000, 0.586459, 0.000000;;, - 76;3; 0.000000, 0.586459, 0.000000;;, - 77;3; 0.000000, 0.586459, 0.000000;;, - 78;3; 0.000000, 0.586459, 0.000000;;, - 79;3; 0.000000, 0.586459, 0.000000;;, - 80;3; 0.000000, 0.586459, 0.000000;;, - 81;3; 0.000000, 0.586459, 0.000000;;, - 82;3; 0.000000, 0.586459, 0.000000;;, - 83;3; 0.000000, 0.586459, 0.000000;;, - 84;3; 0.000000, 0.586459, 0.000000;;, - 85;3; 0.000000, 0.586459, 0.000000;;, - 86;3; 0.000000, 0.586459, 0.000000;;, - 87;3; 0.000000, 0.586459, 0.000000;;, - 88;3; 0.000000, 0.586459, 0.000000;;, - 89;3; 0.000000, 0.586459, 0.000000;;, - 90;3; 0.000000, 0.586459, 0.000000;;, - 91;3; 0.000000, 0.586459, 0.000000;;, - 92;3; 0.000000, 0.586459, 0.000000;;, - 93;3; 0.000000, 0.586459, 0.000000;;, - 94;3; 0.000000, 0.586459, 0.000000;;, - 95;3; 0.000000, 0.586459, 0.000000;;, - 96;3; 0.000000, 0.586459, 0.000000;;, - 97;3; 0.000000, 0.586459, 0.000000;;, - 98;3; 0.000000, 0.586459, 0.000000;;, - 99;3; 0.000000, 0.586459, 0.000000;;, - 100;3; 0.000000, 0.586459, 0.000000;;, - 101;3; 0.000000, 0.586459, 0.000000;;, - 102;3; 0.000000, 0.586459, 0.000000;;, - 103;3; 0.000000, 0.586459, 0.000000;;, - 104;3; 0.000000, 0.586459, 0.000000;;, - 105;3; 0.000000, 0.586459, 0.000000;;, - 106;3; 0.000000, 0.586459, 0.000000;;, - 107;3; 0.000000, 0.586459, 0.000000;;, - 108;3; 0.000000, 0.586459, 0.000000;;, - 109;3; 0.000000, 0.586459, 0.000000;;, - 110;3; 0.000000, 0.586459, 0.000000;;, - 111;3; 0.000000, 0.586459, 0.000000;;, - 112;3; 0.000000, 0.586459, 0.000000;;, - 113;3; 0.000000, 0.586459, 0.000000;;, - 114;3; 0.000000, 0.586459, 0.000000;;, - 115;3; 0.000000, 0.586459, 0.000000;;, - 116;3; 0.000000, 0.586459, 0.000000;;, - 117;3; 0.000000, 0.586459, 0.000000;;, - 118;3; 0.000000, 0.586459, 0.000000;;, - 119;3; 0.000000, 0.586459, 0.000000;;, - 120;3; 0.000000, 0.586459, 0.000000;;, - 121;3; 0.000000, 0.586459, 0.000000;;, - 122;3; 0.000000, 0.586459, 0.000000;;, - 123;3; 0.000000, 0.586459, 0.000000;;, - 124;3; 0.000000, 0.586459, 0.000000;;, - 125;3; 0.000000, 0.586459, 0.000000;;, - 126;3; 0.000000, 0.586459, 0.000000;;, - 127;3; 0.000000, 0.586459, 0.000000;;, - 128;3; 0.000000, 0.586459, 0.000000;;, - 129;3; 0.000000, 0.586459, 0.000000;;, - 130;3; 0.000000, 0.586459, 0.000000;;, - 131;3; 0.000000, 0.586459, 0.000000;;, - 132;3; 0.000000, 0.586459, 0.000000;;, - 133;3; 0.000000, 0.586459, 0.000000;;, - 134;3; 0.000000, 0.586459, 0.000000;;, - 135;3; 0.000000, 0.586459, 0.000000;;, - 136;3; 0.000000, 0.586459, 0.000000;;, - 137;3; 0.000000, 0.586459, 0.000000;;, - 138;3; 0.000000, 0.586459, 0.000000;;, - 139;3; 0.000000, 0.586459, 0.000000;;, - 140;3; 0.000000, 0.586459, 0.000000;;, - 141;3; 0.000000, 0.586459, 0.000000;;, - 142;3; 0.000000, 0.586459, 0.000000;;, - 143;3; 0.000000, 0.586459, 0.000000;;, - 144;3; 0.000000, 0.586459, 0.000000;;, - 145;3; 0.000000, 0.586459, 0.000000;;, - 146;3; 0.000000, 0.586459, 0.000000;;, - 147;3; 0.000000, 0.586459, 0.000000;;, - 148;3; 0.000000, 0.586459, 0.000000;;, - 149;3; 0.000000, 0.586459, 0.000000;;, - 150;3; 0.000000, 0.586459, 0.000000;;, - 151;3; 0.000000, 0.586459, 0.000000;;, - 152;3; 0.000000, 0.586459, 0.000000;;, - 153;3; 0.000000, 0.586459, 0.000000;;, - 154;3; 0.000000, 0.586459, 0.000000;;, - 155;3; 0.000000, 0.586459, 0.000000;;, - 156;3; 0.000000, 0.586459, 0.000000;;, - 157;3; 0.000000, 0.586459, 0.000000;;, - 158;3; 0.000000, 0.586459, 0.000000;;, - 159;3; 0.000000, 0.586459, 0.000000;;, - 160;3; 0.000000, 0.586459, 0.000000;;, - 161;3; 0.000000, 0.586459, 0.000000;;, - 162;3; 0.000000, 0.586459, 0.000000;;, - 163;3; 0.000000, 0.586459, 0.000000;;, - 164;3; 0.000000, 0.586459, 0.000000;;, - 165;3; 0.000000, 0.586459, 0.000000;;, - 166;3; 0.000000, 0.586459, 0.000000;;, - 167;3; 0.000000, 0.586459, 0.000000;;, - 168;3; 0.000000, 0.586459, 0.000000;;, - 169;3; 0.000000, 0.586459, 0.000000;;, - 170;3; 0.000000, 0.586459, 0.000000;;, - 171;3; 0.000000, 0.586459, 0.000000;;, - 172;3; 0.000000, 0.586459, 0.000000;;, - 173;3; 0.000000, 0.586459, 0.000000;;, - 174;3; 0.000000, 0.586459, 0.000000;;, - 175;3; 0.000000, 0.586459, 0.000000;;, - 176;3; 0.000000, 0.586459, 0.000000;;, - 177;3; 0.000000, 0.586459, 0.000000;;, - 178;3; 0.000000, 0.586459, 0.000000;;, - 179;3; 0.000000, 0.586459, 0.000000;;, - 180;3;-0.000000, 0.586460, 0.000000;;, - 181;3; 0.000000, 0.586459, 0.000000;;, - 182;3; 0.000000, 0.586460, 0.000000;;, - 183;3;-0.000000, 0.586459,-0.000000;;, - 184;3;-0.000000, 0.586459, 0.000000;;, - 185;3; 0.000000, 0.586460,-0.000000;;, - 186;3;-0.000000, 0.586460,-0.000000;;, - 187;3;-0.000000, 0.586460, 0.000000;;, - 188;3; 0.000000, 0.586460, 0.000000;;, - 189;3;-0.000000, 0.586459, 0.000000;;, - 190;3; 0.000000, 0.586460, 0.000000;;, - 191;3; 0.000000, 0.586460,-0.000000;;, - 192;3;-0.000000, 0.586460,-0.000000;;, - 193;3; 0.000000, 0.586460,-0.000000;;, - 194;3; 0.000000, 0.586460,-0.000000;;, - 195;3;-0.000000, 0.586459,-0.000000;;, - 196;3;-0.000000, 0.586459,-0.000000;;, - 197;3; 0.000000, 0.586460, 0.000000;;, - 198;3;-0.000000, 0.586459, 0.000000;;, - 199;3; 0.000000, 0.586459, 0.000000;;, - 200;3; 0.000000, 0.586459, 0.000000;;, - 201;3; 0.000000, 0.586459, 0.000000;;, - 202;3; 0.000000, 0.586459, 0.000000;;, - 203;3; 0.000000, 0.586459, 0.000000;;, - 204;3; 0.000000, 0.586459, 0.000000;;, - 205;3; 0.000000, 0.586459, 0.000000;;, - 206;3; 0.000000, 0.586459, 0.000000;;, - 207;3; 0.000000, 0.586459, 0.000000;;, - 208;3; 0.000000, 0.586459, 0.000000;;, - 209;3; 0.000000, 0.586459, 0.000000;;, - 210;3; 0.000000, 0.586459,-0.000000;;, - 211;3; 0.000000, 0.586459,-0.000000;;, - 212;3; 0.000000, 0.586460, 0.000000;;, - 213;3; 0.000000, 0.586459, 0.000000;;, - 214;3;-0.000000, 0.586459,-0.000000;;, - 215;3; 0.000000, 0.586459,-0.000000;;, - 216;3; 0.000000, 0.586460,-0.000000;;, - 217;3; 0.000000, 0.586460, 0.000000;;, - 218;3; 0.000000, 0.586460, 0.000000;;, - 219;3; 0.000000, 0.586460, 0.000000;;, - 220;3; 0.000000, 0.586460, 0.000000;;, - 221;3; 0.000000, 0.586459,-0.000000;;, - 222;3; 0.000000, 0.586460,-0.000000;;, - 223;3;-0.000000, 0.586460,-0.000000;;, - 224;3;-0.000000, 0.586459, 0.000000;;, - 225;3;-0.000000, 0.586459,-0.000000;;, - 226;3; 0.000000, 0.586459,-0.000000;;, - 227;3; 0.000000, 0.586460,-0.000000;;, - 228;3; 0.000000, 0.586460,-0.000000;;, - 229;3; 0.000000, 0.586459,-0.000000;;, - 230;3; 0.000000, 0.586459,-0.000000;;, - 231;3;-0.000000, 0.586459,-0.000000;;, - 232;3;-0.000000, 0.586459,-0.000000;;, - 233;3; 0.000000, 0.586459,-0.000000;;, - 234;3;-0.000000, 0.586459, 0.000000;;, - 235;3;-0.000000, 0.586459,-0.000000;;, - 236;3;-0.000000, 0.586459,-0.000000;;, - 237;3; 0.000000, 0.586460,-0.000000;;, - 238;3; 0.000000, 0.586459,-0.000000;;, - 239;3; 0.000000, 0.586459, 0.000000;;, - 240;3; 0.000000, 0.586459, 0.000000;;, - 241;3; 0.000000, 0.586459, 0.000000;;, - 242;3; 0.000000, 0.586459, 0.000000;;, - 243;3; 0.000000, 0.586459, 0.000000;;, - 244;3; 0.000000, 0.586459, 0.000000;;, - 245;3; 0.000000, 0.586459, 0.000000;;, - 246;3; 0.000000, 0.586459, 0.000000;;, - 247;3; 0.000000, 0.586459, 0.000000;;, - 248;3; 0.000000, 0.586459, 0.000000;;, - 249;3; 0.000000, 0.586459, 0.000000;;; - } - } - Animation { - {Armature_Bone_035} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 1;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 2;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 3;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 4;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 5;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 6;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 7;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 8;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 9;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 10;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 11;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 12;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 13;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 14;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 15;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 16;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 17;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 18;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 19;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 20;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 21;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 22;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 23;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 24;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 25;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 26;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 27;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 28;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 29;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 30;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 31;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 32;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 33;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 34;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 35;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 36;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 37;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 38;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 39;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 40;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 41;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 42;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 43;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 44;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 45;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 46;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 47;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 48;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 49;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 50;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 51;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 52;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 53;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 54;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 55;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 56;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 57;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 58;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 59;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 60;4;-0.976348,-0.216142, 0.000107,-0.000002;;, - 61;4;-0.976413,-0.215661, 0.000429,-0.000007;;, - 62;4;-0.976521,-0.214857, 0.000968,-0.000015;;, - 63;4;-0.976672,-0.213728, 0.001725,-0.000026;;, - 64;4;-0.976868,-0.212273, 0.002701,-0.000041;;, - 65;4;-0.977107,-0.210494, 0.003893,-0.000060;;, - 66;4;-0.977388,-0.208396, 0.005300,-0.000081;;, - 67;4;-0.977712,-0.205983, 0.006918,-0.000106;;, - 68;4;-0.978078,-0.203264, 0.008741,-0.000134;;, - 69;4;-0.978482,-0.200249, 0.010763,-0.000165;;, - 70;4;-0.978925,-0.196952, 0.012973,-0.000199;;, - 71;4;-0.979404,-0.193390, 0.015361,-0.000235;;, - 72;4;-0.979915,-0.189581, 0.017915,-0.000275;;, - 73;4;-0.980457,-0.185549, 0.020618,-0.000316;;, - 74;4;-0.981025,-0.181319, 0.023454,-0.000359;;, - 75;4;-0.981616,-0.176919, 0.026404,-0.000405;;, - 76;4;-0.982225,-0.172379, 0.029448,-0.000451;;, - 77;4;-0.982849,-0.167733, 0.032563,-0.000499;;, - 78;4;-0.983483,-0.163015, 0.035727,-0.000548;;, - 79;4;-0.984121,-0.158260, 0.038915,-0.000596;;, - 80;4;-0.984760,-0.153505, 0.042102,-0.000645;;, - 81;4;-0.985394,-0.148787, 0.045266,-0.000694;;, - 82;4;-0.986017,-0.144141, 0.048381,-0.000742;;, - 83;4;-0.986627,-0.139601, 0.051425,-0.000788;;, - 84;4;-0.987218,-0.135201, 0.054375,-0.000833;;, - 85;4;-0.987786,-0.130971, 0.057211,-0.000877;;, - 86;4;-0.988328,-0.126939, 0.059915,-0.000918;;, - 87;4;-0.988839,-0.123130, 0.062468,-0.000957;;, - 88;4;-0.989318,-0.119568, 0.064856,-0.000994;;, - 89;4;-0.989760,-0.116271, 0.067067,-0.001028;;, - 90;4;-0.990165,-0.113257, 0.069088,-0.001059;;, - 91;4;-0.990530,-0.110537, 0.070911,-0.001087;;, - 92;4;-0.990854,-0.108124, 0.072529,-0.001112;;, - 93;4;-0.991136,-0.106026, 0.073936,-0.001133;;, - 94;4;-0.991375,-0.104247, 0.075128,-0.001151;;, - 95;4;-0.991570,-0.102792, 0.076104,-0.001166;;, - 96;4;-0.991722,-0.101663, 0.076861,-0.001178;;, - 97;4;-0.991830,-0.100859, 0.077400,-0.001186;;, - 98;4;-0.991895,-0.100378, 0.077722,-0.001191;;, - 99;4;-0.991916,-0.100219, 0.077829,-0.001193;;, - 100;4;-0.991227,-0.102470, 0.076264,-0.001169;;, - 101;4;-0.989087,-0.109462, 0.071403,-0.001094;;, - 102;4;-0.985451,-0.121340, 0.063145,-0.000968;;, - 103;4;-0.980412,-0.137801, 0.051700,-0.000792;;, - 104;4;-0.974244,-0.157954, 0.037689,-0.000578;;, - 105;4;-0.967381,-0.180374, 0.022101,-0.000339;;, - 106;4;-0.960330,-0.203409, 0.006087,-0.000093;;, - 107;4;-0.953546,-0.225572,-0.009322, 0.000143;;, - 108;4;-0.947354,-0.245802,-0.023387, 0.000358;;, - 109;4;-0.941937,-0.263499,-0.035691, 0.000547;;, - 110;4;-0.936521,-0.281196,-0.047994, 0.000736;;, - 111;4;-0.930328,-0.301426,-0.062059, 0.000951;;, - 112;4;-0.923544,-0.323589,-0.077468, 0.001187;;, - 113;4;-0.916494,-0.346624,-0.093483, 0.001433;;, - 114;4;-0.909631,-0.369044,-0.109071, 0.001672;;, - 115;4;-0.903462,-0.389197,-0.123082, 0.001886;;, - 116;4;-0.898424,-0.405658,-0.134527, 0.002062;;, - 117;4;-0.894788,-0.417536,-0.142785, 0.002188;;, - 118;4;-0.892648,-0.424528,-0.147646, 0.002263;;, - 119;4;-0.891959,-0.426779,-0.149211, 0.002287;;, - 120;4;-0.892648,-0.424528,-0.147646, 0.002263;;, - 121;4;-0.894788,-0.417536,-0.142785, 0.002188;;, - 122;4;-0.898424,-0.405658,-0.134527, 0.002062;;, - 123;4;-0.903462,-0.389197,-0.123082, 0.001886;;, - 124;4;-0.909631,-0.369044,-0.109071, 0.001672;;, - 125;4;-0.916494,-0.346624,-0.093483, 0.001433;;, - 126;4;-0.923544,-0.323589,-0.077468, 0.001187;;, - 127;4;-0.930328,-0.301426,-0.062059, 0.000951;;, - 128;4;-0.936521,-0.281196,-0.047994, 0.000736;;, - 129;4;-0.941937,-0.263499,-0.035691, 0.000547;;, - 130;4;-0.947354,-0.245802,-0.023387, 0.000358;;, - 131;4;-0.953547,-0.225572,-0.009322, 0.000143;;, - 132;4;-0.960330,-0.203409, 0.006087,-0.000093;;, - 133;4;-0.967381,-0.180374, 0.022101,-0.000339;;, - 134;4;-0.974244,-0.157954, 0.037689,-0.000578;;, - 135;4;-0.980412,-0.137801, 0.051700,-0.000792;;, - 136;4;-0.985451,-0.121340, 0.063145,-0.000968;;, - 137;4;-0.989087,-0.109462, 0.071403,-0.001094;;, - 138;4;-0.991227,-0.102470, 0.076264,-0.001169;;, - 139;4;-0.991916,-0.100219, 0.077829,-0.001193;;, - 140;4;-0.989087,-0.109462, 0.071403,-0.001094;;, - 141;4;-0.980412,-0.137801, 0.051700,-0.000792;;, - 142;4;-0.967381,-0.180374, 0.022101,-0.000339;;, - 143;4;-0.953546,-0.225572,-0.009322, 0.000143;;, - 144;4;-0.941937,-0.263499,-0.035691, 0.000547;;, - 145;4;-0.930328,-0.301426,-0.062059, 0.000951;;, - 146;4;-0.916494,-0.346624,-0.093483, 0.001433;;, - 147;4;-0.903462,-0.389197,-0.123082, 0.001886;;, - 148;4;-0.894788,-0.417536,-0.142785, 0.002188;;, - 149;4;-0.891959,-0.426779,-0.149211, 0.002287;;, - 150;4;-0.894788,-0.417536,-0.142785, 0.002188;;, - 151;4;-0.903462,-0.389197,-0.123082, 0.001886;;, - 152;4;-0.916494,-0.346624,-0.093483, 0.001433;;, - 153;4;-0.930328,-0.301426,-0.062059, 0.000951;;, - 154;4;-0.941937,-0.263499,-0.035691, 0.000547;;, - 155;4;-0.953547,-0.225572,-0.009322, 0.000143;;, - 156;4;-0.967381,-0.180374, 0.022101,-0.000339;;, - 157;4;-0.980412,-0.137801, 0.051700,-0.000792;;, - 158;4;-0.989087,-0.109462, 0.071403,-0.001094;;, - 159;4;-0.991916,-0.100219, 0.077829,-0.001193;;, - 160;4;-0.991830,-0.100859, 0.077400,-0.001186;;, - 161;4;-0.991570,-0.102792, 0.076104,-0.001166;;, - 162;4;-0.991136,-0.106026, 0.073936,-0.001133;;, - 163;4;-0.990530,-0.110537, 0.070911,-0.001087;;, - 164;4;-0.989760,-0.116271, 0.067067,-0.001028;;, - 165;4;-0.988839,-0.123130, 0.062468,-0.000957;;, - 166;4;-0.987786,-0.130971, 0.057211,-0.000877;;, - 167;4;-0.986627,-0.139601, 0.051425,-0.000788;;, - 168;4;-0.985394,-0.148787, 0.045266,-0.000694;;, - 169;4;-0.984121,-0.158260, 0.038915,-0.000596;;, - 170;4;-0.982849,-0.167733, 0.032563,-0.000499;;, - 171;4;-0.981616,-0.176919, 0.026404,-0.000405;;, - 172;4;-0.980456,-0.185549, 0.020618,-0.000316;;, - 173;4;-0.979404,-0.193390, 0.015361,-0.000235;;, - 174;4;-0.978482,-0.200249, 0.010763,-0.000165;;, - 175;4;-0.977712,-0.205983, 0.006918,-0.000106;;, - 176;4;-0.977107,-0.210494, 0.003893,-0.000060;;, - 177;4;-0.976672,-0.213728, 0.001725,-0.000026;;, - 178;4;-0.976413,-0.215661, 0.000429,-0.000007;;, - 179;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 180;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 181;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 182;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 183;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 184;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 185;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 186;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 187;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 188;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 189;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 190;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 191;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 192;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 193;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 194;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 195;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 196;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 197;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 198;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 199;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 200;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 201;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 202;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 203;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 204;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 205;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 206;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 207;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 208;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 209;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 210;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 211;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 212;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 213;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 214;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 215;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 216;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 217;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 218;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 219;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 220;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 221;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 222;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 223;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 224;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 225;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 226;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 227;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 228;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 229;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 230;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 231;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 232;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 233;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 234;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 235;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 236;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 237;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 238;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 239;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 240;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 241;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 242;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 243;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 244;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 245;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 246;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 247;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 248;4;-0.976327,-0.216301,-0.000000,-0.000000;;, - 249;4;-0.976327,-0.216301,-0.000000,-0.000000;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3; 0.000000, 1.279916, 0.000000;;, - 1;3; 0.000000, 1.279916, 0.000000;;, - 2;3; 0.000000, 1.279916, 0.000000;;, - 3;3; 0.000000, 1.279916, 0.000000;;, - 4;3; 0.000000, 1.279916, 0.000000;;, - 5;3; 0.000000, 1.279916, 0.000000;;, - 6;3; 0.000000, 1.279916, 0.000000;;, - 7;3; 0.000000, 1.279916, 0.000000;;, - 8;3; 0.000000, 1.279916, 0.000000;;, - 9;3; 0.000000, 1.279916, 0.000000;;, - 10;3; 0.000000, 1.279916, 0.000000;;, - 11;3; 0.000000, 1.279916, 0.000000;;, - 12;3; 0.000000, 1.279916, 0.000000;;, - 13;3; 0.000000, 1.279916, 0.000000;;, - 14;3; 0.000000, 1.279916, 0.000000;;, - 15;3; 0.000000, 1.279916, 0.000000;;, - 16;3; 0.000000, 1.279916, 0.000000;;, - 17;3; 0.000000, 1.279916, 0.000000;;, - 18;3; 0.000000, 1.279916, 0.000000;;, - 19;3; 0.000000, 1.279916, 0.000000;;, - 20;3; 0.000000, 1.279916, 0.000000;;, - 21;3; 0.000000, 1.279916, 0.000000;;, - 22;3; 0.000000, 1.279916, 0.000000;;, - 23;3; 0.000000, 1.279916, 0.000000;;, - 24;3; 0.000000, 1.279916, 0.000000;;, - 25;3; 0.000000, 1.279916, 0.000000;;, - 26;3; 0.000000, 1.279916, 0.000000;;, - 27;3; 0.000000, 1.279916, 0.000000;;, - 28;3; 0.000000, 1.279916, 0.000000;;, - 29;3; 0.000000, 1.279916, 0.000000;;, - 30;3; 0.000000, 1.279916, 0.000000;;, - 31;3; 0.000000, 1.279916, 0.000000;;, - 32;3; 0.000000, 1.279916, 0.000000;;, - 33;3; 0.000000, 1.279916, 0.000000;;, - 34;3; 0.000000, 1.279916, 0.000000;;, - 35;3; 0.000000, 1.279916, 0.000000;;, - 36;3; 0.000000, 1.279916, 0.000000;;, - 37;3; 0.000000, 1.279916, 0.000000;;, - 38;3; 0.000000, 1.279916, 0.000000;;, - 39;3; 0.000000, 1.279916, 0.000000;;, - 40;3; 0.000000, 1.279916, 0.000000;;, - 41;3; 0.000000, 1.279916, 0.000000;;, - 42;3; 0.000000, 1.279916, 0.000000;;, - 43;3; 0.000000, 1.279916, 0.000000;;, - 44;3; 0.000000, 1.279916, 0.000000;;, - 45;3; 0.000000, 1.279916, 0.000000;;, - 46;3; 0.000000, 1.279916, 0.000000;;, - 47;3; 0.000000, 1.279916, 0.000000;;, - 48;3; 0.000000, 1.279916, 0.000000;;, - 49;3; 0.000000, 1.279916, 0.000000;;, - 50;3; 0.000000, 1.279916, 0.000000;;, - 51;3; 0.000000, 1.279916, 0.000000;;, - 52;3; 0.000000, 1.279916, 0.000000;;, - 53;3; 0.000000, 1.279916, 0.000000;;, - 54;3; 0.000000, 1.279916, 0.000000;;, - 55;3; 0.000000, 1.279916, 0.000000;;, - 56;3; 0.000000, 1.279916, 0.000000;;, - 57;3; 0.000000, 1.279916, 0.000000;;, - 58;3; 0.000000, 1.279916, 0.000000;;, - 59;3; 0.000000, 1.279916, 0.000000;;, - 60;3;-0.000000, 1.279916, 0.000000;;, - 61;3; 0.000000, 1.279916, 0.000000;;, - 62;3; 0.000000, 1.279915,-0.000000;;, - 63;3; 0.000000, 1.279916,-0.000000;;, - 64;3; 0.000000, 1.279916, 0.000000;;, - 65;3;-0.000000, 1.279916,-0.000000;;, - 66;3;-0.000000, 1.279916,-0.000000;;, - 67;3; 0.000000, 1.279916,-0.000000;;, - 68;3;-0.000000, 1.279916,-0.000000;;, - 69;3; 0.000000, 1.279916, 0.000000;;, - 70;3; 0.000000, 1.279916,-0.000000;;, - 71;3; 0.000000, 1.279916, 0.000000;;, - 72;3;-0.000000, 1.279916,-0.000000;;, - 73;3;-0.000000, 1.279916, 0.000000;;, - 74;3;-0.000000, 1.279915,-0.000000;;, - 75;3;-0.000000, 1.279915,-0.000000;;, - 76;3;-0.000000, 1.279916,-0.000000;;, - 77;3;-0.000000, 1.279915,-0.000000;;, - 78;3;-0.000000, 1.279915,-0.000000;;, - 79;3;-0.000000, 1.279915,-0.000000;;, - 80;3;-0.000000, 1.279916, 0.000000;;, - 81;3;-0.000000, 1.279916,-0.000000;;, - 82;3;-0.000000, 1.279916, 0.000000;;, - 83;3; 0.000000, 1.279916, 0.000000;;, - 84;3;-0.000000, 1.279916,-0.000000;;, - 85;3; 0.000000, 1.279915,-0.000000;;, - 86;3;-0.000000, 1.279915, 0.000000;;, - 87;3;-0.000000, 1.279916, 0.000000;;, - 88;3; 0.000000, 1.279916,-0.000000;;, - 89;3;-0.000000, 1.279916,-0.000000;;, - 90;3; 0.000000, 1.279915,-0.000000;;, - 91;3;-0.000000, 1.279916, 0.000000;;, - 92;3;-0.000000, 1.279915, 0.000000;;, - 93;3;-0.000000, 1.279916,-0.000000;;, - 94;3;-0.000000, 1.279915,-0.000000;;, - 95;3; 0.000000, 1.279915, 0.000000;;, - 96;3;-0.000000, 1.279916, 0.000000;;, - 97;3; 0.000000, 1.279916,-0.000000;;, - 98;3; 0.000000, 1.279916, 0.000000;;, - 99;3;-0.000000, 1.279916,-0.000000;;, - 100;3;-0.000000, 1.279915, 0.000000;;, - 101;3;-0.000000, 1.279916,-0.000000;;, - 102;3;-0.000000, 1.279916, 0.000000;;, - 103;3;-0.000000, 1.279916, 0.000000;;, - 104;3;-0.000000, 1.279916, 0.000000;;, - 105;3;-0.000000, 1.279916, 0.000000;;, - 106;3;-0.000000, 1.279916, 0.000000;;, - 107;3;-0.000000, 1.279916,-0.000000;;, - 108;3;-0.000000, 1.279916,-0.000000;;, - 109;3; 0.000000, 1.279916,-0.000000;;, - 110;3; 0.000000, 1.279916,-0.000000;;, - 111;3;-0.000000, 1.279915, 0.000000;;, - 112;3; 0.000000, 1.279916, 0.000000;;, - 113;3;-0.000000, 1.279916, 0.000000;;, - 114;3;-0.000000, 1.279916, 0.000000;;, - 115;3; 0.000000, 1.279916,-0.000000;;, - 116;3; 0.000000, 1.279916,-0.000000;;, - 117;3;-0.000000, 1.279916, 0.000000;;, - 118;3; 0.000000, 1.279916, 0.000000;;, - 119;3;-0.000000, 1.279916, 0.000000;;, - 120;3; 0.000000, 1.279916, 0.000000;;, - 121;3; 0.000000, 1.279915, 0.000000;;, - 122;3;-0.000000, 1.279916,-0.000000;;, - 123;3;-0.000000, 1.279916,-0.000000;;, - 124;3;-0.000000, 1.279915,-0.000000;;, - 125;3; 0.000000, 1.279915,-0.000000;;, - 126;3;-0.000000, 1.279916,-0.000000;;, - 127;3;-0.000000, 1.279916, 0.000000;;, - 128;3;-0.000000, 1.279916,-0.000000;;, - 129;3;-0.000000, 1.279916, 0.000000;;, - 130;3;-0.000000, 1.279916,-0.000000;;, - 131;3;-0.000000, 1.279916,-0.000000;;, - 132;3; 0.000000, 1.279916,-0.000000;;, - 133;3; 0.000000, 1.279916,-0.000000;;, - 134;3;-0.000000, 1.279916,-0.000000;;, - 135;3; 0.000000, 1.279916,-0.000000;;, - 136;3;-0.000000, 1.279915,-0.000000;;, - 137;3;-0.000000, 1.279915, 0.000000;;, - 138;3; 0.000000, 1.279916, 0.000000;;, - 139;3;-0.000000, 1.279916,-0.000000;;, - 140;3; 0.000000, 1.279916, 0.000000;;, - 141;3;-0.000000, 1.279916, 0.000000;;, - 142;3;-0.000000, 1.279916,-0.000000;;, - 143;3; 0.000000, 1.279916,-0.000000;;, - 144;3; 0.000000, 1.279916,-0.000000;;, - 145;3;-0.000000, 1.279915, 0.000000;;, - 146;3;-0.000000, 1.279916, 0.000000;;, - 147;3; 0.000000, 1.279916,-0.000000;;, - 148;3;-0.000000, 1.279916, 0.000000;;, - 149;3;-0.000000, 1.279916, 0.000000;;, - 150;3; 0.000000, 1.279915, 0.000000;;, - 151;3;-0.000000, 1.279916,-0.000000;;, - 152;3; 0.000000, 1.279915,-0.000000;;, - 153;3;-0.000000, 1.279916, 0.000000;;, - 154;3;-0.000000, 1.279916, 0.000000;;, - 155;3;-0.000000, 1.279915,-0.000000;;, - 156;3;-0.000000, 1.279916, 0.000000;;, - 157;3;-0.000000, 1.279915,-0.000000;;, - 158;3; 0.000000, 1.279915,-0.000000;;, - 159;3;-0.000000, 1.279916,-0.000000;;, - 160;3;-0.000000, 1.279916, 0.000000;;, - 161;3;-0.000000, 1.279916,-0.000000;;, - 162;3;-0.000000, 1.279916,-0.000000;;, - 163;3; 0.000000, 1.279916,-0.000000;;, - 164;3;-0.000000, 1.279916,-0.000000;;, - 165;3;-0.000000, 1.279916,-0.000000;;, - 166;3;-0.000000, 1.279916, 0.000000;;, - 167;3;-0.000000, 1.279915,-0.000000;;, - 168;3; 0.000000, 1.279916, 0.000000;;, - 169;3;-0.000000, 1.279916, 0.000000;;, - 170;3;-0.000000, 1.279915,-0.000000;;, - 171;3; 0.000000, 1.279916, 0.000000;;, - 172;3;-0.000000, 1.279915,-0.000000;;, - 173;3;-0.000000, 1.279916, 0.000000;;, - 174;3;-0.000000, 1.279916,-0.000000;;, - 175;3;-0.000000, 1.279916,-0.000000;;, - 176;3; 0.000000, 1.279916, 0.000000;;, - 177;3; 0.000000, 1.279916,-0.000000;;, - 178;3;-0.000000, 1.279916,-0.000000;;, - 179;3; 0.000000, 1.279916, 0.000000;;, - 180;3;-0.000000, 1.279916, 0.000000;;, - 181;3;-0.000000, 1.279916, 0.000000;;, - 182;3; 0.000000, 1.279916, 0.000000;;, - 183;3;-0.000000, 1.279915, 0.000000;;, - 184;3; 0.000000, 1.279916,-0.000000;;, - 185;3; 0.000000, 1.279916,-0.000000;;, - 186;3;-0.000000, 1.279916, 0.000000;;, - 187;3;-0.000000, 1.279916, 0.000000;;, - 188;3;-0.000000, 1.279915,-0.000000;;, - 189;3; 0.000000, 1.279916,-0.000000;;, - 190;3; 0.000000, 1.279916, 0.000000;;, - 191;3; 0.000000, 1.279916, 0.000000;;, - 192;3;-0.000000, 1.279916,-0.000000;;, - 193;3;-0.000000, 1.279916, 0.000000;;, - 194;3;-0.000000, 1.279916, 0.000000;;, - 195;3; 0.000000, 1.279916,-0.000000;;, - 196;3;-0.000000, 1.279915,-0.000000;;, - 197;3; 0.000000, 1.279916,-0.000000;;, - 198;3; 0.000000, 1.279916,-0.000000;;, - 199;3; 0.000000, 1.279916, 0.000000;;, - 200;3; 0.000000, 1.279916, 0.000000;;, - 201;3; 0.000000, 1.279916, 0.000000;;, - 202;3; 0.000000, 1.279916, 0.000000;;, - 203;3; 0.000000, 1.279916, 0.000000;;, - 204;3; 0.000000, 1.279916, 0.000000;;, - 205;3; 0.000000, 1.279916, 0.000000;;, - 206;3; 0.000000, 1.279916, 0.000000;;, - 207;3; 0.000000, 1.279916, 0.000000;;, - 208;3; 0.000000, 1.279916, 0.000000;;, - 209;3; 0.000000, 1.279916, 0.000000;;, - 210;3; 0.000000, 1.279916, 0.000000;;, - 211;3; 0.000000, 1.279916,-0.000000;;, - 212;3;-0.000000, 1.279916, 0.000000;;, - 213;3; 0.000000, 1.279916, 0.000000;;, - 214;3;-0.000000, 1.279915,-0.000000;;, - 215;3; 0.000000, 1.279916,-0.000000;;, - 216;3;-0.000000, 1.279916, 0.000000;;, - 217;3;-0.000000, 1.279916, 0.000000;;, - 218;3; 0.000000, 1.279915,-0.000000;;, - 219;3;-0.000000, 1.279916,-0.000000;;, - 220;3;-0.000000, 1.279916, 0.000000;;, - 221;3;-0.000000, 1.279916, 0.000000;;, - 222;3; 0.000000, 1.279916,-0.000000;;, - 223;3;-0.000000, 1.279916,-0.000000;;, - 224;3;-0.000000, 1.279915,-0.000000;;, - 225;3; 0.000000, 1.279916, 0.000000;;, - 226;3;-0.000000, 1.279916,-0.000000;;, - 227;3; 0.000000, 1.279916,-0.000000;;, - 228;3;-0.000000, 1.279915, 0.000000;;, - 229;3; 0.000000, 1.279916, 0.000000;;, - 230;3;-0.000000, 1.279916, 0.000000;;, - 231;3;-0.000000, 1.279915,-0.000000;;, - 232;3; 0.000000, 1.279915, 0.000000;;, - 233;3;-0.000000, 1.279915, 0.000000;;, - 234;3;-0.000000, 1.279915, 0.000000;;, - 235;3;-0.000000, 1.279916,-0.000000;;, - 236;3; 0.000000, 1.279916,-0.000000;;, - 237;3;-0.000000, 1.279916,-0.000000;;, - 238;3;-0.000000, 1.279916, 0.000000;;, - 239;3; 0.000000, 1.279916, 0.000000;;, - 240;3; 0.000000, 1.279916, 0.000000;;, - 241;3; 0.000000, 1.279916, 0.000000;;, - 242;3; 0.000000, 1.279916, 0.000000;;, - 243;3; 0.000000, 1.279916, 0.000000;;, - 244;3; 0.000000, 1.279916, 0.000000;;, - 245;3; 0.000000, 1.279916, 0.000000;;, - 246;3; 0.000000, 1.279916, 0.000000;;, - 247;3; 0.000000, 1.279916, 0.000000;;, - 248;3; 0.000000, 1.279916, 0.000000;;, - 249;3; 0.000000, 1.279916, 0.000000;;; - } - } - Animation { - {Armature_Bone_039} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 1;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 2;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 3;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 4;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 5;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 6;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 7;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 8;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 9;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 10;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 11;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 12;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 13;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 14;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 15;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 16;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 17;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 18;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 19;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 20;4;-0.957694,-0.287562, 0.000415, 0.000224;;, - 21;4;-0.958119,-0.285459, 0.001668, 0.000901;;, - 22;4;-0.958830,-0.281944, 0.003764, 0.002032;;, - 23;4;-0.959821,-0.277039, 0.006688, 0.003611;;, - 24;4;-0.961082,-0.270805, 0.010404, 0.005618;;, - 25;4;-0.962590,-0.263348, 0.014850, 0.008018;;, - 26;4;-0.964313,-0.254824, 0.019932, 0.010762;;, - 27;4;-0.966210,-0.245441, 0.025526, 0.013783;;, - 28;4;-0.968230,-0.235453, 0.031480, 0.016998;;, - 29;4;-0.970312,-0.225154, 0.037620, 0.020313;;, - 30;4;-0.972394,-0.214855, 0.043759, 0.023628;;, - 31;4;-0.974414,-0.204868, 0.049713, 0.026843;;, - 32;4;-0.976311,-0.195485, 0.055307, 0.029864;;, - 33;4;-0.978034,-0.186961, 0.060389, 0.032608;;, - 34;4;-0.979542,-0.179504, 0.064835, 0.035008;;, - 35;4;-0.980802,-0.173270, 0.068551, 0.037015;;, - 36;4;-0.981794,-0.168365, 0.071475, 0.038594;;, - 37;4;-0.982505,-0.164850, 0.073571, 0.039726;;, - 38;4;-0.982930,-0.162747, 0.074824, 0.040402;;, - 39;4;-0.983071,-0.162052, 0.075239, 0.040626;;, - 40;4;-0.982930,-0.162747, 0.074824, 0.040402;;, - 41;4;-0.982505,-0.164850, 0.073571, 0.039726;;, - 42;4;-0.981794,-0.168365, 0.071475, 0.038594;;, - 43;4;-0.980803,-0.173270, 0.068551, 0.037015;;, - 44;4;-0.979542,-0.179504, 0.064835, 0.035008;;, - 45;4;-0.978034,-0.186961, 0.060389, 0.032608;;, - 46;4;-0.976311,-0.195485, 0.055307, 0.029864;;, - 47;4;-0.974414,-0.204868, 0.049713, 0.026843;;, - 48;4;-0.972394,-0.214856, 0.043759, 0.023628;;, - 49;4;-0.970312,-0.225154, 0.037620, 0.020313;;, - 50;4;-0.968230,-0.235453, 0.031480, 0.016998;;, - 51;4;-0.966210,-0.245441, 0.025526, 0.013783;;, - 52;4;-0.964313,-0.254824, 0.019932, 0.010762;;, - 53;4;-0.962590,-0.263348, 0.014850, 0.008018;;, - 54;4;-0.961082,-0.270805, 0.010404, 0.005618;;, - 55;4;-0.959821,-0.277039, 0.006688, 0.003611;;, - 56;4;-0.958830,-0.281944, 0.003764, 0.002032;;, - 57;4;-0.958119,-0.285459, 0.001668, 0.000901;;, - 58;4;-0.957694,-0.287562, 0.000415, 0.000224;;, - 59;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 60;4;-0.957573,-0.288177, 0.000048, 0.000026;;, - 61;4;-0.957635,-0.287937, 0.000194, 0.000105;;, - 62;4;-0.957737,-0.287534, 0.000437, 0.000236;;, - 63;4;-0.957881,-0.286969, 0.000779, 0.000421;;, - 64;4;-0.958066,-0.286241, 0.001220, 0.000659;;, - 65;4;-0.958292,-0.285351, 0.001758, 0.000949;;, - 66;4;-0.958560,-0.284301, 0.002394, 0.001293;;, - 67;4;-0.958867,-0.283093, 0.003124, 0.001687;;, - 68;4;-0.959213,-0.281732, 0.003948, 0.002132;;, - 69;4;-0.959597,-0.280223, 0.004861, 0.002625;;, - 70;4;-0.960017,-0.278573, 0.005859, 0.003164;;, - 71;4;-0.960470,-0.276790, 0.006938, 0.003746;;, - 72;4;-0.960955,-0.274884, 0.008091, 0.004369;;, - 73;4;-0.961468,-0.272866, 0.009312, 0.005028;;, - 74;4;-0.962007,-0.270749, 0.010592, 0.005720;;, - 75;4;-0.962567,-0.268546, 0.011925, 0.006439;;, - 76;4;-0.963145,-0.266274, 0.013300, 0.007181;;, - 77;4;-0.963737,-0.263949, 0.014706, 0.007941;;, - 78;4;-0.964338,-0.261587, 0.016135, 0.008712;;, - 79;4;-0.964943,-0.259208, 0.017575, 0.009490;;, - 80;4;-0.965548,-0.256828, 0.019014, 0.010267;;, - 81;4;-0.966149,-0.254467, 0.020443, 0.011039;;, - 82;4;-0.966741,-0.252141, 0.021850, 0.011798;;, - 83;4;-0.967319,-0.249869, 0.023225, 0.012540;;, - 84;4;-0.967879,-0.247667, 0.024557, 0.013260;;, - 85;4;-0.968418,-0.245549, 0.025838, 0.013952;;, - 86;4;-0.968931,-0.243531, 0.027059, 0.014611;;, - 87;4;-0.969416,-0.241625, 0.028212, 0.015233;;, - 88;4;-0.969869,-0.239842, 0.029291, 0.015816;;, - 89;4;-0.970289,-0.238192, 0.030289, 0.016355;;, - 90;4;-0.970673,-0.236683, 0.031202, 0.016848;;, - 91;4;-0.971019,-0.235323, 0.032025, 0.017292;;, - 92;4;-0.971327,-0.234115, 0.032756, 0.017687;;, - 93;4;-0.971594,-0.233064, 0.033391, 0.018030;;, - 94;4;-0.971820,-0.232174, 0.033930, 0.018321;;, - 95;4;-0.972005,-0.231446, 0.034370, 0.018559;;, - 96;4;-0.972149,-0.230881, 0.034712, 0.018743;;, - 97;4;-0.972252,-0.230478, 0.034956, 0.018875;;, - 98;4;-0.972313,-0.230238, 0.035101, 0.018953;;, - 99;4;-0.972333,-0.230158, 0.035150, 0.018979;;, - 100;4;-0.972043,-0.231075, 0.034585, 0.018675;;, - 101;4;-0.971141,-0.233922, 0.032833, 0.017729;;, - 102;4;-0.969610,-0.238758, 0.029856, 0.016121;;, - 103;4;-0.967487,-0.245461, 0.025730, 0.013893;;, - 104;4;-0.964889,-0.253668, 0.020679, 0.011166;;, - 105;4;-0.961998,-0.262797, 0.015059, 0.008132;;, - 106;4;-0.959027,-0.272176, 0.009286, 0.005014;;, - 107;4;-0.956170,-0.281201, 0.003731, 0.002015;;, - 108;4;-0.953561,-0.289439,-0.001339,-0.000723;;, - 109;4;-0.951279,-0.296645,-0.005775,-0.003118;;, - 110;4;-0.948997,-0.303851,-0.010210,-0.005513;;, - 111;4;-0.946389,-0.312088,-0.015281,-0.008251;;, - 112;4;-0.943531,-0.321113,-0.020836,-0.011251;;, - 113;4;-0.940561,-0.330493,-0.026609,-0.014368;;, - 114;4;-0.937670,-0.339622,-0.032229,-0.017402;;, - 115;4;-0.935071,-0.347828,-0.037280,-0.020130;;, - 116;4;-0.932949,-0.354531,-0.041406,-0.022357;;, - 117;4;-0.931417,-0.359368,-0.044383,-0.023965;;, - 118;4;-0.930516,-0.362215,-0.046135,-0.024911;;, - 119;4;-0.930225,-0.363131,-0.046699,-0.025216;;, - 120;4;-0.930516,-0.362215,-0.046135,-0.024911;;, - 121;4;-0.931417,-0.359368,-0.044383,-0.023965;;, - 122;4;-0.932949,-0.354531,-0.041406,-0.022357;;, - 123;4;-0.935071,-0.347828,-0.037280,-0.020130;;, - 124;4;-0.937670,-0.339622,-0.032229,-0.017402;;, - 125;4;-0.940561,-0.330493,-0.026609,-0.014368;;, - 126;4;-0.943531,-0.321113,-0.020836,-0.011251;;, - 127;4;-0.946389,-0.312088,-0.015281,-0.008251;;, - 128;4;-0.948997,-0.303851,-0.010210,-0.005513;;, - 129;4;-0.951279,-0.296645,-0.005775,-0.003118;;, - 130;4;-0.953561,-0.289439,-0.001339,-0.000723;;, - 131;4;-0.956170,-0.281201, 0.003731, 0.002015;;, - 132;4;-0.959027,-0.272176, 0.009286, 0.005014;;, - 133;4;-0.961998,-0.262797, 0.015059, 0.008132;;, - 134;4;-0.964889,-0.253668, 0.020679, 0.011166;;, - 135;4;-0.967487,-0.245461, 0.025730, 0.013893;;, - 136;4;-0.969610,-0.238758, 0.029856, 0.016121;;, - 137;4;-0.971141,-0.233922, 0.032833, 0.017729;;, - 138;4;-0.972043,-0.231075, 0.034585, 0.018675;;, - 139;4;-0.972333,-0.230158, 0.035150, 0.018979;;, - 140;4;-0.971141,-0.233922, 0.032833, 0.017729;;, - 141;4;-0.967487,-0.245461, 0.025730, 0.013893;;, - 142;4;-0.961998,-0.262797, 0.015059, 0.008132;;, - 143;4;-0.956170,-0.281201, 0.003731, 0.002015;;, - 144;4;-0.951279,-0.296645,-0.005775,-0.003118;;, - 145;4;-0.946389,-0.312088,-0.015281,-0.008251;;, - 146;4;-0.940561,-0.330493,-0.026609,-0.014368;;, - 147;4;-0.935071,-0.347828,-0.037280,-0.020130;;, - 148;4;-0.931417,-0.359368,-0.044383,-0.023965;;, - 149;4;-0.930225,-0.363131,-0.046699,-0.025216;;, - 150;4;-0.931417,-0.359368,-0.044383,-0.023965;;, - 151;4;-0.935071,-0.347828,-0.037280,-0.020130;;, - 152;4;-0.940561,-0.330493,-0.026609,-0.014368;;, - 153;4;-0.946389,-0.312088,-0.015281,-0.008251;;, - 154;4;-0.951279,-0.296645,-0.005775,-0.003118;;, - 155;4;-0.956170,-0.281201, 0.003731, 0.002015;;, - 156;4;-0.961998,-0.262797, 0.015059, 0.008132;;, - 157;4;-0.967487,-0.245461, 0.025730, 0.013893;;, - 158;4;-0.971141,-0.233922, 0.032833, 0.017729;;, - 159;4;-0.972333,-0.230158, 0.035150, 0.018979;;, - 160;4;-0.972252,-0.230478, 0.034956, 0.018875;;, - 161;4;-0.972005,-0.231446, 0.034370, 0.018559;;, - 162;4;-0.971594,-0.233064, 0.033391, 0.018030;;, - 163;4;-0.971019,-0.235323, 0.032025, 0.017292;;, - 164;4;-0.970289,-0.238192, 0.030289, 0.016355;;, - 165;4;-0.969416,-0.241625, 0.028212, 0.015233;;, - 166;4;-0.968418,-0.245549, 0.025838, 0.013952;;, - 167;4;-0.967319,-0.249869, 0.023225, 0.012540;;, - 168;4;-0.966149,-0.254466, 0.020443, 0.011039;;, - 169;4;-0.964943,-0.259208, 0.017575, 0.009490;;, - 170;4;-0.963737,-0.263949, 0.014706, 0.007941;;, - 171;4;-0.962567,-0.268546, 0.011925, 0.006439;;, - 172;4;-0.961469,-0.272866, 0.009312, 0.005028;;, - 173;4;-0.960470,-0.276790, 0.006938, 0.003746;;, - 174;4;-0.959597,-0.280223, 0.004861, 0.002625;;, - 175;4;-0.958867,-0.283093, 0.003124, 0.001687;;, - 176;4;-0.958292,-0.285351, 0.001758, 0.000949;;, - 177;4;-0.957881,-0.286969, 0.000779, 0.000421;;, - 178;4;-0.957635,-0.287937, 0.000194, 0.000105;;, - 179;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 180;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 181;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 182;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 183;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 184;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 185;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 186;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 187;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 188;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 189;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 190;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 191;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 192;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 193;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 194;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 195;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 196;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 197;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 198;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 199;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 200;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 201;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 202;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 203;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 204;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 205;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 206;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 207;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 208;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 209;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 210;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 211;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 212;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 213;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 214;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 215;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 216;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 217;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 218;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 219;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 220;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 221;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 222;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 223;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 224;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 225;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 226;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 227;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 228;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 229;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 230;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 231;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 232;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 233;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 234;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 235;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 236;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 237;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 238;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 239;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 240;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 241;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 242;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 243;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 244;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 245;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 246;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 247;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 248;4;-0.957553,-0.288257,-0.000000,-0.000000;;, - 249;4;-0.957553,-0.288257,-0.000000,-0.000000;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3;-0.000000, 1.228416,-0.000000;;, - 1;3;-0.000000, 1.228416,-0.000000;;, - 2;3;-0.000000, 1.228416,-0.000000;;, - 3;3;-0.000000, 1.228416,-0.000000;;, - 4;3;-0.000000, 1.228416,-0.000000;;, - 5;3;-0.000000, 1.228416,-0.000000;;, - 6;3;-0.000000, 1.228416,-0.000000;;, - 7;3;-0.000000, 1.228416,-0.000000;;, - 8;3;-0.000000, 1.228416,-0.000000;;, - 9;3;-0.000000, 1.228416,-0.000000;;, - 10;3;-0.000000, 1.228416,-0.000000;;, - 11;3;-0.000000, 1.228416,-0.000000;;, - 12;3;-0.000000, 1.228416,-0.000000;;, - 13;3;-0.000000, 1.228416,-0.000000;;, - 14;3;-0.000000, 1.228416,-0.000000;;, - 15;3;-0.000000, 1.228416,-0.000000;;, - 16;3;-0.000000, 1.228416,-0.000000;;, - 17;3;-0.000000, 1.228416,-0.000000;;, - 18;3;-0.000000, 1.228416,-0.000000;;, - 19;3;-0.000000, 1.228416,-0.000000;;, - 20;3;-0.000000, 1.228416,-0.000000;;, - 21;3;-0.000000, 1.228416,-0.000000;;, - 22;3;-0.000000, 1.228416,-0.000000;;, - 23;3;-0.000000, 1.228416,-0.000000;;, - 24;3;-0.000000, 1.228416,-0.000000;;, - 25;3;-0.000000, 1.228416,-0.000000;;, - 26;3;-0.000000, 1.228416,-0.000000;;, - 27;3;-0.000000, 1.228416,-0.000000;;, - 28;3;-0.000000, 1.228416,-0.000000;;, - 29;3;-0.000000, 1.228416,-0.000000;;, - 30;3;-0.000000, 1.228416,-0.000000;;, - 31;3;-0.000000, 1.228416,-0.000000;;, - 32;3;-0.000000, 1.228416,-0.000000;;, - 33;3;-0.000000, 1.228416,-0.000000;;, - 34;3;-0.000000, 1.228416,-0.000000;;, - 35;3;-0.000000, 1.228416,-0.000000;;, - 36;3;-0.000000, 1.228416,-0.000000;;, - 37;3;-0.000000, 1.228416,-0.000000;;, - 38;3;-0.000000, 1.228416,-0.000000;;, - 39;3;-0.000000, 1.228416,-0.000000;;, - 40;3;-0.000000, 1.228416,-0.000000;;, - 41;3;-0.000000, 1.228416,-0.000000;;, - 42;3;-0.000000, 1.228416,-0.000000;;, - 43;3;-0.000000, 1.228416,-0.000000;;, - 44;3;-0.000000, 1.228416,-0.000000;;, - 45;3;-0.000000, 1.228416,-0.000000;;, - 46;3;-0.000000, 1.228416,-0.000000;;, - 47;3;-0.000000, 1.228416,-0.000000;;, - 48;3;-0.000000, 1.228416,-0.000000;;, - 49;3;-0.000000, 1.228416,-0.000000;;, - 50;3;-0.000000, 1.228416,-0.000000;;, - 51;3;-0.000000, 1.228416,-0.000000;;, - 52;3;-0.000000, 1.228416,-0.000000;;, - 53;3;-0.000000, 1.228416,-0.000000;;, - 54;3;-0.000000, 1.228416,-0.000000;;, - 55;3;-0.000000, 1.228416,-0.000000;;, - 56;3;-0.000000, 1.228416,-0.000000;;, - 57;3;-0.000000, 1.228416,-0.000000;;, - 58;3;-0.000000, 1.228416,-0.000000;;, - 59;3;-0.000000, 1.228416,-0.000000;;, - 60;3; 0.000000, 1.228416,-0.000000;;, - 61;3; 0.000000, 1.228417,-0.000000;;, - 62;3; 0.000000, 1.228416, 0.000000;;, - 63;3;-0.000000, 1.228416, 0.000000;;, - 64;3; 0.000000, 1.228417,-0.000000;;, - 65;3; 0.000000, 1.228416, 0.000000;;, - 66;3; 0.000000, 1.228417,-0.000000;;, - 67;3;-0.000000, 1.228417, 0.000000;;, - 68;3;-0.000000, 1.228416,-0.000000;;, - 69;3; 0.000000, 1.228417, 0.000000;;, - 70;3;-0.000000, 1.228416,-0.000000;;, - 71;3;-0.000000, 1.228417,-0.000000;;, - 72;3;-0.000000, 1.228417, 0.000000;;, - 73;3;-0.000000, 1.228416,-0.000000;;, - 74;3;-0.000000, 1.228417,-0.000000;;, - 75;3; 0.000000, 1.228416,-0.000000;;, - 76;3; 0.000000, 1.228416,-0.000000;;, - 77;3; 0.000000, 1.228416, 0.000000;;, - 78;3; 0.000000, 1.228416,-0.000000;;, - 79;3; 0.000000, 1.228417,-0.000000;;, - 80;3;-0.000000, 1.228416, 0.000000;;, - 81;3;-0.000000, 1.228416, 0.000000;;, - 82;3; 0.000000, 1.228416, 0.000000;;, - 83;3; 0.000000, 1.228416,-0.000000;;, - 84;3;-0.000000, 1.228417,-0.000000;;, - 85;3;-0.000000, 1.228416, 0.000000;;, - 86;3; 0.000000, 1.228417, 0.000000;;, - 87;3; 0.000000, 1.228416, 0.000000;;, - 88;3;-0.000000, 1.228417,-0.000000;;, - 89;3; 0.000000, 1.228417,-0.000000;;, - 90;3; 0.000000, 1.228416,-0.000000;;, - 91;3; 0.000000, 1.228416, 0.000000;;, - 92;3;-0.000000, 1.228416,-0.000000;;, - 93;3;-0.000000, 1.228417, 0.000000;;, - 94;3; 0.000000, 1.228416,-0.000000;;, - 95;3; 0.000000, 1.228416,-0.000000;;, - 96;3;-0.000000, 1.228417, 0.000000;;, - 97;3;-0.000000, 1.228417, 0.000000;;, - 98;3;-0.000000, 1.228416,-0.000000;;, - 99;3; 0.000000, 1.228417,-0.000000;;, - 100;3;-0.000000, 1.228416, 0.000000;;, - 101;3;-0.000000, 1.228416,-0.000000;;, - 102;3; 0.000001, 1.228416,-0.000000;;, - 103;3;-0.000000, 1.228416,-0.000000;;, - 104;3; 0.000000, 1.228417,-0.000000;;, - 105;3;-0.000000, 1.228416, 0.000000;;, - 106;3;-0.000000, 1.228416, 0.000000;;, - 107;3;-0.000000, 1.228416, 0.000000;;, - 108;3; 0.000000, 1.228417, 0.000000;;, - 109;3;-0.000000, 1.228417,-0.000000;;, - 110;3;-0.000000, 1.228417, 0.000000;;, - 111;3;-0.000000, 1.228416,-0.000000;;, - 112;3;-0.000000, 1.228417,-0.000000;;, - 113;3; 0.000000, 1.228417,-0.000000;;, - 114;3;-0.000000, 1.228416, 0.000000;;, - 115;3; 0.000000, 1.228416,-0.000000;;, - 116;3;-0.000000, 1.228416, 0.000000;;, - 117;3; 0.000000, 1.228417, 0.000000;;, - 118;3;-0.000000, 1.228417,-0.000000;;, - 119;3; 0.000000, 1.228416, 0.000000;;, - 120;3;-0.000000, 1.228416, 0.000000;;, - 121;3; 0.000000, 1.228416,-0.000000;;, - 122;3; 0.000000, 1.228416, 0.000000;;, - 123;3;-0.000000, 1.228416,-0.000000;;, - 124;3; 0.000000, 1.228417,-0.000000;;, - 125;3;-0.000000, 1.228416, 0.000000;;, - 126;3; 0.000000, 1.228416,-0.000000;;, - 127;3; 0.000000, 1.228417,-0.000000;;, - 128;3; 0.000000, 1.228417, 0.000000;;, - 129;3;-0.000000, 1.228416, 0.000000;;, - 130;3; 0.000000, 1.228417,-0.000000;;, - 131;3;-0.000000, 1.228417,-0.000000;;, - 132;3;-0.000000, 1.228416,-0.000000;;, - 133;3; 0.000000, 1.228417,-0.000000;;, - 134;3; 0.000000, 1.228417,-0.000000;;, - 135;3; 0.000000, 1.228416,-0.000000;;, - 136;3;-0.000000, 1.228416, 0.000000;;, - 137;3; 0.000000, 1.228416, 0.000000;;, - 138;3; 0.000000, 1.228416, 0.000000;;, - 139;3; 0.000000, 1.228417,-0.000000;;, - 140;3;-0.000000, 1.228417,-0.000000;;, - 141;3;-0.000001, 1.228416,-0.000000;;, - 142;3;-0.000000, 1.228416, 0.000000;;, - 143;3; 0.000000, 1.228417, 0.000000;;, - 144;3;-0.000000, 1.228417,-0.000000;;, - 145;3;-0.000000, 1.228416,-0.000000;;, - 146;3; 0.000000, 1.228417,-0.000000;;, - 147;3; 0.000000, 1.228416,-0.000000;;, - 148;3; 0.000000, 1.228417, 0.000000;;, - 149;3; 0.000000, 1.228416, 0.000000;;, - 150;3; 0.000000, 1.228416,-0.000000;;, - 151;3;-0.000000, 1.228416,-0.000000;;, - 152;3;-0.000000, 1.228416, 0.000000;;, - 153;3; 0.000000, 1.228417,-0.000000;;, - 154;3;-0.000000, 1.228416, 0.000000;;, - 155;3;-0.000000, 1.228416,-0.000000;;, - 156;3; 0.000000, 1.228416,-0.000000;;, - 157;3; 0.000000, 1.228416, 0.000000;;, - 158;3;-0.000000, 1.228416, 0.000000;;, - 159;3; 0.000000, 1.228417,-0.000000;;, - 160;3; 0.000000, 1.228416,-0.000000;;, - 161;3; 0.000000, 1.228416, 0.000000;;, - 162;3;-0.000000, 1.228416,-0.000000;;, - 163;3;-0.000000, 1.228417, 0.000000;;, - 164;3; 0.000000, 1.228417, 0.000000;;, - 165;3; 0.000000, 1.228416, 0.000000;;, - 166;3;-0.000000, 1.228416, 0.000000;;, - 167;3; 0.000000, 1.228417,-0.000000;;, - 168;3;-0.000000, 1.228416,-0.000000;;, - 169;3;-0.000000, 1.228417,-0.000000;;, - 170;3;-0.000000, 1.228416,-0.000000;;, - 171;3;-0.000000, 1.228417,-0.000000;;, - 172;3;-0.000001, 1.228417, 0.000000;;, - 173;3;-0.000000, 1.228417,-0.000000;;, - 174;3;-0.000000, 1.228416, 0.000000;;, - 175;3;-0.000000, 1.228417,-0.000000;;, - 176;3; 0.000000, 1.228417,-0.000000;;, - 177;3;-0.000000, 1.228417,-0.000000;;, - 178;3;-0.000000, 1.228416, 0.000000;;, - 179;3;-0.000000, 1.228416,-0.000000;;, - 180;3; 0.000000, 1.228417,-0.000000;;, - 181;3;-0.000000, 1.228417, 0.000000;;, - 182;3;-0.000000, 1.228417, 0.000000;;, - 183;3; 0.000000, 1.228416, 0.000000;;, - 184;3; 0.000000, 1.228416,-0.000000;;, - 185;3; 0.000000, 1.228416, 0.000000;;, - 186;3;-0.000000, 1.228416,-0.000000;;, - 187;3; 0.000000, 1.228416, 0.000000;;, - 188;3;-0.000000, 1.228417, 0.000000;;, - 189;3; 0.000000, 1.228416, 0.000000;;, - 190;3; 0.000000, 1.228417,-0.000000;;, - 191;3;-0.000000, 1.228416, 0.000000;;, - 192;3;-0.000000, 1.228417, 0.000000;;, - 193;3;-0.000000, 1.228416,-0.000000;;, - 194;3;-0.000000, 1.228416,-0.000000;;, - 195;3; 0.000000, 1.228416,-0.000001;;, - 196;3; 0.000000, 1.228416, 0.000000;;, - 197;3; 0.000000, 1.228416,-0.000000;;, - 198;3; 0.000000, 1.228416, 0.000000;;, - 199;3;-0.000000, 1.228416,-0.000000;;, - 200;3;-0.000000, 1.228416,-0.000000;;, - 201;3;-0.000000, 1.228416,-0.000000;;, - 202;3;-0.000000, 1.228416,-0.000000;;, - 203;3;-0.000000, 1.228416,-0.000000;;, - 204;3;-0.000000, 1.228416,-0.000000;;, - 205;3;-0.000000, 1.228416,-0.000000;;, - 206;3;-0.000000, 1.228416,-0.000000;;, - 207;3;-0.000000, 1.228416,-0.000000;;, - 208;3;-0.000000, 1.228416,-0.000000;;, - 209;3;-0.000000, 1.228416,-0.000000;;, - 210;3; 0.000000, 1.228416, 0.000000;;, - 211;3;-0.000000, 1.228417, 0.000000;;, - 212;3; 0.000000, 1.228416,-0.000000;;, - 213;3; 0.000000, 1.228416,-0.000000;;, - 214;3; 0.000000, 1.228417, 0.000000;;, - 215;3; 0.000000, 1.228417,-0.000000;;, - 216;3;-0.000000, 1.228417, 0.000001;;, - 217;3;-0.000000, 1.228416,-0.000000;;, - 218;3; 0.000000, 1.228417, 0.000000;;, - 219;3;-0.000000, 1.228416,-0.000000;;, - 220;3;-0.000000, 1.228416,-0.000000;;, - 221;3; 0.000000, 1.228416, 0.000000;;, - 222;3;-0.000000, 1.228416, 0.000000;;, - 223;3;-0.000000, 1.228417,-0.000000;;, - 224;3;-0.000000, 1.228417, 0.000000;;, - 225;3;-0.000000, 1.228416, 0.000000;;, - 226;3;-0.000000, 1.228417, 0.000000;;, - 227;3;-0.000000, 1.228416,-0.000000;;, - 228;3;-0.000000, 1.228416,-0.000000;;, - 229;3;-0.000000, 1.228416, 0.000000;;, - 230;3;-0.000000, 1.228416, 0.000000;;, - 231;3;-0.000000, 1.228416,-0.000000;;, - 232;3;-0.000000, 1.228416, 0.000000;;, - 233;3; 0.000000, 1.228417, 0.000000;;, - 234;3; 0.000000, 1.228416,-0.000000;;, - 235;3;-0.000000, 1.228416,-0.000000;;, - 236;3;-0.000000, 1.228416, 0.000000;;, - 237;3;-0.000000, 1.228416, 0.000000;;, - 238;3;-0.000000, 1.228416,-0.000000;;, - 239;3;-0.000000, 1.228416,-0.000000;;, - 240;3;-0.000000, 1.228416,-0.000000;;, - 241;3;-0.000000, 1.228416,-0.000000;;, - 242;3;-0.000000, 1.228416,-0.000000;;, - 243;3;-0.000000, 1.228416,-0.000000;;, - 244;3;-0.000000, 1.228416,-0.000000;;, - 245;3;-0.000000, 1.228416,-0.000000;;, - 246;3;-0.000000, 1.228416,-0.000000;;, - 247;3;-0.000000, 1.228416,-0.000000;;, - 248;3;-0.000000, 1.228416,-0.000000;;, - 249;3;-0.000000, 1.228416,-0.000000;;; - } - } - Animation { - {Armature_Bone_012} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 1;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 2;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 3;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 4;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 5;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 6;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 7;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 8;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 9;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 10;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 11;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 12;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 13;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 14;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 15;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 16;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 17;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 18;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 19;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 20;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 21;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 22;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 23;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 24;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 25;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 26;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 27;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 28;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 29;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 30;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 31;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 32;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 33;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 34;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 35;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 36;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 37;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 38;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 39;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 40;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 41;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 42;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 43;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 44;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 45;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 46;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 47;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 48;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 49;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 50;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 51;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 52;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 53;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 54;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 55;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 56;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 57;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 58;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 59;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 60;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 61;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 62;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 63;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 64;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 65;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 66;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 67;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 68;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 69;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 70;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 71;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 72;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 73;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 74;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 75;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 76;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 77;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 78;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 79;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 80;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 81;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 82;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 83;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 84;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 85;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 86;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 87;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 88;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 89;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 90;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 91;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 92;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 93;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 94;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 95;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 96;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 97;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 98;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 99;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 100;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 101;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 102;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 103;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 104;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 105;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 106;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 107;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 108;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 109;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 110;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 111;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 112;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 113;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 114;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 115;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 116;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 117;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 118;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 119;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 120;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 121;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 122;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 123;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 124;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 125;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 126;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 127;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 128;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 129;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 130;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 131;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 132;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 133;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 134;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 135;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 136;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 137;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 138;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 139;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 140;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 141;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 142;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 143;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 144;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 145;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 146;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 147;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 148;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 149;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 150;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 151;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 152;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 153;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 154;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 155;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 156;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 157;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 158;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 159;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 160;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 161;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 162;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 163;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 164;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 165;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 166;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 167;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 168;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 169;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 170;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 171;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 172;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 173;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 174;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 175;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 176;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 177;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 178;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 179;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 180;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 181;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 182;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 183;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 184;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 185;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 186;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 187;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 188;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 189;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 190;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 191;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 192;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 193;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 194;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 195;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 196;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 197;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 198;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 199;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 200;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 201;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 202;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 203;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 204;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 205;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 206;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 207;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 208;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 209;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 210;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 211;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 212;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 213;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 214;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 215;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 216;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 217;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 218;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 219;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 220;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 221;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 222;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 223;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 224;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 225;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 226;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 227;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 228;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 229;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 230;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 231;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 232;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 233;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 234;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 235;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 236;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 237;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 238;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 239;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 240;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 241;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 242;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 243;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 244;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 245;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 246;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 247;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 248;4;-0.888173,-0.000000, 0.000000, 0.459508;;, - 249;4;-0.888173,-0.000000, 0.000000, 0.459508;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3; 0.000000, 0.826434, 0.000000;;, - 1;3; 0.000000, 0.826434, 0.000000;;, - 2;3; 0.000000, 0.826434, 0.000000;;, - 3;3; 0.000000, 0.826434, 0.000000;;, - 4;3; 0.000000, 0.826434, 0.000000;;, - 5;3; 0.000000, 0.826434, 0.000000;;, - 6;3; 0.000000, 0.826434, 0.000000;;, - 7;3; 0.000000, 0.826434, 0.000000;;, - 8;3; 0.000000, 0.826434, 0.000000;;, - 9;3; 0.000000, 0.826434, 0.000000;;, - 10;3; 0.000000, 0.826434, 0.000000;;, - 11;3; 0.000000, 0.826434, 0.000000;;, - 12;3; 0.000000, 0.826434, 0.000000;;, - 13;3; 0.000000, 0.826434, 0.000000;;, - 14;3; 0.000000, 0.826434, 0.000000;;, - 15;3; 0.000000, 0.826434, 0.000000;;, - 16;3; 0.000000, 0.826434, 0.000000;;, - 17;3; 0.000000, 0.826434, 0.000000;;, - 18;3; 0.000000, 0.826434, 0.000000;;, - 19;3; 0.000000, 0.826434, 0.000000;;, - 20;3; 0.000000, 0.826434, 0.000000;;, - 21;3; 0.000000, 0.826434, 0.000000;;, - 22;3; 0.000000, 0.826434, 0.000000;;, - 23;3; 0.000000, 0.826434, 0.000000;;, - 24;3; 0.000000, 0.826434, 0.000000;;, - 25;3; 0.000000, 0.826434, 0.000000;;, - 26;3; 0.000000, 0.826434, 0.000000;;, - 27;3; 0.000000, 0.826434, 0.000000;;, - 28;3; 0.000000, 0.826434, 0.000000;;, - 29;3; 0.000000, 0.826434, 0.000000;;, - 30;3; 0.000000, 0.826434, 0.000000;;, - 31;3; 0.000000, 0.826434, 0.000000;;, - 32;3; 0.000000, 0.826434, 0.000000;;, - 33;3; 0.000000, 0.826434, 0.000000;;, - 34;3; 0.000000, 0.826434, 0.000000;;, - 35;3; 0.000000, 0.826434, 0.000000;;, - 36;3; 0.000000, 0.826434, 0.000000;;, - 37;3; 0.000000, 0.826434, 0.000000;;, - 38;3; 0.000000, 0.826434, 0.000000;;, - 39;3; 0.000000, 0.826434, 0.000000;;, - 40;3; 0.000000, 0.826434, 0.000000;;, - 41;3; 0.000000, 0.826434, 0.000000;;, - 42;3; 0.000000, 0.826434, 0.000000;;, - 43;3; 0.000000, 0.826434, 0.000000;;, - 44;3; 0.000000, 0.826434, 0.000000;;, - 45;3; 0.000000, 0.826434, 0.000000;;, - 46;3; 0.000000, 0.826434, 0.000000;;, - 47;3; 0.000000, 0.826434, 0.000000;;, - 48;3; 0.000000, 0.826434, 0.000000;;, - 49;3; 0.000000, 0.826434, 0.000000;;, - 50;3; 0.000000, 0.826434, 0.000000;;, - 51;3; 0.000000, 0.826434, 0.000000;;, - 52;3; 0.000000, 0.826434, 0.000000;;, - 53;3; 0.000000, 0.826434, 0.000000;;, - 54;3; 0.000000, 0.826434, 0.000000;;, - 55;3; 0.000000, 0.826434, 0.000000;;, - 56;3; 0.000000, 0.826434, 0.000000;;, - 57;3; 0.000000, 0.826434, 0.000000;;, - 58;3; 0.000000, 0.826434, 0.000000;;, - 59;3; 0.000000, 0.826434, 0.000000;;, - 60;3; 0.000000, 0.826434, 0.000000;;, - 61;3; 0.000000, 0.826434, 0.000000;;, - 62;3; 0.000000, 0.826434, 0.000000;;, - 63;3; 0.000000, 0.826434, 0.000000;;, - 64;3; 0.000000, 0.826434, 0.000000;;, - 65;3; 0.000000, 0.826434, 0.000000;;, - 66;3; 0.000000, 0.826434, 0.000000;;, - 67;3; 0.000000, 0.826434, 0.000000;;, - 68;3; 0.000000, 0.826434, 0.000000;;, - 69;3; 0.000000, 0.826434, 0.000000;;, - 70;3; 0.000000, 0.826434, 0.000000;;, - 71;3; 0.000000, 0.826434, 0.000000;;, - 72;3; 0.000000, 0.826434, 0.000000;;, - 73;3; 0.000000, 0.826434, 0.000000;;, - 74;3; 0.000000, 0.826434, 0.000000;;, - 75;3; 0.000000, 0.826434, 0.000000;;, - 76;3; 0.000000, 0.826434, 0.000000;;, - 77;3; 0.000000, 0.826434, 0.000000;;, - 78;3; 0.000000, 0.826434, 0.000000;;, - 79;3; 0.000000, 0.826434, 0.000000;;, - 80;3; 0.000000, 0.826434, 0.000000;;, - 81;3; 0.000000, 0.826434, 0.000000;;, - 82;3; 0.000000, 0.826434, 0.000000;;, - 83;3; 0.000000, 0.826434, 0.000000;;, - 84;3; 0.000000, 0.826434, 0.000000;;, - 85;3; 0.000000, 0.826434, 0.000000;;, - 86;3; 0.000000, 0.826434, 0.000000;;, - 87;3; 0.000000, 0.826434, 0.000000;;, - 88;3; 0.000000, 0.826434, 0.000000;;, - 89;3; 0.000000, 0.826434, 0.000000;;, - 90;3; 0.000000, 0.826434, 0.000000;;, - 91;3; 0.000000, 0.826434, 0.000000;;, - 92;3; 0.000000, 0.826434, 0.000000;;, - 93;3; 0.000000, 0.826434, 0.000000;;, - 94;3; 0.000000, 0.826434, 0.000000;;, - 95;3; 0.000000, 0.826434, 0.000000;;, - 96;3; 0.000000, 0.826434, 0.000000;;, - 97;3; 0.000000, 0.826434, 0.000000;;, - 98;3; 0.000000, 0.826434, 0.000000;;, - 99;3; 0.000000, 0.826434, 0.000000;;, - 100;3; 0.000000, 0.826434, 0.000000;;, - 101;3; 0.000000, 0.826434, 0.000000;;, - 102;3; 0.000000, 0.826434, 0.000000;;, - 103;3; 0.000000, 0.826434, 0.000000;;, - 104;3; 0.000000, 0.826434, 0.000000;;, - 105;3; 0.000000, 0.826434, 0.000000;;, - 106;3; 0.000000, 0.826434, 0.000000;;, - 107;3; 0.000000, 0.826434, 0.000000;;, - 108;3; 0.000000, 0.826434, 0.000000;;, - 109;3; 0.000000, 0.826434, 0.000000;;, - 110;3; 0.000000, 0.826434, 0.000000;;, - 111;3; 0.000000, 0.826434, 0.000000;;, - 112;3; 0.000000, 0.826434, 0.000000;;, - 113;3; 0.000000, 0.826434, 0.000000;;, - 114;3; 0.000000, 0.826434, 0.000000;;, - 115;3; 0.000000, 0.826434, 0.000000;;, - 116;3; 0.000000, 0.826434, 0.000000;;, - 117;3; 0.000000, 0.826434, 0.000000;;, - 118;3; 0.000000, 0.826434, 0.000000;;, - 119;3; 0.000000, 0.826434, 0.000000;;, - 120;3; 0.000000, 0.826434, 0.000000;;, - 121;3; 0.000000, 0.826434, 0.000000;;, - 122;3; 0.000000, 0.826434, 0.000000;;, - 123;3; 0.000000, 0.826434, 0.000000;;, - 124;3; 0.000000, 0.826434, 0.000000;;, - 125;3; 0.000000, 0.826434, 0.000000;;, - 126;3; 0.000000, 0.826434, 0.000000;;, - 127;3; 0.000000, 0.826434, 0.000000;;, - 128;3; 0.000000, 0.826434, 0.000000;;, - 129;3; 0.000000, 0.826434, 0.000000;;, - 130;3; 0.000000, 0.826434, 0.000000;;, - 131;3; 0.000000, 0.826434, 0.000000;;, - 132;3; 0.000000, 0.826434, 0.000000;;, - 133;3; 0.000000, 0.826434, 0.000000;;, - 134;3; 0.000000, 0.826434, 0.000000;;, - 135;3; 0.000000, 0.826434, 0.000000;;, - 136;3; 0.000000, 0.826434, 0.000000;;, - 137;3; 0.000000, 0.826434, 0.000000;;, - 138;3; 0.000000, 0.826434, 0.000000;;, - 139;3; 0.000000, 0.826434, 0.000000;;, - 140;3; 0.000000, 0.826434, 0.000000;;, - 141;3; 0.000000, 0.826434, 0.000000;;, - 142;3; 0.000000, 0.826434, 0.000000;;, - 143;3; 0.000000, 0.826434, 0.000000;;, - 144;3; 0.000000, 0.826434, 0.000000;;, - 145;3; 0.000000, 0.826434, 0.000000;;, - 146;3; 0.000000, 0.826434, 0.000000;;, - 147;3; 0.000000, 0.826434, 0.000000;;, - 148;3; 0.000000, 0.826434, 0.000000;;, - 149;3; 0.000000, 0.826434, 0.000000;;, - 150;3; 0.000000, 0.826434, 0.000000;;, - 151;3; 0.000000, 0.826434, 0.000000;;, - 152;3; 0.000000, 0.826434, 0.000000;;, - 153;3; 0.000000, 0.826434, 0.000000;;, - 154;3; 0.000000, 0.826434, 0.000000;;, - 155;3; 0.000000, 0.826434, 0.000000;;, - 156;3; 0.000000, 0.826434, 0.000000;;, - 157;3; 0.000000, 0.826434, 0.000000;;, - 158;3; 0.000000, 0.826434, 0.000000;;, - 159;3; 0.000000, 0.826434, 0.000000;;, - 160;3; 0.000000, 0.826434, 0.000000;;, - 161;3; 0.000000, 0.826434, 0.000000;;, - 162;3; 0.000000, 0.826434, 0.000000;;, - 163;3; 0.000000, 0.826434, 0.000000;;, - 164;3; 0.000000, 0.826434, 0.000000;;, - 165;3; 0.000000, 0.826434, 0.000000;;, - 166;3; 0.000000, 0.826434, 0.000000;;, - 167;3; 0.000000, 0.826434, 0.000000;;, - 168;3; 0.000000, 0.826434, 0.000000;;, - 169;3; 0.000000, 0.826434, 0.000000;;, - 170;3; 0.000000, 0.826434, 0.000000;;, - 171;3; 0.000000, 0.826434, 0.000000;;, - 172;3; 0.000000, 0.826434, 0.000000;;, - 173;3; 0.000000, 0.826434, 0.000000;;, - 174;3; 0.000000, 0.826434, 0.000000;;, - 175;3; 0.000000, 0.826434, 0.000000;;, - 176;3; 0.000000, 0.826434, 0.000000;;, - 177;3; 0.000000, 0.826434, 0.000000;;, - 178;3; 0.000000, 0.826434, 0.000000;;, - 179;3; 0.000000, 0.826434, 0.000000;;, - 180;3; 0.000000, 0.826434, 0.000000;;, - 181;3; 0.000000, 0.826434, 0.000000;;, - 182;3; 0.000000, 0.826434, 0.000000;;, - 183;3; 0.000000, 0.826434, 0.000000;;, - 184;3; 0.000000, 0.826434, 0.000000;;, - 185;3; 0.000000, 0.826434, 0.000000;;, - 186;3;-0.000000, 0.826434,-0.000000;;, - 187;3;-0.000000, 0.826434,-0.000000;;, - 188;3;-0.000000, 0.826434, 0.000000;;, - 189;3;-0.000000, 0.826434, 0.000000;;, - 190;3;-0.000000, 0.826434,-0.000000;;, - 191;3; 0.000000, 0.826434, 0.000000;;, - 192;3; 0.000000, 0.826434, 0.000000;;, - 193;3; 0.000000, 0.826434, 0.000000;;, - 194;3; 0.000000, 0.826434,-0.000000;;, - 195;3; 0.000000, 0.826434,-0.000000;;, - 196;3; 0.000000, 0.826434, 0.000000;;, - 197;3; 0.000000, 0.826434,-0.000000;;, - 198;3; 0.000000, 0.826434,-0.000000;;, - 199;3; 0.000000, 0.826434, 0.000000;;, - 200;3; 0.000000, 0.826434, 0.000000;;, - 201;3; 0.000000, 0.826434, 0.000000;;, - 202;3; 0.000000, 0.826434, 0.000000;;, - 203;3; 0.000000, 0.826434, 0.000000;;, - 204;3; 0.000000, 0.826434, 0.000000;;, - 205;3; 0.000000, 0.826434, 0.000000;;, - 206;3; 0.000000, 0.826434, 0.000000;;, - 207;3; 0.000000, 0.826434, 0.000000;;, - 208;3; 0.000000, 0.826434, 0.000000;;, - 209;3; 0.000000, 0.826434, 0.000000;;, - 210;3;-0.000000, 0.826434, 0.000000;;, - 211;3;-0.000000, 0.826434, 0.000000;;, - 212;3; 0.000000, 0.826434,-0.000000;;, - 213;3; 0.000000, 0.826434, 0.000000;;, - 214;3; 0.000000, 0.826434, 0.000000;;, - 215;3;-0.000000, 0.826434,-0.000000;;, - 216;3;-0.000000, 0.826434,-0.000000;;, - 217;3;-0.000000, 0.826434,-0.000000;;, - 218;3;-0.000000, 0.826434, 0.000000;;, - 219;3;-0.000000, 0.826434,-0.000000;;, - 220;3;-0.000000, 0.826434, 0.000000;;, - 221;3; 0.000000, 0.826434, 0.000000;;, - 222;3;-0.000000, 0.826434, 0.000000;;, - 223;3; 0.000000, 0.826434,-0.000000;;, - 224;3; 0.000000, 0.826434,-0.000000;;, - 225;3; 0.000000, 0.826434, 0.000000;;, - 226;3; 0.000000, 0.826434, 0.000000;;, - 227;3; 0.000000, 0.826434, 0.000000;;, - 228;3;-0.000000, 0.826434, 0.000000;;, - 229;3; 0.000000, 0.826434, 0.000000;;, - 230;3; 0.000000, 0.826434, 0.000000;;, - 231;3; 0.000000, 0.826434,-0.000000;;, - 232;3;-0.000000, 0.826434,-0.000000;;, - 233;3; 0.000000, 0.826434, 0.000000;;, - 234;3; 0.000000, 0.826434, 0.000000;;, - 235;3; 0.000000, 0.826434, 0.000000;;, - 236;3; 0.000000, 0.826434, 0.000000;;, - 237;3; 0.000000, 0.826434, 0.000000;;, - 238;3; 0.000000, 0.826434, 0.000000;;, - 239;3; 0.000000, 0.826434, 0.000000;;, - 240;3; 0.000000, 0.826434, 0.000000;;, - 241;3; 0.000000, 0.826434, 0.000000;;, - 242;3; 0.000000, 0.826434, 0.000000;;, - 243;3; 0.000000, 0.826434, 0.000000;;, - 244;3; 0.000000, 0.826434, 0.000000;;, - 245;3; 0.000000, 0.826434, 0.000000;;, - 246;3; 0.000000, 0.826434, 0.000000;;, - 247;3; 0.000000, 0.826434, 0.000000;;, - 248;3; 0.000000, 0.826434, 0.000000;;, - 249;3; 0.000000, 0.826434, 0.000000;;; - } - } - Animation { - {Armature_Bone_032} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 1;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 2;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 3;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 4;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 5;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 6;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 7;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 8;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 9;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 10;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 11;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 12;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 13;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 14;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 15;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 16;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 17;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 18;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 19;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 20;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 21;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 22;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 23;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 24;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 25;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 26;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 27;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 28;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 29;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 30;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 31;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 32;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 33;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 34;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 35;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 36;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 37;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 38;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 39;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 40;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 41;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 42;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 43;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 44;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 45;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 46;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 47;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 48;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 49;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 50;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 51;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 52;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 53;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 54;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 55;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 56;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 57;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 58;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 59;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 60;4;-0.949096, 0.142195,-0.041751,-0.277852;;, - 61;4;-0.948920, 0.142900,-0.042317,-0.277727;;, - 62;4;-0.948624, 0.144079,-0.043263,-0.277519;;, - 63;4;-0.948207, 0.145735,-0.044593,-0.277227;;, - 64;4;-0.947669, 0.147867,-0.046306,-0.276852;;, - 65;4;-0.947010, 0.150475,-0.048399,-0.276393;;, - 66;4;-0.946229, 0.153552,-0.050870,-0.275853;;, - 67;4;-0.945329, 0.157089,-0.053711,-0.275232;;, - 68;4;-0.944312, 0.161076,-0.056912,-0.274534;;, - 69;4;-0.943180, 0.165496,-0.060461,-0.273761;;, - 70;4;-0.941937, 0.170329,-0.064342,-0.272917;;, - 71;4;-0.940589, 0.175552,-0.068535,-0.272007;;, - 72;4;-0.939141, 0.181135,-0.073018,-0.271036;;, - 73;4;-0.937601, 0.187046,-0.077765,-0.270011;;, - 74;4;-0.935977, 0.193248,-0.082745,-0.268937;;, - 75;4;-0.934278, 0.199699,-0.087925,-0.267824;;, - 76;4;-0.932514, 0.206355,-0.093269,-0.266679;;, - 77;4;-0.930696, 0.213167,-0.098739,-0.265511;;, - 78;4;-0.928837, 0.220084,-0.104293,-0.264329;;, - 79;4;-0.926947, 0.227055,-0.109891,-0.263143;;, - 80;4;-0.925041, 0.234026,-0.115488,-0.261963;;, - 81;4;-0.923130, 0.240943,-0.121042,-0.260797;;, - 82;4;-0.921227, 0.247755,-0.126512,-0.259656;;, - 83;4;-0.919344, 0.254411,-0.131856,-0.258549;;, - 84;4;-0.917494, 0.260862,-0.137036,-0.257484;;, - 85;4;-0.915687, 0.267064,-0.142016,-0.256469;;, - 86;4;-0.913934, 0.272975,-0.146763,-0.255511;;, - 87;4;-0.912243, 0.278558,-0.151246,-0.254618;;, - 88;4;-0.910624, 0.283781,-0.155440,-0.253794;;, - 89;4;-0.909085, 0.288614,-0.159321,-0.253044;;, - 90;4;-0.907630, 0.293034,-0.162870,-0.252374;;, - 91;4;-0.906267, 0.297021,-0.166071,-0.251786;;, - 92;4;-0.904999, 0.300558,-0.168911,-0.251282;;, - 93;4;-0.903830, 0.303635,-0.171382,-0.250865;;, - 94;4;-0.902762, 0.306243,-0.173476,-0.250536;;, - 95;4;-0.901798, 0.308376,-0.175188,-0.250296;;, - 96;4;-0.900939, 0.310031,-0.176518,-0.250145;;, - 97;4;-0.900186, 0.311210,-0.177465,-0.250082;;, - 98;4;-0.899538, 0.311915,-0.178030,-0.250108;;, - 99;4;-0.898995, 0.312148,-0.178218,-0.250221;;, - 100;4;-0.898529, 0.312129,-0.178203,-0.250369;;, - 101;4;-0.898123, 0.311974,-0.178083,-0.250505;;, - 102;4;-0.897787, 0.311500,-0.177714,-0.250629;;, - 103;4;-0.897530, 0.310471,-0.176914,-0.250749;;, - 104;4;-0.897357, 0.308645,-0.175495,-0.250872;;, - 105;4;-0.897262, 0.305821,-0.173300,-0.251008;;, - 106;4;-0.897234, 0.301902,-0.170254,-0.251163;;, - 107;4;-0.897256, 0.296905,-0.166370,-0.251343;;, - 108;4;-0.897310, 0.290929,-0.161726,-0.251548;;, - 109;4;-0.897382, 0.284118,-0.156432,-0.251780;;, - 110;4;-0.898747, 0.273071,-0.147731,-0.252739;;, - 111;4;-0.902699, 0.254348,-0.132832,-0.255133;;, - 112;4;-0.909075, 0.228623,-0.112274,-0.258866;;, - 113;4;-0.917385, 0.197595,-0.087420,-0.263660;;, - 114;4;-0.926782, 0.164061,-0.060520,-0.269037;;, - 115;4;-0.936168, 0.131524,-0.034396,-0.274379;;, - 116;4;-0.944448, 0.103387,-0.011788,-0.279075;;, - 117;4;-0.950774, 0.082185, 0.005254,-0.282655;;, - 118;4;-0.954664, 0.069283, 0.015629,-0.284852;;, - 119;4;-0.955956, 0.065028, 0.019051,-0.285581;;, - 120;4;-0.955563, 0.066732, 0.017692,-0.285338;;, - 121;4;-0.954344, 0.072023, 0.013468,-0.284581;;, - 122;4;-0.952272, 0.081011, 0.006293,-0.283294;;, - 123;4;-0.949401, 0.093468,-0.003651,-0.281512;;, - 124;4;-0.945885, 0.108719,-0.015825,-0.279330;;, - 125;4;-0.941975, 0.125685,-0.029369,-0.276902;;, - 126;4;-0.937957, 0.143116,-0.043284,-0.274408;;, - 127;4;-0.934091, 0.159888,-0.056672,-0.272008;;, - 128;4;-0.930562, 0.175196,-0.068893,-0.269817;;, - 129;4;-0.927475, 0.188588,-0.079583,-0.267901;;, - 130;4;-0.924471, 0.201980,-0.090274,-0.265959;;, - 131;4;-0.921176, 0.217289,-0.102494,-0.263694;;, - 132;4;-0.917661, 0.234061,-0.115883,-0.261182;;, - 133;4;-0.914046, 0.251492,-0.129797,-0.258560;;, - 134;4;-0.910502, 0.268458,-0.143341,-0.256016;;, - 135;4;-0.907216, 0.283709,-0.155515,-0.253760;;, - 136;4;-0.904353, 0.296166,-0.165459,-0.251975;;, - 137;4;-0.902014, 0.305154,-0.172634,-0.250774;;, - 138;4;-0.900233, 0.310445,-0.176858,-0.250195;;, - 139;4;-0.898995, 0.312148,-0.178218,-0.250221;;, - 140;4;-0.898123, 0.311974,-0.178083,-0.250505;;, - 141;4;-0.897530, 0.310471,-0.176914,-0.250749;;, - 142;4;-0.897262, 0.305821,-0.173300,-0.251008;;, - 143;4;-0.897256, 0.296905,-0.166370,-0.251343;;, - 144;4;-0.897382, 0.284118,-0.156432,-0.251780;;, - 145;4;-0.902699, 0.254348,-0.132832,-0.255133;;, - 146;4;-0.917385, 0.197595,-0.087420,-0.263660;;, - 147;4;-0.936168, 0.131524,-0.034396,-0.274379;;, - 148;4;-0.950774, 0.082185, 0.005254,-0.282655;;, - 149;4;-0.955956, 0.065028, 0.019051,-0.285581;;, - 150;4;-0.954344, 0.072023, 0.013468,-0.284581;;, - 151;4;-0.949401, 0.093468,-0.003651,-0.281512;;, - 152;4;-0.941975, 0.125685,-0.029369,-0.276902;;, - 153;4;-0.934091, 0.159888,-0.056672,-0.272008;;, - 154;4;-0.927475, 0.188588,-0.079583,-0.267901;;, - 155;4;-0.920860, 0.217289,-0.102494,-0.263794;;, - 156;4;-0.912976, 0.251492,-0.129797,-0.258900;;, - 157;4;-0.905550, 0.283709,-0.155515,-0.254290;;, - 158;4;-0.900607, 0.305154,-0.172634,-0.251222;;, - 159;4;-0.898995, 0.312148,-0.178218,-0.250221;;, - 160;4;-0.899067, 0.311331,-0.177426,-0.250438;;, - 161;4;-0.899300, 0.308853,-0.175036,-0.251091;;, - 162;4;-0.899718, 0.304693,-0.171046,-0.252173;;, - 163;4;-0.900348, 0.298860,-0.165486,-0.253668;;, - 164;4;-0.901216, 0.291407,-0.158432,-0.255547;;, - 165;4;-0.902351, 0.282435,-0.150013,-0.257764;;, - 166;4;-0.903778, 0.272102,-0.140414,-0.260257;;, - 167;4;-0.905517, 0.260628,-0.129879,-0.262947;;, - 168;4;-0.907585, 0.248287,-0.118706,-0.265742;;, - 169;4;-0.909990, 0.235399,-0.107237,-0.268537;;, - 170;4;-0.912732, 0.222312,-0.095830,-0.271225;;, - 171;4;-0.915799, 0.209379,-0.084846,-0.273702;;, - 172;4;-0.919176, 0.196934,-0.074620,-0.275871;;, - 173;4;-0.922838, 0.185277,-0.065442,-0.277653;;, - 174;4;-0.926757, 0.174656,-0.057547,-0.278984;;, - 175;4;-0.930901, 0.165262,-0.051111,-0.279821;;, - 176;4;-0.935242, 0.157231,-0.046250,-0.280136;;, - 177;4;-0.939749, 0.150648,-0.043030,-0.279918;;, - 178;4;-0.944395, 0.145556,-0.041472,-0.279167;;, - 179;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 180;4;-0.954518, 0.139515,-0.042405,-0.270968;;, - 181;4;-0.960866, 0.137907,-0.043202,-0.252919;;, - 182;4;-0.967873, 0.137142,-0.044137,-0.223867;;, - 183;4;-0.975010, 0.137137,-0.045453,-0.185135;;, - 184;4;-0.981564, 0.137702,-0.047429,-0.139501;;, - 185;4;-0.986775, 0.138557,-0.050318,-0.090916;;, - 186;4;-0.990019, 0.139394,-0.054279,-0.043627;;, - 187;4;-0.990935, 0.139945,-0.059354,-0.001187;;, - 188;4;-0.989443, 0.140032,-0.065480, 0.034094;;, - 189;4;-0.985659, 0.139563,-0.072538, 0.061125;;, - 190;4;-0.980508, 0.119290,-0.089264, 0.084006;;, - 191;4;-0.975169, 0.063621,-0.122264, 0.105452;;, - 192;4;-0.970614,-0.007498,-0.161096, 0.122203;;, - 193;4;-0.967784,-0.062775,-0.190236, 0.131887;;, - 194;4;-0.966901,-0.082381,-0.200394, 0.134754;;, - 195;4;-0.965323,-0.062440,-0.186275, 0.098075;;, - 196;4;-0.960880,-0.006270,-0.146509,-0.005241;;, - 197;4;-0.955175, 0.065851,-0.095448,-0.137898;;, - 198;4;-0.950732, 0.122020,-0.055682,-0.241213;;, - 199;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 200;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 201;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 202;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 203;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 204;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 205;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 206;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 207;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 208;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 209;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 210;4;-0.950140, 0.117902,-0.023048,-0.236905;;, - 211;4;-0.952917, 0.050135, 0.029104,-0.121455;;, - 212;4;-0.956481,-0.036878, 0.096066, 0.026782;;, - 213;4;-0.959257,-0.104645, 0.148218, 0.142232;;, - 214;4;-0.960243,-0.128704, 0.166733, 0.183220;;, - 215;4;-0.954031,-0.110732, 0.152406, 0.174908;;, - 216;4;-0.935179,-0.055631, 0.108478, 0.148819;;, - 217;4;-0.907333, 0.027147, 0.042486, 0.108131;;, - 218;4;-0.878560, 0.115028,-0.027574, 0.062451;;, - 219;4;-0.855470, 0.188772,-0.086363, 0.020805;;, - 220;4;-0.832827, 0.262515,-0.145153,-0.022245;;, - 221;4;-0.805794, 0.350396,-0.215213,-0.073392;;, - 222;4;-0.781470, 0.433174,-0.281205,-0.125154;;, - 223;4;-0.767871, 0.488276,-0.325132,-0.167760;;, - 224;4;-0.768086, 0.506247,-0.339459,-0.196277;;, - 225;4;-0.776053, 0.502670,-0.336535,-0.216535;;, - 226;4;-0.786327, 0.491858,-0.327692,-0.234363;;, - 227;4;-0.798824, 0.473866,-0.312980,-0.249568;;, - 228;4;-0.813340, 0.449070,-0.292703,-0.262010;;, - 229;4;-0.829521, 0.418253,-0.267502,-0.271631;;, - 230;4;-0.846859, 0.382659,-0.238395,-0.278491;;, - 231;4;-0.864697, 0.343979,-0.206764,-0.282793;;, - 232;4;-0.882287, 0.304230,-0.174259,-0.284885;;, - 233;4;-0.898866, 0.265550,-0.142628,-0.285229;;, - 234;4;-0.913742, 0.229956,-0.113521,-0.284352;;, - 235;4;-0.926365, 0.199138,-0.088320,-0.282783;;, - 236;4;-0.936356, 0.174343,-0.068043,-0.281002;;, - 237;4;-0.943509, 0.156351,-0.053330,-0.279406;;, - 238;4;-0.947760, 0.145538,-0.044488,-0.278298;;, - 239;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 240;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 241;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 242;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 243;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 244;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 245;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 246;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 247;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 248;4;-0.949155, 0.141962,-0.041563,-0.277893;;, - 249;4;-0.949155, 0.141962,-0.041563,-0.277893;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3;-0.000000, 0.690756,-0.000000;;, - 1;3;-0.000000, 0.690756,-0.000000;;, - 2;3;-0.000000, 0.690756,-0.000000;;, - 3;3;-0.000000, 0.690756,-0.000000;;, - 4;3;-0.000000, 0.690756,-0.000000;;, - 5;3;-0.000000, 0.690756,-0.000000;;, - 6;3;-0.000000, 0.690756,-0.000000;;, - 7;3;-0.000000, 0.690756,-0.000000;;, - 8;3;-0.000000, 0.690756,-0.000000;;, - 9;3;-0.000000, 0.690756,-0.000000;;, - 10;3;-0.000000, 0.690756,-0.000000;;, - 11;3;-0.000000, 0.690756,-0.000000;;, - 12;3;-0.000000, 0.690756,-0.000000;;, - 13;3;-0.000000, 0.690756,-0.000000;;, - 14;3;-0.000000, 0.690756,-0.000000;;, - 15;3;-0.000000, 0.690756,-0.000000;;, - 16;3;-0.000000, 0.690756,-0.000000;;, - 17;3;-0.000000, 0.690756,-0.000000;;, - 18;3;-0.000000, 0.690756,-0.000000;;, - 19;3;-0.000000, 0.690756,-0.000000;;, - 20;3;-0.000000, 0.690756,-0.000000;;, - 21;3;-0.000000, 0.690756,-0.000000;;, - 22;3;-0.000000, 0.690756,-0.000000;;, - 23;3;-0.000000, 0.690756,-0.000000;;, - 24;3;-0.000000, 0.690756,-0.000000;;, - 25;3;-0.000000, 0.690756,-0.000000;;, - 26;3;-0.000000, 0.690756,-0.000000;;, - 27;3;-0.000000, 0.690756,-0.000000;;, - 28;3;-0.000000, 0.690756,-0.000000;;, - 29;3;-0.000000, 0.690756,-0.000000;;, - 30;3;-0.000000, 0.690756,-0.000000;;, - 31;3;-0.000000, 0.690756,-0.000000;;, - 32;3;-0.000000, 0.690756,-0.000000;;, - 33;3;-0.000000, 0.690756,-0.000000;;, - 34;3;-0.000000, 0.690756,-0.000000;;, - 35;3;-0.000000, 0.690756,-0.000000;;, - 36;3;-0.000000, 0.690756,-0.000000;;, - 37;3;-0.000000, 0.690756,-0.000000;;, - 38;3;-0.000000, 0.690756,-0.000000;;, - 39;3;-0.000000, 0.690756,-0.000000;;, - 40;3;-0.000000, 0.690756,-0.000000;;, - 41;3;-0.000000, 0.690756,-0.000000;;, - 42;3;-0.000000, 0.690756,-0.000000;;, - 43;3;-0.000000, 0.690756,-0.000000;;, - 44;3;-0.000000, 0.690756,-0.000000;;, - 45;3;-0.000000, 0.690756,-0.000000;;, - 46;3;-0.000000, 0.690756,-0.000000;;, - 47;3;-0.000000, 0.690756,-0.000000;;, - 48;3;-0.000000, 0.690756,-0.000000;;, - 49;3;-0.000000, 0.690756,-0.000000;;, - 50;3;-0.000000, 0.690756,-0.000000;;, - 51;3;-0.000000, 0.690756,-0.000000;;, - 52;3;-0.000000, 0.690756,-0.000000;;, - 53;3;-0.000000, 0.690756,-0.000000;;, - 54;3;-0.000000, 0.690756,-0.000000;;, - 55;3;-0.000000, 0.690756,-0.000000;;, - 56;3;-0.000000, 0.690756,-0.000000;;, - 57;3;-0.000000, 0.690756,-0.000000;;, - 58;3;-0.000000, 0.690756,-0.000000;;, - 59;3;-0.000000, 0.690756,-0.000000;;, - 60;3;-0.000000, 0.690756,-0.000000;;, - 61;3;-0.000000, 0.690756,-0.000000;;, - 62;3;-0.000000, 0.690756,-0.000000;;, - 63;3;-0.000000, 0.690756,-0.000000;;, - 64;3;-0.000000, 0.690756,-0.000000;;, - 65;3;-0.000000, 0.690756,-0.000000;;, - 66;3;-0.000000, 0.690756,-0.000000;;, - 67;3;-0.000000, 0.690756,-0.000000;;, - 68;3;-0.000000, 0.690756,-0.000000;;, - 69;3;-0.000000, 0.690756,-0.000000;;, - 70;3;-0.000000, 0.690756,-0.000000;;, - 71;3;-0.000000, 0.690756,-0.000000;;, - 72;3;-0.000000, 0.690756,-0.000000;;, - 73;3;-0.000000, 0.690756,-0.000000;;, - 74;3;-0.000000, 0.690756,-0.000000;;, - 75;3;-0.000000, 0.690756,-0.000000;;, - 76;3;-0.000000, 0.690756,-0.000000;;, - 77;3;-0.000000, 0.690756,-0.000000;;, - 78;3;-0.000000, 0.690756,-0.000000;;, - 79;3;-0.000000, 0.690756,-0.000000;;, - 80;3;-0.000000, 0.690756,-0.000000;;, - 81;3;-0.000000, 0.690756,-0.000000;;, - 82;3;-0.000000, 0.690756,-0.000000;;, - 83;3;-0.000000, 0.690756,-0.000000;;, - 84;3;-0.000000, 0.690756,-0.000000;;, - 85;3;-0.000000, 0.690756,-0.000000;;, - 86;3;-0.000000, 0.690756,-0.000000;;, - 87;3;-0.000000, 0.690756,-0.000000;;, - 88;3;-0.000000, 0.690756,-0.000000;;, - 89;3;-0.000000, 0.690756,-0.000000;;, - 90;3;-0.000000, 0.690756,-0.000000;;, - 91;3;-0.000000, 0.690756,-0.000000;;, - 92;3;-0.000000, 0.690756,-0.000000;;, - 93;3;-0.000000, 0.690756,-0.000000;;, - 94;3;-0.000000, 0.690756,-0.000000;;, - 95;3;-0.000000, 0.690756,-0.000000;;, - 96;3;-0.000000, 0.690756,-0.000000;;, - 97;3;-0.000000, 0.690756,-0.000000;;, - 98;3;-0.000000, 0.690756,-0.000000;;, - 99;3;-0.000000, 0.690756,-0.000000;;, - 100;3;-0.000000, 0.690756,-0.000000;;, - 101;3;-0.000000, 0.690756,-0.000000;;, - 102;3;-0.000000, 0.690756,-0.000000;;, - 103;3;-0.000000, 0.690756,-0.000000;;, - 104;3;-0.000000, 0.690756,-0.000000;;, - 105;3;-0.000000, 0.690756,-0.000000;;, - 106;3;-0.000000, 0.690756,-0.000000;;, - 107;3;-0.000000, 0.690756,-0.000000;;, - 108;3;-0.000000, 0.690756,-0.000000;;, - 109;3;-0.000000, 0.690756,-0.000000;;, - 110;3;-0.000000, 0.690756,-0.000000;;, - 111;3;-0.000000, 0.690756,-0.000000;;, - 112;3;-0.000000, 0.690756,-0.000000;;, - 113;3;-0.000000, 0.690756,-0.000000;;, - 114;3;-0.000000, 0.690756,-0.000000;;, - 115;3;-0.000000, 0.690756,-0.000000;;, - 116;3;-0.000000, 0.690756,-0.000000;;, - 117;3;-0.000000, 0.690756,-0.000000;;, - 118;3;-0.000000, 0.690756,-0.000000;;, - 119;3;-0.000000, 0.690756,-0.000000;;, - 120;3;-0.000000, 0.690756,-0.000000;;, - 121;3;-0.000000, 0.690756,-0.000000;;, - 122;3;-0.000000, 0.690756,-0.000000;;, - 123;3;-0.000000, 0.690756,-0.000000;;, - 124;3;-0.000000, 0.690756,-0.000000;;, - 125;3;-0.000000, 0.690756,-0.000000;;, - 126;3;-0.000000, 0.690756,-0.000000;;, - 127;3;-0.000000, 0.690756,-0.000000;;, - 128;3;-0.000000, 0.690756,-0.000000;;, - 129;3;-0.000000, 0.690756,-0.000000;;, - 130;3;-0.000000, 0.690756,-0.000000;;, - 131;3;-0.000000, 0.690756,-0.000000;;, - 132;3;-0.000000, 0.690756,-0.000000;;, - 133;3;-0.000000, 0.690756,-0.000000;;, - 134;3;-0.000000, 0.690756,-0.000000;;, - 135;3;-0.000000, 0.690756,-0.000000;;, - 136;3;-0.000000, 0.690756,-0.000000;;, - 137;3;-0.000000, 0.690756,-0.000000;;, - 138;3;-0.000000, 0.690756,-0.000000;;, - 139;3;-0.000000, 0.690756,-0.000000;;, - 140;3;-0.000000, 0.690756,-0.000000;;, - 141;3;-0.000000, 0.690756,-0.000000;;, - 142;3;-0.000000, 0.690756,-0.000000;;, - 143;3;-0.000000, 0.690756,-0.000000;;, - 144;3;-0.000000, 0.690756,-0.000000;;, - 145;3;-0.000000, 0.690756,-0.000000;;, - 146;3;-0.000000, 0.690756,-0.000000;;, - 147;3;-0.000000, 0.690756,-0.000000;;, - 148;3;-0.000000, 0.690756,-0.000000;;, - 149;3;-0.000000, 0.690756,-0.000000;;, - 150;3;-0.000000, 0.690756,-0.000000;;, - 151;3;-0.000000, 0.690756,-0.000000;;, - 152;3;-0.000000, 0.690756,-0.000000;;, - 153;3;-0.000000, 0.690756,-0.000000;;, - 154;3;-0.000000, 0.690756,-0.000000;;, - 155;3;-0.000000, 0.690756,-0.000000;;, - 156;3;-0.000000, 0.690756,-0.000000;;, - 157;3;-0.000000, 0.690756,-0.000000;;, - 158;3;-0.000000, 0.690756,-0.000000;;, - 159;3;-0.000000, 0.690756,-0.000000;;, - 160;3;-0.000000, 0.690756,-0.000000;;, - 161;3;-0.000000, 0.690756,-0.000000;;, - 162;3;-0.000000, 0.690756,-0.000000;;, - 163;3;-0.000000, 0.690756,-0.000000;;, - 164;3;-0.000000, 0.690756,-0.000000;;, - 165;3;-0.000000, 0.690756,-0.000000;;, - 166;3;-0.000000, 0.690756,-0.000000;;, - 167;3;-0.000000, 0.690756,-0.000000;;, - 168;3;-0.000000, 0.690756,-0.000000;;, - 169;3;-0.000000, 0.690756,-0.000000;;, - 170;3;-0.000000, 0.690756,-0.000000;;, - 171;3;-0.000000, 0.690756,-0.000000;;, - 172;3;-0.000000, 0.690756,-0.000000;;, - 173;3;-0.000000, 0.690756,-0.000000;;, - 174;3;-0.000000, 0.690756,-0.000000;;, - 175;3;-0.000000, 0.690756,-0.000000;;, - 176;3;-0.000000, 0.690756,-0.000000;;, - 177;3;-0.000000, 0.690756,-0.000000;;, - 178;3;-0.000000, 0.690756,-0.000000;;, - 179;3;-0.000000, 0.690756,-0.000000;;, - 180;3; 0.000000, 0.690756, 0.000000;;, - 181;3; 0.000000, 0.690756, 0.000000;;, - 182;3; 0.000000, 0.690756,-0.000000;;, - 183;3; 0.000000, 0.690756, 0.000000;;, - 184;3; 0.000000, 0.690756, 0.000000;;, - 185;3; 0.000000, 0.690756, 0.000000;;, - 186;3; 0.000000, 0.690756, 0.000000;;, - 187;3; 0.000000, 0.690756, 0.000000;;, - 188;3; 0.000000, 0.690756, 0.000000;;, - 189;3; 0.000000, 0.690756, 0.000000;;, - 190;3; 0.000000, 0.690756,-0.000001;;, - 191;3;-0.000000, 0.690756,-0.000000;;, - 192;3;-0.000000, 0.690756, 0.000000;;, - 193;3; 0.000000, 0.690756,-0.000000;;, - 194;3; 0.000000, 0.690756, 0.000000;;, - 195;3; 0.000000, 0.690756,-0.000000;;, - 196;3; 0.000000, 0.690756,-0.000000;;, - 197;3;-0.000000, 0.690756, 0.000000;;, - 198;3;-0.000000, 0.690756,-0.000000;;, - 199;3;-0.000000, 0.690756,-0.000000;;, - 200;3;-0.000000, 0.690756,-0.000000;;, - 201;3;-0.000000, 0.690756,-0.000000;;, - 202;3;-0.000000, 0.690756,-0.000000;;, - 203;3;-0.000000, 0.690756,-0.000000;;, - 204;3;-0.000000, 0.690756,-0.000000;;, - 205;3;-0.000000, 0.690756,-0.000000;;, - 206;3;-0.000000, 0.690756,-0.000000;;, - 207;3;-0.000000, 0.690756,-0.000000;;, - 208;3;-0.000000, 0.690756,-0.000000;;, - 209;3;-0.000000, 0.690756,-0.000000;;, - 210;3; 0.000000, 0.690756,-0.000000;;, - 211;3; 0.000000, 0.690756,-0.000000;;, - 212;3;-0.000000, 0.690756, 0.000000;;, - 213;3; 0.000000, 0.690756, 0.000000;;, - 214;3; 0.000000, 0.690756, 0.000000;;, - 215;3; 0.000000, 0.690756,-0.000000;;, - 216;3; 0.000000, 0.690756, 0.000000;;, - 217;3; 0.000000, 0.690756, 0.000000;;, - 218;3; 0.000000, 0.690756, 0.000000;;, - 219;3; 0.000000, 0.690756,-0.000000;;, - 220;3; 0.000000, 0.690756, 0.000000;;, - 221;3; 0.000000, 0.690756, 0.000000;;, - 222;3;-0.000000, 0.690756,-0.000000;;, - 223;3;-0.000000, 0.690756,-0.000000;;, - 224;3;-0.000000, 0.690756,-0.000000;;, - 225;3;-0.000000, 0.690756,-0.000000;;, - 226;3; 0.000000, 0.690756,-0.000000;;, - 227;3;-0.000000, 0.690756,-0.000000;;, - 228;3; 0.000000, 0.690756, 0.000000;;, - 229;3;-0.000000, 0.690756,-0.000000;;, - 230;3; 0.000000, 0.690757, 0.000000;;, - 231;3;-0.000000, 0.690756,-0.000000;;, - 232;3; 0.000000, 0.690756,-0.000000;;, - 233;3; 0.000000, 0.690756,-0.000000;;, - 234;3;-0.000000, 0.690756,-0.000000;;, - 235;3;-0.000000, 0.690756,-0.000000;;, - 236;3;-0.000000, 0.690756, 0.000000;;, - 237;3; 0.000000, 0.690756, 0.000000;;, - 238;3; 0.000000, 0.690756,-0.000000;;, - 239;3;-0.000000, 0.690756,-0.000000;;, - 240;3;-0.000000, 0.690756,-0.000000;;, - 241;3;-0.000000, 0.690756,-0.000000;;, - 242;3;-0.000000, 0.690756,-0.000000;;, - 243;3;-0.000000, 0.690756,-0.000000;;, - 244;3;-0.000000, 0.690756,-0.000000;;, - 245;3;-0.000000, 0.690756,-0.000000;;, - 246;3;-0.000000, 0.690756,-0.000000;;, - 247;3;-0.000000, 0.690756,-0.000000;;, - 248;3;-0.000000, 0.690756,-0.000000;;, - 249;3;-0.000000, 0.690756,-0.000000;;; - } - } - Animation { - {Armature_Bone_036} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 1;4;-0.946895,-0.321507, 0.000140, 0.000004;;, - 2;4;-0.946528,-0.322483, 0.000562, 0.000017;;, - 3;4;-0.945914,-0.324114, 0.001268, 0.000038;;, - 4;4;-0.945059,-0.326387, 0.002252, 0.000068;;, - 5;4;-0.943975,-0.329269, 0.003499, 0.000105;;, - 6;4;-0.942684,-0.332700, 0.004985, 0.000150;;, - 7;4;-0.941217,-0.336599, 0.006672, 0.000201;;, - 8;4;-0.939615,-0.340856, 0.008515, 0.000256;;, - 9;4;-0.937930,-0.345337, 0.010454, 0.000314;;, - 10;4;-0.936215,-0.349894, 0.012427, 0.000373;;, - 11;4;-0.934529,-0.354375, 0.014366, 0.000432;;, - 12;4;-0.932927,-0.358632, 0.016209, 0.000487;;, - 13;4;-0.931460,-0.362531, 0.017896, 0.000538;;, - 14;4;-0.930169,-0.365962, 0.019382, 0.000583;;, - 15;4;-0.929085,-0.368844, 0.020629, 0.000620;;, - 16;4;-0.928230,-0.371117, 0.021612, 0.000650;;, - 17;4;-0.927616,-0.372748, 0.022319, 0.000671;;, - 18;4;-0.927249,-0.373724, 0.022741, 0.000684;;, - 19;4;-0.927127,-0.374047, 0.022881, 0.000688;;, - 20;4;-0.927161,-0.373958, 0.022842, 0.000687;;, - 21;4;-0.927264,-0.373683, 0.022723, 0.000683;;, - 22;4;-0.927440,-0.373216, 0.022521, 0.000677;;, - 23;4;-0.927690,-0.372551, 0.022233, 0.000668;;, - 24;4;-0.928015,-0.371687, 0.021859, 0.000657;;, - 25;4;-0.928414,-0.370628, 0.021401, 0.000643;;, - 26;4;-0.928883,-0.369382, 0.020862, 0.000627;;, - 27;4;-0.929416,-0.367963, 0.020248, 0.000609;;, - 28;4;-0.930007,-0.366394, 0.019568, 0.000588;;, - 29;4;-0.930644,-0.364701, 0.018836, 0.000566;;, - 30;4;-0.931315,-0.362916, 0.018063, 0.000543;;, - 31;4;-0.932009,-0.361072, 0.017265, 0.000519;;, - 32;4;-0.932712,-0.359203, 0.016456, 0.000495;;, - 33;4;-0.933412,-0.357343, 0.015651, 0.000470;;, - 34;4;-0.934099,-0.355519, 0.014861, 0.000447;;, - 35;4;-0.934762,-0.353755, 0.014098, 0.000424;;, - 36;4;-0.935396,-0.352071, 0.013369, 0.000402;;, - 37;4;-0.935994,-0.350480, 0.012680, 0.000381;;, - 38;4;-0.936554,-0.348993, 0.012037, 0.000362;;, - 39;4;-0.937072,-0.347615, 0.011440, 0.000344;;, - 40;4;-0.937590,-0.346238, 0.010844, 0.000326;;, - 41;4;-0.938150,-0.344751, 0.010200, 0.000307;;, - 42;4;-0.938748,-0.343160, 0.009512, 0.000286;;, - 43;4;-0.939382,-0.341476, 0.008783, 0.000264;;, - 44;4;-0.940046,-0.339712, 0.008020, 0.000241;;, - 45;4;-0.940732,-0.337888, 0.007230, 0.000217;;, - 46;4;-0.941432,-0.336028, 0.006425, 0.000193;;, - 47;4;-0.942135,-0.334159, 0.005616, 0.000169;;, - 48;4;-0.942829,-0.332315, 0.004818, 0.000145;;, - 49;4;-0.943501,-0.330530, 0.004045, 0.000122;;, - 50;4;-0.944138,-0.328837, 0.003312, 0.000100;;, - 51;4;-0.944728,-0.327267, 0.002633, 0.000079;;, - 52;4;-0.945262,-0.325849, 0.002019, 0.000061;;, - 53;4;-0.945731,-0.324603, 0.001480, 0.000044;;, - 54;4;-0.946129,-0.323543, 0.001021, 0.000031;;, - 55;4;-0.946454,-0.322680, 0.000648, 0.000019;;, - 56;4;-0.946704,-0.322015, 0.000360, 0.000011;;, - 57;4;-0.946880,-0.321548, 0.000158, 0.000005;;, - 58;4;-0.946983,-0.321273, 0.000039, 0.000001;;, - 59;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 60;4;-0.946872,-0.321473, 0.000130, 0.000004;;, - 61;4;-0.946436,-0.322344, 0.000521, 0.000016;;, - 62;4;-0.945706,-0.323803, 0.001176, 0.000035;;, - 63;4;-0.944680,-0.325852, 0.002096, 0.000063;;, - 64;4;-0.943358,-0.328492, 0.003281, 0.000099;;, - 65;4;-0.941743,-0.331718, 0.004730, 0.000142;;, - 66;4;-0.939837,-0.335526, 0.006440, 0.000194;;, - 67;4;-0.937645,-0.339903, 0.008405, 0.000253;;, - 68;4;-0.935175,-0.344836, 0.010621, 0.000319;;, - 69;4;-0.932437,-0.350305, 0.013076, 0.000393;;, - 70;4;-0.929443,-0.356286, 0.015762, 0.000474;;, - 71;4;-0.926208,-0.362749, 0.018664, 0.000561;;, - 72;4;-0.922749,-0.369658, 0.021766, 0.000654;;, - 73;4;-0.919087,-0.376973, 0.025051, 0.000753;;, - 74;4;-0.915244,-0.384647, 0.028496, 0.000857;;, - 75;4;-0.911248,-0.392630, 0.032081, 0.000964;;, - 76;4;-0.907124,-0.400866, 0.035779, 0.001075;;, - 77;4;-0.902904,-0.409295, 0.039564, 0.001189;;, - 78;4;-0.898619,-0.417855, 0.043408, 0.001305;;, - 79;4;-0.894301,-0.426480, 0.047281, 0.001421;;, - 80;4;-0.889982,-0.435106, 0.051154, 0.001538;;, - 81;4;-0.885697,-0.443666, 0.054997, 0.001653;;, - 82;4;-0.881477,-0.452095, 0.058782, 0.001767;;, - 83;4;-0.877353,-0.460331, 0.062480, 0.001878;;, - 84;4;-0.873357,-0.468314, 0.066065, 0.001986;;, - 85;4;-0.869515,-0.475988, 0.069511, 0.002089;;, - 86;4;-0.865853,-0.483303, 0.072795, 0.002188;;, - 87;4;-0.862394,-0.490212, 0.075898, 0.002281;;, - 88;4;-0.859158,-0.496674, 0.078799, 0.002368;;, - 89;4;-0.856164,-0.502655, 0.081485, 0.002449;;, - 90;4;-0.853426,-0.508124, 0.083941, 0.002523;;, - 91;4;-0.850956,-0.513057, 0.086156, 0.002590;;, - 92;4;-0.848764,-0.517435, 0.088122, 0.002649;;, - 93;4;-0.846858,-0.521242, 0.089831, 0.002700;;, - 94;4;-0.845243,-0.524469, 0.091280, 0.002744;;, - 95;4;-0.843921,-0.527108, 0.092465, 0.002779;;, - 96;4;-0.842896,-0.529157, 0.093385, 0.002807;;, - 97;4;-0.842165,-0.530616, 0.094040, 0.002827;;, - 98;4;-0.841729,-0.531488, 0.094432, 0.002838;;, - 99;4;-0.841584,-0.531777, 0.094561, 0.002842;;, - 100;4;-0.842588,-0.529085, 0.093397, 0.002807;;, - 101;4;-0.845705,-0.520721, 0.089781, 0.002699;;, - 102;4;-0.851001,-0.506515, 0.083639, 0.002514;;, - 103;4;-0.858341,-0.486826, 0.075126, 0.002258;;, - 104;4;-0.867326,-0.462721, 0.064703, 0.001945;;, - 105;4;-0.877323,-0.435904, 0.053108, 0.001596;;, - 106;4;-0.887593,-0.408353, 0.041196, 0.001238;;, - 107;4;-0.897475,-0.381844, 0.029734, 0.000894;;, - 108;4;-0.906495,-0.357647, 0.019272, 0.000579;;, - 109;4;-0.914386,-0.336481, 0.010120, 0.000304;;, - 110;4;-0.922276,-0.315314, 0.000968, 0.000029;;, - 111;4;-0.931296,-0.291117,-0.009494,-0.000285;;, - 112;4;-0.941178,-0.264608,-0.020956,-0.000630;;, - 113;4;-0.951448,-0.237057,-0.032869,-0.000988;;, - 114;4;-0.961445,-0.210240,-0.044464,-0.001336;;, - 115;4;-0.970431,-0.186135,-0.054886,-0.001650;;, - 116;4;-0.977770,-0.166446,-0.063399,-0.001906;;, - 117;4;-0.983066,-0.152240,-0.069542,-0.002090;;, - 118;4;-0.986184,-0.143877,-0.073158,-0.002199;;, - 119;4;-0.987187,-0.141184,-0.074322,-0.002234;;, - 120;4;-0.986184,-0.143877,-0.073158,-0.002199;;, - 121;4;-0.983066,-0.152240,-0.069542,-0.002090;;, - 122;4;-0.977770,-0.166446,-0.063399,-0.001906;;, - 123;4;-0.970431,-0.186135,-0.054886,-0.001650;;, - 124;4;-0.961445,-0.210240,-0.044464,-0.001336;;, - 125;4;-0.951448,-0.237057,-0.032869,-0.000988;;, - 126;4;-0.941178,-0.264608,-0.020956,-0.000630;;, - 127;4;-0.931296,-0.291117,-0.009494,-0.000285;;, - 128;4;-0.922276,-0.315314, 0.000968, 0.000029;;, - 129;4;-0.914386,-0.336481, 0.010120, 0.000304;;, - 130;4;-0.906495,-0.357647, 0.019272, 0.000579;;, - 131;4;-0.897475,-0.381844, 0.029734, 0.000894;;, - 132;4;-0.887593,-0.408353, 0.041196, 0.001238;;, - 133;4;-0.877323,-0.435904, 0.053108, 0.001596;;, - 134;4;-0.867326,-0.462721, 0.064703, 0.001945;;, - 135;4;-0.858341,-0.486826, 0.075126, 0.002258;;, - 136;4;-0.851001,-0.506515, 0.083639, 0.002514;;, - 137;4;-0.845705,-0.520721, 0.089781, 0.002699;;, - 138;4;-0.842588,-0.529085, 0.093397, 0.002807;;, - 139;4;-0.841584,-0.531777, 0.094561, 0.002842;;, - 140;4;-0.845705,-0.520721, 0.089781, 0.002699;;, - 141;4;-0.858341,-0.486826, 0.075126, 0.002258;;, - 142;4;-0.877323,-0.435904, 0.053108, 0.001596;;, - 143;4;-0.897475,-0.381844, 0.029734, 0.000894;;, - 144;4;-0.914386,-0.336481, 0.010120, 0.000304;;, - 145;4;-0.931296,-0.291117,-0.009494,-0.000285;;, - 146;4;-0.951448,-0.237057,-0.032869,-0.000988;;, - 147;4;-0.970431,-0.186135,-0.054886,-0.001650;;, - 148;4;-0.983066,-0.152240,-0.069542,-0.002090;;, - 149;4;-0.987187,-0.141184,-0.074322,-0.002234;;, - 150;4;-0.983066,-0.152240,-0.069542,-0.002090;;, - 151;4;-0.970431,-0.186135,-0.054886,-0.001650;;, - 152;4;-0.951448,-0.237057,-0.032869,-0.000988;;, - 153;4;-0.931296,-0.291117,-0.009494,-0.000285;;, - 154;4;-0.914386,-0.336481, 0.010120, 0.000304;;, - 155;4;-0.897475,-0.381844, 0.029734, 0.000894;;, - 156;4;-0.877323,-0.435904, 0.053108, 0.001596;;, - 157;4;-0.858341,-0.486826, 0.075126, 0.002258;;, - 158;4;-0.845705,-0.520721, 0.089781, 0.002699;;, - 159;4;-0.841584,-0.531777, 0.094561, 0.002842;;, - 160;4;-0.842165,-0.530616, 0.094040, 0.002827;;, - 161;4;-0.843921,-0.527108, 0.092465, 0.002779;;, - 162;4;-0.846858,-0.521242, 0.089831, 0.002700;;, - 163;4;-0.850956,-0.513057, 0.086156, 0.002590;;, - 164;4;-0.856164,-0.502655, 0.081485, 0.002449;;, - 165;4;-0.862394,-0.490212, 0.075898, 0.002281;;, - 166;4;-0.869515,-0.475988, 0.069511, 0.002089;;, - 167;4;-0.877353,-0.460331, 0.062480, 0.001878;;, - 168;4;-0.885697,-0.443666, 0.054997, 0.001653;;, - 169;4;-0.894301,-0.426480, 0.047281, 0.001421;;, - 170;4;-0.902904,-0.409295, 0.039564, 0.001189;;, - 171;4;-0.911248,-0.392630, 0.032081, 0.000964;;, - 172;4;-0.919087,-0.376973, 0.025051, 0.000753;;, - 173;4;-0.926208,-0.362749, 0.018664, 0.000561;;, - 174;4;-0.932437,-0.350305, 0.013076, 0.000393;;, - 175;4;-0.937645,-0.339903, 0.008405, 0.000253;;, - 176;4;-0.941743,-0.331718, 0.004730, 0.000142;;, - 177;4;-0.944680,-0.325852, 0.002096, 0.000063;;, - 178;4;-0.946436,-0.322344, 0.000521, 0.000016;;, - 179;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 180;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 181;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 182;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 183;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 184;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 185;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 186;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 187;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 188;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 189;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 190;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 191;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 192;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 193;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 194;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 195;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 196;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 197;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 198;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 199;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 200;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 201;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 202;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 203;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 204;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 205;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 206;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 207;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 208;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 209;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 210;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 211;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 212;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 213;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 214;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 215;4;-0.947920,-0.317686,-0.001460,-0.000044;;, - 216;4;-0.950689,-0.306963,-0.005937,-0.000178;;, - 217;4;-0.954848,-0.290854,-0.012662,-0.000381;;, - 218;4;-0.959263,-0.273751,-0.019801,-0.000595;;, - 219;4;-0.962969,-0.259400,-0.025792,-0.000775;;, - 220;4;-0.966674,-0.245049,-0.031783,-0.000955;;, - 221;4;-0.971089,-0.227947,-0.038923,-0.001170;;, - 222;4;-0.975249,-0.211837,-0.045648,-0.001372;;, - 223;4;-0.978017,-0.201114,-0.050124,-0.001507;;, - 224;4;-0.978920,-0.197616,-0.051584,-0.001550;;, - 225;4;-0.978607,-0.198830,-0.051078,-0.001535;;, - 226;4;-0.977660,-0.202497,-0.049547,-0.001489;;, - 227;4;-0.976084,-0.208600,-0.046999,-0.001413;;, - 228;4;-0.973913,-0.217011,-0.043488,-0.001307;;, - 229;4;-0.971214,-0.227465,-0.039124,-0.001176;;, - 230;4;-0.968097,-0.239538,-0.034084,-0.001024;;, - 231;4;-0.964709,-0.252659,-0.028606,-0.000860;;, - 232;4;-0.961228,-0.266142,-0.022978,-0.000691;;, - 233;4;-0.957841,-0.279262,-0.017501,-0.000526;;, - 234;4;-0.954723,-0.291336,-0.012460,-0.000375;;, - 235;4;-0.952024,-0.301789,-0.008096,-0.000243;;, - 236;4;-0.949853,-0.310200,-0.004585,-0.000138;;, - 237;4;-0.948277,-0.316303,-0.002038,-0.000061;;, - 238;4;-0.947330,-0.319970,-0.000507,-0.000015;;, - 239;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 240;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 241;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 242;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 243;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 244;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 245;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 246;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 247;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 248;4;-0.947017,-0.321184,-0.000000,-0.000000;;, - 249;4;-0.947017,-0.321184,-0.000000,-0.000000;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3;-0.000000, 1.279915,-0.000000;;, - 1;3;-0.000000, 1.279915,-0.000000;;, - 2;3;-0.000000, 1.279915,-0.000000;;, - 3;3;-0.000000, 1.279915,-0.000000;;, - 4;3;-0.000000, 1.279915,-0.000000;;, - 5;3;-0.000000, 1.279915,-0.000000;;, - 6;3;-0.000000, 1.279915,-0.000000;;, - 7;3;-0.000000, 1.279915,-0.000000;;, - 8;3;-0.000000, 1.279915,-0.000000;;, - 9;3;-0.000000, 1.279915,-0.000000;;, - 10;3;-0.000000, 1.279915,-0.000000;;, - 11;3;-0.000000, 1.279915,-0.000000;;, - 12;3;-0.000000, 1.279915,-0.000000;;, - 13;3;-0.000000, 1.279915,-0.000000;;, - 14;3;-0.000000, 1.279915,-0.000000;;, - 15;3;-0.000000, 1.279915,-0.000000;;, - 16;3;-0.000000, 1.279915,-0.000000;;, - 17;3;-0.000000, 1.279915,-0.000000;;, - 18;3;-0.000000, 1.279915,-0.000000;;, - 19;3;-0.000000, 1.279915,-0.000000;;, - 20;3;-0.000000, 1.279915,-0.000000;;, - 21;3;-0.000000, 1.279915,-0.000000;;, - 22;3;-0.000000, 1.279915,-0.000000;;, - 23;3;-0.000000, 1.279915,-0.000000;;, - 24;3;-0.000000, 1.279915,-0.000000;;, - 25;3;-0.000000, 1.279915,-0.000000;;, - 26;3;-0.000000, 1.279915,-0.000000;;, - 27;3;-0.000000, 1.279915,-0.000000;;, - 28;3;-0.000000, 1.279915,-0.000000;;, - 29;3;-0.000000, 1.279915,-0.000000;;, - 30;3;-0.000000, 1.279915,-0.000000;;, - 31;3;-0.000000, 1.279915,-0.000000;;, - 32;3;-0.000000, 1.279915,-0.000000;;, - 33;3;-0.000000, 1.279915,-0.000000;;, - 34;3;-0.000000, 1.279915,-0.000000;;, - 35;3;-0.000000, 1.279915,-0.000000;;, - 36;3;-0.000000, 1.279915,-0.000000;;, - 37;3;-0.000000, 1.279915,-0.000000;;, - 38;3;-0.000000, 1.279915,-0.000000;;, - 39;3;-0.000000, 1.279915,-0.000000;;, - 40;3;-0.000000, 1.279915,-0.000000;;, - 41;3;-0.000000, 1.279915,-0.000000;;, - 42;3;-0.000000, 1.279915,-0.000000;;, - 43;3;-0.000000, 1.279915,-0.000000;;, - 44;3;-0.000000, 1.279915,-0.000000;;, - 45;3;-0.000000, 1.279915,-0.000000;;, - 46;3;-0.000000, 1.279915,-0.000000;;, - 47;3;-0.000000, 1.279915,-0.000000;;, - 48;3;-0.000000, 1.279915,-0.000000;;, - 49;3;-0.000000, 1.279915,-0.000000;;, - 50;3;-0.000000, 1.279915,-0.000000;;, - 51;3;-0.000000, 1.279915,-0.000000;;, - 52;3;-0.000000, 1.279915,-0.000000;;, - 53;3;-0.000000, 1.279915,-0.000000;;, - 54;3;-0.000000, 1.279915,-0.000000;;, - 55;3;-0.000000, 1.279915,-0.000000;;, - 56;3;-0.000000, 1.279915,-0.000000;;, - 57;3;-0.000000, 1.279915,-0.000000;;, - 58;3;-0.000000, 1.279915,-0.000000;;, - 59;3;-0.000000, 1.279915,-0.000000;;, - 60;3;-0.000000, 1.279916,-0.000000;;, - 61;3;-0.000000, 1.279916,-0.000000;;, - 62;3; 0.000000, 1.279916, 0.000000;;, - 63;3;-0.000000, 1.279915, 0.000000;;, - 64;3;-0.000000, 1.279916, 0.000000;;, - 65;3;-0.000000, 1.279916,-0.000000;;, - 66;3; 0.000000, 1.279916,-0.000000;;, - 67;3;-0.000000, 1.279916,-0.000000;;, - 68;3; 0.000000, 1.279916,-0.000000;;, - 69;3; 0.000000, 1.279916, 0.000000;;, - 70;3; 0.000000, 1.279915,-0.000000;;, - 71;3; 0.000000, 1.279916,-0.000000;;, - 72;3;-0.000000, 1.279916,-0.000000;;, - 73;3;-0.000000, 1.279916,-0.000000;;, - 74;3;-0.000000, 1.279915, 0.000000;;, - 75;3;-0.000000, 1.279916, 0.000000;;, - 76;3;-0.000000, 1.279916,-0.000000;;, - 77;3;-0.000000, 1.279916, 0.000000;;, - 78;3;-0.000000, 1.279916,-0.000000;;, - 79;3; 0.000000, 1.279916, 0.000000;;, - 80;3;-0.000000, 1.279916, 0.000000;;, - 81;3;-0.000000, 1.279915, 0.000000;;, - 82;3;-0.000000, 1.279916,-0.000000;;, - 83;3; 0.000000, 1.279915,-0.000000;;, - 84;3; 0.000000, 1.279916,-0.000000;;, - 85;3;-0.000000, 1.279915, 0.000000;;, - 86;3; 0.000000, 1.279916, 0.000000;;, - 87;3; 0.000000, 1.279916, 0.000000;;, - 88;3; 0.000000, 1.279916,-0.000000;;, - 89;3; 0.000000, 1.279916, 0.000000;;, - 90;3;-0.000000, 1.279916, 0.000000;;, - 91;3; 0.000000, 1.279915,-0.000000;;, - 92;3;-0.000000, 1.279916,-0.000000;;, - 93;3;-0.000000, 1.279916, 0.000000;;, - 94;3; 0.000000, 1.279916,-0.000000;;, - 95;3; 0.000000, 1.279916, 0.000000;;, - 96;3;-0.000000, 1.279916,-0.000000;;, - 97;3; 0.000000, 1.279916, 0.000000;;, - 98;3; 0.000000, 1.279915, 0.000000;;, - 99;3; 0.000000, 1.279916, 0.000000;;, - 100;3; 0.000000, 1.279916,-0.000000;;, - 101;3; 0.000000, 1.279916, 0.000000;;, - 102;3; 0.000000, 1.279916,-0.000000;;, - 103;3; 0.000000, 1.279916, 0.000000;;, - 104;3;-0.000000, 1.279916,-0.000000;;, - 105;3;-0.000000, 1.279916,-0.000000;;, - 106;3; 0.000000, 1.279916,-0.000000;;, - 107;3; 0.000000, 1.279916, 0.000000;;, - 108;3;-0.000000, 1.279916, 0.000000;;, - 109;3; 0.000000, 1.279916,-0.000000;;, - 110;3; 0.000000, 1.279916, 0.000000;;, - 111;3;-0.000000, 1.279916, 0.000000;;, - 112;3; 0.000000, 1.279916,-0.000000;;, - 113;3;-0.000000, 1.279915,-0.000000;;, - 114;3;-0.000000, 1.279916, 0.000000;;, - 115;3;-0.000000, 1.279915,-0.000000;;, - 116;3;-0.000000, 1.279916, 0.000000;;, - 117;3;-0.000000, 1.279916, 0.000000;;, - 118;3; 0.000000, 1.279916,-0.000000;;, - 119;3; 0.000000, 1.279916, 0.000000;;, - 120;3; 0.000000, 1.279916, 0.000000;;, - 121;3; 0.000000, 1.279915, 0.000000;;, - 122;3; 0.000000, 1.279916,-0.000000;;, - 123;3; 0.000000, 1.279916, 0.000000;;, - 124;3;-0.000000, 1.279916, 0.000000;;, - 125;3; 0.000000, 1.279915,-0.000000;;, - 126;3;-0.000000, 1.279916, 0.000000;;, - 127;3;-0.000000, 1.279915, 0.000000;;, - 128;3; 0.000000, 1.279916,-0.000000;;, - 129;3; 0.000000, 1.279916, 0.000000;;, - 130;3;-0.000000, 1.279916,-0.000000;;, - 131;3; 0.000000, 1.279916, 0.000000;;, - 132;3; 0.000000, 1.279916, 0.000000;;, - 133;3; 0.000000, 1.279916,-0.000000;;, - 134;3; 0.000000, 1.279916,-0.000000;;, - 135;3; 0.000000, 1.279916,-0.000000;;, - 136;3;-0.000000, 1.279915,-0.000000;;, - 137;3; 0.000000, 1.279916, 0.000000;;, - 138;3;-0.000000, 1.279916, 0.000000;;, - 139;3; 0.000000, 1.279916, 0.000000;;, - 140;3; 0.000000, 1.279916, 0.000000;;, - 141;3; 0.000000, 1.279916, 0.000000;;, - 142;3;-0.000000, 1.279916,-0.000000;;, - 143;3; 0.000000, 1.279916, 0.000000;;, - 144;3; 0.000000, 1.279916,-0.000000;;, - 145;3;-0.000000, 1.279916, 0.000000;;, - 146;3;-0.000000, 1.279915,-0.000000;;, - 147;3;-0.000000, 1.279915,-0.000000;;, - 148;3;-0.000000, 1.279916, 0.000000;;, - 149;3; 0.000000, 1.279916, 0.000000;;, - 150;3; 0.000000, 1.279915, 0.000000;;, - 151;3; 0.000000, 1.279916, 0.000000;;, - 152;3; 0.000000, 1.279915,-0.000000;;, - 153;3;-0.000000, 1.279915, 0.000000;;, - 154;3; 0.000000, 1.279916, 0.000000;;, - 155;3; 0.000000, 1.279916,-0.000000;;, - 156;3; 0.000000, 1.279916,-0.000000;;, - 157;3; 0.000000, 1.279916, 0.000000;;, - 158;3; 0.000000, 1.279916, 0.000000;;, - 159;3; 0.000000, 1.279916, 0.000000;;, - 160;3; 0.000000, 1.279916,-0.000000;;, - 161;3; 0.000000, 1.279915, 0.000000;;, - 162;3; 0.000000, 1.279916,-0.000000;;, - 163;3; 0.000000, 1.279915,-0.000000;;, - 164;3; 0.000000, 1.279915, 0.000000;;, - 165;3; 0.000000, 1.279916, 0.000000;;, - 166;3;-0.000000, 1.279916,-0.000000;;, - 167;3; 0.000000, 1.279915, 0.000000;;, - 168;3; 0.000000, 1.279916,-0.000000;;, - 169;3;-0.000000, 1.279915, 0.000000;;, - 170;3; 0.000000, 1.279916, 0.000000;;, - 171;3; 0.000000, 1.279916, 0.000000;;, - 172;3; 0.000000, 1.279915, 0.000000;;, - 173;3; 0.000000, 1.279915,-0.000000;;, - 174;3; 0.000000, 1.279916,-0.000000;;, - 175;3; 0.000000, 1.279916,-0.000000;;, - 176;3; 0.000000, 1.279915, 0.000000;;, - 177;3;-0.000000, 1.279916,-0.000000;;, - 178;3; 0.000000, 1.279915, 0.000000;;, - 179;3;-0.000000, 1.279915,-0.000000;;, - 180;3; 0.000000, 1.279916,-0.000000;;, - 181;3; 0.000000, 1.279916, 0.000000;;, - 182;3; 0.000000, 1.279915, 0.000000;;, - 183;3; 0.000000, 1.279916,-0.000000;;, - 184;3;-0.000000, 1.279916, 0.000000;;, - 185;3; 0.000000, 1.279915, 0.000000;;, - 186;3;-0.000000, 1.279916, 0.000001;;, - 187;3; 0.000000, 1.279915, 0.000000;;, - 188;3;-0.000000, 1.279916, 0.000000;;, - 189;3;-0.000000, 1.279916, 0.000000;;, - 190;3;-0.000000, 1.279916,-0.000000;;, - 191;3; 0.000000, 1.279916, 0.000000;;, - 192;3; 0.000000, 1.279915, 0.000000;;, - 193;3;-0.000000, 1.279916, 0.000000;;, - 194;3;-0.000000, 1.279915, 0.000000;;, - 195;3; 0.000000, 1.279916, 0.000000;;, - 196;3; 0.000000, 1.279916,-0.000000;;, - 197;3; 0.000000, 1.279916,-0.000000;;, - 198;3; 0.000000, 1.279916, 0.000000;;, - 199;3;-0.000000, 1.279915,-0.000000;;, - 200;3;-0.000000, 1.279915,-0.000000;;, - 201;3;-0.000000, 1.279915,-0.000000;;, - 202;3;-0.000000, 1.279915,-0.000000;;, - 203;3;-0.000000, 1.279915,-0.000000;;, - 204;3;-0.000000, 1.279915,-0.000000;;, - 205;3;-0.000000, 1.279915,-0.000000;;, - 206;3;-0.000000, 1.279915,-0.000000;;, - 207;3;-0.000000, 1.279915,-0.000000;;, - 208;3;-0.000000, 1.279915,-0.000000;;, - 209;3;-0.000000, 1.279915,-0.000000;;, - 210;3;-0.000000, 1.279916,-0.000000;;, - 211;3; 0.000000, 1.279916, 0.000000;;, - 212;3;-0.000000, 1.279916, 0.000000;;, - 213;3; 0.000000, 1.279916,-0.000000;;, - 214;3;-0.000000, 1.279916,-0.000000;;, - 215;3;-0.000000, 1.279915, 0.000000;;, - 216;3; 0.000000, 1.279916,-0.000000;;, - 217;3;-0.000000, 1.279915,-0.000000;;, - 218;3;-0.000000, 1.279916,-0.000000;;, - 219;3;-0.000000, 1.279916,-0.000000;;, - 220;3; 0.000000, 1.279916,-0.000000;;, - 221;3;-0.000000, 1.279915, 0.000000;;, - 222;3; 0.000000, 1.279916, 0.000000;;, - 223;3;-0.000000, 1.279916,-0.000000;;, - 224;3;-0.000000, 1.279915, 0.000000;;, - 225;3;-0.000000, 1.279915,-0.000000;;, - 226;3;-0.000000, 1.279915, 0.000000;;, - 227;3;-0.000000, 1.279915,-0.000000;;, - 228;3; 0.000000, 1.279916,-0.000000;;, - 229;3; 0.000000, 1.279916, 0.000000;;, - 230;3;-0.000000, 1.279916, 0.000000;;, - 231;3; 0.000000, 1.279916, 0.000000;;, - 232;3; 0.000000, 1.279916, 0.000001;;, - 233;3; 0.000000, 1.279916,-0.000000;;, - 234;3; 0.000000, 1.279916,-0.000000;;, - 235;3; 0.000000, 1.279915,-0.000000;;, - 236;3; 0.000000, 1.279916,-0.000000;;, - 237;3;-0.000000, 1.279915, 0.000000;;, - 238;3; 0.000000, 1.279916,-0.000000;;, - 239;3;-0.000000, 1.279915,-0.000000;;, - 240;3;-0.000000, 1.279915,-0.000000;;, - 241;3;-0.000000, 1.279915,-0.000000;;, - 242;3;-0.000000, 1.279915,-0.000000;;, - 243;3;-0.000000, 1.279915,-0.000000;;, - 244;3;-0.000000, 1.279915,-0.000000;;, - 245;3;-0.000000, 1.279915,-0.000000;;, - 246;3;-0.000000, 1.279915,-0.000000;;, - 247;3;-0.000000, 1.279915,-0.000000;;, - 248;3;-0.000000, 1.279915,-0.000000;;, - 249;3;-0.000000, 1.279915,-0.000000;;; - } - } - Animation { - {Armature_Bone_040} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 1;4;-0.968777,-0.247868, 0.000138, 0.000096;;, - 2;4;-0.968419,-0.249070, 0.000555, 0.000386;;, - 3;4;-0.967820,-0.251078, 0.001253, 0.000870;;, - 4;4;-0.966987,-0.253876, 0.002224, 0.001545;;, - 5;4;-0.965930,-0.257423, 0.003456, 0.002400;;, - 6;4;-0.964671,-0.261647, 0.004923, 0.003419;;, - 7;4;-0.963241,-0.266447, 0.006589, 0.004577;;, - 8;4;-0.961680,-0.271686, 0.008409, 0.005841;;, - 9;4;-0.960036,-0.277202, 0.010324, 0.007171;;, - 10;4;-0.958364,-0.282813, 0.012272, 0.008524;;, - 11;4;-0.956721,-0.288329, 0.014188, 0.009855;;, - 12;4;-0.955159,-0.293568, 0.016007, 0.011119;;, - 13;4;-0.953729,-0.298367, 0.017674, 0.012276;;, - 14;4;-0.952470,-0.302592, 0.019141, 0.013295;;, - 15;4;-0.951414,-0.306139, 0.020372, 0.014151;;, - 16;4;-0.950580,-0.308937, 0.021344, 0.014826;;, - 17;4;-0.949981,-0.310945, 0.022041, 0.015310;;, - 18;4;-0.949623,-0.312147, 0.022458, 0.015600;;, - 19;4;-0.949505,-0.312544, 0.022597, 0.015696;;, - 20;4;-0.949538,-0.312434, 0.022558, 0.015669;;, - 21;4;-0.949638,-0.312096, 0.022441, 0.015587;;, - 22;4;-0.949810,-0.311520, 0.022241, 0.015449;;, - 23;4;-0.950054,-0.310702, 0.021957, 0.015251;;, - 24;4;-0.950370,-0.309639, 0.021588, 0.014995;;, - 25;4;-0.950759,-0.308335, 0.021135, 0.014681;;, - 26;4;-0.951216,-0.306801, 0.020602, 0.014310;;, - 27;4;-0.951736,-0.305055, 0.019996, 0.013889;;, - 28;4;-0.952312,-0.303123, 0.019325, 0.013423;;, - 29;4;-0.952933,-0.301039, 0.018601, 0.012921;;, - 30;4;-0.953588,-0.298841, 0.017838, 0.012391;;, - 31;4;-0.954264,-0.296572, 0.017050, 0.011843;;, - 32;4;-0.954950,-0.294272, 0.016251, 0.011288;;, - 33;4;-0.955632,-0.291982, 0.015456, 0.010736;;, - 34;4;-0.956301,-0.289736, 0.014676, 0.010194;;, - 35;4;-0.956948,-0.287565, 0.013923, 0.009671;;, - 36;4;-0.957566,-0.285492, 0.013203, 0.009171;;, - 37;4;-0.958149,-0.283534, 0.012523, 0.008698;;, - 38;4;-0.958695,-0.281703, 0.011887, 0.008257;;, - 39;4;-0.959200,-0.280007, 0.011298, 0.007848;;, - 40;4;-0.959705,-0.278312, 0.010709, 0.007439;;, - 41;4;-0.960251,-0.276481, 0.010074, 0.006997;;, - 42;4;-0.960834,-0.274523, 0.009394, 0.006525;;, - 43;4;-0.961452,-0.272450, 0.008674, 0.006025;;, - 44;4;-0.962099,-0.270279, 0.007920, 0.005501;;, - 45;4;-0.962768,-0.268033, 0.007140, 0.004960;;, - 46;4;-0.963451,-0.265743, 0.006345, 0.004407;;, - 47;4;-0.964136,-0.263443, 0.005546, 0.003853;;, - 48;4;-0.964812,-0.261173, 0.004758, 0.003305;;, - 49;4;-0.965467,-0.258975, 0.003995, 0.002775;;, - 50;4;-0.966088,-0.256891, 0.003271, 0.002272;;, - 51;4;-0.966664,-0.254960, 0.002600, 0.001806;;, - 52;4;-0.967184,-0.253213, 0.001994, 0.001385;;, - 53;4;-0.967641,-0.251679, 0.001461, 0.001015;;, - 54;4;-0.968030,-0.250375, 0.001009, 0.000701;;, - 55;4;-0.968347,-0.249312, 0.000640, 0.000444;;, - 56;4;-0.968590,-0.248494, 0.000355, 0.000247;;, - 57;4;-0.968762,-0.247919, 0.000156, 0.000108;;, - 58;4;-0.968863,-0.247581, 0.000038, 0.000027;;, - 59;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 60;4;-0.968822,-0.247676, 0.000072, 0.000050;;, - 61;4;-0.968602,-0.248293, 0.000290, 0.000201;;, - 62;4;-0.968233,-0.249328, 0.000654, 0.000454;;, - 63;4;-0.967716,-0.250781, 0.001165, 0.000809;;, - 64;4;-0.967049,-0.252652, 0.001824, 0.001267;;, - 65;4;-0.966233,-0.254940, 0.002630, 0.001827;;, - 66;4;-0.965271,-0.257639, 0.003580, 0.002487;;, - 67;4;-0.964165,-0.260743, 0.004673, 0.003246;;, - 68;4;-0.962918,-0.264241, 0.005904, 0.004101;;, - 69;4;-0.961536,-0.268119, 0.007269, 0.005049;;, - 70;4;-0.960025,-0.272359, 0.008762, 0.006086;;, - 71;4;-0.958392,-0.276941, 0.010375, 0.007207;;, - 72;4;-0.956646,-0.281840, 0.012100, 0.008405;;, - 73;4;-0.954797,-0.287026, 0.013926, 0.009673;;, - 74;4;-0.952858,-0.292467, 0.015842, 0.011004;;, - 75;4;-0.950841,-0.298128, 0.017834, 0.012388;;, - 76;4;-0.948759,-0.303967, 0.019890, 0.013816;;, - 77;4;-0.946629,-0.309943, 0.021994, 0.015277;;, - 78;4;-0.944466,-0.316012, 0.024131, 0.016761;;, - 79;4;-0.942286,-0.322128, 0.026284, 0.018257;;, - 80;4;-0.940107,-0.328244, 0.028437, 0.019753;;, - 81;4;-0.937943,-0.334313, 0.030574, 0.021237;;, - 82;4;-0.935813,-0.340290, 0.032678, 0.022698;;, - 83;4;-0.933732,-0.346129, 0.034734, 0.024126;;, - 84;4;-0.931715,-0.351789, 0.036727, 0.025510;;, - 85;4;-0.929775,-0.357230, 0.038642, 0.026841;;, - 86;4;-0.927927,-0.362417, 0.040468, 0.028109;;, - 87;4;-0.926181,-0.367315, 0.042193, 0.029307;;, - 88;4;-0.924548,-0.371897, 0.043806, 0.030428;;, - 89;4;-0.923036,-0.376138, 0.045299, 0.031465;;, - 90;4;-0.921654,-0.380016, 0.046664, 0.032413;;, - 91;4;-0.920408,-0.383513, 0.047895, 0.033268;;, - 92;4;-0.919301,-0.386617, 0.048988, 0.034027;;, - 93;4;-0.918339,-0.389317, 0.049939, 0.034688;;, - 94;4;-0.917524,-0.391604, 0.050744, 0.035247;;, - 95;4;-0.916857,-0.393476, 0.051403, 0.035705;;, - 96;4;-0.916339,-0.394928, 0.051914, 0.036060;;, - 97;4;-0.915970,-0.395963, 0.052278, 0.036313;;, - 98;4;-0.915750,-0.396581, 0.052496, 0.036464;;, - 99;4;-0.915677,-0.396786, 0.052568, 0.036514;;, - 100;4;-0.916214,-0.394701, 0.051851, 0.036016;;, - 101;4;-0.917882,-0.388223, 0.049624, 0.034469;;, - 102;4;-0.920715,-0.377220, 0.045839, 0.031840;;, - 103;4;-0.924642,-0.361971, 0.040595, 0.028198;;, - 104;4;-0.929449,-0.343302, 0.034175, 0.023738;;, - 105;4;-0.934797,-0.322533, 0.027032, 0.018777;;, - 106;4;-0.940291,-0.301195, 0.019694, 0.013679;;, - 107;4;-0.945578,-0.280664, 0.012633, 0.008775;;, - 108;4;-0.950403,-0.261923, 0.006188, 0.004298;;, - 109;4;-0.954625,-0.245530, 0.000550, 0.000382;;, - 110;4;-0.958846,-0.229136,-0.005088,-0.003534;;, - 111;4;-0.963671,-0.210396,-0.011533,-0.008011;;, - 112;4;-0.968958,-0.189865,-0.018594,-0.012915;;, - 113;4;-0.974452,-0.168526,-0.025932,-0.018013;;, - 114;4;-0.979800,-0.147757,-0.033075,-0.022974;;, - 115;4;-0.984608,-0.129088,-0.039495,-0.027434;;, - 116;4;-0.988534,-0.113839,-0.044740,-0.031076;;, - 117;4;-0.991367,-0.102836,-0.048524,-0.033705;;, - 118;4;-0.993035,-0.096359,-0.050751,-0.035252;;, - 119;4;-0.993572,-0.094274,-0.051468,-0.035750;;, - 120;4;-0.993035,-0.096359,-0.050751,-0.035252;;, - 121;4;-0.991367,-0.102836,-0.048524,-0.033705;;, - 122;4;-0.988534,-0.113839,-0.044740,-0.031076;;, - 123;4;-0.984608,-0.129088,-0.039495,-0.027434;;, - 124;4;-0.979800,-0.147757,-0.033075,-0.022974;;, - 125;4;-0.974452,-0.168526,-0.025932,-0.018013;;, - 126;4;-0.968958,-0.189865,-0.018594,-0.012915;;, - 127;4;-0.963671,-0.210396,-0.011533,-0.008011;;, - 128;4;-0.958846,-0.229136,-0.005088,-0.003534;;, - 129;4;-0.954625,-0.245530, 0.000550, 0.000382;;, - 130;4;-0.950403,-0.261923, 0.006188, 0.004298;;, - 131;4;-0.945578,-0.280664, 0.012633, 0.008775;;, - 132;4;-0.940291,-0.301195, 0.019694, 0.013679;;, - 133;4;-0.934797,-0.322533, 0.027032, 0.018777;;, - 134;4;-0.929449,-0.343302, 0.034175, 0.023738;;, - 135;4;-0.924642,-0.361971, 0.040595, 0.028198;;, - 136;4;-0.920715,-0.377220, 0.045839, 0.031840;;, - 137;4;-0.917882,-0.388223, 0.049624, 0.034469;;, - 138;4;-0.916214,-0.394701, 0.051851, 0.036016;;, - 139;4;-0.915677,-0.396786, 0.052568, 0.036514;;, - 140;4;-0.917882,-0.388223, 0.049624, 0.034469;;, - 141;4;-0.924642,-0.361971, 0.040595, 0.028198;;, - 142;4;-0.934797,-0.322533, 0.027032, 0.018777;;, - 143;4;-0.945578,-0.280664, 0.012633, 0.008775;;, - 144;4;-0.954625,-0.245530, 0.000550, 0.000382;;, - 145;4;-0.963671,-0.210396,-0.011533,-0.008011;;, - 146;4;-0.974452,-0.168526,-0.025932,-0.018013;;, - 147;4;-0.984608,-0.129088,-0.039495,-0.027434;;, - 148;4;-0.991367,-0.102836,-0.048524,-0.033705;;, - 149;4;-0.993572,-0.094274,-0.051468,-0.035750;;, - 150;4;-0.991367,-0.102836,-0.048524,-0.033705;;, - 151;4;-0.984608,-0.129088,-0.039495,-0.027434;;, - 152;4;-0.974452,-0.168526,-0.025932,-0.018013;;, - 153;4;-0.963671,-0.210396,-0.011533,-0.008011;;, - 154;4;-0.954625,-0.245530, 0.000550, 0.000382;;, - 155;4;-0.945578,-0.280664, 0.012633, 0.008775;;, - 156;4;-0.934797,-0.322533, 0.027032, 0.018777;;, - 157;4;-0.924642,-0.361971, 0.040595, 0.028198;;, - 158;4;-0.917882,-0.388223, 0.049624, 0.034469;;, - 159;4;-0.915677,-0.396786, 0.052568, 0.036514;;, - 160;4;-0.915970,-0.395963, 0.052278, 0.036313;;, - 161;4;-0.916857,-0.393476, 0.051403, 0.035705;;, - 162;4;-0.918339,-0.389317, 0.049939, 0.034688;;, - 163;4;-0.920408,-0.383513, 0.047895, 0.033268;;, - 164;4;-0.923036,-0.376138, 0.045299, 0.031465;;, - 165;4;-0.926181,-0.367315, 0.042193, 0.029307;;, - 166;4;-0.929775,-0.357230, 0.038642, 0.026841;;, - 167;4;-0.933732,-0.346129, 0.034734, 0.024126;;, - 168;4;-0.937943,-0.334313, 0.030574, 0.021237;;, - 169;4;-0.942286,-0.322128, 0.026284, 0.018257;;, - 170;4;-0.946629,-0.309943, 0.021994, 0.015277;;, - 171;4;-0.950840,-0.298128, 0.017834, 0.012388;;, - 172;4;-0.954797,-0.287026, 0.013926, 0.009673;;, - 173;4;-0.958392,-0.276941, 0.010375, 0.007207;;, - 174;4;-0.961536,-0.268119, 0.007269, 0.005049;;, - 175;4;-0.964165,-0.260743, 0.004673, 0.003246;;, - 176;4;-0.966233,-0.254940, 0.002630, 0.001827;;, - 177;4;-0.967716,-0.250781, 0.001165, 0.000809;;, - 178;4;-0.968602,-0.248293, 0.000290, 0.000201;;, - 179;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 180;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 181;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 182;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 183;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 184;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 185;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 186;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 187;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 188;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 189;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 190;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 191;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 192;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 193;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 194;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 195;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 196;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 197;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 198;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 199;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 200;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 201;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 202;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 203;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 204;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 205;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 206;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 207;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 208;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 209;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 210;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 211;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 212;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 213;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 214;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 215;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 216;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 217;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 218;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 219;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 220;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 221;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 222;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 223;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 224;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 225;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 226;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 227;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 228;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 229;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 230;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 231;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 232;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 233;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 234;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 235;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 236;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 237;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 238;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 239;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 240;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 241;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 242;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 243;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 244;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 245;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 246;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 247;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 248;4;-0.968895,-0.247471,-0.000000,-0.000000;;, - 249;4;-0.968895,-0.247471,-0.000000,-0.000000;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3; 0.000000, 1.228416, 0.000000;;, - 1;3; 0.000000, 1.228416,-0.000000;;, - 2;3;-0.000000, 1.228417, 0.000000;;, - 3;3;-0.000000, 1.228416, 0.000000;;, - 4;3; 0.000000, 1.228417,-0.000000;;, - 5;3;-0.000000, 1.228416,-0.000000;;, - 6;3;-0.000000, 1.228416, 0.000000;;, - 7;3; 0.000000, 1.228417, 0.000000;;, - 8;3;-0.000000, 1.228416,-0.000000;;, - 9;3;-0.000000, 1.228416, 0.000000;;, - 10;3;-0.000000, 1.228417,-0.000000;;, - 11;3;-0.000000, 1.228416,-0.000000;;, - 12;3; 0.000000, 1.228417, 0.000000;;, - 13;3; 0.000000, 1.228416,-0.000000;;, - 14;3; 0.000000, 1.228416,-0.000000;;, - 15;3;-0.000000, 1.228416,-0.000000;;, - 16;3; 0.000000, 1.228416, 0.000000;;, - 17;3; 0.000000, 1.228416, 0.000000;;, - 18;3; 0.000000, 1.228416, 0.000000;;, - 19;3;-0.000000, 1.228416, 0.000000;;, - 20;3;-0.000000, 1.228417, 0.000000;;, - 21;3; 0.000000, 1.228416, 0.000000;;, - 22;3; 0.000000, 1.228417, 0.000000;;, - 23;3;-0.000000, 1.228416,-0.000000;;, - 24;3;-0.000000, 1.228416,-0.000000;;, - 25;3;-0.000000, 1.228417, 0.000000;;, - 26;3; 0.000000, 1.228417, 0.000000;;, - 27;3; 0.000000, 1.228416,-0.000000;;, - 28;3;-0.000000, 1.228416,-0.000000;;, - 29;3;-0.000000, 1.228416,-0.000000;;, - 30;3;-0.000000, 1.228416, 0.000000;;, - 31;3; 0.000000, 1.228417, 0.000000;;, - 32;3;-0.000000, 1.228416,-0.000001;;, - 33;3;-0.000001, 1.228416,-0.000000;;, - 34;3;-0.000000, 1.228416,-0.000000;;, - 35;3; 0.000000, 1.228416, 0.000000;;, - 36;3;-0.000000, 1.228416, 0.000000;;, - 37;3;-0.000000, 1.228416, 0.000000;;, - 38;3;-0.000000, 1.228416,-0.000000;;, - 39;3; 0.000000, 1.228416, 0.000000;;, - 40;3;-0.000000, 1.228417, 0.000001;;, - 41;3;-0.000000, 1.228416,-0.000000;;, - 42;3; 0.000000, 1.228416, 0.000000;;, - 43;3; 0.000000, 1.228416,-0.000000;;, - 44;3;-0.000000, 1.228416, 0.000000;;, - 45;3;-0.000000, 1.228417,-0.000000;;, - 46;3; 0.000000, 1.228416, 0.000000;;, - 47;3; 0.000000, 1.228416, 0.000000;;, - 48;3; 0.000000, 1.228416, 0.000000;;, - 49;3;-0.000000, 1.228416, 0.000000;;, - 50;3;-0.000000, 1.228416, 0.000000;;, - 51;3;-0.000000, 1.228416, 0.000000;;, - 52;3; 0.000000, 1.228416,-0.000000;;, - 53;3;-0.000000, 1.228416,-0.000000;;, - 54;3; 0.000000, 1.228417, 0.000000;;, - 55;3;-0.000000, 1.228417,-0.000000;;, - 56;3; 0.000000, 1.228416,-0.000000;;, - 57;3;-0.000000, 1.228416, 0.000000;;, - 58;3; 0.000000, 1.228416, 0.000000;;, - 59;3; 0.000000, 1.228416, 0.000000;;, - 60;3; 0.000000, 1.228416,-0.000000;;, - 61;3; 0.000000, 1.228417, 0.000000;;, - 62;3; 0.000000, 1.228417,-0.000000;;, - 63;3; 0.000000, 1.228416, 0.000000;;, - 64;3;-0.000000, 1.228417,-0.000000;;, - 65;3; 0.000000, 1.228417,-0.000000;;, - 66;3; 0.000000, 1.228416, 0.000000;;, - 67;3;-0.000000, 1.228416, 0.000000;;, - 68;3;-0.000000, 1.228416, 0.000000;;, - 69;3; 0.000000, 1.228417, 0.000000;;, - 70;3; 0.000000, 1.228416,-0.000000;;, - 71;3;-0.000000, 1.228417, 0.000000;;, - 72;3;-0.000000, 1.228416, 0.000000;;, - 73;3; 0.000000, 1.228416,-0.000000;;, - 74;3; 0.000000, 1.228416,-0.000000;;, - 75;3;-0.000000, 1.228416,-0.000000;;, - 76;3;-0.000000, 1.228416,-0.000000;;, - 77;3;-0.000000, 1.228416, 0.000000;;, - 78;3;-0.000000, 1.228416,-0.000000;;, - 79;3; 0.000000, 1.228416,-0.000000;;, - 80;3;-0.000000, 1.228416, 0.000000;;, - 81;3;-0.000000, 1.228416, 0.000000;;, - 82;3;-0.000000, 1.228417, 0.000000;;, - 83;3; 0.000000, 1.228416, 0.000000;;, - 84;3;-0.000000, 1.228416, 0.000000;;, - 85;3;-0.000000, 1.228417, 0.000000;;, - 86;3; 0.000000, 1.228416, 0.000000;;, - 87;3;-0.000000, 1.228416,-0.000000;;, - 88;3;-0.000000, 1.228416, 0.000000;;, - 89;3;-0.000000, 1.228417, 0.000000;;, - 90;3; 0.000000, 1.228416, 0.000000;;, - 91;3;-0.000000, 1.228416, 0.000000;;, - 92;3;-0.000000, 1.228416, 0.000000;;, - 93;3; 0.000000, 1.228417, 0.000000;;, - 94;3; 0.000000, 1.228416,-0.000000;;, - 95;3; 0.000000, 1.228416,-0.000000;;, - 96;3; 0.000000, 1.228417,-0.000000;;, - 97;3; 0.000000, 1.228416,-0.000000;;, - 98;3; 0.000000, 1.228417,-0.000000;;, - 99;3; 0.000000, 1.228416,-0.000000;;, - 100;3; 0.000000, 1.228416,-0.000000;;, - 101;3;-0.000000, 1.228416,-0.000000;;, - 102;3;-0.000000, 1.228416,-0.000000;;, - 103;3;-0.000000, 1.228416,-0.000000;;, - 104;3;-0.000000, 1.228416,-0.000000;;, - 105;3; 0.000000, 1.228417,-0.000001;;, - 106;3; 0.000000, 1.228417, 0.000000;;, - 107;3;-0.000000, 1.228416,-0.000000;;, - 108;3; 0.000000, 1.228416,-0.000000;;, - 109;3;-0.000000, 1.228417,-0.000000;;, - 110;3; 0.000000, 1.228417,-0.000000;;, - 111;3;-0.000000, 1.228416,-0.000000;;, - 112;3;-0.000000, 1.228417,-0.000000;;, - 113;3; 0.000000, 1.228416,-0.000000;;, - 114;3; 0.000000, 1.228416,-0.000000;;, - 115;3; 0.000000, 1.228417, 0.000000;;, - 116;3; 0.000000, 1.228417,-0.000000;;, - 117;3;-0.000000, 1.228416,-0.000000;;, - 118;3;-0.000000, 1.228417,-0.000000;;, - 119;3; 0.000000, 1.228416,-0.000000;;, - 120;3; 0.000000, 1.228417, 0.000000;;, - 121;3; 0.000000, 1.228416, 0.000000;;, - 122;3; 0.000000, 1.228416,-0.000000;;, - 123;3; 0.000000, 1.228416, 0.000000;;, - 124;3;-0.000000, 1.228416,-0.000000;;, - 125;3; 0.000000, 1.228416, 0.000000;;, - 126;3; 0.000001, 1.228416,-0.000000;;, - 127;3; 0.000000, 1.228416,-0.000000;;, - 128;3;-0.000000, 1.228416, 0.000000;;, - 129;3; 0.000000, 1.228416, 0.000000;;, - 130;3; 0.000000, 1.228417, 0.000000;;, - 131;3; 0.000000, 1.228417,-0.000000;;, - 132;3;-0.000000, 1.228417,-0.000000;;, - 133;3;-0.000000, 1.228417,-0.000000;;, - 134;3; 0.000000, 1.228417,-0.000000;;, - 135;3;-0.000000, 1.228416, 0.000000;;, - 136;3;-0.000000, 1.228417,-0.000000;;, - 137;3; 0.000000, 1.228416,-0.000000;;, - 138;3;-0.000000, 1.228416, 0.000000;;, - 139;3; 0.000000, 1.228416,-0.000000;;, - 140;3;-0.000000, 1.228416,-0.000000;;, - 141;3;-0.000000, 1.228416,-0.000000;;, - 142;3; 0.000000, 1.228417,-0.000001;;, - 143;3;-0.000000, 1.228416,-0.000000;;, - 144;3;-0.000000, 1.228417,-0.000000;;, - 145;3;-0.000000, 1.228416,-0.000000;;, - 146;3; 0.000000, 1.228416,-0.000000;;, - 147;3; 0.000000, 1.228417, 0.000000;;, - 148;3;-0.000000, 1.228416,-0.000000;;, - 149;3; 0.000000, 1.228416,-0.000000;;, - 150;3; 0.000000, 1.228416, 0.000000;;, - 151;3; 0.000000, 1.228416, 0.000000;;, - 152;3; 0.000000, 1.228416, 0.000000;;, - 153;3; 0.000000, 1.228416,-0.000000;;, - 154;3; 0.000000, 1.228416, 0.000000;;, - 155;3;-0.000000, 1.228416,-0.000000;;, - 156;3;-0.000000, 1.228416,-0.000000;;, - 157;3; 0.000000, 1.228416,-0.000000;;, - 158;3; 0.000000, 1.228416,-0.000000;;, - 159;3; 0.000000, 1.228416,-0.000000;;, - 160;3;-0.000000, 1.228416, 0.000000;;, - 161;3; 0.000000, 1.228416, 0.000000;;, - 162;3; 0.000000, 1.228417, 0.000000;;, - 163;3;-0.000000, 1.228416,-0.000000;;, - 164;3;-0.000000, 1.228417,-0.000000;;, - 165;3; 0.000000, 1.228416,-0.000000;;, - 166;3; 0.000000, 1.228417, 0.000000;;, - 167;3;-0.000000, 1.228417,-0.000000;;, - 168;3; 0.000000, 1.228416, 0.000000;;, - 169;3;-0.000000, 1.228416, 0.000000;;, - 170;3;-0.000000, 1.228417, 0.000000;;, - 171;3; 0.000000, 1.228416, 0.000000;;, - 172;3; 0.000000, 1.228416,-0.000000;;, - 173;3; 0.000000, 1.228416,-0.000000;;, - 174;3;-0.000000, 1.228416, 0.000000;;, - 175;3; 0.000000, 1.228417,-0.000000;;, - 176;3;-0.000000, 1.228416, 0.000000;;, - 177;3; 0.000000, 1.228416, 0.000000;;, - 178;3;-0.000000, 1.228416, 0.000000;;, - 179;3; 0.000000, 1.228416, 0.000000;;, - 180;3;-0.000000, 1.228416,-0.000001;;, - 181;3;-0.000000, 1.228417, 0.000000;;, - 182;3;-0.000000, 1.228416,-0.000000;;, - 183;3; 0.000000, 1.228417,-0.000000;;, - 184;3; 0.000000, 1.228417,-0.000000;;, - 185;3; 0.000000, 1.228416, 0.000000;;, - 186;3; 0.000000, 1.228417,-0.000000;;, - 187;3; 0.000000, 1.228417, 0.000000;;, - 188;3;-0.000000, 1.228416,-0.000000;;, - 189;3; 0.000000, 1.228416, 0.000000;;, - 190;3; 0.000000, 1.228416, 0.000000;;, - 191;3; 0.000000, 1.228416,-0.000000;;, - 192;3; 0.000000, 1.228416,-0.000001;;, - 193;3; 0.000000, 1.228416, 0.000000;;, - 194;3;-0.000000, 1.228417, 0.000000;;, - 195;3; 0.000001, 1.228417, 0.000000;;, - 196;3; 0.000000, 1.228416, 0.000000;;, - 197;3; 0.000000, 1.228417,-0.000000;;, - 198;3;-0.000000, 1.228417, 0.000000;;, - 199;3; 0.000000, 1.228416, 0.000000;;, - 200;3; 0.000000, 1.228416, 0.000000;;, - 201;3; 0.000000, 1.228416, 0.000000;;, - 202;3; 0.000000, 1.228416, 0.000000;;, - 203;3; 0.000000, 1.228416, 0.000000;;, - 204;3; 0.000000, 1.228416, 0.000000;;, - 205;3; 0.000000, 1.228416, 0.000000;;, - 206;3; 0.000000, 1.228416, 0.000000;;, - 207;3; 0.000000, 1.228416, 0.000000;;, - 208;3; 0.000000, 1.228416, 0.000000;;, - 209;3; 0.000000, 1.228416, 0.000000;;, - 210;3; 0.000000, 1.228416, 0.000000;;, - 211;3; 0.000000, 1.228416, 0.000000;;, - 212;3;-0.000000, 1.228417, 0.000000;;, - 213;3; 0.000000, 1.228417, 0.000000;;, - 214;3; 0.000000, 1.228416, 0.000000;;, - 215;3;-0.000000, 1.228416,-0.000000;;, - 216;3; 0.000000, 1.228416, 0.000000;;, - 217;3; 0.000000, 1.228417,-0.000001;;, - 218;3; 0.000000, 1.228416,-0.000000;;, - 219;3; 0.000000, 1.228416,-0.000000;;, - 220;3;-0.000000, 1.228416, 0.000000;;, - 221;3; 0.000000, 1.228416, 0.000000;;, - 222;3; 0.000000, 1.228417, 0.000000;;, - 223;3;-0.000000, 1.228416,-0.000000;;, - 224;3;-0.000000, 1.228416,-0.000000;;, - 225;3; 0.000000, 1.228416, 0.000000;;, - 226;3;-0.000000, 1.228416, 0.000000;;, - 227;3; 0.000000, 1.228416, 0.000000;;, - 228;3;-0.000000, 1.228417, 0.000000;;, - 229;3;-0.000000, 1.228417, 0.000001;;, - 230;3;-0.000000, 1.228416,-0.000000;;, - 231;3; 0.000000, 1.228417, 0.000000;;, - 232;3; 0.000000, 1.228417,-0.000000;;, - 233;3; 0.000000, 1.228416, 0.000000;;, - 234;3; 0.000000, 1.228417, 0.000000;;, - 235;3;-0.000000, 1.228416,-0.000000;;, - 236;3; 0.000000, 1.228416,-0.000000;;, - 237;3;-0.000000, 1.228416,-0.000000;;, - 238;3;-0.000000, 1.228416, 0.000000;;, - 239;3; 0.000000, 1.228416, 0.000000;;, - 240;3; 0.000000, 1.228416, 0.000000;;, - 241;3; 0.000000, 1.228416, 0.000000;;, - 242;3; 0.000000, 1.228416, 0.000000;;, - 243;3; 0.000000, 1.228416, 0.000000;;, - 244;3; 0.000000, 1.228416, 0.000000;;, - 245;3; 0.000000, 1.228416, 0.000000;;, - 246;3; 0.000000, 1.228416, 0.000000;;, - 247;3; 0.000000, 1.228416, 0.000000;;, - 248;3; 0.000000, 1.228416, 0.000000;;, - 249;3; 0.000000, 1.228416, 0.000000;;; - } - } - Animation { - {Armature_Bone_013} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 1;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 2;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 3;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 4;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 5;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 6;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 7;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 8;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 9;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 10;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 11;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 12;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 13;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 14;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 15;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 16;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 17;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 18;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 19;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 20;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 21;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 22;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 23;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 24;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 25;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 26;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 27;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 28;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 29;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 30;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 31;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 32;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 33;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 34;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 35;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 36;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 37;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 38;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 39;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 40;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 41;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 42;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 43;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 44;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 45;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 46;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 47;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 48;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 49;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 50;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 51;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 52;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 53;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 54;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 55;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 56;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 57;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 58;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 59;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 60;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 61;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 62;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 63;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 64;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 65;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 66;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 67;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 68;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 69;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 70;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 71;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 72;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 73;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 74;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 75;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 76;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 77;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 78;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 79;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 80;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 81;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 82;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 83;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 84;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 85;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 86;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 87;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 88;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 89;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 90;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 91;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 92;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 93;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 94;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 95;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 96;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 97;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 98;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 99;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 100;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 101;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 102;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 103;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 104;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 105;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 106;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 107;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 108;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 109;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 110;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 111;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 112;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 113;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 114;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 115;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 116;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 117;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 118;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 119;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 120;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 121;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 122;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 123;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 124;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 125;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 126;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 127;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 128;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 129;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 130;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 131;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 132;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 133;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 134;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 135;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 136;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 137;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 138;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 139;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 140;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 141;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 142;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 143;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 144;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 145;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 146;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 147;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 148;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 149;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 150;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 151;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 152;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 153;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 154;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 155;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 156;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 157;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 158;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 159;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 160;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 161;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 162;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 163;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 164;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 165;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 166;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 167;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 168;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 169;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 170;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 171;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 172;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 173;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 174;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 175;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 176;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 177;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 178;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 179;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 180;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 181;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 182;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 183;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 184;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 185;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 186;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 187;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 188;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 189;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 190;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 191;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 192;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 193;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 194;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 195;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 196;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 197;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 198;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 199;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 200;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 201;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 202;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 203;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 204;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 205;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 206;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 207;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 208;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 209;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 210;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 211;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 212;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 213;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 214;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 215;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 216;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 217;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 218;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 219;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 220;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 221;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 222;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 223;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 224;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 225;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 226;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 227;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 228;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 229;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 230;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 231;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 232;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 233;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 234;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 235;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 236;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 237;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 238;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 239;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 240;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 241;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 242;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 243;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 244;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 245;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 246;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 247;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 248;4;-0.370899,-0.000000,-0.000000,-0.928673;;, - 249;4;-0.370899,-0.000000,-0.000000,-0.928673;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3; 0.000000, 0.826434, 0.000000;;, - 1;3; 0.000000, 0.826434, 0.000000;;, - 2;3; 0.000000, 0.826434, 0.000000;;, - 3;3; 0.000000, 0.826434, 0.000000;;, - 4;3; 0.000000, 0.826434, 0.000000;;, - 5;3; 0.000000, 0.826434, 0.000000;;, - 6;3; 0.000000, 0.826434, 0.000000;;, - 7;3; 0.000000, 0.826434, 0.000000;;, - 8;3; 0.000000, 0.826434, 0.000000;;, - 9;3; 0.000000, 0.826434, 0.000000;;, - 10;3; 0.000000, 0.826434, 0.000000;;, - 11;3; 0.000000, 0.826434, 0.000000;;, - 12;3; 0.000000, 0.826434, 0.000000;;, - 13;3; 0.000000, 0.826434, 0.000000;;, - 14;3; 0.000000, 0.826434, 0.000000;;, - 15;3; 0.000000, 0.826434, 0.000000;;, - 16;3; 0.000000, 0.826434, 0.000000;;, - 17;3; 0.000000, 0.826434, 0.000000;;, - 18;3; 0.000000, 0.826434, 0.000000;;, - 19;3; 0.000000, 0.826434, 0.000000;;, - 20;3; 0.000000, 0.826434, 0.000000;;, - 21;3; 0.000000, 0.826434, 0.000000;;, - 22;3; 0.000000, 0.826434, 0.000000;;, - 23;3; 0.000000, 0.826434, 0.000000;;, - 24;3; 0.000000, 0.826434, 0.000000;;, - 25;3; 0.000000, 0.826434, 0.000000;;, - 26;3; 0.000000, 0.826434, 0.000000;;, - 27;3; 0.000000, 0.826434, 0.000000;;, - 28;3; 0.000000, 0.826434, 0.000000;;, - 29;3; 0.000000, 0.826434, 0.000000;;, - 30;3; 0.000000, 0.826434, 0.000000;;, - 31;3; 0.000000, 0.826434, 0.000000;;, - 32;3; 0.000000, 0.826434, 0.000000;;, - 33;3; 0.000000, 0.826434, 0.000000;;, - 34;3; 0.000000, 0.826434, 0.000000;;, - 35;3; 0.000000, 0.826434, 0.000000;;, - 36;3; 0.000000, 0.826434, 0.000000;;, - 37;3; 0.000000, 0.826434, 0.000000;;, - 38;3; 0.000000, 0.826434, 0.000000;;, - 39;3; 0.000000, 0.826434, 0.000000;;, - 40;3; 0.000000, 0.826434, 0.000000;;, - 41;3; 0.000000, 0.826434, 0.000000;;, - 42;3; 0.000000, 0.826434, 0.000000;;, - 43;3; 0.000000, 0.826434, 0.000000;;, - 44;3; 0.000000, 0.826434, 0.000000;;, - 45;3; 0.000000, 0.826434, 0.000000;;, - 46;3; 0.000000, 0.826434, 0.000000;;, - 47;3; 0.000000, 0.826434, 0.000000;;, - 48;3; 0.000000, 0.826434, 0.000000;;, - 49;3; 0.000000, 0.826434, 0.000000;;, - 50;3; 0.000000, 0.826434, 0.000000;;, - 51;3; 0.000000, 0.826434, 0.000000;;, - 52;3; 0.000000, 0.826434, 0.000000;;, - 53;3; 0.000000, 0.826434, 0.000000;;, - 54;3; 0.000000, 0.826434, 0.000000;;, - 55;3; 0.000000, 0.826434, 0.000000;;, - 56;3; 0.000000, 0.826434, 0.000000;;, - 57;3; 0.000000, 0.826434, 0.000000;;, - 58;3; 0.000000, 0.826434, 0.000000;;, - 59;3; 0.000000, 0.826434, 0.000000;;, - 60;3; 0.000000, 0.826434, 0.000000;;, - 61;3; 0.000000, 0.826434, 0.000000;;, - 62;3; 0.000000, 0.826434, 0.000000;;, - 63;3; 0.000000, 0.826434, 0.000000;;, - 64;3; 0.000000, 0.826434, 0.000000;;, - 65;3; 0.000000, 0.826434, 0.000000;;, - 66;3; 0.000000, 0.826434, 0.000000;;, - 67;3; 0.000000, 0.826434, 0.000000;;, - 68;3; 0.000000, 0.826434, 0.000000;;, - 69;3; 0.000000, 0.826434, 0.000000;;, - 70;3; 0.000000, 0.826434, 0.000000;;, - 71;3; 0.000000, 0.826434, 0.000000;;, - 72;3; 0.000000, 0.826434, 0.000000;;, - 73;3; 0.000000, 0.826434, 0.000000;;, - 74;3; 0.000000, 0.826434, 0.000000;;, - 75;3; 0.000000, 0.826434, 0.000000;;, - 76;3; 0.000000, 0.826434, 0.000000;;, - 77;3; 0.000000, 0.826434, 0.000000;;, - 78;3; 0.000000, 0.826434, 0.000000;;, - 79;3; 0.000000, 0.826434, 0.000000;;, - 80;3; 0.000000, 0.826434, 0.000000;;, - 81;3; 0.000000, 0.826434, 0.000000;;, - 82;3; 0.000000, 0.826434, 0.000000;;, - 83;3; 0.000000, 0.826434, 0.000000;;, - 84;3; 0.000000, 0.826434, 0.000000;;, - 85;3; 0.000000, 0.826434, 0.000000;;, - 86;3; 0.000000, 0.826434, 0.000000;;, - 87;3; 0.000000, 0.826434, 0.000000;;, - 88;3; 0.000000, 0.826434, 0.000000;;, - 89;3; 0.000000, 0.826434, 0.000000;;, - 90;3; 0.000000, 0.826434, 0.000000;;, - 91;3; 0.000000, 0.826434, 0.000000;;, - 92;3; 0.000000, 0.826434, 0.000000;;, - 93;3; 0.000000, 0.826434, 0.000000;;, - 94;3; 0.000000, 0.826434, 0.000000;;, - 95;3; 0.000000, 0.826434, 0.000000;;, - 96;3; 0.000000, 0.826434, 0.000000;;, - 97;3; 0.000000, 0.826434, 0.000000;;, - 98;3; 0.000000, 0.826434, 0.000000;;, - 99;3; 0.000000, 0.826434, 0.000000;;, - 100;3; 0.000000, 0.826434, 0.000000;;, - 101;3; 0.000000, 0.826434, 0.000000;;, - 102;3; 0.000000, 0.826434, 0.000000;;, - 103;3; 0.000000, 0.826434, 0.000000;;, - 104;3; 0.000000, 0.826434, 0.000000;;, - 105;3; 0.000000, 0.826434, 0.000000;;, - 106;3; 0.000000, 0.826434, 0.000000;;, - 107;3; 0.000000, 0.826434, 0.000000;;, - 108;3; 0.000000, 0.826434, 0.000000;;, - 109;3; 0.000000, 0.826434, 0.000000;;, - 110;3; 0.000000, 0.826434, 0.000000;;, - 111;3; 0.000000, 0.826434, 0.000000;;, - 112;3; 0.000000, 0.826434, 0.000000;;, - 113;3; 0.000000, 0.826434, 0.000000;;, - 114;3; 0.000000, 0.826434, 0.000000;;, - 115;3; 0.000000, 0.826434, 0.000000;;, - 116;3; 0.000000, 0.826434, 0.000000;;, - 117;3; 0.000000, 0.826434, 0.000000;;, - 118;3; 0.000000, 0.826434, 0.000000;;, - 119;3; 0.000000, 0.826434, 0.000000;;, - 120;3; 0.000000, 0.826434, 0.000000;;, - 121;3; 0.000000, 0.826434, 0.000000;;, - 122;3; 0.000000, 0.826434, 0.000000;;, - 123;3; 0.000000, 0.826434, 0.000000;;, - 124;3; 0.000000, 0.826434, 0.000000;;, - 125;3; 0.000000, 0.826434, 0.000000;;, - 126;3; 0.000000, 0.826434, 0.000000;;, - 127;3; 0.000000, 0.826434, 0.000000;;, - 128;3; 0.000000, 0.826434, 0.000000;;, - 129;3; 0.000000, 0.826434, 0.000000;;, - 130;3; 0.000000, 0.826434, 0.000000;;, - 131;3; 0.000000, 0.826434, 0.000000;;, - 132;3; 0.000000, 0.826434, 0.000000;;, - 133;3; 0.000000, 0.826434, 0.000000;;, - 134;3; 0.000000, 0.826434, 0.000000;;, - 135;3; 0.000000, 0.826434, 0.000000;;, - 136;3; 0.000000, 0.826434, 0.000000;;, - 137;3; 0.000000, 0.826434, 0.000000;;, - 138;3; 0.000000, 0.826434, 0.000000;;, - 139;3; 0.000000, 0.826434, 0.000000;;, - 140;3; 0.000000, 0.826434, 0.000000;;, - 141;3; 0.000000, 0.826434, 0.000000;;, - 142;3; 0.000000, 0.826434, 0.000000;;, - 143;3; 0.000000, 0.826434, 0.000000;;, - 144;3; 0.000000, 0.826434, 0.000000;;, - 145;3; 0.000000, 0.826434, 0.000000;;, - 146;3; 0.000000, 0.826434, 0.000000;;, - 147;3; 0.000000, 0.826434, 0.000000;;, - 148;3; 0.000000, 0.826434, 0.000000;;, - 149;3; 0.000000, 0.826434, 0.000000;;, - 150;3; 0.000000, 0.826434, 0.000000;;, - 151;3; 0.000000, 0.826434, 0.000000;;, - 152;3; 0.000000, 0.826434, 0.000000;;, - 153;3; 0.000000, 0.826434, 0.000000;;, - 154;3; 0.000000, 0.826434, 0.000000;;, - 155;3; 0.000000, 0.826434, 0.000000;;, - 156;3; 0.000000, 0.826434, 0.000000;;, - 157;3; 0.000000, 0.826434, 0.000000;;, - 158;3; 0.000000, 0.826434, 0.000000;;, - 159;3; 0.000000, 0.826434, 0.000000;;, - 160;3; 0.000000, 0.826434, 0.000000;;, - 161;3; 0.000000, 0.826434, 0.000000;;, - 162;3; 0.000000, 0.826434, 0.000000;;, - 163;3; 0.000000, 0.826434, 0.000000;;, - 164;3; 0.000000, 0.826434, 0.000000;;, - 165;3; 0.000000, 0.826434, 0.000000;;, - 166;3; 0.000000, 0.826434, 0.000000;;, - 167;3; 0.000000, 0.826434, 0.000000;;, - 168;3; 0.000000, 0.826434, 0.000000;;, - 169;3; 0.000000, 0.826434, 0.000000;;, - 170;3; 0.000000, 0.826434, 0.000000;;, - 171;3; 0.000000, 0.826434, 0.000000;;, - 172;3; 0.000000, 0.826434, 0.000000;;, - 173;3; 0.000000, 0.826434, 0.000000;;, - 174;3; 0.000000, 0.826434, 0.000000;;, - 175;3; 0.000000, 0.826434, 0.000000;;, - 176;3; 0.000000, 0.826434, 0.000000;;, - 177;3; 0.000000, 0.826434, 0.000000;;, - 178;3; 0.000000, 0.826434, 0.000000;;, - 179;3; 0.000000, 0.826434, 0.000000;;, - 180;3; 0.000000, 0.826434, 0.000000;;, - 181;3; 0.000000, 0.826434, 0.000000;;, - 182;3; 0.000000, 0.826434, 0.000000;;, - 183;3; 0.000000, 0.826434, 0.000000;;, - 184;3; 0.000000, 0.826434, 0.000000;;, - 185;3; 0.000000, 0.826434, 0.000000;;, - 186;3;-0.000000, 0.826434,-0.000000;;, - 187;3;-0.000000, 0.826434,-0.000000;;, - 188;3;-0.000000, 0.826434, 0.000000;;, - 189;3;-0.000000, 0.826434, 0.000000;;, - 190;3;-0.000000, 0.826434,-0.000000;;, - 191;3; 0.000000, 0.826434, 0.000000;;, - 192;3; 0.000000, 0.826434, 0.000000;;, - 193;3; 0.000000, 0.826434, 0.000000;;, - 194;3; 0.000000, 0.826434,-0.000000;;, - 195;3; 0.000000, 0.826434,-0.000000;;, - 196;3; 0.000000, 0.826434, 0.000000;;, - 197;3; 0.000000, 0.826434,-0.000000;;, - 198;3; 0.000000, 0.826434,-0.000000;;, - 199;3; 0.000000, 0.826434, 0.000000;;, - 200;3; 0.000000, 0.826434, 0.000000;;, - 201;3; 0.000000, 0.826434, 0.000000;;, - 202;3; 0.000000, 0.826434, 0.000000;;, - 203;3; 0.000000, 0.826434, 0.000000;;, - 204;3; 0.000000, 0.826434, 0.000000;;, - 205;3; 0.000000, 0.826434, 0.000000;;, - 206;3; 0.000000, 0.826434, 0.000000;;, - 207;3; 0.000000, 0.826434, 0.000000;;, - 208;3; 0.000000, 0.826434, 0.000000;;, - 209;3; 0.000000, 0.826434, 0.000000;;, - 210;3;-0.000000, 0.826434, 0.000000;;, - 211;3;-0.000000, 0.826434, 0.000000;;, - 212;3; 0.000000, 0.826434,-0.000000;;, - 213;3; 0.000000, 0.826434, 0.000000;;, - 214;3; 0.000000, 0.826434, 0.000000;;, - 215;3;-0.000000, 0.826434,-0.000000;;, - 216;3;-0.000000, 0.826434,-0.000000;;, - 217;3;-0.000000, 0.826434,-0.000000;;, - 218;3;-0.000000, 0.826434, 0.000000;;, - 219;3;-0.000000, 0.826434,-0.000000;;, - 220;3;-0.000000, 0.826434, 0.000000;;, - 221;3; 0.000000, 0.826434, 0.000000;;, - 222;3;-0.000000, 0.826434, 0.000000;;, - 223;3; 0.000000, 0.826434,-0.000000;;, - 224;3; 0.000000, 0.826434,-0.000000;;, - 225;3; 0.000000, 0.826434, 0.000000;;, - 226;3; 0.000000, 0.826434, 0.000000;;, - 227;3; 0.000000, 0.826434, 0.000000;;, - 228;3;-0.000000, 0.826434, 0.000000;;, - 229;3; 0.000000, 0.826434, 0.000000;;, - 230;3; 0.000000, 0.826434, 0.000000;;, - 231;3; 0.000000, 0.826434,-0.000000;;, - 232;3;-0.000000, 0.826434,-0.000000;;, - 233;3; 0.000000, 0.826434, 0.000000;;, - 234;3; 0.000000, 0.826434, 0.000000;;, - 235;3; 0.000000, 0.826434, 0.000000;;, - 236;3; 0.000000, 0.826434, 0.000000;;, - 237;3; 0.000000, 0.826434, 0.000000;;, - 238;3; 0.000000, 0.826434, 0.000000;;, - 239;3; 0.000000, 0.826434, 0.000000;;, - 240;3; 0.000000, 0.826434, 0.000000;;, - 241;3; 0.000000, 0.826434, 0.000000;;, - 242;3; 0.000000, 0.826434, 0.000000;;, - 243;3; 0.000000, 0.826434, 0.000000;;, - 244;3; 0.000000, 0.826434, 0.000000;;, - 245;3; 0.000000, 0.826434, 0.000000;;, - 246;3; 0.000000, 0.826434, 0.000000;;, - 247;3; 0.000000, 0.826434, 0.000000;;, - 248;3; 0.000000, 0.826434, 0.000000;;, - 249;3; 0.000000, 0.826434, 0.000000;;; - } - } - Animation { - {Armature_Bone_017} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 1;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 2;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 3;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 4;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 5;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 6;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 7;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 8;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 9;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 10;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 11;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 12;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 13;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 14;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 15;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 16;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 17;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 18;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 19;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 20;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 21;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 22;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 23;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 24;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 25;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 26;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 27;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 28;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 29;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 30;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 31;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 32;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 33;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 34;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 35;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 36;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 37;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 38;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 39;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 40;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 41;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 42;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 43;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 44;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 45;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 46;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 47;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 48;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 49;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 50;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 51;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 52;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 53;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 54;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 55;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 56;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 57;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 58;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 59;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 60;4;-0.979875, 0.161874, 0.019150, 0.115206;;, - 61;4;-0.979789, 0.162353, 0.019554, 0.115152;;, - 62;4;-0.979645, 0.163155, 0.020231, 0.115062;;, - 63;4;-0.979441, 0.164282, 0.021181, 0.114934;;, - 64;4;-0.979176, 0.165732, 0.022406, 0.114769;;, - 65;4;-0.978851, 0.167506, 0.023902, 0.114566;;, - 66;4;-0.978463, 0.169599, 0.025669, 0.114325;;, - 67;4;-0.978013, 0.172006, 0.027699, 0.114046;;, - 68;4;-0.977502, 0.174718, 0.029988, 0.113730;;, - 69;4;-0.976930, 0.177724, 0.032525, 0.113377;;, - 70;4;-0.976297, 0.181012, 0.035299, 0.112989;;, - 71;4;-0.975606, 0.184565, 0.038297, 0.112566;;, - 72;4;-0.974858, 0.188363, 0.041502, 0.112110;;, - 73;4;-0.974056, 0.192385, 0.044895, 0.111622;;, - 74;4;-0.973202, 0.196604, 0.048455, 0.111105;;, - 75;4;-0.972300, 0.200992, 0.052158, 0.110562;;, - 76;4;-0.971355, 0.205520, 0.055979, 0.109995;;, - 77;4;-0.970370, 0.210154, 0.059889, 0.109408;;, - 78;4;-0.969350, 0.214859, 0.063860, 0.108802;;, - 79;4;-0.968301, 0.219601, 0.067861, 0.108183;;, - 80;4;-0.967227, 0.224343, 0.071862, 0.107554;;, - 81;4;-0.966135, 0.229049, 0.075833, 0.106917;;, - 82;4;-0.965029, 0.233683, 0.079743, 0.106278;;, - 83;4;-0.963917, 0.238210, 0.083564, 0.105639;;, - 84;4;-0.962802, 0.242599, 0.087267, 0.105005;;, - 85;4;-0.961691, 0.246818, 0.090827, 0.104377;;, - 86;4;-0.960588, 0.250839, 0.094220, 0.103761;;, - 87;4;-0.959498, 0.254637, 0.097425, 0.103158;;, - 88;4;-0.958425, 0.258190, 0.100423, 0.102571;;, - 89;4;-0.957374, 0.261478, 0.103198, 0.102003;;, - 90;4;-0.956347, 0.264484, 0.105735, 0.101455;;, - 91;4;-0.955348, 0.267196, 0.108023, 0.100930;;, - 92;4;-0.954380, 0.269603, 0.110054, 0.100429;;, - 93;4;-0.953444, 0.271696, 0.111820, 0.099952;;, - 94;4;-0.952543, 0.273470, 0.113317, 0.099503;;, - 95;4;-0.951678, 0.274921, 0.114541, 0.099080;;, - 96;4;-0.950851, 0.276047, 0.115492, 0.098685;;, - 97;4;-0.950061, 0.276849, 0.116168, 0.098317;;, - 98;4;-0.949311, 0.277328, 0.116573, 0.097978;;, - 99;4;-0.948600, 0.277487, 0.116707, 0.097667;;, - 100;4;-0.947606, 0.278352, 0.114680, 0.097994;;, - 101;4;-0.946013, 0.280934, 0.108572, 0.099579;;, - 102;4;-0.943877, 0.285084, 0.098621, 0.102351;;, - 103;4;-0.941335, 0.290425, 0.085567, 0.106085;;, - 104;4;-0.938612, 0.296333, 0.070718, 0.110381;;, - 105;4;-0.935984, 0.302027, 0.055777, 0.114719;;, - 106;4;-0.933721, 0.306746, 0.042457, 0.118572;;, - 107;4;-0.932020, 0.309924, 0.032088, 0.121530;;, - 108;4;-0.930988, 0.311254, 0.025443, 0.123356;;, - 109;4;-0.930648, 0.310658, 0.022790, 0.123964;;, - 110;4;-0.931874, 0.303766, 0.019976, 0.124160;;, - 111;4;-0.935570, 0.286129, 0.012883, 0.124734;;, - 112;4;-0.941596, 0.258433, 0.001869, 0.125633;;, - 113;4;-0.949505, 0.222706,-0.012143, 0.126744;;, - 114;4;-0.958509, 0.182474,-0.027621, 0.127898;;, - 115;4;-0.967582, 0.142297,-0.042635, 0.128893;;, - 116;4;-0.975687, 0.106729,-0.055304, 0.129545;;, - 117;4;-0.982021, 0.079283,-0.064216, 0.129726;;, - 118;4;-0.986114, 0.061968,-0.068604, 0.129376;;, - 119;4;-0.987803, 0.055451,-0.068262, 0.128494;;, - 120;4;-0.987955, 0.055992,-0.064683, 0.127299;;, - 121;4;-0.987395, 0.060090,-0.059194, 0.125987;;, - 122;4;-0.986102, 0.067853,-0.051737, 0.124555;;, - 123;4;-0.984122, 0.079055,-0.042435, 0.123010;;, - 124;4;-0.981588, 0.093026,-0.031646, 0.121375;;, - 125;4;-0.978714, 0.108699,-0.019945, 0.119684;;, - 126;4;-0.975748, 0.124832,-0.007995, 0.117978;;, - 127;4;-0.972912, 0.140311, 0.003603, 0.116293;;, - 128;4;-0.970367, 0.154340, 0.014422, 0.114656;;, - 129;4;-0.968201, 0.166469, 0.024222, 0.113081;;, - 130;4;-0.966217, 0.178502, 0.034246, 0.111470;;, - 131;4;-0.964188, 0.192256, 0.045705, 0.109732;;, - 132;4;-0.962124, 0.207326, 0.058258, 0.107896;;, - 133;4;-0.960044, 0.222988, 0.071305, 0.106016;;, - 134;4;-0.957976, 0.238232, 0.084005, 0.104167;;, - 135;4;-0.955948, 0.251934, 0.095420, 0.102432;;, - 136;4;-0.953985, 0.263127, 0.104744, 0.100884;;, - 137;4;-0.952104, 0.271203, 0.111471, 0.099567;;, - 138;4;-0.950310, 0.275957, 0.115432, 0.098498;;, - 139;4;-0.948600, 0.277487, 0.116707, 0.097667;;, - 140;4;-0.945807, 0.280934, 0.108572, 0.099491;;, - 141;4;-0.941092, 0.290425, 0.085567, 0.105980;;, - 142;4;-0.935828, 0.302027, 0.055777, 0.114651;;, - 143;4;-0.931974, 0.309924, 0.032088, 0.121510;;, - 144;4;-0.930648, 0.310658, 0.022790, 0.123964;;, - 145;4;-0.935570, 0.286129, 0.012883, 0.124734;;, - 146;4;-0.949505, 0.222706,-0.012143, 0.126744;;, - 147;4;-0.967582, 0.142297,-0.042635, 0.128893;;, - 148;4;-0.982021, 0.079283,-0.064216, 0.129726;;, - 149;4;-0.987803, 0.055451,-0.068262, 0.128494;;, - 150;4;-0.987395, 0.060090,-0.059194, 0.125987;;, - 151;4;-0.984122, 0.079055,-0.042435, 0.123010;;, - 152;4;-0.978714, 0.108699,-0.019945, 0.119684;;, - 153;4;-0.972912, 0.140311, 0.003603, 0.116293;;, - 154;4;-0.968201, 0.166469, 0.024222, 0.113081;;, - 155;4;-0.963648, 0.192256, 0.045705, 0.109500;;, - 156;4;-0.958223, 0.222988, 0.071305, 0.105234;;, - 157;4;-0.953112, 0.251934, 0.095420, 0.101215;;, - 158;4;-0.949710, 0.271203, 0.111471, 0.098540;;, - 159;4;-0.948600, 0.277487, 0.116707, 0.097667;;, - 160;4;-0.948772, 0.277181, 0.116571, 0.097764;;, - 161;4;-0.949294, 0.276233, 0.116135, 0.098056;;, - 162;4;-0.950166, 0.274601, 0.115349, 0.098545;;, - 163;4;-0.951382, 0.272249, 0.114161, 0.099228;;, - 164;4;-0.952929, 0.269148, 0.112515, 0.100095;;, - 165;4;-0.954778, 0.265283, 0.110357, 0.101132;;, - 166;4;-0.956893, 0.260654, 0.107636, 0.102318;;, - 167;4;-0.959220, 0.255284, 0.104305, 0.103623;;, - 168;4;-0.961697, 0.249216, 0.100332, 0.105013;;, - 169;4;-0.964252, 0.242515, 0.095696, 0.106445;;, - 170;4;-0.966806, 0.235267, 0.090397, 0.107878;;, - 171;4;-0.969283, 0.227572, 0.084448, 0.109267;;, - 172;4;-0.971611, 0.219538, 0.077881, 0.110573;;, - 173;4;-0.973725, 0.211273, 0.070741, 0.111758;;, - 174;4;-0.975574, 0.202879, 0.063082, 0.112796;;, - 175;4;-0.977121, 0.194448, 0.054962, 0.113663;;, - 176;4;-0.978337, 0.186059, 0.046439, 0.114345;;, - 177;4;-0.979209, 0.177775, 0.037573, 0.114834;;, - 178;4;-0.979731, 0.169648, 0.028415, 0.115127;;, - 179;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 180;4;-0.977330, 0.157257, 0.000801, 0.113483;;, - 181;4;-0.969586, 0.159468,-0.034876, 0.108245;;, - 182;4;-0.956995, 0.167728,-0.086843, 0.099729;;, - 183;4;-0.940526, 0.180516,-0.151718, 0.088589;;, - 184;4;-0.921869, 0.195354,-0.223678, 0.075970;;, - 185;4;-0.903212, 0.209153,-0.295231, 0.063351;;, - 186;4;-0.886743, 0.218930,-0.358924, 0.052212;;, - 187;4;-0.874152, 0.222478,-0.409040, 0.043696;;, - 188;4;-0.866408, 0.218624,-0.442335, 0.038458;;, - 189;4;-0.863835, 0.207091,-0.457772, 0.036717;;, - 190;4;-0.874577, 0.175955,-0.436552, 0.043943;;, - 191;4;-0.904835, 0.116414,-0.362687, 0.064296;;, - 192;4;-0.943686, 0.045256,-0.260185, 0.090428;;, - 193;4;-0.973943,-0.011707,-0.170527, 0.110781;;, - 194;4;-0.984686,-0.038456,-0.122434, 0.118006;;, - 195;4;-0.984260,-0.028056,-0.092636, 0.117759;;, - 196;4;-0.983063, 0.020698,-0.054045, 0.117062;;, - 197;4;-0.981526, 0.088180,-0.015868, 0.116168;;, - 198;4;-0.980328, 0.142258, 0.010320, 0.115471;;, - 199;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 200;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 201;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 202;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 203;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 204;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 205;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 206;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 207;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 208;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 209;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 210;4;-0.982290, 0.150695, 0.019335, 0.097645;;, - 211;4;-0.988519, 0.119221, 0.021241, 0.047681;;, - 212;4;-0.995187, 0.077648, 0.026395,-0.017679;;, - 213;4;-0.997795, 0.043010, 0.035674,-0.070931;;, - 214;4;-0.994022, 0.026605, 0.048538,-0.094105;;, - 215;4;-0.987763, 0.021736, 0.063892,-0.099706;;, - 216;4;-0.983282, 0.019796, 0.081120,-0.103531;;, - 217;4;-0.980629, 0.020761, 0.098990,-0.105613;;, - 218;4;-0.979165, 0.023495, 0.115690,-0.106656;;, - 219;4;-0.978037, 0.026579, 0.130145,-0.107525;;, - 220;4;-0.976996, 0.030434, 0.143821,-0.108399;;, - 221;4;-0.976269, 0.036140, 0.157476,-0.109009;;, - 222;4;-0.975891, 0.043073, 0.169157,-0.109327;;, - 223;4;-0.975768, 0.049971, 0.177127,-0.109430;;, - 224;4;-0.975754, 0.055852, 0.181129,-0.109442;;, - 225;4;-0.975795, 0.061648, 0.181578,-0.107236;;, - 226;4;-0.975918, 0.068556, 0.178383,-0.100568;;, - 227;4;-0.976123, 0.076516, 0.171549,-0.089472;;, - 228;4;-0.976405, 0.085405, 0.161237,-0.074179;;, - 229;4;-0.976756, 0.095025, 0.147807,-0.055173;;, - 230;4;-0.977162, 0.105096, 0.131851,-0.033222;;, - 231;4;-0.977602, 0.115270, 0.114179,-0.009366;;, - 232;4;-0.978055, 0.125155, 0.095775, 0.015148;;, - 233;4;-0.978495, 0.134361, 0.077689, 0.039003;;, - 234;4;-0.978901, 0.142541, 0.060921, 0.060955;;, - 235;4;-0.979252, 0.149426, 0.046317, 0.079961;;, - 236;4;-0.979534, 0.154838, 0.034513, 0.095253;;, - 237;4;-0.979739, 0.158691, 0.025916, 0.106349;;, - 238;4;-0.979863, 0.160970, 0.020734, 0.113018;;, - 239;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 240;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 241;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 242;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 243;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 244;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 245;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 246;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 247;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 248;4;-0.979903, 0.161715, 0.019016, 0.115224;;, - 249;4;-0.979903, 0.161715, 0.019016, 0.115224;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3;-0.000000, 0.893468, 0.000000;;, - 1;3;-0.000000, 0.893468, 0.000000;;, - 2;3;-0.000000, 0.893468, 0.000000;;, - 3;3;-0.000000, 0.893468, 0.000000;;, - 4;3;-0.000000, 0.893468, 0.000000;;, - 5;3;-0.000000, 0.893468, 0.000000;;, - 6;3;-0.000000, 0.893468, 0.000000;;, - 7;3;-0.000000, 0.893468, 0.000000;;, - 8;3;-0.000000, 0.893468, 0.000000;;, - 9;3;-0.000000, 0.893468, 0.000000;;, - 10;3;-0.000000, 0.893468, 0.000000;;, - 11;3;-0.000000, 0.893468, 0.000000;;, - 12;3;-0.000000, 0.893468, 0.000000;;, - 13;3;-0.000000, 0.893468, 0.000000;;, - 14;3;-0.000000, 0.893468, 0.000000;;, - 15;3;-0.000000, 0.893468, 0.000000;;, - 16;3;-0.000000, 0.893468, 0.000000;;, - 17;3;-0.000000, 0.893468, 0.000000;;, - 18;3;-0.000000, 0.893468, 0.000000;;, - 19;3;-0.000000, 0.893468, 0.000000;;, - 20;3;-0.000000, 0.893468, 0.000000;;, - 21;3;-0.000000, 0.893468, 0.000000;;, - 22;3;-0.000000, 0.893468, 0.000000;;, - 23;3;-0.000000, 0.893468, 0.000000;;, - 24;3;-0.000000, 0.893468, 0.000000;;, - 25;3;-0.000000, 0.893468, 0.000000;;, - 26;3;-0.000000, 0.893468, 0.000000;;, - 27;3;-0.000000, 0.893468, 0.000000;;, - 28;3;-0.000000, 0.893468, 0.000000;;, - 29;3;-0.000000, 0.893468, 0.000000;;, - 30;3;-0.000000, 0.893468, 0.000000;;, - 31;3;-0.000000, 0.893468, 0.000000;;, - 32;3;-0.000000, 0.893468, 0.000000;;, - 33;3;-0.000000, 0.893468, 0.000000;;, - 34;3;-0.000000, 0.893468, 0.000000;;, - 35;3;-0.000000, 0.893468, 0.000000;;, - 36;3;-0.000000, 0.893468, 0.000000;;, - 37;3;-0.000000, 0.893468, 0.000000;;, - 38;3;-0.000000, 0.893468, 0.000000;;, - 39;3;-0.000000, 0.893468, 0.000000;;, - 40;3;-0.000000, 0.893468, 0.000000;;, - 41;3;-0.000000, 0.893468, 0.000000;;, - 42;3;-0.000000, 0.893468, 0.000000;;, - 43;3;-0.000000, 0.893468, 0.000000;;, - 44;3;-0.000000, 0.893468, 0.000000;;, - 45;3;-0.000000, 0.893468, 0.000000;;, - 46;3;-0.000000, 0.893468, 0.000000;;, - 47;3;-0.000000, 0.893468, 0.000000;;, - 48;3;-0.000000, 0.893468, 0.000000;;, - 49;3;-0.000000, 0.893468, 0.000000;;, - 50;3;-0.000000, 0.893468, 0.000000;;, - 51;3;-0.000000, 0.893468, 0.000000;;, - 52;3;-0.000000, 0.893468, 0.000000;;, - 53;3;-0.000000, 0.893468, 0.000000;;, - 54;3;-0.000000, 0.893468, 0.000000;;, - 55;3;-0.000000, 0.893468, 0.000000;;, - 56;3;-0.000000, 0.893468, 0.000000;;, - 57;3;-0.000000, 0.893468, 0.000000;;, - 58;3;-0.000000, 0.893468, 0.000000;;, - 59;3;-0.000000, 0.893468, 0.000000;;, - 60;3;-0.000000, 0.893468, 0.000000;;, - 61;3;-0.000000, 0.893468, 0.000000;;, - 62;3;-0.000000, 0.893468, 0.000000;;, - 63;3;-0.000000, 0.893468, 0.000000;;, - 64;3;-0.000000, 0.893468, 0.000000;;, - 65;3;-0.000000, 0.893468, 0.000000;;, - 66;3;-0.000000, 0.893468, 0.000000;;, - 67;3;-0.000000, 0.893468, 0.000000;;, - 68;3;-0.000000, 0.893468, 0.000000;;, - 69;3;-0.000000, 0.893468, 0.000000;;, - 70;3;-0.000000, 0.893468, 0.000000;;, - 71;3;-0.000000, 0.893468, 0.000000;;, - 72;3;-0.000000, 0.893468, 0.000000;;, - 73;3;-0.000000, 0.893468, 0.000000;;, - 74;3;-0.000000, 0.893468, 0.000000;;, - 75;3;-0.000000, 0.893468, 0.000000;;, - 76;3;-0.000000, 0.893468, 0.000000;;, - 77;3;-0.000000, 0.893468, 0.000000;;, - 78;3;-0.000000, 0.893468, 0.000000;;, - 79;3;-0.000000, 0.893468, 0.000000;;, - 80;3;-0.000000, 0.893468, 0.000000;;, - 81;3;-0.000000, 0.893468, 0.000000;;, - 82;3;-0.000000, 0.893468, 0.000000;;, - 83;3;-0.000000, 0.893468, 0.000000;;, - 84;3;-0.000000, 0.893468, 0.000000;;, - 85;3;-0.000000, 0.893468, 0.000000;;, - 86;3;-0.000000, 0.893468, 0.000000;;, - 87;3;-0.000000, 0.893468, 0.000000;;, - 88;3;-0.000000, 0.893468, 0.000000;;, - 89;3;-0.000000, 0.893468, 0.000000;;, - 90;3;-0.000000, 0.893468, 0.000000;;, - 91;3;-0.000000, 0.893468, 0.000000;;, - 92;3;-0.000000, 0.893468, 0.000000;;, - 93;3;-0.000000, 0.893468, 0.000000;;, - 94;3;-0.000000, 0.893468, 0.000000;;, - 95;3;-0.000000, 0.893468, 0.000000;;, - 96;3;-0.000000, 0.893468, 0.000000;;, - 97;3;-0.000000, 0.893468, 0.000000;;, - 98;3;-0.000000, 0.893468, 0.000000;;, - 99;3;-0.000000, 0.893468, 0.000000;;, - 100;3;-0.000000, 0.893468, 0.000000;;, - 101;3;-0.000000, 0.893468, 0.000000;;, - 102;3;-0.000000, 0.893468, 0.000000;;, - 103;3;-0.000000, 0.893468, 0.000000;;, - 104;3;-0.000000, 0.893468, 0.000000;;, - 105;3;-0.000000, 0.893468, 0.000000;;, - 106;3;-0.000000, 0.893468, 0.000000;;, - 107;3;-0.000000, 0.893468, 0.000000;;, - 108;3;-0.000000, 0.893468, 0.000000;;, - 109;3;-0.000000, 0.893468, 0.000000;;, - 110;3;-0.000000, 0.893468, 0.000000;;, - 111;3;-0.000000, 0.893468, 0.000000;;, - 112;3;-0.000000, 0.893468, 0.000000;;, - 113;3;-0.000000, 0.893468, 0.000000;;, - 114;3;-0.000000, 0.893468, 0.000000;;, - 115;3;-0.000000, 0.893468, 0.000000;;, - 116;3;-0.000000, 0.893468, 0.000000;;, - 117;3;-0.000000, 0.893468, 0.000000;;, - 118;3;-0.000000, 0.893468, 0.000000;;, - 119;3;-0.000000, 0.893468, 0.000000;;, - 120;3;-0.000000, 0.893468, 0.000000;;, - 121;3;-0.000000, 0.893468, 0.000000;;, - 122;3;-0.000000, 0.893468, 0.000000;;, - 123;3;-0.000000, 0.893468, 0.000000;;, - 124;3;-0.000000, 0.893468, 0.000000;;, - 125;3;-0.000000, 0.893468, 0.000000;;, - 126;3;-0.000000, 0.893468, 0.000000;;, - 127;3;-0.000000, 0.893468, 0.000000;;, - 128;3;-0.000000, 0.893468, 0.000000;;, - 129;3;-0.000000, 0.893468, 0.000000;;, - 130;3;-0.000000, 0.893468, 0.000000;;, - 131;3;-0.000000, 0.893468, 0.000000;;, - 132;3;-0.000000, 0.893468, 0.000000;;, - 133;3;-0.000000, 0.893468, 0.000000;;, - 134;3;-0.000000, 0.893468, 0.000000;;, - 135;3;-0.000000, 0.893468, 0.000000;;, - 136;3;-0.000000, 0.893468, 0.000000;;, - 137;3;-0.000000, 0.893468, 0.000000;;, - 138;3;-0.000000, 0.893468, 0.000000;;, - 139;3;-0.000000, 0.893468, 0.000000;;, - 140;3;-0.000000, 0.893468, 0.000000;;, - 141;3;-0.000000, 0.893468, 0.000000;;, - 142;3;-0.000000, 0.893468, 0.000000;;, - 143;3;-0.000000, 0.893468, 0.000000;;, - 144;3;-0.000000, 0.893468, 0.000000;;, - 145;3;-0.000000, 0.893468, 0.000000;;, - 146;3;-0.000000, 0.893468, 0.000000;;, - 147;3;-0.000000, 0.893468, 0.000000;;, - 148;3;-0.000000, 0.893468, 0.000000;;, - 149;3;-0.000000, 0.893468, 0.000000;;, - 150;3;-0.000000, 0.893468, 0.000000;;, - 151;3;-0.000000, 0.893468, 0.000000;;, - 152;3;-0.000000, 0.893468, 0.000000;;, - 153;3;-0.000000, 0.893468, 0.000000;;, - 154;3;-0.000000, 0.893468, 0.000000;;, - 155;3;-0.000000, 0.893468, 0.000000;;, - 156;3;-0.000000, 0.893468, 0.000000;;, - 157;3;-0.000000, 0.893468, 0.000000;;, - 158;3;-0.000000, 0.893468, 0.000000;;, - 159;3;-0.000000, 0.893468, 0.000000;;, - 160;3;-0.000000, 0.893468, 0.000000;;, - 161;3;-0.000000, 0.893468, 0.000000;;, - 162;3;-0.000000, 0.893468, 0.000000;;, - 163;3;-0.000000, 0.893468, 0.000000;;, - 164;3;-0.000000, 0.893468, 0.000000;;, - 165;3;-0.000000, 0.893468, 0.000000;;, - 166;3;-0.000000, 0.893468, 0.000000;;, - 167;3;-0.000000, 0.893468, 0.000000;;, - 168;3;-0.000000, 0.893468, 0.000000;;, - 169;3;-0.000000, 0.893468, 0.000000;;, - 170;3;-0.000000, 0.893468, 0.000000;;, - 171;3;-0.000000, 0.893468, 0.000000;;, - 172;3;-0.000000, 0.893468, 0.000000;;, - 173;3;-0.000000, 0.893468, 0.000000;;, - 174;3;-0.000000, 0.893468, 0.000000;;, - 175;3;-0.000000, 0.893468, 0.000000;;, - 176;3;-0.000000, 0.893468, 0.000000;;, - 177;3;-0.000000, 0.893468, 0.000000;;, - 178;3;-0.000000, 0.893468, 0.000000;;, - 179;3;-0.000000, 0.893468, 0.000000;;, - 180;3;-0.000000, 0.893468, 0.000000;;, - 181;3; 0.000000, 0.893468, 0.000000;;, - 182;3; 0.000000, 0.893468,-0.000000;;, - 183;3; 0.000000, 0.893468,-0.000000;;, - 184;3; 0.000000, 0.893468,-0.000000;;, - 185;3;-0.000000, 0.893468, 0.000000;;, - 186;3;-0.000000, 0.893467, 0.000000;;, - 187;3;-0.000000, 0.893468, 0.000000;;, - 188;3;-0.000000, 0.893468, 0.000000;;, - 189;3;-0.000000, 0.893468, 0.000000;;, - 190;3;-0.000000, 0.893467, 0.000000;;, - 191;3;-0.000000, 0.893468, 0.000000;;, - 192;3; 0.000000, 0.893468,-0.000000;;, - 193;3; 0.000000, 0.893468, 0.000000;;, - 194;3;-0.000000, 0.893468, 0.000000;;, - 195;3; 0.000000, 0.893468, 0.000000;;, - 196;3;-0.000000, 0.893468,-0.000000;;, - 197;3;-0.000000, 0.893468,-0.000000;;, - 198;3; 0.000000, 0.893468, 0.000000;;, - 199;3;-0.000000, 0.893468, 0.000000;;, - 200;3;-0.000000, 0.893468, 0.000000;;, - 201;3;-0.000000, 0.893468, 0.000000;;, - 202;3;-0.000000, 0.893468, 0.000000;;, - 203;3;-0.000000, 0.893468, 0.000000;;, - 204;3;-0.000000, 0.893468, 0.000000;;, - 205;3;-0.000000, 0.893468, 0.000000;;, - 206;3;-0.000000, 0.893468, 0.000000;;, - 207;3;-0.000000, 0.893468, 0.000000;;, - 208;3;-0.000000, 0.893468, 0.000000;;, - 209;3;-0.000000, 0.893468, 0.000000;;, - 210;3;-0.000000, 0.893468, 0.000000;;, - 211;3;-0.000000, 0.893468, 0.000000;;, - 212;3; 0.000000, 0.893468,-0.000000;;, - 213;3;-0.000000, 0.893468, 0.000000;;, - 214;3;-0.000000, 0.893468,-0.000000;;, - 215;3; 0.000000, 0.893467, 0.000000;;, - 216;3;-0.000000, 0.893468, 0.000000;;, - 217;3;-0.000000, 0.893468, 0.000000;;, - 218;3;-0.000000, 0.893468,-0.000000;;, - 219;3;-0.000000, 0.893468,-0.000000;;, - 220;3;-0.000000, 0.893468, 0.000000;;, - 221;3;-0.000000, 0.893468,-0.000000;;, - 222;3; 0.000000, 0.893468, 0.000000;;, - 223;3; 0.000000, 0.893468, 0.000000;;, - 224;3; 0.000000, 0.893468,-0.000000;;, - 225;3; 0.000000, 0.893468, 0.000000;;, - 226;3; 0.000000, 0.893468, 0.000000;;, - 227;3;-0.000000, 0.893468,-0.000000;;, - 228;3; 0.000000, 0.893468, 0.000000;;, - 229;3; 0.000000, 0.893468, 0.000000;;, - 230;3; 0.000000, 0.893468, 0.000000;;, - 231;3; 0.000000, 0.893468,-0.000000;;, - 232;3;-0.000000, 0.893468,-0.000000;;, - 233;3; 0.000000, 0.893468,-0.000000;;, - 234;3; 0.000000, 0.893468, 0.000000;;, - 235;3; 0.000000, 0.893468, 0.000000;;, - 236;3; 0.000000, 0.893468, 0.000000;;, - 237;3;-0.000000, 0.893468, 0.000000;;, - 238;3;-0.000000, 0.893468,-0.000000;;, - 239;3;-0.000000, 0.893468, 0.000000;;, - 240;3;-0.000000, 0.893468, 0.000000;;, - 241;3;-0.000000, 0.893468, 0.000000;;, - 242;3;-0.000000, 0.893468, 0.000000;;, - 243;3;-0.000000, 0.893468, 0.000000;;, - 244;3;-0.000000, 0.893468, 0.000000;;, - 245;3;-0.000000, 0.893468, 0.000000;;, - 246;3;-0.000000, 0.893468, 0.000000;;, - 247;3;-0.000000, 0.893468, 0.000000;;, - 248;3;-0.000000, 0.893468, 0.000000;;, - 249;3;-0.000000, 0.893468, 0.000000;;; - } - } - Animation { - {Armature_Bone_021} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 1;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 2;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 3;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 4;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 5;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 6;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 7;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 8;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 9;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 10;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 11;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 12;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 13;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 14;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 15;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 16;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 17;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 18;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 19;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 20;4;-0.973485,-0.228703,-0.000191, 0.000019;;, - 21;4;-0.973248,-0.229564,-0.000769, 0.000075;;, - 22;4;-0.972851,-0.231004,-0.001735, 0.000168;;, - 23;4;-0.972299,-0.233013,-0.003083, 0.000299;;, - 24;4;-0.971596,-0.235566,-0.004797, 0.000465;;, - 25;4;-0.970755,-0.238620,-0.006846, 0.000664;;, - 26;4;-0.969794,-0.242111,-0.009189, 0.000891;;, - 27;4;-0.968736,-0.245954,-0.011768, 0.001141;;, - 28;4;-0.967611,-0.250044,-0.014513, 0.001407;;, - 29;4;-0.966450,-0.254263,-0.017344, 0.001682;;, - 30;4;-0.965289,-0.258481,-0.020174, 0.001956;;, - 31;4;-0.964163,-0.262571,-0.022919, 0.002222;;, - 32;4;-0.963105,-0.266414,-0.025498, 0.002472;;, - 33;4;-0.962144,-0.269905,-0.027841, 0.002700;;, - 34;4;-0.961303,-0.272959,-0.029891, 0.002898;;, - 35;4;-0.960601,-0.275512,-0.031604, 0.003064;;, - 36;4;-0.960048,-0.277521,-0.032952, 0.003195;;, - 37;4;-0.959651,-0.278961,-0.033918, 0.003289;;, - 38;4;-0.959414,-0.279822,-0.034496, 0.003345;;, - 39;4;-0.959336,-0.280107,-0.034687, 0.003363;;, - 40;4;-0.959414,-0.279822,-0.034496, 0.003345;;, - 41;4;-0.959651,-0.278961,-0.033918, 0.003289;;, - 42;4;-0.960048,-0.277521,-0.032952, 0.003195;;, - 43;4;-0.960601,-0.275512,-0.031604, 0.003064;;, - 44;4;-0.961303,-0.272959,-0.029891, 0.002898;;, - 45;4;-0.962144,-0.269905,-0.027841, 0.002700;;, - 46;4;-0.963105,-0.266414,-0.025498, 0.002472;;, - 47;4;-0.964163,-0.262571,-0.022919, 0.002222;;, - 48;4;-0.965289,-0.258481,-0.020174, 0.001956;;, - 49;4;-0.966450,-0.254263,-0.017344, 0.001682;;, - 50;4;-0.967611,-0.250045,-0.014513, 0.001407;;, - 51;4;-0.968736,-0.245954,-0.011768, 0.001141;;, - 52;4;-0.969794,-0.242111,-0.009189, 0.000891;;, - 53;4;-0.970755,-0.238620,-0.006846, 0.000664;;, - 54;4;-0.971596,-0.235566,-0.004797, 0.000465;;, - 55;4;-0.972299,-0.233013,-0.003083, 0.000299;;, - 56;4;-0.972851,-0.231004,-0.001735, 0.000168;;, - 57;4;-0.973248,-0.229564,-0.000769, 0.000075;;, - 58;4;-0.973485,-0.228703,-0.000191, 0.000019;;, - 59;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 60;4;-0.973404,-0.228767,-0.000244, 0.000024;;, - 61;4;-0.972923,-0.229820,-0.000978, 0.000095;;, - 62;4;-0.972118,-0.231582,-0.002208, 0.000214;;, - 63;4;-0.970988,-0.234057,-0.003935, 0.000382;;, - 64;4;-0.969532,-0.237244,-0.006160, 0.000597;;, - 65;4;-0.967753,-0.241141,-0.008879, 0.000861;;, - 66;4;-0.965653,-0.245739,-0.012088, 0.001172;;, - 67;4;-0.963238,-0.251026,-0.015778, 0.001530;;, - 68;4;-0.960517,-0.256983,-0.019936, 0.001933;;, - 69;4;-0.957501,-0.263589,-0.024546, 0.002380;;, - 70;4;-0.954202,-0.270812,-0.029587, 0.002869;;, - 71;4;-0.950637,-0.278617,-0.035034, 0.003397;;, - 72;4;-0.946826,-0.286961,-0.040858, 0.003962;;, - 73;4;-0.942792,-0.295795,-0.047023, 0.004560;;, - 74;4;-0.938559,-0.305063,-0.053492, 0.005187;;, - 75;4;-0.934156,-0.314704,-0.060220, 0.005839;;, - 76;4;-0.929613,-0.324650,-0.067162, 0.006512;;, - 77;4;-0.924964,-0.334830,-0.074267, 0.007201;;, - 78;4;-0.920243,-0.345168,-0.081482, 0.007901;;, - 79;4;-0.915485,-0.355585,-0.088752, 0.008606;;, - 80;4;-0.910727,-0.366003,-0.096022, 0.009311;;, - 81;4;-0.906006,-0.376340,-0.103237, 0.010010;;, - 82;4;-0.901357,-0.386520,-0.110342, 0.010699;;, - 83;4;-0.896814,-0.396466,-0.117284, 0.011372;;, - 84;4;-0.892411,-0.406108,-0.124012, 0.012025;;, - 85;4;-0.888178,-0.415376,-0.130481, 0.012652;;, - 86;4;-0.884144,-0.424210,-0.136646, 0.013250;;, - 87;4;-0.880333,-0.432554,-0.142470, 0.013815;;, - 88;4;-0.876768,-0.440359,-0.147917, 0.014343;;, - 89;4;-0.873469,-0.447582,-0.152958, 0.014832;;, - 90;4;-0.870453,-0.454187,-0.157568, 0.015278;;, - 91;4;-0.867732,-0.460145,-0.161726, 0.015682;;, - 92;4;-0.865317,-0.465432,-0.165416, 0.016039;;, - 93;4;-0.863217,-0.470030,-0.168625, 0.016351;;, - 94;4;-0.861438,-0.473926,-0.171344, 0.016614;;, - 95;4;-0.859982,-0.477114,-0.173569, 0.016830;;, - 96;4;-0.858852,-0.479589,-0.175296, 0.016998;;, - 97;4;-0.858047,-0.481351,-0.176526, 0.017117;;, - 98;4;-0.857566,-0.482403,-0.177260, 0.017188;;, - 99;4;-0.857407,-0.482752,-0.177504, 0.017212;;, - 100;4;-0.858309,-0.480401,-0.175889, 0.017055;;, - 101;4;-0.861111,-0.473098,-0.170870, 0.016568;;, - 102;4;-0.865870,-0.460691,-0.162346, 0.015742;;, - 103;4;-0.872467,-0.443497,-0.150531, 0.014596;;, - 104;4;-0.880543,-0.422446,-0.136067, 0.013194;;, - 105;4;-0.889527,-0.399027,-0.119976, 0.011633;;, - 106;4;-0.898757,-0.374967,-0.103443, 0.010030;;, - 107;4;-0.907639,-0.351816,-0.087537, 0.008488;;, - 108;4;-0.915745,-0.330685,-0.073017, 0.007080;;, - 109;4;-0.922837,-0.312200,-0.060316, 0.005849;;, - 110;4;-0.929928,-0.293715,-0.047615, 0.004617;;, - 111;4;-0.938035,-0.272584,-0.033096, 0.003209;;, - 112;4;-0.946916,-0.249434,-0.017189, 0.001667;;, - 113;4;-0.956147,-0.225373,-0.000656, 0.000064;;, - 114;4;-0.965131,-0.201955, 0.015435,-0.001497;;, - 115;4;-0.973207,-0.180904, 0.029899,-0.002899;;, - 116;4;-0.979803,-0.163709, 0.041713,-0.004045;;, - 117;4;-0.984563,-0.151303, 0.050238,-0.004871;;, - 118;4;-0.987365,-0.143999, 0.055256,-0.005358;;, - 119;4;-0.988267,-0.141648, 0.056872,-0.005515;;, - 120;4;-0.987365,-0.143999, 0.055256,-0.005358;;, - 121;4;-0.984563,-0.151303, 0.050238,-0.004871;;, - 122;4;-0.979803,-0.163709, 0.041713,-0.004045;;, - 123;4;-0.973207,-0.180904, 0.029899,-0.002899;;, - 124;4;-0.965131,-0.201955, 0.015435,-0.001497;;, - 125;4;-0.956147,-0.225373,-0.000656, 0.000064;;, - 126;4;-0.946916,-0.249434,-0.017189, 0.001667;;, - 127;4;-0.938035,-0.272584,-0.033096, 0.003209;;, - 128;4;-0.929928,-0.293715,-0.047615, 0.004617;;, - 129;4;-0.922837,-0.312200,-0.060316, 0.005849;;, - 130;4;-0.915745,-0.330685,-0.073017, 0.007080;;, - 131;4;-0.907639,-0.351816,-0.087537, 0.008488;;, - 132;4;-0.898757,-0.374967,-0.103443, 0.010030;;, - 133;4;-0.889527,-0.399027,-0.119976, 0.011633;;, - 134;4;-0.880543,-0.422446,-0.136067, 0.013194;;, - 135;4;-0.872467,-0.443497,-0.150531, 0.014596;;, - 136;4;-0.865870,-0.460691,-0.162346, 0.015742;;, - 137;4;-0.861111,-0.473098,-0.170870, 0.016568;;, - 138;4;-0.858309,-0.480401,-0.175889, 0.017055;;, - 139;4;-0.857407,-0.482752,-0.177504, 0.017212;;, - 140;4;-0.861111,-0.473098,-0.170870, 0.016568;;, - 141;4;-0.872467,-0.443497,-0.150531, 0.014596;;, - 142;4;-0.889527,-0.399027,-0.119976, 0.011633;;, - 143;4;-0.907639,-0.351816,-0.087537, 0.008488;;, - 144;4;-0.922837,-0.312200,-0.060316, 0.005849;;, - 145;4;-0.938035,-0.272584,-0.033096, 0.003209;;, - 146;4;-0.956147,-0.225373,-0.000656, 0.000064;;, - 147;4;-0.973207,-0.180904, 0.029899,-0.002899;;, - 148;4;-0.984563,-0.151303, 0.050238,-0.004871;;, - 149;4;-0.988267,-0.141648, 0.056872,-0.005515;;, - 150;4;-0.984563,-0.151303, 0.050238,-0.004871;;, - 151;4;-0.973207,-0.180904, 0.029899,-0.002899;;, - 152;4;-0.956147,-0.225373,-0.000656, 0.000064;;, - 153;4;-0.938035,-0.272584,-0.033096, 0.003209;;, - 154;4;-0.922837,-0.312200,-0.060316, 0.005849;;, - 155;4;-0.907639,-0.351816,-0.087537, 0.008488;;, - 156;4;-0.889527,-0.399027,-0.119976, 0.011633;;, - 157;4;-0.872467,-0.443497,-0.150531, 0.014596;;, - 158;4;-0.861111,-0.473098,-0.170870, 0.016568;;, - 159;4;-0.857407,-0.482752,-0.177504, 0.017212;;, - 160;4;-0.858047,-0.481351,-0.176526, 0.017117;;, - 161;4;-0.859982,-0.477114,-0.173569, 0.016830;;, - 162;4;-0.863217,-0.470030,-0.168625, 0.016351;;, - 163;4;-0.867732,-0.460145,-0.161726, 0.015682;;, - 164;4;-0.873470,-0.447582,-0.152958, 0.014832;;, - 165;4;-0.880333,-0.432554,-0.142470, 0.013815;;, - 166;4;-0.888178,-0.415376,-0.130481, 0.012652;;, - 167;4;-0.896814,-0.396466,-0.117284, 0.011372;;, - 168;4;-0.906006,-0.376340,-0.103237, 0.010010;;, - 169;4;-0.915485,-0.355585,-0.088752, 0.008606;;, - 170;4;-0.924964,-0.334830,-0.074267, 0.007201;;, - 171;4;-0.934156,-0.314704,-0.060220, 0.005839;;, - 172;4;-0.942792,-0.295795,-0.047023, 0.004560;;, - 173;4;-0.950637,-0.278617,-0.035034, 0.003397;;, - 174;4;-0.957501,-0.263589,-0.024546, 0.002380;;, - 175;4;-0.963238,-0.251026,-0.015778, 0.001530;;, - 176;4;-0.967753,-0.241141,-0.008879, 0.000861;;, - 177;4;-0.970988,-0.234057,-0.003935, 0.000382;;, - 178;4;-0.972923,-0.229820,-0.000978, 0.000095;;, - 179;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 180;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 181;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 182;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 183;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 184;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 185;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 186;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 187;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 188;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 189;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 190;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 191;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 192;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 193;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 194;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 195;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 196;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 197;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 198;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 199;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 200;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 201;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 202;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 203;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 204;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 205;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 206;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 207;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 208;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 209;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 210;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 211;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 212;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 213;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 214;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 215;4;-0.975093,-0.217561,-0.007319, 0.001530;;, - 216;4;-0.979402,-0.186979,-0.027934, 0.005840;;, - 217;4;-0.984934,-0.147712,-0.054404, 0.011374;;, - 218;4;-0.989243,-0.117130,-0.075019, 0.015685;;, - 219;4;-0.990773,-0.106273,-0.082338, 0.017215;;, - 220;4;-0.989243,-0.117130,-0.075019, 0.015685;;, - 221;4;-0.984934,-0.147712,-0.054404, 0.011374;;, - 222;4;-0.979402,-0.186979,-0.027934, 0.005840;;, - 223;4;-0.975093,-0.217561,-0.007319, 0.001530;;, - 224;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 225;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 226;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 227;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 228;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 229;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 230;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 231;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 232;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 233;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 234;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 235;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 236;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 237;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 238;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 239;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 240;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 241;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 242;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 243;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 244;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 245;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 246;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 247;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 248;4;-0.973563,-0.228418,-0.000000, 0.000000;;, - 249;4;-0.973563,-0.228418,-0.000000, 0.000000;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3;-0.000000, 1.294482,-0.000000;;, - 1;3;-0.000000, 1.294482,-0.000000;;, - 2;3;-0.000000, 1.294482,-0.000000;;, - 3;3;-0.000000, 1.294482,-0.000000;;, - 4;3;-0.000000, 1.294482,-0.000000;;, - 5;3;-0.000000, 1.294482,-0.000000;;, - 6;3;-0.000000, 1.294482,-0.000000;;, - 7;3;-0.000000, 1.294482,-0.000000;;, - 8;3;-0.000000, 1.294482,-0.000000;;, - 9;3;-0.000000, 1.294482,-0.000000;;, - 10;3;-0.000000, 1.294482,-0.000000;;, - 11;3;-0.000000, 1.294482,-0.000000;;, - 12;3;-0.000000, 1.294482,-0.000000;;, - 13;3;-0.000000, 1.294482,-0.000000;;, - 14;3;-0.000000, 1.294482,-0.000000;;, - 15;3;-0.000000, 1.294482,-0.000000;;, - 16;3;-0.000000, 1.294482,-0.000000;;, - 17;3;-0.000000, 1.294482,-0.000000;;, - 18;3;-0.000000, 1.294482,-0.000000;;, - 19;3;-0.000000, 1.294482,-0.000000;;, - 20;3;-0.000000, 1.294482,-0.000000;;, - 21;3;-0.000000, 1.294482,-0.000000;;, - 22;3;-0.000000, 1.294482,-0.000000;;, - 23;3;-0.000000, 1.294482,-0.000000;;, - 24;3;-0.000000, 1.294482,-0.000000;;, - 25;3;-0.000000, 1.294482,-0.000000;;, - 26;3;-0.000000, 1.294482,-0.000000;;, - 27;3;-0.000000, 1.294482,-0.000000;;, - 28;3;-0.000000, 1.294482,-0.000000;;, - 29;3;-0.000000, 1.294482,-0.000000;;, - 30;3;-0.000000, 1.294482,-0.000000;;, - 31;3;-0.000000, 1.294482,-0.000000;;, - 32;3;-0.000000, 1.294482,-0.000000;;, - 33;3;-0.000000, 1.294482,-0.000000;;, - 34;3;-0.000000, 1.294482,-0.000000;;, - 35;3;-0.000000, 1.294482,-0.000000;;, - 36;3;-0.000000, 1.294482,-0.000000;;, - 37;3;-0.000000, 1.294482,-0.000000;;, - 38;3;-0.000000, 1.294482,-0.000000;;, - 39;3;-0.000000, 1.294482,-0.000000;;, - 40;3;-0.000000, 1.294482,-0.000000;;, - 41;3;-0.000000, 1.294482,-0.000000;;, - 42;3;-0.000000, 1.294482,-0.000000;;, - 43;3;-0.000000, 1.294482,-0.000000;;, - 44;3;-0.000000, 1.294482,-0.000000;;, - 45;3;-0.000000, 1.294482,-0.000000;;, - 46;3;-0.000000, 1.294482,-0.000000;;, - 47;3;-0.000000, 1.294482,-0.000000;;, - 48;3;-0.000000, 1.294482,-0.000000;;, - 49;3;-0.000000, 1.294482,-0.000000;;, - 50;3;-0.000000, 1.294482,-0.000000;;, - 51;3;-0.000000, 1.294482,-0.000000;;, - 52;3;-0.000000, 1.294482,-0.000000;;, - 53;3;-0.000000, 1.294482,-0.000000;;, - 54;3;-0.000000, 1.294482,-0.000000;;, - 55;3;-0.000000, 1.294482,-0.000000;;, - 56;3;-0.000000, 1.294482,-0.000000;;, - 57;3;-0.000000, 1.294482,-0.000000;;, - 58;3;-0.000000, 1.294482,-0.000000;;, - 59;3;-0.000000, 1.294482,-0.000000;;, - 60;3;-0.000000, 1.294482, 0.000000;;, - 61;3; 0.000000, 1.294482,-0.000000;;, - 62;3; 0.000000, 1.294481,-0.000000;;, - 63;3;-0.000000, 1.294482, 0.000000;;, - 64;3; 0.000000, 1.294482, 0.000000;;, - 65;3; 0.000000, 1.294482, 0.000000;;, - 66;3;-0.000000, 1.294482, 0.000000;;, - 67;3;-0.000000, 1.294482,-0.000000;;, - 68;3;-0.000000, 1.294482,-0.000000;;, - 69;3;-0.000000, 1.294482,-0.000000;;, - 70;3; 0.000000, 1.294481, 0.000000;;, - 71;3;-0.000000, 1.294481, 0.000000;;, - 72;3;-0.000000, 1.294482,-0.000000;;, - 73;3; 0.000000, 1.294481, 0.000000;;, - 74;3; 0.000000, 1.294482, 0.000000;;, - 75;3; 0.000000, 1.294481, 0.000000;;, - 76;3;-0.000000, 1.294482,-0.000000;;, - 77;3;-0.000000, 1.294482, 0.000000;;, - 78;3; 0.000000, 1.294482,-0.000000;;, - 79;3; 0.000000, 1.294482, 0.000000;;, - 80;3;-0.000000, 1.294482,-0.000000;;, - 81;3; 0.000000, 1.294482, 0.000000;;, - 82;3; 0.000000, 1.294481, 0.000000;;, - 83;3;-0.000000, 1.294482, 0.000000;;, - 84;3;-0.000000, 1.294482, 0.000000;;, - 85;3;-0.000000, 1.294482, 0.000000;;, - 86;3;-0.000000, 1.294482, 0.000000;;, - 87;3;-0.000000, 1.294481, 0.000000;;, - 88;3; 0.000000, 1.294482,-0.000000;;, - 89;3; 0.000000, 1.294482, 0.000000;;, - 90;3; 0.000000, 1.294482, 0.000000;;, - 91;3;-0.000000, 1.294482, 0.000000;;, - 92;3;-0.000000, 1.294482,-0.000000;;, - 93;3;-0.000000, 1.294481, 0.000000;;, - 94;3;-0.000000, 1.294482, 0.000000;;, - 95;3; 0.000000, 1.294482, 0.000000;;, - 96;3; 0.000000, 1.294482,-0.000000;;, - 97;3; 0.000000, 1.294482, 0.000000;;, - 98;3;-0.000000, 1.294482, 0.000000;;, - 99;3; 0.000000, 1.294482,-0.000000;;, - 100;3; 0.000000, 1.294481, 0.000000;;, - 101;3; 0.000000, 1.294481,-0.000000;;, - 102;3; 0.000000, 1.294482,-0.000000;;, - 103;3; 0.000000, 1.294482,-0.000000;;, - 104;3; 0.000000, 1.294482,-0.000000;;, - 105;3; 0.000000, 1.294481, 0.000000;;, - 106;3; 0.000000, 1.294481,-0.000000;;, - 107;3;-0.000000, 1.294482, 0.000000;;, - 108;3; 0.000000, 1.294482,-0.000000;;, - 109;3; 0.000000, 1.294481,-0.000000;;, - 110;3; 0.000000, 1.294482, 0.000000;;, - 111;3;-0.000000, 1.294482,-0.000000;;, - 112;3; 0.000000, 1.294482,-0.000000;;, - 113;3; 0.000000, 1.294482,-0.000000;;, - 114;3;-0.000000, 1.294482,-0.000000;;, - 115;3;-0.000000, 1.294482, 0.000000;;, - 116;3; 0.000000, 1.294482,-0.000000;;, - 117;3; 0.000000, 1.294482,-0.000000;;, - 118;3; 0.000000, 1.294482,-0.000000;;, - 119;3;-0.000000, 1.294482, 0.000000;;, - 120;3; 0.000000, 1.294481,-0.000000;;, - 121;3;-0.000000, 1.294482,-0.000000;;, - 122;3;-0.000000, 1.294482,-0.000000;;, - 123;3;-0.000000, 1.294482, 0.000000;;, - 124;3; 0.000000, 1.294482,-0.000000;;, - 125;3; 0.000000, 1.294481, 0.000000;;, - 126;3; 0.000000, 1.294481,-0.000000;;, - 127;3; 0.000000, 1.294482, 0.000000;;, - 128;3; 0.000000, 1.294481, 0.000000;;, - 129;3;-0.000000, 1.294482, 0.000000;;, - 130;3; 0.000000, 1.294482, 0.000000;;, - 131;3; 0.000000, 1.294482,-0.000000;;, - 132;3;-0.000000, 1.294482, 0.000000;;, - 133;3;-0.000000, 1.294482,-0.000000;;, - 134;3;-0.000000, 1.294482, 0.000000;;, - 135;3; 0.000000, 1.294482, 0.000000;;, - 136;3; 0.000000, 1.294481,-0.000000;;, - 137;3;-0.000000, 1.294482,-0.000000;;, - 138;3;-0.000000, 1.294482, 0.000000;;, - 139;3; 0.000000, 1.294482,-0.000000;;, - 140;3;-0.000000, 1.294482,-0.000000;;, - 141;3; 0.000000, 1.294482, 0.000000;;, - 142;3; 0.000000, 1.294482, 0.000000;;, - 143;3;-0.000000, 1.294482, 0.000000;;, - 144;3; 0.000000, 1.294481,-0.000000;;, - 145;3;-0.000000, 1.294482,-0.000000;;, - 146;3; 0.000000, 1.294482,-0.000000;;, - 147;3;-0.000000, 1.294482, 0.000000;;, - 148;3; 0.000000, 1.294482,-0.000000;;, - 149;3;-0.000000, 1.294482, 0.000000;;, - 150;3;-0.000000, 1.294482,-0.000000;;, - 151;3;-0.000000, 1.294482, 0.000000;;, - 152;3; 0.000000, 1.294481, 0.000000;;, - 153;3; 0.000000, 1.294482, 0.000000;;, - 154;3;-0.000000, 1.294482, 0.000000;;, - 155;3;-0.000000, 1.294482,-0.000000;;, - 156;3; 0.000000, 1.294482,-0.000000;;, - 157;3; 0.000000, 1.294482,-0.000000;;, - 158;3; 0.000000, 1.294482,-0.000000;;, - 159;3; 0.000000, 1.294482,-0.000000;;, - 160;3; 0.000000, 1.294482,-0.000000;;, - 161;3;-0.000000, 1.294482, 0.000000;;, - 162;3;-0.000000, 1.294481, 0.000000;;, - 163;3; 0.000000, 1.294482, 0.000000;;, - 164;3;-0.000000, 1.294482,-0.000000;;, - 165;3; 0.000000, 1.294482, 0.000000;;, - 166;3;-0.000000, 1.294482, 0.000000;;, - 167;3; 0.000000, 1.294482, 0.000000;;, - 168;3; 0.000000, 1.294482, 0.000000;;, - 169;3; 0.000000, 1.294482,-0.000000;;, - 170;3; 0.000000, 1.294482, 0.000000;;, - 171;3;-0.000000, 1.294482, 0.000000;;, - 172;3;-0.000000, 1.294481,-0.000000;;, - 173;3;-0.000000, 1.294482, 0.000000;;, - 174;3;-0.000000, 1.294482,-0.000000;;, - 175;3; 0.000000, 1.294482, 0.000000;;, - 176;3;-0.000000, 1.294482, 0.000000;;, - 177;3; 0.000000, 1.294481, 0.000000;;, - 178;3;-0.000000, 1.294481,-0.000000;;, - 179;3;-0.000000, 1.294482,-0.000000;;, - 180;3; 0.000000, 1.294481, 0.000000;;, - 181;3; 0.000000, 1.294482,-0.000000;;, - 182;3; 0.000000, 1.294482, 0.000000;;, - 183;3; 0.000000, 1.294482, 0.000000;;, - 184;3;-0.000000, 1.294482,-0.000000;;, - 185;3; 0.000000, 1.294482,-0.000000;;, - 186;3;-0.000000, 1.294482,-0.000000;;, - 187;3; 0.000000, 1.294482,-0.000000;;, - 188;3;-0.000000, 1.294482, 0.000000;;, - 189;3;-0.000000, 1.294482,-0.000000;;, - 190;3; 0.000000, 1.294482,-0.000000;;, - 191;3; 0.000000, 1.294482,-0.000000;;, - 192;3; 0.000000, 1.294482,-0.000000;;, - 193;3; 0.000000, 1.294481,-0.000000;;, - 194;3; 0.000000, 1.294482,-0.000000;;, - 195;3; 0.000000, 1.294482,-0.000000;;, - 196;3; 0.000000, 1.294481,-0.000000;;, - 197;3;-0.000000, 1.294481, 0.000000;;, - 198;3; 0.000000, 1.294482,-0.000000;;, - 199;3;-0.000000, 1.294482,-0.000000;;, - 200;3;-0.000000, 1.294482,-0.000000;;, - 201;3;-0.000000, 1.294482,-0.000000;;, - 202;3;-0.000000, 1.294482,-0.000000;;, - 203;3;-0.000000, 1.294482,-0.000000;;, - 204;3;-0.000000, 1.294482,-0.000000;;, - 205;3;-0.000000, 1.294482,-0.000000;;, - 206;3;-0.000000, 1.294482,-0.000000;;, - 207;3;-0.000000, 1.294482,-0.000000;;, - 208;3;-0.000000, 1.294482,-0.000000;;, - 209;3;-0.000000, 1.294482,-0.000000;;, - 210;3; 0.000000, 1.294482, 0.000000;;, - 211;3;-0.000000, 1.294482, 0.000000;;, - 212;3;-0.000000, 1.294481, 0.000000;;, - 213;3;-0.000000, 1.294482,-0.000000;;, - 214;3; 0.000000, 1.294482,-0.000000;;, - 215;3; 0.000000, 1.294482,-0.000000;;, - 216;3;-0.000000, 1.294482,-0.000000;;, - 217;3; 0.000000, 1.294482,-0.000000;;, - 218;3; 0.000000, 1.294482,-0.000000;;, - 219;3;-0.000000, 1.294482, 0.000000;;, - 220;3; 0.000000, 1.294482,-0.000000;;, - 221;3; 0.000000, 1.294482, 0.000000;;, - 222;3; 0.000000, 1.294482,-0.000000;;, - 223;3;-0.000000, 1.294482, 0.000000;;, - 224;3;-0.000000, 1.294482,-0.000000;;, - 225;3; 0.000000, 1.294482, 0.000000;;, - 226;3; 0.000000, 1.294482,-0.000000;;, - 227;3; 0.000000, 1.294482,-0.000000;;, - 228;3;-0.000000, 1.294481,-0.000000;;, - 229;3;-0.000000, 1.294482, 0.000000;;, - 230;3;-0.000000, 1.294481, 0.000000;;, - 231;3;-0.000000, 1.294481, 0.000000;;, - 232;3; 0.000000, 1.294482,-0.000000;;, - 233;3; 0.000000, 1.294482,-0.000000;;, - 234;3;-0.000000, 1.294482,-0.000000;;, - 235;3;-0.000000, 1.294482,-0.000000;;, - 236;3;-0.000000, 1.294481,-0.000000;;, - 237;3;-0.000000, 1.294481, 0.000000;;, - 238;3;-0.000000, 1.294481, 0.000000;;, - 239;3;-0.000000, 1.294482,-0.000000;;, - 240;3;-0.000000, 1.294482,-0.000000;;, - 241;3;-0.000000, 1.294482,-0.000000;;, - 242;3;-0.000000, 1.294482,-0.000000;;, - 243;3;-0.000000, 1.294482,-0.000000;;, - 244;3;-0.000000, 1.294482,-0.000000;;, - 245;3;-0.000000, 1.294482,-0.000000;;, - 246;3;-0.000000, 1.294482,-0.000000;;, - 247;3;-0.000000, 1.294482,-0.000000;;, - 248;3;-0.000000, 1.294482,-0.000000;;, - 249;3;-0.000000, 1.294482,-0.000000;;; - } - } - Animation { - {Armature_Bone_025} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 1;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 2;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 3;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 4;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 5;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 6;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 7;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 8;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 9;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 10;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 11;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 12;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 13;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 14;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 15;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 16;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 17;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 18;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 19;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 20;4;-0.945928,-0.324372, 0.000064, 0.000032;;, - 21;4;-0.946031,-0.324057, 0.000256, 0.000128;;, - 22;4;-0.946203,-0.323531, 0.000578, 0.000290;;, - 23;4;-0.946444,-0.322797, 0.001027, 0.000514;;, - 24;4;-0.946749,-0.321864, 0.001598, 0.000800;;, - 25;4;-0.947114,-0.320748, 0.002281, 0.001142;;, - 26;4;-0.947532,-0.319472, 0.003062, 0.001533;;, - 27;4;-0.947991,-0.318068, 0.003921, 0.001964;;, - 28;4;-0.948480,-0.316574, 0.004836, 0.002422;;, - 29;4;-0.948985,-0.315033, 0.005779, 0.002894;;, - 30;4;-0.949489,-0.313491, 0.006722, 0.003366;;, - 31;4;-0.949979,-0.311997, 0.007637, 0.003824;;, - 32;4;-0.950438,-0.310593, 0.008496, 0.004254;;, - 33;4;-0.950856,-0.309317, 0.009277, 0.004645;;, - 34;4;-0.951221,-0.308201, 0.009960, 0.004987;;, - 35;4;-0.951526,-0.307268, 0.010531, 0.005273;;, - 36;4;-0.951766,-0.306534, 0.010980, 0.005498;;, - 37;4;-0.951939,-0.306008, 0.011302, 0.005659;;, - 38;4;-0.952042,-0.305694, 0.011494, 0.005756;;, - 39;4;-0.952076,-0.305589, 0.011558, 0.005788;;, - 40;4;-0.952075,-0.305611, 0.011546, 0.005782;;, - 41;4;-0.952071,-0.305681, 0.011508, 0.005763;;, - 42;4;-0.952060,-0.305809, 0.011436, 0.005727;;, - 43;4;-0.952037,-0.306007, 0.011325, 0.005671;;, - 44;4;-0.951997,-0.306286, 0.011165, 0.005591;;, - 45;4;-0.951933,-0.306659, 0.010950, 0.005483;;, - 46;4;-0.951838,-0.307138, 0.010671, 0.005344;;, - 47;4;-0.951706,-0.307734, 0.010321, 0.005168;;, - 48;4;-0.951530,-0.308456, 0.009892, 0.004953;;, - 49;4;-0.951303,-0.309311, 0.009381, 0.004697;;, - 50;4;-0.951021,-0.310303, 0.008783, 0.004398;;, - 51;4;-0.950680,-0.311432, 0.008099, 0.004056;;, - 52;4;-0.950279,-0.312693, 0.007330, 0.003671;;, - 53;4;-0.949816,-0.314079, 0.006479, 0.003245;;, - 54;4;-0.949294,-0.315583, 0.005552, 0.002780;;, - 55;4;-0.948714,-0.317193, 0.004555, 0.002281;;, - 56;4;-0.948080,-0.318899, 0.003494, 0.001750;;, - 57;4;-0.947396,-0.320688, 0.002377, 0.001190;;, - 58;4;-0.946666,-0.322550, 0.001210, 0.000606;;, - 59;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 60;4;-0.945056,-0.326527,-0.001292,-0.000647;;, - 61;4;-0.944124,-0.328772,-0.002708,-0.001356;;, - 62;4;-0.943099,-0.331211,-0.004248,-0.002127;;, - 63;4;-0.941981,-0.333842,-0.005911,-0.002960;;, - 64;4;-0.940772,-0.336663,-0.007695,-0.003853;;, - 65;4;-0.939472,-0.339670,-0.009599,-0.004806;;, - 66;4;-0.938084,-0.342858,-0.011617,-0.005817;;, - 67;4;-0.936612,-0.346220,-0.013748,-0.006884;;, - 68;4;-0.935058,-0.349747,-0.015984,-0.008004;;, - 69;4;-0.933428,-0.353429,-0.018319,-0.009173;;, - 70;4;-0.931727,-0.357255,-0.020746,-0.010389;;, - 71;4;-0.929962,-0.361209,-0.023256,-0.011646;;, - 72;4;-0.928139,-0.365276,-0.025838,-0.012939;;, - 73;4;-0.926269,-0.369438,-0.028481,-0.014262;;, - 74;4;-0.924358,-0.373675,-0.031173,-0.015610;;, - 75;4;-0.922419,-0.377965,-0.033899,-0.016975;;, - 76;4;-0.920460,-0.382286,-0.036645,-0.018350;;, - 77;4;-0.918494,-0.386613,-0.039396,-0.019727;;, - 78;4;-0.916532,-0.390923,-0.042135,-0.021099;;, - 79;4;-0.914586,-0.395188,-0.044848,-0.022458;;, - 80;4;-0.912668,-0.399386,-0.047518,-0.023794;;, - 81;4;-0.910789,-0.403490,-0.050128,-0.025102;;, - 82;4;-0.908961,-0.407478,-0.052665,-0.026372;;, - 83;4;-0.907194,-0.411326,-0.055114,-0.027598;;, - 84;4;-0.905498,-0.415014,-0.057461,-0.028774;;, - 85;4;-0.903883,-0.418523,-0.059694,-0.029892;;, - 86;4;-0.902356,-0.421835,-0.061802,-0.030947;;, - 87;4;-0.900925,-0.424936,-0.063776,-0.031936;;, - 88;4;-0.899597,-0.427812,-0.065607,-0.032853;;, - 89;4;-0.898376,-0.430454,-0.067289,-0.033695;;, - 90;4;-0.897266,-0.432853,-0.068816,-0.034460;;, - 91;4;-0.896270,-0.435002,-0.070185,-0.035145;;, - 92;4;-0.895392,-0.436898,-0.071392,-0.035750;;, - 93;4;-0.894632,-0.438537,-0.072436,-0.036272;;, - 94;4;-0.893990,-0.439919,-0.073316,-0.036713;;, - 95;4;-0.893468,-0.441043,-0.074032,-0.037072;;, - 96;4;-0.893064,-0.441913,-0.074586,-0.037349;;, - 97;4;-0.892778,-0.442529,-0.074978,-0.037545;;, - 98;4;-0.892607,-0.442895,-0.075212,-0.037662;;, - 99;4;-0.892551,-0.443016,-0.075289,-0.037701;;, - 100;4;-0.893183,-0.440632,-0.073858,-0.036985;;, - 101;4;-0.895145,-0.433228,-0.069414,-0.034759;;, - 102;4;-0.898479,-0.420648,-0.061863,-0.030978;;, - 103;4;-0.903099,-0.403215,-0.051400,-0.025738;;, - 104;4;-0.908756,-0.381872,-0.038589,-0.019323;;, - 105;4;-0.915049,-0.358128,-0.024337,-0.012187;;, - 106;4;-0.921514,-0.333734,-0.009695,-0.004855;;, - 107;4;-0.927735,-0.310262, 0.004393, 0.002200;;, - 108;4;-0.933413,-0.288837, 0.017253, 0.008639;;, - 109;4;-0.938380,-0.270095, 0.028502, 0.014272;;, - 110;4;-0.943347,-0.251354, 0.039751, 0.019905;;, - 111;4;-0.949025,-0.229929, 0.052610, 0.026345;;, - 112;4;-0.955246,-0.206457, 0.066699, 0.033399;;, - 113;4;-0.961711,-0.182063, 0.081341, 0.040732;;, - 114;4;-0.968004,-0.158319, 0.095593, 0.047868;;, - 115;4;-0.973661,-0.136976, 0.108403, 0.054283;;, - 116;4;-0.978281,-0.119542, 0.118867, 0.059523;;, - 117;4;-0.981615,-0.106963, 0.126417, 0.063304;;, - 118;4;-0.983577,-0.099559, 0.130862, 0.065529;;, - 119;4;-0.984209,-0.097175, 0.132293, 0.066246;;, - 120;4;-0.983577,-0.099559, 0.130862, 0.065529;;, - 121;4;-0.981615,-0.106963, 0.126417, 0.063304;;, - 122;4;-0.978281,-0.119542, 0.118867, 0.059523;;, - 123;4;-0.973661,-0.136976, 0.108403, 0.054283;;, - 124;4;-0.968004,-0.158319, 0.095593, 0.047868;;, - 125;4;-0.961711,-0.182063, 0.081341, 0.040732;;, - 126;4;-0.955246,-0.206457, 0.066699, 0.033399;;, - 127;4;-0.949025,-0.229929, 0.052610, 0.026345;;, - 128;4;-0.943347,-0.251354, 0.039751, 0.019905;;, - 129;4;-0.938380,-0.270095, 0.028502, 0.014272;;, - 130;4;-0.933413,-0.288837, 0.017253, 0.008639;;, - 131;4;-0.927735,-0.310262, 0.004393, 0.002200;;, - 132;4;-0.921514,-0.333734,-0.009695,-0.004855;;, - 133;4;-0.915049,-0.358128,-0.024337,-0.012187;;, - 134;4;-0.908756,-0.381872,-0.038589,-0.019323;;, - 135;4;-0.903099,-0.403215,-0.051400,-0.025738;;, - 136;4;-0.898479,-0.420648,-0.061863,-0.030978;;, - 137;4;-0.895145,-0.433228,-0.069414,-0.034759;;, - 138;4;-0.893183,-0.440632,-0.073858,-0.036985;;, - 139;4;-0.892551,-0.443016,-0.075289,-0.037701;;, - 140;4;-0.895145,-0.433228,-0.069414,-0.034759;;, - 141;4;-0.903099,-0.403215,-0.051400,-0.025738;;, - 142;4;-0.915049,-0.358128,-0.024337,-0.012187;;, - 143;4;-0.927735,-0.310262, 0.004393, 0.002200;;, - 144;4;-0.938380,-0.270095, 0.028502, 0.014272;;, - 145;4;-0.949025,-0.229929, 0.052610, 0.026345;;, - 146;4;-0.961711,-0.182063, 0.081341, 0.040732;;, - 147;4;-0.973661,-0.136976, 0.108403, 0.054283;;, - 148;4;-0.981615,-0.106963, 0.126417, 0.063304;;, - 149;4;-0.984209,-0.097175, 0.132293, 0.066246;;, - 150;4;-0.981615,-0.106963, 0.126417, 0.063304;;, - 151;4;-0.973661,-0.136976, 0.108403, 0.054283;;, - 152;4;-0.961711,-0.182063, 0.081341, 0.040732;;, - 153;4;-0.949025,-0.229929, 0.052610, 0.026345;;, - 154;4;-0.938380,-0.270095, 0.028502, 0.014272;;, - 155;4;-0.927735,-0.310262, 0.004393, 0.002200;;, - 156;4;-0.915049,-0.358128,-0.024337,-0.012187;;, - 157;4;-0.903099,-0.403215,-0.051400,-0.025738;;, - 158;4;-0.895145,-0.433228,-0.069414,-0.034759;;, - 159;4;-0.892551,-0.443016,-0.075289,-0.037701;;, - 160;4;-0.892845,-0.442363,-0.074874,-0.037493;;, - 161;4;-0.893733,-0.440388,-0.073620,-0.036865;;, - 162;4;-0.895219,-0.437086,-0.071523,-0.035815;;, - 163;4;-0.897292,-0.432479,-0.068597,-0.034350;;, - 164;4;-0.899927,-0.426624,-0.064878,-0.032488;;, - 165;4;-0.903079,-0.419620,-0.060429,-0.030260;;, - 166;4;-0.906682,-0.411613,-0.055344,-0.027714;;, - 167;4;-0.910648,-0.402800,-0.049746,-0.024911;;, - 168;4;-0.914869,-0.393419,-0.043789,-0.021927;;, - 169;4;-0.919222,-0.383746,-0.037645,-0.018850;;, - 170;4;-0.923576,-0.374072,-0.031501,-0.015774;;, - 171;4;-0.927797,-0.364692,-0.025543,-0.012791;;, - 172;4;-0.931763,-0.355879,-0.019945,-0.009987;;, - 173;4;-0.935366,-0.347872,-0.014860,-0.007441;;, - 174;4;-0.938518,-0.340868,-0.010411,-0.005213;;, - 175;4;-0.941152,-0.335013,-0.006692,-0.003351;;, - 176;4;-0.943226,-0.330405,-0.003766,-0.001886;;, - 177;4;-0.944712,-0.327104,-0.001669,-0.000836;;, - 178;4;-0.945600,-0.325129,-0.000415,-0.000208;;, - 179;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 180;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 181;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 182;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 183;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 184;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 185;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 186;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 187;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 188;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 189;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 190;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 191;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 192;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 193;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 194;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 195;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 196;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 197;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 198;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 199;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 200;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 201;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 202;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 203;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 204;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 205;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 206;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 207;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 208;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 209;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 210;4;-0.946913,-0.316831,-0.004430,-0.015878;;, - 211;4;-0.949972,-0.293471,-0.017893,-0.060600;;, - 212;4;-0.954403,-0.258567,-0.037817,-0.118023;;, - 213;4;-0.958834,-0.221826,-0.058470,-0.162745;;, - 214;4;-0.962189,-0.191416,-0.075136,-0.178623;;, - 215;4;-0.965012,-0.161622,-0.090827,-0.177121;;, - 216;4;-0.967942,-0.126617,-0.108734,-0.171631;;, - 217;4;-0.970445,-0.093942,-0.125132,-0.161197;;, - 218;4;-0.972003,-0.072318,-0.135847,-0.146484;;, - 219;4;-0.972489,-0.065290,-0.139302,-0.129293;;, - 220;4;-0.970125,-0.088329,-0.126920,-0.104994;;, - 221;4;-0.963466,-0.153222,-0.092042,-0.070261;;, - 222;4;-0.954917,-0.236544,-0.047260,-0.034121;;, - 223;4;-0.948258,-0.301437,-0.012382,-0.008610;;, - 224;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 225;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 226;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 227;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 228;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 229;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 230;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 231;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 232;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 233;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 234;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 235;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 236;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 237;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 238;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 239;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 240;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 241;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 242;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 243;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 244;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 245;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 246;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 247;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 248;4;-0.945894,-0.324476,-0.000000, 0.000000;;, - 249;4;-0.945894,-0.324476,-0.000000, 0.000000;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3;-0.000000, 1.228822,-0.000000;;, - 1;3;-0.000000, 1.228822,-0.000000;;, - 2;3;-0.000000, 1.228822,-0.000000;;, - 3;3;-0.000000, 1.228822,-0.000000;;, - 4;3;-0.000000, 1.228822,-0.000000;;, - 5;3;-0.000000, 1.228822,-0.000000;;, - 6;3;-0.000000, 1.228822,-0.000000;;, - 7;3;-0.000000, 1.228822,-0.000000;;, - 8;3;-0.000000, 1.228822,-0.000000;;, - 9;3;-0.000000, 1.228822,-0.000000;;, - 10;3;-0.000000, 1.228822,-0.000000;;, - 11;3;-0.000000, 1.228822,-0.000000;;, - 12;3;-0.000000, 1.228822,-0.000000;;, - 13;3;-0.000000, 1.228822,-0.000000;;, - 14;3;-0.000000, 1.228822,-0.000000;;, - 15;3;-0.000000, 1.228822,-0.000000;;, - 16;3;-0.000000, 1.228822,-0.000000;;, - 17;3;-0.000000, 1.228822,-0.000000;;, - 18;3;-0.000000, 1.228822,-0.000000;;, - 19;3;-0.000000, 1.228822,-0.000000;;, - 20;3;-0.000000, 1.228822,-0.000000;;, - 21;3; 0.000000, 1.228822, 0.000000;;, - 22;3; 0.000000, 1.228822,-0.000000;;, - 23;3;-0.000000, 1.228822,-0.000000;;, - 24;3; 0.000000, 1.228822, 0.000000;;, - 25;3;-0.000000, 1.228822,-0.000000;;, - 26;3; 0.000000, 1.228822, 0.000000;;, - 27;3; 0.000000, 1.228822, 0.000000;;, - 28;3;-0.000000, 1.228822,-0.000000;;, - 29;3; 0.000000, 1.228822, 0.000000;;, - 30;3; 0.000000, 1.228822,-0.000000;;, - 31;3; 0.000000, 1.228822, 0.000000;;, - 32;3; 0.000000, 1.228822, 0.000000;;, - 33;3;-0.000000, 1.228822,-0.000000;;, - 34;3;-0.000000, 1.228822, 0.000000;;, - 35;3; 0.000000, 1.228822,-0.000000;;, - 36;3; 0.000000, 1.228822, 0.000000;;, - 37;3; 0.000000, 1.228822,-0.000000;;, - 38;3;-0.000000, 1.228822, 0.000000;;, - 39;3; 0.000000, 1.228822,-0.000000;;, - 40;3; 0.000000, 1.228822, 0.000000;;, - 41;3; 0.000000, 1.228822,-0.000000;;, - 42;3; 0.000000, 1.228822, 0.000000;;, - 43;3; 0.000000, 1.228822,-0.000000;;, - 44;3; 0.000000, 1.228822,-0.000000;;, - 45;3; 0.000000, 1.228822,-0.000000;;, - 46;3; 0.000000, 1.228822, 0.000000;;, - 47;3; 0.000000, 1.228822, 0.000000;;, - 48;3; 0.000000, 1.228822,-0.000000;;, - 49;3; 0.000000, 1.228822,-0.000000;;, - 50;3; 0.000000, 1.228822,-0.000000;;, - 51;3; 0.000000, 1.228822, 0.000000;;, - 52;3; 0.000000, 1.228822, 0.000000;;, - 53;3; 0.000000, 1.228822, 0.000000;;, - 54;3; 0.000000, 1.228822, 0.000000;;, - 55;3;-0.000000, 1.228822,-0.000000;;, - 56;3; 0.000000, 1.228822,-0.000000;;, - 57;3; 0.000000, 1.228822, 0.000000;;, - 58;3;-0.000000, 1.228822, 0.000000;;, - 59;3;-0.000000, 1.228822,-0.000000;;, - 60;3; 0.000000, 1.228822,-0.000000;;, - 61;3;-0.000000, 1.228822, 0.000000;;, - 62;3;-0.000000, 1.228822, 0.000000;;, - 63;3;-0.000000, 1.228822,-0.000000;;, - 64;3; 0.000000, 1.228822,-0.000000;;, - 65;3;-0.000000, 1.228822, 0.000000;;, - 66;3;-0.000000, 1.228822, 0.000000;;, - 67;3;-0.000000, 1.228822,-0.000000;;, - 68;3; 0.000000, 1.228822,-0.000000;;, - 69;3;-0.000000, 1.228822,-0.000000;;, - 70;3;-0.000000, 1.228822,-0.000000;;, - 71;3;-0.000000, 1.228822,-0.000000;;, - 72;3; 0.000000, 1.228822, 0.000000;;, - 73;3;-0.000000, 1.228822,-0.000000;;, - 74;3; 0.000000, 1.228822,-0.000000;;, - 75;3; 0.000000, 1.228822,-0.000000;;, - 76;3; 0.000000, 1.228822, 0.000000;;, - 77;3; 0.000000, 1.228822, 0.000000;;, - 78;3;-0.000000, 1.228822, 0.000000;;, - 79;3;-0.000000, 1.228822,-0.000000;;, - 80;3; 0.000000, 1.228822, 0.000000;;, - 81;3; 0.000000, 1.228822,-0.000000;;, - 82;3;-0.000000, 1.228822, 0.000000;;, - 83;3;-0.000000, 1.228822, 0.000000;;, - 84;3; 0.000000, 1.228822,-0.000000;;, - 85;3;-0.000000, 1.228822, 0.000000;;, - 86;3;-0.000000, 1.228822,-0.000000;;, - 87;3;-0.000000, 1.228822,-0.000000;;, - 88;3;-0.000000, 1.228822,-0.000000;;, - 89;3;-0.000000, 1.228822, 0.000000;;, - 90;3; 0.000000, 1.228822, 0.000000;;, - 91;3;-0.000000, 1.228822,-0.000000;;, - 92;3;-0.000000, 1.228822, 0.000000;;, - 93;3;-0.000000, 1.228822,-0.000000;;, - 94;3;-0.000000, 1.228822, 0.000000;;, - 95;3; 0.000000, 1.228822,-0.000000;;, - 96;3;-0.000000, 1.228822,-0.000000;;, - 97;3;-0.000000, 1.228822,-0.000000;;, - 98;3;-0.000000, 1.228822, 0.000000;;, - 99;3; 0.000000, 1.228822, 0.000000;;, - 100;3; 0.000000, 1.228822,-0.000000;;, - 101;3;-0.000000, 1.228822,-0.000000;;, - 102;3;-0.000000, 1.228822,-0.000000;;, - 103;3;-0.000000, 1.228822,-0.000000;;, - 104;3; 0.000000, 1.228822, 0.000000;;, - 105;3;-0.000000, 1.228822,-0.000000;;, - 106;3;-0.000000, 1.228822,-0.000000;;, - 107;3; 0.000000, 1.228822,-0.000000;;, - 108;3; 0.000000, 1.228822,-0.000000;;, - 109;3; 0.000000, 1.228822,-0.000000;;, - 110;3;-0.000000, 1.228822,-0.000000;;, - 111;3; 0.000000, 1.228822, 0.000000;;, - 112;3;-0.000000, 1.228822,-0.000000;;, - 113;3;-0.000000, 1.228822,-0.000000;;, - 114;3; 0.000000, 1.228822, 0.000000;;, - 115;3; 0.000000, 1.228822,-0.000000;;, - 116;3;-0.000000, 1.228822, 0.000000;;, - 117;3;-0.000000, 1.228822,-0.000000;;, - 118;3;-0.000000, 1.228822,-0.000000;;, - 119;3; 0.000000, 1.228822,-0.000000;;, - 120;3; 0.000000, 1.228822, 0.000000;;, - 121;3;-0.000000, 1.228822,-0.000000;;, - 122;3;-0.000000, 1.228822, 0.000000;;, - 123;3; 0.000000, 1.228822,-0.000000;;, - 124;3; 0.000000, 1.228822,-0.000000;;, - 125;3; 0.000000, 1.228822,-0.000000;;, - 126;3;-0.000000, 1.228822,-0.000000;;, - 127;3;-0.000000, 1.228822,-0.000000;;, - 128;3;-0.000000, 1.228822,-0.000000;;, - 129;3;-0.000000, 1.228822,-0.000000;;, - 130;3; 0.000000, 1.228822, 0.000000;;, - 131;3; 0.000000, 1.228822,-0.000000;;, - 132;3; 0.000000, 1.228822, 0.000000;;, - 133;3; 0.000000, 1.228822,-0.000000;;, - 134;3;-0.000000, 1.228822, 0.000000;;, - 135;3; 0.000000, 1.228822,-0.000000;;, - 136;3;-0.000000, 1.228822, 0.000000;;, - 137;3; 0.000000, 1.228822, 0.000000;;, - 138;3; 0.000000, 1.228822,-0.000000;;, - 139;3; 0.000000, 1.228822, 0.000000;;, - 140;3; 0.000000, 1.228822,-0.000000;;, - 141;3;-0.000000, 1.228822,-0.000000;;, - 142;3; 0.000000, 1.228822,-0.000000;;, - 143;3;-0.000000, 1.228822, 0.000000;;, - 144;3; 0.000000, 1.228822,-0.000000;;, - 145;3; 0.000000, 1.228822, 0.000000;;, - 146;3;-0.000000, 1.228822,-0.000000;;, - 147;3; 0.000000, 1.228822,-0.000000;;, - 148;3;-0.000000, 1.228822,-0.000000;;, - 149;3; 0.000000, 1.228822,-0.000000;;, - 150;3;-0.000000, 1.228822,-0.000000;;, - 151;3; 0.000000, 1.228822,-0.000000;;, - 152;3; 0.000000, 1.228822,-0.000000;;, - 153;3;-0.000000, 1.228822,-0.000000;;, - 154;3;-0.000000, 1.228822,-0.000000;;, - 155;3; 0.000000, 1.228822, 0.000000;;, - 156;3;-0.000000, 1.228822, 0.000000;;, - 157;3;-0.000000, 1.228822,-0.000000;;, - 158;3;-0.000000, 1.228822,-0.000000;;, - 159;3; 0.000000, 1.228822, 0.000000;;, - 160;3; 0.000000, 1.228822, 0.000000;;, - 161;3;-0.000000, 1.228822,-0.000000;;, - 162;3;-0.000000, 1.228822,-0.000000;;, - 163;3;-0.000000, 1.228822, 0.000000;;, - 164;3;-0.000000, 1.228822,-0.000000;;, - 165;3; 0.000000, 1.228822,-0.000000;;, - 166;3;-0.000000, 1.228822,-0.000000;;, - 167;3; 0.000000, 1.228822,-0.000000;;, - 168;3;-0.000000, 1.228822,-0.000000;;, - 169;3; 0.000000, 1.228822,-0.000000;;, - 170;3; 0.000000, 1.228822, 0.000000;;, - 171;3; 0.000000, 1.228822, 0.000000;;, - 172;3;-0.000000, 1.228822,-0.000000;;, - 173;3;-0.000000, 1.228822,-0.000000;;, - 174;3; 0.000000, 1.228822, 0.000000;;, - 175;3; 0.000000, 1.228822, 0.000000;;, - 176;3;-0.000000, 1.228822,-0.000000;;, - 177;3; 0.000000, 1.228822,-0.000000;;, - 178;3; 0.000000, 1.228822,-0.000000;;, - 179;3;-0.000000, 1.228822,-0.000000;;, - 180;3; 0.000000, 1.228822,-0.000000;;, - 181;3; 0.000000, 1.228822,-0.000000;;, - 182;3;-0.000000, 1.228822, 0.000000;;, - 183;3;-0.000000, 1.228822,-0.000000;;, - 184;3;-0.000000, 1.228822, 0.000000;;, - 185;3;-0.000000, 1.228822,-0.000000;;, - 186;3; 0.000000, 1.228822, 0.000000;;, - 187;3;-0.000000, 1.228822,-0.000000;;, - 188;3; 0.000000, 1.228822,-0.000000;;, - 189;3; 0.000000, 1.228822, 0.000000;;, - 190;3; 0.000000, 1.228822, 0.000000;;, - 191;3;-0.000000, 1.228822,-0.000000;;, - 192;3;-0.000000, 1.228822,-0.000000;;, - 193;3; 0.000000, 1.228822,-0.000000;;, - 194;3;-0.000000, 1.228822, 0.000000;;, - 195;3;-0.000000, 1.228822, 0.000000;;, - 196;3;-0.000000, 1.228822,-0.000000;;, - 197;3;-0.000000, 1.228822,-0.000000;;, - 198;3;-0.000000, 1.228822, 0.000000;;, - 199;3;-0.000000, 1.228822,-0.000000;;, - 200;3;-0.000000, 1.228822,-0.000000;;, - 201;3;-0.000000, 1.228822,-0.000000;;, - 202;3;-0.000000, 1.228822,-0.000000;;, - 203;3;-0.000000, 1.228822,-0.000000;;, - 204;3;-0.000000, 1.228822,-0.000000;;, - 205;3;-0.000000, 1.228822,-0.000000;;, - 206;3;-0.000000, 1.228822,-0.000000;;, - 207;3;-0.000000, 1.228822,-0.000000;;, - 208;3;-0.000000, 1.228822,-0.000000;;, - 209;3;-0.000000, 1.228822,-0.000000;;, - 210;3;-0.000000, 1.228822,-0.000000;;, - 211;3; 0.000000, 1.228822,-0.000000;;, - 212;3; 0.000000, 1.228822, 0.000000;;, - 213;3;-0.000000, 1.228822,-0.000000;;, - 214;3;-0.000000, 1.228822, 0.000000;;, - 215;3; 0.000000, 1.228822,-0.000000;;, - 216;3;-0.000000, 1.228822,-0.000000;;, - 217;3; 0.000000, 1.228822,-0.000000;;, - 218;3;-0.000000, 1.228822,-0.000000;;, - 219;3; 0.000000, 1.228822,-0.000000;;, - 220;3; 0.000000, 1.228822,-0.000000;;, - 221;3; 0.000000, 1.228822, 0.000000;;, - 222;3; 0.000000, 1.228822,-0.000000;;, - 223;3;-0.000000, 1.228822, 0.000000;;, - 224;3; 0.000000, 1.228822, 0.000000;;, - 225;3;-0.000000, 1.228822,-0.000000;;, - 226;3; 0.000000, 1.228822,-0.000000;;, - 227;3; 0.000000, 1.228822, 0.000000;;, - 228;3;-0.000000, 1.228822, 0.000000;;, - 229;3; 0.000000, 1.228822, 0.000000;;, - 230;3; 0.000000, 1.228822,-0.000000;;, - 231;3; 0.000000, 1.228822,-0.000000;;, - 232;3; 0.000000, 1.228822, 0.000000;;, - 233;3; 0.000000, 1.228822,-0.000000;;, - 234;3;-0.000000, 1.228822,-0.000000;;, - 235;3; 0.000000, 1.228822, 0.000000;;, - 236;3;-0.000000, 1.228822,-0.000000;;, - 237;3;-0.000000, 1.228822,-0.000000;;, - 238;3; 0.000000, 1.228822, 0.000000;;, - 239;3;-0.000000, 1.228822,-0.000000;;, - 240;3;-0.000000, 1.228822,-0.000000;;, - 241;3;-0.000000, 1.228822,-0.000000;;, - 242;3;-0.000000, 1.228822,-0.000000;;, - 243;3;-0.000000, 1.228822,-0.000000;;, - 244;3;-0.000000, 1.228822,-0.000000;;, - 245;3;-0.000000, 1.228822,-0.000000;;, - 246;3;-0.000000, 1.228822,-0.000000;;, - 247;3;-0.000000, 1.228822,-0.000000;;, - 248;3;-0.000000, 1.228822,-0.000000;;, - 249;3;-0.000000, 1.228822,-0.000000;;; - } - } - Animation { - {Armature_Bone_014} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 1;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 2;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 3;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 4;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 5;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 6;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 7;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 8;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 9;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 10;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 11;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 12;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 13;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 14;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 15;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 16;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 17;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 18;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 19;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 20;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 21;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 22;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 23;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 24;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 25;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 26;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 27;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 28;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 29;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 30;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 31;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 32;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 33;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 34;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 35;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 36;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 37;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 38;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 39;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 40;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 41;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 42;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 43;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 44;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 45;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 46;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 47;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 48;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 49;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 50;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 51;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 52;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 53;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 54;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 55;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 56;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 57;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 58;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 59;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 60;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 61;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 62;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 63;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 64;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 65;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 66;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 67;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 68;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 69;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 70;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 71;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 72;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 73;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 74;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 75;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 76;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 77;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 78;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 79;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 80;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 81;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 82;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 83;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 84;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 85;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 86;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 87;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 88;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 89;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 90;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 91;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 92;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 93;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 94;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 95;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 96;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 97;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 98;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 99;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 100;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 101;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 102;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 103;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 104;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 105;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 106;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 107;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 108;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 109;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 110;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 111;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 112;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 113;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 114;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 115;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 116;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 117;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 118;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 119;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 120;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 121;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 122;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 123;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 124;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 125;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 126;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 127;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 128;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 129;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 130;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 131;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 132;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 133;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 134;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 135;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 136;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 137;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 138;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 139;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 140;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 141;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 142;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 143;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 144;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 145;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 146;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 147;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 148;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 149;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 150;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 151;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 152;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 153;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 154;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 155;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 156;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 157;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 158;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 159;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 160;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 161;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 162;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 163;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 164;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 165;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 166;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 167;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 168;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 169;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 170;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 171;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 172;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 173;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 174;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 175;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 176;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 177;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 178;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 179;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 180;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 181;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 182;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 183;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 184;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 185;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 186;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 187;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 188;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 189;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 190;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 191;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 192;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 193;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 194;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 195;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 196;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 197;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 198;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 199;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 200;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 201;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 202;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 203;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 204;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 205;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 206;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 207;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 208;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 209;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 210;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 211;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 212;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 213;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 214;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 215;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 216;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 217;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 218;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 219;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 220;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 221;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 222;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 223;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 224;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 225;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 226;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 227;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 228;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 229;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 230;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 231;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 232;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 233;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 234;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 235;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 236;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 237;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 238;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 239;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 240;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 241;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 242;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 243;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 244;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 245;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 246;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 247;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 248;4;-0.873438, 0.000000, 0.000000,-0.486935;;, - 249;4;-0.873438, 0.000000, 0.000000,-0.486935;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3; 0.000000, 0.826434, 0.000000;;, - 1;3; 0.000000, 0.826434, 0.000000;;, - 2;3; 0.000000, 0.826434, 0.000000;;, - 3;3; 0.000000, 0.826434, 0.000000;;, - 4;3; 0.000000, 0.826434, 0.000000;;, - 5;3; 0.000000, 0.826434, 0.000000;;, - 6;3; 0.000000, 0.826434, 0.000000;;, - 7;3; 0.000000, 0.826434, 0.000000;;, - 8;3; 0.000000, 0.826434, 0.000000;;, - 9;3; 0.000000, 0.826434, 0.000000;;, - 10;3; 0.000000, 0.826434, 0.000000;;, - 11;3; 0.000000, 0.826434, 0.000000;;, - 12;3; 0.000000, 0.826434, 0.000000;;, - 13;3; 0.000000, 0.826434, 0.000000;;, - 14;3; 0.000000, 0.826434, 0.000000;;, - 15;3; 0.000000, 0.826434, 0.000000;;, - 16;3; 0.000000, 0.826434, 0.000000;;, - 17;3; 0.000000, 0.826434, 0.000000;;, - 18;3; 0.000000, 0.826434, 0.000000;;, - 19;3; 0.000000, 0.826434, 0.000000;;, - 20;3; 0.000000, 0.826434, 0.000000;;, - 21;3; 0.000000, 0.826434, 0.000000;;, - 22;3; 0.000000, 0.826434, 0.000000;;, - 23;3; 0.000000, 0.826434, 0.000000;;, - 24;3; 0.000000, 0.826434, 0.000000;;, - 25;3; 0.000000, 0.826434, 0.000000;;, - 26;3; 0.000000, 0.826434, 0.000000;;, - 27;3; 0.000000, 0.826434, 0.000000;;, - 28;3; 0.000000, 0.826434, 0.000000;;, - 29;3; 0.000000, 0.826434, 0.000000;;, - 30;3; 0.000000, 0.826434, 0.000000;;, - 31;3; 0.000000, 0.826434, 0.000000;;, - 32;3; 0.000000, 0.826434, 0.000000;;, - 33;3; 0.000000, 0.826434, 0.000000;;, - 34;3; 0.000000, 0.826434, 0.000000;;, - 35;3; 0.000000, 0.826434, 0.000000;;, - 36;3; 0.000000, 0.826434, 0.000000;;, - 37;3; 0.000000, 0.826434, 0.000000;;, - 38;3; 0.000000, 0.826434, 0.000000;;, - 39;3; 0.000000, 0.826434, 0.000000;;, - 40;3; 0.000000, 0.826434, 0.000000;;, - 41;3; 0.000000, 0.826434, 0.000000;;, - 42;3; 0.000000, 0.826434, 0.000000;;, - 43;3; 0.000000, 0.826434, 0.000000;;, - 44;3; 0.000000, 0.826434, 0.000000;;, - 45;3; 0.000000, 0.826434, 0.000000;;, - 46;3; 0.000000, 0.826434, 0.000000;;, - 47;3; 0.000000, 0.826434, 0.000000;;, - 48;3; 0.000000, 0.826434, 0.000000;;, - 49;3; 0.000000, 0.826434, 0.000000;;, - 50;3; 0.000000, 0.826434, 0.000000;;, - 51;3; 0.000000, 0.826434, 0.000000;;, - 52;3; 0.000000, 0.826434, 0.000000;;, - 53;3; 0.000000, 0.826434, 0.000000;;, - 54;3; 0.000000, 0.826434, 0.000000;;, - 55;3; 0.000000, 0.826434, 0.000000;;, - 56;3; 0.000000, 0.826434, 0.000000;;, - 57;3; 0.000000, 0.826434, 0.000000;;, - 58;3; 0.000000, 0.826434, 0.000000;;, - 59;3; 0.000000, 0.826434, 0.000000;;, - 60;3; 0.000000, 0.826434, 0.000000;;, - 61;3; 0.000000, 0.826434, 0.000000;;, - 62;3; 0.000000, 0.826434, 0.000000;;, - 63;3; 0.000000, 0.826434, 0.000000;;, - 64;3; 0.000000, 0.826434, 0.000000;;, - 65;3; 0.000000, 0.826434, 0.000000;;, - 66;3; 0.000000, 0.826434, 0.000000;;, - 67;3; 0.000000, 0.826434, 0.000000;;, - 68;3; 0.000000, 0.826434, 0.000000;;, - 69;3; 0.000000, 0.826434, 0.000000;;, - 70;3; 0.000000, 0.826434, 0.000000;;, - 71;3; 0.000000, 0.826434, 0.000000;;, - 72;3; 0.000000, 0.826434, 0.000000;;, - 73;3; 0.000000, 0.826434, 0.000000;;, - 74;3; 0.000000, 0.826434, 0.000000;;, - 75;3; 0.000000, 0.826434, 0.000000;;, - 76;3; 0.000000, 0.826434, 0.000000;;, - 77;3; 0.000000, 0.826434, 0.000000;;, - 78;3; 0.000000, 0.826434, 0.000000;;, - 79;3; 0.000000, 0.826434, 0.000000;;, - 80;3; 0.000000, 0.826434, 0.000000;;, - 81;3; 0.000000, 0.826434, 0.000000;;, - 82;3; 0.000000, 0.826434, 0.000000;;, - 83;3; 0.000000, 0.826434, 0.000000;;, - 84;3; 0.000000, 0.826434, 0.000000;;, - 85;3; 0.000000, 0.826434, 0.000000;;, - 86;3; 0.000000, 0.826434, 0.000000;;, - 87;3; 0.000000, 0.826434, 0.000000;;, - 88;3; 0.000000, 0.826434, 0.000000;;, - 89;3; 0.000000, 0.826434, 0.000000;;, - 90;3; 0.000000, 0.826434, 0.000000;;, - 91;3; 0.000000, 0.826434, 0.000000;;, - 92;3; 0.000000, 0.826434, 0.000000;;, - 93;3; 0.000000, 0.826434, 0.000000;;, - 94;3; 0.000000, 0.826434, 0.000000;;, - 95;3; 0.000000, 0.826434, 0.000000;;, - 96;3; 0.000000, 0.826434, 0.000000;;, - 97;3; 0.000000, 0.826434, 0.000000;;, - 98;3; 0.000000, 0.826434, 0.000000;;, - 99;3; 0.000000, 0.826434, 0.000000;;, - 100;3; 0.000000, 0.826434, 0.000000;;, - 101;3; 0.000000, 0.826434, 0.000000;;, - 102;3; 0.000000, 0.826434, 0.000000;;, - 103;3; 0.000000, 0.826434, 0.000000;;, - 104;3; 0.000000, 0.826434, 0.000000;;, - 105;3; 0.000000, 0.826434, 0.000000;;, - 106;3; 0.000000, 0.826434, 0.000000;;, - 107;3; 0.000000, 0.826434, 0.000000;;, - 108;3; 0.000000, 0.826434, 0.000000;;, - 109;3; 0.000000, 0.826434, 0.000000;;, - 110;3; 0.000000, 0.826434, 0.000000;;, - 111;3; 0.000000, 0.826434, 0.000000;;, - 112;3; 0.000000, 0.826434, 0.000000;;, - 113;3; 0.000000, 0.826434, 0.000000;;, - 114;3; 0.000000, 0.826434, 0.000000;;, - 115;3; 0.000000, 0.826434, 0.000000;;, - 116;3; 0.000000, 0.826434, 0.000000;;, - 117;3; 0.000000, 0.826434, 0.000000;;, - 118;3; 0.000000, 0.826434, 0.000000;;, - 119;3; 0.000000, 0.826434, 0.000000;;, - 120;3; 0.000000, 0.826434, 0.000000;;, - 121;3; 0.000000, 0.826434, 0.000000;;, - 122;3; 0.000000, 0.826434, 0.000000;;, - 123;3; 0.000000, 0.826434, 0.000000;;, - 124;3; 0.000000, 0.826434, 0.000000;;, - 125;3; 0.000000, 0.826434, 0.000000;;, - 126;3; 0.000000, 0.826434, 0.000000;;, - 127;3; 0.000000, 0.826434, 0.000000;;, - 128;3; 0.000000, 0.826434, 0.000000;;, - 129;3; 0.000000, 0.826434, 0.000000;;, - 130;3; 0.000000, 0.826434, 0.000000;;, - 131;3; 0.000000, 0.826434, 0.000000;;, - 132;3; 0.000000, 0.826434, 0.000000;;, - 133;3; 0.000000, 0.826434, 0.000000;;, - 134;3; 0.000000, 0.826434, 0.000000;;, - 135;3; 0.000000, 0.826434, 0.000000;;, - 136;3; 0.000000, 0.826434, 0.000000;;, - 137;3; 0.000000, 0.826434, 0.000000;;, - 138;3; 0.000000, 0.826434, 0.000000;;, - 139;3; 0.000000, 0.826434, 0.000000;;, - 140;3; 0.000000, 0.826434, 0.000000;;, - 141;3; 0.000000, 0.826434, 0.000000;;, - 142;3; 0.000000, 0.826434, 0.000000;;, - 143;3; 0.000000, 0.826434, 0.000000;;, - 144;3; 0.000000, 0.826434, 0.000000;;, - 145;3; 0.000000, 0.826434, 0.000000;;, - 146;3; 0.000000, 0.826434, 0.000000;;, - 147;3; 0.000000, 0.826434, 0.000000;;, - 148;3; 0.000000, 0.826434, 0.000000;;, - 149;3; 0.000000, 0.826434, 0.000000;;, - 150;3; 0.000000, 0.826434, 0.000000;;, - 151;3; 0.000000, 0.826434, 0.000000;;, - 152;3; 0.000000, 0.826434, 0.000000;;, - 153;3; 0.000000, 0.826434, 0.000000;;, - 154;3; 0.000000, 0.826434, 0.000000;;, - 155;3; 0.000000, 0.826434, 0.000000;;, - 156;3; 0.000000, 0.826434, 0.000000;;, - 157;3; 0.000000, 0.826434, 0.000000;;, - 158;3; 0.000000, 0.826434, 0.000000;;, - 159;3; 0.000000, 0.826434, 0.000000;;, - 160;3; 0.000000, 0.826434, 0.000000;;, - 161;3; 0.000000, 0.826434, 0.000000;;, - 162;3; 0.000000, 0.826434, 0.000000;;, - 163;3; 0.000000, 0.826434, 0.000000;;, - 164;3; 0.000000, 0.826434, 0.000000;;, - 165;3; 0.000000, 0.826434, 0.000000;;, - 166;3; 0.000000, 0.826434, 0.000000;;, - 167;3; 0.000000, 0.826434, 0.000000;;, - 168;3; 0.000000, 0.826434, 0.000000;;, - 169;3; 0.000000, 0.826434, 0.000000;;, - 170;3; 0.000000, 0.826434, 0.000000;;, - 171;3; 0.000000, 0.826434, 0.000000;;, - 172;3; 0.000000, 0.826434, 0.000000;;, - 173;3; 0.000000, 0.826434, 0.000000;;, - 174;3; 0.000000, 0.826434, 0.000000;;, - 175;3; 0.000000, 0.826434, 0.000000;;, - 176;3; 0.000000, 0.826434, 0.000000;;, - 177;3; 0.000000, 0.826434, 0.000000;;, - 178;3; 0.000000, 0.826434, 0.000000;;, - 179;3; 0.000000, 0.826434, 0.000000;;, - 180;3; 0.000000, 0.826434, 0.000000;;, - 181;3; 0.000000, 0.826434, 0.000000;;, - 182;3; 0.000000, 0.826434, 0.000000;;, - 183;3; 0.000000, 0.826434, 0.000000;;, - 184;3; 0.000000, 0.826434, 0.000000;;, - 185;3; 0.000000, 0.826434, 0.000000;;, - 186;3;-0.000000, 0.826434,-0.000000;;, - 187;3;-0.000000, 0.826434,-0.000000;;, - 188;3;-0.000000, 0.826434, 0.000000;;, - 189;3;-0.000000, 0.826434, 0.000000;;, - 190;3;-0.000000, 0.826434,-0.000000;;, - 191;3; 0.000000, 0.826434, 0.000000;;, - 192;3; 0.000000, 0.826434, 0.000000;;, - 193;3; 0.000000, 0.826434, 0.000000;;, - 194;3; 0.000000, 0.826434,-0.000000;;, - 195;3; 0.000000, 0.826434,-0.000000;;, - 196;3; 0.000000, 0.826434, 0.000000;;, - 197;3; 0.000000, 0.826434,-0.000000;;, - 198;3; 0.000000, 0.826434,-0.000000;;, - 199;3; 0.000000, 0.826434, 0.000000;;, - 200;3; 0.000000, 0.826434, 0.000000;;, - 201;3; 0.000000, 0.826434, 0.000000;;, - 202;3; 0.000000, 0.826434, 0.000000;;, - 203;3; 0.000000, 0.826434, 0.000000;;, - 204;3; 0.000000, 0.826434, 0.000000;;, - 205;3; 0.000000, 0.826434, 0.000000;;, - 206;3; 0.000000, 0.826434, 0.000000;;, - 207;3; 0.000000, 0.826434, 0.000000;;, - 208;3; 0.000000, 0.826434, 0.000000;;, - 209;3; 0.000000, 0.826434, 0.000000;;, - 210;3;-0.000000, 0.826434, 0.000000;;, - 211;3;-0.000000, 0.826434, 0.000000;;, - 212;3; 0.000000, 0.826434,-0.000000;;, - 213;3; 0.000000, 0.826434, 0.000000;;, - 214;3; 0.000000, 0.826434, 0.000000;;, - 215;3;-0.000000, 0.826434,-0.000000;;, - 216;3;-0.000000, 0.826434,-0.000000;;, - 217;3;-0.000000, 0.826434,-0.000000;;, - 218;3;-0.000000, 0.826434, 0.000000;;, - 219;3;-0.000000, 0.826434,-0.000000;;, - 220;3;-0.000000, 0.826434, 0.000000;;, - 221;3; 0.000000, 0.826434, 0.000000;;, - 222;3;-0.000000, 0.826434, 0.000000;;, - 223;3; 0.000000, 0.826434,-0.000000;;, - 224;3; 0.000000, 0.826434,-0.000000;;, - 225;3; 0.000000, 0.826434, 0.000000;;, - 226;3; 0.000000, 0.826434, 0.000000;;, - 227;3; 0.000000, 0.826434, 0.000000;;, - 228;3;-0.000000, 0.826434, 0.000000;;, - 229;3; 0.000000, 0.826434, 0.000000;;, - 230;3; 0.000000, 0.826434, 0.000000;;, - 231;3; 0.000000, 0.826434,-0.000000;;, - 232;3;-0.000000, 0.826434,-0.000000;;, - 233;3; 0.000000, 0.826434, 0.000000;;, - 234;3; 0.000000, 0.826434, 0.000000;;, - 235;3; 0.000000, 0.826434, 0.000000;;, - 236;3; 0.000000, 0.826434, 0.000000;;, - 237;3; 0.000000, 0.826434, 0.000000;;, - 238;3; 0.000000, 0.826434, 0.000000;;, - 239;3; 0.000000, 0.826434, 0.000000;;, - 240;3; 0.000000, 0.826434, 0.000000;;, - 241;3; 0.000000, 0.826434, 0.000000;;, - 242;3; 0.000000, 0.826434, 0.000000;;, - 243;3; 0.000000, 0.826434, 0.000000;;, - 244;3; 0.000000, 0.826434, 0.000000;;, - 245;3; 0.000000, 0.826434, 0.000000;;, - 246;3; 0.000000, 0.826434, 0.000000;;, - 247;3; 0.000000, 0.826434, 0.000000;;, - 248;3; 0.000000, 0.826434, 0.000000;;, - 249;3; 0.000000, 0.826434, 0.000000;;; - } - } - Animation { - {Armature_Bone_018} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 1;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 2;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 3;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 4;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 5;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 6;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 7;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 8;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 9;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 10;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 11;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 12;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 13;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 14;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 15;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 16;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 17;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 18;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 19;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 20;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 21;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 22;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 23;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 24;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 25;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 26;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 27;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 28;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 29;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 30;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 31;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 32;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 33;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 34;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 35;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 36;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 37;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 38;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 39;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 40;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 41;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 42;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 43;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 44;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 45;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 46;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 47;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 48;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 49;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 50;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 51;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 52;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 53;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 54;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 55;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 56;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 57;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 58;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 59;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 60;4;-0.941928, 0.110942, 0.038431, 0.314618;;, - 61;4;-0.941940, 0.110822, 0.038332, 0.314629;;, - 62;4;-0.941959, 0.110622, 0.038166, 0.314647;;, - 63;4;-0.941986, 0.110341, 0.037932, 0.314672;;, - 64;4;-0.942020, 0.109980, 0.037631, 0.314704;;, - 65;4;-0.942063, 0.109538, 0.037263, 0.314744;;, - 66;4;-0.942113, 0.109016, 0.036829, 0.314790;;, - 67;4;-0.942170, 0.108416, 0.036330, 0.314844;;, - 68;4;-0.942235, 0.107740, 0.035767, 0.314904;;, - 69;4;-0.942307, 0.106990, 0.035144, 0.314971;;, - 70;4;-0.942385, 0.106171, 0.034462, 0.315044;;, - 71;4;-0.942470, 0.105285, 0.033725, 0.315123;;, - 72;4;-0.942561, 0.104338, 0.032937, 0.315207;;, - 73;4;-0.942657, 0.103336, 0.032103, 0.315297;;, - 74;4;-0.942758, 0.102284, 0.031228, 0.315391;;, - 75;4;-0.942862, 0.101190, 0.030317, 0.315488;;, - 76;4;-0.942971, 0.100062, 0.029378, 0.315589;;, - 77;4;-0.943081, 0.098907, 0.028417, 0.315692;;, - 78;4;-0.943194, 0.097733, 0.027441, 0.315797;;, - 79;4;-0.943307, 0.096551, 0.026457, 0.315902;;, - 80;4;-0.943420, 0.095369, 0.025474, 0.316008;;, - 81;4;-0.943533, 0.094196, 0.024498, 0.316112;;, - 82;4;-0.943643, 0.093041, 0.023537, 0.316215;;, - 83;4;-0.943751, 0.091913, 0.022598, 0.316316;;, - 84;4;-0.943856, 0.090819, 0.021687, 0.316414;;, - 85;4;-0.943957, 0.089767, 0.020812, 0.316507;;, - 86;4;-0.944053, 0.088764, 0.019978, 0.316597;;, - 87;4;-0.944144, 0.087818, 0.019190, 0.316681;;, - 88;4;-0.944229, 0.086932, 0.018453, 0.316760;;, - 89;4;-0.944307, 0.086112, 0.017771, 0.316833;;, - 90;4;-0.944379, 0.085363, 0.017148, 0.316900;;, - 91;4;-0.944444, 0.084687, 0.016585, 0.316961;;, - 92;4;-0.944501, 0.084087, 0.016086, 0.317014;;, - 93;4;-0.944551, 0.083565, 0.015652, 0.317061;;, - 94;4;-0.944594, 0.083123, 0.015284, 0.317100;;, - 95;4;-0.944628, 0.082761, 0.014983, 0.317132;;, - 96;4;-0.944655, 0.082481, 0.014749, 0.317157;;, - 97;4;-0.944674, 0.082281, 0.014583, 0.317175;;, - 98;4;-0.944686, 0.082161, 0.014484, 0.317186;;, - 99;4;-0.944690, 0.082122, 0.014451, 0.317189;;, - 100;4;-0.944432, 0.083307, 0.015445, 0.317035;;, - 101;4;-0.943634, 0.086989, 0.018534, 0.316554;;, - 102;4;-0.942277, 0.093244, 0.023782, 0.315738;;, - 103;4;-0.940398, 0.101913, 0.031054, 0.314608;;, - 104;4;-0.938096, 0.112526, 0.039958, 0.313223;;, - 105;4;-0.935535, 0.124332, 0.049863, 0.311683;;, - 106;4;-0.932904, 0.136463, 0.060039, 0.310101;;, - 107;4;-0.930373, 0.148134, 0.069831, 0.308578;;, - 108;4;-0.928063, 0.158788, 0.078769, 0.307188;;, - 109;4;-0.926042, 0.168107, 0.086587, 0.305973;;, - 110;4;-0.924160, 0.176978, 0.094533, 0.304717;;, - 111;4;-0.922248, 0.186352, 0.103834, 0.303215;;, - 112;4;-0.920311, 0.196111, 0.114169, 0.301523;;, - 113;4;-0.918365, 0.206043, 0.124970, 0.299746;;, - 114;4;-0.916425, 0.215853, 0.135442, 0.298029;;, - 115;4;-0.914514, 0.225212, 0.144702, 0.296534;;, - 116;4;-0.912647, 0.233837, 0.151987, 0.295400;;, - 117;4;-0.910837, 0.241551, 0.156820, 0.294712;;, - 118;4;-0.909086, 0.248293, 0.159040, 0.294503;;, - 119;4;-0.907394, 0.254092, 0.158723, 0.294756;;, - 120;4;-0.905553, 0.259730, 0.157099, 0.295339;;, - 121;4;-0.903387, 0.265840, 0.155180, 0.296157;;, - 122;4;-0.900973, 0.272188, 0.152815, 0.297224;;, - 123;4;-0.898447, 0.278414, 0.149831, 0.298534;;, - 124;4;-0.896001, 0.284057, 0.146068, 0.300052;;, - 125;4;-0.893846, 0.288647, 0.141426, 0.301716;;, - 126;4;-0.892165, 0.291820, 0.135893, 0.303451;;, - 127;4;-0.891073, 0.293391, 0.129539, 0.305183;;, - 128;4;-0.890609, 0.293354, 0.122486, 0.306856;;, - 129;4;-0.890754, 0.291818, 0.114871, 0.308437;;, - 130;4;-0.892324, 0.285246, 0.105875, 0.309949;;, - 131;4;-0.896171, 0.269979, 0.094684, 0.311406;;, - 132;4;-0.902140, 0.246623, 0.081650, 0.312772;;, - 133;4;-0.909790, 0.216887, 0.067466, 0.314002;;, - 134;4;-0.918357, 0.183703, 0.053164, 0.315051;;, - 135;4;-0.926865, 0.150830, 0.039952, 0.315887;;, - 136;4;-0.934340, 0.121992, 0.028929, 0.316501;;, - 137;4;-0.940035, 0.100041, 0.020842, 0.316905;;, - 138;4;-0.943530, 0.086583, 0.016018, 0.317123;;, - 139;4;-0.944690, 0.082122, 0.014451, 0.317189;;, - 140;4;-0.943634, 0.086989, 0.018534, 0.316554;;, - 141;4;-0.940398, 0.101913, 0.031054, 0.314608;;, - 142;4;-0.935535, 0.124332, 0.049863, 0.311683;;, - 143;4;-0.930373, 0.148134, 0.069831, 0.308578;;, - 144;4;-0.926042, 0.168107, 0.086587, 0.305973;;, - 145;4;-0.922248, 0.186352, 0.103834, 0.303215;;, - 146;4;-0.918365, 0.206043, 0.124970, 0.299746;;, - 147;4;-0.914514, 0.225212, 0.144702, 0.296534;;, - 148;4;-0.910837, 0.241551, 0.156820, 0.294712;;, - 149;4;-0.907394, 0.254092, 0.158723, 0.294756;;, - 150;4;-0.903387, 0.265840, 0.155180, 0.296157;;, - 151;4;-0.898447, 0.278414, 0.149831, 0.298534;;, - 152;4;-0.893846, 0.288647, 0.141426, 0.301716;;, - 153;4;-0.891073, 0.293391, 0.129539, 0.305183;;, - 154;4;-0.890754, 0.291818, 0.114871, 0.308437;;, - 155;4;-0.896171, 0.269979, 0.094684, 0.311406;;, - 156;4;-0.909790, 0.216887, 0.067466, 0.314002;;, - 157;4;-0.926865, 0.150830, 0.039952, 0.315887;;, - 158;4;-0.940035, 0.100041, 0.020842, 0.316905;;, - 159;4;-0.944690, 0.082122, 0.014451, 0.317189;;, - 160;4;-0.944679, 0.082151, 0.014546, 0.317192;;, - 161;4;-0.944647, 0.082247, 0.014837, 0.317199;;, - 162;4;-0.944593, 0.082426, 0.015330, 0.317208;;, - 163;4;-0.944517, 0.082706, 0.016025, 0.317218;;, - 164;4;-0.944418, 0.083105, 0.016921, 0.317224;;, - 165;4;-0.944298, 0.083643, 0.018010, 0.317223;;, - 166;4;-0.944157, 0.084341, 0.019278, 0.317211;;, - 167;4;-0.943998, 0.085217, 0.020705, 0.317185;;, - 168;4;-0.943824, 0.086288, 0.022262, 0.317138;;, - 169;4;-0.943638, 0.087566, 0.023917, 0.317068;;, - 170;4;-0.943444, 0.089058, 0.025633, 0.316970;;, - 171;4;-0.943247, 0.090767, 0.027370, 0.316841;;, - 172;4;-0.943049, 0.092688, 0.029092, 0.316679;;, - 173;4;-0.942856, 0.094812, 0.030764, 0.316482;;, - 174;4;-0.942670, 0.097126, 0.032355, 0.316251;;, - 175;4;-0.942495, 0.099615, 0.033842, 0.315986;;, - 176;4;-0.942331, 0.102262, 0.035206, 0.315688;;, - 177;4;-0.942181, 0.105050, 0.036436, 0.315359;;, - 178;4;-0.942045, 0.107962, 0.037523, 0.315000;;, - 179;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 180;4;-0.943177, 0.114691, 0.038923, 0.308242;;, - 181;4;-0.947108, 0.119663, 0.038608, 0.289529;;, - 182;4;-0.953421, 0.125770, 0.037664, 0.258565;;, - 183;4;-0.961440, 0.132711, 0.036363, 0.216762;;, - 184;4;-0.970093, 0.139998, 0.035102, 0.167139;;, - 185;4;-0.978076, 0.147035, 0.034336, 0.114020;;, - 186;4;-0.984151, 0.153246, 0.034469, 0.062082;;, - 187;4;-0.987422, 0.158213, 0.035767, 0.015261;;, - 188;4;-0.987439, 0.161717, 0.038339,-0.023862;;, - 189;4;-0.984123, 0.163713, 0.042166,-0.054048;;, - 190;4;-0.978817, 0.138808, 0.058118,-0.080008;;, - 191;4;-0.973197, 0.066281, 0.094695,-0.104867;;, - 192;4;-0.968320,-0.027438, 0.139563,-0.124679;;, - 193;4;-0.965252,-0.100614, 0.173854,-0.136337;;, - 194;4;-0.964286,-0.126625, 0.185918,-0.139835;;, - 195;4;-0.962298,-0.105504, 0.172811,-0.099439;;, - 196;4;-0.956699,-0.046014, 0.135892, 0.014343;;, - 197;4;-0.949511, 0.030371, 0.088490, 0.160437;;, - 198;4;-0.943912, 0.089861, 0.051571, 0.274219;;, - 199;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 200;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 201;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 202;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 203;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 204;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 205;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 206;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 207;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 208;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 209;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 210;4;-0.943197, 0.087583, 0.020889, 0.269537;;, - 211;4;-0.946781, 0.021676,-0.028617, 0.142567;;, - 212;4;-0.951383,-0.062947,-0.092181,-0.020463;;, - 213;4;-0.954967,-0.128853,-0.141687,-0.147433;;, - 214;4;-0.956240,-0.152252,-0.159263,-0.192511;;, - 215;4;-0.950377,-0.134573,-0.144943,-0.182913;;, - 216;4;-0.932584,-0.080369,-0.101040,-0.152847;;, - 217;4;-0.906301, 0.001061,-0.035084,-0.106100;;, - 218;4;-0.879144, 0.087510, 0.034938,-0.053846;;, - 219;4;-0.857350, 0.160052, 0.093695,-0.006499;;, - 220;4;-0.836110, 0.232595, 0.152452, 0.042798;;, - 221;4;-0.810909, 0.319044, 0.222474, 0.101936;;, - 222;4;-0.788199, 0.400474, 0.288430, 0.161258;;, - 223;4;-0.775254, 0.454678, 0.332333, 0.208390;;, - 224;4;-0.774867, 0.472357, 0.346653, 0.237261;;, - 225;4;-0.781601, 0.468808, 0.343627, 0.255948;;, - 226;4;-0.790592, 0.458082, 0.334479, 0.272439;;, - 227;4;-0.801769, 0.440234, 0.319258, 0.286556;;, - 228;4;-0.814942, 0.415637, 0.298281, 0.298167;;, - 229;4;-0.829786, 0.385065, 0.272209, 0.307214;;, - 230;4;-0.845817, 0.349756, 0.242096, 0.313745;;, - 231;4;-0.862413, 0.311385, 0.209373, 0.317937;;, - 232;4;-0.878858, 0.271953, 0.175745, 0.320099;;, - 233;4;-0.894417, 0.233582, 0.143021, 0.320644;;, - 234;4;-0.908423, 0.198273, 0.112908, 0.320046;;, - 235;4;-0.920337, 0.167701, 0.086836, 0.318783;;, - 236;4;-0.929788, 0.143104, 0.065859, 0.317288;;, - 237;4;-0.936566, 0.125256, 0.050638, 0.315924;;, - 238;4;-0.940600, 0.114529, 0.041490, 0.314966;;, - 239;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 240;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 241;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 242;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 243;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 244;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 245;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 246;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 247;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 248;4;-0.941924, 0.110981, 0.038464, 0.314615;;, - 249;4;-0.941924, 0.110981, 0.038464, 0.314615;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3;-0.000000, 0.680634,-0.000000;;, - 1;3;-0.000000, 0.680634,-0.000000;;, - 2;3;-0.000000, 0.680634,-0.000000;;, - 3;3;-0.000000, 0.680634,-0.000000;;, - 4;3;-0.000000, 0.680634,-0.000000;;, - 5;3;-0.000000, 0.680634,-0.000000;;, - 6;3;-0.000000, 0.680634,-0.000000;;, - 7;3;-0.000000, 0.680634,-0.000000;;, - 8;3;-0.000000, 0.680634,-0.000000;;, - 9;3;-0.000000, 0.680634,-0.000000;;, - 10;3;-0.000000, 0.680634,-0.000000;;, - 11;3;-0.000000, 0.680634,-0.000000;;, - 12;3;-0.000000, 0.680634,-0.000000;;, - 13;3;-0.000000, 0.680634,-0.000000;;, - 14;3;-0.000000, 0.680634,-0.000000;;, - 15;3;-0.000000, 0.680634,-0.000000;;, - 16;3;-0.000000, 0.680634,-0.000000;;, - 17;3;-0.000000, 0.680634,-0.000000;;, - 18;3;-0.000000, 0.680634,-0.000000;;, - 19;3;-0.000000, 0.680634,-0.000000;;, - 20;3;-0.000000, 0.680634,-0.000000;;, - 21;3;-0.000000, 0.680634,-0.000000;;, - 22;3;-0.000000, 0.680634,-0.000000;;, - 23;3;-0.000000, 0.680634,-0.000000;;, - 24;3;-0.000000, 0.680634,-0.000000;;, - 25;3;-0.000000, 0.680634,-0.000000;;, - 26;3;-0.000000, 0.680634,-0.000000;;, - 27;3;-0.000000, 0.680634,-0.000000;;, - 28;3;-0.000000, 0.680634,-0.000000;;, - 29;3;-0.000000, 0.680634,-0.000000;;, - 30;3;-0.000000, 0.680634,-0.000000;;, - 31;3;-0.000000, 0.680634,-0.000000;;, - 32;3;-0.000000, 0.680634,-0.000000;;, - 33;3;-0.000000, 0.680634,-0.000000;;, - 34;3;-0.000000, 0.680634,-0.000000;;, - 35;3;-0.000000, 0.680634,-0.000000;;, - 36;3;-0.000000, 0.680634,-0.000000;;, - 37;3;-0.000000, 0.680634,-0.000000;;, - 38;3;-0.000000, 0.680634,-0.000000;;, - 39;3;-0.000000, 0.680634,-0.000000;;, - 40;3;-0.000000, 0.680634,-0.000000;;, - 41;3;-0.000000, 0.680634,-0.000000;;, - 42;3;-0.000000, 0.680634,-0.000000;;, - 43;3;-0.000000, 0.680634,-0.000000;;, - 44;3;-0.000000, 0.680634,-0.000000;;, - 45;3;-0.000000, 0.680634,-0.000000;;, - 46;3;-0.000000, 0.680634,-0.000000;;, - 47;3;-0.000000, 0.680634,-0.000000;;, - 48;3;-0.000000, 0.680634,-0.000000;;, - 49;3;-0.000000, 0.680634,-0.000000;;, - 50;3;-0.000000, 0.680634,-0.000000;;, - 51;3;-0.000000, 0.680634,-0.000000;;, - 52;3;-0.000000, 0.680634,-0.000000;;, - 53;3;-0.000000, 0.680634,-0.000000;;, - 54;3;-0.000000, 0.680634,-0.000000;;, - 55;3;-0.000000, 0.680634,-0.000000;;, - 56;3;-0.000000, 0.680634,-0.000000;;, - 57;3;-0.000000, 0.680634,-0.000000;;, - 58;3;-0.000000, 0.680634,-0.000000;;, - 59;3;-0.000000, 0.680634,-0.000000;;, - 60;3;-0.000000, 0.680634,-0.000000;;, - 61;3;-0.000000, 0.680634,-0.000000;;, - 62;3;-0.000000, 0.680634,-0.000000;;, - 63;3;-0.000000, 0.680634,-0.000000;;, - 64;3;-0.000000, 0.680634,-0.000000;;, - 65;3;-0.000000, 0.680634,-0.000000;;, - 66;3;-0.000000, 0.680634,-0.000000;;, - 67;3;-0.000000, 0.680634,-0.000000;;, - 68;3;-0.000000, 0.680634,-0.000000;;, - 69;3;-0.000000, 0.680634,-0.000000;;, - 70;3;-0.000000, 0.680634,-0.000000;;, - 71;3;-0.000000, 0.680634,-0.000000;;, - 72;3;-0.000000, 0.680634,-0.000000;;, - 73;3;-0.000000, 0.680634,-0.000000;;, - 74;3;-0.000000, 0.680634,-0.000000;;, - 75;3;-0.000000, 0.680634,-0.000000;;, - 76;3;-0.000000, 0.680634,-0.000000;;, - 77;3;-0.000000, 0.680634,-0.000000;;, - 78;3;-0.000000, 0.680634,-0.000000;;, - 79;3;-0.000000, 0.680634,-0.000000;;, - 80;3;-0.000000, 0.680634,-0.000000;;, - 81;3;-0.000000, 0.680634,-0.000000;;, - 82;3;-0.000000, 0.680634,-0.000000;;, - 83;3;-0.000000, 0.680634,-0.000000;;, - 84;3;-0.000000, 0.680634,-0.000000;;, - 85;3;-0.000000, 0.680634,-0.000000;;, - 86;3;-0.000000, 0.680634,-0.000000;;, - 87;3;-0.000000, 0.680634,-0.000000;;, - 88;3;-0.000000, 0.680634,-0.000000;;, - 89;3;-0.000000, 0.680634,-0.000000;;, - 90;3;-0.000000, 0.680634,-0.000000;;, - 91;3;-0.000000, 0.680634,-0.000000;;, - 92;3;-0.000000, 0.680634,-0.000000;;, - 93;3;-0.000000, 0.680634,-0.000000;;, - 94;3;-0.000000, 0.680634,-0.000000;;, - 95;3;-0.000000, 0.680634,-0.000000;;, - 96;3;-0.000000, 0.680634,-0.000000;;, - 97;3;-0.000000, 0.680634,-0.000000;;, - 98;3;-0.000000, 0.680634,-0.000000;;, - 99;3;-0.000000, 0.680634,-0.000000;;, - 100;3;-0.000000, 0.680634,-0.000000;;, - 101;3;-0.000000, 0.680634,-0.000000;;, - 102;3;-0.000000, 0.680634,-0.000000;;, - 103;3;-0.000000, 0.680634,-0.000000;;, - 104;3;-0.000000, 0.680634,-0.000000;;, - 105;3;-0.000000, 0.680634,-0.000000;;, - 106;3;-0.000000, 0.680634,-0.000000;;, - 107;3;-0.000000, 0.680634,-0.000000;;, - 108;3;-0.000000, 0.680634,-0.000000;;, - 109;3;-0.000000, 0.680634,-0.000000;;, - 110;3;-0.000000, 0.680634,-0.000000;;, - 111;3;-0.000000, 0.680634,-0.000000;;, - 112;3;-0.000000, 0.680634,-0.000000;;, - 113;3;-0.000000, 0.680634,-0.000000;;, - 114;3;-0.000000, 0.680634,-0.000000;;, - 115;3;-0.000000, 0.680634,-0.000000;;, - 116;3;-0.000000, 0.680634,-0.000000;;, - 117;3;-0.000000, 0.680634,-0.000000;;, - 118;3;-0.000000, 0.680634,-0.000000;;, - 119;3;-0.000000, 0.680634,-0.000000;;, - 120;3;-0.000000, 0.680634,-0.000000;;, - 121;3;-0.000000, 0.680634,-0.000000;;, - 122;3;-0.000000, 0.680634,-0.000000;;, - 123;3;-0.000000, 0.680634,-0.000000;;, - 124;3;-0.000000, 0.680634,-0.000000;;, - 125;3;-0.000000, 0.680634,-0.000000;;, - 126;3;-0.000000, 0.680634,-0.000000;;, - 127;3;-0.000000, 0.680634,-0.000000;;, - 128;3;-0.000000, 0.680634,-0.000000;;, - 129;3;-0.000000, 0.680634,-0.000000;;, - 130;3;-0.000000, 0.680634,-0.000000;;, - 131;3;-0.000000, 0.680634,-0.000000;;, - 132;3;-0.000000, 0.680634,-0.000000;;, - 133;3;-0.000000, 0.680634,-0.000000;;, - 134;3;-0.000000, 0.680634,-0.000000;;, - 135;3;-0.000000, 0.680634,-0.000000;;, - 136;3;-0.000000, 0.680634,-0.000000;;, - 137;3;-0.000000, 0.680634,-0.000000;;, - 138;3;-0.000000, 0.680634,-0.000000;;, - 139;3;-0.000000, 0.680634,-0.000000;;, - 140;3;-0.000000, 0.680634,-0.000000;;, - 141;3;-0.000000, 0.680634,-0.000000;;, - 142;3;-0.000000, 0.680634,-0.000000;;, - 143;3;-0.000000, 0.680634,-0.000000;;, - 144;3;-0.000000, 0.680634,-0.000000;;, - 145;3;-0.000000, 0.680634,-0.000000;;, - 146;3;-0.000000, 0.680634,-0.000000;;, - 147;3;-0.000000, 0.680634,-0.000000;;, - 148;3;-0.000000, 0.680634,-0.000000;;, - 149;3;-0.000000, 0.680634,-0.000000;;, - 150;3;-0.000000, 0.680634,-0.000000;;, - 151;3;-0.000000, 0.680634,-0.000000;;, - 152;3;-0.000000, 0.680634,-0.000000;;, - 153;3;-0.000000, 0.680634,-0.000000;;, - 154;3;-0.000000, 0.680634,-0.000000;;, - 155;3;-0.000000, 0.680634,-0.000000;;, - 156;3;-0.000000, 0.680634,-0.000000;;, - 157;3;-0.000000, 0.680634,-0.000000;;, - 158;3;-0.000000, 0.680634,-0.000000;;, - 159;3;-0.000000, 0.680634,-0.000000;;, - 160;3;-0.000000, 0.680634,-0.000000;;, - 161;3;-0.000000, 0.680634,-0.000000;;, - 162;3;-0.000000, 0.680634,-0.000000;;, - 163;3;-0.000000, 0.680634,-0.000000;;, - 164;3;-0.000000, 0.680634,-0.000000;;, - 165;3;-0.000000, 0.680634,-0.000000;;, - 166;3;-0.000000, 0.680634,-0.000000;;, - 167;3;-0.000000, 0.680634,-0.000000;;, - 168;3;-0.000000, 0.680634,-0.000000;;, - 169;3;-0.000000, 0.680634,-0.000000;;, - 170;3;-0.000000, 0.680634,-0.000000;;, - 171;3;-0.000000, 0.680634,-0.000000;;, - 172;3;-0.000000, 0.680634,-0.000000;;, - 173;3;-0.000000, 0.680634,-0.000000;;, - 174;3;-0.000000, 0.680634,-0.000000;;, - 175;3;-0.000000, 0.680634,-0.000000;;, - 176;3;-0.000000, 0.680634,-0.000000;;, - 177;3;-0.000000, 0.680634,-0.000000;;, - 178;3;-0.000000, 0.680634,-0.000000;;, - 179;3;-0.000000, 0.680634,-0.000000;;, - 180;3;-0.000000, 0.680634,-0.000000;;, - 181;3; 0.000000, 0.680634,-0.000000;;, - 182;3;-0.000000, 0.680634,-0.000000;;, - 183;3;-0.000000, 0.680634,-0.000000;;, - 184;3;-0.000000, 0.680634,-0.000000;;, - 185;3;-0.000000, 0.680634, 0.000000;;, - 186;3; 0.000000, 0.680634,-0.000000;;, - 187;3; 0.000000, 0.680634,-0.000000;;, - 188;3;-0.000000, 0.680634, 0.000000;;, - 189;3; 0.000000, 0.680634,-0.000000;;, - 190;3;-0.000000, 0.680634,-0.000000;;, - 191;3; 0.000001, 0.680634, 0.000000;;, - 192;3; 0.000000, 0.680634,-0.000000;;, - 193;3; 0.000000, 0.680634,-0.000000;;, - 194;3; 0.000000, 0.680634,-0.000000;;, - 195;3;-0.000000, 0.680634, 0.000000;;, - 196;3; 0.000000, 0.680634,-0.000000;;, - 197;3; 0.000000, 0.680634,-0.000000;;, - 198;3;-0.000000, 0.680634,-0.000000;;, - 199;3;-0.000000, 0.680634,-0.000000;;, - 200;3;-0.000000, 0.680634,-0.000000;;, - 201;3;-0.000000, 0.680634,-0.000000;;, - 202;3;-0.000000, 0.680634,-0.000000;;, - 203;3;-0.000000, 0.680634,-0.000000;;, - 204;3;-0.000000, 0.680634,-0.000000;;, - 205;3;-0.000000, 0.680634,-0.000000;;, - 206;3;-0.000000, 0.680634,-0.000000;;, - 207;3;-0.000000, 0.680634,-0.000000;;, - 208;3;-0.000000, 0.680634,-0.000000;;, - 209;3;-0.000000, 0.680634,-0.000000;;, - 210;3;-0.000000, 0.680634, 0.000000;;, - 211;3; 0.000000, 0.680634, 0.000000;;, - 212;3; 0.000000, 0.680634,-0.000000;;, - 213;3; 0.000000, 0.680634,-0.000000;;, - 214;3; 0.000000, 0.680634, 0.000000;;, - 215;3; 0.000000, 0.680634, 0.000000;;, - 216;3; 0.000000, 0.680634,-0.000000;;, - 217;3; 0.000000, 0.680634, 0.000000;;, - 218;3; 0.000000, 0.680634, 0.000000;;, - 219;3; 0.000000, 0.680634,-0.000000;;, - 220;3; 0.000000, 0.680634,-0.000000;;, - 221;3; 0.000000, 0.680634,-0.000000;;, - 222;3; 0.000000, 0.680634, 0.000000;;, - 223;3; 0.000000, 0.680634,-0.000000;;, - 224;3; 0.000000, 0.680634,-0.000000;;, - 225;3;-0.000000, 0.680634,-0.000000;;, - 226;3; 0.000000, 0.680634, 0.000000;;, - 227;3;-0.000000, 0.680634,-0.000000;;, - 228;3; 0.000000, 0.680634, 0.000000;;, - 229;3; 0.000000, 0.680634, 0.000000;;, - 230;3;-0.000000, 0.680634,-0.000000;;, - 231;3; 0.000000, 0.680633,-0.000000;;, - 232;3; 0.000000, 0.680634,-0.000000;;, - 233;3;-0.000000, 0.680633, 0.000000;;, - 234;3; 0.000000, 0.680634,-0.000000;;, - 235;3; 0.000000, 0.680633, 0.000000;;, - 236;3;-0.000000, 0.680634, 0.000000;;, - 237;3; 0.000000, 0.680634,-0.000000;;, - 238;3;-0.000000, 0.680633,-0.000000;;, - 239;3;-0.000000, 0.680634,-0.000000;;, - 240;3;-0.000000, 0.680634,-0.000000;;, - 241;3;-0.000000, 0.680634,-0.000000;;, - 242;3;-0.000000, 0.680634,-0.000000;;, - 243;3;-0.000000, 0.680634,-0.000000;;, - 244;3;-0.000000, 0.680634,-0.000000;;, - 245;3;-0.000000, 0.680634,-0.000000;;, - 246;3;-0.000000, 0.680634,-0.000000;;, - 247;3;-0.000000, 0.680634,-0.000000;;, - 248;3;-0.000000, 0.680634,-0.000000;;, - 249;3;-0.000000, 0.680634,-0.000000;;; - } - } - Animation { - {Armature_Bone_022} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 1;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 2;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 3;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 4;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 5;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 6;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 7;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 8;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 9;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 10;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 11;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 12;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 13;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 14;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 15;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 16;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 17;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 18;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 19;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 20;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 21;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 22;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 23;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 24;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 25;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 26;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 27;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 28;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 29;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 30;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 31;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 32;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 33;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 34;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 35;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 36;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 37;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 38;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 39;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 40;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 41;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 42;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 43;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 44;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 45;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 46;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 47;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 48;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 49;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 50;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 51;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 52;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 53;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 54;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 55;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 56;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 57;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 58;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 59;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 60;4;-0.971886,-0.235439, 0.000032, 0.000000;;, - 61;4;-0.971936,-0.235196, 0.000129, 0.000001;;, - 62;4;-0.972020,-0.234788, 0.000292, 0.000003;;, - 63;4;-0.972138,-0.234216, 0.000520, 0.000005;;, - 64;4;-0.972290,-0.233478, 0.000813, 0.000007;;, - 65;4;-0.972476,-0.232577, 0.001172, 0.000011;;, - 66;4;-0.972695,-0.231513, 0.001596, 0.000014;;, - 67;4;-0.972947,-0.230290, 0.002083, 0.000019;;, - 68;4;-0.973231,-0.228911, 0.002632, 0.000024;;, - 69;4;-0.973545,-0.227383, 0.003241, 0.000029;;, - 70;4;-0.973890,-0.225712, 0.003906, 0.000035;;, - 71;4;-0.974262,-0.223906, 0.004625, 0.000042;;, - 72;4;-0.974659,-0.221976, 0.005394, 0.000049;;, - 73;4;-0.975080,-0.219932, 0.006208, 0.000056;;, - 74;4;-0.975522,-0.217788, 0.007062, 0.000064;;, - 75;4;-0.975981,-0.215557, 0.007950, 0.000072;;, - 76;4;-0.976455,-0.213256, 0.008867, 0.000080;;, - 77;4;-0.976940,-0.210901, 0.009805, 0.000089;;, - 78;4;-0.977433,-0.208509, 0.010757, 0.000097;;, - 79;4;-0.977929,-0.206099, 0.011717, 0.000106;;, - 80;4;-0.978426,-0.203689, 0.012677, 0.000115;;, - 81;4;-0.978919,-0.201298, 0.013629, 0.000123;;, - 82;4;-0.979404,-0.198942, 0.014567, 0.000132;;, - 83;4;-0.979878,-0.196641, 0.015484, 0.000140;;, - 84;4;-0.980337,-0.194411, 0.016372, 0.000148;;, - 85;4;-0.980779,-0.192266, 0.017226, 0.000156;;, - 86;4;-0.981200,-0.190223, 0.018040, 0.000163;;, - 87;4;-0.981597,-0.188292, 0.018809, 0.000170;;, - 88;4;-0.981969,-0.186486, 0.019528, 0.000177;;, - 89;4;-0.982314,-0.184815, 0.020193, 0.000183;;, - 90;4;-0.982628,-0.183287, 0.020802, 0.000188;;, - 91;4;-0.982912,-0.181909, 0.021351, 0.000193;;, - 92;4;-0.983164,-0.180686, 0.021838, 0.000197;;, - 93;4;-0.983383,-0.179622, 0.022262, 0.000201;;, - 94;4;-0.983569,-0.178720, 0.022621, 0.000205;;, - 95;4;-0.983721,-0.177983, 0.022914, 0.000207;;, - 96;4;-0.983839,-0.177410, 0.023142, 0.000209;;, - 97;4;-0.983923,-0.177003, 0.023305, 0.000211;;, - 98;4;-0.983973,-0.176759, 0.023402, 0.000212;;, - 99;4;-0.983990,-0.176678, 0.023434, 0.000212;;, - 100;4;-0.983267,-0.178677, 0.022609, 0.000204;;, - 101;4;-0.981024,-0.184884, 0.020049, 0.000181;;, - 102;4;-0.977214,-0.195430, 0.015698, 0.000142;;, - 103;4;-0.971933,-0.210044, 0.009669, 0.000087;;, - 104;4;-0.965467,-0.227936, 0.002288, 0.000021;;, - 105;4;-0.958274,-0.247841,-0.005923,-0.000054;;, - 106;4;-0.950885,-0.268291,-0.014360,-0.000130;;, - 107;4;-0.943774,-0.287968,-0.022477,-0.000203;;, - 108;4;-0.937284,-0.305928,-0.029886,-0.000270;;, - 109;4;-0.931607,-0.321640,-0.036368,-0.000329;;, - 110;4;-0.925929,-0.337351,-0.042849,-0.000388;;, - 111;4;-0.919439,-0.355312,-0.050259,-0.000455;;, - 112;4;-0.912329,-0.374988,-0.058376,-0.000528;;, - 113;4;-0.904939,-0.395439,-0.066812,-0.000604;;, - 114;4;-0.897746,-0.415344,-0.075024,-0.000678;;, - 115;4;-0.891281,-0.433236,-0.082405,-0.000745;;, - 116;4;-0.885999,-0.447850,-0.088434,-0.000800;;, - 117;4;-0.882189,-0.458395,-0.092784,-0.000839;;, - 118;4;-0.879946,-0.464603,-0.095345,-0.000862;;, - 119;4;-0.879224,-0.466601,-0.096169,-0.000870;;, - 120;4;-0.879946,-0.464603,-0.095345,-0.000862;;, - 121;4;-0.882189,-0.458395,-0.092784,-0.000839;;, - 122;4;-0.885999,-0.447850,-0.088434,-0.000800;;, - 123;4;-0.891280,-0.433236,-0.082405,-0.000745;;, - 124;4;-0.897746,-0.415344,-0.075024,-0.000678;;, - 125;4;-0.904939,-0.395439,-0.066812,-0.000604;;, - 126;4;-0.912329,-0.374988,-0.058376,-0.000528;;, - 127;4;-0.919439,-0.355312,-0.050259,-0.000455;;, - 128;4;-0.925929,-0.337351,-0.042849,-0.000388;;, - 129;4;-0.931607,-0.321640,-0.036368,-0.000329;;, - 130;4;-0.937284,-0.305928,-0.029886,-0.000270;;, - 131;4;-0.943774,-0.287968,-0.022477,-0.000203;;, - 132;4;-0.950885,-0.268291,-0.014360,-0.000130;;, - 133;4;-0.958274,-0.247841,-0.005923,-0.000054;;, - 134;4;-0.965467,-0.227936, 0.002288, 0.000021;;, - 135;4;-0.971933,-0.210044, 0.009669, 0.000087;;, - 136;4;-0.977214,-0.195430, 0.015698, 0.000142;;, - 137;4;-0.981024,-0.184884, 0.020049, 0.000181;;, - 138;4;-0.983267,-0.178677, 0.022609, 0.000204;;, - 139;4;-0.983990,-0.176678, 0.023434, 0.000212;;, - 140;4;-0.981024,-0.184884, 0.020049, 0.000181;;, - 141;4;-0.971933,-0.210044, 0.009669, 0.000087;;, - 142;4;-0.958274,-0.247841,-0.005923,-0.000054;;, - 143;4;-0.943774,-0.287968,-0.022477,-0.000203;;, - 144;4;-0.931607,-0.321640,-0.036368,-0.000329;;, - 145;4;-0.919439,-0.355312,-0.050259,-0.000455;;, - 146;4;-0.904939,-0.395439,-0.066812,-0.000604;;, - 147;4;-0.891281,-0.433236,-0.082405,-0.000745;;, - 148;4;-0.882189,-0.458395,-0.092784,-0.000839;;, - 149;4;-0.879224,-0.466601,-0.096169,-0.000870;;, - 150;4;-0.882189,-0.458395,-0.092784,-0.000839;;, - 151;4;-0.891280,-0.433236,-0.082405,-0.000745;;, - 152;4;-0.904939,-0.395439,-0.066812,-0.000604;;, - 153;4;-0.919439,-0.355312,-0.050259,-0.000455;;, - 154;4;-0.931607,-0.321640,-0.036368,-0.000329;;, - 155;4;-0.943774,-0.287968,-0.022477,-0.000203;;, - 156;4;-0.958274,-0.247841,-0.005923,-0.000054;;, - 157;4;-0.971933,-0.210044, 0.009669, 0.000087;;, - 158;4;-0.981024,-0.184884, 0.020049, 0.000181;;, - 159;4;-0.983990,-0.176678, 0.023434, 0.000212;;, - 160;4;-0.983923,-0.177003, 0.023305, 0.000211;;, - 161;4;-0.983721,-0.177983, 0.022914, 0.000207;;, - 162;4;-0.983383,-0.179622, 0.022262, 0.000201;;, - 163;4;-0.982912,-0.181909, 0.021351, 0.000193;;, - 164;4;-0.982314,-0.184815, 0.020193, 0.000183;;, - 165;4;-0.981597,-0.188292, 0.018809, 0.000170;;, - 166;4;-0.980779,-0.192266, 0.017226, 0.000156;;, - 167;4;-0.979878,-0.196641, 0.015484, 0.000140;;, - 168;4;-0.978919,-0.201298, 0.013629, 0.000123;;, - 169;4;-0.977930,-0.206099, 0.011717, 0.000106;;, - 170;4;-0.976941,-0.210901, 0.009805, 0.000089;;, - 171;4;-0.975981,-0.215557, 0.007950, 0.000072;;, - 172;4;-0.975080,-0.219932, 0.006208, 0.000056;;, - 173;4;-0.974262,-0.223907, 0.004625, 0.000042;;, - 174;4;-0.973545,-0.227383, 0.003241, 0.000029;;, - 175;4;-0.972947,-0.230290, 0.002083, 0.000019;;, - 176;4;-0.972476,-0.232577, 0.001172, 0.000011;;, - 177;4;-0.972138,-0.234216, 0.000520, 0.000005;;, - 178;4;-0.971936,-0.235196, 0.000129, 0.000001;;, - 179;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 180;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 181;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 182;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 183;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 184;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 185;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 186;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 187;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 188;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 189;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 190;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 191;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 192;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 193;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 194;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 195;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 196;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 197;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 198;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 199;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 200;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 201;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 202;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 203;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 204;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 205;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 206;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 207;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 208;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 209;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 210;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 211;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 212;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 213;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 214;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 215;4;-0.972409,-0.232455, 0.001212, 0.000011;;, - 216;4;-0.974065,-0.223057, 0.004929, 0.000045;;, - 217;4;-0.976552,-0.208940, 0.010513, 0.000095;;, - 218;4;-0.979193,-0.193951, 0.016441, 0.000149;;, - 219;4;-0.981409,-0.181374, 0.021415, 0.000194;;, - 220;4;-0.983625,-0.168797, 0.026390, 0.000239;;, - 221;4;-0.986265,-0.153809, 0.032318, 0.000292;;, - 222;4;-0.988753,-0.139691, 0.037902, 0.000343;;, - 223;4;-0.990408,-0.130294, 0.041618, 0.000376;;, - 224;4;-0.990948,-0.127228, 0.042831, 0.000387;;, - 225;4;-0.990761,-0.128292, 0.042410, 0.000384;;, - 226;4;-0.990195,-0.131506, 0.041139, 0.000372;;, - 227;4;-0.989252,-0.136854, 0.039024, 0.000353;;, - 228;4;-0.987954,-0.144225, 0.036108, 0.000327;;, - 229;4;-0.986340,-0.153387, 0.032485, 0.000294;;, - 230;4;-0.984476,-0.163968, 0.028300, 0.000256;;, - 231;4;-0.982450,-0.175466, 0.023752, 0.000215;;, - 232;4;-0.980368,-0.187282, 0.019079, 0.000173;;, - 233;4;-0.978342,-0.198781, 0.014531, 0.000131;;, - 234;4;-0.976478,-0.209362, 0.010346, 0.000094;;, - 235;4;-0.974864,-0.218523, 0.006723, 0.000061;;, - 236;4;-0.973565,-0.225894, 0.003807, 0.000034;;, - 237;4;-0.972623,-0.231243, 0.001692, 0.000015;;, - 238;4;-0.972057,-0.234457, 0.000421, 0.000004;;, - 239;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 240;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 241;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 242;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 243;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 244;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 245;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 246;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 247;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 248;4;-0.971869,-0.235520, 0.000000,-0.000000;;, - 249;4;-0.971869,-0.235520, 0.000000,-0.000000;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3;-0.000000, 1.294481, 0.000000;;, - 1;3;-0.000000, 1.294481, 0.000000;;, - 2;3;-0.000000, 1.294481, 0.000000;;, - 3;3;-0.000000, 1.294481, 0.000000;;, - 4;3;-0.000000, 1.294481, 0.000000;;, - 5;3;-0.000000, 1.294481, 0.000000;;, - 6;3;-0.000000, 1.294481, 0.000000;;, - 7;3;-0.000000, 1.294481, 0.000000;;, - 8;3;-0.000000, 1.294481, 0.000000;;, - 9;3;-0.000000, 1.294481, 0.000000;;, - 10;3;-0.000000, 1.294481, 0.000000;;, - 11;3;-0.000000, 1.294481, 0.000000;;, - 12;3;-0.000000, 1.294481, 0.000000;;, - 13;3;-0.000000, 1.294481, 0.000000;;, - 14;3;-0.000000, 1.294481, 0.000000;;, - 15;3;-0.000000, 1.294481, 0.000000;;, - 16;3;-0.000000, 1.294481, 0.000000;;, - 17;3;-0.000000, 1.294481, 0.000000;;, - 18;3;-0.000000, 1.294481, 0.000000;;, - 19;3;-0.000000, 1.294481, 0.000000;;, - 20;3;-0.000000, 1.294481, 0.000000;;, - 21;3;-0.000000, 1.294481, 0.000000;;, - 22;3;-0.000000, 1.294481, 0.000000;;, - 23;3;-0.000000, 1.294481, 0.000000;;, - 24;3;-0.000000, 1.294481, 0.000000;;, - 25;3;-0.000000, 1.294481, 0.000000;;, - 26;3;-0.000000, 1.294481, 0.000000;;, - 27;3;-0.000000, 1.294481, 0.000000;;, - 28;3;-0.000000, 1.294481, 0.000000;;, - 29;3;-0.000000, 1.294481, 0.000000;;, - 30;3;-0.000000, 1.294481, 0.000000;;, - 31;3;-0.000000, 1.294481, 0.000000;;, - 32;3;-0.000000, 1.294481, 0.000000;;, - 33;3;-0.000000, 1.294481, 0.000000;;, - 34;3;-0.000000, 1.294481, 0.000000;;, - 35;3;-0.000000, 1.294481, 0.000000;;, - 36;3;-0.000000, 1.294481, 0.000000;;, - 37;3;-0.000000, 1.294481, 0.000000;;, - 38;3;-0.000000, 1.294481, 0.000000;;, - 39;3;-0.000000, 1.294481, 0.000000;;, - 40;3;-0.000000, 1.294481, 0.000000;;, - 41;3;-0.000000, 1.294481, 0.000000;;, - 42;3;-0.000000, 1.294481, 0.000000;;, - 43;3;-0.000000, 1.294481, 0.000000;;, - 44;3;-0.000000, 1.294481, 0.000000;;, - 45;3;-0.000000, 1.294481, 0.000000;;, - 46;3;-0.000000, 1.294481, 0.000000;;, - 47;3;-0.000000, 1.294481, 0.000000;;, - 48;3;-0.000000, 1.294481, 0.000000;;, - 49;3;-0.000000, 1.294481, 0.000000;;, - 50;3;-0.000000, 1.294481, 0.000000;;, - 51;3;-0.000000, 1.294481, 0.000000;;, - 52;3;-0.000000, 1.294481, 0.000000;;, - 53;3;-0.000000, 1.294481, 0.000000;;, - 54;3;-0.000000, 1.294481, 0.000000;;, - 55;3;-0.000000, 1.294481, 0.000000;;, - 56;3;-0.000000, 1.294481, 0.000000;;, - 57;3;-0.000000, 1.294481, 0.000000;;, - 58;3;-0.000000, 1.294481, 0.000000;;, - 59;3;-0.000000, 1.294481, 0.000000;;, - 60;3;-0.000000, 1.294482,-0.000000;;, - 61;3;-0.000000, 1.294482, 0.000000;;, - 62;3; 0.000000, 1.294481, 0.000000;;, - 63;3;-0.000000, 1.294481, 0.000000;;, - 64;3;-0.000000, 1.294482, 0.000000;;, - 65;3;-0.000000, 1.294482,-0.000000;;, - 66;3;-0.000000, 1.294482, 0.000000;;, - 67;3;-0.000000, 1.294481, 0.000000;;, - 68;3; 0.000000, 1.294482,-0.000000;;, - 69;3; 0.000000, 1.294481, 0.000000;;, - 70;3;-0.000000, 1.294481, 0.000000;;, - 71;3; 0.000000, 1.294482,-0.000000;;, - 72;3; 0.000000, 1.294482, 0.000000;;, - 73;3;-0.000000, 1.294481, 0.000000;;, - 74;3;-0.000000, 1.294482, 0.000000;;, - 75;3; 0.000000, 1.294481, 0.000000;;, - 76;3; 0.000000, 1.294482, 0.000000;;, - 77;3;-0.000000, 1.294481,-0.000000;;, - 78;3;-0.000000, 1.294482, 0.000000;;, - 79;3;-0.000000, 1.294481, 0.000000;;, - 80;3;-0.000000, 1.294482, 0.000000;;, - 81;3;-0.000000, 1.294481, 0.000000;;, - 82;3;-0.000000, 1.294482,-0.000000;;, - 83;3; 0.000000, 1.294482,-0.000000;;, - 84;3;-0.000000, 1.294481, 0.000000;;, - 85;3;-0.000000, 1.294482, 0.000000;;, - 86;3;-0.000000, 1.294481, 0.000000;;, - 87;3; 0.000000, 1.294482, 0.000000;;, - 88;3; 0.000000, 1.294482, 0.000000;;, - 89;3;-0.000000, 1.294482, 0.000000;;, - 90;3;-0.000000, 1.294482,-0.000000;;, - 91;3;-0.000000, 1.294481, 0.000000;;, - 92;3; 0.000000, 1.294481, 0.000000;;, - 93;3; 0.000000, 1.294481, 0.000000;;, - 94;3;-0.000000, 1.294481,-0.000000;;, - 95;3; 0.000000, 1.294481,-0.000000;;, - 96;3;-0.000000, 1.294482,-0.000000;;, - 97;3; 0.000000, 1.294482, 0.000000;;, - 98;3; 0.000000, 1.294482,-0.000000;;, - 99;3;-0.000000, 1.294481, 0.000000;;, - 100;3; 0.000000, 1.294481, 0.000000;;, - 101;3;-0.000000, 1.294481, 0.000000;;, - 102;3;-0.000000, 1.294481,-0.000000;;, - 103;3;-0.000000, 1.294481,-0.000000;;, - 104;3;-0.000000, 1.294482, 0.000000;;, - 105;3;-0.000000, 1.294482,-0.000000;;, - 106;3; 0.000000, 1.294481, 0.000000;;, - 107;3; 0.000000, 1.294482, 0.000000;;, - 108;3;-0.000000, 1.294481,-0.000000;;, - 109;3; 0.000000, 1.294482,-0.000000;;, - 110;3; 0.000000, 1.294482, 0.000000;;, - 111;3; 0.000000, 1.294481, 0.000000;;, - 112;3;-0.000000, 1.294482, 0.000000;;, - 113;3; 0.000000, 1.294481, 0.000000;;, - 114;3; 0.000000, 1.294482, 0.000000;;, - 115;3; 0.000000, 1.294481,-0.000000;;, - 116;3; 0.000000, 1.294481, 0.000000;;, - 117;3; 0.000000, 1.294482,-0.000000;;, - 118;3; 0.000000, 1.294481,-0.000000;;, - 119;3; 0.000000, 1.294481,-0.000000;;, - 120;3;-0.000000, 1.294481,-0.000000;;, - 121;3;-0.000000, 1.294482, 0.000000;;, - 122;3; 0.000000, 1.294481,-0.000000;;, - 123;3; 0.000000, 1.294481,-0.000000;;, - 124;3;-0.000000, 1.294482,-0.000000;;, - 125;3;-0.000000, 1.294482, 0.000000;;, - 126;3;-0.000000, 1.294481,-0.000000;;, - 127;3;-0.000000, 1.294482,-0.000000;;, - 128;3; 0.000000, 1.294481,-0.000000;;, - 129;3;-0.000000, 1.294481, 0.000000;;, - 130;3;-0.000000, 1.294481,-0.000000;;, - 131;3; 0.000000, 1.294481,-0.000000;;, - 132;3; 0.000000, 1.294481,-0.000000;;, - 133;3; 0.000000, 1.294481, 0.000000;;, - 134;3; 0.000000, 1.294481,-0.000000;;, - 135;3; 0.000000, 1.294481, 0.000000;;, - 136;3;-0.000000, 1.294482,-0.000000;;, - 137;3; 0.000000, 1.294481,-0.000000;;, - 138;3;-0.000000, 1.294481,-0.000000;;, - 139;3;-0.000000, 1.294481, 0.000000;;, - 140;3;-0.000000, 1.294481, 0.000000;;, - 141;3;-0.000000, 1.294481,-0.000000;;, - 142;3;-0.000000, 1.294482,-0.000000;;, - 143;3; 0.000000, 1.294482, 0.000000;;, - 144;3; 0.000000, 1.294482,-0.000000;;, - 145;3; 0.000000, 1.294481, 0.000000;;, - 146;3; 0.000000, 1.294481, 0.000000;;, - 147;3; 0.000000, 1.294481,-0.000000;;, - 148;3; 0.000000, 1.294482,-0.000000;;, - 149;3; 0.000000, 1.294481,-0.000000;;, - 150;3;-0.000000, 1.294482, 0.000000;;, - 151;3; 0.000000, 1.294481,-0.000000;;, - 152;3;-0.000000, 1.294482, 0.000000;;, - 153;3;-0.000000, 1.294482,-0.000000;;, - 154;3;-0.000000, 1.294481, 0.000000;;, - 155;3; 0.000000, 1.294481,-0.000000;;, - 156;3; 0.000000, 1.294481, 0.000000;;, - 157;3; 0.000000, 1.294481, 0.000000;;, - 158;3; 0.000000, 1.294481,-0.000000;;, - 159;3;-0.000000, 1.294481, 0.000000;;, - 160;3;-0.000000, 1.294481,-0.000000;;, - 161;3;-0.000000, 1.294481,-0.000000;;, - 162;3; 0.000000, 1.294482,-0.000000;;, - 163;3; 0.000000, 1.294481,-0.000000;;, - 164;3;-0.000000, 1.294481, 0.000000;;, - 165;3; 0.000000, 1.294482, 0.000000;;, - 166;3;-0.000000, 1.294482,-0.000000;;, - 167;3;-0.000000, 1.294482,-0.000000;;, - 168;3; 0.000000, 1.294481,-0.000000;;, - 169;3;-0.000000, 1.294482, 0.000000;;, - 170;3;-0.000000, 1.294481,-0.000000;;, - 171;3;-0.000000, 1.294482,-0.000000;;, - 172;3;-0.000000, 1.294481, 0.000000;;, - 173;3;-0.000000, 1.294482,-0.000000;;, - 174;3;-0.000000, 1.294481, 0.000000;;, - 175;3; 0.000000, 1.294481,-0.000000;;, - 176;3; 0.000000, 1.294481, 0.000000;;, - 177;3;-0.000000, 1.294482, 0.000000;;, - 178;3;-0.000000, 1.294482, 0.000000;;, - 179;3;-0.000000, 1.294481, 0.000000;;, - 180;3; 0.000000, 1.294481,-0.000000;;, - 181;3; 0.000000, 1.294481, 0.000000;;, - 182;3;-0.000000, 1.294481,-0.000000;;, - 183;3; 0.000000, 1.294481, 0.000000;;, - 184;3; 0.000000, 1.294481,-0.000000;;, - 185;3; 0.000000, 1.294481,-0.000000;;, - 186;3; 0.000000, 1.294482,-0.000000;;, - 187;3;-0.000000, 1.294482,-0.000000;;, - 188;3; 0.000000, 1.294481,-0.000000;;, - 189;3; 0.000000, 1.294481,-0.000000;;, - 190;3; 0.000000, 1.294481, 0.000000;;, - 191;3;-0.000000, 1.294481, 0.000000;;, - 192;3; 0.000000, 1.294482,-0.000000;;, - 193;3;-0.000000, 1.294481, 0.000000;;, - 194;3; 0.000000, 1.294481, 0.000000;;, - 195;3;-0.000000, 1.294481, 0.000000;;, - 196;3;-0.000000, 1.294481,-0.000000;;, - 197;3;-0.000000, 1.294481,-0.000000;;, - 198;3;-0.000000, 1.294481,-0.000000;;, - 199;3;-0.000000, 1.294481, 0.000000;;, - 200;3;-0.000000, 1.294481, 0.000000;;, - 201;3;-0.000000, 1.294481, 0.000000;;, - 202;3;-0.000000, 1.294481, 0.000000;;, - 203;3;-0.000000, 1.294481, 0.000000;;, - 204;3;-0.000000, 1.294481, 0.000000;;, - 205;3;-0.000000, 1.294481, 0.000000;;, - 206;3;-0.000000, 1.294481, 0.000000;;, - 207;3;-0.000000, 1.294481, 0.000000;;, - 208;3;-0.000000, 1.294481, 0.000000;;, - 209;3;-0.000000, 1.294481, 0.000000;;, - 210;3; 0.000000, 1.294481, 0.000000;;, - 211;3; 0.000000, 1.294481, 0.000000;;, - 212;3; 0.000000, 1.294481, 0.000000;;, - 213;3; 0.000000, 1.294482,-0.000000;;, - 214;3;-0.000000, 1.294481, 0.000000;;, - 215;3; 0.000000, 1.294482, 0.000000;;, - 216;3;-0.000000, 1.294481, 0.000000;;, - 217;3; 0.000000, 1.294482,-0.000000;;, - 218;3; 0.000000, 1.294482, 0.000000;;, - 219;3;-0.000000, 1.294482,-0.000000;;, - 220;3;-0.000000, 1.294482, 0.000000;;, - 221;3;-0.000000, 1.294482, 0.000000;;, - 222;3; 0.000000, 1.294482,-0.000000;;, - 223;3;-0.000000, 1.294482, 0.000000;;, - 224;3; 0.000000, 1.294481, 0.000000;;, - 225;3;-0.000000, 1.294481, 0.000000;;, - 226;3; 0.000000, 1.294481, 0.000000;;, - 227;3; 0.000000, 1.294482, 0.000000;;, - 228;3;-0.000000, 1.294482, 0.000000;;, - 229;3; 0.000000, 1.294482, 0.000000;;, - 230;3; 0.000000, 1.294481,-0.000000;;, - 231;3;-0.000000, 1.294481, 0.000000;;, - 232;3;-0.000000, 1.294482,-0.000000;;, - 233;3; 0.000000, 1.294481,-0.000000;;, - 234;3; 0.000000, 1.294482,-0.000000;;, - 235;3;-0.000000, 1.294481, 0.000000;;, - 236;3; 0.000000, 1.294481, 0.000000;;, - 237;3; 0.000000, 1.294481,-0.000000;;, - 238;3;-0.000000, 1.294481,-0.000000;;, - 239;3;-0.000000, 1.294481, 0.000000;;, - 240;3;-0.000000, 1.294481, 0.000000;;, - 241;3;-0.000000, 1.294481, 0.000000;;, - 242;3;-0.000000, 1.294481, 0.000000;;, - 243;3;-0.000000, 1.294481, 0.000000;;, - 244;3;-0.000000, 1.294481, 0.000000;;, - 245;3;-0.000000, 1.294481, 0.000000;;, - 246;3;-0.000000, 1.294481, 0.000000;;, - 247;3;-0.000000, 1.294481, 0.000000;;, - 248;3;-0.000000, 1.294481, 0.000000;;, - 249;3;-0.000000, 1.294481, 0.000000;;; - } - } - Animation { - {Armature_Bone_026} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 1;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 2;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 3;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 4;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 5;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 6;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 7;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 8;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 9;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 10;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 11;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 12;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 13;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 14;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 15;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 16;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 17;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 18;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 19;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 20;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 21;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 22;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 23;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 24;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 25;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 26;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 27;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 28;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 29;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 30;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 31;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 32;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 33;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 34;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 35;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 36;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 37;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 38;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 39;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 40;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 41;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 42;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 43;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 44;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 45;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 46;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 47;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 48;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 49;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 50;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 51;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 52;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 53;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 54;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 55;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 56;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 57;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 58;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 59;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 60;4;-0.990507,-0.137464,-0.000000,-0.000000;;, - 61;4;-0.990507,-0.137465,-0.000000,-0.000000;;, - 62;4;-0.990506,-0.137468,-0.000001,-0.000001;;, - 63;4;-0.990506,-0.137473,-0.000003,-0.000001;;, - 64;4;-0.990504,-0.137481,-0.000006,-0.000002;;, - 65;4;-0.990503,-0.137494,-0.000011,-0.000004;;, - 66;4;-0.990500,-0.137512,-0.000018,-0.000007;;, - 67;4;-0.990496,-0.137538,-0.000027,-0.000011;;, - 68;4;-0.990491,-0.137572,-0.000039,-0.000016;;, - 69;4;-0.990485,-0.137615,-0.000055,-0.000022;;, - 70;4;-0.990477,-0.137670,-0.000075,-0.000030;;, - 71;4;-0.990467,-0.137738,-0.000100,-0.000041;;, - 72;4;-0.990455,-0.137821,-0.000130,-0.000053;;, - 73;4;-0.990440,-0.137920,-0.000166,-0.000067;;, - 74;4;-0.990423,-0.138036,-0.000209,-0.000085;;, - 75;4;-0.990404,-0.138173,-0.000259,-0.000105;;, - 76;4;-0.990381,-0.138330,-0.000316,-0.000128;;, - 77;4;-0.990354,-0.138510,-0.000382,-0.000155;;, - 78;4;-0.990325,-0.138714,-0.000457,-0.000185;;, - 79;4;-0.990291,-0.138944,-0.000541,-0.000219;;, - 80;4;-0.990254,-0.139200,-0.000635,-0.000257;;, - 81;4;-0.990212,-0.139484,-0.000738,-0.000299;;, - 82;4;-0.990167,-0.139796,-0.000852,-0.000345;;, - 83;4;-0.990117,-0.140136,-0.000977,-0.000396;;, - 84;4;-0.990063,-0.140506,-0.001112,-0.000450;;, - 85;4;-0.990005,-0.140905,-0.001258,-0.000509;;, - 86;4;-0.989943,-0.141334,-0.001415,-0.000573;;, - 87;4;-0.989876,-0.141791,-0.001582,-0.000640;;, - 88;4;-0.989805,-0.142277,-0.001760,-0.000712;;, - 89;4;-0.989730,-0.142791,-0.001948,-0.000789;;, - 90;4;-0.989651,-0.143333,-0.002146,-0.000869;;, - 91;4;-0.989568,-0.143902,-0.002353,-0.000953;;, - 92;4;-0.989482,-0.144496,-0.002571,-0.001041;;, - 93;4;-0.989391,-0.145115,-0.002797,-0.001132;;, - 94;4;-0.989297,-0.145759,-0.003032,-0.001228;;, - 95;4;-0.989200,-0.146425,-0.003276,-0.001326;;, - 96;4;-0.989100,-0.147113,-0.003528,-0.001428;;, - 97;4;-0.988996,-0.147823,-0.003787,-0.001533;;, - 98;4;-0.988890,-0.148553,-0.004054,-0.001641;;, - 99;4;-0.988781,-0.149301,-0.004328,-0.001752;;, - 100;4;-0.988479,-0.150854,-0.004899,-0.001983;;, - 101;4;-0.987776,-0.154079,-0.006090,-0.002466;;, - 102;4;-0.986660,-0.159023,-0.007917,-0.003205;;, - 103;4;-0.985156,-0.165575,-0.010339,-0.004186;;, - 104;4;-0.983341,-0.173414,-0.013239,-0.005360;;, - 105;4;-0.981337,-0.182034,-0.016428,-0.006651;;, - 106;4;-0.979284,-0.190849,-0.019688,-0.007971;;, - 107;4;-0.977309,-0.199333,-0.022827,-0.009242;;, - 108;4;-0.975500,-0.207115,-0.025706,-0.010408;;, - 109;4;-0.973909,-0.213985,-0.028247,-0.011436;;, - 110;4;-0.972314,-0.220879,-0.030796,-0.012469;;, - 111;4;-0.970496,-0.228722,-0.033697,-0.013643;;, - 112;4;-0.968509,-0.237283,-0.036864,-0.014925;;, - 113;4;-0.966448,-0.246154,-0.040146,-0.016254;;, - 114;4;-0.964445,-0.254769,-0.043332,-0.017544;;, - 115;4;-0.962646,-0.262498,-0.046191,-0.018702;;, - 116;4;-0.961179,-0.268801,-0.048523,-0.019646;;, - 117;4;-0.960121,-0.273344,-0.050204,-0.020326;;, - 118;4;-0.959498,-0.276016,-0.051192,-0.020726;;, - 119;4;-0.959298,-0.276875,-0.051510,-0.020855;;, - 120;4;-0.959498,-0.276016,-0.051192,-0.020726;;, - 121;4;-0.960121,-0.273344,-0.050204,-0.020326;;, - 122;4;-0.961179,-0.268801,-0.048523,-0.019646;;, - 123;4;-0.962646,-0.262498,-0.046191,-0.018702;;, - 124;4;-0.964445,-0.254769,-0.043332,-0.017544;;, - 125;4;-0.966448,-0.246154,-0.040146,-0.016254;;, - 126;4;-0.968509,-0.237283,-0.036864,-0.014925;;, - 127;4;-0.970496,-0.228722,-0.033697,-0.013643;;, - 128;4;-0.972314,-0.220879,-0.030796,-0.012469;;, - 129;4;-0.973909,-0.213985,-0.028247,-0.011436;;, - 130;4;-0.975509,-0.207052,-0.025683,-0.010398;;, - 131;4;-0.977344,-0.199089,-0.022738,-0.009206;;, - 132;4;-0.979360,-0.190333,-0.019500,-0.007895;;, - 133;4;-0.981458,-0.181207,-0.016125,-0.006529;;, - 134;4;-0.983503,-0.172304,-0.012833,-0.005196;;, - 135;4;-0.985343,-0.164287,-0.009869,-0.003996;;, - 136;4;-0.986848,-0.157729,-0.007444,-0.003014;;, - 137;4;-0.987935,-0.152992,-0.005692,-0.002305;;, - 138;4;-0.988575,-0.150200,-0.004660,-0.001887;;, - 139;4;-0.988781,-0.149301,-0.004328,-0.001752;;, - 140;4;-0.987935,-0.152992,-0.005692,-0.002305;;, - 141;4;-0.985343,-0.164287,-0.009869,-0.003996;;, - 142;4;-0.981458,-0.181207,-0.016125,-0.006529;;, - 143;4;-0.977344,-0.199089,-0.022738,-0.009206;;, - 144;4;-0.973909,-0.213985,-0.028247,-0.011436;;, - 145;4;-0.970496,-0.228722,-0.033697,-0.013643;;, - 146;4;-0.966448,-0.246154,-0.040146,-0.016254;;, - 147;4;-0.962646,-0.262498,-0.046191,-0.018702;;, - 148;4;-0.960121,-0.273344,-0.050204,-0.020326;;, - 149;4;-0.959298,-0.276875,-0.051510,-0.020855;;, - 150;4;-0.960121,-0.273344,-0.050204,-0.020326;;, - 151;4;-0.962646,-0.262498,-0.046191,-0.018702;;, - 152;4;-0.966448,-0.246154,-0.040146,-0.016254;;, - 153;4;-0.970496,-0.228722,-0.033697,-0.013643;;, - 154;4;-0.973909,-0.213985,-0.028247,-0.011436;;, - 155;4;-0.977309,-0.199333,-0.022827,-0.009242;;, - 156;4;-0.981337,-0.182034,-0.016428,-0.006651;;, - 157;4;-0.985156,-0.165575,-0.010339,-0.004186;;, - 158;4;-0.987776,-0.154079,-0.006090,-0.002466;;, - 159;4;-0.988781,-0.149301,-0.004328,-0.001752;;, - 160;4;-0.988996,-0.147823,-0.003787,-0.001533;;, - 161;4;-0.989200,-0.146425,-0.003276,-0.001326;;, - 162;4;-0.989391,-0.145115,-0.002797,-0.001132;;, - 163;4;-0.989568,-0.143902,-0.002353,-0.000953;;, - 164;4;-0.989730,-0.142791,-0.001948,-0.000789;;, - 165;4;-0.989876,-0.141791,-0.001582,-0.000640;;, - 166;4;-0.990005,-0.140905,-0.001258,-0.000509;;, - 167;4;-0.990117,-0.140136,-0.000977,-0.000396;;, - 168;4;-0.990212,-0.139484,-0.000738,-0.000299;;, - 169;4;-0.990291,-0.138944,-0.000541,-0.000219;;, - 170;4;-0.990354,-0.138510,-0.000382,-0.000155;;, - 171;4;-0.990404,-0.138173,-0.000259,-0.000105;;, - 172;4;-0.990440,-0.137920,-0.000166,-0.000067;;, - 173;4;-0.990467,-0.137738,-0.000100,-0.000041;;, - 174;4;-0.990485,-0.137615,-0.000055,-0.000022;;, - 175;4;-0.990496,-0.137538,-0.000027,-0.000011;;, - 176;4;-0.990503,-0.137494,-0.000011,-0.000004;;, - 177;4;-0.990506,-0.137473,-0.000003,-0.000001;;, - 178;4;-0.990507,-0.137465,-0.000000,-0.000000;;, - 179;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 180;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 181;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 182;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 183;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 184;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 185;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 186;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 187;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 188;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 189;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 190;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 191;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 192;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 193;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 194;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 195;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 196;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 197;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 198;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 199;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 200;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 201;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 202;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 203;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 204;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 205;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 206;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 207;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 208;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 209;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 210;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 211;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 212;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 213;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 214;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 215;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 216;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 217;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 218;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 219;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 220;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 221;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 222;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 223;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 224;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 225;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 226;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 227;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 228;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 229;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 230;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 231;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 232;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 233;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 234;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 235;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 236;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 237;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 238;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 239;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 240;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 241;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 242;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 243;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 244;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 245;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 246;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 247;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 248;4;-0.990507,-0.137464, 0.000000,-0.000000;;, - 249;4;-0.990507,-0.137464, 0.000000,-0.000000;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3; 0.000000, 1.228822,-0.000000;;, - 1;3; 0.000000, 1.228822,-0.000000;;, - 2;3; 0.000000, 1.228822,-0.000000;;, - 3;3; 0.000000, 1.228822,-0.000000;;, - 4;3; 0.000000, 1.228822,-0.000000;;, - 5;3; 0.000000, 1.228822,-0.000000;;, - 6;3; 0.000000, 1.228822,-0.000000;;, - 7;3; 0.000000, 1.228822,-0.000000;;, - 8;3; 0.000000, 1.228822,-0.000000;;, - 9;3; 0.000000, 1.228822,-0.000000;;, - 10;3; 0.000000, 1.228822,-0.000000;;, - 11;3; 0.000000, 1.228822,-0.000000;;, - 12;3; 0.000000, 1.228822,-0.000000;;, - 13;3; 0.000000, 1.228822,-0.000000;;, - 14;3; 0.000000, 1.228822,-0.000000;;, - 15;3; 0.000000, 1.228822,-0.000000;;, - 16;3; 0.000000, 1.228822,-0.000000;;, - 17;3; 0.000000, 1.228822,-0.000000;;, - 18;3; 0.000000, 1.228822,-0.000000;;, - 19;3; 0.000000, 1.228822,-0.000000;;, - 20;3; 0.000000, 1.228822,-0.000000;;, - 21;3; 0.000000, 1.228822,-0.000000;;, - 22;3; 0.000000, 1.228822,-0.000000;;, - 23;3; 0.000000, 1.228822,-0.000000;;, - 24;3; 0.000000, 1.228822,-0.000000;;, - 25;3; 0.000000, 1.228822,-0.000000;;, - 26;3; 0.000000, 1.228822,-0.000000;;, - 27;3; 0.000000, 1.228822,-0.000000;;, - 28;3; 0.000000, 1.228822,-0.000000;;, - 29;3; 0.000000, 1.228822,-0.000000;;, - 30;3; 0.000000, 1.228822,-0.000000;;, - 31;3; 0.000000, 1.228822,-0.000000;;, - 32;3; 0.000000, 1.228822,-0.000000;;, - 33;3; 0.000000, 1.228822,-0.000000;;, - 34;3; 0.000000, 1.228822,-0.000000;;, - 35;3; 0.000000, 1.228822,-0.000000;;, - 36;3; 0.000000, 1.228822,-0.000000;;, - 37;3; 0.000000, 1.228822,-0.000000;;, - 38;3; 0.000000, 1.228822,-0.000000;;, - 39;3; 0.000000, 1.228822,-0.000000;;, - 40;3; 0.000000, 1.228822,-0.000000;;, - 41;3; 0.000000, 1.228822,-0.000000;;, - 42;3; 0.000000, 1.228822,-0.000000;;, - 43;3; 0.000000, 1.228822,-0.000000;;, - 44;3; 0.000000, 1.228822,-0.000000;;, - 45;3; 0.000000, 1.228822,-0.000000;;, - 46;3; 0.000000, 1.228822,-0.000000;;, - 47;3; 0.000000, 1.228822,-0.000000;;, - 48;3; 0.000000, 1.228822,-0.000000;;, - 49;3; 0.000000, 1.228822,-0.000000;;, - 50;3; 0.000000, 1.228822,-0.000000;;, - 51;3; 0.000000, 1.228822,-0.000000;;, - 52;3; 0.000000, 1.228822,-0.000000;;, - 53;3; 0.000000, 1.228822,-0.000000;;, - 54;3; 0.000000, 1.228822,-0.000000;;, - 55;3; 0.000000, 1.228822,-0.000000;;, - 56;3; 0.000000, 1.228822,-0.000000;;, - 57;3; 0.000000, 1.228822,-0.000000;;, - 58;3; 0.000000, 1.228822,-0.000000;;, - 59;3; 0.000000, 1.228822,-0.000000;;, - 60;3; 0.000000, 1.228822,-0.000000;;, - 61;3;-0.000000, 1.228822, 0.000000;;, - 62;3;-0.000000, 1.228822, 0.000000;;, - 63;3; 0.000000, 1.228822,-0.000000;;, - 64;3;-0.000000, 1.228822, 0.000000;;, - 65;3;-0.000000, 1.228822,-0.000000;;, - 66;3;-0.000000, 1.228822, 0.000000;;, - 67;3;-0.000000, 1.228822, 0.000000;;, - 68;3;-0.000000, 1.228822, 0.000000;;, - 69;3; 0.000000, 1.228822,-0.000000;;, - 70;3; 0.000000, 1.228822,-0.000000;;, - 71;3; 0.000000, 1.228822,-0.000000;;, - 72;3; 0.000000, 1.228822,-0.000000;;, - 73;3; 0.000000, 1.228822,-0.000000;;, - 74;3;-0.000000, 1.228822, 0.000000;;, - 75;3;-0.000000, 1.228822,-0.000000;;, - 76;3;-0.000000, 1.228822,-0.000000;;, - 77;3; 0.000000, 1.228822,-0.000000;;, - 78;3;-0.000000, 1.228822,-0.000000;;, - 79;3; 0.000000, 1.228822,-0.000000;;, - 80;3; 0.000000, 1.228822, 0.000000;;, - 81;3;-0.000000, 1.228822, 0.000000;;, - 82;3;-0.000000, 1.228822,-0.000000;;, - 83;3; 0.000000, 1.228822,-0.000000;;, - 84;3;-0.000000, 1.228822,-0.000000;;, - 85;3;-0.000000, 1.228822,-0.000000;;, - 86;3; 0.000000, 1.228822, 0.000000;;, - 87;3; 0.000000, 1.228821, 0.000000;;, - 88;3;-0.000000, 1.228822,-0.000000;;, - 89;3;-0.000000, 1.228822, 0.000000;;, - 90;3; 0.000000, 1.228822, 0.000000;;, - 91;3; 0.000000, 1.228822, 0.000000;;, - 92;3; 0.000000, 1.228822, 0.000000;;, - 93;3;-0.000000, 1.228822,-0.000000;;, - 94;3;-0.000000, 1.228822, 0.000000;;, - 95;3;-0.000000, 1.228822, 0.000000;;, - 96;3; 0.000000, 1.228822,-0.000000;;, - 97;3; 0.000000, 1.228822,-0.000000;;, - 98;3; 0.000000, 1.228822,-0.000000;;, - 99;3;-0.000000, 1.228821, 0.000000;;, - 100;3;-0.000000, 1.228822,-0.000000;;, - 101;3; 0.000000, 1.228821,-0.000000;;, - 102;3;-0.000000, 1.228822, 0.000000;;, - 103;3; 0.000000, 1.228822, 0.000000;;, - 104;3;-0.000000, 1.228822,-0.000000;;, - 105;3;-0.000000, 1.228822, 0.000000;;, - 106;3; 0.000000, 1.228822,-0.000000;;, - 107;3; 0.000000, 1.228822, 0.000000;;, - 108;3;-0.000000, 1.228822,-0.000000;;, - 109;3;-0.000000, 1.228822, 0.000000;;, - 110;3; 0.000000, 1.228822,-0.000000;;, - 111;3;-0.000000, 1.228822,-0.000000;;, - 112;3; 0.000000, 1.228822, 0.000000;;, - 113;3;-0.000000, 1.228822,-0.000000;;, - 114;3; 0.000000, 1.228822,-0.000000;;, - 115;3; 0.000000, 1.228821, 0.000000;;, - 116;3; 0.000000, 1.228822,-0.000000;;, - 117;3; 0.000000, 1.228822,-0.000000;;, - 118;3;-0.000000, 1.228822, 0.000000;;, - 119;3;-0.000000, 1.228822, 0.000000;;, - 120;3;-0.000000, 1.228822, 0.000000;;, - 121;3; 0.000000, 1.228821,-0.000000;;, - 122;3;-0.000000, 1.228822, 0.000000;;, - 123;3; 0.000000, 1.228822, 0.000000;;, - 124;3;-0.000000, 1.228822,-0.000000;;, - 125;3; 0.000000, 1.228822, 0.000000;;, - 126;3;-0.000000, 1.228822,-0.000000;;, - 127;3;-0.000000, 1.228822,-0.000000;;, - 128;3;-0.000000, 1.228822, 0.000000;;, - 129;3;-0.000000, 1.228822,-0.000000;;, - 130;3;-0.000000, 1.228822, 0.000000;;, - 131;3;-0.000000, 1.228821,-0.000000;;, - 132;3; 0.000000, 1.228822, 0.000000;;, - 133;3; 0.000000, 1.228822, 0.000000;;, - 134;3;-0.000000, 1.228822,-0.000000;;, - 135;3;-0.000000, 1.228822,-0.000000;;, - 136;3;-0.000000, 1.228823,-0.000000;;, - 137;3; 0.000000, 1.228821,-0.000000;;, - 138;3; 0.000000, 1.228822,-0.000000;;, - 139;3;-0.000000, 1.228821, 0.000000;;, - 140;3; 0.000000, 1.228821,-0.000000;;, - 141;3; 0.000000, 1.228822, 0.000000;;, - 142;3;-0.000000, 1.228822, 0.000000;;, - 143;3; 0.000000, 1.228822, 0.000000;;, - 144;3;-0.000000, 1.228822, 0.000000;;, - 145;3;-0.000000, 1.228822,-0.000000;;, - 146;3;-0.000000, 1.228822,-0.000000;;, - 147;3; 0.000000, 1.228821, 0.000000;;, - 148;3; 0.000000, 1.228822,-0.000000;;, - 149;3;-0.000000, 1.228822, 0.000000;;, - 150;3; 0.000000, 1.228821,-0.000000;;, - 151;3; 0.000000, 1.228822, 0.000000;;, - 152;3; 0.000000, 1.228822, 0.000000;;, - 153;3;-0.000000, 1.228822,-0.000000;;, - 154;3;-0.000000, 1.228822,-0.000000;;, - 155;3;-0.000000, 1.228821,-0.000000;;, - 156;3; 0.000000, 1.228822, 0.000000;;, - 157;3;-0.000000, 1.228822,-0.000000;;, - 158;3; 0.000000, 1.228821,-0.000000;;, - 159;3;-0.000000, 1.228821, 0.000000;;, - 160;3; 0.000000, 1.228822, 0.000000;;, - 161;3; 0.000000, 1.228821,-0.000000;;, - 162;3; 0.000000, 1.228822,-0.000000;;, - 163;3; 0.000000, 1.228822,-0.000000;;, - 164;3;-0.000000, 1.228822,-0.000000;;, - 165;3;-0.000000, 1.228822,-0.000000;;, - 166;3;-0.000000, 1.228821, 0.000000;;, - 167;3; 0.000000, 1.228821, 0.000000;;, - 168;3; 0.000000, 1.228822,-0.000000;;, - 169;3; 0.000000, 1.228822,-0.000000;;, - 170;3; 0.000000, 1.228822,-0.000000;;, - 171;3; 0.000000, 1.228822,-0.000000;;, - 172;3; 0.000000, 1.228822,-0.000000;;, - 173;3;-0.000000, 1.228822,-0.000000;;, - 174;3; 0.000000, 1.228822, 0.000000;;, - 175;3;-0.000000, 1.228822, 0.000000;;, - 176;3; 0.000000, 1.228822,-0.000000;;, - 177;3;-0.000000, 1.228822,-0.000000;;, - 178;3; 0.000000, 1.228822,-0.000000;;, - 179;3; 0.000000, 1.228822,-0.000000;;, - 180;3;-0.000000, 1.228822,-0.000000;;, - 181;3;-0.000000, 1.228822,-0.000000;;, - 182;3;-0.000000, 1.228822, 0.000000;;, - 183;3;-0.000000, 1.228822, 0.000000;;, - 184;3;-0.000000, 1.228822,-0.000000;;, - 185;3;-0.000000, 1.228822, 0.000000;;, - 186;3; 0.000000, 1.228822,-0.000000;;, - 187;3;-0.000000, 1.228822, 0.000000;;, - 188;3; 0.000000, 1.228821, 0.000000;;, - 189;3; 0.000000, 1.228822, 0.000000;;, - 190;3; 0.000000, 1.228822,-0.000000;;, - 191;3;-0.000000, 1.228822, 0.000000;;, - 192;3; 0.000000, 1.228822,-0.000000;;, - 193;3;-0.000000, 1.228822, 0.000000;;, - 194;3; 0.000000, 1.228822, 0.000000;;, - 195;3;-0.000000, 1.228822, 0.000000;;, - 196;3;-0.000000, 1.228822,-0.000000;;, - 197;3;-0.000000, 1.228822,-0.000000;;, - 198;3;-0.000000, 1.228822, 0.000000;;, - 199;3; 0.000000, 1.228822,-0.000000;;, - 200;3; 0.000000, 1.228822,-0.000000;;, - 201;3; 0.000000, 1.228822,-0.000000;;, - 202;3; 0.000000, 1.228822,-0.000000;;, - 203;3; 0.000000, 1.228822,-0.000000;;, - 204;3; 0.000000, 1.228822,-0.000000;;, - 205;3; 0.000000, 1.228822,-0.000000;;, - 206;3; 0.000000, 1.228822,-0.000000;;, - 207;3; 0.000000, 1.228822,-0.000000;;, - 208;3; 0.000000, 1.228822,-0.000000;;, - 209;3; 0.000000, 1.228822,-0.000000;;, - 210;3;-0.000000, 1.228822, 0.000000;;, - 211;3;-0.000000, 1.228822, 0.000000;;, - 212;3;-0.000000, 1.228822,-0.000000;;, - 213;3;-0.000000, 1.228822,-0.000000;;, - 214;3;-0.000000, 1.228822, 0.000000;;, - 215;3; 0.000000, 1.228822, 0.000000;;, - 216;3;-0.000000, 1.228822,-0.000000;;, - 217;3; 0.000000, 1.228822, 0.000000;;, - 218;3; 0.000000, 1.228822, 0.000000;;, - 219;3; 0.000000, 1.228822,-0.000000;;, - 220;3; 0.000000, 1.228821, 0.000000;;, - 221;3;-0.000000, 1.228821,-0.000000;;, - 222;3; 0.000000, 1.228822, 0.000000;;, - 223;3;-0.000000, 1.228821, 0.000000;;, - 224;3; 0.000000, 1.228821, 0.000000;;, - 225;3; 0.000000, 1.228822, 0.000000;;, - 226;3; 0.000000, 1.228822, 0.000000;;, - 227;3; 0.000000, 1.228822, 0.000000;;, - 228;3; 0.000000, 1.228823, 0.000000;;, - 229;3; 0.000000, 1.228822, 0.000000;;, - 230;3; 0.000000, 1.228822, 0.000000;;, - 231;3;-0.000000, 1.228822,-0.000000;;, - 232;3;-0.000000, 1.228821,-0.000001;;, - 233;3; 0.000000, 1.228822, 0.000000;;, - 234;3; 0.000000, 1.228822,-0.000000;;, - 235;3;-0.000000, 1.228822, 0.000000;;, - 236;3; 0.000000, 1.228822,-0.000000;;, - 237;3;-0.000000, 1.228822,-0.000000;;, - 238;3;-0.000000, 1.228822,-0.000000;;, - 239;3; 0.000000, 1.228822,-0.000000;;, - 240;3; 0.000000, 1.228822,-0.000000;;, - 241;3; 0.000000, 1.228822,-0.000000;;, - 242;3; 0.000000, 1.228822,-0.000000;;, - 243;3; 0.000000, 1.228822,-0.000000;;, - 244;3; 0.000000, 1.228822,-0.000000;;, - 245;3; 0.000000, 1.228822,-0.000000;;, - 246;3; 0.000000, 1.228822,-0.000000;;, - 247;3; 0.000000, 1.228822,-0.000000;;, - 248;3; 0.000000, 1.228822,-0.000000;;, - 249;3; 0.000000, 1.228822,-0.000000;;; - } - } - Animation { - {Armature_Bone_015} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 1;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 2;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 3;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 4;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 5;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 6;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 7;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 8;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 9;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 10;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 11;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 12;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 13;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 14;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 15;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 16;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 17;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 18;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 19;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 20;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 21;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 22;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 23;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 24;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 25;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 26;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 27;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 28;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 29;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 30;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 31;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 32;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 33;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 34;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 35;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 36;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 37;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 38;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 39;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 40;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 41;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 42;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 43;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 44;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 45;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 46;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 47;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 48;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 49;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 50;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 51;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 52;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 53;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 54;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 55;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 56;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 57;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 58;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 59;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 60;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 61;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 62;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 63;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 64;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 65;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 66;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 67;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 68;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 69;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 70;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 71;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 72;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 73;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 74;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 75;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 76;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 77;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 78;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 79;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 80;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 81;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 82;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 83;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 84;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 85;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 86;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 87;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 88;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 89;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 90;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 91;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 92;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 93;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 94;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 95;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 96;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 97;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 98;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 99;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 100;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 101;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 102;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 103;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 104;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 105;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 106;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 107;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 108;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 109;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 110;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 111;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 112;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 113;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 114;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 115;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 116;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 117;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 118;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 119;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 120;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 121;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 122;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 123;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 124;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 125;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 126;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 127;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 128;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 129;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 130;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 131;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 132;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 133;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 134;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 135;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 136;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 137;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 138;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 139;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 140;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 141;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 142;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 143;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 144;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 145;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 146;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 147;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 148;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 149;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 150;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 151;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 152;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 153;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 154;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 155;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 156;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 157;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 158;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 159;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 160;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 161;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 162;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 163;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 164;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 165;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 166;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 167;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 168;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 169;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 170;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 171;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 172;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 173;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 174;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 175;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 176;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 177;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 178;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 179;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 180;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 181;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 182;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 183;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 184;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 185;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 186;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 187;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 188;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 189;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 190;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 191;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 192;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 193;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 194;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 195;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 196;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 197;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 198;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 199;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 200;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 201;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 202;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 203;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 204;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 205;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 206;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 207;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 208;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 209;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 210;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 211;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 212;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 213;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 214;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 215;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 216;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 217;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 218;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 219;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 220;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 221;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 222;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 223;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 224;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 225;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 226;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 227;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 228;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 229;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 230;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 231;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 232;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 233;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 234;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 235;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 236;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 237;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 238;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 239;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 240;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 241;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 242;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 243;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 244;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 245;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 246;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 247;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 248;4;-0.734154, 0.000000, 0.000000,-0.678983;;, - 249;4;-0.734154, 0.000000, 0.000000,-0.678983;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3; 0.000000, 0.826434, 0.000000;;, - 1;3; 0.000000, 0.826434, 0.000000;;, - 2;3; 0.000000, 0.826434, 0.000000;;, - 3;3; 0.000000, 0.826434, 0.000000;;, - 4;3; 0.000000, 0.826434, 0.000000;;, - 5;3; 0.000000, 0.826434, 0.000000;;, - 6;3; 0.000000, 0.826434, 0.000000;;, - 7;3; 0.000000, 0.826434, 0.000000;;, - 8;3; 0.000000, 0.826434, 0.000000;;, - 9;3; 0.000000, 0.826434, 0.000000;;, - 10;3; 0.000000, 0.826434, 0.000000;;, - 11;3; 0.000000, 0.826434, 0.000000;;, - 12;3; 0.000000, 0.826434, 0.000000;;, - 13;3; 0.000000, 0.826434, 0.000000;;, - 14;3; 0.000000, 0.826434, 0.000000;;, - 15;3; 0.000000, 0.826434, 0.000000;;, - 16;3; 0.000000, 0.826434, 0.000000;;, - 17;3; 0.000000, 0.826434, 0.000000;;, - 18;3; 0.000000, 0.826434, 0.000000;;, - 19;3; 0.000000, 0.826434, 0.000000;;, - 20;3; 0.000000, 0.826434, 0.000000;;, - 21;3; 0.000000, 0.826434, 0.000000;;, - 22;3; 0.000000, 0.826434, 0.000000;;, - 23;3; 0.000000, 0.826434, 0.000000;;, - 24;3; 0.000000, 0.826434, 0.000000;;, - 25;3; 0.000000, 0.826434, 0.000000;;, - 26;3; 0.000000, 0.826434, 0.000000;;, - 27;3; 0.000000, 0.826434, 0.000000;;, - 28;3; 0.000000, 0.826434, 0.000000;;, - 29;3; 0.000000, 0.826434, 0.000000;;, - 30;3; 0.000000, 0.826434, 0.000000;;, - 31;3; 0.000000, 0.826434, 0.000000;;, - 32;3; 0.000000, 0.826434, 0.000000;;, - 33;3; 0.000000, 0.826434, 0.000000;;, - 34;3; 0.000000, 0.826434, 0.000000;;, - 35;3; 0.000000, 0.826434, 0.000000;;, - 36;3; 0.000000, 0.826434, 0.000000;;, - 37;3; 0.000000, 0.826434, 0.000000;;, - 38;3; 0.000000, 0.826434, 0.000000;;, - 39;3; 0.000000, 0.826434, 0.000000;;, - 40;3; 0.000000, 0.826434, 0.000000;;, - 41;3; 0.000000, 0.826434, 0.000000;;, - 42;3; 0.000000, 0.826434, 0.000000;;, - 43;3; 0.000000, 0.826434, 0.000000;;, - 44;3; 0.000000, 0.826434, 0.000000;;, - 45;3; 0.000000, 0.826434, 0.000000;;, - 46;3; 0.000000, 0.826434, 0.000000;;, - 47;3; 0.000000, 0.826434, 0.000000;;, - 48;3; 0.000000, 0.826434, 0.000000;;, - 49;3; 0.000000, 0.826434, 0.000000;;, - 50;3; 0.000000, 0.826434, 0.000000;;, - 51;3; 0.000000, 0.826434, 0.000000;;, - 52;3; 0.000000, 0.826434, 0.000000;;, - 53;3; 0.000000, 0.826434, 0.000000;;, - 54;3; 0.000000, 0.826434, 0.000000;;, - 55;3; 0.000000, 0.826434, 0.000000;;, - 56;3; 0.000000, 0.826434, 0.000000;;, - 57;3; 0.000000, 0.826434, 0.000000;;, - 58;3; 0.000000, 0.826434, 0.000000;;, - 59;3; 0.000000, 0.826434, 0.000000;;, - 60;3; 0.000000, 0.826434, 0.000000;;, - 61;3; 0.000000, 0.826434, 0.000000;;, - 62;3; 0.000000, 0.826434, 0.000000;;, - 63;3; 0.000000, 0.826434, 0.000000;;, - 64;3; 0.000000, 0.826434, 0.000000;;, - 65;3; 0.000000, 0.826434, 0.000000;;, - 66;3; 0.000000, 0.826434, 0.000000;;, - 67;3; 0.000000, 0.826434, 0.000000;;, - 68;3; 0.000000, 0.826434, 0.000000;;, - 69;3; 0.000000, 0.826434, 0.000000;;, - 70;3; 0.000000, 0.826434, 0.000000;;, - 71;3; 0.000000, 0.826434, 0.000000;;, - 72;3; 0.000000, 0.826434, 0.000000;;, - 73;3; 0.000000, 0.826434, 0.000000;;, - 74;3; 0.000000, 0.826434, 0.000000;;, - 75;3; 0.000000, 0.826434, 0.000000;;, - 76;3; 0.000000, 0.826434, 0.000000;;, - 77;3; 0.000000, 0.826434, 0.000000;;, - 78;3; 0.000000, 0.826434, 0.000000;;, - 79;3; 0.000000, 0.826434, 0.000000;;, - 80;3; 0.000000, 0.826434, 0.000000;;, - 81;3; 0.000000, 0.826434, 0.000000;;, - 82;3; 0.000000, 0.826434, 0.000000;;, - 83;3; 0.000000, 0.826434, 0.000000;;, - 84;3; 0.000000, 0.826434, 0.000000;;, - 85;3; 0.000000, 0.826434, 0.000000;;, - 86;3; 0.000000, 0.826434, 0.000000;;, - 87;3; 0.000000, 0.826434, 0.000000;;, - 88;3; 0.000000, 0.826434, 0.000000;;, - 89;3; 0.000000, 0.826434, 0.000000;;, - 90;3; 0.000000, 0.826434, 0.000000;;, - 91;3; 0.000000, 0.826434, 0.000000;;, - 92;3; 0.000000, 0.826434, 0.000000;;, - 93;3; 0.000000, 0.826434, 0.000000;;, - 94;3; 0.000000, 0.826434, 0.000000;;, - 95;3; 0.000000, 0.826434, 0.000000;;, - 96;3; 0.000000, 0.826434, 0.000000;;, - 97;3; 0.000000, 0.826434, 0.000000;;, - 98;3; 0.000000, 0.826434, 0.000000;;, - 99;3; 0.000000, 0.826434, 0.000000;;, - 100;3; 0.000000, 0.826434, 0.000000;;, - 101;3; 0.000000, 0.826434, 0.000000;;, - 102;3; 0.000000, 0.826434, 0.000000;;, - 103;3; 0.000000, 0.826434, 0.000000;;, - 104;3; 0.000000, 0.826434, 0.000000;;, - 105;3; 0.000000, 0.826434, 0.000000;;, - 106;3; 0.000000, 0.826434, 0.000000;;, - 107;3; 0.000000, 0.826434, 0.000000;;, - 108;3; 0.000000, 0.826434, 0.000000;;, - 109;3; 0.000000, 0.826434, 0.000000;;, - 110;3; 0.000000, 0.826434, 0.000000;;, - 111;3; 0.000000, 0.826434, 0.000000;;, - 112;3; 0.000000, 0.826434, 0.000000;;, - 113;3; 0.000000, 0.826434, 0.000000;;, - 114;3; 0.000000, 0.826434, 0.000000;;, - 115;3; 0.000000, 0.826434, 0.000000;;, - 116;3; 0.000000, 0.826434, 0.000000;;, - 117;3; 0.000000, 0.826434, 0.000000;;, - 118;3; 0.000000, 0.826434, 0.000000;;, - 119;3; 0.000000, 0.826434, 0.000000;;, - 120;3; 0.000000, 0.826434, 0.000000;;, - 121;3; 0.000000, 0.826434, 0.000000;;, - 122;3; 0.000000, 0.826434, 0.000000;;, - 123;3; 0.000000, 0.826434, 0.000000;;, - 124;3; 0.000000, 0.826434, 0.000000;;, - 125;3; 0.000000, 0.826434, 0.000000;;, - 126;3; 0.000000, 0.826434, 0.000000;;, - 127;3; 0.000000, 0.826434, 0.000000;;, - 128;3; 0.000000, 0.826434, 0.000000;;, - 129;3; 0.000000, 0.826434, 0.000000;;, - 130;3; 0.000000, 0.826434, 0.000000;;, - 131;3; 0.000000, 0.826434, 0.000000;;, - 132;3; 0.000000, 0.826434, 0.000000;;, - 133;3; 0.000000, 0.826434, 0.000000;;, - 134;3; 0.000000, 0.826434, 0.000000;;, - 135;3; 0.000000, 0.826434, 0.000000;;, - 136;3; 0.000000, 0.826434, 0.000000;;, - 137;3; 0.000000, 0.826434, 0.000000;;, - 138;3; 0.000000, 0.826434, 0.000000;;, - 139;3; 0.000000, 0.826434, 0.000000;;, - 140;3; 0.000000, 0.826434, 0.000000;;, - 141;3; 0.000000, 0.826434, 0.000000;;, - 142;3; 0.000000, 0.826434, 0.000000;;, - 143;3; 0.000000, 0.826434, 0.000000;;, - 144;3; 0.000000, 0.826434, 0.000000;;, - 145;3; 0.000000, 0.826434, 0.000000;;, - 146;3; 0.000000, 0.826434, 0.000000;;, - 147;3; 0.000000, 0.826434, 0.000000;;, - 148;3; 0.000000, 0.826434, 0.000000;;, - 149;3; 0.000000, 0.826434, 0.000000;;, - 150;3; 0.000000, 0.826434, 0.000000;;, - 151;3; 0.000000, 0.826434, 0.000000;;, - 152;3; 0.000000, 0.826434, 0.000000;;, - 153;3; 0.000000, 0.826434, 0.000000;;, - 154;3; 0.000000, 0.826434, 0.000000;;, - 155;3; 0.000000, 0.826434, 0.000000;;, - 156;3; 0.000000, 0.826434, 0.000000;;, - 157;3; 0.000000, 0.826434, 0.000000;;, - 158;3; 0.000000, 0.826434, 0.000000;;, - 159;3; 0.000000, 0.826434, 0.000000;;, - 160;3; 0.000000, 0.826434, 0.000000;;, - 161;3; 0.000000, 0.826434, 0.000000;;, - 162;3; 0.000000, 0.826434, 0.000000;;, - 163;3; 0.000000, 0.826434, 0.000000;;, - 164;3; 0.000000, 0.826434, 0.000000;;, - 165;3; 0.000000, 0.826434, 0.000000;;, - 166;3; 0.000000, 0.826434, 0.000000;;, - 167;3; 0.000000, 0.826434, 0.000000;;, - 168;3; 0.000000, 0.826434, 0.000000;;, - 169;3; 0.000000, 0.826434, 0.000000;;, - 170;3; 0.000000, 0.826434, 0.000000;;, - 171;3; 0.000000, 0.826434, 0.000000;;, - 172;3; 0.000000, 0.826434, 0.000000;;, - 173;3; 0.000000, 0.826434, 0.000000;;, - 174;3; 0.000000, 0.826434, 0.000000;;, - 175;3; 0.000000, 0.826434, 0.000000;;, - 176;3; 0.000000, 0.826434, 0.000000;;, - 177;3; 0.000000, 0.826434, 0.000000;;, - 178;3; 0.000000, 0.826434, 0.000000;;, - 179;3; 0.000000, 0.826434, 0.000000;;, - 180;3; 0.000000, 0.826434, 0.000000;;, - 181;3; 0.000000, 0.826434, 0.000000;;, - 182;3; 0.000000, 0.826434, 0.000000;;, - 183;3; 0.000000, 0.826434, 0.000000;;, - 184;3; 0.000000, 0.826434, 0.000000;;, - 185;3; 0.000000, 0.826434, 0.000000;;, - 186;3;-0.000000, 0.826434,-0.000000;;, - 187;3;-0.000000, 0.826434,-0.000000;;, - 188;3;-0.000000, 0.826434, 0.000000;;, - 189;3;-0.000000, 0.826434, 0.000000;;, - 190;3;-0.000000, 0.826434,-0.000000;;, - 191;3; 0.000000, 0.826434, 0.000000;;, - 192;3; 0.000000, 0.826434, 0.000000;;, - 193;3; 0.000000, 0.826434, 0.000000;;, - 194;3; 0.000000, 0.826434,-0.000000;;, - 195;3; 0.000000, 0.826434,-0.000000;;, - 196;3; 0.000000, 0.826434, 0.000000;;, - 197;3; 0.000000, 0.826434,-0.000000;;, - 198;3; 0.000000, 0.826434,-0.000000;;, - 199;3; 0.000000, 0.826434, 0.000000;;, - 200;3; 0.000000, 0.826434, 0.000000;;, - 201;3; 0.000000, 0.826434, 0.000000;;, - 202;3; 0.000000, 0.826434, 0.000000;;, - 203;3; 0.000000, 0.826434, 0.000000;;, - 204;3; 0.000000, 0.826434, 0.000000;;, - 205;3; 0.000000, 0.826434, 0.000000;;, - 206;3; 0.000000, 0.826434, 0.000000;;, - 207;3; 0.000000, 0.826434, 0.000000;;, - 208;3; 0.000000, 0.826434, 0.000000;;, - 209;3; 0.000000, 0.826434, 0.000000;;, - 210;3;-0.000000, 0.826434, 0.000000;;, - 211;3;-0.000000, 0.826434, 0.000000;;, - 212;3; 0.000000, 0.826434,-0.000000;;, - 213;3; 0.000000, 0.826434, 0.000000;;, - 214;3; 0.000000, 0.826434, 0.000000;;, - 215;3;-0.000000, 0.826434,-0.000000;;, - 216;3;-0.000000, 0.826434,-0.000000;;, - 217;3;-0.000000, 0.826434,-0.000000;;, - 218;3;-0.000000, 0.826434, 0.000000;;, - 219;3;-0.000000, 0.826434,-0.000000;;, - 220;3;-0.000000, 0.826434, 0.000000;;, - 221;3; 0.000000, 0.826434, 0.000000;;, - 222;3;-0.000000, 0.826434, 0.000000;;, - 223;3; 0.000000, 0.826434,-0.000000;;, - 224;3; 0.000000, 0.826434,-0.000000;;, - 225;3; 0.000000, 0.826434, 0.000000;;, - 226;3; 0.000000, 0.826434, 0.000000;;, - 227;3; 0.000000, 0.826434, 0.000000;;, - 228;3;-0.000000, 0.826434, 0.000000;;, - 229;3; 0.000000, 0.826434, 0.000000;;, - 230;3; 0.000000, 0.826434, 0.000000;;, - 231;3; 0.000000, 0.826434,-0.000000;;, - 232;3;-0.000000, 0.826434,-0.000000;;, - 233;3; 0.000000, 0.826434, 0.000000;;, - 234;3; 0.000000, 0.826434, 0.000000;;, - 235;3; 0.000000, 0.826434, 0.000000;;, - 236;3; 0.000000, 0.826434, 0.000000;;, - 237;3; 0.000000, 0.826434, 0.000000;;, - 238;3; 0.000000, 0.826434, 0.000000;;, - 239;3; 0.000000, 0.826434, 0.000000;;, - 240;3; 0.000000, 0.826434, 0.000000;;, - 241;3; 0.000000, 0.826434, 0.000000;;, - 242;3; 0.000000, 0.826434, 0.000000;;, - 243;3; 0.000000, 0.826434, 0.000000;;, - 244;3; 0.000000, 0.826434, 0.000000;;, - 245;3; 0.000000, 0.826434, 0.000000;;, - 246;3; 0.000000, 0.826434, 0.000000;;, - 247;3; 0.000000, 0.826434, 0.000000;;, - 248;3; 0.000000, 0.826434, 0.000000;;, - 249;3; 0.000000, 0.826434, 0.000000;;; - } - } - Animation { - {Armature_Bone_019} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.945309, 0.122931, 0.038961, 0.299601;;, - 1;4;-0.945411, 0.122945, 0.038914, 0.299240;;, - 2;4;-0.945721, 0.122985, 0.038772, 0.298147;;, - 3;4;-0.946238, 0.123052, 0.038535, 0.296319;;, - 4;4;-0.946959, 0.123146, 0.038203, 0.293774;;, - 5;4;-0.947872, 0.123265, 0.037784, 0.290547;;, - 6;4;-0.948960, 0.123406, 0.037284, 0.286703;;, - 7;4;-0.950197, 0.123567, 0.036716, 0.282337;;, - 8;4;-0.951546, 0.123743, 0.036096, 0.277570;;, - 9;4;-0.952967, 0.123927, 0.035444, 0.272552;;, - 10;4;-0.954412, 0.124115, 0.034780, 0.267447;;, - 11;4;-0.955833, 0.124300, 0.034127, 0.262429;;, - 12;4;-0.957182, 0.124476, 0.033507, 0.257662;;, - 13;4;-0.958419, 0.124636, 0.032940, 0.253295;;, - 14;4;-0.959507, 0.124778, 0.032440, 0.249452;;, - 15;4;-0.960420, 0.124897, 0.032020, 0.246225;;, - 16;4;-0.961141, 0.124990, 0.031689, 0.243679;;, - 17;4;-0.961658, 0.125058, 0.031451, 0.241852;;, - 18;4;-0.961968, 0.125098, 0.031309, 0.240759;;, - 19;4;-0.962070, 0.125111, 0.031262, 0.240397;;, - 20;4;-0.962066, 0.125107, 0.031275, 0.240492;;, - 21;4;-0.962050, 0.125096, 0.031315, 0.240784;;, - 22;4;-0.962022, 0.125077, 0.031383, 0.241279;;, - 23;4;-0.961978, 0.125049, 0.031480, 0.241986;;, - 24;4;-0.961916, 0.125014, 0.031606, 0.242904;;, - 25;4;-0.961834, 0.124970, 0.031760, 0.244032;;, - 26;4;-0.961730, 0.124919, 0.031942, 0.245361;;, - 27;4;-0.961599, 0.124860, 0.032148, 0.246877;;, - 28;4;-0.961442, 0.124796, 0.032377, 0.248556;;, - 29;4;-0.961256, 0.124726, 0.032623, 0.250372;;, - 30;4;-0.961040, 0.124652, 0.032883, 0.252291;;, - 31;4;-0.960796, 0.124576, 0.033152, 0.254279;;, - 32;4;-0.960523, 0.124499, 0.033424, 0.256298;;, - 33;4;-0.960223, 0.124422, 0.033695, 0.258315;;, - 34;4;-0.959899, 0.124347, 0.033961, 0.260300;;, - 35;4;-0.959552, 0.124274, 0.034218, 0.262226;;, - 36;4;-0.959185, 0.124205, 0.034463, 0.264074;;, - 37;4;-0.958800, 0.124139, 0.034695, 0.265828;;, - 38;4;-0.958400, 0.124078, 0.034911, 0.267477;;, - 39;4;-0.957987, 0.124021, 0.035112, 0.269015;;, - 40;4;-0.957562, 0.123964, 0.035312, 0.270556;;, - 41;4;-0.957125, 0.123903, 0.035529, 0.272216;;, - 42;4;-0.956672, 0.123838, 0.035761, 0.273990;;, - 43;4;-0.956202, 0.123768, 0.036006, 0.275867;;, - 44;4;-0.955712, 0.123695, 0.036263, 0.277833;;, - 45;4;-0.955200, 0.123620, 0.036528, 0.279869;;, - 46;4;-0.954664, 0.123543, 0.036799, 0.281949;;, - 47;4;-0.954100, 0.123466, 0.037072, 0.284043;;, - 48;4;-0.953508, 0.123390, 0.037340, 0.286118;;, - 49;4;-0.952887, 0.123317, 0.037600, 0.288137;;, - 50;4;-0.952236, 0.123247, 0.037847, 0.290065;;, - 51;4;-0.951556, 0.123182, 0.038075, 0.291868;;, - 52;4;-0.950849, 0.123124, 0.038282, 0.293518;;, - 53;4;-0.950115, 0.123072, 0.038463, 0.294990;;, - 54;4;-0.949358, 0.123029, 0.038618, 0.296268;;, - 55;4;-0.948580, 0.122993, 0.038743, 0.297344;;, - 56;4;-0.947784, 0.122966, 0.038840, 0.298212;;, - 57;4;-0.946972, 0.122946, 0.038908, 0.298874;;, - 58;4;-0.946146, 0.122935, 0.038948, 0.299335;;, - 59;4;-0.945309, 0.122931, 0.038961, 0.299601;;, - 60;4;-0.944454, 0.123130, 0.038865, 0.299773;;, - 61;4;-0.943573, 0.123730, 0.038573, 0.299941;;, - 62;4;-0.942667, 0.124736, 0.038084, 0.300107;;, - 63;4;-0.941735, 0.126152, 0.037398, 0.300270;;, - 64;4;-0.940778, 0.127982, 0.036514, 0.300430;;, - 65;4;-0.939796, 0.130225, 0.035433, 0.300587;;, - 66;4;-0.938789, 0.132880, 0.034158, 0.300740;;, - 67;4;-0.937759, 0.135942, 0.032690, 0.300890;;, - 68;4;-0.936707, 0.139406, 0.031037, 0.301036;;, - 69;4;-0.935633, 0.143260, 0.029202, 0.301177;;, - 70;4;-0.934539, 0.147493, 0.027196, 0.301315;;, - 71;4;-0.933428, 0.152086, 0.025027, 0.301448;;, - 72;4;-0.932300, 0.157021, 0.022707, 0.301576;;, - 73;4;-0.931158, 0.162272, 0.020250, 0.301699;;, - 74;4;-0.930005, 0.167812, 0.017671, 0.301818;;, - 75;4;-0.928843, 0.173611, 0.014987, 0.301931;;, - 76;4;-0.927675, 0.179634, 0.012217, 0.302039;;, - 77;4;-0.926505, 0.185844, 0.009379, 0.302143;;, - 78;4;-0.925335, 0.192200, 0.006496, 0.302240;;, - 79;4;-0.924168, 0.198663, 0.003588, 0.302333;;, - 80;4;-0.923008, 0.205189, 0.000678, 0.302421;;, - 81;4;-0.921858, 0.211735,-0.002213, 0.302503;;, - 82;4;-0.920722, 0.218259,-0.005062, 0.302581;;, - 83;4;-0.919601, 0.224719,-0.007850, 0.302653;;, - 84;4;-0.918498, 0.231075,-0.010556, 0.302722;;, - 85;4;-0.917417, 0.237289,-0.013161, 0.302785;;, - 86;4;-0.916360, 0.243327,-0.015649, 0.302845;;, - 87;4;-0.915328, 0.249156,-0.018003, 0.302900;;, - 88;4;-0.914322, 0.254747,-0.020211, 0.302952;;, - 89;4;-0.913346, 0.260075,-0.022260, 0.303000;;, - 90;4;-0.912399, 0.265117,-0.024141, 0.303045;;, - 91;4;-0.911483, 0.269856,-0.025845, 0.303087;;, - 92;4;-0.910599, 0.274275,-0.027365, 0.303126;;, - 93;4;-0.909745, 0.278363,-0.028697, 0.303163;;, - 94;4;-0.908924, 0.282111,-0.029836, 0.303198;;, - 95;4;-0.908135, 0.285510,-0.030781, 0.303230;;, - 96;4;-0.907378, 0.288558,-0.031531, 0.303260;;, - 97;4;-0.906652, 0.291251,-0.032086, 0.303289;;, - 98;4;-0.905957, 0.293589,-0.032445, 0.303316;;, - 99;4;-0.905294, 0.295574,-0.032612, 0.303342;;, - 100;4;-0.904634, 0.297353,-0.031031, 0.302463;;, - 101;4;-0.903960, 0.299054,-0.026082, 0.299766;;, - 102;4;-0.903291, 0.300635,-0.017876, 0.295363;;, - 103;4;-0.902653, 0.302051,-0.006912, 0.289596;;, - 104;4;-0.902075, 0.303262, 0.005858, 0.283057;;, - 105;4;-0.901587, 0.304242, 0.019140, 0.276514;;, - 106;4;-0.901210, 0.304987, 0.031590, 0.270737;;, - 107;4;-0.900950, 0.305518, 0.042121, 0.266318;;, - 108;4;-0.900802, 0.305867, 0.050062, 0.263601;;, - 109;4;-0.900756, 0.306070, 0.055135, 0.262697;;, - 110;4;-0.901904, 0.299828, 0.058819, 0.263254;;, - 111;4;-0.905362, 0.280758, 0.062582, 0.264946;;, - 112;4;-0.910987, 0.249658, 0.066320, 0.267734;;, - 113;4;-0.918345, 0.208929, 0.069889, 0.271447;;, - 114;4;-0.926686, 0.162758, 0.073118, 0.275762;;, - 115;4;-0.935032, 0.116567, 0.075844, 0.280240;;, - 116;4;-0.942409, 0.075781, 0.077956, 0.284427;;, - 117;4;-0.948062, 0.044592, 0.079413, 0.287957;;, - 118;4;-0.951558, 0.025407, 0.080240, 0.290604;;, - 119;4;-0.952750, 0.019031, 0.080499, 0.292276;;, - 120;4;-0.952463, 0.020937, 0.079719, 0.293368;;, - 121;4;-0.951473, 0.026859, 0.077297, 0.294279;;, - 122;4;-0.949759, 0.036917, 0.073183, 0.295002;;, - 123;4;-0.947367, 0.050857, 0.067482, 0.295550;;, - 124;4;-0.944427, 0.067923, 0.060501, 0.295957;;, - 125;4;-0.941152, 0.086910, 0.052736, 0.296277;;, - 126;4;-0.937786, 0.106416, 0.044757, 0.296574;;, - 127;4;-0.934548, 0.125185, 0.037080, 0.296904;;, - 128;4;-0.931597, 0.142316, 0.030073, 0.297308;;, - 129;4;-0.929022, 0.157302, 0.023944, 0.297809;;, - 130;4;-0.926575, 0.171986, 0.017826, 0.298404;;, - 131;4;-0.923991, 0.188253, 0.010853, 0.299076;;, - 132;4;-0.921303, 0.205729, 0.003226, 0.299806;;, - 133;4;-0.918568, 0.223750,-0.004694, 0.300563;;, - 134;4;-0.915865, 0.241387,-0.012407, 0.301301;;, - 135;4;-0.913286, 0.257606,-0.019355, 0.301970;;, - 136;4;-0.910906, 0.271516,-0.025055, 0.302527;;, - 137;4;-0.908773, 0.282560,-0.029208, 0.302946;;, - 138;4;-0.906905, 0.290549,-0.031710, 0.303216;;, - 139;4;-0.905294, 0.295574,-0.032612, 0.303342;;, - 140;4;-0.903822, 0.299054,-0.026082, 0.299771;;, - 141;4;-0.902489, 0.302051,-0.006912, 0.289602;;, - 142;4;-0.901482, 0.304242, 0.019140, 0.276518;;, - 143;4;-0.900918, 0.305518, 0.042121, 0.266320;;, - 144;4;-0.900756, 0.306070, 0.055135, 0.262697;;, - 145;4;-0.905362, 0.280758, 0.062582, 0.264946;;, - 146;4;-0.918345, 0.208929, 0.069889, 0.271447;;, - 147;4;-0.935032, 0.116567, 0.075844, 0.280240;;, - 148;4;-0.948062, 0.044592, 0.079413, 0.287957;;, - 149;4;-0.952750, 0.019031, 0.080499, 0.292276;;, - 150;4;-0.951473, 0.026859, 0.077297, 0.294279;;, - 151;4;-0.947367, 0.050857, 0.067482, 0.295550;;, - 152;4;-0.941152, 0.086910, 0.052736, 0.296277;;, - 153;4;-0.934548, 0.125185, 0.037080, 0.296904;;, - 154;4;-0.929022, 0.157302, 0.023944, 0.297809;;, - 155;4;-0.923510, 0.189420, 0.010807, 0.299094;;, - 156;4;-0.916942, 0.227695,-0.004848, 0.300626;;, - 157;4;-0.910755, 0.263748,-0.019594, 0.302069;;, - 158;4;-0.906637, 0.287746,-0.029410, 0.303029;;, - 159;4;-0.905294, 0.295574,-0.032612, 0.303342;;, - 160;4;-0.905515, 0.295573,-0.032254, 0.303334;;, - 161;4;-0.906183, 0.295508,-0.031172, 0.303306;;, - 162;4;-0.907299, 0.295265,-0.029356, 0.303259;;, - 163;4;-0.908858, 0.294711,-0.026815, 0.303190;;, - 164;4;-0.910838, 0.293688,-0.023573, 0.303098;;, - 165;4;-0.913206, 0.292018,-0.019677, 0.302983;;, - 166;4;-0.915913, 0.289505,-0.015200, 0.302844;;, - 167;4;-0.918893, 0.285950,-0.010241, 0.302681;;, - 168;4;-0.922064, 0.281155,-0.004923, 0.302495;;, - 169;4;-0.925333, 0.274941, 0.000610, 0.302288;;, - 170;4;-0.928602, 0.267159, 0.006205, 0.302061;;, - 171;4;-0.931770, 0.257702, 0.011704, 0.301817;;, - 172;4;-0.934746, 0.246510, 0.016962, 0.301559;;, - 173;4;-0.937448, 0.233572, 0.021846, 0.301291;;, - 174;4;-0.939810, 0.218918, 0.026249, 0.301014;;, - 175;4;-0.941783, 0.202614, 0.030087, 0.300733;;, - 176;4;-0.943333, 0.184753, 0.033305, 0.300449;;, - 177;4;-0.944441, 0.165441, 0.035864, 0.300165;;, - 178;4;-0.945099, 0.144795, 0.037750, 0.299882;;, - 179;4;-0.945309, 0.122931, 0.038961, 0.299601;;, - 180;4;-0.943852, 0.094790, 0.030556, 0.290457;;, - 181;4;-0.939490, 0.055477, 0.003488, 0.263499;;, - 182;4;-0.932404, 0.006299,-0.041099, 0.219851;;, - 183;4;-0.923140,-0.049843,-0.099735, 0.162863;;, - 184;4;-0.912648,-0.108395,-0.166358, 0.098367;;, - 185;4;-0.902158,-0.163831,-0.233103, 0.033910;;, - 186;4;-0.892899,-0.210942,-0.292092,-0.022967;;, - 187;4;-0.885820,-0.245988,-0.337230,-0.066439;;, - 188;4;-0.881466,-0.267112,-0.365009,-0.093171;;, - 189;4;-0.880020,-0.274032,-0.374242,-0.102052;;, - 190;4;-0.889364,-0.269311,-0.351268,-0.099030;;, - 191;4;-0.915797,-0.253212,-0.283640,-0.087668;;, - 192;4;-0.950033,-0.225022,-0.188979,-0.065435;;, - 193;4;-0.977279,-0.188430,-0.100020,-0.033238;;, - 194;4;-0.988008,-0.148841,-0.040751, 0.005235;;, - 195;4;-0.985342,-0.096222,-0.004041, 0.060336;;, - 196;4;-0.974860,-0.022930, 0.021380, 0.139373;;, - 197;4;-0.960654, 0.052382, 0.034457, 0.221748;;, - 198;4;-0.949359, 0.105181, 0.038545, 0.279950;;, - 199;4;-0.945309, 0.122931, 0.038961, 0.299601;;, - 200;4;-0.945309, 0.122931, 0.038961, 0.299601;;, - 201;4;-0.945309, 0.122931, 0.038961, 0.299601;;, - 202;4;-0.945309, 0.122931, 0.038961, 0.299601;;, - 203;4;-0.945309, 0.122931, 0.038961, 0.299601;;, - 204;4;-0.945309, 0.122931, 0.038961, 0.299601;;, - 205;4;-0.945309, 0.122931, 0.038961, 0.299601;;, - 206;4;-0.945309, 0.122931, 0.038961, 0.299601;;, - 207;4;-0.945309, 0.122931, 0.038961, 0.299601;;, - 208;4;-0.945309, 0.122931, 0.038961, 0.299601;;, - 209;4;-0.945309, 0.122931, 0.038961, 0.299601;;, - 210;4;-0.945465, 0.107369, 0.010811, 0.265085;;, - 211;4;-0.945905, 0.060065,-0.068344, 0.167862;;, - 212;4;-0.946469,-0.009981,-0.169615, 0.043029;;, - 213;4;-0.946909,-0.082653,-0.247780,-0.054193;;, - 214;4;-0.947065,-0.141378,-0.274245,-0.088710;;, - 215;4;-0.941994,-0.195997,-0.222898,-0.075110;;, - 216;4;-0.927709,-0.257101,-0.081890,-0.036802;;, - 217;4;-0.909367,-0.312295, 0.098255, 0.012384;;, - 218;4;-0.895082,-0.348032, 0.238273, 0.050691;;, - 219;4;-0.890010,-0.359488, 0.287935, 0.064292;;, - 220;4;-0.897110,-0.350085, 0.260848, 0.046817;;, - 221;4;-0.917105,-0.321656, 0.184477,-0.002405;;, - 222;4;-0.942780,-0.279935, 0.086214,-0.065605;;, - 223;4;-0.962776,-0.237284, 0.009288,-0.114826;;, - 224;4;-0.969875,-0.203684,-0.018743,-0.132301;;, - 225;4;-0.969634,-0.175435,-0.019154,-0.128061;;, - 226;4;-0.968905,-0.145913,-0.018215,-0.115241;;, - 227;4;-0.967692,-0.115400,-0.015927,-0.093910;;, - 228;4;-0.966019,-0.084305,-0.012345,-0.064512;;, - 229;4;-0.963941,-0.053178,-0.007600,-0.027974;;, - 230;4;-0.961541,-0.022699,-0.001906, 0.014227;;, - 231;4;-0.958932, 0.006365, 0.004440, 0.060086;;, - 232;4;-0.956252, 0.033233, 0.011079, 0.107214;;, - 233;4;-0.953643, 0.057202, 0.017625, 0.153073;;, - 234;4;-0.951243, 0.077723, 0.023708, 0.195274;;, - 235;4;-0.949165, 0.094448, 0.029015, 0.231812;;, - 236;4;-0.947493, 0.107238, 0.033311, 0.261210;;, - 237;4;-0.946279, 0.116126, 0.036444, 0.282541;;, - 238;4;-0.945550, 0.121276, 0.038334, 0.295361;;, - 239;4;-0.945309, 0.122931, 0.038961, 0.299601;;, - 240;4;-0.945309, 0.122931, 0.038961, 0.299601;;, - 241;4;-0.945309, 0.122931, 0.038961, 0.299601;;, - 242;4;-0.945309, 0.122931, 0.038961, 0.299601;;, - 243;4;-0.945309, 0.122931, 0.038961, 0.299601;;, - 244;4;-0.945309, 0.122931, 0.038961, 0.299601;;, - 245;4;-0.945309, 0.122931, 0.038961, 0.299601;;, - 246;4;-0.945309, 0.122931, 0.038961, 0.299601;;, - 247;4;-0.945309, 0.122931, 0.038961, 0.299601;;, - 248;4;-0.945309, 0.122931, 0.038961, 0.299601;;, - 249;4;-0.945309, 0.122931, 0.038961, 0.299601;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3;-0.000000, 0.592826,-0.000000;;, - 1;3;-0.000000, 0.592826,-0.000000;;, - 2;3;-0.000000, 0.592826,-0.000000;;, - 3;3;-0.000000, 0.592826,-0.000000;;, - 4;3;-0.000000, 0.592826,-0.000000;;, - 5;3;-0.000000, 0.592826,-0.000000;;, - 6;3;-0.000000, 0.592826,-0.000000;;, - 7;3;-0.000000, 0.592826,-0.000000;;, - 8;3;-0.000000, 0.592826,-0.000000;;, - 9;3;-0.000000, 0.592826,-0.000000;;, - 10;3;-0.000000, 0.592826,-0.000000;;, - 11;3;-0.000000, 0.592826,-0.000000;;, - 12;3;-0.000000, 0.592826,-0.000000;;, - 13;3;-0.000000, 0.592826,-0.000000;;, - 14;3;-0.000000, 0.592826,-0.000000;;, - 15;3;-0.000000, 0.592826,-0.000000;;, - 16;3;-0.000000, 0.592826,-0.000000;;, - 17;3;-0.000000, 0.592826,-0.000000;;, - 18;3;-0.000000, 0.592826,-0.000000;;, - 19;3;-0.000000, 0.592826,-0.000000;;, - 20;3;-0.000000, 0.592826,-0.000000;;, - 21;3;-0.000000, 0.592826,-0.000000;;, - 22;3;-0.000000, 0.592826,-0.000000;;, - 23;3;-0.000000, 0.592826,-0.000000;;, - 24;3;-0.000000, 0.592826,-0.000000;;, - 25;3;-0.000000, 0.592826,-0.000000;;, - 26;3;-0.000000, 0.592826,-0.000000;;, - 27;3;-0.000000, 0.592826,-0.000000;;, - 28;3;-0.000000, 0.592826,-0.000000;;, - 29;3;-0.000000, 0.592826,-0.000000;;, - 30;3;-0.000000, 0.592826,-0.000000;;, - 31;3;-0.000000, 0.592826,-0.000000;;, - 32;3;-0.000000, 0.592826,-0.000000;;, - 33;3;-0.000000, 0.592826,-0.000000;;, - 34;3;-0.000000, 0.592826,-0.000000;;, - 35;3;-0.000000, 0.592826,-0.000000;;, - 36;3;-0.000000, 0.592826,-0.000000;;, - 37;3;-0.000000, 0.592826,-0.000000;;, - 38;3;-0.000000, 0.592826,-0.000000;;, - 39;3;-0.000000, 0.592826,-0.000000;;, - 40;3;-0.000000, 0.592826,-0.000000;;, - 41;3;-0.000000, 0.592826,-0.000000;;, - 42;3;-0.000000, 0.592826,-0.000000;;, - 43;3;-0.000000, 0.592826,-0.000000;;, - 44;3;-0.000000, 0.592826,-0.000000;;, - 45;3;-0.000000, 0.592826,-0.000000;;, - 46;3;-0.000000, 0.592826,-0.000000;;, - 47;3;-0.000000, 0.592826,-0.000000;;, - 48;3;-0.000000, 0.592826,-0.000000;;, - 49;3;-0.000000, 0.592826,-0.000000;;, - 50;3;-0.000000, 0.592826,-0.000000;;, - 51;3;-0.000000, 0.592826,-0.000000;;, - 52;3;-0.000000, 0.592826,-0.000000;;, - 53;3;-0.000000, 0.592826,-0.000000;;, - 54;3;-0.000000, 0.592826,-0.000000;;, - 55;3;-0.000000, 0.592826,-0.000000;;, - 56;3;-0.000000, 0.592826,-0.000000;;, - 57;3;-0.000000, 0.592826,-0.000000;;, - 58;3;-0.000000, 0.592826,-0.000000;;, - 59;3;-0.000000, 0.592826,-0.000000;;, - 60;3;-0.000000, 0.592826,-0.000000;;, - 61;3;-0.000000, 0.592826,-0.000000;;, - 62;3;-0.000000, 0.592826,-0.000000;;, - 63;3;-0.000000, 0.592826,-0.000000;;, - 64;3;-0.000000, 0.592826,-0.000000;;, - 65;3;-0.000000, 0.592826,-0.000000;;, - 66;3;-0.000000, 0.592826,-0.000000;;, - 67;3;-0.000000, 0.592826,-0.000000;;, - 68;3;-0.000000, 0.592826,-0.000000;;, - 69;3;-0.000000, 0.592826,-0.000000;;, - 70;3;-0.000000, 0.592826,-0.000000;;, - 71;3;-0.000000, 0.592826,-0.000000;;, - 72;3;-0.000000, 0.592826,-0.000000;;, - 73;3;-0.000000, 0.592826,-0.000000;;, - 74;3;-0.000000, 0.592826,-0.000000;;, - 75;3;-0.000000, 0.592826,-0.000000;;, - 76;3;-0.000000, 0.592826,-0.000000;;, - 77;3;-0.000000, 0.592826,-0.000000;;, - 78;3;-0.000000, 0.592826,-0.000000;;, - 79;3;-0.000000, 0.592826,-0.000000;;, - 80;3;-0.000000, 0.592826,-0.000000;;, - 81;3;-0.000000, 0.592826,-0.000000;;, - 82;3;-0.000000, 0.592826,-0.000000;;, - 83;3;-0.000000, 0.592826,-0.000000;;, - 84;3;-0.000000, 0.592826,-0.000000;;, - 85;3;-0.000000, 0.592826,-0.000000;;, - 86;3;-0.000000, 0.592826,-0.000000;;, - 87;3;-0.000000, 0.592826,-0.000000;;, - 88;3;-0.000000, 0.592826,-0.000000;;, - 89;3;-0.000000, 0.592826,-0.000000;;, - 90;3;-0.000000, 0.592826,-0.000000;;, - 91;3;-0.000000, 0.592826,-0.000000;;, - 92;3;-0.000000, 0.592826,-0.000000;;, - 93;3;-0.000000, 0.592826,-0.000000;;, - 94;3;-0.000000, 0.592826,-0.000000;;, - 95;3;-0.000000, 0.592826,-0.000000;;, - 96;3;-0.000000, 0.592826,-0.000000;;, - 97;3;-0.000000, 0.592826,-0.000000;;, - 98;3;-0.000000, 0.592826,-0.000000;;, - 99;3;-0.000000, 0.592826,-0.000000;;, - 100;3;-0.000000, 0.592826,-0.000000;;, - 101;3;-0.000000, 0.592826,-0.000000;;, - 102;3;-0.000000, 0.592826,-0.000000;;, - 103;3;-0.000000, 0.592826,-0.000000;;, - 104;3;-0.000000, 0.592826,-0.000000;;, - 105;3;-0.000000, 0.592826,-0.000000;;, - 106;3;-0.000000, 0.592826,-0.000000;;, - 107;3;-0.000000, 0.592826,-0.000000;;, - 108;3;-0.000000, 0.592826,-0.000000;;, - 109;3;-0.000000, 0.592826,-0.000000;;, - 110;3;-0.000000, 0.592826,-0.000000;;, - 111;3;-0.000000, 0.592826,-0.000000;;, - 112;3;-0.000000, 0.592826,-0.000000;;, - 113;3;-0.000000, 0.592826,-0.000000;;, - 114;3;-0.000000, 0.592826,-0.000000;;, - 115;3;-0.000000, 0.592826,-0.000000;;, - 116;3;-0.000000, 0.592826,-0.000000;;, - 117;3;-0.000000, 0.592826,-0.000000;;, - 118;3;-0.000000, 0.592826,-0.000000;;, - 119;3;-0.000000, 0.592826,-0.000000;;, - 120;3;-0.000000, 0.592826,-0.000000;;, - 121;3;-0.000000, 0.592826,-0.000000;;, - 122;3;-0.000000, 0.592826,-0.000000;;, - 123;3;-0.000000, 0.592826,-0.000000;;, - 124;3;-0.000000, 0.592826,-0.000000;;, - 125;3;-0.000000, 0.592826,-0.000000;;, - 126;3;-0.000000, 0.592826,-0.000000;;, - 127;3;-0.000000, 0.592826,-0.000000;;, - 128;3;-0.000000, 0.592826,-0.000000;;, - 129;3;-0.000000, 0.592826,-0.000000;;, - 130;3;-0.000000, 0.592826,-0.000000;;, - 131;3;-0.000000, 0.592826,-0.000000;;, - 132;3;-0.000000, 0.592826,-0.000000;;, - 133;3;-0.000000, 0.592826,-0.000000;;, - 134;3;-0.000000, 0.592826,-0.000000;;, - 135;3;-0.000000, 0.592826,-0.000000;;, - 136;3;-0.000000, 0.592826,-0.000000;;, - 137;3;-0.000000, 0.592826,-0.000000;;, - 138;3;-0.000000, 0.592826,-0.000000;;, - 139;3;-0.000000, 0.592826,-0.000000;;, - 140;3;-0.000000, 0.592826,-0.000000;;, - 141;3;-0.000000, 0.592826,-0.000000;;, - 142;3;-0.000000, 0.592826,-0.000000;;, - 143;3;-0.000000, 0.592826,-0.000000;;, - 144;3;-0.000000, 0.592826,-0.000000;;, - 145;3;-0.000000, 0.592826,-0.000000;;, - 146;3;-0.000000, 0.592826,-0.000000;;, - 147;3;-0.000000, 0.592826,-0.000000;;, - 148;3;-0.000000, 0.592826,-0.000000;;, - 149;3;-0.000000, 0.592826,-0.000000;;, - 150;3;-0.000000, 0.592826,-0.000000;;, - 151;3;-0.000000, 0.592826,-0.000000;;, - 152;3;-0.000000, 0.592826,-0.000000;;, - 153;3;-0.000000, 0.592826,-0.000000;;, - 154;3;-0.000000, 0.592826,-0.000000;;, - 155;3;-0.000000, 0.592826,-0.000000;;, - 156;3;-0.000000, 0.592826,-0.000000;;, - 157;3;-0.000000, 0.592826,-0.000000;;, - 158;3;-0.000000, 0.592826,-0.000000;;, - 159;3;-0.000000, 0.592826,-0.000000;;, - 160;3;-0.000000, 0.592826,-0.000000;;, - 161;3;-0.000000, 0.592826,-0.000000;;, - 162;3;-0.000000, 0.592826,-0.000000;;, - 163;3;-0.000000, 0.592826,-0.000000;;, - 164;3;-0.000000, 0.592826,-0.000000;;, - 165;3;-0.000000, 0.592826,-0.000000;;, - 166;3;-0.000000, 0.592826,-0.000000;;, - 167;3;-0.000000, 0.592826,-0.000000;;, - 168;3;-0.000000, 0.592826,-0.000000;;, - 169;3;-0.000000, 0.592826,-0.000000;;, - 170;3;-0.000000, 0.592826,-0.000000;;, - 171;3;-0.000000, 0.592826,-0.000000;;, - 172;3;-0.000000, 0.592826,-0.000000;;, - 173;3;-0.000000, 0.592826,-0.000000;;, - 174;3;-0.000000, 0.592826,-0.000000;;, - 175;3;-0.000000, 0.592826,-0.000000;;, - 176;3;-0.000000, 0.592826,-0.000000;;, - 177;3;-0.000000, 0.592826,-0.000000;;, - 178;3;-0.000000, 0.592826,-0.000000;;, - 179;3;-0.000000, 0.592826,-0.000000;;, - 180;3;-0.000000, 0.592826, 0.000000;;, - 181;3;-0.000000, 0.592826, 0.000000;;, - 182;3;-0.000000, 0.592826,-0.000000;;, - 183;3;-0.000000, 0.592826, 0.000000;;, - 184;3; 0.000000, 0.592826,-0.000000;;, - 185;3;-0.000000, 0.592826, 0.000000;;, - 186;3; 0.000000, 0.592826,-0.000000;;, - 187;3;-0.000000, 0.592826, 0.000000;;, - 188;3; 0.000000, 0.592826, 0.000000;;, - 189;3; 0.000000, 0.592826, 0.000000;;, - 190;3;-0.000000, 0.592826,-0.000000;;, - 191;3; 0.000000, 0.592826,-0.000000;;, - 192;3; 0.000000, 0.592826,-0.000000;;, - 193;3;-0.000000, 0.592826, 0.000000;;, - 194;3;-0.000000, 0.592826,-0.000000;;, - 195;3; 0.000000, 0.592826,-0.000000;;, - 196;3;-0.000000, 0.592826,-0.000000;;, - 197;3; 0.000000, 0.592826, 0.000000;;, - 198;3; 0.000000, 0.592826,-0.000000;;, - 199;3;-0.000000, 0.592826,-0.000000;;, - 200;3;-0.000000, 0.592826,-0.000000;;, - 201;3;-0.000000, 0.592826,-0.000000;;, - 202;3;-0.000000, 0.592826,-0.000000;;, - 203;3;-0.000000, 0.592826,-0.000000;;, - 204;3;-0.000000, 0.592826,-0.000000;;, - 205;3;-0.000000, 0.592826,-0.000000;;, - 206;3;-0.000000, 0.592826,-0.000000;;, - 207;3;-0.000000, 0.592826,-0.000000;;, - 208;3;-0.000000, 0.592826,-0.000000;;, - 209;3;-0.000000, 0.592826,-0.000000;;, - 210;3;-0.000000, 0.592826, 0.000000;;, - 211;3;-0.000000, 0.592826, 0.000000;;, - 212;3;-0.000000, 0.592826, 0.000000;;, - 213;3;-0.000000, 0.592826,-0.000000;;, - 214;3;-0.000000, 0.592826, 0.000000;;, - 215;3;-0.000000, 0.592826,-0.000000;;, - 216;3;-0.000000, 0.592826, 0.000000;;, - 217;3;-0.000000, 0.592826, 0.000000;;, - 218;3;-0.000000, 0.592826, 0.000000;;, - 219;3;-0.000000, 0.592826,-0.000000;;, - 220;3;-0.000000, 0.592826, 0.000000;;, - 221;3;-0.000000, 0.592826, 0.000000;;, - 222;3; 0.000000, 0.592826,-0.000000;;, - 223;3;-0.000000, 0.592826,-0.000000;;, - 224;3; 0.000000, 0.592826, 0.000000;;, - 225;3; 0.000000, 0.592826,-0.000000;;, - 226;3;-0.000000, 0.592826,-0.000000;;, - 227;3;-0.000000, 0.592826, 0.000000;;, - 228;3; 0.000000, 0.592826, 0.000000;;, - 229;3; 0.000000, 0.592826,-0.000000;;, - 230;3;-0.000000, 0.592826,-0.000000;;, - 231;3; 0.000000, 0.592826,-0.000000;;, - 232;3; 0.000000, 0.592826, 0.000000;;, - 233;3;-0.000000, 0.592826, 0.000000;;, - 234;3; 0.000000, 0.592826, 0.000000;;, - 235;3; 0.000000, 0.592826,-0.000000;;, - 236;3; 0.000000, 0.592826,-0.000000;;, - 237;3;-0.000000, 0.592826,-0.000000;;, - 238;3; 0.000000, 0.592826, 0.000000;;, - 239;3;-0.000000, 0.592826,-0.000000;;, - 240;3;-0.000000, 0.592826,-0.000000;;, - 241;3;-0.000000, 0.592826,-0.000000;;, - 242;3;-0.000000, 0.592826,-0.000000;;, - 243;3;-0.000000, 0.592826,-0.000000;;, - 244;3;-0.000000, 0.592826,-0.000000;;, - 245;3;-0.000000, 0.592826,-0.000000;;, - 246;3;-0.000000, 0.592826,-0.000000;;, - 247;3;-0.000000, 0.592826,-0.000000;;, - 248;3;-0.000000, 0.592826,-0.000000;;, - 249;3;-0.000000, 0.592826,-0.000000;;; - } - } - Animation { - {Armature_Bone_023} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 1;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 2;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 3;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 4;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 5;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 6;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 7;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 8;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 9;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 10;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 11;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 12;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 13;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 14;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 15;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 16;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 17;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 18;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 19;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 20;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 21;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 22;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 23;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 24;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 25;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 26;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 27;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 28;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 29;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 30;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 31;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 32;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 33;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 34;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 35;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 36;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 37;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 38;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 39;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 40;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 41;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 42;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 43;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 44;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 45;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 46;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 47;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 48;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 49;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 50;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 51;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 52;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 53;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 54;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 55;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 56;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 57;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 58;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 59;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 60;4;-0.987429,-0.157259, 0.000184,-0.000183;;, - 61;4;-0.986807,-0.158733, 0.000741,-0.000734;;, - 62;4;-0.985765,-0.161200, 0.001672,-0.001656;;, - 63;4;-0.984303,-0.164666, 0.002980,-0.002952;;, - 64;4;-0.982419,-0.169130, 0.004664,-0.004621;;, - 65;4;-0.980116,-0.174587, 0.006723,-0.006661;;, - 66;4;-0.977398,-0.181026, 0.009153,-0.009068;;, - 67;4;-0.974273,-0.188429, 0.011947,-0.011836;;, - 68;4;-0.970752,-0.196773, 0.015096,-0.014955;;, - 69;4;-0.966848,-0.206023, 0.018587,-0.018414;;, - 70;4;-0.962579,-0.216138, 0.022404,-0.022195;;, - 71;4;-0.957966,-0.227068, 0.026528,-0.026282;;, - 72;4;-0.953034,-0.238753, 0.030938,-0.030650;;, - 73;4;-0.947813,-0.251124, 0.035606,-0.035275;;, - 74;4;-0.942335,-0.264104, 0.040505,-0.040128;;, - 75;4;-0.936637,-0.277605, 0.045600,-0.045175;;, - 76;4;-0.930758,-0.291534, 0.050856,-0.050383;;, - 77;4;-0.924742,-0.305790, 0.056236,-0.055712;;, - 78;4;-0.918632,-0.320267, 0.061699,-0.061125;;, - 79;4;-0.912475,-0.334855, 0.067204,-0.066579;;, - 80;4;-0.906318,-0.349444, 0.072709,-0.072033;;, - 81;4;-0.900208,-0.363921, 0.078173,-0.077445;;, - 82;4;-0.894191,-0.378177, 0.083552,-0.082775;;, - 83;4;-0.888312,-0.392106, 0.088809,-0.087982;;, - 84;4;-0.882614,-0.405607, 0.093904,-0.093030;;, - 85;4;-0.877136,-0.418587, 0.098802,-0.097882;;, - 86;4;-0.871915,-0.430958, 0.103470,-0.102507;;, - 87;4;-0.866983,-0.442643, 0.107880,-0.106876;;, - 88;4;-0.862370,-0.453573, 0.112005,-0.110962;;, - 89;4;-0.858101,-0.463688, 0.115822,-0.114744;;, - 90;4;-0.854197,-0.472938, 0.119312,-0.118202;;, - 91;4;-0.850676,-0.481282, 0.122461,-0.121321;;, - 92;4;-0.847551,-0.488685, 0.125255,-0.124089;;, - 93;4;-0.844834,-0.495124, 0.127685,-0.126497;;, - 94;4;-0.842531,-0.500581, 0.129744,-0.128537;;, - 95;4;-0.840647,-0.505045, 0.131429,-0.130206;;, - 96;4;-0.839184,-0.508511, 0.132736,-0.131501;;, - 97;4;-0.838143,-0.510978, 0.133668,-0.132424;;, - 98;4;-0.837521,-0.512452, 0.134224,-0.132975;;, - 99;4;-0.837314,-0.512941, 0.134408,-0.133158;;, - 100;4;-0.838389,-0.510157, 0.133209,-0.132212;;, - 101;4;-0.841728,-0.501509, 0.129484,-0.129275;;, - 102;4;-0.847399,-0.486818, 0.123155,-0.124285;;, - 103;4;-0.855259,-0.466458, 0.114385,-0.117371;;, - 104;4;-0.864882,-0.441532, 0.103647,-0.108905;;, - 105;4;-0.875587,-0.413802, 0.091702,-0.099487;;, - 106;4;-0.886586,-0.385312, 0.079429,-0.089811;;, - 107;4;-0.897168,-0.357900, 0.067621,-0.080501;;, - 108;4;-0.906828,-0.332878, 0.056843,-0.072003;;, - 109;4;-0.915278,-0.310990, 0.047414,-0.064569;;, - 110;4;-0.923728,-0.289102, 0.037985,-0.057135;;, - 111;4;-0.933387,-0.264081, 0.027207,-0.048637;;, - 112;4;-0.943970,-0.236668, 0.015398,-0.039327;;, - 113;4;-0.954968,-0.208178, 0.003126,-0.029651;;, - 114;4;-0.965673,-0.180448,-0.008820,-0.020233;;, - 115;4;-0.975296,-0.155522,-0.019557,-0.011767;;, - 116;4;-0.983156,-0.135162,-0.028328,-0.004852;;, - 117;4;-0.988828,-0.120471,-0.034656, 0.000137;;, - 118;4;-0.992166,-0.111823,-0.038381, 0.003074;;, - 119;4;-0.993241,-0.109039,-0.039581, 0.004020;;, - 120;4;-0.992166,-0.111823,-0.038381, 0.003074;;, - 121;4;-0.988828,-0.120471,-0.034656, 0.000137;;, - 122;4;-0.983156,-0.135162,-0.028328,-0.004852;;, - 123;4;-0.975296,-0.155522,-0.019557,-0.011767;;, - 124;4;-0.965674,-0.180448,-0.008820,-0.020233;;, - 125;4;-0.954968,-0.208178, 0.003126,-0.029651;;, - 126;4;-0.943970,-0.236668, 0.015398,-0.039327;;, - 127;4;-0.933387,-0.264081, 0.027207,-0.048637;;, - 128;4;-0.923728,-0.289102, 0.037985,-0.057135;;, - 129;4;-0.915278,-0.310990, 0.047414,-0.064569;;, - 130;4;-0.906828,-0.332878, 0.056843,-0.072003;;, - 131;4;-0.897168,-0.357900, 0.067621,-0.080501;;, - 132;4;-0.886586,-0.385312, 0.079429,-0.089811;;, - 133;4;-0.875587,-0.413802, 0.091702,-0.099487;;, - 134;4;-0.864882,-0.441532, 0.103647,-0.108905;;, - 135;4;-0.855259,-0.466458, 0.114385,-0.117371;;, - 136;4;-0.847399,-0.486818, 0.123155,-0.124285;;, - 137;4;-0.841728,-0.501509, 0.129484,-0.129275;;, - 138;4;-0.838389,-0.510157, 0.133209,-0.132212;;, - 139;4;-0.837314,-0.512941, 0.134408,-0.133158;;, - 140;4;-0.841728,-0.501509, 0.129484,-0.129275;;, - 141;4;-0.855259,-0.466458, 0.114385,-0.117371;;, - 142;4;-0.875587,-0.413802, 0.091702,-0.099487;;, - 143;4;-0.897168,-0.357900, 0.067621,-0.080501;;, - 144;4;-0.915278,-0.310990, 0.047414,-0.064569;;, - 145;4;-0.933387,-0.264081, 0.027207,-0.048637;;, - 146;4;-0.954968,-0.208178, 0.003126,-0.029651;;, - 147;4;-0.975296,-0.155522,-0.019557,-0.011767;;, - 148;4;-0.988828,-0.120471,-0.034656, 0.000137;;, - 149;4;-0.993241,-0.109039,-0.039581, 0.004020;;, - 150;4;-0.988828,-0.120471,-0.034656, 0.000137;;, - 151;4;-0.975296,-0.155522,-0.019557,-0.011767;;, - 152;4;-0.954968,-0.208178, 0.003126,-0.029651;;, - 153;4;-0.933387,-0.264081, 0.027207,-0.048637;;, - 154;4;-0.915278,-0.310990, 0.047414,-0.064569;;, - 155;4;-0.897168,-0.357900, 0.067621,-0.080501;;, - 156;4;-0.875587,-0.413802, 0.091702,-0.099487;;, - 157;4;-0.855259,-0.466458, 0.114385,-0.117371;;, - 158;4;-0.841728,-0.501509, 0.129484,-0.129275;;, - 159;4;-0.837314,-0.512941, 0.134408,-0.133158;;, - 160;4;-0.838143,-0.510978, 0.133668,-0.132424;;, - 161;4;-0.840647,-0.505045, 0.131429,-0.130206;;, - 162;4;-0.844834,-0.495124, 0.127685,-0.126497;;, - 163;4;-0.850676,-0.481282, 0.122461,-0.121321;;, - 164;4;-0.858101,-0.463688, 0.115822,-0.114744;;, - 165;4;-0.866983,-0.442643, 0.107880,-0.106876;;, - 166;4;-0.877136,-0.418587, 0.098802,-0.097882;;, - 167;4;-0.888312,-0.392106, 0.088809,-0.087982;;, - 168;4;-0.900208,-0.363921, 0.078173,-0.077445;;, - 169;4;-0.912475,-0.334855, 0.067204,-0.066579;;, - 170;4;-0.924742,-0.305790, 0.056236,-0.055712;;, - 171;4;-0.936637,-0.277605, 0.045600,-0.045175;;, - 172;4;-0.947813,-0.251124, 0.035606,-0.035275;;, - 173;4;-0.957966,-0.227068, 0.026528,-0.026281;;, - 174;4;-0.966848,-0.206023, 0.018587,-0.018414;;, - 175;4;-0.974273,-0.188429, 0.011947,-0.011836;;, - 176;4;-0.980116,-0.174587, 0.006723,-0.006661;;, - 177;4;-0.984303,-0.164666, 0.002980,-0.002952;;, - 178;4;-0.986807,-0.158733, 0.000741,-0.000734;;, - 179;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 180;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 181;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 182;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 183;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 184;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 185;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 186;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 187;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 188;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 189;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 190;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 191;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 192;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 193;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 194;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 195;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 196;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 197;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 198;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 199;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 200;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 201;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 202;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 203;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 204;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 205;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 206;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 207;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 208;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 209;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 210;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 211;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 212;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 213;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 214;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 215;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 216;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 217;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 218;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 219;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 220;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 221;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 222;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 223;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 224;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 225;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 226;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 227;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 228;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 229;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 230;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 231;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 232;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 233;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 234;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 235;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 236;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 237;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 238;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 239;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 240;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 241;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 242;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 243;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 244;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 245;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 246;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 247;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 248;4;-0.987635,-0.156770,-0.000000,-0.000000;;, - 249;4;-0.987635,-0.156770,-0.000000,-0.000000;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3;-0.000000, 1.294481,-0.000000;;, - 1;3; 0.000000, 1.294481,-0.000000;;, - 2;3; 0.000000, 1.294482,-0.000000;;, - 3;3;-0.000000, 1.294482,-0.000000;;, - 4;3; 0.000000, 1.294481, 0.000000;;, - 5;3; 0.000000, 1.294482,-0.000000;;, - 6;3;-0.000000, 1.294482, 0.000000;;, - 7;3; 0.000000, 1.294482,-0.000000;;, - 8;3;-0.000000, 1.294482,-0.000000;;, - 9;3;-0.000000, 1.294482,-0.000000;;, - 10;3; 0.000000, 1.294482,-0.000000;;, - 11;3;-0.000000, 1.294482, 0.000000;;, - 12;3;-0.000000, 1.294482,-0.000000;;, - 13;3; 0.000000, 1.294482,-0.000000;;, - 14;3;-0.000000, 1.294482,-0.000000;;, - 15;3;-0.000000, 1.294482,-0.000000;;, - 16;3;-0.000000, 1.294482,-0.000000;;, - 17;3;-0.000000, 1.294482, 0.000000;;, - 18;3;-0.000000, 1.294482, 0.000000;;, - 19;3; 0.000000, 1.294482,-0.000000;;, - 20;3;-0.000000, 1.294482,-0.000000;;, - 21;3; 0.000000, 1.294481, 0.000000;;, - 22;3; 0.000000, 1.294481, 0.000000;;, - 23;3;-0.000000, 1.294482,-0.000000;;, - 24;3; 0.000000, 1.294482, 0.000000;;, - 25;3;-0.000000, 1.294482, 0.000000;;, - 26;3; 0.000000, 1.294482,-0.000000;;, - 27;3;-0.000000, 1.294482, 0.000000;;, - 28;3; 0.000000, 1.294481, 0.000000;;, - 29;3;-0.000000, 1.294482,-0.000000;;, - 30;3; 0.000000, 1.294481,-0.000000;;, - 31;3; 0.000000, 1.294482,-0.000000;;, - 32;3; 0.000000, 1.294482,-0.000000;;, - 33;3; 0.000000, 1.294482, 0.000000;;, - 34;3;-0.000000, 1.294482, 0.000000;;, - 35;3;-0.000000, 1.294481, 0.000000;;, - 36;3;-0.000000, 1.294482,-0.000000;;, - 37;3;-0.000000, 1.294482,-0.000000;;, - 38;3;-0.000000, 1.294482,-0.000000;;, - 39;3;-0.000000, 1.294482, 0.000000;;, - 40;3; 0.000000, 1.294481,-0.000000;;, - 41;3; 0.000000, 1.294481, 0.000000;;, - 42;3; 0.000000, 1.294481,-0.000000;;, - 43;3; 0.000000, 1.294481, 0.000000;;, - 44;3; 0.000000, 1.294482,-0.000000;;, - 45;3;-0.000000, 1.294482,-0.000000;;, - 46;3;-0.000000, 1.294481,-0.000000;;, - 47;3;-0.000000, 1.294482,-0.000000;;, - 48;3; 0.000000, 1.294482,-0.000000;;, - 49;3;-0.000000, 1.294482, 0.000000;;, - 50;3; 0.000000, 1.294481,-0.000000;;, - 51;3;-0.000000, 1.294482,-0.000000;;, - 52;3;-0.000000, 1.294482, 0.000000;;, - 53;3; 0.000000, 1.294481,-0.000000;;, - 54;3; 0.000000, 1.294482,-0.000000;;, - 55;3; 0.000000, 1.294482, 0.000000;;, - 56;3;-0.000000, 1.294482,-0.000000;;, - 57;3; 0.000000, 1.294481,-0.000000;;, - 58;3;-0.000000, 1.294482,-0.000000;;, - 59;3;-0.000000, 1.294481,-0.000000;;, - 60;3;-0.000000, 1.294481,-0.000000;;, - 61;3;-0.000000, 1.294482, 0.000000;;, - 62;3; 0.000000, 1.294481,-0.000000;;, - 63;3;-0.000000, 1.294482,-0.000000;;, - 64;3;-0.000000, 1.294482,-0.000000;;, - 65;3; 0.000000, 1.294482,-0.000000;;, - 66;3; 0.000000, 1.294482,-0.000000;;, - 67;3;-0.000000, 1.294482,-0.000000;;, - 68;3;-0.000000, 1.294482, 0.000000;;, - 69;3;-0.000000, 1.294482,-0.000000;;, - 70;3; 0.000000, 1.294482, 0.000000;;, - 71;3; 0.000000, 1.294481, 0.000000;;, - 72;3; 0.000000, 1.294481,-0.000000;;, - 73;3;-0.000000, 1.294482, 0.000000;;, - 74;3;-0.000000, 1.294481, 0.000000;;, - 75;3;-0.000000, 1.294482,-0.000000;;, - 76;3;-0.000000, 1.294482, 0.000000;;, - 77;3; 0.000000, 1.294482,-0.000000;;, - 78;3; 0.000000, 1.294481,-0.000000;;, - 79;3; 0.000000, 1.294482, 0.000000;;, - 80;3;-0.000000, 1.294482,-0.000000;;, - 81;3;-0.000000, 1.294481,-0.000000;;, - 82;3;-0.000000, 1.294482,-0.000000;;, - 83;3;-0.000000, 1.294481,-0.000000;;, - 84;3;-0.000000, 1.294482, 0.000000;;, - 85;3;-0.000000, 1.294482,-0.000000;;, - 86;3;-0.000000, 1.294482,-0.000000;;, - 87;3;-0.000000, 1.294482,-0.000000;;, - 88;3; 0.000000, 1.294482,-0.000000;;, - 89;3;-0.000000, 1.294481,-0.000000;;, - 90;3;-0.000000, 1.294481,-0.000000;;, - 91;3; 0.000000, 1.294482,-0.000000;;, - 92;3;-0.000000, 1.294481,-0.000000;;, - 93;3;-0.000000, 1.294482,-0.000000;;, - 94;3; 0.000000, 1.294482, 0.000000;;, - 95;3;-0.000000, 1.294482, 0.000000;;, - 96;3;-0.000000, 1.294482,-0.000000;;, - 97;3;-0.000000, 1.294481,-0.000000;;, - 98;3;-0.000000, 1.294482,-0.000000;;, - 99;3; 0.000000, 1.294481,-0.000000;;, - 100;3;-0.000000, 1.294482,-0.000000;;, - 101;3; 0.000000, 1.294482,-0.000000;;, - 102;3; 0.000000, 1.294481, 0.000000;;, - 103;3;-0.000000, 1.294482,-0.000000;;, - 104;3;-0.000000, 1.294482,-0.000000;;, - 105;3; 0.000000, 1.294481, 0.000000;;, - 106;3; 0.000000, 1.294482, 0.000000;;, - 107;3; 0.000000, 1.294482,-0.000000;;, - 108;3;-0.000000, 1.294482, 0.000000;;, - 109;3; 0.000000, 1.294481, 0.000000;;, - 110;3; 0.000000, 1.294482,-0.000000;;, - 111;3; 0.000000, 1.294482, 0.000000;;, - 112;3;-0.000000, 1.294482, 0.000000;;, - 113;3;-0.000000, 1.294481, 0.000000;;, - 114;3; 0.000000, 1.294481,-0.000000;;, - 115;3;-0.000000, 1.294481, 0.000000;;, - 116;3; 0.000000, 1.294482,-0.000000;;, - 117;3;-0.000000, 1.294482, 0.000000;;, - 118;3; 0.000000, 1.294482,-0.000000;;, - 119;3;-0.000000, 1.294481, 0.000000;;, - 120;3; 0.000000, 1.294482, 0.000000;;, - 121;3; 0.000000, 1.294482, 0.000000;;, - 122;3;-0.000000, 1.294482, 0.000000;;, - 123;3; 0.000000, 1.294482,-0.000000;;, - 124;3;-0.000000, 1.294482,-0.000000;;, - 125;3; 0.000000, 1.294482,-0.000000;;, - 126;3;-0.000000, 1.294482,-0.000000;;, - 127;3;-0.000000, 1.294482,-0.000000;;, - 128;3; 0.000000, 1.294482, 0.000000;;, - 129;3; 0.000000, 1.294481,-0.000000;;, - 130;3; 0.000000, 1.294482,-0.000000;;, - 131;3;-0.000000, 1.294482, 0.000000;;, - 132;3; 0.000000, 1.294482,-0.000000;;, - 133;3;-0.000000, 1.294482, 0.000000;;, - 134;3;-0.000000, 1.294481, 0.000000;;, - 135;3;-0.000000, 1.294482, 0.000000;;, - 136;3;-0.000000, 1.294481,-0.000000;;, - 137;3;-0.000000, 1.294482, 0.000000;;, - 138;3; 0.000000, 1.294482, 0.000000;;, - 139;3; 0.000000, 1.294481,-0.000000;;, - 140;3;-0.000000, 1.294481,-0.000000;;, - 141;3;-0.000000, 1.294482, 0.000000;;, - 142;3; 0.000000, 1.294482, 0.000000;;, - 143;3;-0.000000, 1.294482,-0.000000;;, - 144;3; 0.000000, 1.294481, 0.000000;;, - 145;3; 0.000000, 1.294482, 0.000000;;, - 146;3;-0.000000, 1.294481, 0.000000;;, - 147;3;-0.000000, 1.294481, 0.000000;;, - 148;3;-0.000000, 1.294482, 0.000000;;, - 149;3;-0.000000, 1.294481, 0.000000;;, - 150;3; 0.000000, 1.294482, 0.000000;;, - 151;3; 0.000000, 1.294482,-0.000000;;, - 152;3; 0.000000, 1.294482,-0.000000;;, - 153;3;-0.000000, 1.294482,-0.000000;;, - 154;3; 0.000000, 1.294481,-0.000000;;, - 155;3; 0.000000, 1.294482, 0.000000;;, - 156;3; 0.000000, 1.294481,-0.000000;;, - 157;3;-0.000000, 1.294482,-0.000000;;, - 158;3; 0.000000, 1.294482, 0.000000;;, - 159;3; 0.000000, 1.294481,-0.000000;;, - 160;3;-0.000000, 1.294482,-0.000000;;, - 161;3;-0.000000, 1.294482,-0.000000;;, - 162;3; 0.000000, 1.294482,-0.000000;;, - 163;3;-0.000000, 1.294482, 0.000000;;, - 164;3;-0.000000, 1.294482, 0.000000;;, - 165;3; 0.000000, 1.294482,-0.000000;;, - 166;3; 0.000000, 1.294482,-0.000000;;, - 167;3; 0.000000, 1.294481,-0.000000;;, - 168;3;-0.000000, 1.294482,-0.000000;;, - 169;3;-0.000000, 1.294481, 0.000000;;, - 170;3;-0.000000, 1.294481,-0.000000;;, - 171;3;-0.000000, 1.294481, 0.000000;;, - 172;3;-0.000000, 1.294481,-0.000000;;, - 173;3;-0.000000, 1.294482, 0.000000;;, - 174;3;-0.000000, 1.294482,-0.000000;;, - 175;3; 0.000000, 1.294481,-0.000000;;, - 176;3; 0.000000, 1.294481,-0.000000;;, - 177;3; 0.000000, 1.294482, 0.000000;;, - 178;3; 0.000000, 1.294482, 0.000000;;, - 179;3;-0.000000, 1.294481,-0.000000;;, - 180;3;-0.000000, 1.294482,-0.000000;;, - 181;3; 0.000000, 1.294482,-0.000000;;, - 182;3;-0.000000, 1.294482,-0.000000;;, - 183;3;-0.000000, 1.294481,-0.000000;;, - 184;3; 0.000000, 1.294482,-0.000000;;, - 185;3; 0.000000, 1.294482, 0.000000;;, - 186;3; 0.000000, 1.294481, 0.000000;;, - 187;3; 0.000000, 1.294481, 0.000000;;, - 188;3; 0.000000, 1.294482,-0.000000;;, - 189;3; 0.000000, 1.294482,-0.000000;;, - 190;3; 0.000000, 1.294482, 0.000000;;, - 191;3;-0.000000, 1.294481, 0.000000;;, - 192;3;-0.000000, 1.294482, 0.000000;;, - 193;3; 0.000000, 1.294481,-0.000000;;, - 194;3;-0.000000, 1.294482, 0.000000;;, - 195;3; 0.000000, 1.294481,-0.000000;;, - 196;3;-0.000000, 1.294482, 0.000000;;, - 197;3;-0.000000, 1.294482, 0.000000;;, - 198;3; 0.000000, 1.294481, 0.000000;;, - 199;3;-0.000000, 1.294481,-0.000000;;, - 200;3;-0.000000, 1.294481,-0.000000;;, - 201;3;-0.000000, 1.294481,-0.000000;;, - 202;3;-0.000000, 1.294481,-0.000000;;, - 203;3;-0.000000, 1.294481,-0.000000;;, - 204;3;-0.000000, 1.294481,-0.000000;;, - 205;3;-0.000000, 1.294481,-0.000000;;, - 206;3;-0.000000, 1.294481,-0.000000;;, - 207;3;-0.000000, 1.294481,-0.000000;;, - 208;3;-0.000000, 1.294481,-0.000000;;, - 209;3;-0.000000, 1.294481,-0.000000;;, - 210;3; 0.000000, 1.294482, 0.000000;;, - 211;3;-0.000000, 1.294482,-0.000000;;, - 212;3;-0.000000, 1.294482, 0.000000;;, - 213;3;-0.000000, 1.294481,-0.000000;;, - 214;3;-0.000000, 1.294482,-0.000000;;, - 215;3; 0.000000, 1.294481,-0.000000;;, - 216;3;-0.000000, 1.294481,-0.000000;;, - 217;3;-0.000000, 1.294481,-0.000000;;, - 218;3;-0.000000, 1.294482, 0.000000;;, - 219;3; 0.000000, 1.294481,-0.000000;;, - 220;3; 0.000000, 1.294482, 0.000000;;, - 221;3; 0.000000, 1.294482,-0.000000;;, - 222;3;-0.000000, 1.294481,-0.000000;;, - 223;3;-0.000000, 1.294482,-0.000000;;, - 224;3; 0.000000, 1.294482,-0.000000;;, - 225;3;-0.000000, 1.294482, 0.000000;;, - 226;3;-0.000000, 1.294482,-0.000000;;, - 227;3;-0.000000, 1.294482,-0.000000;;, - 228;3;-0.000000, 1.294482, 0.000000;;, - 229;3;-0.000000, 1.294481,-0.000000;;, - 230;3;-0.000000, 1.294482,-0.000000;;, - 231;3;-0.000000, 1.294481,-0.000000;;, - 232;3; 0.000000, 1.294481, 0.000000;;, - 233;3; 0.000000, 1.294482,-0.000000;;, - 234;3;-0.000000, 1.294482,-0.000000;;, - 235;3;-0.000000, 1.294482, 0.000000;;, - 236;3; 0.000000, 1.294482, 0.000000;;, - 237;3;-0.000000, 1.294482,-0.000000;;, - 238;3;-0.000000, 1.294482,-0.000000;;, - 239;3;-0.000000, 1.294481,-0.000000;;, - 240;3;-0.000000, 1.294481,-0.000000;;, - 241;3;-0.000000, 1.294481,-0.000000;;, - 242;3;-0.000000, 1.294481,-0.000000;;, - 243;3;-0.000000, 1.294481,-0.000000;;, - 244;3;-0.000000, 1.294481,-0.000000;;, - 245;3;-0.000000, 1.294481,-0.000000;;, - 246;3;-0.000000, 1.294481,-0.000000;;, - 247;3;-0.000000, 1.294481,-0.000000;;, - 248;3;-0.000000, 1.294481,-0.000000;;, - 249;3;-0.000000, 1.294481,-0.000000;;; - } - } - Animation { - {Armature_Bone_027} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 1;4;-0.967903,-0.251025, 0.000767, 0.000246;;, - 2;4;-0.968074,-0.249465, 0.003085, 0.000990;;, - 3;4;-0.968359,-0.246858, 0.006959, 0.002233;;, - 4;4;-0.968757,-0.243225, 0.012357, 0.003965;;, - 5;4;-0.969261,-0.238621, 0.019200, 0.006160;;, - 6;4;-0.969861,-0.233136, 0.027349, 0.008775;;, - 7;4;-0.970543,-0.226905, 0.036609, 0.011746;;, - 8;4;-0.971287,-0.220103, 0.046716, 0.014989;;, - 9;4;-0.972071,-0.212942, 0.057358, 0.018403;;, - 10;4;-0.972868,-0.205658, 0.068181, 0.021876;;, - 11;4;-0.973652,-0.198497, 0.078823, 0.025290;;, - 12;4;-0.974396,-0.191695, 0.088930, 0.028533;;, - 13;4;-0.975078,-0.185464, 0.098189, 0.031504;;, - 14;4;-0.975678,-0.179979, 0.106339, 0.034119;;, - 15;4;-0.976182,-0.175375, 0.113181, 0.036314;;, - 16;4;-0.976580,-0.171742, 0.118579, 0.038046;;, - 17;4;-0.976865,-0.169135, 0.122454, 0.039289;;, - 18;4;-0.977036,-0.167575, 0.124772, 0.040033;;, - 19;4;-0.977092,-0.167059, 0.125539, 0.040279;;, - 20;4;-0.977082,-0.167170, 0.125326, 0.040211;;, - 21;4;-0.977050,-0.167511, 0.124674, 0.040002;;, - 22;4;-0.976996,-0.168095, 0.123564, 0.039646;;, - 23;4;-0.976919,-0.168931, 0.121986, 0.039139;;, - 24;4;-0.976816,-0.170022, 0.119935, 0.038481;;, - 25;4;-0.976690,-0.171370, 0.117420, 0.037674;;, - 26;4;-0.976538,-0.172967, 0.114460, 0.036725;;, - 27;4;-0.976364,-0.174800, 0.111091, 0.035644;;, - 28;4;-0.976168,-0.176846, 0.107365, 0.034448;;, - 29;4;-0.975953,-0.179075, 0.103344, 0.033158;;, - 30;4;-0.975721,-0.181452, 0.099104, 0.031798;;, - 31;4;-0.975477,-0.183936, 0.094725, 0.030393;;, - 32;4;-0.975224,-0.186488, 0.090288, 0.028969;;, - 33;4;-0.974965,-0.189067, 0.085870, 0.027551;;, - 34;4;-0.974705,-0.191637, 0.081538, 0.026162;;, - 35;4;-0.974445,-0.194167, 0.077350, 0.024818;;, - 36;4;-0.974189,-0.196632, 0.073350, 0.023534;;, - 37;4;-0.973938,-0.199011, 0.069573, 0.022322;;, - 38;4;-0.973695,-0.201290, 0.066041, 0.021189;;, - 39;4;-0.973459,-0.203460, 0.062769, 0.020140;;, - 40;4;-0.973221,-0.205651, 0.059498, 0.019090;;, - 41;4;-0.972969,-0.208000, 0.055966, 0.017957;;, - 42;4;-0.972702,-0.210502, 0.052189, 0.016745;;, - 43;4;-0.972422,-0.213147, 0.048189, 0.015462;;, - 44;4;-0.972130,-0.215920, 0.044001, 0.014118;;, - 45;4;-0.971826,-0.218801, 0.039669, 0.012728;;, - 46;4;-0.971513,-0.221762, 0.035251, 0.011310;;, - 47;4;-0.971193,-0.224770, 0.030814, 0.009887;;, - 48;4;-0.970868,-0.227785, 0.026435, 0.008482;;, - 49;4;-0.970543,-0.230765, 0.022195, 0.007121;;, - 50;4;-0.970221,-0.233667, 0.018174, 0.005831;;, - 51;4;-0.969904,-0.236450, 0.014447, 0.004636;;, - 52;4;-0.969597,-0.239078, 0.011079, 0.003555;;, - 53;4;-0.969301,-0.241521, 0.008119, 0.002605;;, - 54;4;-0.969019,-0.243757, 0.005604, 0.001798;;, - 55;4;-0.968752,-0.245771, 0.003553, 0.001140;;, - 56;4;-0.968501,-0.247556, 0.001975, 0.000634;;, - 57;4;-0.968266,-0.249110, 0.000865, 0.000278;;, - 58;4;-0.968048,-0.250436, 0.000213, 0.000068;;, - 59;4;-0.967847,-0.251541,-0.000000, 0.000000;;, - 60;4;-0.967654,-0.252526, 0.000017, 0.000006;;, - 61;4;-0.967462,-0.253486, 0.000070, 0.000023;;, - 62;4;-0.967272,-0.254420, 0.000158, 0.000051;;, - 63;4;-0.967084,-0.255326, 0.000282, 0.000091;;, - 64;4;-0.966898,-0.256202, 0.000442, 0.000142;;, - 65;4;-0.966714,-0.257049, 0.000637, 0.000204;;, - 66;4;-0.966533,-0.257864, 0.000867, 0.000278;;, - 67;4;-0.966355,-0.258645, 0.001132, 0.000363;;, - 68;4;-0.966181,-0.259393, 0.001431, 0.000459;;, - 69;4;-0.966010,-0.260106, 0.001762, 0.000565;;, - 70;4;-0.965843,-0.260783, 0.002123, 0.000681;;, - 71;4;-0.965680,-0.261422, 0.002514, 0.000807;;, - 72;4;-0.965523,-0.262024, 0.002932, 0.000941;;, - 73;4;-0.965370,-0.262588, 0.003375, 0.001083;;, - 74;4;-0.965222,-0.263113, 0.003839, 0.001232;;, - 75;4;-0.965080,-0.263599, 0.004322, 0.001387;;, - 76;4;-0.964944,-0.264048, 0.004820, 0.001547;;, - 77;4;-0.964815,-0.264458, 0.005330, 0.001710;;, - 78;4;-0.964691,-0.264831, 0.005848, 0.001876;;, - 79;4;-0.964575,-0.265168, 0.006370, 0.002044;;, - 80;4;-0.964465,-0.265470, 0.006891, 0.002211;;, - 81;4;-0.964362,-0.265739, 0.007409, 0.002377;;, - 82;4;-0.964266,-0.265976, 0.007919, 0.002541;;, - 83;4;-0.964177,-0.266183, 0.008417, 0.002701;;, - 84;4;-0.964095,-0.266362, 0.008900, 0.002856;;, - 85;4;-0.964019,-0.266516, 0.009364, 0.003005;;, - 86;4;-0.963951,-0.266646, 0.009807, 0.003147;;, - 87;4;-0.963889,-0.266754, 0.010225, 0.003281;;, - 88;4;-0.963833,-0.266844, 0.010616, 0.003406;;, - 89;4;-0.963783,-0.266916, 0.010978, 0.003522;;, - 90;4;-0.963740,-0.266974, 0.011308, 0.003628;;, - 91;4;-0.963702,-0.267018, 0.011607, 0.003724;;, - 92;4;-0.963669,-0.267052, 0.011872, 0.003809;;, - 93;4;-0.963642,-0.267076, 0.012102, 0.003883;;, - 94;4;-0.963619,-0.267093, 0.012297, 0.003946;;, - 95;4;-0.963602,-0.267104, 0.012457, 0.003997;;, - 96;4;-0.963588,-0.267111, 0.012581, 0.004037;;, - 97;4;-0.963579,-0.267114, 0.012669, 0.004065;;, - 98;4;-0.963574,-0.267115, 0.012722, 0.004082;;, - 99;4;-0.963572,-0.267115, 0.012739, 0.004087;;, - 100;4;-0.963730,-0.266134, 0.011959, 0.003837;;, - 101;4;-0.964222,-0.263088, 0.009536, 0.003060;;, - 102;4;-0.965058,-0.257914, 0.005419, 0.001739;;, - 103;4;-0.966217,-0.250742,-0.000286,-0.000092;;, - 104;4;-0.967635,-0.241963,-0.007271,-0.002333;;, - 105;4;-0.969212,-0.232195,-0.015042,-0.004826;;, - 106;4;-0.970833,-0.222160,-0.023026,-0.007388;;, - 107;4;-0.972393,-0.212505,-0.030708,-0.009853;;, - 108;4;-0.973817,-0.203692,-0.037719,-0.012102;;, - 109;4;-0.975062,-0.195982,-0.043853,-0.014070;;, - 110;4;-0.976307,-0.188272,-0.049987,-0.016038;;, - 111;4;-0.977731,-0.179459,-0.056998,-0.018288;;, - 112;4;-0.979291,-0.169804,-0.064680,-0.020753;;, - 113;4;-0.980911,-0.159769,-0.072664,-0.023314;;, - 114;4;-0.982489,-0.150002,-0.080434,-0.025807;;, - 115;4;-0.983907,-0.141222,-0.087419,-0.028049;;, - 116;4;-0.985066,-0.134050,-0.093125,-0.029879;;, - 117;4;-0.985902,-0.128876,-0.097241,-0.031200;;, - 118;4;-0.986394,-0.125830,-0.099665,-0.031978;;, - 119;4;-0.986552,-0.124849,-0.100445,-0.032228;;, - 120;4;-0.986394,-0.125830,-0.099665,-0.031978;;, - 121;4;-0.985902,-0.128876,-0.097241,-0.031200;;, - 122;4;-0.985066,-0.134050,-0.093125,-0.029879;;, - 123;4;-0.983907,-0.141222,-0.087419,-0.028049;;, - 124;4;-0.982489,-0.150002,-0.080434,-0.025807;;, - 125;4;-0.980911,-0.159769,-0.072664,-0.023314;;, - 126;4;-0.979291,-0.169804,-0.064680,-0.020753;;, - 127;4;-0.977731,-0.179459,-0.056998,-0.018288;;, - 128;4;-0.976307,-0.188272,-0.049987,-0.016038;;, - 129;4;-0.975062,-0.195982,-0.043853,-0.014070;;, - 130;4;-0.973817,-0.203692,-0.037719,-0.012102;;, - 131;4;-0.972393,-0.212505,-0.030708,-0.009853;;, - 132;4;-0.970833,-0.222160,-0.023026,-0.007388;;, - 133;4;-0.969213,-0.232195,-0.015042,-0.004826;;, - 134;4;-0.967635,-0.241963,-0.007271,-0.002333;;, - 135;4;-0.966217,-0.250742,-0.000286,-0.000092;;, - 136;4;-0.965058,-0.257914, 0.005419, 0.001739;;, - 137;4;-0.964222,-0.263088, 0.009536, 0.003060;;, - 138;4;-0.963730,-0.266134, 0.011959, 0.003837;;, - 139;4;-0.963572,-0.267115, 0.012739, 0.004087;;, - 140;4;-0.964222,-0.263088, 0.009536, 0.003060;;, - 141;4;-0.966217,-0.250742,-0.000286,-0.000092;;, - 142;4;-0.969212,-0.232195,-0.015042,-0.004826;;, - 143;4;-0.972393,-0.212505,-0.030708,-0.009853;;, - 144;4;-0.975062,-0.195982,-0.043853,-0.014070;;, - 145;4;-0.977731,-0.179459,-0.056998,-0.018288;;, - 146;4;-0.980911,-0.159769,-0.072664,-0.023314;;, - 147;4;-0.983907,-0.141222,-0.087419,-0.028049;;, - 148;4;-0.985902,-0.128876,-0.097241,-0.031200;;, - 149;4;-0.986552,-0.124849,-0.100445,-0.032228;;, - 150;4;-0.985902,-0.128876,-0.097241,-0.031200;;, - 151;4;-0.983907,-0.141222,-0.087419,-0.028049;;, - 152;4;-0.980911,-0.159769,-0.072664,-0.023314;;, - 153;4;-0.977731,-0.179459,-0.056998,-0.018288;;, - 154;4;-0.975062,-0.195982,-0.043853,-0.014070;;, - 155;4;-0.972393,-0.212505,-0.030708,-0.009853;;, - 156;4;-0.969213,-0.232195,-0.015042,-0.004826;;, - 157;4;-0.966217,-0.250742,-0.000286,-0.000092;;, - 158;4;-0.964222,-0.263088, 0.009536, 0.003060;;, - 159;4;-0.963572,-0.267115, 0.012739, 0.004087;;, - 160;4;-0.963596,-0.267029, 0.012669, 0.004065;;, - 161;4;-0.963667,-0.266770, 0.012457, 0.003997;;, - 162;4;-0.963786,-0.266336, 0.012102, 0.003883;;, - 163;4;-0.963952,-0.265731, 0.011607, 0.003724;;, - 164;4;-0.964163,-0.264961, 0.010978, 0.003522;;, - 165;4;-0.964416,-0.264041, 0.010225, 0.003281;;, - 166;4;-0.964704,-0.262989, 0.009364, 0.003005;;, - 167;4;-0.965022,-0.261831, 0.008417, 0.002701;;, - 168;4;-0.965360,-0.260599, 0.007409, 0.002377;;, - 169;4;-0.965709,-0.259328, 0.006370, 0.002044;;, - 170;4;-0.966058,-0.258057, 0.005330, 0.001710;;, - 171;4;-0.966396,-0.256825, 0.004322, 0.001387;;, - 172;4;-0.966714,-0.255667, 0.003375, 0.001083;;, - 173;4;-0.967003,-0.254615, 0.002514, 0.000807;;, - 174;4;-0.967256,-0.253695, 0.001762, 0.000565;;, - 175;4;-0.967467,-0.252925, 0.001132, 0.000363;;, - 176;4;-0.967633,-0.252320, 0.000637, 0.000204;;, - 177;4;-0.967752,-0.251886, 0.000282, 0.000091;;, - 178;4;-0.967823,-0.251627, 0.000070, 0.000023;;, - 179;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 180;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 181;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 182;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 183;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 184;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 185;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 186;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 187;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 188;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 189;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 190;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 191;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 192;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 193;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 194;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 195;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 196;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 197;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 198;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 199;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 200;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 201;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 202;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 203;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 204;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 205;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 206;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 207;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 208;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 209;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 210;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 211;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 212;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 213;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 214;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 215;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 216;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 217;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 218;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 219;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 220;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 221;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 222;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 223;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 224;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 225;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 226;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 227;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 228;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 229;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 230;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 231;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 232;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 233;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 234;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 235;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 236;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 237;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 238;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 239;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 240;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 241;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 242;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 243;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 244;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 245;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 246;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 247;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 248;4;-0.967847,-0.251541,-0.000000,-0.000000;;, - 249;4;-0.967847,-0.251541,-0.000000,-0.000000;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3;-0.000000, 1.228822,-0.000000;;, - 1;3;-0.000000, 1.228822,-0.000000;;, - 2;3; 0.000000, 1.228822,-0.000000;;, - 3;3;-0.000000, 1.228822,-0.000000;;, - 4;3; 0.000000, 1.228822, 0.000000;;, - 5;3;-0.000000, 1.228822,-0.000000;;, - 6;3;-0.000000, 1.228822,-0.000000;;, - 7;3; 0.000000, 1.228822,-0.000000;;, - 8;3; 0.000000, 1.228822, 0.000000;;, - 9;3; 0.000000, 1.228822,-0.000000;;, - 10;3; 0.000000, 1.228822,-0.000000;;, - 11;3;-0.000000, 1.228822, 0.000000;;, - 12;3; 0.000000, 1.228822,-0.000000;;, - 13;3; 0.000000, 1.228822, 0.000000;;, - 14;3; 0.000000, 1.228822,-0.000000;;, - 15;3;-0.000000, 1.228822,-0.000000;;, - 16;3; 0.000000, 1.228822,-0.000000;;, - 17;3; 0.000000, 1.228822,-0.000000;;, - 18;3; 0.000000, 1.228822,-0.000000;;, - 19;3;-0.000000, 1.228822, 0.000000;;, - 20;3;-0.000000, 1.228822, 0.000000;;, - 21;3;-0.000000, 1.228822, 0.000000;;, - 22;3;-0.000000, 1.228822,-0.000000;;, - 23;3;-0.000000, 1.228822, 0.000000;;, - 24;3;-0.000000, 1.228822,-0.000000;;, - 25;3;-0.000000, 1.228822,-0.000000;;, - 26;3; 0.000000, 1.228822, 0.000000;;, - 27;3; 0.000000, 1.228822,-0.000000;;, - 28;3; 0.000000, 1.228822, 0.000000;;, - 29;3;-0.000000, 1.228822, 0.000000;;, - 30;3; 0.000000, 1.228822, 0.000000;;, - 31;3; 0.000000, 1.228822, 0.000000;;, - 32;3; 0.000000, 1.228822,-0.000000;;, - 33;3; 0.000000, 1.228822,-0.000000;;, - 34;3; 0.000000, 1.228822,-0.000000;;, - 35;3;-0.000000, 1.228822, 0.000000;;, - 36;3;-0.000000, 1.228822, 0.000000;;, - 37;3; 0.000000, 1.228822, 0.000000;;, - 38;3;-0.000000, 1.228822,-0.000000;;, - 39;3; 0.000000, 1.228822, 0.000000;;, - 40;3;-0.000000, 1.228822, 0.000000;;, - 41;3; 0.000000, 1.228822,-0.000000;;, - 42;3; 0.000000, 1.228822, 0.000000;;, - 43;3; 0.000000, 1.228822, 0.000000;;, - 44;3; 0.000000, 1.228822, 0.000000;;, - 45;3; 0.000000, 1.228822, 0.000000;;, - 46;3;-0.000000, 1.228822,-0.000000;;, - 47;3; 0.000000, 1.228822, 0.000000;;, - 48;3; 0.000000, 1.228822, 0.000000;;, - 49;3;-0.000000, 1.228822, 0.000000;;, - 50;3; 0.000000, 1.228822, 0.000000;;, - 51;3;-0.000000, 1.228822,-0.000000;;, - 52;3; 0.000000, 1.228822, 0.000000;;, - 53;3;-0.000000, 1.228822, 0.000000;;, - 54;3;-0.000000, 1.228822,-0.000000;;, - 55;3;-0.000000, 1.228822,-0.000000;;, - 56;3; 0.000000, 1.228822,-0.000000;;, - 57;3; 0.000000, 1.228822,-0.000000;;, - 58;3; 0.000000, 1.228822,-0.000000;;, - 59;3;-0.000000, 1.228822,-0.000000;;, - 60;3; 0.000000, 1.228822, 0.000000;;, - 61;3;-0.000000, 1.228822, 0.000000;;, - 62;3; 0.000000, 1.228822,-0.000000;;, - 63;3; 0.000000, 1.228822,-0.000000;;, - 64;3;-0.000000, 1.228822, 0.000000;;, - 65;3; 0.000000, 1.228822,-0.000000;;, - 66;3;-0.000000, 1.228822, 0.000000;;, - 67;3; 0.000000, 1.228822, 0.000000;;, - 68;3; 0.000000, 1.228822, 0.000000;;, - 69;3; 0.000000, 1.228822,-0.000000;;, - 70;3; 0.000000, 1.228821, 0.000000;;, - 71;3; 0.000000, 1.228822, 0.000000;;, - 72;3;-0.000000, 1.228822,-0.000000;;, - 73;3;-0.000000, 1.228822,-0.000000;;, - 74;3; 0.000000, 1.228822,-0.000000;;, - 75;3; 0.000000, 1.228822,-0.000000;;, - 76;3; 0.000000, 1.228822, 0.000000;;, - 77;3;-0.000000, 1.228822,-0.000000;;, - 78;3; 0.000000, 1.228822, 0.000000;;, - 79;3; 0.000000, 1.228822,-0.000000;;, - 80;3; 0.000000, 1.228822,-0.000000;;, - 81;3; 0.000000, 1.228822,-0.000000;;, - 82;3; 0.000000, 1.228822, 0.000000;;, - 83;3;-0.000000, 1.228822, 0.000000;;, - 84;3; 0.000000, 1.228822,-0.000000;;, - 85;3; 0.000000, 1.228822,-0.000000;;, - 86;3;-0.000000, 1.228822,-0.000000;;, - 87;3; 0.000000, 1.228822, 0.000000;;, - 88;3;-0.000000, 1.228822, 0.000000;;, - 89;3;-0.000000, 1.228822,-0.000000;;, - 90;3;-0.000000, 1.228822, 0.000000;;, - 91;3; 0.000000, 1.228822, 0.000000;;, - 92;3; 0.000000, 1.228822, 0.000000;;, - 93;3; 0.000000, 1.228822,-0.000000;;, - 94;3;-0.000000, 1.228822, 0.000000;;, - 95;3; 0.000000, 1.228822,-0.000000;;, - 96;3;-0.000000, 1.228822, 0.000000;;, - 97;3;-0.000000, 1.228822,-0.000000;;, - 98;3; 0.000000, 1.228822,-0.000000;;, - 99;3;-0.000000, 1.228822,-0.000000;;, - 100;3;-0.000000, 1.228822, 0.000000;;, - 101;3; 0.000000, 1.228822,-0.000000;;, - 102;3;-0.000000, 1.228822, 0.000000;;, - 103;3;-0.000000, 1.228822, 0.000000;;, - 104;3;-0.000000, 1.228822, 0.000000;;, - 105;3; 0.000000, 1.228822,-0.000000;;, - 106;3; 0.000000, 1.228822, 0.000000;;, - 107;3; 0.000000, 1.228822,-0.000000;;, - 108;3;-0.000000, 1.228822, 0.000000;;, - 109;3; 0.000000, 1.228822, 0.000000;;, - 110;3; 0.000000, 1.228822,-0.000000;;, - 111;3; 0.000000, 1.228822,-0.000000;;, - 112;3;-0.000000, 1.228822,-0.000000;;, - 113;3;-0.000000, 1.228822,-0.000000;;, - 114;3; 0.000000, 1.228822,-0.000000;;, - 115;3;-0.000000, 1.228822,-0.000000;;, - 116;3;-0.000000, 1.228822, 0.000000;;, - 117;3; 0.000000, 1.228822,-0.000000;;, - 118;3;-0.000000, 1.228822, 0.000000;;, - 119;3;-0.000000, 1.228822,-0.000000;;, - 120;3;-0.000000, 1.228822, 0.000000;;, - 121;3; 0.000000, 1.228822, 0.000000;;, - 122;3;-0.000000, 1.228822, 0.000000;;, - 123;3; 0.000000, 1.228822,-0.000000;;, - 124;3; 0.000000, 1.228822, 0.000000;;, - 125;3;-0.000000, 1.228822,-0.000000;;, - 126;3; 0.000000, 1.228822, 0.000000;;, - 127;3; 0.000000, 1.228822,-0.000000;;, - 128;3; 0.000000, 1.228822,-0.000000;;, - 129;3; 0.000000, 1.228822, 0.000000;;, - 130;3; 0.000000, 1.228822, 0.000000;;, - 131;3; 0.000000, 1.228822,-0.000000;;, - 132;3; 0.000000, 1.228822, 0.000000;;, - 133;3; 0.000000, 1.228822, 0.000000;;, - 134;3;-0.000000, 1.228822, 0.000000;;, - 135;3; 0.000000, 1.228822,-0.000000;;, - 136;3;-0.000000, 1.228822,-0.000000;;, - 137;3; 0.000000, 1.228822, 0.000000;;, - 138;3; 0.000000, 1.228822,-0.000000;;, - 139;3;-0.000000, 1.228822,-0.000000;;, - 140;3; 0.000000, 1.228822, 0.000000;;, - 141;3;-0.000000, 1.228822, 0.000000;;, - 142;3; 0.000000, 1.228822,-0.000000;;, - 143;3; 0.000000, 1.228822, 0.000000;;, - 144;3; 0.000000, 1.228822, 0.000000;;, - 145;3; 0.000000, 1.228822,-0.000000;;, - 146;3;-0.000000, 1.228822,-0.000000;;, - 147;3;-0.000000, 1.228822,-0.000000;;, - 148;3; 0.000000, 1.228822,-0.000000;;, - 149;3;-0.000000, 1.228822,-0.000000;;, - 150;3; 0.000000, 1.228822, 0.000000;;, - 151;3; 0.000000, 1.228822,-0.000000;;, - 152;3;-0.000000, 1.228822,-0.000000;;, - 153;3; 0.000000, 1.228822,-0.000000;;, - 154;3; 0.000000, 1.228822, 0.000000;;, - 155;3; 0.000000, 1.228822, 0.000000;;, - 156;3; 0.000000, 1.228822, 0.000000;;, - 157;3; 0.000000, 1.228822,-0.000000;;, - 158;3;-0.000000, 1.228822, 0.000000;;, - 159;3;-0.000000, 1.228822,-0.000000;;, - 160;3;-0.000000, 1.228822,-0.000000;;, - 161;3; 0.000000, 1.228822, 0.000000;;, - 162;3; 0.000000, 1.228822,-0.000000;;, - 163;3; 0.000000, 1.228822,-0.000000;;, - 164;3; 0.000000, 1.228822,-0.000000;;, - 165;3; 0.000000, 1.228822, 0.000000;;, - 166;3; 0.000000, 1.228822, 0.000000;;, - 167;3;-0.000000, 1.228822, 0.000000;;, - 168;3; 0.000000, 1.228822, 0.000000;;, - 169;3;-0.000000, 1.228822, 0.000000;;, - 170;3; 0.000000, 1.228822, 0.000000;;, - 171;3; 0.000000, 1.228822, 0.000000;;, - 172;3;-0.000000, 1.228822,-0.000000;;, - 173;3;-0.000000, 1.228822, 0.000000;;, - 174;3;-0.000000, 1.228822,-0.000000;;, - 175;3; 0.000000, 1.228822, 0.000000;;, - 176;3;-0.000000, 1.228822, 0.000000;;, - 177;3; 0.000000, 1.228822, 0.000000;;, - 178;3;-0.000000, 1.228822, 0.000000;;, - 179;3;-0.000000, 1.228822,-0.000000;;, - 180;3;-0.000000, 1.228822,-0.000000;;, - 181;3; 0.000000, 1.228822,-0.000000;;, - 182;3; 0.000000, 1.228822,-0.000000;;, - 183;3;-0.000000, 1.228822,-0.000000;;, - 184;3;-0.000000, 1.228822,-0.000000;;, - 185;3; 0.000000, 1.228822, 0.000000;;, - 186;3;-0.000000, 1.228822, 0.000000;;, - 187;3; 0.000000, 1.228822, 0.000000;;, - 188;3;-0.000000, 1.228822,-0.000000;;, - 189;3; 0.000000, 1.228822,-0.000000;;, - 190;3;-0.000000, 1.228822,-0.000000;;, - 191;3; 0.000000, 1.228822, 0.000000;;, - 192;3;-0.000000, 1.228822,-0.000000;;, - 193;3; 0.000000, 1.228822,-0.000000;;, - 194;3;-0.000000, 1.228822,-0.000000;;, - 195;3;-0.000000, 1.228822,-0.000000;;, - 196;3;-0.000000, 1.228822,-0.000000;;, - 197;3; 0.000000, 1.228822,-0.000000;;, - 198;3;-0.000000, 1.228822, 0.000000;;, - 199;3;-0.000000, 1.228822,-0.000000;;, - 200;3;-0.000000, 1.228822,-0.000000;;, - 201;3;-0.000000, 1.228822,-0.000000;;, - 202;3;-0.000000, 1.228822,-0.000000;;, - 203;3;-0.000000, 1.228822,-0.000000;;, - 204;3;-0.000000, 1.228822,-0.000000;;, - 205;3;-0.000000, 1.228822,-0.000000;;, - 206;3;-0.000000, 1.228822,-0.000000;;, - 207;3;-0.000000, 1.228822,-0.000000;;, - 208;3;-0.000000, 1.228822,-0.000000;;, - 209;3;-0.000000, 1.228822,-0.000000;;, - 210;3; 0.000000, 1.228822,-0.000000;;, - 211;3; 0.000000, 1.228822,-0.000000;;, - 212;3;-0.000000, 1.228822,-0.000000;;, - 213;3;-0.000000, 1.228822,-0.000000;;, - 214;3;-0.000000, 1.228822, 0.000000;;, - 215;3;-0.000000, 1.228822, 0.000000;;, - 216;3;-0.000000, 1.228822,-0.000000;;, - 217;3; 0.000000, 1.228822, 0.000000;;, - 218;3;-0.000000, 1.228822,-0.000000;;, - 219;3;-0.000000, 1.228822, 0.000000;;, - 220;3;-0.000000, 1.228822,-0.000000;;, - 221;3;-0.000000, 1.228822, 0.000000;;, - 222;3; 0.000000, 1.228821, 0.000000;;, - 223;3; 0.000000, 1.228822,-0.000000;;, - 224;3; 0.000000, 1.228822,-0.000000;;, - 225;3; 0.000000, 1.228822, 0.000000;;, - 226;3; 0.000000, 1.228822, 0.000000;;, - 227;3;-0.000000, 1.228822,-0.000000;;, - 228;3; 0.000000, 1.228822, 0.000000;;, - 229;3; 0.000000, 1.228822,-0.000000;;, - 230;3; 0.000000, 1.228822,-0.000000;;, - 231;3;-0.000000, 1.228822, 0.000000;;, - 232;3; 0.000000, 1.228822,-0.000000;;, - 233;3;-0.000000, 1.228822,-0.000000;;, - 234;3; 0.000000, 1.228822,-0.000000;;, - 235;3;-0.000000, 1.228822,-0.000000;;, - 236;3; 0.000000, 1.228822, 0.000000;;, - 237;3; 0.000000, 1.228822, 0.000000;;, - 238;3;-0.000000, 1.228822,-0.000000;;, - 239;3;-0.000000, 1.228822,-0.000000;;, - 240;3;-0.000000, 1.228822,-0.000000;;, - 241;3;-0.000000, 1.228822,-0.000000;;, - 242;3;-0.000000, 1.228822,-0.000000;;, - 243;3;-0.000000, 1.228822,-0.000000;;, - 244;3;-0.000000, 1.228822,-0.000000;;, - 245;3;-0.000000, 1.228822,-0.000000;;, - 246;3;-0.000000, 1.228822,-0.000000;;, - 247;3;-0.000000, 1.228822,-0.000000;;, - 248;3;-0.000000, 1.228822,-0.000000;;, - 249;3;-0.000000, 1.228822,-0.000000;;; - } - } - Animation { - {Armature_Bone_016} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 1;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 2;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 3;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 4;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 5;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 6;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 7;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 8;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 9;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 10;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 11;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 12;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 13;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 14;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 15;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 16;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 17;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 18;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 19;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 20;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 21;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 22;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 23;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 24;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 25;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 26;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 27;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 28;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 29;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 30;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 31;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 32;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 33;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 34;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 35;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 36;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 37;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 38;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 39;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 40;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 41;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 42;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 43;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 44;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 45;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 46;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 47;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 48;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 49;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 50;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 51;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 52;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 53;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 54;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 55;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 56;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 57;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 58;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 59;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 60;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 61;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 62;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 63;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 64;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 65;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 66;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 67;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 68;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 69;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 70;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 71;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 72;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 73;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 74;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 75;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 76;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 77;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 78;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 79;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 80;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 81;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 82;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 83;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 84;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 85;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 86;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 87;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 88;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 89;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 90;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 91;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 92;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 93;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 94;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 95;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 96;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 97;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 98;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 99;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 100;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 101;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 102;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 103;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 104;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 105;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 106;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 107;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 108;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 109;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 110;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 111;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 112;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 113;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 114;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 115;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 116;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 117;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 118;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 119;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 120;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 121;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 122;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 123;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 124;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 125;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 126;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 127;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 128;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 129;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 130;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 131;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 132;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 133;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 134;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 135;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 136;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 137;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 138;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 139;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 140;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 141;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 142;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 143;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 144;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 145;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 146;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 147;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 148;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 149;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 150;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 151;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 152;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 153;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 154;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 155;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 156;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 157;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 158;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 159;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 160;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 161;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 162;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 163;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 164;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 165;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 166;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 167;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 168;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 169;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 170;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 171;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 172;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 173;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 174;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 175;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 176;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 177;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 178;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 179;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 180;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 181;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 182;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 183;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 184;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 185;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 186;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 187;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 188;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 189;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 190;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 191;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 192;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 193;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 194;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 195;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 196;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 197;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 198;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 199;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 200;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 201;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 202;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 203;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 204;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 205;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 206;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 207;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 208;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 209;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 210;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 211;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 212;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 213;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 214;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 215;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 216;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 217;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 218;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 219;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 220;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 221;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 222;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 223;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 224;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 225;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 226;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 227;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 228;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 229;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 230;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 231;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 232;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 233;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 234;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 235;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 236;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 237;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 238;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 239;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 240;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 241;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 242;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 243;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 244;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 245;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 246;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 247;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 248;4;-0.524827,-0.000000,-0.000000,-0.851209;;, - 249;4;-0.524827,-0.000000,-0.000000,-0.851209;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3; 0.000000, 0.826434, 0.000000;;, - 1;3; 0.000000, 0.826434, 0.000000;;, - 2;3; 0.000000, 0.826434, 0.000000;;, - 3;3; 0.000000, 0.826434, 0.000000;;, - 4;3; 0.000000, 0.826434, 0.000000;;, - 5;3; 0.000000, 0.826434, 0.000000;;, - 6;3; 0.000000, 0.826434, 0.000000;;, - 7;3; 0.000000, 0.826434, 0.000000;;, - 8;3; 0.000000, 0.826434, 0.000000;;, - 9;3; 0.000000, 0.826434, 0.000000;;, - 10;3; 0.000000, 0.826434, 0.000000;;, - 11;3; 0.000000, 0.826434, 0.000000;;, - 12;3; 0.000000, 0.826434, 0.000000;;, - 13;3; 0.000000, 0.826434, 0.000000;;, - 14;3; 0.000000, 0.826434, 0.000000;;, - 15;3; 0.000000, 0.826434, 0.000000;;, - 16;3; 0.000000, 0.826434, 0.000000;;, - 17;3; 0.000000, 0.826434, 0.000000;;, - 18;3; 0.000000, 0.826434, 0.000000;;, - 19;3; 0.000000, 0.826434, 0.000000;;, - 20;3; 0.000000, 0.826434, 0.000000;;, - 21;3; 0.000000, 0.826434, 0.000000;;, - 22;3; 0.000000, 0.826434, 0.000000;;, - 23;3; 0.000000, 0.826434, 0.000000;;, - 24;3; 0.000000, 0.826434, 0.000000;;, - 25;3; 0.000000, 0.826434, 0.000000;;, - 26;3; 0.000000, 0.826434, 0.000000;;, - 27;3; 0.000000, 0.826434, 0.000000;;, - 28;3; 0.000000, 0.826434, 0.000000;;, - 29;3; 0.000000, 0.826434, 0.000000;;, - 30;3; 0.000000, 0.826434, 0.000000;;, - 31;3; 0.000000, 0.826434, 0.000000;;, - 32;3; 0.000000, 0.826434, 0.000000;;, - 33;3; 0.000000, 0.826434, 0.000000;;, - 34;3; 0.000000, 0.826434, 0.000000;;, - 35;3; 0.000000, 0.826434, 0.000000;;, - 36;3; 0.000000, 0.826434, 0.000000;;, - 37;3; 0.000000, 0.826434, 0.000000;;, - 38;3; 0.000000, 0.826434, 0.000000;;, - 39;3; 0.000000, 0.826434, 0.000000;;, - 40;3; 0.000000, 0.826434, 0.000000;;, - 41;3; 0.000000, 0.826434, 0.000000;;, - 42;3; 0.000000, 0.826434, 0.000000;;, - 43;3; 0.000000, 0.826434, 0.000000;;, - 44;3; 0.000000, 0.826434, 0.000000;;, - 45;3; 0.000000, 0.826434, 0.000000;;, - 46;3; 0.000000, 0.826434, 0.000000;;, - 47;3; 0.000000, 0.826434, 0.000000;;, - 48;3; 0.000000, 0.826434, 0.000000;;, - 49;3; 0.000000, 0.826434, 0.000000;;, - 50;3; 0.000000, 0.826434, 0.000000;;, - 51;3; 0.000000, 0.826434, 0.000000;;, - 52;3; 0.000000, 0.826434, 0.000000;;, - 53;3; 0.000000, 0.826434, 0.000000;;, - 54;3; 0.000000, 0.826434, 0.000000;;, - 55;3; 0.000000, 0.826434, 0.000000;;, - 56;3; 0.000000, 0.826434, 0.000000;;, - 57;3; 0.000000, 0.826434, 0.000000;;, - 58;3; 0.000000, 0.826434, 0.000000;;, - 59;3; 0.000000, 0.826434, 0.000000;;, - 60;3; 0.000000, 0.826434, 0.000000;;, - 61;3; 0.000000, 0.826434, 0.000000;;, - 62;3; 0.000000, 0.826434, 0.000000;;, - 63;3; 0.000000, 0.826434, 0.000000;;, - 64;3; 0.000000, 0.826434, 0.000000;;, - 65;3; 0.000000, 0.826434, 0.000000;;, - 66;3; 0.000000, 0.826434, 0.000000;;, - 67;3; 0.000000, 0.826434, 0.000000;;, - 68;3; 0.000000, 0.826434, 0.000000;;, - 69;3; 0.000000, 0.826434, 0.000000;;, - 70;3; 0.000000, 0.826434, 0.000000;;, - 71;3; 0.000000, 0.826434, 0.000000;;, - 72;3; 0.000000, 0.826434, 0.000000;;, - 73;3; 0.000000, 0.826434, 0.000000;;, - 74;3; 0.000000, 0.826434, 0.000000;;, - 75;3; 0.000000, 0.826434, 0.000000;;, - 76;3; 0.000000, 0.826434, 0.000000;;, - 77;3; 0.000000, 0.826434, 0.000000;;, - 78;3; 0.000000, 0.826434, 0.000000;;, - 79;3; 0.000000, 0.826434, 0.000000;;, - 80;3; 0.000000, 0.826434, 0.000000;;, - 81;3; 0.000000, 0.826434, 0.000000;;, - 82;3; 0.000000, 0.826434, 0.000000;;, - 83;3; 0.000000, 0.826434, 0.000000;;, - 84;3; 0.000000, 0.826434, 0.000000;;, - 85;3; 0.000000, 0.826434, 0.000000;;, - 86;3; 0.000000, 0.826434, 0.000000;;, - 87;3; 0.000000, 0.826434, 0.000000;;, - 88;3; 0.000000, 0.826434, 0.000000;;, - 89;3; 0.000000, 0.826434, 0.000000;;, - 90;3; 0.000000, 0.826434, 0.000000;;, - 91;3; 0.000000, 0.826434, 0.000000;;, - 92;3; 0.000000, 0.826434, 0.000000;;, - 93;3; 0.000000, 0.826434, 0.000000;;, - 94;3; 0.000000, 0.826434, 0.000000;;, - 95;3; 0.000000, 0.826434, 0.000000;;, - 96;3; 0.000000, 0.826434, 0.000000;;, - 97;3; 0.000000, 0.826434, 0.000000;;, - 98;3; 0.000000, 0.826434, 0.000000;;, - 99;3; 0.000000, 0.826434, 0.000000;;, - 100;3; 0.000000, 0.826434, 0.000000;;, - 101;3; 0.000000, 0.826434, 0.000000;;, - 102;3; 0.000000, 0.826434, 0.000000;;, - 103;3; 0.000000, 0.826434, 0.000000;;, - 104;3; 0.000000, 0.826434, 0.000000;;, - 105;3; 0.000000, 0.826434, 0.000000;;, - 106;3; 0.000000, 0.826434, 0.000000;;, - 107;3; 0.000000, 0.826434, 0.000000;;, - 108;3; 0.000000, 0.826434, 0.000000;;, - 109;3; 0.000000, 0.826434, 0.000000;;, - 110;3; 0.000000, 0.826434, 0.000000;;, - 111;3; 0.000000, 0.826434, 0.000000;;, - 112;3; 0.000000, 0.826434, 0.000000;;, - 113;3; 0.000000, 0.826434, 0.000000;;, - 114;3; 0.000000, 0.826434, 0.000000;;, - 115;3; 0.000000, 0.826434, 0.000000;;, - 116;3; 0.000000, 0.826434, 0.000000;;, - 117;3; 0.000000, 0.826434, 0.000000;;, - 118;3; 0.000000, 0.826434, 0.000000;;, - 119;3; 0.000000, 0.826434, 0.000000;;, - 120;3; 0.000000, 0.826434, 0.000000;;, - 121;3; 0.000000, 0.826434, 0.000000;;, - 122;3; 0.000000, 0.826434, 0.000000;;, - 123;3; 0.000000, 0.826434, 0.000000;;, - 124;3; 0.000000, 0.826434, 0.000000;;, - 125;3; 0.000000, 0.826434, 0.000000;;, - 126;3; 0.000000, 0.826434, 0.000000;;, - 127;3; 0.000000, 0.826434, 0.000000;;, - 128;3; 0.000000, 0.826434, 0.000000;;, - 129;3; 0.000000, 0.826434, 0.000000;;, - 130;3; 0.000000, 0.826434, 0.000000;;, - 131;3; 0.000000, 0.826434, 0.000000;;, - 132;3; 0.000000, 0.826434, 0.000000;;, - 133;3; 0.000000, 0.826434, 0.000000;;, - 134;3; 0.000000, 0.826434, 0.000000;;, - 135;3; 0.000000, 0.826434, 0.000000;;, - 136;3; 0.000000, 0.826434, 0.000000;;, - 137;3; 0.000000, 0.826434, 0.000000;;, - 138;3; 0.000000, 0.826434, 0.000000;;, - 139;3; 0.000000, 0.826434, 0.000000;;, - 140;3; 0.000000, 0.826434, 0.000000;;, - 141;3; 0.000000, 0.826434, 0.000000;;, - 142;3; 0.000000, 0.826434, 0.000000;;, - 143;3; 0.000000, 0.826434, 0.000000;;, - 144;3; 0.000000, 0.826434, 0.000000;;, - 145;3; 0.000000, 0.826434, 0.000000;;, - 146;3; 0.000000, 0.826434, 0.000000;;, - 147;3; 0.000000, 0.826434, 0.000000;;, - 148;3; 0.000000, 0.826434, 0.000000;;, - 149;3; 0.000000, 0.826434, 0.000000;;, - 150;3; 0.000000, 0.826434, 0.000000;;, - 151;3; 0.000000, 0.826434, 0.000000;;, - 152;3; 0.000000, 0.826434, 0.000000;;, - 153;3; 0.000000, 0.826434, 0.000000;;, - 154;3; 0.000000, 0.826434, 0.000000;;, - 155;3; 0.000000, 0.826434, 0.000000;;, - 156;3; 0.000000, 0.826434, 0.000000;;, - 157;3; 0.000000, 0.826434, 0.000000;;, - 158;3; 0.000000, 0.826434, 0.000000;;, - 159;3; 0.000000, 0.826434, 0.000000;;, - 160;3; 0.000000, 0.826434, 0.000000;;, - 161;3; 0.000000, 0.826434, 0.000000;;, - 162;3; 0.000000, 0.826434, 0.000000;;, - 163;3; 0.000000, 0.826434, 0.000000;;, - 164;3; 0.000000, 0.826434, 0.000000;;, - 165;3; 0.000000, 0.826434, 0.000000;;, - 166;3; 0.000000, 0.826434, 0.000000;;, - 167;3; 0.000000, 0.826434, 0.000000;;, - 168;3; 0.000000, 0.826434, 0.000000;;, - 169;3; 0.000000, 0.826434, 0.000000;;, - 170;3; 0.000000, 0.826434, 0.000000;;, - 171;3; 0.000000, 0.826434, 0.000000;;, - 172;3; 0.000000, 0.826434, 0.000000;;, - 173;3; 0.000000, 0.826434, 0.000000;;, - 174;3; 0.000000, 0.826434, 0.000000;;, - 175;3; 0.000000, 0.826434, 0.000000;;, - 176;3; 0.000000, 0.826434, 0.000000;;, - 177;3; 0.000000, 0.826434, 0.000000;;, - 178;3; 0.000000, 0.826434, 0.000000;;, - 179;3; 0.000000, 0.826434, 0.000000;;, - 180;3; 0.000000, 0.826434, 0.000000;;, - 181;3; 0.000000, 0.826434, 0.000000;;, - 182;3; 0.000000, 0.826434, 0.000000;;, - 183;3; 0.000000, 0.826434, 0.000000;;, - 184;3; 0.000000, 0.826434, 0.000000;;, - 185;3; 0.000000, 0.826434, 0.000000;;, - 186;3;-0.000000, 0.826434,-0.000000;;, - 187;3;-0.000000, 0.826434,-0.000000;;, - 188;3;-0.000000, 0.826434, 0.000000;;, - 189;3;-0.000000, 0.826434, 0.000000;;, - 190;3;-0.000000, 0.826434,-0.000000;;, - 191;3; 0.000000, 0.826434, 0.000000;;, - 192;3; 0.000000, 0.826434, 0.000000;;, - 193;3; 0.000000, 0.826434, 0.000000;;, - 194;3; 0.000000, 0.826434,-0.000000;;, - 195;3; 0.000000, 0.826434,-0.000000;;, - 196;3; 0.000000, 0.826434, 0.000000;;, - 197;3; 0.000000, 0.826434,-0.000000;;, - 198;3; 0.000000, 0.826434,-0.000000;;, - 199;3; 0.000000, 0.826434, 0.000000;;, - 200;3; 0.000000, 0.826434, 0.000000;;, - 201;3; 0.000000, 0.826434, 0.000000;;, - 202;3; 0.000000, 0.826434, 0.000000;;, - 203;3; 0.000000, 0.826434, 0.000000;;, - 204;3; 0.000000, 0.826434, 0.000000;;, - 205;3; 0.000000, 0.826434, 0.000000;;, - 206;3; 0.000000, 0.826434, 0.000000;;, - 207;3; 0.000000, 0.826434, 0.000000;;, - 208;3; 0.000000, 0.826434, 0.000000;;, - 209;3; 0.000000, 0.826434, 0.000000;;, - 210;3;-0.000000, 0.826434, 0.000000;;, - 211;3;-0.000000, 0.826434, 0.000000;;, - 212;3; 0.000000, 0.826434,-0.000000;;, - 213;3; 0.000000, 0.826434, 0.000000;;, - 214;3; 0.000000, 0.826434, 0.000000;;, - 215;3;-0.000000, 0.826434,-0.000000;;, - 216;3;-0.000000, 0.826434,-0.000000;;, - 217;3;-0.000000, 0.826434,-0.000000;;, - 218;3;-0.000000, 0.826434, 0.000000;;, - 219;3;-0.000000, 0.826434,-0.000000;;, - 220;3;-0.000000, 0.826434, 0.000000;;, - 221;3; 0.000000, 0.826434, 0.000000;;, - 222;3;-0.000000, 0.826434, 0.000000;;, - 223;3; 0.000000, 0.826434,-0.000000;;, - 224;3; 0.000000, 0.826434,-0.000000;;, - 225;3; 0.000000, 0.826434, 0.000000;;, - 226;3; 0.000000, 0.826434, 0.000000;;, - 227;3; 0.000000, 0.826434, 0.000000;;, - 228;3;-0.000000, 0.826434, 0.000000;;, - 229;3; 0.000000, 0.826434, 0.000000;;, - 230;3; 0.000000, 0.826434, 0.000000;;, - 231;3; 0.000000, 0.826434,-0.000000;;, - 232;3;-0.000000, 0.826434,-0.000000;;, - 233;3; 0.000000, 0.826434, 0.000000;;, - 234;3; 0.000000, 0.826434, 0.000000;;, - 235;3; 0.000000, 0.826434, 0.000000;;, - 236;3; 0.000000, 0.826434, 0.000000;;, - 237;3; 0.000000, 0.826434, 0.000000;;, - 238;3; 0.000000, 0.826434, 0.000000;;, - 239;3; 0.000000, 0.826434, 0.000000;;, - 240;3; 0.000000, 0.826434, 0.000000;;, - 241;3; 0.000000, 0.826434, 0.000000;;, - 242;3; 0.000000, 0.826434, 0.000000;;, - 243;3; 0.000000, 0.826434, 0.000000;;, - 244;3; 0.000000, 0.826434, 0.000000;;, - 245;3; 0.000000, 0.826434, 0.000000;;, - 246;3; 0.000000, 0.826434, 0.000000;;, - 247;3; 0.000000, 0.826434, 0.000000;;, - 248;3; 0.000000, 0.826434, 0.000000;;, - 249;3; 0.000000, 0.826434, 0.000000;;; - } - } - Animation { - {Armature_Bone_020} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 1;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 2;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 3;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 4;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 5;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 6;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 7;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 8;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 9;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 10;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 11;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 12;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 13;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 14;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 15;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 16;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 17;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 18;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 19;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 20;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 21;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 22;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 23;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 24;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 25;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 26;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 27;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 28;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 29;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 30;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 31;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 32;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 33;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 34;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 35;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 36;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 37;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 38;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 39;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 40;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 41;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 42;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 43;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 44;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 45;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 46;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 47;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 48;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 49;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 50;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 51;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 52;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 53;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 54;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 55;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 56;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 57;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 58;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 59;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 60;4;-0.969660, 0.172274, 0.032946, 0.170275;;, - 61;4;-0.969685, 0.172117, 0.032898, 0.170282;;, - 62;4;-0.969726, 0.171854, 0.032820, 0.170295;;, - 63;4;-0.969784, 0.171485, 0.032709, 0.170312;;, - 64;4;-0.969860, 0.171010, 0.032566, 0.170335;;, - 65;4;-0.969951, 0.170429, 0.032392, 0.170362;;, - 66;4;-0.970059, 0.169743, 0.032186, 0.170394;;, - 67;4;-0.970184, 0.168955, 0.031949, 0.170431;;, - 68;4;-0.970324, 0.168067, 0.031683, 0.170473;;, - 69;4;-0.970479, 0.167082, 0.031387, 0.170519;;, - 70;4;-0.970649, 0.166005, 0.031064, 0.170570;;, - 71;4;-0.970833, 0.164841, 0.030715, 0.170625;;, - 72;4;-0.971029, 0.163597, 0.030341, 0.170683;;, - 73;4;-0.971237, 0.162280, 0.029946, 0.170745;;, - 74;4;-0.971455, 0.160898, 0.029531, 0.170810;;, - 75;4;-0.971682, 0.159460, 0.029100, 0.170878;;, - 76;4;-0.971916, 0.157977, 0.028655, 0.170948;;, - 77;4;-0.972156, 0.156459, 0.028199, 0.171019;;, - 78;4;-0.972399, 0.154918, 0.027736, 0.171092;;, - 79;4;-0.972644, 0.153364, 0.027270, 0.171165;;, - 80;4;-0.972889, 0.151811, 0.026804, 0.171238;;, - 81;4;-0.973133, 0.150270, 0.026341, 0.171311;;, - 82;4;-0.973372, 0.148752, 0.025886, 0.171382;;, - 83;4;-0.973606, 0.147268, 0.025441, 0.171452;;, - 84;4;-0.973833, 0.145831, 0.025009, 0.171519;;, - 85;4;-0.974051, 0.144449, 0.024594, 0.171584;;, - 86;4;-0.974259, 0.143132, 0.024199, 0.171646;;, - 87;4;-0.974455, 0.141887, 0.023826, 0.171705;;, - 88;4;-0.974639, 0.140724, 0.023476, 0.171760;;, - 89;4;-0.974809, 0.139647, 0.023153, 0.171810;;, - 90;4;-0.974964, 0.138662, 0.022857, 0.171857;;, - 91;4;-0.975105, 0.137773, 0.022591, 0.171899;;, - 92;4;-0.975229, 0.136985, 0.022354, 0.171936;;, - 93;4;-0.975337, 0.136299, 0.022148, 0.171968;;, - 94;4;-0.975429, 0.135718, 0.021974, 0.171995;;, - 95;4;-0.975504, 0.135243, 0.021831, 0.172018;;, - 96;4;-0.975562, 0.134874, 0.021721, 0.172035;;, - 97;4;-0.975604, 0.134611, 0.021642, 0.172047;;, - 98;4;-0.975628, 0.134454, 0.021595, 0.172055;;, - 99;4;-0.975637, 0.134402, 0.021579, 0.172057;;, - 100;4;-0.975372, 0.135547, 0.021924, 0.171988;;, - 101;4;-0.974549, 0.139101, 0.022996, 0.171774;;, - 102;4;-0.973151, 0.145140, 0.024817, 0.171410;;, - 103;4;-0.971214, 0.153508, 0.027340, 0.170906;;, - 104;4;-0.968842, 0.163754, 0.030429, 0.170289;;, - 105;4;-0.966204, 0.175152, 0.033866, 0.169602;;, - 106;4;-0.963493, 0.186862, 0.037397, 0.168897;;, - 107;4;-0.960885, 0.198129, 0.040794, 0.168218;;, - 108;4;-0.958504, 0.208414, 0.043895, 0.167599;;, - 109;4;-0.956421, 0.217410, 0.046607, 0.167057;;, - 110;4;-0.954474, 0.225951, 0.049182, 0.166547;;, - 111;4;-0.952480, 0.234935, 0.051889, 0.166019;;, - 112;4;-0.950450, 0.244258, 0.054698, 0.165477;;, - 113;4;-0.948403, 0.253734, 0.057552, 0.164929;;, - 114;4;-0.946368, 0.263102, 0.060374, 0.164386;;, - 115;4;-0.944376, 0.272073, 0.063078, 0.163858;;, - 116;4;-0.942451, 0.280397, 0.065587, 0.163357;;, - 117;4;-0.940613, 0.287918, 0.067857, 0.162889;;, - 118;4;-0.938865, 0.294583, 0.069871, 0.162456;;, - 119;4;-0.937206, 0.300418, 0.071636, 0.162056;;, - 120;4;-0.935522, 0.305681, 0.073231, 0.161659;;, - 121;4;-0.933726, 0.310514, 0.074701, 0.161241;;, - 122;4;-0.931869, 0.314796, 0.076009, 0.160815;;, - 123;4;-0.930028, 0.318414, 0.077118, 0.160399;;, - 124;4;-0.928306, 0.321287, 0.078005, 0.160019;;, - 125;4;-0.926808, 0.323405, 0.078663, 0.159697;;, - 126;4;-0.925614, 0.324832, 0.079109, 0.159453;;, - 127;4;-0.924769, 0.325687, 0.079379, 0.159295;;, - 128;4;-0.924276, 0.326109, 0.079513, 0.159222;;, - 129;4;-0.924113, 0.326225, 0.079551, 0.159227;;, - 130;4;-0.925247, 0.321972, 0.078266, 0.159548;;, - 131;4;-0.928679, 0.309174, 0.074398, 0.160428;;, - 132;4;-0.934265, 0.288365, 0.068109, 0.161831;;, - 133;4;-0.941576, 0.261147, 0.059883, 0.163651;;, - 134;4;-0.949860, 0.230314, 0.050565, 0.165704;;, - 135;4;-0.958146, 0.199480, 0.041247, 0.167750;;, - 136;4;-0.965461, 0.172263, 0.033021, 0.169554;;, - 137;4;-0.971053, 0.151453, 0.026732, 0.170930;;, - 138;4;-0.974494, 0.138655, 0.022864, 0.171776;;, - 139;4;-0.975637, 0.134402, 0.021579, 0.172057;;, - 140;4;-0.974549, 0.139101, 0.022996, 0.171774;;, - 141;4;-0.971214, 0.153508, 0.027340, 0.170906;;, - 142;4;-0.966204, 0.175152, 0.033866, 0.169602;;, - 143;4;-0.960885, 0.198129, 0.040794, 0.168218;;, - 144;4;-0.956421, 0.217410, 0.046607, 0.167057;;, - 145;4;-0.952480, 0.234935, 0.051889, 0.166019;;, - 146;4;-0.948403, 0.253734, 0.057552, 0.164929;;, - 147;4;-0.944376, 0.272073, 0.063078, 0.163858;;, - 148;4;-0.940613, 0.287918, 0.067857, 0.162889;;, - 149;4;-0.937206, 0.300418, 0.071636, 0.162056;;, - 150;4;-0.933726, 0.310514, 0.074701, 0.161241;;, - 151;4;-0.930028, 0.318414, 0.077118, 0.160399;;, - 152;4;-0.926808, 0.323405, 0.078663, 0.159697;;, - 153;4;-0.924769, 0.325687, 0.079379, 0.159295;;, - 154;4;-0.924113, 0.326225, 0.079551, 0.159227;;, - 155;4;-0.928679, 0.309174, 0.074398, 0.160428;;, - 156;4;-0.941576, 0.261147, 0.059883, 0.163651;;, - 157;4;-0.958146, 0.199480, 0.041247, 0.167750;;, - 158;4;-0.971053, 0.151453, 0.026732, 0.170930;;, - 159;4;-0.975637, 0.134402, 0.021579, 0.172057;;, - 160;4;-0.975636, 0.134611, 0.021642, 0.172057;;, - 161;4;-0.975632, 0.135243, 0.021831, 0.172056;;, - 162;4;-0.975622, 0.136299, 0.022149, 0.172053;;, - 163;4;-0.975600, 0.137773, 0.022591, 0.172046;;, - 164;4;-0.975560, 0.139647, 0.023153, 0.172034;;, - 165;4;-0.975498, 0.141887, 0.023826, 0.172016;;, - 166;4;-0.975406, 0.144449, 0.024594, 0.171989;;, - 167;4;-0.975279, 0.147268, 0.025441, 0.171950;;, - 168;4;-0.975108, 0.150270, 0.026341, 0.171900;;, - 169;4;-0.974889, 0.153364, 0.027270, 0.171834;;, - 170;4;-0.974616, 0.156459, 0.028199, 0.171753;;, - 171;4;-0.974286, 0.159460, 0.029100, 0.171654;;, - 172;4;-0.973897, 0.162280, 0.029946, 0.171538;;, - 173;4;-0.973449, 0.164841, 0.030715, 0.171405;;, - 174;4;-0.972943, 0.167082, 0.031387, 0.171254;;, - 175;4;-0.972382, 0.168955, 0.031949, 0.171087;;, - 176;4;-0.971768, 0.170429, 0.032392, 0.170904;;, - 177;4;-0.971106, 0.171485, 0.032709, 0.170706;;, - 178;4;-0.970399, 0.172117, 0.032898, 0.170495;;, - 179;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 180;4;-0.965531, 0.168065, 0.019598, 0.168830;;, - 181;4;-0.954679, 0.155242,-0.020619, 0.164950;;, - 182;4;-0.937538, 0.134391,-0.086010, 0.158793;;, - 183;4;-0.915398, 0.107120,-0.171538, 0.150822;;, - 184;4;-0.890490, 0.076225,-0.268428, 0.141844;;, - 185;4;-0.865687, 0.045331,-0.365317, 0.132897;;, - 186;4;-0.843856, 0.018060,-0.450846, 0.125019;;, - 187;4;-0.827198,-0.002791,-0.516237, 0.119005;;, - 188;4;-0.816967,-0.015614,-0.556454, 0.115311;;, - 189;4;-0.813572,-0.019875,-0.569817, 0.114084;;, - 190;4;-0.827046,-0.023230,-0.534655, 0.125702;;, - 191;4;-0.865000,-0.031081,-0.432377, 0.158428;;, - 192;4;-0.913733,-0.036874,-0.292359, 0.200447;;, - 193;4;-0.951687,-0.033040,-0.166392, 0.233173;;, - 194;4;-0.965162,-0.016514,-0.090924, 0.244791;;, - 195;4;-0.965561, 0.016499,-0.047013, 0.238167;;, - 196;4;-0.966685, 0.066771,-0.009930, 0.219510;;, - 197;4;-0.968129, 0.120606, 0.015961, 0.195554;;, - 198;4;-0.969253, 0.159193, 0.029356, 0.176896;;, - 199;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 200;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 201;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 202;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 203;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 204;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 205;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 206;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 207;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 208;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 209;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 210;4;-0.970723, 0.158536, 0.015007, 0.162588;;, - 211;4;-0.973864, 0.119692,-0.035566, 0.139040;;, - 212;4;-0.978223, 0.069818,-0.100501, 0.103692;;, - 213;4;-0.982256, 0.030974,-0.151073, 0.066213;;, - 214;4;-0.984846, 0.017184,-0.169028, 0.034825;;, - 215;4;-0.986276, 0.017107,-0.163674, 0.006756;;, - 216;4;-0.987037, 0.017119,-0.147202,-0.022787;;, - 217;4;-0.987192, 0.017750,-0.122311,-0.051730;;, - 218;4;-0.987050, 0.019440,-0.095644,-0.077662;;, - 219;4;-0.986941, 0.022217,-0.072944,-0.099585;;, - 220;4;-0.986718, 0.025571,-0.050107,-0.119738;;, - 221;4;-0.986134, 0.029503,-0.022908,-0.138776;;, - 222;4;-0.985394, 0.034678, 0.003061,-0.153757;;, - 223;4;-0.984822, 0.041467, 0.021141,-0.162475;;, - 224;4;-0.984619, 0.049679, 0.028460,-0.165070;;, - 225;4;-0.984472, 0.058866, 0.030398,-0.161777;;, - 226;4;-0.984028, 0.068826, 0.032030,-0.151824;;, - 227;4;-0.983289, 0.079468, 0.033340,-0.135262;;, - 228;4;-0.982270, 0.090642, 0.034316,-0.112436;;, - 229;4;-0.981004, 0.102132, 0.034962,-0.084067;;, - 230;4;-0.979541, 0.113658, 0.035293,-0.051301;;, - 231;4;-0.977952, 0.124891, 0.035346,-0.015694;;, - 232;4;-0.976319, 0.135478, 0.035174, 0.020897;;, - 233;4;-0.974730, 0.145086, 0.034842, 0.056504;;, - 234;4;-0.973267, 0.153438, 0.034421, 0.089270;;, - 235;4;-0.972001, 0.160338, 0.033977, 0.117639;;, - 236;4;-0.970982, 0.165676, 0.033570, 0.140464;;, - 237;4;-0.970243, 0.169425, 0.033244, 0.157026;;, - 238;4;-0.969799, 0.171617, 0.033034, 0.166980;;, - 239;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 240;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 241;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 242;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 243;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 244;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 245;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 246;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 247;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 248;4;-0.969652, 0.172326, 0.032961, 0.170273;;, - 249;4;-0.969652, 0.172326, 0.032961, 0.170273;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3; 0.000000, 0.683319, 0.000000;;, - 1;3; 0.000000, 0.683319, 0.000000;;, - 2;3; 0.000000, 0.683319, 0.000000;;, - 3;3; 0.000000, 0.683319, 0.000000;;, - 4;3; 0.000000, 0.683319, 0.000000;;, - 5;3; 0.000000, 0.683319, 0.000000;;, - 6;3; 0.000000, 0.683319, 0.000000;;, - 7;3; 0.000000, 0.683319, 0.000000;;, - 8;3; 0.000000, 0.683319, 0.000000;;, - 9;3; 0.000000, 0.683319, 0.000000;;, - 10;3; 0.000000, 0.683319, 0.000000;;, - 11;3; 0.000000, 0.683319, 0.000000;;, - 12;3; 0.000000, 0.683319, 0.000000;;, - 13;3; 0.000000, 0.683319, 0.000000;;, - 14;3; 0.000000, 0.683319, 0.000000;;, - 15;3; 0.000000, 0.683319, 0.000000;;, - 16;3; 0.000000, 0.683319, 0.000000;;, - 17;3; 0.000000, 0.683319, 0.000000;;, - 18;3; 0.000000, 0.683319, 0.000000;;, - 19;3; 0.000000, 0.683319, 0.000000;;, - 20;3; 0.000000, 0.683319, 0.000000;;, - 21;3; 0.000000, 0.683319, 0.000000;;, - 22;3; 0.000000, 0.683319, 0.000000;;, - 23;3; 0.000000, 0.683319, 0.000000;;, - 24;3; 0.000000, 0.683319, 0.000000;;, - 25;3; 0.000000, 0.683319, 0.000000;;, - 26;3; 0.000000, 0.683319, 0.000000;;, - 27;3; 0.000000, 0.683319, 0.000000;;, - 28;3; 0.000000, 0.683319, 0.000000;;, - 29;3; 0.000000, 0.683319, 0.000000;;, - 30;3; 0.000000, 0.683319, 0.000000;;, - 31;3; 0.000000, 0.683319, 0.000000;;, - 32;3; 0.000000, 0.683319, 0.000000;;, - 33;3; 0.000000, 0.683319, 0.000000;;, - 34;3; 0.000000, 0.683319, 0.000000;;, - 35;3; 0.000000, 0.683319, 0.000000;;, - 36;3; 0.000000, 0.683319, 0.000000;;, - 37;3; 0.000000, 0.683319, 0.000000;;, - 38;3; 0.000000, 0.683319, 0.000000;;, - 39;3; 0.000000, 0.683319, 0.000000;;, - 40;3; 0.000000, 0.683319, 0.000000;;, - 41;3; 0.000000, 0.683319, 0.000000;;, - 42;3; 0.000000, 0.683319, 0.000000;;, - 43;3; 0.000000, 0.683319, 0.000000;;, - 44;3; 0.000000, 0.683319, 0.000000;;, - 45;3; 0.000000, 0.683319, 0.000000;;, - 46;3; 0.000000, 0.683319, 0.000000;;, - 47;3; 0.000000, 0.683319, 0.000000;;, - 48;3; 0.000000, 0.683319, 0.000000;;, - 49;3; 0.000000, 0.683319, 0.000000;;, - 50;3; 0.000000, 0.683319, 0.000000;;, - 51;3; 0.000000, 0.683319, 0.000000;;, - 52;3; 0.000000, 0.683319, 0.000000;;, - 53;3; 0.000000, 0.683319, 0.000000;;, - 54;3; 0.000000, 0.683319, 0.000000;;, - 55;3; 0.000000, 0.683319, 0.000000;;, - 56;3; 0.000000, 0.683319, 0.000000;;, - 57;3; 0.000000, 0.683319, 0.000000;;, - 58;3; 0.000000, 0.683319, 0.000000;;, - 59;3; 0.000000, 0.683319, 0.000000;;, - 60;3; 0.000000, 0.683319, 0.000000;;, - 61;3; 0.000000, 0.683319, 0.000000;;, - 62;3; 0.000000, 0.683319, 0.000000;;, - 63;3; 0.000000, 0.683319, 0.000000;;, - 64;3; 0.000000, 0.683319, 0.000000;;, - 65;3; 0.000000, 0.683319, 0.000000;;, - 66;3; 0.000000, 0.683319, 0.000000;;, - 67;3; 0.000000, 0.683319, 0.000000;;, - 68;3; 0.000000, 0.683319, 0.000000;;, - 69;3; 0.000000, 0.683319, 0.000000;;, - 70;3; 0.000000, 0.683319, 0.000000;;, - 71;3; 0.000000, 0.683319, 0.000000;;, - 72;3; 0.000000, 0.683319, 0.000000;;, - 73;3; 0.000000, 0.683319, 0.000000;;, - 74;3; 0.000000, 0.683319, 0.000000;;, - 75;3; 0.000000, 0.683319, 0.000000;;, - 76;3; 0.000000, 0.683319, 0.000000;;, - 77;3; 0.000000, 0.683319, 0.000000;;, - 78;3; 0.000000, 0.683319, 0.000000;;, - 79;3; 0.000000, 0.683319, 0.000000;;, - 80;3; 0.000000, 0.683319, 0.000000;;, - 81;3; 0.000000, 0.683319, 0.000000;;, - 82;3; 0.000000, 0.683319, 0.000000;;, - 83;3; 0.000000, 0.683319, 0.000000;;, - 84;3; 0.000000, 0.683319, 0.000000;;, - 85;3; 0.000000, 0.683319, 0.000000;;, - 86;3; 0.000000, 0.683319, 0.000000;;, - 87;3; 0.000000, 0.683319, 0.000000;;, - 88;3; 0.000000, 0.683319, 0.000000;;, - 89;3; 0.000000, 0.683319, 0.000000;;, - 90;3; 0.000000, 0.683319, 0.000000;;, - 91;3; 0.000000, 0.683319, 0.000000;;, - 92;3; 0.000000, 0.683319, 0.000000;;, - 93;3; 0.000000, 0.683319, 0.000000;;, - 94;3; 0.000000, 0.683319, 0.000000;;, - 95;3; 0.000000, 0.683319, 0.000000;;, - 96;3; 0.000000, 0.683319, 0.000000;;, - 97;3; 0.000000, 0.683319, 0.000000;;, - 98;3; 0.000000, 0.683319, 0.000000;;, - 99;3; 0.000000, 0.683319, 0.000000;;, - 100;3; 0.000000, 0.683319, 0.000000;;, - 101;3; 0.000000, 0.683319, 0.000000;;, - 102;3; 0.000000, 0.683319, 0.000000;;, - 103;3; 0.000000, 0.683319, 0.000000;;, - 104;3; 0.000000, 0.683319, 0.000000;;, - 105;3; 0.000000, 0.683319, 0.000000;;, - 106;3; 0.000000, 0.683319, 0.000000;;, - 107;3; 0.000000, 0.683319, 0.000000;;, - 108;3; 0.000000, 0.683319, 0.000000;;, - 109;3; 0.000000, 0.683319, 0.000000;;, - 110;3; 0.000000, 0.683319, 0.000000;;, - 111;3; 0.000000, 0.683319, 0.000000;;, - 112;3; 0.000000, 0.683319, 0.000000;;, - 113;3; 0.000000, 0.683319, 0.000000;;, - 114;3; 0.000000, 0.683319, 0.000000;;, - 115;3; 0.000000, 0.683319, 0.000000;;, - 116;3; 0.000000, 0.683319, 0.000000;;, - 117;3; 0.000000, 0.683319, 0.000000;;, - 118;3; 0.000000, 0.683319, 0.000000;;, - 119;3; 0.000000, 0.683319, 0.000000;;, - 120;3; 0.000000, 0.683319, 0.000000;;, - 121;3; 0.000000, 0.683319, 0.000000;;, - 122;3; 0.000000, 0.683319, 0.000000;;, - 123;3; 0.000000, 0.683319, 0.000000;;, - 124;3; 0.000000, 0.683319, 0.000000;;, - 125;3; 0.000000, 0.683319, 0.000000;;, - 126;3; 0.000000, 0.683319, 0.000000;;, - 127;3; 0.000000, 0.683319, 0.000000;;, - 128;3; 0.000000, 0.683319, 0.000000;;, - 129;3; 0.000000, 0.683319, 0.000000;;, - 130;3; 0.000000, 0.683319, 0.000000;;, - 131;3; 0.000000, 0.683319, 0.000000;;, - 132;3; 0.000000, 0.683319, 0.000000;;, - 133;3; 0.000000, 0.683319, 0.000000;;, - 134;3; 0.000000, 0.683319, 0.000000;;, - 135;3; 0.000000, 0.683319, 0.000000;;, - 136;3; 0.000000, 0.683319, 0.000000;;, - 137;3; 0.000000, 0.683319, 0.000000;;, - 138;3; 0.000000, 0.683319, 0.000000;;, - 139;3; 0.000000, 0.683319, 0.000000;;, - 140;3; 0.000000, 0.683319, 0.000000;;, - 141;3; 0.000000, 0.683319, 0.000000;;, - 142;3; 0.000000, 0.683319, 0.000000;;, - 143;3; 0.000000, 0.683319, 0.000000;;, - 144;3; 0.000000, 0.683319, 0.000000;;, - 145;3; 0.000000, 0.683319, 0.000000;;, - 146;3; 0.000000, 0.683319, 0.000000;;, - 147;3; 0.000000, 0.683319, 0.000000;;, - 148;3; 0.000000, 0.683319, 0.000000;;, - 149;3; 0.000000, 0.683319, 0.000000;;, - 150;3; 0.000000, 0.683319, 0.000000;;, - 151;3; 0.000000, 0.683319, 0.000000;;, - 152;3; 0.000000, 0.683319, 0.000000;;, - 153;3; 0.000000, 0.683319, 0.000000;;, - 154;3; 0.000000, 0.683319, 0.000000;;, - 155;3; 0.000000, 0.683319, 0.000000;;, - 156;3; 0.000000, 0.683319, 0.000000;;, - 157;3; 0.000000, 0.683319, 0.000000;;, - 158;3; 0.000000, 0.683319, 0.000000;;, - 159;3; 0.000000, 0.683319, 0.000000;;, - 160;3; 0.000000, 0.683319, 0.000000;;, - 161;3; 0.000000, 0.683319, 0.000000;;, - 162;3; 0.000000, 0.683319, 0.000000;;, - 163;3; 0.000000, 0.683319, 0.000000;;, - 164;3; 0.000000, 0.683319, 0.000000;;, - 165;3; 0.000000, 0.683319, 0.000000;;, - 166;3; 0.000000, 0.683319, 0.000000;;, - 167;3; 0.000000, 0.683319, 0.000000;;, - 168;3; 0.000000, 0.683319, 0.000000;;, - 169;3; 0.000000, 0.683319, 0.000000;;, - 170;3; 0.000000, 0.683319, 0.000000;;, - 171;3; 0.000000, 0.683319, 0.000000;;, - 172;3; 0.000000, 0.683319, 0.000000;;, - 173;3; 0.000000, 0.683319, 0.000000;;, - 174;3; 0.000000, 0.683319, 0.000000;;, - 175;3; 0.000000, 0.683319, 0.000000;;, - 176;3; 0.000000, 0.683319, 0.000000;;, - 177;3; 0.000000, 0.683319, 0.000000;;, - 178;3; 0.000000, 0.683319, 0.000000;;, - 179;3; 0.000000, 0.683319, 0.000000;;, - 180;3;-0.000000, 0.683319, 0.000000;;, - 181;3;-0.000000, 0.683319,-0.000000;;, - 182;3;-0.000000, 0.683319, 0.000000;;, - 183;3;-0.000000, 0.683319, 0.000000;;, - 184;3; 0.000000, 0.683319, 0.000000;;, - 185;3; 0.000000, 0.683319, 0.000000;;, - 186;3;-0.000000, 0.683319, 0.000000;;, - 187;3; 0.000000, 0.683319, 0.000000;;, - 188;3; 0.000000, 0.683319, 0.000000;;, - 189;3;-0.000000, 0.683319,-0.000000;;, - 190;3; 0.000000, 0.683319, 0.000000;;, - 191;3;-0.000000, 0.683319,-0.000000;;, - 192;3; 0.000000, 0.683319,-0.000000;;, - 193;3; 0.000000, 0.683320,-0.000000;;, - 194;3;-0.000000, 0.683319,-0.000000;;, - 195;3; 0.000000, 0.683319, 0.000000;;, - 196;3;-0.000000, 0.683319, 0.000000;;, - 197;3; 0.000000, 0.683319, 0.000000;;, - 198;3; 0.000000, 0.683319,-0.000000;;, - 199;3; 0.000000, 0.683319, 0.000000;;, - 200;3; 0.000000, 0.683319, 0.000000;;, - 201;3; 0.000000, 0.683319, 0.000000;;, - 202;3; 0.000000, 0.683319, 0.000000;;, - 203;3; 0.000000, 0.683319, 0.000000;;, - 204;3; 0.000000, 0.683319, 0.000000;;, - 205;3; 0.000000, 0.683319, 0.000000;;, - 206;3; 0.000000, 0.683319, 0.000000;;, - 207;3; 0.000000, 0.683319, 0.000000;;, - 208;3; 0.000000, 0.683319, 0.000000;;, - 209;3; 0.000000, 0.683319, 0.000000;;, - 210;3; 0.000000, 0.683319, 0.000000;;, - 211;3;-0.000000, 0.683319,-0.000000;;, - 212;3;-0.000000, 0.683319,-0.000000;;, - 213;3; 0.000000, 0.683319,-0.000000;;, - 214;3;-0.000000, 0.683319, 0.000000;;, - 215;3; 0.000000, 0.683319, 0.000000;;, - 216;3;-0.000000, 0.683319, 0.000000;;, - 217;3;-0.000000, 0.683319, 0.000000;;, - 218;3;-0.000000, 0.683319,-0.000000;;, - 219;3;-0.000000, 0.683319,-0.000000;;, - 220;3;-0.000000, 0.683320,-0.000000;;, - 221;3;-0.000000, 0.683319, 0.000000;;, - 222;3; 0.000000, 0.683319, 0.000000;;, - 223;3; 0.000000, 0.683319,-0.000000;;, - 224;3; 0.000000, 0.683319, 0.000000;;, - 225;3; 0.000000, 0.683319, 0.000000;;, - 226;3;-0.000000, 0.683319,-0.000000;;, - 227;3; 0.000000, 0.683319,-0.000000;;, - 228;3; 0.000000, 0.683319, 0.000000;;, - 229;3;-0.000000, 0.683319, 0.000000;;, - 230;3;-0.000000, 0.683319,-0.000000;;, - 231;3; 0.000000, 0.683319, 0.000000;;, - 232;3;-0.000000, 0.683319, 0.000000;;, - 233;3;-0.000000, 0.683319,-0.000000;;, - 234;3; 0.000000, 0.683319,-0.000000;;, - 235;3; 0.000000, 0.683319,-0.000000;;, - 236;3;-0.000000, 0.683319,-0.000000;;, - 237;3; 0.000000, 0.683319, 0.000000;;, - 238;3;-0.000000, 0.683319,-0.000000;;, - 239;3; 0.000000, 0.683319, 0.000000;;, - 240;3; 0.000000, 0.683319, 0.000000;;, - 241;3; 0.000000, 0.683319, 0.000000;;, - 242;3; 0.000000, 0.683319, 0.000000;;, - 243;3; 0.000000, 0.683319, 0.000000;;, - 244;3; 0.000000, 0.683319, 0.000000;;, - 245;3; 0.000000, 0.683319, 0.000000;;, - 246;3; 0.000000, 0.683319, 0.000000;;, - 247;3; 0.000000, 0.683319, 0.000000;;, - 248;3; 0.000000, 0.683319, 0.000000;;, - 249;3; 0.000000, 0.683319, 0.000000;;; - } - } - Animation { - {Armature_Bone_024} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 1;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 2;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 3;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 4;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 5;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 6;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 7;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 8;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 9;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 10;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 11;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 12;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 13;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 14;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 15;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 16;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 17;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 18;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 19;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 20;4;-0.946563,-0.322516,-0.000012,-0.000000;;, - 21;4;-0.946459,-0.322813,-0.000049,-0.000001;;, - 22;4;-0.946284,-0.323309,-0.000111,-0.000002;;, - 23;4;-0.946041,-0.324002,-0.000198,-0.000004;;, - 24;4;-0.945731,-0.324883,-0.000308,-0.000006;;, - 25;4;-0.945361,-0.325937,-0.000440,-0.000009;;, - 26;4;-0.944938,-0.327141,-0.000590,-0.000012;;, - 27;4;-0.944472,-0.328467,-0.000755,-0.000015;;, - 28;4;-0.943976,-0.329878,-0.000932,-0.000019;;, - 29;4;-0.943465,-0.331333,-0.001113,-0.000022;;, - 30;4;-0.942954,-0.332789,-0.001295,-0.000026;;, - 31;4;-0.942458,-0.334200,-0.001471,-0.000030;;, - 32;4;-0.941992,-0.335525,-0.001637,-0.000033;;, - 33;4;-0.941569,-0.336730,-0.001787,-0.000036;;, - 34;4;-0.941199,-0.337784,-0.001919,-0.000038;;, - 35;4;-0.940889,-0.338664,-0.002029,-0.000041;;, - 36;4;-0.940646,-0.339357,-0.002115,-0.000042;;, - 37;4;-0.940471,-0.339854,-0.002177,-0.000044;;, - 38;4;-0.940367,-0.340151,-0.002214,-0.000044;;, - 39;4;-0.940333,-0.340249,-0.002227,-0.000045;;, - 40;4;-0.940343,-0.340233,-0.002224,-0.000045;;, - 41;4;-0.940378,-0.340176,-0.002217,-0.000044;;, - 42;4;-0.940438,-0.340071,-0.002203,-0.000044;;, - 43;4;-0.940529,-0.339905,-0.002181,-0.000044;;, - 44;4;-0.940651,-0.339667,-0.002150,-0.000043;;, - 45;4;-0.940808,-0.339345,-0.002108,-0.000042;;, - 46;4;-0.941004,-0.338924,-0.002053,-0.000041;;, - 47;4;-0.941238,-0.338393,-0.001985,-0.000040;;, - 48;4;-0.941513,-0.337742,-0.001902,-0.000038;;, - 49;4;-0.941828,-0.336961,-0.001803,-0.000036;;, - 50;4;-0.942182,-0.336046,-0.001688,-0.000034;;, - 51;4;-0.942573,-0.334995,-0.001556,-0.000031;;, - 52;4;-0.942998,-0.333810,-0.001407,-0.000028;;, - 53;4;-0.943453,-0.332497,-0.001244,-0.000025;;, - 54;4;-0.943934,-0.331061,-0.001065,-0.000021;;, - 55;4;-0.944437,-0.329514,-0.000874,-0.000018;;, - 56;4;-0.944959,-0.327866,-0.000670,-0.000013;;, - 57;4;-0.945495,-0.326127,-0.000456,-0.000009;;, - 58;4;-0.946042,-0.324307,-0.000232,-0.000005;;, - 59;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 60;4;-0.947182,-0.320398, 0.000247, 0.000005;;, - 61;4;-0.947817,-0.318183, 0.000518, 0.000010;;, - 62;4;-0.948503,-0.315774, 0.000813, 0.000016;;, - 63;4;-0.949240,-0.313171, 0.001131, 0.000023;;, - 64;4;-0.950025,-0.310377, 0.001473, 0.000030;;, - 65;4;-0.950859,-0.307397, 0.001837, 0.000037;;, - 66;4;-0.951741,-0.304234, 0.002223, 0.000045;;, - 67;4;-0.952667,-0.300896, 0.002631, 0.000053;;, - 68;4;-0.953636,-0.297391, 0.003058, 0.000061;;, - 69;4;-0.954645,-0.293730, 0.003505, 0.000070;;, - 70;4;-0.955691,-0.289925, 0.003969, 0.000080;;, - 71;4;-0.956770,-0.285989, 0.004449, 0.000089;;, - 72;4;-0.957877,-0.281940, 0.004943, 0.000099;;, - 73;4;-0.959008,-0.277794, 0.005448, 0.000109;;, - 74;4;-0.960158,-0.273572, 0.005962, 0.000120;;, - 75;4;-0.961320,-0.269296, 0.006483, 0.000130;;, - 76;4;-0.962489,-0.264987, 0.007008, 0.000141;;, - 77;4;-0.963659,-0.260671, 0.007534, 0.000151;;, - 78;4;-0.964822,-0.256372, 0.008058, 0.000162;;, - 79;4;-0.965972,-0.252114, 0.008576, 0.000172;;, - 80;4;-0.967103,-0.247924, 0.009086, 0.000182;;, - 81;4;-0.968207,-0.243826, 0.009585, 0.000192;;, - 82;4;-0.969279,-0.239844, 0.010070, 0.000202;;, - 83;4;-0.970313,-0.236001, 0.010538, 0.000211;;, - 84;4;-0.971303,-0.232316, 0.010987, 0.000220;;, - 85;4;-0.972245,-0.228811, 0.011413, 0.000229;;, - 86;4;-0.973133,-0.225501, 0.011816, 0.000237;;, - 87;4;-0.973964,-0.222402, 0.012193, 0.000245;;, - 88;4;-0.974734,-0.219526, 0.012543, 0.000252;;, - 89;4;-0.975441,-0.216886, 0.012865, 0.000258;;, - 90;4;-0.976083,-0.214487, 0.013156, 0.000264;;, - 91;4;-0.976658,-0.212338, 0.013418, 0.000269;;, - 92;4;-0.977164,-0.210442, 0.013649, 0.000274;;, - 93;4;-0.977602,-0.208803, 0.013848, 0.000278;;, - 94;4;-0.977971,-0.207421, 0.014016, 0.000281;;, - 95;4;-0.978271,-0.206296, 0.014153, 0.000284;;, - 96;4;-0.978503,-0.205427, 0.014259, 0.000286;;, - 97;4;-0.978668,-0.204810, 0.014334, 0.000287;;, - 98;4;-0.978765,-0.204444, 0.014378, 0.000288;;, - 99;4;-0.978798,-0.204322, 0.014393, 0.000289;;, - 100;4;-0.977917,-0.206530, 0.014114, 0.000283;;, - 101;4;-0.975180,-0.213386, 0.013245, 0.000266;;, - 102;4;-0.970531,-0.225034, 0.011769, 0.000236;;, - 103;4;-0.964087,-0.241176, 0.009724, 0.000195;;, - 104;4;-0.956199,-0.260939, 0.007221, 0.000145;;, - 105;4;-0.947423,-0.282925, 0.004436, 0.000089;;, - 106;4;-0.938406,-0.305513, 0.001574, 0.000032;;, - 107;4;-0.929731,-0.327247,-0.001179,-0.000024;;, - 108;4;-0.921813,-0.347085,-0.003693,-0.000074;;, - 109;4;-0.914886,-0.364439,-0.005891,-0.000118;;, - 110;4;-0.907959,-0.381793,-0.008089,-0.000162;;, - 111;4;-0.900040,-0.401631,-0.010603,-0.000213;;, - 112;4;-0.891365,-0.423365,-0.013356,-0.000268;;, - 113;4;-0.882348,-0.445954,-0.016218,-0.000325;;, - 114;4;-0.873572,-0.467939,-0.019003,-0.000381;;, - 115;4;-0.865684,-0.487702,-0.021506,-0.000431;;, - 116;4;-0.859241,-0.503845,-0.023551,-0.000472;;, - 117;4;-0.854591,-0.515492,-0.025027,-0.000502;;, - 118;4;-0.851854,-0.522349,-0.025896,-0.000519;;, - 119;4;-0.850973,-0.524556,-0.026175,-0.000525;;, - 120;4;-0.851854,-0.522349,-0.025896,-0.000519;;, - 121;4;-0.854591,-0.515492,-0.025027,-0.000502;;, - 122;4;-0.859240,-0.503845,-0.023551,-0.000472;;, - 123;4;-0.865684,-0.487702,-0.021506,-0.000431;;, - 124;4;-0.873572,-0.467939,-0.019003,-0.000381;;, - 125;4;-0.882348,-0.445954,-0.016218,-0.000325;;, - 126;4;-0.891365,-0.423365,-0.013356,-0.000268;;, - 127;4;-0.900040,-0.401631,-0.010603,-0.000213;;, - 128;4;-0.907959,-0.381793,-0.008089,-0.000162;;, - 129;4;-0.914886,-0.364439,-0.005891,-0.000118;;, - 130;4;-0.921813,-0.347085,-0.003693,-0.000074;;, - 131;4;-0.929731,-0.327247,-0.001179,-0.000024;;, - 132;4;-0.938406,-0.305513, 0.001574, 0.000032;;, - 133;4;-0.947423,-0.282925, 0.004436, 0.000089;;, - 134;4;-0.956199,-0.260939, 0.007221, 0.000145;;, - 135;4;-0.964087,-0.241176, 0.009724, 0.000195;;, - 136;4;-0.970531,-0.225034, 0.011769, 0.000236;;, - 137;4;-0.975180,-0.213386, 0.013245, 0.000266;;, - 138;4;-0.977917,-0.206530, 0.014114, 0.000283;;, - 139;4;-0.978798,-0.204322, 0.014393, 0.000289;;, - 140;4;-0.975180,-0.213386, 0.013245, 0.000266;;, - 141;4;-0.964087,-0.241176, 0.009724, 0.000195;;, - 142;4;-0.947423,-0.282925, 0.004436, 0.000089;;, - 143;4;-0.929731,-0.327247,-0.001179,-0.000024;;, - 144;4;-0.914886,-0.364439,-0.005891,-0.000118;;, - 145;4;-0.900040,-0.401631,-0.010603,-0.000213;;, - 146;4;-0.882348,-0.445954,-0.016218,-0.000325;;, - 147;4;-0.865684,-0.487702,-0.021506,-0.000431;;, - 148;4;-0.854591,-0.515492,-0.025027,-0.000502;;, - 149;4;-0.850973,-0.524556,-0.026175,-0.000525;;, - 150;4;-0.854591,-0.515492,-0.025027,-0.000502;;, - 151;4;-0.865684,-0.487702,-0.021506,-0.000431;;, - 152;4;-0.882348,-0.445954,-0.016218,-0.000325;;, - 153;4;-0.900040,-0.401631,-0.010603,-0.000213;;, - 154;4;-0.914886,-0.364439,-0.005891,-0.000118;;, - 155;4;-0.929731,-0.327247,-0.001179,-0.000024;;, - 156;4;-0.947423,-0.282925, 0.004436, 0.000089;;, - 157;4;-0.964087,-0.241176, 0.009724, 0.000195;;, - 158;4;-0.975180,-0.213386, 0.013245, 0.000266;;, - 159;4;-0.978798,-0.204322, 0.014393, 0.000289;;, - 160;4;-0.978620,-0.204973, 0.014314, 0.000287;;, - 161;4;-0.978084,-0.206941, 0.014074, 0.000282;;, - 162;4;-0.977187,-0.210230, 0.013673, 0.000274;;, - 163;4;-0.975936,-0.214820, 0.013114, 0.000263;;, - 164;4;-0.974345,-0.220653, 0.012403, 0.000249;;, - 165;4;-0.972442,-0.227631, 0.011552, 0.000232;;, - 166;4;-0.970268,-0.235607, 0.010580, 0.000212;;, - 167;4;-0.967874,-0.244388, 0.009510, 0.000191;;, - 168;4;-0.965325,-0.253733, 0.008371, 0.000168;;, - 169;4;-0.962698,-0.263370, 0.007197, 0.000144;;, - 170;4;-0.960070,-0.273007, 0.006022, 0.000121;;, - 171;4;-0.957522,-0.282352, 0.004883, 0.000098;;, - 172;4;-0.955128,-0.291132, 0.003813, 0.000076;;, - 173;4;-0.952953,-0.299109, 0.002841, 0.000057;;, - 174;4;-0.951050,-0.306087, 0.001990, 0.000040;;, - 175;4;-0.949460,-0.311920, 0.001279, 0.000026;;, - 176;4;-0.948208,-0.316510, 0.000720, 0.000014;;, - 177;4;-0.947312,-0.319799, 0.000319, 0.000006;;, - 178;4;-0.946775,-0.321766, 0.000079, 0.000002;;, - 179;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 180;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 181;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 182;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 183;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 184;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 185;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 186;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 187;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 188;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 189;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 190;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 191;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 192;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 193;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 194;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 195;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 196;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 197;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 198;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 199;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 200;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 201;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 202;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 203;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 204;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 205;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 206;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 207;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 208;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 209;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 210;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 211;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 212;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 213;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 214;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 215;4;-0.948108,-0.306233,-0.018788,-0.007508;;, - 216;4;-0.952361,-0.260647,-0.071707,-0.028655;;, - 217;4;-0.957822,-0.202115,-0.139655,-0.055807;;, - 218;4;-0.962075,-0.156528,-0.192575,-0.076954;;, - 219;4;-0.963585,-0.140344,-0.211363,-0.084462;;, - 220;4;-0.962075,-0.156528,-0.192575,-0.076954;;, - 221;4;-0.957822,-0.202115,-0.139655,-0.055807;;, - 222;4;-0.952361,-0.260647,-0.071707,-0.028655;;, - 223;4;-0.948108,-0.306233,-0.018788,-0.007508;;, - 224;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 225;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 226;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 227;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 228;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 229;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 230;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 231;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 232;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 233;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 234;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 235;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 236;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 237;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 238;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 239;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 240;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 241;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 242;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 243;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 244;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 245;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 246;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 247;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 248;4;-0.946598,-0.322417,-0.000000,-0.000000;;, - 249;4;-0.946598,-0.322417,-0.000000,-0.000000;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3; 0.000000, 1.294482, 0.000000;;, - 1;3; 0.000000, 1.294482, 0.000000;;, - 2;3; 0.000000, 1.294482, 0.000000;;, - 3;3; 0.000000, 1.294482, 0.000000;;, - 4;3; 0.000000, 1.294482, 0.000000;;, - 5;3; 0.000000, 1.294482, 0.000000;;, - 6;3; 0.000000, 1.294482, 0.000000;;, - 7;3; 0.000000, 1.294482, 0.000000;;, - 8;3; 0.000000, 1.294482, 0.000000;;, - 9;3; 0.000000, 1.294482, 0.000000;;, - 10;3; 0.000000, 1.294482, 0.000000;;, - 11;3; 0.000000, 1.294482, 0.000000;;, - 12;3; 0.000000, 1.294482, 0.000000;;, - 13;3; 0.000000, 1.294482, 0.000000;;, - 14;3; 0.000000, 1.294482, 0.000000;;, - 15;3; 0.000000, 1.294482, 0.000000;;, - 16;3; 0.000000, 1.294482, 0.000000;;, - 17;3; 0.000000, 1.294482, 0.000000;;, - 18;3; 0.000000, 1.294482, 0.000000;;, - 19;3; 0.000000, 1.294482, 0.000000;;, - 20;3; 0.000000, 1.294482, 0.000000;;, - 21;3; 0.000000, 1.294482, 0.000000;;, - 22;3; 0.000000, 1.294482, 0.000000;;, - 23;3; 0.000000, 1.294482, 0.000000;;, - 24;3; 0.000000, 1.294482, 0.000000;;, - 25;3; 0.000000, 1.294482, 0.000000;;, - 26;3; 0.000000, 1.294482, 0.000000;;, - 27;3; 0.000000, 1.294482, 0.000000;;, - 28;3; 0.000000, 1.294482, 0.000000;;, - 29;3; 0.000000, 1.294482, 0.000000;;, - 30;3; 0.000000, 1.294482, 0.000000;;, - 31;3; 0.000000, 1.294482, 0.000000;;, - 32;3; 0.000000, 1.294482, 0.000000;;, - 33;3; 0.000000, 1.294482, 0.000000;;, - 34;3; 0.000000, 1.294482, 0.000000;;, - 35;3; 0.000000, 1.294482, 0.000000;;, - 36;3; 0.000000, 1.294482, 0.000000;;, - 37;3; 0.000000, 1.294482, 0.000000;;, - 38;3; 0.000000, 1.294482, 0.000000;;, - 39;3; 0.000000, 1.294482, 0.000000;;, - 40;3; 0.000000, 1.294482, 0.000000;;, - 41;3; 0.000000, 1.294482, 0.000000;;, - 42;3; 0.000000, 1.294482, 0.000000;;, - 43;3; 0.000000, 1.294482, 0.000000;;, - 44;3; 0.000000, 1.294482, 0.000000;;, - 45;3; 0.000000, 1.294482, 0.000000;;, - 46;3; 0.000000, 1.294482, 0.000000;;, - 47;3; 0.000000, 1.294482, 0.000000;;, - 48;3; 0.000000, 1.294482, 0.000000;;, - 49;3; 0.000000, 1.294482, 0.000000;;, - 50;3; 0.000000, 1.294482, 0.000000;;, - 51;3; 0.000000, 1.294482, 0.000000;;, - 52;3; 0.000000, 1.294482, 0.000000;;, - 53;3; 0.000000, 1.294482, 0.000000;;, - 54;3; 0.000000, 1.294482, 0.000000;;, - 55;3; 0.000000, 1.294482, 0.000000;;, - 56;3; 0.000000, 1.294482, 0.000000;;, - 57;3; 0.000000, 1.294482, 0.000000;;, - 58;3; 0.000000, 1.294482, 0.000000;;, - 59;3; 0.000000, 1.294482, 0.000000;;, - 60;3; 0.000000, 1.294482, 0.000000;;, - 61;3; 0.000000, 1.294482, 0.000000;;, - 62;3; 0.000000, 1.294481,-0.000000;;, - 63;3;-0.000000, 1.294482, 0.000000;;, - 64;3;-0.000000, 1.294482,-0.000000;;, - 65;3; 0.000000, 1.294482,-0.000000;;, - 66;3; 0.000000, 1.294482, 0.000000;;, - 67;3; 0.000000, 1.294482, 0.000000;;, - 68;3; 0.000000, 1.294482, 0.000000;;, - 69;3; 0.000000, 1.294482, 0.000000;;, - 70;3; 0.000000, 1.294482, 0.000000;;, - 71;3;-0.000000, 1.294482,-0.000000;;, - 72;3; 0.000000, 1.294481,-0.000000;;, - 73;3;-0.000000, 1.294482, 0.000000;;, - 74;3;-0.000000, 1.294482, 0.000000;;, - 75;3; 0.000000, 1.294482, 0.000000;;, - 76;3; 0.000000, 1.294482, 0.000000;;, - 77;3; 0.000000, 1.294482,-0.000000;;, - 78;3; 0.000000, 1.294481, 0.000000;;, - 79;3; 0.000000, 1.294482, 0.000000;;, - 80;3;-0.000000, 1.294482, 0.000000;;, - 81;3; 0.000000, 1.294482, 0.000000;;, - 82;3; 0.000000, 1.294482, 0.000000;;, - 83;3; 0.000000, 1.294482, 0.000000;;, - 84;3;-0.000000, 1.294482, 0.000000;;, - 85;3; 0.000000, 1.294482, 0.000000;;, - 86;3; 0.000000, 1.294482, 0.000000;;, - 87;3; 0.000000, 1.294482,-0.000000;;, - 88;3; 0.000000, 1.294482,-0.000000;;, - 89;3; 0.000000, 1.294482,-0.000000;;, - 90;3; 0.000000, 1.294482, 0.000000;;, - 91;3; 0.000000, 1.294482, 0.000000;;, - 92;3; 0.000000, 1.294482, 0.000000;;, - 93;3; 0.000000, 1.294482, 0.000000;;, - 94;3; 0.000000, 1.294481, 0.000000;;, - 95;3; 0.000000, 1.294482, 0.000000;;, - 96;3;-0.000000, 1.294482,-0.000000;;, - 97;3; 0.000000, 1.294482, 0.000000;;, - 98;3; 0.000000, 1.294482, 0.000000;;, - 99;3; 0.000000, 1.294482, 0.000000;;, - 100;3; 0.000000, 1.294482,-0.000000;;, - 101;3; 0.000000, 1.294481, 0.000000;;, - 102;3; 0.000000, 1.294482, 0.000000;;, - 103;3; 0.000000, 1.294482, 0.000000;;, - 104;3; 0.000000, 1.294482,-0.000000;;, - 105;3; 0.000000, 1.294482, 0.000000;;, - 106;3; 0.000000, 1.294482,-0.000000;;, - 107;3; 0.000000, 1.294482, 0.000000;;, - 108;3; 0.000000, 1.294481,-0.000000;;, - 109;3; 0.000000, 1.294482, 0.000000;;, - 110;3;-0.000000, 1.294482,-0.000000;;, - 111;3;-0.000000, 1.294482,-0.000000;;, - 112;3;-0.000000, 1.294482, 0.000000;;, - 113;3;-0.000000, 1.294482,-0.000000;;, - 114;3; 0.000000, 1.294482,-0.000000;;, - 115;3;-0.000000, 1.294482,-0.000000;;, - 116;3; 0.000000, 1.294482, 0.000000;;, - 117;3;-0.000000, 1.294482, 0.000000;;, - 118;3;-0.000000, 1.294481, 0.000000;;, - 119;3;-0.000000, 1.294482,-0.000000;;, - 120;3;-0.000000, 1.294482, 0.000000;;, - 121;3;-0.000000, 1.294482,-0.000000;;, - 122;3; 0.000000, 1.294482,-0.000000;;, - 123;3;-0.000000, 1.294481,-0.000000;;, - 124;3; 0.000000, 1.294482,-0.000000;;, - 125;3; 0.000000, 1.294482,-0.000000;;, - 126;3; 0.000000, 1.294482,-0.000000;;, - 127;3; 0.000000, 1.294482, 0.000000;;, - 128;3; 0.000000, 1.294482, 0.000000;;, - 129;3;-0.000000, 1.294482, 0.000000;;, - 130;3; 0.000000, 1.294482, 0.000000;;, - 131;3; 0.000000, 1.294482, 0.000000;;, - 132;3; 0.000000, 1.294481, 0.000000;;, - 133;3; 0.000000, 1.294482,-0.000000;;, - 134;3;-0.000000, 1.294482, 0.000000;;, - 135;3; 0.000000, 1.294482,-0.000000;;, - 136;3; 0.000000, 1.294482, 0.000000;;, - 137;3;-0.000000, 1.294482,-0.000000;;, - 138;3;-0.000000, 1.294482,-0.000000;;, - 139;3; 0.000000, 1.294482, 0.000000;;, - 140;3; 0.000000, 1.294481, 0.000000;;, - 141;3; 0.000000, 1.294482, 0.000000;;, - 142;3; 0.000000, 1.294482, 0.000000;;, - 143;3; 0.000000, 1.294482, 0.000000;;, - 144;3; 0.000000, 1.294482, 0.000000;;, - 145;3;-0.000000, 1.294482,-0.000000;;, - 146;3;-0.000000, 1.294482,-0.000000;;, - 147;3;-0.000000, 1.294482,-0.000000;;, - 148;3;-0.000000, 1.294482, 0.000000;;, - 149;3;-0.000000, 1.294482,-0.000000;;, - 150;3;-0.000000, 1.294482,-0.000000;;, - 151;3;-0.000000, 1.294481,-0.000000;;, - 152;3; 0.000000, 1.294482,-0.000000;;, - 153;3; 0.000000, 1.294482, 0.000000;;, - 154;3;-0.000000, 1.294482, 0.000000;;, - 155;3; 0.000000, 1.294482, 0.000000;;, - 156;3; 0.000000, 1.294482,-0.000000;;, - 157;3; 0.000000, 1.294482,-0.000000;;, - 158;3;-0.000000, 1.294482,-0.000000;;, - 159;3; 0.000000, 1.294482, 0.000000;;, - 160;3;-0.000000, 1.294482, 0.000000;;, - 161;3;-0.000000, 1.294482, 0.000000;;, - 162;3; 0.000000, 1.294482,-0.000000;;, - 163;3; 0.000000, 1.294482, 0.000000;;, - 164;3;-0.000000, 1.294482, 0.000000;;, - 165;3;-0.000000, 1.294481,-0.000000;;, - 166;3;-0.000000, 1.294482, 0.000000;;, - 167;3;-0.000000, 1.294482, 0.000000;;, - 168;3; 0.000000, 1.294482, 0.000000;;, - 169;3; 0.000000, 1.294482, 0.000000;;, - 170;3; 0.000000, 1.294482,-0.000000;;, - 171;3; 0.000000, 1.294481, 0.000000;;, - 172;3;-0.000000, 1.294482, 0.000000;;, - 173;3;-0.000000, 1.294481, 0.000000;;, - 174;3; 0.000000, 1.294482, 0.000000;;, - 175;3;-0.000000, 1.294482, 0.000000;;, - 176;3; 0.000000, 1.294482,-0.000000;;, - 177;3; 0.000000, 1.294482, 0.000000;;, - 178;3;-0.000000, 1.294482, 0.000000;;, - 179;3; 0.000000, 1.294482, 0.000000;;, - 180;3; 0.000000, 1.294482, 0.000000;;, - 181;3;-0.000000, 1.294482, 0.000000;;, - 182;3;-0.000000, 1.294482,-0.000000;;, - 183;3;-0.000000, 1.294481,-0.000000;;, - 184;3;-0.000000, 1.294482, 0.000000;;, - 185;3;-0.000000, 1.294481,-0.000000;;, - 186;3; 0.000000, 1.294482,-0.000000;;, - 187;3; 0.000000, 1.294482,-0.000000;;, - 188;3; 0.000000, 1.294482,-0.000000;;, - 189;3;-0.000000, 1.294481, 0.000000;;, - 190;3;-0.000000, 1.294482, 0.000000;;, - 191;3;-0.000000, 1.294482,-0.000000;;, - 192;3;-0.000000, 1.294482, 0.000000;;, - 193;3;-0.000000, 1.294482, 0.000000;;, - 194;3; 0.000000, 1.294482, 0.000000;;, - 195;3;-0.000000, 1.294481,-0.000000;;, - 196;3; 0.000000, 1.294481, 0.000000;;, - 197;3;-0.000000, 1.294482,-0.000000;;, - 198;3;-0.000000, 1.294482, 0.000000;;, - 199;3; 0.000000, 1.294482, 0.000000;;, - 200;3; 0.000000, 1.294482, 0.000000;;, - 201;3; 0.000000, 1.294482, 0.000000;;, - 202;3; 0.000000, 1.294482, 0.000000;;, - 203;3; 0.000000, 1.294482, 0.000000;;, - 204;3; 0.000000, 1.294482, 0.000000;;, - 205;3; 0.000000, 1.294482, 0.000000;;, - 206;3; 0.000000, 1.294482, 0.000000;;, - 207;3; 0.000000, 1.294482, 0.000000;;, - 208;3; 0.000000, 1.294482, 0.000000;;, - 209;3; 0.000000, 1.294482, 0.000000;;, - 210;3; 0.000000, 1.294482,-0.000000;;, - 211;3; 0.000000, 1.294481, 0.000000;;, - 212;3;-0.000000, 1.294482, 0.000000;;, - 213;3; 0.000000, 1.294482,-0.000000;;, - 214;3;-0.000000, 1.294482, 0.000000;;, - 215;3; 0.000000, 1.294482,-0.000000;;, - 216;3;-0.000000, 1.294482, 0.000000;;, - 217;3;-0.000000, 1.294481,-0.000000;;, - 218;3;-0.000000, 1.294482, 0.000000;;, - 219;3; 0.000000, 1.294482,-0.000000;;, - 220;3;-0.000000, 1.294482,-0.000000;;, - 221;3; 0.000000, 1.294482, 0.000000;;, - 222;3;-0.000000, 1.294482,-0.000000;;, - 223;3;-0.000000, 1.294481,-0.000000;;, - 224;3;-0.000000, 1.294481, 0.000000;;, - 225;3; 0.000000, 1.294481,-0.000000;;, - 226;3; 0.000000, 1.294482,-0.000000;;, - 227;3;-0.000000, 1.294481, 0.000000;;, - 228;3; 0.000000, 1.294482, 0.000000;;, - 229;3; 0.000000, 1.294482, 0.000000;;, - 230;3; 0.000000, 1.294482, 0.000000;;, - 231;3;-0.000000, 1.294482,-0.000000;;, - 232;3; 0.000000, 1.294482,-0.000000;;, - 233;3; 0.000000, 1.294482,-0.000000;;, - 234;3;-0.000000, 1.294481, 0.000000;;, - 235;3; 0.000000, 1.294482, 0.000000;;, - 236;3; 0.000000, 1.294482, 0.000000;;, - 237;3;-0.000000, 1.294482, 0.000000;;, - 238;3; 0.000000, 1.294482, 0.000000;;, - 239;3; 0.000000, 1.294482, 0.000000;;, - 240;3; 0.000000, 1.294482, 0.000000;;, - 241;3; 0.000000, 1.294482, 0.000000;;, - 242;3; 0.000000, 1.294482, 0.000000;;, - 243;3; 0.000000, 1.294482, 0.000000;;, - 244;3; 0.000000, 1.294482, 0.000000;;, - 245;3; 0.000000, 1.294482, 0.000000;;, - 246;3; 0.000000, 1.294482, 0.000000;;, - 247;3; 0.000000, 1.294482, 0.000000;;, - 248;3; 0.000000, 1.294482, 0.000000;;, - 249;3; 0.000000, 1.294482, 0.000000;;; - } - } - Animation { - {Armature_Bone_028} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 1;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 2;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 3;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 4;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 5;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 6;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 7;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 8;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 9;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 10;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 11;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 12;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 13;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 14;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 15;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 16;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 17;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 18;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 19;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 20;4;-0.979305,-0.202173, 0.000069, 0.000043;;, - 21;4;-0.979598,-0.200095, 0.000280, 0.000172;;, - 22;4;-0.980089,-0.196620, 0.000631, 0.000389;;, - 23;4;-0.980774,-0.191771, 0.001121, 0.000691;;, - 24;4;-0.981645,-0.185609, 0.001744, 0.001076;;, - 25;4;-0.982687,-0.178237, 0.002489, 0.001535;;, - 26;4;-0.983877,-0.169811, 0.003341, 0.002060;;, - 27;4;-0.985188,-0.160535, 0.004279, 0.002639;;, - 28;4;-0.986583,-0.150663, 0.005277, 0.003254;;, - 29;4;-0.988021,-0.140482, 0.006306, 0.003889;;, - 30;4;-0.989460,-0.130301, 0.007335, 0.004523;;, - 31;4;-0.990855,-0.120429, 0.008333, 0.005139;;, - 32;4;-0.992165,-0.111153, 0.009270, 0.005717;;, - 33;4;-0.993356,-0.102727, 0.010122, 0.006242;;, - 34;4;-0.994398,-0.095355, 0.010867, 0.006702;;, - 35;4;-0.995268,-0.089193, 0.011490, 0.007086;;, - 36;4;-0.995953,-0.084344, 0.011981, 0.007388;;, - 37;4;-0.996444,-0.080869, 0.012332, 0.007605;;, - 38;4;-0.996738,-0.078791, 0.012542, 0.007735;;, - 39;4;-0.996835,-0.078103, 0.012611, 0.007777;;, - 40;4;-0.996738,-0.078791, 0.012542, 0.007735;;, - 41;4;-0.996444,-0.080869, 0.012332, 0.007605;;, - 42;4;-0.995953,-0.084344, 0.011981, 0.007388;;, - 43;4;-0.995268,-0.089193, 0.011490, 0.007086;;, - 44;4;-0.994398,-0.095355, 0.010867, 0.006702;;, - 45;4;-0.993356,-0.102727, 0.010122, 0.006242;;, - 46;4;-0.992165,-0.111153, 0.009270, 0.005717;;, - 47;4;-0.990855,-0.120429, 0.008333, 0.005139;;, - 48;4;-0.989460,-0.130301, 0.007335, 0.004523;;, - 49;4;-0.988021,-0.140482, 0.006306, 0.003889;;, - 50;4;-0.986583,-0.150663, 0.005277, 0.003254;;, - 51;4;-0.985188,-0.160535, 0.004279, 0.002639;;, - 52;4;-0.983877,-0.169811, 0.003341, 0.002060;;, - 53;4;-0.982687,-0.178237, 0.002489, 0.001535;;, - 54;4;-0.981645,-0.185609, 0.001744, 0.001075;;, - 55;4;-0.980774,-0.191771, 0.001121, 0.000691;;, - 56;4;-0.980089,-0.196620, 0.000631, 0.000389;;, - 57;4;-0.979598,-0.200095, 0.000280, 0.000172;;, - 58;4;-0.979305,-0.202173, 0.000069, 0.000043;;, - 59;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 60;4;-0.979226,-0.202749, 0.000011, 0.000007;;, - 61;4;-0.979281,-0.202412, 0.000046, 0.000028;;, - 62;4;-0.979374,-0.201848, 0.000103, 0.000063;;, - 63;4;-0.979503,-0.201056, 0.000183, 0.000113;;, - 64;4;-0.979671,-0.200036, 0.000287, 0.000177;;, - 65;4;-0.979875,-0.198789, 0.000413, 0.000255;;, - 66;4;-0.980116,-0.197317, 0.000563, 0.000347;;, - 67;4;-0.980393,-0.195625, 0.000735, 0.000453;;, - 68;4;-0.980706,-0.193718, 0.000928, 0.000573;;, - 69;4;-0.981052,-0.191604, 0.001143, 0.000705;;, - 70;4;-0.981431,-0.189293, 0.001378, 0.000850;;, - 71;4;-0.981841,-0.186795, 0.001631, 0.001006;;, - 72;4;-0.982278,-0.184124, 0.001903, 0.001173;;, - 73;4;-0.982742,-0.181297, 0.002190, 0.001350;;, - 74;4;-0.983228,-0.178331, 0.002491, 0.001536;;, - 75;4;-0.983734,-0.175245, 0.002804, 0.001729;;, - 76;4;-0.984255,-0.172062, 0.003128, 0.001929;;, - 77;4;-0.984789,-0.168804, 0.003458, 0.002133;;, - 78;4;-0.985332,-0.165495, 0.003794, 0.002340;;, - 79;4;-0.985878,-0.162161, 0.004133, 0.002549;;, - 80;4;-0.986425,-0.158827, 0.004471, 0.002758;;, - 81;4;-0.986967,-0.155518, 0.004807, 0.002965;;, - 82;4;-0.987501,-0.152260, 0.005138, 0.003169;;, - 83;4;-0.988023,-0.149077, 0.005462, 0.003368;;, - 84;4;-0.988528,-0.145991, 0.005775, 0.003561;;, - 85;4;-0.989015,-0.143025, 0.006076, 0.003747;;, - 86;4;-0.989478,-0.140198, 0.006363, 0.003924;;, - 87;4;-0.989916,-0.137527, 0.006634, 0.004091;;, - 88;4;-0.990325,-0.135029, 0.006888, 0.004248;;, - 89;4;-0.990704,-0.132717, 0.007123, 0.004393;;, - 90;4;-0.991050,-0.130603, 0.007338, 0.004525;;, - 91;4;-0.991363,-0.128697, 0.007531, 0.004644;;, - 92;4;-0.991640,-0.127004, 0.007703, 0.004750;;, - 93;4;-0.991881,-0.125533, 0.007852, 0.004843;;, - 94;4;-0.992086,-0.124286, 0.007979, 0.004921;;, - 95;4;-0.992253,-0.123266, 0.008083, 0.004985;;, - 96;4;-0.992383,-0.122474, 0.008163, 0.005034;;, - 97;4;-0.992475,-0.121910, 0.008220, 0.005070;;, - 98;4;-0.992530,-0.121573, 0.008255, 0.005091;;, - 99;4;-0.992549,-0.121461, 0.008266, 0.005098;;, - 100;4;-0.992340,-0.122500, 0.008160, 0.005032;;, - 101;4;-0.991690,-0.125726, 0.007830, 0.004829;;, - 102;4;-0.990587,-0.131207, 0.007269, 0.004483;;, - 103;4;-0.989058,-0.138803, 0.006492, 0.004003;;, - 104;4;-0.987186,-0.148103, 0.005540, 0.003417;;, - 105;4;-0.985104,-0.158448, 0.004482, 0.002764;;, - 106;4;-0.982965,-0.169078, 0.003394, 0.002093;;, - 107;4;-0.980906,-0.179305, 0.002348, 0.001448;;, - 108;4;-0.979027,-0.188640, 0.001393, 0.000859;;, - 109;4;-0.977383,-0.196806, 0.000557, 0.000344;;, - 110;4;-0.975740,-0.204972,-0.000278,-0.000171;;, - 111;4;-0.973861,-0.214307,-0.001233,-0.000760;;, - 112;4;-0.971802,-0.224535,-0.002279,-0.001406;;, - 113;4;-0.969663,-0.235164,-0.003367,-0.002076;;, - 114;4;-0.967580,-0.245510,-0.004425,-0.002729;;, - 115;4;-0.965708,-0.254809,-0.005377,-0.003316;;, - 116;4;-0.964180,-0.262405,-0.006154,-0.003795;;, - 117;4;-0.963076,-0.267886,-0.006715,-0.004141;;, - 118;4;-0.962427,-0.271113,-0.007045,-0.004344;;, - 119;4;-0.962218,-0.272151,-0.007151,-0.004410;;, - 120;4;-0.962427,-0.271113,-0.007045,-0.004344;;, - 121;4;-0.963076,-0.267886,-0.006715,-0.004141;;, - 122;4;-0.964180,-0.262405,-0.006154,-0.003795;;, - 123;4;-0.965708,-0.254809,-0.005377,-0.003316;;, - 124;4;-0.967580,-0.245510,-0.004425,-0.002729;;, - 125;4;-0.969663,-0.235164,-0.003367,-0.002076;;, - 126;4;-0.971802,-0.224535,-0.002279,-0.001406;;, - 127;4;-0.973861,-0.214307,-0.001233,-0.000760;;, - 128;4;-0.975740,-0.204972,-0.000278,-0.000171;;, - 129;4;-0.977383,-0.196806, 0.000557, 0.000344;;, - 130;4;-0.979027,-0.188640, 0.001393, 0.000859;;, - 131;4;-0.980906,-0.179305, 0.002348, 0.001448;;, - 132;4;-0.982964,-0.169078, 0.003394, 0.002093;;, - 133;4;-0.985104,-0.158448, 0.004482, 0.002764;;, - 134;4;-0.987186,-0.148103, 0.005540, 0.003417;;, - 135;4;-0.989058,-0.138803, 0.006492, 0.004003;;, - 136;4;-0.990587,-0.131207, 0.007269, 0.004483;;, - 137;4;-0.991690,-0.125726, 0.007830, 0.004829;;, - 138;4;-0.992340,-0.122500, 0.008160, 0.005032;;, - 139;4;-0.992549,-0.121461, 0.008266, 0.005098;;, - 140;4;-0.991690,-0.125726, 0.007830, 0.004829;;, - 141;4;-0.989058,-0.138803, 0.006492, 0.004003;;, - 142;4;-0.985104,-0.158448, 0.004482, 0.002764;;, - 143;4;-0.980906,-0.179305, 0.002348, 0.001448;;, - 144;4;-0.977383,-0.196806, 0.000557, 0.000344;;, - 145;4;-0.973861,-0.214307,-0.001233,-0.000760;;, - 146;4;-0.969663,-0.235164,-0.003367,-0.002076;;, - 147;4;-0.965708,-0.254809,-0.005377,-0.003316;;, - 148;4;-0.963076,-0.267886,-0.006715,-0.004141;;, - 149;4;-0.962218,-0.272151,-0.007151,-0.004410;;, - 150;4;-0.963076,-0.267886,-0.006715,-0.004141;;, - 151;4;-0.965708,-0.254809,-0.005377,-0.003316;;, - 152;4;-0.969663,-0.235164,-0.003367,-0.002076;;, - 153;4;-0.973861,-0.214307,-0.001233,-0.000760;;, - 154;4;-0.977383,-0.196806, 0.000557, 0.000344;;, - 155;4;-0.980906,-0.179305, 0.002348, 0.001448;;, - 156;4;-0.985104,-0.158448, 0.004482, 0.002764;;, - 157;4;-0.989058,-0.138803, 0.006492, 0.004003;;, - 158;4;-0.991690,-0.125726, 0.007830, 0.004829;;, - 159;4;-0.992549,-0.121461, 0.008266, 0.005098;;, - 160;4;-0.992475,-0.121910, 0.008220, 0.005070;;, - 161;4;-0.992253,-0.123266, 0.008083, 0.004985;;, - 162;4;-0.991881,-0.125533, 0.007852, 0.004843;;, - 163;4;-0.991363,-0.128697, 0.007531, 0.004644;;, - 164;4;-0.990704,-0.132717, 0.007123, 0.004393;;, - 165;4;-0.989916,-0.137527, 0.006634, 0.004091;;, - 166;4;-0.989015,-0.143025, 0.006076, 0.003747;;, - 167;4;-0.988023,-0.149077, 0.005462, 0.003368;;, - 168;4;-0.986967,-0.155518, 0.004807, 0.002965;;, - 169;4;-0.985878,-0.162161, 0.004133, 0.002549;;, - 170;4;-0.984789,-0.168804, 0.003458, 0.002133;;, - 171;4;-0.983734,-0.175245, 0.002804, 0.001729;;, - 172;4;-0.982742,-0.181297, 0.002190, 0.001350;;, - 173;4;-0.981841,-0.186795, 0.001631, 0.001006;;, - 174;4;-0.981052,-0.191604, 0.001143, 0.000705;;, - 175;4;-0.980393,-0.195625, 0.000735, 0.000453;;, - 176;4;-0.979875,-0.198789, 0.000413, 0.000255;;, - 177;4;-0.979503,-0.201056, 0.000183, 0.000113;;, - 178;4;-0.979281,-0.202412, 0.000046, 0.000028;;, - 179;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 180;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 181;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 182;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 183;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 184;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 185;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 186;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 187;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 188;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 189;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 190;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 191;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 192;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 193;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 194;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 195;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 196;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 197;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 198;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 199;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 200;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 201;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 202;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 203;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 204;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 205;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 206;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 207;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 208;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 209;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 210;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 211;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 212;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 213;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 214;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 215;4;-0.978537,-0.185986,-0.012829,-0.016596;;, - 216;4;-0.976650,-0.138453,-0.048965,-0.063343;;, - 217;4;-0.974227,-0.077422,-0.095363,-0.123365;;, - 218;4;-0.972339,-0.029890,-0.131499,-0.170111;;, - 219;4;-0.971669,-0.013015,-0.144328,-0.186707;;, - 220;4;-0.972339,-0.029890,-0.131499,-0.170111;;, - 221;4;-0.974226,-0.077422,-0.095363,-0.123365;;, - 222;4;-0.976650,-0.138453,-0.048965,-0.063343;;, - 223;4;-0.978537,-0.185986,-0.012829,-0.016596;;, - 224;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 225;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 226;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 227;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 228;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 229;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 230;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 231;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 232;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 233;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 234;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 235;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 236;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 237;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 238;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 239;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 240;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 241;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 242;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 243;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 244;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 245;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 246;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 247;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 248;4;-0.979208,-0.202861,-0.000000,-0.000000;;, - 249;4;-0.979208,-0.202861,-0.000000,-0.000000;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3;-0.000000, 1.228822, 0.000000;;, - 1;3;-0.000000, 1.228822, 0.000000;;, - 2;3;-0.000000, 1.228822, 0.000000;;, - 3;3;-0.000000, 1.228822, 0.000000;;, - 4;3;-0.000000, 1.228822, 0.000000;;, - 5;3;-0.000000, 1.228822, 0.000000;;, - 6;3;-0.000000, 1.228822, 0.000000;;, - 7;3;-0.000000, 1.228822, 0.000000;;, - 8;3;-0.000000, 1.228822, 0.000000;;, - 9;3;-0.000000, 1.228822, 0.000000;;, - 10;3;-0.000000, 1.228822, 0.000000;;, - 11;3;-0.000000, 1.228822, 0.000000;;, - 12;3;-0.000000, 1.228822, 0.000000;;, - 13;3;-0.000000, 1.228822, 0.000000;;, - 14;3;-0.000000, 1.228822, 0.000000;;, - 15;3;-0.000000, 1.228822, 0.000000;;, - 16;3;-0.000000, 1.228822, 0.000000;;, - 17;3;-0.000000, 1.228822, 0.000000;;, - 18;3;-0.000000, 1.228822, 0.000000;;, - 19;3;-0.000000, 1.228822, 0.000000;;, - 20;3;-0.000000, 1.228822,-0.000000;;, - 21;3;-0.000000, 1.228822,-0.000000;;, - 22;3;-0.000000, 1.228822, 0.000000;;, - 23;3;-0.000000, 1.228822, 0.000000;;, - 24;3;-0.000000, 1.228822,-0.000000;;, - 25;3; 0.000000, 1.228822, 0.000000;;, - 26;3; 0.000000, 1.228822, 0.000000;;, - 27;3;-0.000000, 1.228822, 0.000000;;, - 28;3;-0.000000, 1.228822, 0.000000;;, - 29;3;-0.000000, 1.228822,-0.000000;;, - 30;3; 0.000000, 1.228822, 0.000000;;, - 31;3; 0.000000, 1.228822, 0.000000;;, - 32;3; 0.000000, 1.228822, 0.000000;;, - 33;3; 0.000000, 1.228822, 0.000000;;, - 34;3;-0.000000, 1.228822,-0.000000;;, - 35;3;-0.000000, 1.228822,-0.000000;;, - 36;3; 0.000000, 1.228822,-0.000000;;, - 37;3; 0.000000, 1.228822, 0.000000;;, - 38;3;-0.000000, 1.228822, 0.000000;;, - 39;3;-0.000000, 1.228822, 0.000000;;, - 40;3; 0.000000, 1.228822,-0.000000;;, - 41;3; 0.000000, 1.228822,-0.000000;;, - 42;3;-0.000000, 1.228822,-0.000000;;, - 43;3;-0.000000, 1.228822, 0.000000;;, - 44;3;-0.000000, 1.228822, 0.000000;;, - 45;3;-0.000000, 1.228822, 0.000000;;, - 46;3;-0.000000, 1.228822, 0.000000;;, - 47;3;-0.000000, 1.228822, 0.000000;;, - 48;3;-0.000000, 1.228822,-0.000000;;, - 49;3; 0.000000, 1.228822, 0.000000;;, - 50;3;-0.000000, 1.228822,-0.000000;;, - 51;3; 0.000000, 1.228822, 0.000000;;, - 52;3;-0.000000, 1.228822,-0.000000;;, - 53;3; 0.000000, 1.228822, 0.000000;;, - 54;3;-0.000000, 1.228822,-0.000000;;, - 55;3; 0.000000, 1.228822, 0.000000;;, - 56;3; 0.000000, 1.228822, 0.000000;;, - 57;3;-0.000000, 1.228822,-0.000000;;, - 58;3;-0.000000, 1.228822, 0.000000;;, - 59;3;-0.000000, 1.228822, 0.000000;;, - 60;3;-0.000000, 1.228822, 0.000000;;, - 61;3; 0.000000, 1.228822,-0.000000;;, - 62;3;-0.000000, 1.228822,-0.000000;;, - 63;3;-0.000000, 1.228822, 0.000000;;, - 64;3; 0.000000, 1.228822, 0.000000;;, - 65;3;-0.000000, 1.228822,-0.000000;;, - 66;3;-0.000000, 1.228822, 0.000000;;, - 67;3;-0.000000, 1.228822,-0.000000;;, - 68;3; 0.000000, 1.228822, 0.000000;;, - 69;3;-0.000000, 1.228822,-0.000000;;, - 70;3;-0.000000, 1.228822,-0.000000;;, - 71;3;-0.000000, 1.228822, 0.000000;;, - 72;3;-0.000000, 1.228822, 0.000000;;, - 73;3; 0.000000, 1.228822,-0.000000;;, - 74;3;-0.000000, 1.228822,-0.000000;;, - 75;3;-0.000000, 1.228822,-0.000000;;, - 76;3;-0.000000, 1.228822, 0.000000;;, - 77;3;-0.000000, 1.228822, 0.000000;;, - 78;3;-0.000000, 1.228822, 0.000000;;, - 79;3;-0.000000, 1.228822, 0.000000;;, - 80;3;-0.000000, 1.228822,-0.000000;;, - 81;3;-0.000000, 1.228822, 0.000000;;, - 82;3; 0.000000, 1.228822, 0.000000;;, - 83;3; 0.000000, 1.228822,-0.000000;;, - 84;3; 0.000000, 1.228822, 0.000000;;, - 85;3; 0.000000, 1.228822, 0.000000;;, - 86;3; 0.000000, 1.228822,-0.000000;;, - 87;3; 0.000000, 1.228822, 0.000000;;, - 88;3;-0.000000, 1.228822,-0.000000;;, - 89;3; 0.000000, 1.228822,-0.000000;;, - 90;3;-0.000000, 1.228822, 0.000000;;, - 91;3;-0.000000, 1.228822, 0.000000;;, - 92;3; 0.000000, 1.228822, 0.000000;;, - 93;3; 0.000000, 1.228822,-0.000000;;, - 94;3;-0.000000, 1.228822,-0.000000;;, - 95;3;-0.000000, 1.228822,-0.000000;;, - 96;3;-0.000000, 1.228822, 0.000000;;, - 97;3;-0.000000, 1.228822,-0.000000;;, - 98;3;-0.000000, 1.228822, 0.000000;;, - 99;3;-0.000000, 1.228822,-0.000000;;, - 100;3;-0.000000, 1.228822,-0.000000;;, - 101;3; 0.000000, 1.228822, 0.000000;;, - 102;3; 0.000000, 1.228822,-0.000000;;, - 103;3;-0.000000, 1.228822,-0.000000;;, - 104;3;-0.000000, 1.228822, 0.000000;;, - 105;3;-0.000000, 1.228822,-0.000000;;, - 106;3;-0.000000, 1.228822,-0.000000;;, - 107;3; 0.000000, 1.228822, 0.000000;;, - 108;3; 0.000000, 1.228822, 0.000000;;, - 109;3;-0.000000, 1.228822, 0.000000;;, - 110;3; 0.000000, 1.228822,-0.000000;;, - 111;3; 0.000000, 1.228822, 0.000000;;, - 112;3;-0.000000, 1.228822,-0.000000;;, - 113;3; 0.000000, 1.228822, 0.000000;;, - 114;3;-0.000000, 1.228822, 0.000000;;, - 115;3; 0.000000, 1.228822,-0.000000;;, - 116;3;-0.000000, 1.228822, 0.000000;;, - 117;3;-0.000000, 1.228822, 0.000000;;, - 118;3; 0.000000, 1.228822, 0.000000;;, - 119;3; 0.000000, 1.228822,-0.000000;;, - 120;3; 0.000000, 1.228822, 0.000000;;, - 121;3;-0.000000, 1.228822, 0.000000;;, - 122;3; 0.000000, 1.228822, 0.000000;;, - 123;3; 0.000000, 1.228822, 0.000000;;, - 124;3;-0.000000, 1.228822,-0.000000;;, - 125;3; 0.000000, 1.228822, 0.000000;;, - 126;3; 0.000000, 1.228822, 0.000000;;, - 127;3;-0.000000, 1.228822,-0.000000;;, - 128;3;-0.000000, 1.228822, 0.000000;;, - 129;3;-0.000000, 1.228822, 0.000000;;, - 130;3; 0.000000, 1.228822,-0.000000;;, - 131;3;-0.000000, 1.228822, 0.000000;;, - 132;3;-0.000000, 1.228822,-0.000000;;, - 133;3; 0.000000, 1.228822,-0.000000;;, - 134;3;-0.000000, 1.228822, 0.000000;;, - 135;3;-0.000000, 1.228822,-0.000000;;, - 136;3;-0.000000, 1.228822, 0.000000;;, - 137;3;-0.000000, 1.228822,-0.000000;;, - 138;3;-0.000000, 1.228822, 0.000000;;, - 139;3;-0.000000, 1.228822,-0.000000;;, - 140;3; 0.000000, 1.228822, 0.000000;;, - 141;3;-0.000000, 1.228822,-0.000000;;, - 142;3;-0.000000, 1.228822,-0.000000;;, - 143;3; 0.000000, 1.228822, 0.000000;;, - 144;3;-0.000000, 1.228822, 0.000000;;, - 145;3; 0.000000, 1.228822, 0.000000;;, - 146;3; 0.000000, 1.228822, 0.000000;;, - 147;3; 0.000000, 1.228822,-0.000000;;, - 148;3;-0.000000, 1.228822, 0.000000;;, - 149;3; 0.000000, 1.228822,-0.000000;;, - 150;3;-0.000000, 1.228822, 0.000000;;, - 151;3; 0.000000, 1.228822, 0.000000;;, - 152;3; 0.000000, 1.228822, 0.000000;;, - 153;3;-0.000000, 1.228822,-0.000000;;, - 154;3;-0.000000, 1.228822, 0.000000;;, - 155;3;-0.000000, 1.228822, 0.000000;;, - 156;3; 0.000000, 1.228822,-0.000000;;, - 157;3;-0.000000, 1.228822,-0.000000;;, - 158;3;-0.000000, 1.228822,-0.000000;;, - 159;3;-0.000000, 1.228822,-0.000000;;, - 160;3;-0.000000, 1.228822,-0.000000;;, - 161;3; 0.000000, 1.228822,-0.000000;;, - 162;3; 0.000000, 1.228822,-0.000000;;, - 163;3; 0.000000, 1.228822, 0.000000;;, - 164;3; 0.000000, 1.228822, 0.000000;;, - 165;3;-0.000000, 1.228822, 0.000000;;, - 166;3;-0.000000, 1.228822, 0.000000;;, - 167;3; 0.000000, 1.228822,-0.000000;;, - 168;3; 0.000000, 1.228822, 0.000000;;, - 169;3; 0.000000, 1.228822, 0.000000;;, - 170;3; 0.000000, 1.228822, 0.000000;;, - 171;3;-0.000000, 1.228822, 0.000000;;, - 172;3;-0.000000, 1.228822,-0.000000;;, - 173;3; 0.000000, 1.228822, 0.000000;;, - 174;3; 0.000000, 1.228822,-0.000000;;, - 175;3; 0.000000, 1.228822, 0.000000;;, - 176;3;-0.000000, 1.228822,-0.000000;;, - 177;3;-0.000000, 1.228822, 0.000000;;, - 178;3;-0.000000, 1.228822,-0.000000;;, - 179;3;-0.000000, 1.228822, 0.000000;;, - 180;3;-0.000000, 1.228822, 0.000000;;, - 181;3; 0.000000, 1.228822,-0.000000;;, - 182;3; 0.000000, 1.228822, 0.000000;;, - 183;3; 0.000000, 1.228822, 0.000000;;, - 184;3;-0.000000, 1.228822,-0.000000;;, - 185;3;-0.000000, 1.228822, 0.000000;;, - 186;3; 0.000000, 1.228822,-0.000000;;, - 187;3;-0.000000, 1.228822, 0.000000;;, - 188;3;-0.000000, 1.228822, 0.000000;;, - 189;3;-0.000000, 1.228822,-0.000000;;, - 190;3;-0.000000, 1.228822,-0.000000;;, - 191;3; 0.000000, 1.228822,-0.000000;;, - 192;3;-0.000000, 1.228822, 0.000000;;, - 193;3;-0.000000, 1.228822, 0.000000;;, - 194;3;-0.000000, 1.228822,-0.000000;;, - 195;3;-0.000000, 1.228822,-0.000000;;, - 196;3; 0.000000, 1.228822, 0.000000;;, - 197;3;-0.000000, 1.228822,-0.000000;;, - 198;3;-0.000000, 1.228822,-0.000000;;, - 199;3;-0.000000, 1.228822, 0.000000;;, - 200;3;-0.000000, 1.228822, 0.000000;;, - 201;3;-0.000000, 1.228822, 0.000000;;, - 202;3;-0.000000, 1.228822, 0.000000;;, - 203;3;-0.000000, 1.228822, 0.000000;;, - 204;3;-0.000000, 1.228822, 0.000000;;, - 205;3;-0.000000, 1.228822, 0.000000;;, - 206;3;-0.000000, 1.228822, 0.000000;;, - 207;3;-0.000000, 1.228822, 0.000000;;, - 208;3;-0.000000, 1.228822, 0.000000;;, - 209;3;-0.000000, 1.228822, 0.000000;;, - 210;3; 0.000000, 1.228822, 0.000000;;, - 211;3;-0.000000, 1.228822, 0.000000;;, - 212;3; 0.000000, 1.228822,-0.000000;;, - 213;3; 0.000000, 1.228822,-0.000000;;, - 214;3; 0.000000, 1.228822,-0.000000;;, - 215;3; 0.000000, 1.228822, 0.000000;;, - 216;3; 0.000000, 1.228822,-0.000000;;, - 217;3;-0.000000, 1.228822,-0.000000;;, - 218;3; 0.000000, 1.228822, 0.000000;;, - 219;3; 0.000000, 1.228822,-0.000000;;, - 220;3; 0.000000, 1.228822, 0.000000;;, - 221;3;-0.000000, 1.228822,-0.000000;;, - 222;3; 0.000000, 1.228822,-0.000000;;, - 223;3;-0.000000, 1.228822, 0.000000;;, - 224;3; 0.000000, 1.228822,-0.000000;;, - 225;3;-0.000000, 1.228822, 0.000000;;, - 226;3; 0.000000, 1.228822, 0.000000;;, - 227;3;-0.000000, 1.228822,-0.000000;;, - 228;3;-0.000000, 1.228822,-0.000000;;, - 229;3;-0.000000, 1.228822,-0.000000;;, - 230;3;-0.000000, 1.228822,-0.000000;;, - 231;3;-0.000000, 1.228822,-0.000000;;, - 232;3;-0.000000, 1.228822, 0.000000;;, - 233;3;-0.000000, 1.228822, 0.000000;;, - 234;3;-0.000000, 1.228822, 0.000000;;, - 235;3;-0.000000, 1.228822,-0.000000;;, - 236;3;-0.000000, 1.228822, 0.000000;;, - 237;3;-0.000000, 1.228822,-0.000000;;, - 238;3;-0.000000, 1.228822,-0.000000;;, - 239;3;-0.000000, 1.228822, 0.000000;;, - 240;3;-0.000000, 1.228822, 0.000000;;, - 241;3;-0.000000, 1.228822, 0.000000;;, - 242;3;-0.000000, 1.228822, 0.000000;;, - 243;3;-0.000000, 1.228822, 0.000000;;, - 244;3;-0.000000, 1.228822, 0.000000;;, - 245;3;-0.000000, 1.228822, 0.000000;;, - 246;3;-0.000000, 1.228822, 0.000000;;, - 247;3;-0.000000, 1.228822, 0.000000;;, - 248;3;-0.000000, 1.228822, 0.000000;;, - 249;3;-0.000000, 1.228822, 0.000000;;; - } - } - Animation { - {Armature_Bone_001} - AnimationKey { // Rotation - 0; - 250; - 0;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 1;4;-0.707099,-0.000262,-0.000262, 0.707099;;, - 2;4;-0.707075,-0.001053,-0.001053, 0.707075;;, - 3;4;-0.707035,-0.002376,-0.002376, 0.707035;;, - 4;4;-0.706979,-0.004219,-0.004219, 0.706979;;, - 5;4;-0.706908,-0.006555,-0.006555, 0.706908;;, - 6;4;-0.706824,-0.009338,-0.009338, 0.706824;;, - 7;4;-0.706728,-0.012499,-0.012499, 0.706728;;, - 8;4;-0.706623,-0.015950,-0.015950, 0.706623;;, - 9;4;-0.706513,-0.019583,-0.019583, 0.706513;;, - 10;4;-0.706401,-0.023279,-0.023279, 0.706401;;, - 11;4;-0.706290,-0.026912,-0.026912, 0.706290;;, - 12;4;-0.706186,-0.030363,-0.030363, 0.706186;;, - 13;4;-0.706090,-0.033524,-0.033524, 0.706090;;, - 14;4;-0.706005,-0.036307,-0.036307, 0.706005;;, - 15;4;-0.705935,-0.038643,-0.038643, 0.705935;;, - 16;4;-0.705879,-0.040486,-0.040486, 0.705879;;, - 17;4;-0.705839,-0.041808,-0.041808, 0.705839;;, - 18;4;-0.705815,-0.042600,-0.042600, 0.705815;;, - 19;4;-0.705807,-0.042862,-0.042862, 0.705807;;, - 20;4;-0.705808,-0.042476,-0.042476, 0.705808;;, - 21;4;-0.705811,-0.041309,-0.041309, 0.705811;;, - 22;4;-0.705817,-0.039359,-0.039359, 0.705817;;, - 23;4;-0.705826,-0.036638,-0.036638, 0.705826;;, - 24;4;-0.705837,-0.033179,-0.033179, 0.705837;;, - 25;4;-0.705852,-0.029042,-0.029042, 0.705852;;, - 26;4;-0.705869,-0.024313,-0.024313, 0.705869;;, - 27;4;-0.705889,-0.019107,-0.019107, 0.705889;;, - 28;4;-0.705912,-0.013566,-0.013566, 0.705912;;, - 29;4;-0.705938,-0.007852,-0.007852, 0.705938;;, - 30;4;-0.705966,-0.002138,-0.002138, 0.705966;;, - 31;4;-0.705996, 0.003403, 0.003403, 0.705996;;, - 32;4;-0.706027, 0.008609, 0.008609, 0.706027;;, - 33;4;-0.706059, 0.013338, 0.013338, 0.706059;;, - 34;4;-0.706093, 0.017475, 0.017475, 0.706093;;, - 35;4;-0.706126, 0.020934, 0.020934, 0.706126;;, - 36;4;-0.706160, 0.023655, 0.023655, 0.706160;;, - 37;4;-0.706194, 0.025605, 0.025605, 0.706194;;, - 38;4;-0.706227, 0.026772, 0.026772, 0.706227;;, - 39;4;-0.706260, 0.027158, 0.027158, 0.706260;;, - 40;4;-0.706295, 0.027008, 0.027008, 0.706295;;, - 41;4;-0.706335, 0.026556, 0.026556, 0.706335;;, - 42;4;-0.706379, 0.025799, 0.025799, 0.706379;;, - 43;4;-0.706428, 0.024744, 0.024744, 0.706428;;, - 44;4;-0.706481, 0.023402, 0.023402, 0.706481;;, - 45;4;-0.706538, 0.021798, 0.021798, 0.706538;;, - 46;4;-0.706597, 0.019963, 0.019963, 0.706597;;, - 47;4;-0.706658, 0.017944, 0.017944, 0.706658;;, - 48;4;-0.706719, 0.015795, 0.015795, 0.706719;;, - 49;4;-0.706779, 0.013579, 0.013579, 0.706779;;, - 50;4;-0.706836, 0.011363, 0.011363, 0.706836;;, - 51;4;-0.706890, 0.009214, 0.009214, 0.706890;;, - 52;4;-0.706940, 0.007194, 0.007194, 0.706940;;, - 53;4;-0.706984, 0.005360, 0.005360, 0.706984;;, - 54;4;-0.707022, 0.003755, 0.003755, 0.707022;;, - 55;4;-0.707053, 0.002414, 0.002414, 0.707053;;, - 56;4;-0.707077, 0.001359, 0.001359, 0.707077;;, - 57;4;-0.707093, 0.000602, 0.000602, 0.707093;;, - 58;4;-0.707104, 0.000150, 0.000150, 0.707104;;, - 59;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 60;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 61;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 62;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 63;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 64;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 65;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 66;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 67;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 68;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 69;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 70;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 71;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 72;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 73;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 74;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 75;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 76;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 77;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 78;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 79;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 80;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 81;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 82;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 83;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 84;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 85;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 86;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 87;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 88;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 89;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 90;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 91;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 92;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 93;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 94;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 95;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 96;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 97;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 98;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 99;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 100;4;-0.707095,-0.000610,-0.000610, 0.707095;;, - 101;4;-0.707059,-0.002445,-0.002445, 0.707059;;, - 102;4;-0.707001,-0.005428,-0.005428, 0.707001;;, - 103;4;-0.706925,-0.009330,-0.009330, 0.706925;;, - 104;4;-0.706839,-0.013751,-0.013751, 0.706839;;, - 105;4;-0.706753,-0.018172,-0.018172, 0.706753;;, - 106;4;-0.706677,-0.022074,-0.022074, 0.706677;;, - 107;4;-0.706619,-0.025057,-0.025057, 0.706619;;, - 108;4;-0.706584,-0.026892,-0.026892, 0.706584;;, - 109;4;-0.706572,-0.027502,-0.027502, 0.706572;;, - 110;4;-0.706584,-0.026892,-0.026892, 0.706584;;, - 111;4;-0.706619,-0.025057,-0.025057, 0.706619;;, - 112;4;-0.706677,-0.022074,-0.022074, 0.706677;;, - 113;4;-0.706753,-0.018172,-0.018172, 0.706753;;, - 114;4;-0.706839,-0.013751,-0.013751, 0.706839;;, - 115;4;-0.706925,-0.009330,-0.009330, 0.706925;;, - 116;4;-0.707001,-0.005428,-0.005428, 0.707001;;, - 117;4;-0.707059,-0.002445,-0.002445, 0.707059;;, - 118;4;-0.707095,-0.000610,-0.000610, 0.707095;;, - 119;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 120;4;-0.707095,-0.000610,-0.000610, 0.707095;;, - 121;4;-0.707059,-0.002445,-0.002445, 0.707059;;, - 122;4;-0.707001,-0.005428,-0.005428, 0.707001;;, - 123;4;-0.706925,-0.009330,-0.009330, 0.706925;;, - 124;4;-0.706839,-0.013751,-0.013751, 0.706839;;, - 125;4;-0.706753,-0.018172,-0.018172, 0.706753;;, - 126;4;-0.706677,-0.022074,-0.022074, 0.706677;;, - 127;4;-0.706619,-0.025057,-0.025057, 0.706619;;, - 128;4;-0.706584,-0.026892,-0.026892, 0.706584;;, - 129;4;-0.706572,-0.027502,-0.027502, 0.706572;;, - 130;4;-0.706584,-0.026892,-0.026892, 0.706584;;, - 131;4;-0.706619,-0.025057,-0.025057, 0.706619;;, - 132;4;-0.706677,-0.022074,-0.022074, 0.706677;;, - 133;4;-0.706753,-0.018172,-0.018172, 0.706753;;, - 134;4;-0.706839,-0.013751,-0.013751, 0.706839;;, - 135;4;-0.706925,-0.009330,-0.009330, 0.706925;;, - 136;4;-0.707001,-0.005428,-0.005428, 0.707001;;, - 137;4;-0.707059,-0.002445,-0.002445, 0.707059;;, - 138;4;-0.707095,-0.000610,-0.000610, 0.707095;;, - 139;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 140;4;-0.707059,-0.002445,-0.002445, 0.707059;;, - 141;4;-0.706925,-0.009330,-0.009330, 0.706925;;, - 142;4;-0.706753,-0.018172,-0.018172, 0.706753;;, - 143;4;-0.706619,-0.025057,-0.025057, 0.706619;;, - 144;4;-0.706572,-0.027502,-0.027502, 0.706572;;, - 145;4;-0.706619,-0.025057,-0.025057, 0.706619;;, - 146;4;-0.706753,-0.018172,-0.018172, 0.706753;;, - 147;4;-0.706925,-0.009330,-0.009330, 0.706925;;, - 148;4;-0.707059,-0.002445,-0.002445, 0.707059;;, - 149;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 150;4;-0.707059,-0.002445,-0.002445, 0.707059;;, - 151;4;-0.706925,-0.009330,-0.009330, 0.706925;;, - 152;4;-0.706753,-0.018172,-0.018172, 0.706753;;, - 153;4;-0.706619,-0.025057,-0.025057, 0.706619;;, - 154;4;-0.706572,-0.027502,-0.027502, 0.706572;;, - 155;4;-0.706619,-0.025057,-0.025057, 0.706619;;, - 156;4;-0.706753,-0.018172,-0.018172, 0.706753;;, - 157;4;-0.706925,-0.009330,-0.009330, 0.706925;;, - 158;4;-0.707059,-0.002445,-0.002445, 0.707059;;, - 159;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 160;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 161;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 162;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 163;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 164;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 165;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 166;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 167;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 168;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 169;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 170;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 171;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 172;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 173;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 174;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 175;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 176;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 177;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 178;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 179;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 180;4;-0.706883,-0.002637,-0.002637, 0.706883;;, - 181;4;-0.706211,-0.010574,-0.010574, 0.706211;;, - 182;4;-0.705118,-0.023479,-0.023479, 0.705118;;, - 183;4;-0.703688,-0.040358,-0.040358, 0.703688;;, - 184;4;-0.702068,-0.059479,-0.059479, 0.702068;;, - 185;4;-0.700448,-0.078600,-0.078600, 0.700448;;, - 186;4;-0.699018,-0.095479,-0.095479, 0.699018;;, - 187;4;-0.697925,-0.108384,-0.108384, 0.697925;;, - 188;4;-0.697252,-0.116321,-0.116321, 0.697252;;, - 189;4;-0.697029,-0.118958,-0.118958, 0.697029;;, - 190;4;-0.697029,-0.118958,-0.118958, 0.697029;;, - 191;4;-0.697029,-0.118958,-0.118958, 0.697029;;, - 192;4;-0.697029,-0.118958,-0.118958, 0.697029;;, - 193;4;-0.697029,-0.118958,-0.118958, 0.697029;;, - 194;4;-0.697029,-0.118958,-0.118958, 0.697029;;, - 195;4;-0.697925,-0.108384,-0.108384, 0.697925;;, - 196;4;-0.700448,-0.078600,-0.078600, 0.700448;;, - 197;4;-0.703688,-0.040358,-0.040358, 0.703688;;, - 198;4;-0.706211,-0.010574,-0.010574, 0.706211;;, - 199;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 200;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 201;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 202;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 203;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 204;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 205;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 206;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 207;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 208;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 209;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 210;4;-0.705892,-0.011284,-0.011284, 0.705892;;, - 211;4;-0.702163,-0.044864,-0.044864, 0.702163;;, - 212;4;-0.696555,-0.092804,-0.092804, 0.696555;;, - 213;4;-0.690591,-0.139529,-0.139529, 0.690591;;, - 214;4;-0.685572,-0.173179,-0.173179, 0.685572;;, - 215;4;-0.681057,-0.197318,-0.197318, 0.681057;;, - 216;4;-0.676281,-0.217848,-0.217848, 0.676281;;, - 217;4;-0.671585,-0.233746,-0.233746, 0.671585;;, - 218;4;-0.667368,-0.245471,-0.245471, 0.667368;;, - 219;4;-0.663804,-0.254631,-0.254631, 0.663804;;, - 220;4;-0.660524,-0.262119,-0.262119, 0.660524;;, - 221;4;-0.657413,-0.267340,-0.267340, 0.657413;;, - 222;4;-0.654957,-0.270064,-0.270064, 0.654957;;, - 223;4;-0.653524,-0.270944,-0.270944, 0.653524;;, - 224;4;-0.653096,-0.271046,-0.271046, 0.653096;;, - 225;4;-0.653626,-0.268385,-0.268385, 0.653626;;, - 226;4;-0.655229,-0.260339,-0.260339, 0.655229;;, - 227;4;-0.657897,-0.246953,-0.246953, 0.657897;;, - 228;4;-0.661573,-0.228504,-0.228504, 0.661573;;, - 229;4;-0.666142,-0.205574,-0.205574, 0.666142;;, - 230;4;-0.671420,-0.179090,-0.179090, 0.671420;;, - 231;4;-0.677155,-0.150311,-0.150311, 0.677155;;, - 232;4;-0.683048,-0.120735,-0.120735, 0.683048;;, - 233;4;-0.688783,-0.091955,-0.091955, 0.688783;;, - 234;4;-0.694060,-0.065472,-0.065472, 0.694060;;, - 235;4;-0.698629,-0.042542,-0.042542, 0.698629;;, - 236;4;-0.702306,-0.024093,-0.024093, 0.702306;;, - 237;4;-0.704973,-0.010706,-0.010706, 0.704973;;, - 238;4;-0.706576,-0.002661,-0.002661, 0.706576;;, - 239;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 240;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 241;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 242;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 243;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 244;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 245;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 246;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 247;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 248;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 249;4;-0.707107, 0.000000, 0.000000, 0.707107;;; - } - AnimationKey { // Scale - 1; - 250; - 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;;, - 189;3; 1.000000, 1.000000, 1.000000;;, - 190;3; 1.000000, 1.000000, 1.000000;;, - 191;3; 1.000000, 1.000000, 1.000000;;, - 192;3; 1.000000, 1.000000, 1.000000;;, - 193;3; 1.000000, 1.000000, 1.000000;;, - 194;3; 1.000000, 1.000000, 1.000000;;, - 195;3; 1.000000, 1.000000, 1.000000;;, - 196;3; 1.000000, 1.000000, 1.000000;;, - 197;3; 1.000000, 1.000000, 1.000000;;, - 198;3; 1.000000, 1.000000, 1.000000;;, - 199;3; 1.000000, 1.000000, 1.000000;;, - 200;3; 1.000000, 1.000000, 1.000000;;, - 201;3; 1.000000, 1.000000, 1.000000;;, - 202;3; 1.000000, 1.000000, 1.000000;;, - 203;3; 1.000000, 1.000000, 1.000000;;, - 204;3; 1.000000, 1.000000, 1.000000;;, - 205;3; 1.000000, 1.000000, 1.000000;;, - 206;3; 1.000000, 1.000000, 1.000000;;, - 207;3; 1.000000, 1.000000, 1.000000;;, - 208;3; 1.000000, 1.000000, 1.000000;;, - 209;3; 1.000000, 1.000000, 1.000000;;, - 210;3; 1.000000, 1.000000, 1.000000;;, - 211;3; 1.000000, 1.000000, 1.000000;;, - 212;3; 1.000000, 1.000000, 1.000000;;, - 213;3; 1.000000, 1.000000, 1.000000;;, - 214;3; 1.000000, 1.000000, 1.000000;;, - 215;3; 1.000000, 1.000000, 1.000000;;, - 216;3; 1.000000, 1.000000, 1.000000;;, - 217;3; 1.000000, 1.000000, 1.000000;;, - 218;3; 1.000000, 1.000000, 1.000000;;, - 219;3; 1.000000, 1.000000, 1.000000;;, - 220;3; 1.000000, 1.000000, 1.000000;;, - 221;3; 1.000000, 1.000000, 1.000000;;, - 222;3; 1.000000, 1.000000, 1.000000;;, - 223;3; 1.000000, 1.000000, 1.000000;;, - 224;3; 1.000000, 1.000000, 1.000000;;, - 225;3; 1.000000, 1.000000, 1.000000;;, - 226;3; 1.000000, 1.000000, 1.000000;;, - 227;3; 1.000000, 1.000000, 1.000000;;, - 228;3; 1.000000, 1.000000, 1.000000;;, - 229;3; 1.000000, 1.000000, 1.000000;;, - 230;3; 1.000000, 1.000000, 1.000000;;, - 231;3; 1.000000, 1.000000, 1.000000;;, - 232;3; 1.000000, 1.000000, 1.000000;;, - 233;3; 1.000000, 1.000000, 1.000000;;, - 234;3; 1.000000, 1.000000, 1.000000;;, - 235;3; 1.000000, 1.000000, 1.000000;;, - 236;3; 1.000000, 1.000000, 1.000000;;, - 237;3; 1.000000, 1.000000, 1.000000;;, - 238;3; 1.000000, 1.000000, 1.000000;;, - 239;3; 1.000000, 1.000000, 1.000000;;, - 240;3; 1.000000, 1.000000, 1.000000;;, - 241;3; 1.000000, 1.000000, 1.000000;;, - 242;3; 1.000000, 1.000000, 1.000000;;, - 243;3; 1.000000, 1.000000, 1.000000;;, - 244;3; 1.000000, 1.000000, 1.000000;;, - 245;3; 1.000000, 1.000000, 1.000000;;, - 246;3; 1.000000, 1.000000, 1.000000;;, - 247;3; 1.000000, 1.000000, 1.000000;;, - 248;3; 1.000000, 1.000000, 1.000000;;, - 249;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 250; - 0;3; 0.506179, 1.550838, 1.183012;;, - 1;3; 0.506179, 1.550838, 1.183012;;, - 2;3; 0.506179, 1.550838, 1.183012;;, - 3;3; 0.506179, 1.550838, 1.183012;;, - 4;3; 0.506179, 1.550838, 1.183012;;, - 5;3; 0.506179, 1.550838, 1.183012;;, - 6;3; 0.506179, 1.550838, 1.183012;;, - 7;3; 0.506179, 1.550838, 1.183012;;, - 8;3; 0.506179, 1.550838, 1.183012;;, - 9;3; 0.506179, 1.550838, 1.183012;;, - 10;3; 0.506179, 1.550838, 1.183012;;, - 11;3; 0.506179, 1.550838, 1.183012;;, - 12;3; 0.506179, 1.550838, 1.183012;;, - 13;3; 0.506179, 1.550838, 1.183012;;, - 14;3; 0.506179, 1.550838, 1.183012;;, - 15;3; 0.506179, 1.550838, 1.183012;;, - 16;3; 0.506179, 1.550838, 1.183012;;, - 17;3; 0.506179, 1.550838, 1.183012;;, - 18;3; 0.506179, 1.550838, 1.183012;;, - 19;3; 0.506179, 1.550838, 1.183012;;, - 20;3; 0.506179, 1.550838, 1.183012;;, - 21;3; 0.506179, 1.550838, 1.183012;;, - 22;3; 0.506179, 1.550838, 1.183012;;, - 23;3; 0.506179, 1.550838, 1.183012;;, - 24;3; 0.506179, 1.550838, 1.183012;;, - 25;3; 0.506179, 1.550838, 1.183012;;, - 26;3; 0.506179, 1.550838, 1.183012;;, - 27;3; 0.506179, 1.550838, 1.183012;;, - 28;3; 0.506179, 1.550838, 1.183012;;, - 29;3; 0.506179, 1.550838, 1.183012;;, - 30;3; 0.506179, 1.550838, 1.183012;;, - 31;3; 0.506179, 1.550838, 1.183012;;, - 32;3; 0.506179, 1.550838, 1.183012;;, - 33;3; 0.506179, 1.550838, 1.183012;;, - 34;3; 0.506179, 1.550838, 1.183012;;, - 35;3; 0.506179, 1.550838, 1.183012;;, - 36;3; 0.506179, 1.550838, 1.183012;;, - 37;3; 0.506179, 1.550838, 1.183012;;, - 38;3; 0.506179, 1.550838, 1.183012;;, - 39;3; 0.506179, 1.550838, 1.183012;;, - 40;3; 0.506179, 1.550838, 1.183012;;, - 41;3; 0.506179, 1.550838, 1.183012;;, - 42;3; 0.506179, 1.550838, 1.183012;;, - 43;3; 0.506179, 1.550838, 1.183012;;, - 44;3; 0.506179, 1.550838, 1.183012;;, - 45;3; 0.506179, 1.550838, 1.183012;;, - 46;3; 0.506179, 1.550838, 1.183012;;, - 47;3; 0.506179, 1.550838, 1.183012;;, - 48;3; 0.506179, 1.550838, 1.183012;;, - 49;3; 0.506179, 1.550838, 1.183012;;, - 50;3; 0.506179, 1.550838, 1.183012;;, - 51;3; 0.506179, 1.550838, 1.183012;;, - 52;3; 0.506179, 1.550838, 1.183012;;, - 53;3; 0.506179, 1.550838, 1.183012;;, - 54;3; 0.506179, 1.550838, 1.183012;;, - 55;3; 0.506179, 1.550838, 1.183012;;, - 56;3; 0.506179, 1.550838, 1.183012;;, - 57;3; 0.506179, 1.550838, 1.183012;;, - 58;3; 0.506179, 1.550838, 1.183012;;, - 59;3; 0.506179, 1.550838, 1.183012;;, - 60;3; 0.506179, 1.550838, 1.183012;;, - 61;3; 0.506179, 1.550838, 1.183012;;, - 62;3; 0.506179, 1.550838, 1.183012;;, - 63;3; 0.506179, 1.550838, 1.183012;;, - 64;3; 0.506179, 1.550838, 1.183012;;, - 65;3; 0.506179, 1.550838, 1.183012;;, - 66;3; 0.506179, 1.550838, 1.183012;;, - 67;3; 0.506179, 1.550838, 1.183012;;, - 68;3; 0.506179, 1.550838, 1.183012;;, - 69;3; 0.506179, 1.550838, 1.183012;;, - 70;3; 0.506179, 1.550838, 1.183012;;, - 71;3; 0.506179, 1.550838, 1.183012;;, - 72;3; 0.506179, 1.550838, 1.183012;;, - 73;3; 0.506179, 1.550838, 1.183012;;, - 74;3; 0.506179, 1.550838, 1.183012;;, - 75;3; 0.506179, 1.550838, 1.183012;;, - 76;3; 0.506179, 1.550838, 1.183012;;, - 77;3; 0.506179, 1.550838, 1.183012;;, - 78;3; 0.506179, 1.550838, 1.183012;;, - 79;3; 0.506179, 1.550838, 1.183012;;, - 80;3; 0.506179, 1.550838, 1.183012;;, - 81;3; 0.506179, 1.550838, 1.183012;;, - 82;3; 0.506179, 1.550838, 1.183012;;, - 83;3; 0.506179, 1.550838, 1.183012;;, - 84;3; 0.506179, 1.550838, 1.183012;;, - 85;3; 0.506179, 1.550838, 1.183012;;, - 86;3; 0.506179, 1.550838, 1.183012;;, - 87;3; 0.506179, 1.550838, 1.183012;;, - 88;3; 0.506179, 1.550838, 1.183012;;, - 89;3; 0.506179, 1.550838, 1.183012;;, - 90;3; 0.506179, 1.550838, 1.183012;;, - 91;3; 0.506179, 1.550838, 1.183012;;, - 92;3; 0.506179, 1.550838, 1.183012;;, - 93;3; 0.506179, 1.550838, 1.183012;;, - 94;3; 0.506179, 1.550838, 1.183012;;, - 95;3; 0.506179, 1.550838, 1.183012;;, - 96;3; 0.506179, 1.550838, 1.183012;;, - 97;3; 0.506179, 1.550838, 1.183012;;, - 98;3; 0.506179, 1.550838, 1.183012;;, - 99;3; 0.506179, 1.550838, 1.183012;;, - 100;3; 0.506179, 1.550838, 1.183012;;, - 101;3; 0.506179, 1.550838, 1.183012;;, - 102;3; 0.506179, 1.550838, 1.183012;;, - 103;3; 0.506179, 1.550838, 1.183012;;, - 104;3; 0.506179, 1.550838, 1.183012;;, - 105;3; 0.506179, 1.550838, 1.183012;;, - 106;3; 0.506179, 1.550838, 1.183012;;, - 107;3; 0.506179, 1.550838, 1.183012;;, - 108;3; 0.506179, 1.550838, 1.183012;;, - 109;3; 0.506179, 1.550838, 1.183012;;, - 110;3; 0.506179, 1.550838, 1.183012;;, - 111;3; 0.506179, 1.550838, 1.183012;;, - 112;3; 0.506179, 1.550838, 1.183012;;, - 113;3; 0.506179, 1.550838, 1.183012;;, - 114;3; 0.506179, 1.550838, 1.183012;;, - 115;3; 0.506179, 1.550838, 1.183012;;, - 116;3; 0.506179, 1.550838, 1.183012;;, - 117;3; 0.506179, 1.550838, 1.183012;;, - 118;3; 0.506179, 1.550838, 1.183012;;, - 119;3; 0.506179, 1.550838, 1.183012;;, - 120;3; 0.506179, 1.550838, 1.183012;;, - 121;3; 0.506179, 1.550838, 1.183012;;, - 122;3; 0.506179, 1.550838, 1.183012;;, - 123;3; 0.506179, 1.550838, 1.183012;;, - 124;3; 0.506179, 1.550838, 1.183012;;, - 125;3; 0.506179, 1.550838, 1.183012;;, - 126;3; 0.506179, 1.550838, 1.183012;;, - 127;3; 0.506179, 1.550838, 1.183012;;, - 128;3; 0.506179, 1.550838, 1.183012;;, - 129;3; 0.506179, 1.550838, 1.183012;;, - 130;3; 0.506179, 1.550838, 1.183012;;, - 131;3; 0.506179, 1.550838, 1.183012;;, - 132;3; 0.506179, 1.550838, 1.183012;;, - 133;3; 0.506179, 1.550838, 1.183012;;, - 134;3; 0.506179, 1.550838, 1.183012;;, - 135;3; 0.506179, 1.550838, 1.183012;;, - 136;3; 0.506179, 1.550838, 1.183012;;, - 137;3; 0.506179, 1.550838, 1.183012;;, - 138;3; 0.506179, 1.550838, 1.183012;;, - 139;3; 0.506179, 1.550838, 1.183012;;, - 140;3; 0.506179, 1.550838, 1.183012;;, - 141;3; 0.506179, 1.550838, 1.183012;;, - 142;3; 0.506179, 1.550838, 1.183012;;, - 143;3; 0.506179, 1.550838, 1.183012;;, - 144;3; 0.506179, 1.550838, 1.183012;;, - 145;3; 0.506179, 1.550838, 1.183012;;, - 146;3; 0.506179, 1.550838, 1.183012;;, - 147;3; 0.506179, 1.550838, 1.183012;;, - 148;3; 0.506179, 1.550838, 1.183012;;, - 149;3; 0.506179, 1.550838, 1.183012;;, - 150;3; 0.506179, 1.550838, 1.183012;;, - 151;3; 0.506179, 1.550838, 1.183012;;, - 152;3; 0.506179, 1.550838, 1.183012;;, - 153;3; 0.506179, 1.550838, 1.183012;;, - 154;3; 0.506179, 1.550838, 1.183012;;, - 155;3; 0.506179, 1.550838, 1.183012;;, - 156;3; 0.506179, 1.550838, 1.183012;;, - 157;3; 0.506179, 1.550838, 1.183012;;, - 158;3; 0.506179, 1.550838, 1.183012;;, - 159;3; 0.506179, 1.550838, 1.183012;;, - 160;3; 0.506179, 1.550838, 1.183012;;, - 161;3; 0.506179, 1.550838, 1.183012;;, - 162;3; 0.506179, 1.550838, 1.183012;;, - 163;3; 0.506179, 1.550838, 1.183012;;, - 164;3; 0.506179, 1.550838, 1.183012;;, - 165;3; 0.506179, 1.550838, 1.183012;;, - 166;3; 0.506179, 1.550838, 1.183012;;, - 167;3; 0.506179, 1.550838, 1.183012;;, - 168;3; 0.506179, 1.550838, 1.183012;;, - 169;3; 0.506179, 1.550838, 1.183012;;, - 170;3; 0.506179, 1.550838, 1.183012;;, - 171;3; 0.506179, 1.550838, 1.183012;;, - 172;3; 0.506179, 1.550838, 1.183012;;, - 173;3; 0.506179, 1.550838, 1.183012;;, - 174;3; 0.506179, 1.550838, 1.183012;;, - 175;3; 0.506179, 1.550838, 1.183012;;, - 176;3; 0.506179, 1.550838, 1.183012;;, - 177;3; 0.506179, 1.550838, 1.183012;;, - 178;3; 0.506179, 1.550838, 1.183012;;, - 179;3; 0.506179, 1.550838, 1.183012;;, - 180;3; 0.534224, 1.550838, 1.200614;;, - 181;3; 0.618629, 1.550838, 1.253590;;, - 182;3; 0.755866, 1.550838, 1.339727;;, - 183;3; 0.935366, 1.550838, 1.452389;;, - 184;3; 1.138711, 1.550838, 1.580017;;, - 185;3; 1.342055, 1.550838, 1.707644;;, - 186;3; 1.521555, 1.550838, 1.820307;;, - 187;3; 1.658792, 1.550838, 1.906443;;, - 188;3; 1.743197, 1.550838, 1.959419;;, - 189;3; 1.771243, 1.550838, 1.977021;;, - 190;3; 1.771243, 1.550838, 1.977021;;, - 191;3; 1.771243, 1.550838, 1.977021;;, - 192;3; 1.771243, 1.550838, 1.977021;;, - 193;3; 1.771243, 1.550838, 1.977021;;, - 194;3; 1.771243, 1.550838, 1.977021;;, - 195;3; 1.658792, 1.550838, 1.906443;;, - 196;3; 1.342055, 1.550838, 1.707644;;, - 197;3; 0.935367, 1.550838, 1.452389;;, - 198;3; 0.618629, 1.550838, 1.253590;;, - 199;3; 0.506179, 1.550838, 1.183012;;, - 200;3; 0.506179, 1.550838, 1.183012;;, - 201;3; 0.506179, 1.550838, 1.183012;;, - 202;3; 0.506179, 1.550838, 1.183012;;, - 203;3; 0.506179, 1.550838, 1.183012;;, - 204;3; 0.506179, 1.550838, 1.183012;;, - 205;3; 0.506179, 1.550838, 1.183012;;, - 206;3; 0.506179, 1.550838, 1.183012;;, - 207;3; 0.506179, 1.550838, 1.183012;;, - 208;3; 0.506179, 1.550838, 1.183012;;, - 209;3; 0.506179, 1.550838, 1.183012;;, - 210;3; 0.364384, 1.550838, 1.221339;;, - 211;3;-0.035009, 1.550838, 1.343248;;, - 212;3;-0.547827, 1.550838, 1.537230;;, - 213;3;-0.947220, 1.550838, 1.761204;;, - 214;3;-1.089015, 1.550838, 1.973187;;, - 215;3;-0.991725, 1.550838, 2.220431;;, - 216;3;-0.693433, 1.550838, 2.543723;;, - 217;3;-0.245312, 1.550838, 2.865229;;, - 218;3; 0.230433, 1.550838, 3.086455;;, - 219;3; 0.629645, 1.550838, 3.160043;;, - 220;3; 1.028857, 1.550838, 3.102752;;, - 221;3; 1.504603, 1.550838, 2.932638;;, - 222;3; 1.952723, 1.550838, 2.690748;;, - 223;3; 2.251016, 1.550838, 2.456688;;, - 224;3; 2.348306, 1.550838, 2.290599;;, - 225;3; 2.330218, 1.550838, 2.167124;;, - 226;3; 2.275541, 1.550838, 2.045100;;, - 227;3; 2.184561, 1.550838, 1.925730;;, - 228;3; 2.059173, 1.550838, 1.810486;;, - 229;3; 1.903334, 1.550838, 1.701068;;, - 230;3; 1.723343, 1.550838, 1.599297;;, - 231;3; 1.527745, 1.550838, 1.506947;;, - 232;3; 1.326740, 1.550838, 1.425526;;, - 233;3; 1.131142, 1.550838, 1.356084;;, - 234;3; 0.951150, 1.550838, 1.299088;;, - 235;3; 0.795312, 1.550838, 1.254423;;, - 236;3; 0.669923, 1.550838, 1.221487;;, - 237;3; 0.578943, 1.550838, 1.199351;;, - 238;3; 0.524266, 1.550838, 1.186909;;, - 239;3; 0.506179, 1.550838, 1.183012;;, - 240;3; 0.506179, 1.550838, 1.183012;;, - 241;3; 0.506179, 1.550838, 1.183012;;, - 242;3; 0.506179, 1.550838, 1.183012;;, - 243;3; 0.506179, 1.550838, 1.183012;;, - 244;3; 0.506179, 1.550838, 1.183012;;, - 245;3; 0.506179, 1.550838, 1.183012;;, - 246;3; 0.506179, 1.550838, 1.183012;;, - 247;3; 0.506179, 1.550838, 1.183012;;, - 248;3; 0.506179, 1.550838, 1.183012;;, - 249;3; 0.506179, 1.550838, 1.183012;;; - } - } - Animation { - {Cube_001} - AnimationKey { // Rotation - 0; - 250; - 0;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 1;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 2;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 3;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 4;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 5;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 6;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 7;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 8;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 9;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 10;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 11;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 12;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 13;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 14;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 15;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 16;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 17;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 18;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 19;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 20;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 21;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 22;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 23;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 24;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 25;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 26;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 27;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 28;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 29;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 30;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 31;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 32;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 33;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 34;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 35;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 36;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 37;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 38;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 39;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 40;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 41;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 42;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 43;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 44;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 45;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 46;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 47;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 48;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 49;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 50;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 51;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 52;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 53;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 54;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 55;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 56;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 57;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 58;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 59;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 60;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 61;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 62;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 63;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 64;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 65;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 66;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 67;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 68;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 69;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 70;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 71;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 72;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 73;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 74;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 75;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 76;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 77;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 78;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 79;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 80;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 81;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 82;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 83;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 84;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 85;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 86;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 87;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 88;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 89;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 90;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 91;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 92;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 93;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 94;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 95;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 96;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 97;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 98;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 99;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 100;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 101;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 102;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 103;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 104;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 105;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 106;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 107;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 108;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 109;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 110;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 111;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 112;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 113;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 114;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 115;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 116;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 117;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 118;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 119;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 120;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 121;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 122;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 123;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 124;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 125;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 126;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 127;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 128;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 129;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 130;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 131;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 132;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 133;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 134;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 135;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 136;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 137;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 138;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 139;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 140;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 141;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 142;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 143;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 144;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 145;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 146;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 147;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 148;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 149;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 150;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 151;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 152;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 153;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 154;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 155;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 156;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 157;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 158;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 159;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 160;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 161;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 162;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 163;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 164;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 165;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 166;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 167;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 168;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 169;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 170;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 171;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 172;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 173;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 174;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 175;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 176;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 177;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 178;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 179;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 180;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 181;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 182;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 183;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 184;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 185;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 186;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 187;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 188;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 189;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 190;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 191;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 192;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 193;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 194;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 195;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 196;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 197;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 198;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 199;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 200;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 201;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 202;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 203;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 204;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 205;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 206;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 207;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 208;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 209;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 210;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 211;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 212;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 213;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 214;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 215;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 216;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 217;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 218;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 219;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 220;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 221;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 222;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 223;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 224;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 225;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 226;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 227;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 228;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 229;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 230;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 231;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 232;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 233;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 234;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 235;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 236;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 237;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 238;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 239;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 240;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 241;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 242;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 243;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 244;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 245;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 246;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 247;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 248;4; 0.000000,-0.000000, 0.000000, 1.000000;;, - 249;4; 0.000000,-0.000000, 0.000000, 1.000000;;; - } - AnimationKey { // Scale - 1; - 250; - 0;3; 0.165085, 0.348037, 0.189174;;, - 1;3; 0.165085, 0.348037, 0.189174;;, - 2;3; 0.165085, 0.348037, 0.189174;;, - 3;3; 0.165085, 0.348037, 0.189174;;, - 4;3; 0.165085, 0.348037, 0.189174;;, - 5;3; 0.165085, 0.348037, 0.189174;;, - 6;3; 0.165085, 0.348037, 0.189174;;, - 7;3; 0.165085, 0.348037, 0.189174;;, - 8;3; 0.165085, 0.348037, 0.189174;;, - 9;3; 0.165085, 0.348037, 0.189174;;, - 10;3; 0.165085, 0.348037, 0.189174;;, - 11;3; 0.165085, 0.348037, 0.189174;;, - 12;3; 0.165085, 0.348037, 0.189174;;, - 13;3; 0.165085, 0.348037, 0.189174;;, - 14;3; 0.165085, 0.348037, 0.189174;;, - 15;3; 0.165085, 0.348037, 0.189174;;, - 16;3; 0.165085, 0.348037, 0.189174;;, - 17;3; 0.165085, 0.348037, 0.189174;;, - 18;3; 0.165085, 0.348037, 0.189174;;, - 19;3; 0.165085, 0.348037, 0.189174;;, - 20;3; 0.165085, 0.348037, 0.189174;;, - 21;3; 0.165085, 0.348037, 0.189174;;, - 22;3; 0.165085, 0.348037, 0.189174;;, - 23;3; 0.165085, 0.348037, 0.189174;;, - 24;3; 0.165085, 0.348037, 0.189174;;, - 25;3; 0.165085, 0.348037, 0.189174;;, - 26;3; 0.165085, 0.348037, 0.189174;;, - 27;3; 0.165085, 0.348037, 0.189174;;, - 28;3; 0.165085, 0.348037, 0.189174;;, - 29;3; 0.165085, 0.348037, 0.189174;;, - 30;3; 0.165085, 0.348037, 0.189174;;, - 31;3; 0.165085, 0.348037, 0.189174;;, - 32;3; 0.165085, 0.348037, 0.189174;;, - 33;3; 0.165085, 0.348037, 0.189174;;, - 34;3; 0.165085, 0.348037, 0.189174;;, - 35;3; 0.165085, 0.348037, 0.189174;;, - 36;3; 0.165085, 0.348037, 0.189174;;, - 37;3; 0.165085, 0.348037, 0.189174;;, - 38;3; 0.165085, 0.348037, 0.189174;;, - 39;3; 0.165085, 0.348037, 0.189174;;, - 40;3; 0.165085, 0.348037, 0.189174;;, - 41;3; 0.165085, 0.348037, 0.189174;;, - 42;3; 0.165085, 0.348037, 0.189174;;, - 43;3; 0.165085, 0.348037, 0.189174;;, - 44;3; 0.165085, 0.348037, 0.189174;;, - 45;3; 0.165085, 0.348037, 0.189174;;, - 46;3; 0.165085, 0.348037, 0.189174;;, - 47;3; 0.165085, 0.348037, 0.189174;;, - 48;3; 0.165085, 0.348037, 0.189174;;, - 49;3; 0.165085, 0.348037, 0.189174;;, - 50;3; 0.165085, 0.348037, 0.189174;;, - 51;3; 0.165085, 0.348037, 0.189174;;, - 52;3; 0.165085, 0.348037, 0.189174;;, - 53;3; 0.165085, 0.348037, 0.189174;;, - 54;3; 0.165085, 0.348037, 0.189174;;, - 55;3; 0.165085, 0.348037, 0.189174;;, - 56;3; 0.165085, 0.348037, 0.189174;;, - 57;3; 0.165085, 0.348037, 0.189174;;, - 58;3; 0.165085, 0.348037, 0.189174;;, - 59;3; 0.165085, 0.348037, 0.189174;;, - 60;3; 0.165085, 0.348037, 0.189174;;, - 61;3; 0.165085, 0.348037, 0.189174;;, - 62;3; 0.165085, 0.348037, 0.189174;;, - 63;3; 0.165085, 0.348037, 0.189174;;, - 64;3; 0.165085, 0.348037, 0.189174;;, - 65;3; 0.165085, 0.348037, 0.189174;;, - 66;3; 0.165085, 0.348037, 0.189174;;, - 67;3; 0.165085, 0.348037, 0.189174;;, - 68;3; 0.165085, 0.348037, 0.189174;;, - 69;3; 0.165085, 0.348037, 0.189174;;, - 70;3; 0.165085, 0.348037, 0.189174;;, - 71;3; 0.165085, 0.348037, 0.189174;;, - 72;3; 0.165085, 0.348037, 0.189174;;, - 73;3; 0.165085, 0.348037, 0.189174;;, - 74;3; 0.165085, 0.348037, 0.189174;;, - 75;3; 0.165085, 0.348037, 0.189174;;, - 76;3; 0.165085, 0.348037, 0.189174;;, - 77;3; 0.165085, 0.348037, 0.189174;;, - 78;3; 0.165085, 0.348037, 0.189174;;, - 79;3; 0.165085, 0.348037, 0.189174;;, - 80;3; 0.165085, 0.348037, 0.189174;;, - 81;3; 0.165085, 0.348037, 0.189174;;, - 82;3; 0.165085, 0.348037, 0.189174;;, - 83;3; 0.165085, 0.348037, 0.189174;;, - 84;3; 0.165085, 0.348037, 0.189174;;, - 85;3; 0.165085, 0.348037, 0.189174;;, - 86;3; 0.165085, 0.348037, 0.189174;;, - 87;3; 0.165085, 0.348037, 0.189174;;, - 88;3; 0.165085, 0.348037, 0.189174;;, - 89;3; 0.165085, 0.348037, 0.189174;;, - 90;3; 0.165085, 0.348037, 0.189174;;, - 91;3; 0.165085, 0.348037, 0.189174;;, - 92;3; 0.165085, 0.348037, 0.189174;;, - 93;3; 0.165085, 0.348037, 0.189174;;, - 94;3; 0.165085, 0.348037, 0.189174;;, - 95;3; 0.165085, 0.348037, 0.189174;;, - 96;3; 0.165085, 0.348037, 0.189174;;, - 97;3; 0.165085, 0.348037, 0.189174;;, - 98;3; 0.165085, 0.348037, 0.189174;;, - 99;3; 0.165085, 0.348037, 0.189174;;, - 100;3; 0.165085, 0.348037, 0.189174;;, - 101;3; 0.165085, 0.348037, 0.189174;;, - 102;3; 0.165085, 0.348037, 0.189174;;, - 103;3; 0.165085, 0.348037, 0.189174;;, - 104;3; 0.165085, 0.348037, 0.189174;;, - 105;3; 0.165085, 0.348037, 0.189174;;, - 106;3; 0.165085, 0.348037, 0.189174;;, - 107;3; 0.165085, 0.348037, 0.189174;;, - 108;3; 0.165085, 0.348037, 0.189174;;, - 109;3; 0.165085, 0.348037, 0.189174;;, - 110;3; 0.165085, 0.348037, 0.189174;;, - 111;3; 0.165085, 0.348037, 0.189174;;, - 112;3; 0.165085, 0.348037, 0.189174;;, - 113;3; 0.165085, 0.348037, 0.189174;;, - 114;3; 0.165085, 0.348037, 0.189174;;, - 115;3; 0.165085, 0.348037, 0.189174;;, - 116;3; 0.165085, 0.348037, 0.189174;;, - 117;3; 0.165085, 0.348037, 0.189174;;, - 118;3; 0.165085, 0.348037, 0.189174;;, - 119;3; 0.165085, 0.348037, 0.189174;;, - 120;3; 0.165085, 0.348037, 0.189174;;, - 121;3; 0.165085, 0.348037, 0.189174;;, - 122;3; 0.165085, 0.348037, 0.189174;;, - 123;3; 0.165085, 0.348037, 0.189174;;, - 124;3; 0.165085, 0.348037, 0.189174;;, - 125;3; 0.165085, 0.348037, 0.189174;;, - 126;3; 0.165085, 0.348037, 0.189174;;, - 127;3; 0.165085, 0.348037, 0.189174;;, - 128;3; 0.165085, 0.348037, 0.189174;;, - 129;3; 0.165085, 0.348037, 0.189174;;, - 130;3; 0.165085, 0.348037, 0.189174;;, - 131;3; 0.165085, 0.348037, 0.189174;;, - 132;3; 0.165085, 0.348037, 0.189174;;, - 133;3; 0.165085, 0.348037, 0.189174;;, - 134;3; 0.165085, 0.348037, 0.189174;;, - 135;3; 0.165085, 0.348037, 0.189174;;, - 136;3; 0.165085, 0.348037, 0.189174;;, - 137;3; 0.165085, 0.348037, 0.189174;;, - 138;3; 0.165085, 0.348037, 0.189174;;, - 139;3; 0.165085, 0.348037, 0.189174;;, - 140;3; 0.165085, 0.348037, 0.189174;;, - 141;3; 0.165085, 0.348037, 0.189174;;, - 142;3; 0.165085, 0.348037, 0.189174;;, - 143;3; 0.165085, 0.348037, 0.189174;;, - 144;3; 0.165085, 0.348037, 0.189174;;, - 145;3; 0.165085, 0.348037, 0.189174;;, - 146;3; 0.165085, 0.348037, 0.189174;;, - 147;3; 0.165085, 0.348037, 0.189174;;, - 148;3; 0.165085, 0.348037, 0.189174;;, - 149;3; 0.165085, 0.348037, 0.189174;;, - 150;3; 0.165085, 0.348037, 0.189174;;, - 151;3; 0.165085, 0.348037, 0.189174;;, - 152;3; 0.165085, 0.348037, 0.189174;;, - 153;3; 0.165085, 0.348037, 0.189174;;, - 154;3; 0.165085, 0.348037, 0.189174;;, - 155;3; 0.165085, 0.348037, 0.189174;;, - 156;3; 0.165085, 0.348037, 0.189174;;, - 157;3; 0.165085, 0.348037, 0.189174;;, - 158;3; 0.165085, 0.348037, 0.189174;;, - 159;3; 0.165085, 0.348037, 0.189174;;, - 160;3; 0.165085, 0.348037, 0.189174;;, - 161;3; 0.165085, 0.348037, 0.189174;;, - 162;3; 0.165085, 0.348037, 0.189174;;, - 163;3; 0.165085, 0.348037, 0.189174;;, - 164;3; 0.165085, 0.348037, 0.189174;;, - 165;3; 0.165085, 0.348037, 0.189174;;, - 166;3; 0.165085, 0.348037, 0.189174;;, - 167;3; 0.165085, 0.348037, 0.189174;;, - 168;3; 0.165085, 0.348037, 0.189174;;, - 169;3; 0.165085, 0.348037, 0.189174;;, - 170;3; 0.165085, 0.348037, 0.189174;;, - 171;3; 0.165085, 0.348037, 0.189174;;, - 172;3; 0.165085, 0.348037, 0.189174;;, - 173;3; 0.165085, 0.348037, 0.189174;;, - 174;3; 0.165085, 0.348037, 0.189174;;, - 175;3; 0.165085, 0.348037, 0.189174;;, - 176;3; 0.165085, 0.348037, 0.189174;;, - 177;3; 0.165085, 0.348037, 0.189174;;, - 178;3; 0.165085, 0.348037, 0.189174;;, - 179;3; 0.165085, 0.348037, 0.189174;;, - 180;3; 0.165085, 0.348037, 0.189174;;, - 181;3; 0.165085, 0.348037, 0.189174;;, - 182;3; 0.165085, 0.348037, 0.189174;;, - 183;3; 0.165085, 0.348037, 0.189174;;, - 184;3; 0.165085, 0.348037, 0.189174;;, - 185;3; 0.165085, 0.348037, 0.189174;;, - 186;3; 0.165085, 0.348037, 0.189174;;, - 187;3; 0.165085, 0.348037, 0.189174;;, - 188;3; 0.165085, 0.348037, 0.189174;;, - 189;3; 0.165085, 0.348037, 0.189174;;, - 190;3; 0.165085, 0.348037, 0.189174;;, - 191;3; 0.165085, 0.348037, 0.189174;;, - 192;3; 0.165085, 0.348037, 0.189174;;, - 193;3; 0.165085, 0.348037, 0.189174;;, - 194;3; 0.165085, 0.348037, 0.189174;;, - 195;3; 0.165085, 0.348037, 0.189174;;, - 196;3; 0.165085, 0.348037, 0.189174;;, - 197;3; 0.165085, 0.348037, 0.189174;;, - 198;3; 0.165085, 0.348037, 0.189174;;, - 199;3; 0.165085, 0.348037, 0.189174;;, - 200;3; 0.165085, 0.348037, 0.189174;;, - 201;3; 0.165085, 0.348037, 0.189174;;, - 202;3; 0.165085, 0.348037, 0.189174;;, - 203;3; 0.165085, 0.348037, 0.189174;;, - 204;3; 0.165085, 0.348037, 0.189174;;, - 205;3; 0.165085, 0.348037, 0.189174;;, - 206;3; 0.165085, 0.348037, 0.189174;;, - 207;3; 0.165085, 0.348037, 0.189174;;, - 208;3; 0.165085, 0.348037, 0.189174;;, - 209;3; 0.165085, 0.348037, 0.189174;;, - 210;3; 0.165085, 0.348037, 0.189174;;, - 211;3; 0.165085, 0.348037, 0.189174;;, - 212;3; 0.165085, 0.348037, 0.189174;;, - 213;3; 0.165085, 0.348037, 0.189174;;, - 214;3; 0.165085, 0.348037, 0.189174;;, - 215;3; 0.165085, 0.348037, 0.189174;;, - 216;3; 0.165085, 0.348037, 0.189174;;, - 217;3; 0.165085, 0.348037, 0.189174;;, - 218;3; 0.165085, 0.348037, 0.189174;;, - 219;3; 0.165085, 0.348037, 0.189174;;, - 220;3; 0.165085, 0.348037, 0.189174;;, - 221;3; 0.165085, 0.348037, 0.189174;;, - 222;3; 0.165085, 0.348037, 0.189174;;, - 223;3; 0.165085, 0.348037, 0.189174;;, - 224;3; 0.165085, 0.348037, 0.189174;;, - 225;3; 0.165085, 0.348037, 0.189174;;, - 226;3; 0.165085, 0.348037, 0.189174;;, - 227;3; 0.165085, 0.348037, 0.189174;;, - 228;3; 0.165085, 0.348037, 0.189174;;, - 229;3; 0.165085, 0.348037, 0.189174;;, - 230;3; 0.165085, 0.348037, 0.189174;;, - 231;3; 0.165085, 0.348037, 0.189174;;, - 232;3; 0.165085, 0.348037, 0.189174;;, - 233;3; 0.165085, 0.348037, 0.189174;;, - 234;3; 0.165085, 0.348037, 0.189174;;, - 235;3; 0.165085, 0.348037, 0.189174;;, - 236;3; 0.165085, 0.348037, 0.189174;;, - 237;3; 0.165085, 0.348037, 0.189174;;, - 238;3; 0.165085, 0.348037, 0.189174;;, - 239;3; 0.165085, 0.348037, 0.189174;;, - 240;3; 0.165085, 0.348037, 0.189174;;, - 241;3; 0.165085, 0.348037, 0.189174;;, - 242;3; 0.165085, 0.348037, 0.189174;;, - 243;3; 0.165085, 0.348037, 0.189174;;, - 244;3; 0.165085, 0.348037, 0.189174;;, - 245;3; 0.165085, 0.348037, 0.189174;;, - 246;3; 0.165085, 0.348037, 0.189174;;, - 247;3; 0.165085, 0.348037, 0.189174;;, - 248;3; 0.165085, 0.348037, 0.189174;;, - 249;3; 0.165085, 0.348037, 0.189174;;; - } - AnimationKey { // Position - 2; - 250; - 0;3; 0.672467, 1.528196, 1.101588;;, - 1;3; 0.672467, 1.528196, 1.101588;;, - 2;3; 0.672467, 1.528196, 1.101588;;, - 3;3; 0.672467, 1.528196, 1.101588;;, - 4;3; 0.672467, 1.528196, 1.101588;;, - 5;3; 0.672467, 1.528196, 1.101588;;, - 6;3; 0.672467, 1.528196, 1.101588;;, - 7;3; 0.672467, 1.528196, 1.101588;;, - 8;3; 0.672467, 1.528196, 1.101588;;, - 9;3; 0.672467, 1.528196, 1.101588;;, - 10;3; 0.672467, 1.528196, 1.101588;;, - 11;3; 0.672467, 1.528196, 1.101588;;, - 12;3; 0.672467, 1.528196, 1.101588;;, - 13;3; 0.672467, 1.528196, 1.101588;;, - 14;3; 0.672467, 1.528196, 1.101588;;, - 15;3; 0.672467, 1.528196, 1.101588;;, - 16;3; 0.672467, 1.528196, 1.101588;;, - 17;3; 0.672467, 1.528196, 1.101588;;, - 18;3; 0.672467, 1.528196, 1.101588;;, - 19;3; 0.672467, 1.528196, 1.101588;;, - 20;3; 0.672467, 1.528196, 1.101588;;, - 21;3; 0.672467, 1.528196, 1.101588;;, - 22;3; 0.672467, 1.528196, 1.101588;;, - 23;3; 0.672467, 1.528196, 1.101588;;, - 24;3; 0.672467, 1.528196, 1.101588;;, - 25;3; 0.672467, 1.528196, 1.101588;;, - 26;3; 0.672467, 1.528196, 1.101588;;, - 27;3; 0.672467, 1.528196, 1.101588;;, - 28;3; 0.672467, 1.528196, 1.101588;;, - 29;3; 0.672467, 1.528196, 1.101588;;, - 30;3; 0.672467, 1.528196, 1.101588;;, - 31;3; 0.672467, 1.528196, 1.101588;;, - 32;3; 0.672467, 1.528196, 1.101588;;, - 33;3; 0.672467, 1.528196, 1.101588;;, - 34;3; 0.672467, 1.528196, 1.101588;;, - 35;3; 0.672467, 1.528196, 1.101588;;, - 36;3; 0.672467, 1.528196, 1.101588;;, - 37;3; 0.672467, 1.528196, 1.101588;;, - 38;3; 0.672467, 1.528196, 1.101588;;, - 39;3; 0.672467, 1.528196, 1.101588;;, - 40;3; 0.672467, 1.528196, 1.101588;;, - 41;3; 0.672467, 1.528196, 1.101588;;, - 42;3; 0.672467, 1.528196, 1.101588;;, - 43;3; 0.672467, 1.528196, 1.101588;;, - 44;3; 0.672467, 1.528196, 1.101588;;, - 45;3; 0.672467, 1.528196, 1.101588;;, - 46;3; 0.672467, 1.528196, 1.101588;;, - 47;3; 0.672467, 1.528196, 1.101588;;, - 48;3; 0.672467, 1.528196, 1.101588;;, - 49;3; 0.672467, 1.528196, 1.101588;;, - 50;3; 0.672467, 1.528196, 1.101588;;, - 51;3; 0.672467, 1.528196, 1.101588;;, - 52;3; 0.672467, 1.528196, 1.101588;;, - 53;3; 0.672467, 1.528196, 1.101588;;, - 54;3; 0.672467, 1.528196, 1.101588;;, - 55;3; 0.672467, 1.528196, 1.101588;;, - 56;3; 0.672467, 1.528196, 1.101588;;, - 57;3; 0.672467, 1.528196, 1.101588;;, - 58;3; 0.672467, 1.528196, 1.101588;;, - 59;3; 0.672467, 1.528196, 1.101588;;, - 60;3; 0.672467, 1.528196, 1.101588;;, - 61;3; 0.672467, 1.528196, 1.101588;;, - 62;3; 0.672467, 1.528196, 1.101588;;, - 63;3; 0.672467, 1.528196, 1.101588;;, - 64;3; 0.672467, 1.528196, 1.101588;;, - 65;3; 0.672467, 1.528196, 1.101588;;, - 66;3; 0.672467, 1.528196, 1.101588;;, - 67;3; 0.672467, 1.528196, 1.101588;;, - 68;3; 0.672467, 1.528196, 1.101588;;, - 69;3; 0.672467, 1.528196, 1.101588;;, - 70;3; 0.672467, 1.528196, 1.101588;;, - 71;3; 0.672467, 1.528196, 1.101588;;, - 72;3; 0.672467, 1.528196, 1.101588;;, - 73;3; 0.672467, 1.528196, 1.101588;;, - 74;3; 0.672467, 1.528196, 1.101588;;, - 75;3; 0.672467, 1.528196, 1.101588;;, - 76;3; 0.672467, 1.528196, 1.101588;;, - 77;3; 0.672467, 1.528196, 1.101588;;, - 78;3; 0.672467, 1.528196, 1.101588;;, - 79;3; 0.672467, 1.528196, 1.101588;;, - 80;3; 0.672467, 1.528196, 1.101588;;, - 81;3; 0.672467, 1.528196, 1.101588;;, - 82;3; 0.672467, 1.528196, 1.101588;;, - 83;3; 0.672467, 1.528196, 1.101588;;, - 84;3; 0.672467, 1.528196, 1.101588;;, - 85;3; 0.672467, 1.528196, 1.101588;;, - 86;3; 0.672467, 1.528196, 1.101588;;, - 87;3; 0.672467, 1.528196, 1.101588;;, - 88;3; 0.672467, 1.528196, 1.101588;;, - 89;3; 0.672467, 1.528196, 1.101588;;, - 90;3; 0.672467, 1.528196, 1.101588;;, - 91;3; 0.672467, 1.528196, 1.101588;;, - 92;3; 0.672467, 1.528196, 1.101588;;, - 93;3; 0.672467, 1.528196, 1.101588;;, - 94;3; 0.672467, 1.528196, 1.101588;;, - 95;3; 0.672467, 1.528196, 1.101588;;, - 96;3; 0.672467, 1.528196, 1.101588;;, - 97;3; 0.672467, 1.528196, 1.101588;;, - 98;3; 0.672467, 1.528196, 1.101588;;, - 99;3; 0.672467, 1.528196, 1.101588;;, - 100;3; 0.672467, 1.528196, 1.101588;;, - 101;3; 0.672467, 1.528196, 1.101588;;, - 102;3; 0.672467, 1.528196, 1.101588;;, - 103;3; 0.672467, 1.528196, 1.101588;;, - 104;3; 0.672467, 1.528196, 1.101588;;, - 105;3; 0.672467, 1.528196, 1.101588;;, - 106;3; 0.672467, 1.528196, 1.101588;;, - 107;3; 0.672467, 1.528196, 1.101588;;, - 108;3; 0.672467, 1.528196, 1.101588;;, - 109;3; 0.672467, 1.528196, 1.101588;;, - 110;3; 0.672467, 1.528196, 1.101588;;, - 111;3; 0.672467, 1.528196, 1.101588;;, - 112;3; 0.672467, 1.528196, 1.101588;;, - 113;3; 0.672467, 1.528196, 1.101588;;, - 114;3; 0.672467, 1.528196, 1.101588;;, - 115;3; 0.672467, 1.528196, 1.101588;;, - 116;3; 0.672467, 1.528196, 1.101588;;, - 117;3; 0.672467, 1.528196, 1.101588;;, - 118;3; 0.672467, 1.528196, 1.101588;;, - 119;3; 0.672467, 1.528196, 1.101588;;, - 120;3; 0.672467, 1.528196, 1.101588;;, - 121;3; 0.672467, 1.528196, 1.101588;;, - 122;3; 0.672467, 1.528196, 1.101588;;, - 123;3; 0.672467, 1.528196, 1.101588;;, - 124;3; 0.672467, 1.528196, 1.101588;;, - 125;3; 0.672467, 1.528196, 1.101588;;, - 126;3; 0.672467, 1.528196, 1.101588;;, - 127;3; 0.672467, 1.528196, 1.101588;;, - 128;3; 0.672467, 1.528196, 1.101588;;, - 129;3; 0.672467, 1.528196, 1.101588;;, - 130;3; 0.672467, 1.528196, 1.101588;;, - 131;3; 0.672467, 1.528196, 1.101588;;, - 132;3; 0.672467, 1.528196, 1.101588;;, - 133;3; 0.672467, 1.528196, 1.101588;;, - 134;3; 0.672467, 1.528196, 1.101588;;, - 135;3; 0.672467, 1.528196, 1.101588;;, - 136;3; 0.672467, 1.528196, 1.101588;;, - 137;3; 0.672467, 1.528196, 1.101588;;, - 138;3; 0.672467, 1.528196, 1.101588;;, - 139;3; 0.672467, 1.528196, 1.101588;;, - 140;3; 0.672467, 1.528196, 1.101588;;, - 141;3; 0.672467, 1.528196, 1.101588;;, - 142;3; 0.672467, 1.528196, 1.101588;;, - 143;3; 0.672467, 1.528196, 1.101588;;, - 144;3; 0.672467, 1.528196, 1.101588;;, - 145;3; 0.672467, 1.528196, 1.101588;;, - 146;3; 0.672467, 1.528196, 1.101588;;, - 147;3; 0.672467, 1.528196, 1.101588;;, - 148;3; 0.672467, 1.528196, 1.101588;;, - 149;3; 0.672467, 1.528196, 1.101588;;, - 150;3; 0.672467, 1.528196, 1.101588;;, - 151;3; 0.672467, 1.528196, 1.101588;;, - 152;3; 0.672467, 1.528196, 1.101588;;, - 153;3; 0.672467, 1.528196, 1.101588;;, - 154;3; 0.672467, 1.528196, 1.101588;;, - 155;3; 0.672467, 1.528196, 1.101588;;, - 156;3; 0.672467, 1.528196, 1.101588;;, - 157;3; 0.672467, 1.528196, 1.101588;;, - 158;3; 0.672467, 1.528196, 1.101588;;, - 159;3; 0.672467, 1.528196, 1.101588;;, - 160;3; 0.672467, 1.528196, 1.101588;;, - 161;3; 0.672467, 1.528196, 1.101588;;, - 162;3; 0.672467, 1.528196, 1.101588;;, - 163;3; 0.672467, 1.528196, 1.101588;;, - 164;3; 0.672467, 1.528196, 1.101588;;, - 165;3; 0.672467, 1.528196, 1.101588;;, - 166;3; 0.672467, 1.528196, 1.101588;;, - 167;3; 0.672467, 1.528196, 1.101588;;, - 168;3; 0.672467, 1.528196, 1.101588;;, - 169;3; 0.672467, 1.528196, 1.101588;;, - 170;3; 0.672467, 1.528196, 1.101588;;, - 171;3; 0.672467, 1.528196, 1.101588;;, - 172;3; 0.672467, 1.528196, 1.101588;;, - 173;3; 0.672467, 1.528196, 1.101588;;, - 174;3; 0.672467, 1.528196, 1.101588;;, - 175;3; 0.672467, 1.528196, 1.101588;;, - 176;3; 0.672467, 1.528196, 1.101588;;, - 177;3; 0.672467, 1.528196, 1.101588;;, - 178;3; 0.672467, 1.528196, 1.101588;;, - 179;3; 0.672467, 1.528196, 1.101588;;, - 180;3; 0.672467, 1.528196, 1.101588;;, - 181;3; 0.672467, 1.528196, 1.101588;;, - 182;3; 0.672467, 1.528196, 1.101588;;, - 183;3; 0.672467, 1.528196, 1.101588;;, - 184;3; 0.672467, 1.528196, 1.101588;;, - 185;3; 0.672467, 1.528196, 1.101588;;, - 186;3; 0.672467, 1.528196, 1.101588;;, - 187;3; 0.672467, 1.528196, 1.101588;;, - 188;3; 0.672467, 1.528196, 1.101588;;, - 189;3; 0.672467, 1.528196, 1.101588;;, - 190;3; 0.672467, 1.528196, 1.101588;;, - 191;3; 0.672467, 1.528196, 1.101588;;, - 192;3; 0.672467, 1.528196, 1.101588;;, - 193;3; 0.672467, 1.528196, 1.101588;;, - 194;3; 0.672467, 1.528196, 1.101588;;, - 195;3; 0.672467, 1.528196, 1.101588;;, - 196;3; 0.672467, 1.528196, 1.101588;;, - 197;3; 0.672467, 1.528196, 1.101588;;, - 198;3; 0.672467, 1.528196, 1.101588;;, - 199;3; 0.672467, 1.528196, 1.101588;;, - 200;3; 0.672467, 1.528196, 1.101588;;, - 201;3; 0.672467, 1.528196, 1.101588;;, - 202;3; 0.672467, 1.528196, 1.101588;;, - 203;3; 0.672467, 1.528196, 1.101588;;, - 204;3; 0.672467, 1.528196, 1.101588;;, - 205;3; 0.672467, 1.528196, 1.101588;;, - 206;3; 0.672467, 1.528196, 1.101588;;, - 207;3; 0.672467, 1.528196, 1.101588;;, - 208;3; 0.672467, 1.528196, 1.101588;;, - 209;3; 0.672467, 1.528196, 1.101588;;, - 210;3; 0.672467, 1.528196, 1.101588;;, - 211;3; 0.672467, 1.528196, 1.101588;;, - 212;3; 0.672467, 1.528196, 1.101588;;, - 213;3; 0.672467, 1.528196, 1.101588;;, - 214;3; 0.672467, 1.528196, 1.101588;;, - 215;3; 0.672467, 1.528196, 1.101588;;, - 216;3; 0.672467, 1.528196, 1.101588;;, - 217;3; 0.672467, 1.528196, 1.101588;;, - 218;3; 0.672467, 1.528196, 1.101588;;, - 219;3; 0.672467, 1.528196, 1.101588;;, - 220;3; 0.672467, 1.528196, 1.101588;;, - 221;3; 0.672467, 1.528196, 1.101588;;, - 222;3; 0.672467, 1.528196, 1.101588;;, - 223;3; 0.672467, 1.528196, 1.101588;;, - 224;3; 0.672467, 1.528196, 1.101588;;, - 225;3; 0.672467, 1.528196, 1.101588;;, - 226;3; 0.672467, 1.528196, 1.101588;;, - 227;3; 0.672467, 1.528196, 1.101588;;, - 228;3; 0.672467, 1.528196, 1.101588;;, - 229;3; 0.672467, 1.528196, 1.101588;;, - 230;3; 0.672467, 1.528196, 1.101588;;, - 231;3; 0.672467, 1.528196, 1.101588;;, - 232;3; 0.672467, 1.528196, 1.101588;;, - 233;3; 0.672467, 1.528196, 1.101588;;, - 234;3; 0.672467, 1.528196, 1.101588;;, - 235;3; 0.672467, 1.528196, 1.101588;;, - 236;3; 0.672467, 1.528196, 1.101588;;, - 237;3; 0.672467, 1.528196, 1.101588;;, - 238;3; 0.672467, 1.528196, 1.101588;;, - 239;3; 0.672467, 1.528196, 1.101588;;, - 240;3; 0.672467, 1.528196, 1.101588;;, - 241;3; 0.672467, 1.528196, 1.101588;;, - 242;3; 0.672467, 1.528196, 1.101588;;, - 243;3; 0.672467, 1.528196, 1.101588;;, - 244;3; 0.672467, 1.528196, 1.101588;;, - 245;3; 0.672467, 1.528196, 1.101588;;, - 246;3; 0.672467, 1.528196, 1.101588;;, - 247;3; 0.672467, 1.528196, 1.101588;;, - 248;3; 0.672467, 1.528196, 1.101588;;, - 249;3; 0.672467, 1.528196, 1.101588;;; - } - } -} // End of AnimationSet Global From 0a0900869140f6fa45dce8cb46e1c353a7945f6a Mon Sep 17 00:00:00 2001 From: lord-papirus Date: Wed, 4 Mar 2026 21:48:16 +0300 Subject: [PATCH 54/79] LG-2078 Added mod 'mobs' (aka 'mobs_redo') as submodule --- .gitmodules | 3 +++ mods/_various/mobs | 1 + 2 files changed, 4 insertions(+) create mode 160000 mods/_various/mobs diff --git a/.gitmodules b/.gitmodules index 4e7c69582..10c25a136 100644 --- a/.gitmodules +++ b/.gitmodules @@ -98,3 +98,6 @@ [submodule "util/ide-helper"] path = util/ide-helper url = https://github.com/Voxrame/luanti-ide-helper.git +[submodule "mods/_various/mobs"] + path = mods/_various/mobs + url = https://codeberg.org/tenplus1/mobs_redo.git diff --git a/mods/_various/mobs b/mods/_various/mobs new file mode 160000 index 000000000..055f6608e --- /dev/null +++ b/mods/_various/mobs @@ -0,0 +1 @@ +Subproject commit 055f6608e159e04f2cc658cb82c33caa13d4481e From 9eb449d758423898ea96c9311dd1d1f58e699c83 Mon Sep 17 00:00:00 2001 From: alek13 Date: Sun, 22 Feb 2026 18:20:53 +0300 Subject: [PATCH 55/79] `builin_ext`: `vector`: add `direction_{axis|side}()` helpers; improve annotaion docs. --- mods/lord/Core/builtin_ext/src/vector.lua | 67 ++++++++++++++++++++--- 1 file changed, 58 insertions(+), 9 deletions(-) diff --git a/mods/lord/Core/builtin_ext/src/vector.lua b/mods/lord/Core/builtin_ext/src/vector.lua index 5dec25701..17b489ebc 100644 --- a/mods/lord/Core/builtin_ext/src/vector.lua +++ b/mods/lord/Core/builtin_ext/src/vector.lua @@ -1,5 +1,20 @@ +local math_max, math_abs, v + = math.max, math.abs, vector.new ---- @enum (key) Position.OffsetSide + +--- @experimental +--- @unstable +--- @enum WorldSide: string +local WorldSide = { + ceiling = 'ceiling', + floor = 'floor', + north = 'north', + south = 'south', + east = 'east', + west = 'west', +} + +--- @enum (key) Position.OffsetSide: WorldSide local offset_method = { ceiling = 'above', floor = 'under', @@ -21,45 +36,79 @@ local offset_method = { ['z-'] = 'at_south', } ---- @param n? integer +--- Returns position above this one by `n` nodes. +--- @param n? integer default is `1` --- @return self function vector:above(n) return self:offset(0, n or 1, 0) end ---- @param n? integer +--- Returns position below this one by `n` nodes. +--- @param n? integer default is `1` --- @return self function vector:under(n) return self:offset(0, -(n or 1), 0) end ---- @param n? integer +--- Returns position to the north of this one by `n` nodes. +--- @param n? integer default is `1` --- @return self function vector:at_north(n) return self:offset(0, 0, n or 1) end ---- @param n? integer +--- Returns position to the south of this one by `n` nodes. +--- @param n? integer default is `1` --- @return self function vector:at_south(n) return self:offset(0, 0, -(n or 1)) end ---- @param n? integer +--- Returns position to the east of this one by `n` nodes. +--- @param n? integer default is `1` --- @return self function vector:at_east(n) return self:offset(n or 1, 0, 0) end ---- @param n? integer +--- Returns position to the west of this one by `n` nodes. +--- @param n? integer default is `1` --- @return self function vector:at_west(n) return self:offset(-(n or 1), 0, 0) end ---- @param side Position.OffsetSide ---- @param n? integer +--- Returns position to the specified `side` of this one by `n` nodes. +--- @param side Position.OffsetSide|WorldSide +--- @param n? integer default is `1` --- @return self function vector:at(side, n) return self[offset_method[side]](self, n) --- @diagnostic disable-line: param-type-mismatch end + +--- Returns the dominant axis direction as a vector, normalized to 1 and kept direction sign. +--- @return self +function vector:direction_axis() + -- keep only max coordinate, make others 0, keep sign + local max = math_max(math_abs(self.x), math_abs(self.y), math_abs(self.z)) + if math_abs(self.x) == max then + return v(self.x, 0, 0):sign() + elseif math_abs(self.y) == max then + return v(0, self.y, 0):sign() + else + return v(0, 0, self.z):sign() + end +end + +--- Returns the dominant axis direction as a side string. +--- @return WorldSide +function vector:direction_side() + local axis = self:direction_axis() + if axis.x ~= 0 then + return axis.x > 0 and WorldSide.east or WorldSide.west + elseif axis.y ~= 0 then + return axis.y > 0 and WorldSide.ceiling or WorldSide.floor + else + return axis.z > 0 and WorldSide.north or WorldSide.south + end +end From c8d6529955786ba998f2bfcc53a0b1047ec8631f Mon Sep 17 00:00:00 2001 From: alek13 Date: Tue, 24 Feb 2026 17:33:13 +0300 Subject: [PATCH 56/79] Gen.Library: use new helpers of `vector`. LG-2058 LG-2060 --- mods/lord/Core/map/src/map/Corridor.lua | 29 +++++++++---------- mods/lord/Core/map/src/map/Room.lua | 18 +----------- mods/lord/Core/map/src/map/room/wall/Type.lua | 14 +++------ 3 files changed, 19 insertions(+), 42 deletions(-) diff --git a/mods/lord/Core/map/src/map/Corridor.lua b/mods/lord/Core/map/src/map/Corridor.lua index d13b0b5c6..b5aca59db 100644 --- a/mods/lord/Core/map/src/map/Corridor.lua +++ b/mods/lord/Core/map/src/map/Corridor.lua @@ -11,13 +11,21 @@ local Corridor = Room:extended() --- @param size {width: integer, height: integer} size of corridor's vertical slice. --- @param length integer corridor's length. ---- @param direction PositionVector direction of the corridor. Must be horizontal (y == 0). +--- @param direction PositionVector|WorldSide|Voxrame.map.room.wall.Type direction of the corridor. Must be horizontal. --- @return self function Corridor:new(size, length, direction) - assert(direction.y == 0, 'Corridor direction must be horizontal') + --- @type Voxrame.map.room.wall.Type + local direction_side + if type(direction) ~= 'string' then --- @cast direction PositionVector + assert(direction.y == 0, 'Corridor direction must be horizontal') + direction_side = Side.of(direction) + else --- @cast direction WorldSide + assert(direction--[[@as string]]:is_one_of(Side.horizontal())) + direction_side = direction + end local room_size - if direction.x ~= 0 then + if direction_side == Side.east or direction_side == Side.west then room_size = v(length, size.height, size.width) else room_size = v(size.width, size.height, length) @@ -27,20 +35,11 @@ function Corridor:new(size, length, direction) -- We need to create exits for easy connection of corridors to rooms local start_side, end_side - if direction.x > 0 then - start_side, end_side = Side.west, Side.east - elseif direction.x < 0 then - start_side, end_side = Side.east, Side.west - elseif direction.z > 0 then - start_side, end_side = Side.south, Side.north - elseif direction.z < 0 then - start_side, end_side = Side.north, Side.south - else - error('Invalid direction for corridor') - end + end_side = direction_side + start_side = Side.opposite_for(end_side) corridor.exits[start_side] = Exit.to(start_side):at(corridor:floor_center_of(start_side)):with_size(size) - corridor.exits[end_side] = Exit.to(end_side):at(corridor:floor_center_of(end_side)):with_size(size) + corridor.exits[end_side] = Exit.to(end_side ):at(corridor:floor_center_of(end_side )):with_size(size) return corridor end diff --git a/mods/lord/Core/map/src/map/Room.lua b/mods/lord/Core/map/src/map/Room.lua index f88022313..552f42ab8 100644 --- a/mods/lord/Core/map/src/map/Room.lua +++ b/mods/lord/Core/map/src/map/Room.lua @@ -177,23 +177,7 @@ function Room:connect_to(connector) assert(direction.y == 0, 'Direction of connector must be horizontal') local connector_side = WallType.of(direction) - if not connector_side then - self.logger.error( - 'Cannot connect Room: Invalid connector side `%s` of direction `%s`', - dump(connector_side), dump(direction) - ) - - return self - end - local my_exit_side = WallType.opposite_for(connector_side) - if not my_exit_side then - self.logger.error( - 'Cannot connect Room: cannot find opposite side of connector side `%s`', - dump(connector_side) - ) - - return self - end + local my_exit_side = WallType.opposite_for(connector_side) if not self.exits[my_exit_side] then local position = self:floor_center_of(my_exit_side) diff --git a/mods/lord/Core/map/src/map/room/wall/Type.lua b/mods/lord/Core/map/src/map/room/wall/Type.lua index 1157f9a8e..45930db62 100644 --- a/mods/lord/Core/map/src/map/room/wall/Type.lua +++ b/mods/lord/Core/map/src/map/room/wall/Type.lua @@ -1,7 +1,7 @@ local assert = assert ---- @enum Voxrame.map.room.wall.Type: string +--- @enum Voxrame.map.room.wall.Type: WorldSide local WallType = { floor = 'floor', ceiling = 'ceiling', @@ -76,15 +76,9 @@ end --- Converts direction vector to wall side type. --- @static --- @param direction vector Direction of the side. Must be horizontal. ---- @return Voxrame.map.room.wall.Type? -function WallType.of(direction) -- luacheck: ignore 561 # cyclomatic complexity - return direction.x > 0 and WallType.east - or direction.x < 0 and WallType.west - or direction.z > 0 and WallType.north - or direction.z < 0 and WallType.south - or direction.y > 0 and WallType.ceiling - or direction.y < 0 and WallType.floor - or nil +--- @return Voxrame.map.room.wall.Type +function WallType.of(direction) + return direction:direction_side() end --- Returns opposite wall side type. From 39ca80bee67b2b3051e6aa86e38651d40df412f6 Mon Sep 17 00:00:00 2001 From: alek13 Date: Tue, 24 Feb 2026 17:39:06 +0300 Subject: [PATCH 57/79] Gen.Library: fix repositioning on connect. LG-2060 --- mods/lord/Core/map/src/map/Room.lua | 7 ++++--- mods/lord/Core/map/src/map/room/wall/Type.lua | 6 +++--- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/mods/lord/Core/map/src/map/Room.lua b/mods/lord/Core/map/src/map/Room.lua index 552f42ab8..c27190eef 100644 --- a/mods/lord/Core/map/src/map/Room.lua +++ b/mods/lord/Core/map/src/map/Room.lua @@ -61,10 +61,11 @@ function Room.set_debug_node_id(node_id) return Room end ---- @param position PositionVector +--- @param position PositionVector? --- @param size IntegerVector? --- @return self function Room:new(position, size) + position = position or v(0, 0, 0) size = size or self.size or v(9, 5, 9) if self.size_max then size = size:apply(math.min, self.size_max) @@ -188,9 +189,9 @@ function Room:connect_to(connector) -- Выход из присоединяемой комнаты может быть не в центре стены -- Нам нужно выровнять комнату относительно расположения выхода на этой стене local exit_offset_from_center = room_exit:floor_center() - self:floor_center_of(my_exit_side) - local alignment_offset = self.size:multiply(direction) / 2 + local alignment_offset = (self.size:multiply(direction) / 2):floor() alignment_offset = alignment_offset - exit_offset_from_center - alignment_offset.y = self.size.y / 2 + alignment_offset.y = math.floor(self.size.y / 2) self:move(connector:floor_center() + alignment_offset) diff --git a/mods/lord/Core/map/src/map/room/wall/Type.lua b/mods/lord/Core/map/src/map/room/wall/Type.lua index 45930db62..4042ef86e 100644 --- a/mods/lord/Core/map/src/map/room/wall/Type.lua +++ b/mods/lord/Core/map/src/map/room/wall/Type.lua @@ -1,5 +1,5 @@ -local assert - = assert +local assert, table_shuffle + = assert, table.shuffle --- @enum Voxrame.map.room.wall.Type: WorldSide local WallType = { @@ -51,7 +51,7 @@ function WallType.horizontal(shuffle) } if shuffle then - table.shuffle(result) + table_shuffle(result) end return result From dcba9a9b9f6ce3a0bd1afe99c580945bfc83b0c7 Mon Sep 17 00:00:00 2001 From: alek13 Date: Tue, 10 Mar 2026 20:39:48 +0300 Subject: [PATCH 58/79] `helpers`: `range` type, bug fixes, annotation improvements, Voxrame module init. --- .luacheckrc | 27 +++++----- mods/lord/Core/helpers/init.lua | 13 ++++- mods/lord/Core/helpers/src/helpers.lua | 8 --- mods/lord/Core/helpers/src/lua_ext/debug.lua | 14 ++--- mods/lord/Core/helpers/src/lua_ext/global.lua | 8 +-- mods/lord/Core/helpers/src/lua_ext/io.lua | 17 ++++++- mods/lord/Core/helpers/src/lua_ext/math.lua | 4 +- mods/lord/Core/helpers/src/lua_ext/table.lua | 51 ++++++++++++------- mods/lord/Core/helpers/src/types.lua | 2 + 9 files changed, 86 insertions(+), 58 deletions(-) delete mode 100644 mods/lord/Core/helpers/src/helpers.lua create mode 100644 mods/lord/Core/helpers/src/types.lua diff --git a/.luacheckrc b/.luacheckrc index b37fc1538..17437a4ea 100644 --- a/.luacheckrc +++ b/.luacheckrc @@ -16,13 +16,10 @@ globals = { read_globals = { table = { fields = { - --- @deprecated - "getn", -- was in Lua, now deprecated TODO: remove usages -- Luanti Builtin: - "copy", "copy_with_metatables", "indexof", "insert_all", "key_value_swap", - "pack", "unpack", "packsize", "shuffle", - -- our Core/helpers: - -- table: + "copy", "copy_with_metatables", "insert_all", + "indexof", "keyof", "key_value_swap", "shuffle", + -- Voxrame/helpers: "contains", "has_value", "has_key", "merge", "join", "merge_values", "is_empty", "overwrite", "keys_of", "count", "keys", "values", "only", "except", "keys_has_one_of_values", "equals", "multiply_each_value", @@ -31,32 +28,32 @@ read_globals = { } }, string = { fields = { - -- MT Builtin: - "split", "trim", - -- our Core/helpers: + -- Luanti Builtin: + "split", "trim", "pack", "unpack", "packsize", + -- Voxrame/helpers: "is_one_of", "replace", "contains", "starts_with", "ends_with", "vxr_split", "or_nil" } }, math = { fields = { - -- MT Builtin: + -- Luanti Builtin: "sign", "hypot", "factorial", "round", - -- Core/helpers: + -- Voxrame/helpers: "limit", "clamp", "is_within", "is_among", "is_in_range", "is_near", "point_on_circle" } }, io = { fields = { - -- our Core/helpers: - "file_exists", "write_to_file", "read_from_file" + -- Voxrame/helpers: + "file_exists", "write_to_file", "read_from_file", "dirname", "get_file_error" } }, os = { fields = { - -- our Core/helpers: + -- Voxrame/helpers: "DIRECTORY_SEPARATOR", } }, debug = { fields = { - -- our Core/helpers: + -- Voxrame/helpers: "get_function_code", "get_passed_params", "get_file_code", "measure", "measure_print" } }, diff --git a/mods/lord/Core/helpers/init.lua b/mods/lord/Core/helpers/init.lua index 62ccecd18..ab3bf6ce6 100644 --- a/mods/lord/Core/helpers/init.lua +++ b/mods/lord/Core/helpers/init.lua @@ -2,8 +2,19 @@ local mod_path = minetest.get_modpath(minetest.get_current_modname()) local old_require = require require = function(name) return dofile(mod_path .. '/src/' .. name:gsub('%.', '/') .. '.lua') end +Voxrame = Voxrame or {} +--- @module 'Voxrame.map' +Voxrame.helpers = 'loaded' -require('helpers') +require('types') +require('term') +require('lua_ext.global') +require('lua_ext.table') +require('lua_ext.string') +require('lua_ext.math') +require('lua_ext.io') +require('lua_ext.os') +require('lua_ext.debug') require = old_require diff --git a/mods/lord/Core/helpers/src/helpers.lua b/mods/lord/Core/helpers/src/helpers.lua deleted file mode 100644 index 0818ebb9d..000000000 --- a/mods/lord/Core/helpers/src/helpers.lua +++ /dev/null @@ -1,8 +0,0 @@ -require('term') -require('lua_ext.global') -require('lua_ext.table') -require('lua_ext.string') -require('lua_ext.math') -require('lua_ext.io') -require('lua_ext.os') -require('lua_ext.debug') diff --git a/mods/lord/Core/helpers/src/lua_ext/debug.lua b/mods/lord/Core/helpers/src/lua_ext/debug.lua index 7f14a00d0..835309501 100644 --- a/mods/lord/Core/helpers/src/lua_ext/debug.lua +++ b/mods/lord/Core/helpers/src/lua_ext/debug.lua @@ -1,5 +1,5 @@ -local debug_getinfo, math_ceil - = debug.getinfo, math.ceil +local debug_getinfo + = debug.getinfo local PROJECT_LOCATION = '' @@ -73,7 +73,7 @@ end --- @param depth? integer Call stack nesting level (default: `0`) --- @return string function __DIR__(depth) - local file_path = __FILE__(depth) + local file_path = __FILE__(1 + (depth or 0)) local dir_path = file_path:match('(.*[/\\])') or './' return dir_path @@ -237,13 +237,13 @@ function core.error_handler(message, depth) message = message:gsub('%.%.%.[^:]+:[0-9]+: ', '') if debug_mode then - term.print(term.stylize(('+'):rep(80), term.style.green)) + term.print(('+'):rep(80), term.style.green) term.print('ERROR:', term.style.bold .. term.style.bright_red) term.print(' ' .. message, term.style.bright_red) term.print('') term.print('Stack trace:', term.style.bold .. term.style.bright_red) term.print(backtrace(depth)) - term.print(term.stylize(('+'):rep(80), term.style.green)) + term.print(('+'):rep(80), term.style.green) return 'Debug mode is `on`. See you terminal.' else @@ -275,9 +275,9 @@ function debug.measure(name, callback, print_result) callback() - local time = math_ceil((os.clock() - start) * 1000) + local time = (os.clock() - start) * 1000 - measure_average[name] = math_ceil((measure_average[name] * measure_count[name] + time) / (measure_count[name] + 1)) + measure_average[name] = (measure_average[name] * measure_count[name] + time) / (measure_count[name] + 1) measure_count [name] = measure_count[name] + 1 measure_last [name] = time diff --git a/mods/lord/Core/helpers/src/lua_ext/global.lua b/mods/lord/Core/helpers/src/lua_ext/global.lua index 46d7446d5..1b816b1f2 100644 --- a/mods/lord/Core/helpers/src/lua_ext/global.lua +++ b/mods/lord/Core/helpers/src/lua_ext/global.lua @@ -23,11 +23,11 @@ function errorlf(message, level, ...) -- luacheck: ignore unused global variabl error(string.format(message, ...), level) end ---- Calls errorf if the value of its argument `v` is false (i.e., **nil** or **false**) ---- @param v any +--- Calls errorf if the value of its argument `condition` is false (i.e., **nil** or **false**) +--- @param condition any --- @param message string format string for `string.format()` -function assertf(v, message, ...) -- luacheck: ignore unused global variable assertf - if not v then +function assertf(condition, message, ...) -- luacheck: ignore unused global variable assertf + if not condition then errorlf(message, 2, ...) end end diff --git a/mods/lord/Core/helpers/src/lua_ext/io.lua b/mods/lord/Core/helpers/src/lua_ext/io.lua index 1dd51605a..45506ac3a 100644 --- a/mods/lord/Core/helpers/src/lua_ext/io.lua +++ b/mods/lord/Core/helpers/src/lua_ext/io.lua @@ -11,8 +11,12 @@ function io.file_exists(name) return false end +--- @type number?, string? +local error_code, error_message + --- Writes `content` into file by path `filepath`. --- Returns `true` if success or `false, error_code, error_message`. +--- Also you can get last error code and error message from `io.get_file_error` function. --- --- @param filepath string --- @param content string @@ -22,7 +26,8 @@ end function io.write_to_file(filepath, content, mode) mode = mode or "w" - local file, error_message, error_code = io.open(filepath, mode) + local file + file, error_message, error_code = io.open(filepath, mode) if not file then return false, error_code, error_message end @@ -41,6 +46,7 @@ end --- Reads all content from file by path `filepath`. --- Returns `string` with file content if success or `false, error_code, error_message`. +--- Also you can get last error code and error message from `io.get_file_error` function. --- --- @param filepath string --- @param mode? iolib.OpenMode default: `"r"` @@ -49,7 +55,8 @@ end function io.read_from_file(filepath, mode) mode = mode or "r" - local file, error_message, error_code = io.open(filepath, mode) + local file + file, error_message, error_code = io.open(filepath, mode) if not file then return false, error_code, error_message end @@ -61,6 +68,12 @@ function io.read_from_file(filepath, mode) return content end +--- Returns last error code and error message from `io.read_from_file` or `io.write_to_file` function. +--- @return number?, string? +function io.get_file_error() + return error_code, error_message +end + --- @param path string --- @return string function io.dirname(path) diff --git a/mods/lord/Core/helpers/src/lua_ext/math.lua b/mods/lord/Core/helpers/src/lua_ext/math.lua index 792f17301..12566ccc2 100644 --- a/mods/lord/Core/helpers/src/lua_ext/math.lua +++ b/mods/lord/Core/helpers/src/lua_ext/math.lua @@ -44,10 +44,10 @@ function math.is_in_range(value, min, max) return value > min and value <= max end ---- +--- Checks if `value` is close to `near` (within `gap` distance). --- @param value number --- @param near number ---- @param gap number +--- @param gap? number default: `1` function math.is_near(value, near, gap) gap = gap or 1 diff --git a/mods/lord/Core/helpers/src/lua_ext/table.lua b/mods/lord/Core/helpers/src/lua_ext/table.lua index 0f7ded6b2..72eb5546d 100644 --- a/mods/lord/Core/helpers/src/lua_ext/table.lua +++ b/mods/lord/Core/helpers/src/lua_ext/table.lua @@ -2,8 +2,9 @@ local table_copy, table_key_value_swap, pairs, next, type = table.copy, table.key_value_swap, pairs, next, type +--- Returns list of all keys of specified table. --- @param table table ---- @return string[]|any[] returns list of all keys of specified table +--- @return string[]|any[] function table.keys(table) local keys = {} for key, _ in pairs(table) do @@ -13,6 +14,10 @@ function table.keys(table) return keys end +--- Returns a table with all values from the given `table`. \ +--- Keys will be numeric indices. +--- @param table table +--- @return any[] function table.values(table) local values = {} for _, value in pairs(table) do @@ -22,9 +27,10 @@ function table.values(table) return values end +--- Returns a table with keys from the given `table` that have the specified `value`. --- @param table table --- @param value any ---- @return table|nil returns indexed table of found keys for table `table` or `nil` if nothing found +--- @return table|nil function table.keys_of(table, value) local found_keys = {} for key, v in pairs(table) do @@ -140,7 +146,9 @@ end --- Adds key-value from `table2` into `table1` only if that key does not exists in `table1`. ---- Values that are tables are copied by `table.copy()` +--- Values that are tables are copied by `table.copy()`. +--- If `recursively` is true, the function will be applied recursively for values +--- that are tables in both `table1` and `table2`. --- --- @overload fun(table1:table, table2:table):table --- @@ -203,16 +211,18 @@ function table.is_position(table) type(table.z) == 'number' end ---- @param table table ---- @param values table -function table.keys_has_one_of_values(table, values) +--- @deprecated +--- @param table table +--- @param find_keys table +function table.keys_has_one_of_values(table, find_keys) for key in pairs(table) do - if table_has_value(values, key) then + if table_has_value(find_keys, key) then return true end end return false end +table.has_any_key = table.keys_has_one_of_values --- Checks whether all `table` elements are equal to the specified `value` --- @param table table @@ -270,30 +280,33 @@ function table.multiply_each_value(table, multiplier_table) return result end ---- Iterates through the `t` table and passes each value and key to the given `callback`. ---- Value returned by the `callback` will be set instead of the value of `t` with same key. +--- Iterates through the `table` and passes each value and key to the given `callback`. \ +--- Value returned by the `callback` will be set instead of the value of `table` with same key. \ --- Non-recurcive. +--- --- @generic T: table ---- @param t T A table to walk through. +--- @param table T A table to walk through. --- @param callback fun(value:any,key:any):any Callback for apply to each value. Must return new value to set. ---- @param overwrite? boolean Whether to overwrite the `t` table (default: false) +--- @param overwrite? boolean Whether to overwrite the `table` table (default: false) --- @return table -function table.map(t, callback, overwrite) +function table.map(table, callback, overwrite) overwrite = overwrite or false - local result = overwrite and t or table_copy(t) - for key, value in pairs(t) do + local result = overwrite and table or table_copy(table) + for key, value in pairs(table) do result[key] = callback(value, key) end return result end ---- Iterates through the `t` table and passes each value and key to the given `callback`. +--- Iterates through the `table` and passes each value and key to the given `callback`. \ +--- Non-recurcive. +--- --- @generic T: table ---- @param t table|T A table to walk through. ---- @param callback fun(value:any,key:any):any Callback for apply to each value. Must return new value to set. -function table.walk(t, callback) - for key, value in pairs(t) do +--- @param table table|T A table to walk through. +--- @param callback fun(value:any,key:any):boolean Function for apply to each value. +function table.walk(table, callback) + for key, value in pairs(table) do callback(value, key) end end diff --git a/mods/lord/Core/helpers/src/types.lua b/mods/lord/Core/helpers/src/types.lua new file mode 100644 index 000000000..d4d23bfde --- /dev/null +++ b/mods/lord/Core/helpers/src/types.lua @@ -0,0 +1,2 @@ + +--- @alias range { min: integer, max: integer } From 5d6249d4131e072f979e16f0285c912a6c035674 Mon Sep 17 00:00:00 2001 From: alek13 Date: Thu, 12 Mar 2026 20:32:37 +0300 Subject: [PATCH 59/79] Gen.Library: `Room`: declarative `Exit`s. LG-2079. --- mods/lord/Core/map/src/map/Room.lua | 100 +++++++++++++++--- .../Core/map/src/map/room/ExitsDefinition.lua | 12 +++ 2 files changed, 100 insertions(+), 12 deletions(-) create mode 100644 mods/lord/Core/map/src/map/room/ExitsDefinition.lua diff --git a/mods/lord/Core/map/src/map/Room.lua b/mods/lord/Core/map/src/map/Room.lua index c27190eef..81ebf3cd4 100644 --- a/mods/lord/Core/map/src/map/Room.lua +++ b/mods/lord/Core/map/src/map/Room.lua @@ -1,5 +1,5 @@ -local setmetatable, v, id - = setmetatable, vector.new, core.get_content_id +local setmetatable, table_shuffle, math_random, math_min, v, id + = setmetatable, table.shuffle, math.random, math.min, vector.new, core.get_content_id local Cuboid = require('map.Cuboid') local Exit = require('map.room.Exit') @@ -14,32 +14,35 @@ local parent = Cuboid local Room = { --- @readonly --- @type IntegerVector - size = nil, --- @diagnostic disable-line: assign-type-mismatch + size = nil, --- @diagnostic disable-line: assign-type-mismatch --- @protected --- @type IntegerVector - size_max = nil, --- @diagnostic disable-line: assign-type-mismatch + size_max = nil, --- @diagnostic disable-line: assign-type-mismatch --- @protected --- @type table<'_all'|Voxrame.map.room.wall.Type, integer[]> - wall_blocks = nil, --- @diagnostic disable-line: assign-type-mismatch + wall_blocks = nil, --- @diagnostic disable-line: assign-type-mismatch + --- @private + --- @type 'default'|Voxrame.map.room.ExitsDefinition + possible_exits = nil, --- @diagnostic disable-line: assign-type-mismatch --- @type table - exits = nil, --- @diagnostic disable-line: assign-type-mismatch + exits = nil, --- @diagnostic disable-line: assign-type-mismatch --- @protected --- @type VoxelArea - area = nil, --- @diagnostic disable-line: assign-type-mismatch + area = nil, --- @diagnostic disable-line: assign-type-mismatch --- @protected --- @type integer[] - data = nil, --- @diagnostic disable-line: assign-type-mismatch + data = nil, --- @diagnostic disable-line: assign-type-mismatch --- @protected --- @type boolean - debug = false, + debug = false, --- @protected --- @static --- @type integer - debug_node_id = 0, + debug_node_id = 0, --- @protected --- @static --- @type helpers.Logger - logger = core.get_mod_logger(), + logger = core.get_mod_logger(), } parent:extended(Room) @@ -68,7 +71,7 @@ function Room:new(position, size) position = position or v(0, 0, 0) size = size or self.size or v(9, 5, 9) if self.size_max then - size = size:apply(math.min, self.size_max) + size = size:apply(math_min, self.size_max) end local class = self @@ -89,6 +92,67 @@ function Room:set_debug(debug) return self end +--- Returns list of exits of the room. +--- @return Voxrame.map.room.Exit[Voxrame.map.room.wall.Type] +function Room:get_exits() + return self.exits +end + +--- @private +--- @return Voxrame.map.room.ExitsDefinitionResolved? +function Room:resolve_possible_exits() + local possible_exits = self.possible_exits + if not possible_exits then + return + end + if possible_exits == 'default' or table.is_empty(possible_exits) then + possible_exits = { + count = { min = 2, max = 4 }, + walls = WallType.horizontal(), + size = { width = { min = 1, max = 1 }, height = { min = 2, max = 2 } }, + shift = { min = -2, max = 2 }, + } + else + possible_exits.count = possible_exits.count or { min = 2, max = 4 } + possible_exits.walls = possible_exits.walls or WallType.horizontal() + possible_exits.shift = possible_exits.shift or { min = -4, max = 4 } + + possible_exits.count = type(possible_exits.count) == 'number' + and { min = possible_exits.count, max = possible_exits.count } + or possible_exits.count + end + + return possible_exits +end + +function Room:init_exits() + local possible_exits = self:resolve_possible_exits() + if not possible_exits then + return self + end + + local exits_count = math_random( + possible_exits.count.min --[[@as integer]], + possible_exits.count.max --[[@as integer]] + ) + table_shuffle(possible_exits.walls) + local walls = possible_exits.walls + + for i = 1, math_min(exits_count, #walls) do + local side = walls[i] --- @as Voxrame.map.room.wall.Type + + if not self.exits[side] then + self.exits[side] = Exit + .to(side) + :at(self:floor_center_of(side)) + :with_size({ width = 3, height = 4 }) + :shift(math_random(possible_exits.shift.min, possible_exits.shift.max)) + end + end + + return self +end + --- You can override method `:initialize()` for your purposes. --- It will be called before `:do_generation()` inside `generate()` inside `init()` --- @protected @@ -102,6 +166,7 @@ end function Room:init() return self :init_walls() + :init_exits() :initialize() end @@ -171,6 +236,16 @@ function Room:fill_walls() return self end +--- @protected +--- @return self +function Room:make_exits() + for _, exit in pairs(self.exits) do + self.area:fill_with(id_air, exit.frame.from, exit.frame.to) + end + + return self +end + --- @param connector Voxrame.map.room.Connector --- @return self function Room:connect_to(connector) @@ -236,6 +311,7 @@ function Room:generate(area, data) :init() :fill_with_air() :fill_walls() + :make_exits() :debug_things() :do_generation() end diff --git a/mods/lord/Core/map/src/map/room/ExitsDefinition.lua b/mods/lord/Core/map/src/map/room/ExitsDefinition.lua new file mode 100644 index 000000000..c0174b454 --- /dev/null +++ b/mods/lord/Core/map/src/map/room/ExitsDefinition.lua @@ -0,0 +1,12 @@ + +--- @class Voxrame.map.room.ExitsDefinition +--- @field count? integer|range Possible number of exits or range of exits. Default: 2-4 +--- @field walls? Voxrame.map.room.wall.Type[] List of allowed sides for exits. Default: `Type.horizontal()` +--- @field size? { width: range, height: range } Size of exits. Default: 1x2 +--- @field shift? range Range of random shift for exit position. Default: -2 to 2 + +--- @class Voxrame.map.room.ExitsDefinitionResolved: Voxrame.map.room.ExitsDefinition +--- @field count range Possible number of exits or range of exits. Default: 2-4 +--- @field walls Voxrame.map.room.wall.Type[] List of allowed sides for exits. Default: `Type.horizontal()` +--- @field size { width: range, height: range } Size of exits. Default: 1x2 +--- @field shift range Range of random shift for exit position. Default: -2 to 2 From a83d8bb35650c0968738000a511205fd0ac02eca Mon Sep 17 00:00:00 2001 From: alek13 Date: Thu, 12 Mar 2026 22:41:06 +0300 Subject: [PATCH 60/79] Gen.Library: Orcish Example: complete example v1. LG-2052 --- .../buildings/src/orcish/Dungeon.lua | 29 ++++-- .../buildings/src/orcish/Room/Main.lua | 90 +++++++++---------- .../buildings/src/orcish/Room/Secondary.lua | 48 ++++++++++ 3 files changed, 112 insertions(+), 55 deletions(-) create mode 100644 mods/lord/World/Generation/buildings/src/orcish/Room/Secondary.lua diff --git a/mods/lord/World/Generation/buildings/src/orcish/Dungeon.lua b/mods/lord/World/Generation/buildings/src/orcish/Dungeon.lua index 8a859a47b..27b98a494 100644 --- a/mods/lord/World/Generation/buildings/src/orcish/Dungeon.lua +++ b/mods/lord/World/Generation/buildings/src/orcish/Dungeon.lua @@ -1,7 +1,10 @@ -local v, id - = vector.new, minetest.get_content_id +local pairs, v, id + = pairs, vector.new, core.get_content_id - local MainRoom = require('orcish.Room.Main') +local MainRoom = require('orcish.Room.Main') +local SecondaryRoom = require('orcish.Room.Secondary') +local Corridor = Voxrame.map.Corridor +local Side = Voxrame.map.room.wall.Type --- @class buildings.OrcishDungeon @@ -16,6 +19,10 @@ local OrcishDungeon = { --- @protected --- @type integer|nil on_debug_fill_with = id('default:stone'), + --- @static + --- @protected + --- @type helpers.Logger + logger = core.get_mod_logger(), } --- @param position vector @@ -35,10 +42,10 @@ function OrcishDungeon:generate(debug, is_on_mapgen) local from = self.center - half_size local to = self.center + half_size - local fill_with = self.on_debug_fill_with --- @diagnostic disable-line: access-invisible тупит плагин + local fill_with = self.on_debug_fill_with core.with_map_part_do(from, to, function(area, data) if not debug and area:content_of(id('air')) > 0.2 then - core.log('warning', 'OrcishDungeon: abort generation, area has too much air. Is this a cave or overhang?') + self.logger.warning('OrcishDungeon: abort generation, area has too much air. Is this a cave or overhang?') return end @@ -52,9 +59,15 @@ function OrcishDungeon:generate(debug, is_on_mapgen) :generate(area, data) for _, exit in pairs(main_room:get_exits()) do - -- TODO: connect corridors to exits and other rooms to that corridors - -- something like: - -- exit:connect(Corridor:new(...)) + local exit_side = Side.of(exit.direction) + + local corridor = Corridor:new({ width = 3, height = 4 }, math.random(3, 3), exit_side) + :connect_to(exit) + :generate(area, data) + + SecondaryRoom:new() + :connect_to(corridor.exits[exit_side]) + :generate(area, data) end end, is_on_mapgen, true) end diff --git a/mods/lord/World/Generation/buildings/src/orcish/Room/Main.lua b/mods/lord/World/Generation/buildings/src/orcish/Room/Main.lua index 7839682a5..0799d99ac 100644 --- a/mods/lord/World/Generation/buildings/src/orcish/Room/Main.lua +++ b/mods/lord/World/Generation/buildings/src/orcish/Room/Main.lua @@ -1,24 +1,28 @@ -local pairs, math_random, v, id - = pairs, math.random, vector.new, minetest.get_content_id +local pairs, v, id + = pairs, vector.new, core.get_content_id -local Room = Voxrame.map.Room -local Exit = Voxrame.map.room.Exit -local WallType = Voxrame.map.room.wall.Type +local Room = Voxrame.map.Room -local id_air = id('air') -local id_lava = id('default:lava_source') -local id_barrel = id('barrel:barrel') -local id_orc_torch = id('torches:orc_wall') -local id_modor_stone = id('lord_rocks:mordor_stone') -local id_remains = id('remains:ancient_miner_1') -local id_bone_1 = id('bones:bone_1') - +-- walls: local ids_wall_nodes = { id('lord_bricks:mordor_clay_brick'), id('lord_bricks:mordor_clay_masonry'), id('lord_bricks:mordor_clay_masonry_large'), } +local id_modor_stone = id('lord_rocks:mordor_stone') +-- center: +local id_lava = id('default:lava_source') +local id_charcoal_block = id('default:charcoalblock') +local id_permanent_flame = id('fire:permanent_flame') +local id_skull_candle = id('lord_lamps:skull_candle') +-- corners: +local id_barrel = id('barrel:barrel') +local id_orc_chest = id('lottmapgen:mordor_chest_spawner') +local id_orc_torch = id('torches:orc_wall') +-- decorations: +local id_remains = id('remains:ancient_miner_1') +local id_bone_1 = id('bones:bone_1') --- @class buildings.OrcishCave.Room.Main: Voxrame.map.Room local Main = { @@ -31,16 +35,21 @@ local Main = { floor = table.insert_all( table.copy(ids_wall_nodes), { id_modor_stone, id_modor_stone, id_modor_stone } - ) + ), }, - --- @type Voxrame.map.room.Exit[] - exits = {}, + --- @type Voxrame.map.room.ExitsDefinition + possible_exits = { + count = { min = 2, max = 4 }, + shift = { min = -4, max = 4 }, + }, + --- @type integer + corner_pile_size = 2, } -setmetatable(Main, { __index = Room }) +Room:extended(Main) --- @private --- @return self -function Main:lava_circle() +function Main:center_lava_circle() local area = self.area local center = self:center() local floor_y = self.walls['floor'].from.y @@ -56,35 +65,24 @@ function Main:lava_circle() return self end +--- @private --- @return self -function Main:add_exits() - local exits_count = math_random(2, 4) - - local walls = { WallType.north, WallType.south, WallType.east, WallType.west } - table.shuffle(walls) +function Main:center_flame_and_skull_candles() + local floor_center = self:floor(true):center() + self.area:set_node_at(floor_center , id_charcoal_block) + self.area:set_node_at(floor_center:above(), id_permanent_flame) - for i = 1, exits_count do - local side = walls[i] --- @as Voxrame.map.room.wall.Type - local position = self:floor_center_of(side) - - local exit = Exit.to(side):at(position):with_size(3, 4):shift(math_random(-4, 4)) - self.exits[#self.exits + 1] = exit - - self.area:fill_with(id_air, exit.frame.from, exit.frame.to) - end + self.area:set_node_at(floor_center + v( 1, 0, 1), id_skull_candle, 2) + self.area:set_node_at(floor_center + v( 1, 0, -1), id_skull_candle, 0) + self.area:set_node_at(floor_center + v(-1, 0, 1), id_skull_candle, 2) + self.area:set_node_at(floor_center + v(-1, 0, -1), id_skull_candle, 0) return self end ---- Returns list of exits (areas) of the room. ---- @return Voxrame.map.room.Exit[] -function Main:get_exits() - return self.exits -end - --- @return self function Main:remains() - local floor = table.copy(self:wall('floor', true)) + local floor = self:floor(true) self.area:fill_with({ id_remains, id_bone_1 }, floor.from, floor.to, 0.02, { 0, 1, 2, 3 }) return self @@ -92,18 +90,16 @@ end --- @private --- @return self -function Main:barrels() - local barrels_pile_size = 2 -- for all dimensions - +function Main:corners_barrels() for _, corner in pairs(self:get_corners_of('floor')) do local to_center = self:to_center_from(corner):sign() local from = corner + to_center - local to = from + to_center * (barrels_pile_size-1) + local to = from + to_center * (self.corner_pile_size - 1) local pile_peak = v(from.x, to.y, from.z) - self.area:place_pile(id_barrel, from, to, pile_peak) + self.area:place_pile({ id_barrel, id_orc_chest }, from, to, pile_peak) local orientation = to_center.x > 0 and 3 or 2 self.area:set_node_at(pile_peak:above(), id_orc_torch, orientation) @@ -115,10 +111,10 @@ end --- @return self function Main:do_generation() return self - :add_exits() - :lava_circle() :remains() - :barrels() + :center_lava_circle() + :center_flame_and_skull_candles() + :corners_barrels() end diff --git a/mods/lord/World/Generation/buildings/src/orcish/Room/Secondary.lua b/mods/lord/World/Generation/buildings/src/orcish/Room/Secondary.lua new file mode 100644 index 000000000..4143e1af0 --- /dev/null +++ b/mods/lord/World/Generation/buildings/src/orcish/Room/Secondary.lua @@ -0,0 +1,48 @@ +local v , id + = vector.new, core.get_content_id + +local Room = Voxrame.map.Room + + +local ids_wall_nodes = { + id('lord_bricks:mordor_clay_brick'), + id('lord_bricks:mordor_clay_masonry'), + id('lord_bricks:mordor_clay_masonry_large'), +} +local id_modor_stone = id('lord_rocks:mordor_stone') +local id_orc_torch = id('torches:orc_wall') + +--- @class buildings.OrcishCave.Room.Secondary: Voxrame.map.Room +local Secondary = { + --- @type IntegerVector + size = v(10, 5, 10), + --- @private + --- @type table<'_all'|Voxrame.map.room.wall.Type, integer[]> + wall_blocks = { + _all = ids_wall_nodes, + floor = table.insert_all( + table.copy(ids_wall_nodes), + { id_modor_stone, id_modor_stone, id_modor_stone } + ) + }, +} +Room:extended(Secondary) + +function Secondary:corners() + for _, corner in pairs(self:get_corners_of('floor', true)) do + local to_center = self:to_center_from(corner) + local orientation = to_center.x > 0 and 3 or 2 + self.area:set_node_at(corner:above(), id_orc_torch, orientation) + end + + return self +end + +--- @return self +function Secondary:do_generation() + return self + :corners() +end + + +return Secondary From 45044878e5ce1bf5c92ebf47b03f3bd2117f177b Mon Sep 17 00:00:00 2001 From: alek13 Date: Fri, 13 Mar 2026 22:11:14 +0300 Subject: [PATCH 61/79] `development.md`: minor clarifications in release process. --- development.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/development.md b/development.md index 6568b9a06..5d8efa971 100644 --- a/development.md +++ b/development.md @@ -130,7 +130,7 @@ Doc-Blocks - **основной релиз** собирается на ветке `dev`, т.е.: - ветка `dev` теперь является default'ной - все PR по умолчанию создаются в эту ветку - - *нужно ветвиться от `dev` (хотя можно и от `master`'а)* + - *нужно ветвиться от `dev`* - *поддерживать в актуальном состоянии ветку `dev`* - [авто-деплой на Полигон](.github/workflows/deploy-poligon.yml) идёт с ветки `dev` при любых изменениях в этой ветке - ветка `dev` автоматически обновляется из ветки `master` после релиза (любого -- основного или хотфиксового) @@ -145,6 +145,7 @@ Doc-Blocks - **хотфиксовый релиз** "собирается" на ветке `master`, т.е.: - ветка `master` отражает состояние сервера (практически всегда) + - ветвиться нужно от `master` ! - PR по баг-фиксам принимаются в ветку `master` - если при открытии PR забыли поменять с дефолтной ветки `dev` на ветку `master` -- не страшно, можно поменять позже или поменяет reviewer - деплой на боевой идёт с ветки `master` по тегу: From 786554f43e4ade9288c9069009ac82af370b26d2 Mon Sep 17 00:00:00 2001 From: alek13 Date: Fri, 13 Mar 2026 22:39:03 +0300 Subject: [PATCH 62/79] `development.md`: describe submodules troubleshooting. --- development.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/development.md b/development.md index 5d8efa971..4d8668f3d 100644 --- a/development.md +++ b/development.md @@ -108,6 +108,29 @@ Doc-Blocks - стягиваем её с upstream локально: `git pull upstream dev --tags --recurse-submodules` - обновляем в своём форке на GitHub: `git push` (или `git push origin dev`) +### Устранение проблем при обновлении локальной копии +Если в upstream были изменения с submodules, то могут возникнуть проблемы при обновлении локальной копии. + +В большинстве случаев достаточно: +```shell +git submodule sync +git submodule update --init --recursive +``` + +Если совсем ничего не помогает, то можно удалить все submodules и добавить их заново: +```shell +git submodule deinit --all +git submodule update --init --recursive +``` + +#### совсем всё сломалось (hard reset для сабмодулей): +и очень редко нужно подчистить внутрянку в `.git/modules/` и заново инициализировать submodules: +```shell +git submodule deinit -f --all +rm -rf .git/modules/* +git submodule update --init --recursive +``` + Оптимизация текстур: -------------------- Для оптимизации текстур вы можете использовать утилиту `optipng` (обычно есть пакет для всех дистрибутивов). From 229afe0f5001ab57780926b15c7d5fe8da6503b5 Mon Sep 17 00:00:00 2001 From: alek13 Date: Mon, 16 Mar 2026 00:20:54 +0300 Subject: [PATCH 63/79] Add `Voxrame` (former `./mods/lord/Core/`) as submodule. VX-3. --- .gitmodules | 3 + .luacheckrc | 160 +-- mods/Voxrame | 1 + .../lord/Blocks/ArtisanBenches/anvil/mod.conf | 2 +- mods/lord/Blocks/campfire/mod.conf | 2 +- mods/lord/Blocks/lord_beds/mod.conf | 2 +- mods/lord/Blocks/lord_default/mod.conf | 2 +- mods/lord/Blocks/lord_doors/mod.conf | 2 +- mods/lord/Blocks/lord_flowers/mod.conf | 2 +- mods/lord/Blocks/lord_gems/mod.conf | 2 +- mods/lord/Blocks/lord_ropes/mod.conf | 2 +- mods/lord/Blocks/lord_wool/mod.conf | 2 +- mods/lord/Blocks/quest_node/mod.conf | 2 +- mods/lord/Blocks/roads/mod.conf | 2 +- mods/lord/Blocks/signs_lib/mod.conf | 2 +- mods/lord/Core/archery/init.lua | 3 - mods/lord/Core/archery/license.md | 7 - mods/lord/Core/archery/mod.conf | 2 - mods/lord/Core/archery/src/archery.lua | 15 - .../Core/archery/src/archery/processor.lua | 257 ----- .../src/archery/processor/processing_api.lua | 191 ---- .../Core/archery/src/archery/public_api.lua | 264 ----- mods/lord/Core/base_classes/init.lua | 5 - mods/lord/Core/base_classes/license.md | 7 - mods/lord/Core/base_classes/mod.conf | 5 - .../Core/base_classes/src/base_classes.lua | 34 - .../src/base_classes/DetachedInventory.lua | 119 --- .../base_classes/src/base_classes/Event.lua | 72 -- .../base_classes/src/base_classes/Form.lua | 77 -- .../src/base_classes/Form/Base.lua | 206 ---- .../src/base_classes/Form/Element.lua | 6 - .../src/base_classes/Form/Element/Tab.lua | 57 - .../src/base_classes/Form/Event.lua | 56 - .../src/base_classes/Form/Mixin.lua | 11 - .../src/base_classes/Form/Mixin/ForNode.lua | 25 - .../src/base_classes/Form/Mixin/Personal.lua | 87 -- .../base_classes/Form/Mixin/WithDetached.lua | 29 - .../src/base_classes/Form/Mixin/WithTabs.lua | 108 -- .../base_classes/src/base_classes/HUD.lua | 100 -- .../base_classes/src/base_classes/Meta.lua | 21 - .../src/base_classes/Meta/Base.lua | 160 --- .../src/base_classes/Meta/FieldType.lua | 11 - .../src/base_classes/ObjectState.lua | 54 - .../src/base_classes/ObjectState/Storage.lua | 46 - mods/lord/Core/builtin_ext/init.lua | 21 - mods/lord/Core/builtin_ext/license.md | 7 - mods/lord/Core/builtin_ext/mod.conf | 3 - mods/lord/Core/builtin_ext/src/FormSpec.lua | 990 ------------------ .../Core/builtin_ext/src/FormSpec/Style.lua | 128 --- .../Core/builtin_ext/src/SettingsGroup.lua | 88 -- mods/lord/Core/builtin_ext/src/Texture.lua | 26 - mods/lord/Core/builtin_ext/src/Tile.lua | 38 - mods/lord/Core/builtin_ext/src/craft.lua | 28 - .../Core/builtin_ext/src/craft/method.lua | 401 ------- .../Core/builtin_ext/src/craft/recipe.lua | 61 -- mods/lord/Core/builtin_ext/src/globalstep.lua | 43 - .../Core/builtin_ext/src/map/VoxelArea.lua | 274 ----- .../Core/builtin_ext/src/map/dungeons_gen.lua | 152 --- .../builtin_ext/src/map/manipulations.lua | 42 - mods/lord/Core/builtin_ext/src/mod.lua | 87 -- .../Core/builtin_ext/src/mod/Settings.lua | 16 - .../Core/builtin_ext/src/mod/Translator.lua | 14 - mods/lord/Core/builtin_ext/src/mod/logger.lua | 50 - .../lord/Core/builtin_ext/src/mod/require.lua | 58 - mods/lord/Core/builtin_ext/src/node.lua | 114 -- mods/lord/Core/builtin_ext/src/stack.lua | 67 -- mods/lord/Core/builtin_ext/src/vector.lua | 114 -- mods/lord/Core/controls/init.lua | 5 - mods/lord/Core/controls/license.md | 7 - mods/lord/Core/controls/locale/controls.en.tr | 1 - mods/lord/Core/controls/locale/controls.ru.tr | 1 - mods/lord/Core/controls/mod.conf | 2 - mods/lord/Core/controls/src/controls.lua | 15 - .../lord/Core/controls/src/controls/Event.lua | 29 - mods/lord/Core/controls/src/controls/api.lua | 81 -- mods/lord/Core/damage/init.lua | 5 - mods/lord/Core/damage/license.md | 7 - mods/lord/Core/damage/mod.conf | 2 - mods/lord/Core/damage/src/damage.lua | 15 - mods/lord/Core/damage/src/damage/Event.lua | 19 - .../Core/damage/src/damage/Periodical.lua | 75 -- mods/lord/Core/damage/src/damage/Type.lua | 132 --- .../Core/damage/src/damage/Type/Event.lua | 22 - .../Core/damage/src/damage/Type/Resolver.lua | 76 -- mods/lord/Core/damage/src/damage/api.lua | 35 - mods/lord/Core/defense/init.lua | 4 - mods/lord/Core/defense/license.md | 7 - mods/lord/Core/defense/mod.conf | 2 - mods/lord/Core/defense/src/defense.lua | 63 -- mods/lord/Core/defense/src/defense/Event.lua | 22 - .../defense/src/defense/PlayerDefense.lua | 101 -- .../Core/defense/src/defense/damage_avoid.lua | 16 - mods/lord/Core/effects/init.lua | 5 - mods/lord/Core/effects/license.md | 7 - mods/lord/Core/effects/mod.conf | 2 - mods/lord/Core/effects/src/effects.lua | 42 - mods/lord/Core/effects/src/effects/Effect.lua | 68 -- .../Core/effects/src/effects/ForPlayer.lua | 96 -- .../Core/effects/src/effects/Processor.lua | 48 - .../Core/effects/src/effects/Registered.lua | 28 - mods/lord/Core/equipment/init.lua | 5 - mods/lord/Core/equipment/license.md | 7 - mods/lord/Core/equipment/mod.conf | 3 - mods/lord/Core/equipment/src/equipment.lua | 93 -- .../Core/equipment/src/equipment/Event.lua | 82 -- .../equipment/src/equipment/ForPlayer.lua | 101 -- .../Core/equipment/src/equipment/Kind.lua | 76 -- mods/lord/Core/factions/init.lua | 5 - mods/lord/Core/factions/license.md | 7 - mods/lord/Core/factions/mod.conf | 2 - mods/lord/Core/factions/src/factions.lua | 26 - .../Core/factions/src/factions/Collection.lua | 29 - .../Core/factions/src/factions/Faction.lua | 81 -- mods/lord/Core/fuel_device/init.lua | 5 - mods/lord/Core/fuel_device/license.md | 7 - .../Core/fuel_device/locale/fuel_device.en.tr | 4 - .../Core/fuel_device/locale/fuel_device.ru.tr | 4 - mods/lord/Core/fuel_device/mod.conf | 2 - .../lord/Core/fuel_device/src/fuel_device.lua | 16 - .../fuel_device/src/fuel_device/Device.lua | 131 --- .../fuel_device/src/fuel_device/Processor.lua | 176 ---- .../Core/fuel_device/src/fuel_device/api.lua | 10 - .../Core/fuel_device/src/fuel_device/node.lua | 121 --- .../fuel_device/src/fuel_device/node/Form.lua | 19 - .../fuel_device/node/definition/common.lua | 43 - .../node/definition/inventory_callbacks.lua | 68 -- mods/lord/Core/helpers/init.lua | 20 - mods/lord/Core/helpers/license.md | 7 - mods/lord/Core/helpers/mod.conf | 1 - mods/lord/Core/helpers/readme.md | 98 -- mods/lord/Core/helpers/src/lua_ext/debug.lua | 311 ------ mods/lord/Core/helpers/src/lua_ext/global.lua | 33 - mods/lord/Core/helpers/src/lua_ext/io.lua | 84 -- mods/lord/Core/helpers/src/lua_ext/math.lua | 90 -- mods/lord/Core/helpers/src/lua_ext/os.lua | 3 - mods/lord/Core/helpers/src/lua_ext/string.lua | 179 ---- mods/lord/Core/helpers/src/lua_ext/table.lua | 412 -------- mods/lord/Core/helpers/src/term.lua | 112 -- mods/lord/Core/helpers/src/types.lua | 2 - mods/lord/Core/http/init.lua | 12 - mods/lord/Core/http/license.md | 7 - mods/lord/Core/http/mod.conf | 2 - mods/lord/Core/http/src/http.lua | 19 - mods/lord/Core/http/src/http/Client.lua | 170 --- mods/lord/Core/http/src/http/Resource.lua | 85 -- mods/lord/Core/map/init.lua | 5 - mods/lord/Core/map/license.md | 7 - mods/lord/Core/map/mod.conf | 5 - mods/lord/Core/map/src/map.lua | 21 - mods/lord/Core/map/src/map/Corridor.lua | 54 - mods/lord/Core/map/src/map/Cuboid.lua | 255 ----- mods/lord/Core/map/src/map/Room.lua | 320 ------ mods/lord/Core/map/src/map/room/Connector.lua | 8 - mods/lord/Core/map/src/map/room/Exit.lua | 162 --- .../Core/map/src/map/room/ExitsDefinition.lua | 12 - mods/lord/Core/map/src/map/room/Wall.lua | 9 - mods/lord/Core/map/src/map/room/Walls.lua | 8 - mods/lord/Core/map/src/map/room/wall/Type.lua | 93 -- mods/lord/Core/physics/init.lua | 4 - mods/lord/Core/physics/license.md | 7 - mods/lord/Core/physics/mod.conf | 2 - mods/lord/Core/physics/src/physics.lua | 44 - mods/lord/Core/physics/src/physics/Event.lua | 22 - .../physics/src/physics/PlayerPhysics.lua | 139 --- mods/lord/Core/player_nametag/init.lua | 5 - mods/lord/Core/player_nametag/license.md | 7 - .../locale/player_nametag.en.tr | 1 - .../locale/player_nametag.ru.tr | 1 - mods/lord/Core/player_nametag/mod.conf | 2 - mods/lord/Core/player_nametag/readme.md | 94 -- mods/lord/Core/player_nametag/src/nametag.lua | 20 - .../player_nametag/src/nametag/NameTag.lua | 82 -- .../src/nametag/NameTag/Segment.lua | 88 -- .../player_nametag/src/nametag/Segments.lua | 40 - mods/lord/Core/projectiles/init.lua | 5 - mods/lord/Core/projectiles/license.md | 7 - mods/lord/Core/projectiles/mod.conf | 2 - .../lord/Core/projectiles/src/projectiles.lua | 13 - .../Core/projectiles/src/projectiles/api.lua | 144 --- .../projectiles/src/projectiles/entity.lua | 378 ------- mods/lord/Core/wield_item/init.lua | 5 - mods/lord/Core/wield_item/license.md | 7 - mods/lord/Core/wield_item/mod.conf | 2 - mods/lord/Core/wield_item/src/wield_item.lua | 15 - .../Core/wield_item/src/wield_item/Event.lua | 22 - .../Core/wield_item/src/wield_item/api.lua | 41 - mods/lord/Entities/lottmobs/mod.conf | 2 +- mods/lord/Game/lord_classes/mod.conf | 2 +- mods/lord/Items/lord_boats/mod.conf | 2 +- mods/lord/Items/lord_money/mod.conf | 2 +- mods/lord/Items/lord_replacer/mod.conf | 2 +- mods/lord/Items/lord_screwdriver/mod.conf | 2 +- mods/lord/Items/lottclothes/mod.conf | 2 +- mods/lord/Player/show_health/mod.conf | 2 +- mods/lord/World/Generation/buildings/mod.conf | 2 +- .../lord/World/Generation/lottmapgen/mod.conf | 2 +- mods/lord/World/mountgen/mod.conf | 2 +- mods/lord/World/mypos/mod.conf | 2 +- mods/lord/World/worldedit_ext/mod.conf | 2 +- .../_experimental/lord_music_box/mod.conf | 2 +- mods/lord/_overwrites/MTG/carts/mod.conf | 2 +- mods/lord/_overwrites/MTG/default/mod.conf | 2 +- mods/lord/_overwrites/MTG/sethome/mod.conf | 2 +- 203 files changed, 76 insertions(+), 10971 deletions(-) create mode 160000 mods/Voxrame delete mode 100644 mods/lord/Core/archery/init.lua delete mode 100644 mods/lord/Core/archery/license.md delete mode 100644 mods/lord/Core/archery/mod.conf delete mode 100644 mods/lord/Core/archery/src/archery.lua delete mode 100644 mods/lord/Core/archery/src/archery/processor.lua delete mode 100644 mods/lord/Core/archery/src/archery/processor/processing_api.lua delete mode 100644 mods/lord/Core/archery/src/archery/public_api.lua delete mode 100644 mods/lord/Core/base_classes/init.lua delete mode 100644 mods/lord/Core/base_classes/license.md delete mode 100644 mods/lord/Core/base_classes/mod.conf delete mode 100644 mods/lord/Core/base_classes/src/base_classes.lua delete mode 100644 mods/lord/Core/base_classes/src/base_classes/DetachedInventory.lua delete mode 100644 mods/lord/Core/base_classes/src/base_classes/Event.lua delete mode 100644 mods/lord/Core/base_classes/src/base_classes/Form.lua delete mode 100644 mods/lord/Core/base_classes/src/base_classes/Form/Base.lua delete mode 100644 mods/lord/Core/base_classes/src/base_classes/Form/Element.lua delete mode 100644 mods/lord/Core/base_classes/src/base_classes/Form/Element/Tab.lua delete mode 100644 mods/lord/Core/base_classes/src/base_classes/Form/Event.lua delete mode 100644 mods/lord/Core/base_classes/src/base_classes/Form/Mixin.lua delete mode 100644 mods/lord/Core/base_classes/src/base_classes/Form/Mixin/ForNode.lua delete mode 100644 mods/lord/Core/base_classes/src/base_classes/Form/Mixin/Personal.lua delete mode 100644 mods/lord/Core/base_classes/src/base_classes/Form/Mixin/WithDetached.lua delete mode 100644 mods/lord/Core/base_classes/src/base_classes/Form/Mixin/WithTabs.lua delete mode 100644 mods/lord/Core/base_classes/src/base_classes/HUD.lua delete mode 100644 mods/lord/Core/base_classes/src/base_classes/Meta.lua delete mode 100644 mods/lord/Core/base_classes/src/base_classes/Meta/Base.lua delete mode 100644 mods/lord/Core/base_classes/src/base_classes/Meta/FieldType.lua delete mode 100644 mods/lord/Core/base_classes/src/base_classes/ObjectState.lua delete mode 100644 mods/lord/Core/base_classes/src/base_classes/ObjectState/Storage.lua delete mode 100644 mods/lord/Core/builtin_ext/init.lua delete mode 100644 mods/lord/Core/builtin_ext/license.md delete mode 100644 mods/lord/Core/builtin_ext/mod.conf delete mode 100644 mods/lord/Core/builtin_ext/src/FormSpec.lua delete mode 100644 mods/lord/Core/builtin_ext/src/FormSpec/Style.lua delete mode 100644 mods/lord/Core/builtin_ext/src/SettingsGroup.lua delete mode 100644 mods/lord/Core/builtin_ext/src/Texture.lua delete mode 100644 mods/lord/Core/builtin_ext/src/Tile.lua delete mode 100644 mods/lord/Core/builtin_ext/src/craft.lua delete mode 100644 mods/lord/Core/builtin_ext/src/craft/method.lua delete mode 100644 mods/lord/Core/builtin_ext/src/craft/recipe.lua delete mode 100644 mods/lord/Core/builtin_ext/src/globalstep.lua delete mode 100644 mods/lord/Core/builtin_ext/src/map/VoxelArea.lua delete mode 100644 mods/lord/Core/builtin_ext/src/map/dungeons_gen.lua delete mode 100644 mods/lord/Core/builtin_ext/src/map/manipulations.lua delete mode 100644 mods/lord/Core/builtin_ext/src/mod.lua delete mode 100644 mods/lord/Core/builtin_ext/src/mod/Settings.lua delete mode 100644 mods/lord/Core/builtin_ext/src/mod/Translator.lua delete mode 100644 mods/lord/Core/builtin_ext/src/mod/logger.lua delete mode 100644 mods/lord/Core/builtin_ext/src/mod/require.lua delete mode 100644 mods/lord/Core/builtin_ext/src/node.lua delete mode 100644 mods/lord/Core/builtin_ext/src/stack.lua delete mode 100644 mods/lord/Core/builtin_ext/src/vector.lua delete mode 100644 mods/lord/Core/controls/init.lua delete mode 100644 mods/lord/Core/controls/license.md delete mode 100644 mods/lord/Core/controls/locale/controls.en.tr delete mode 100644 mods/lord/Core/controls/locale/controls.ru.tr delete mode 100644 mods/lord/Core/controls/mod.conf delete mode 100644 mods/lord/Core/controls/src/controls.lua delete mode 100644 mods/lord/Core/controls/src/controls/Event.lua delete mode 100644 mods/lord/Core/controls/src/controls/api.lua delete mode 100644 mods/lord/Core/damage/init.lua delete mode 100644 mods/lord/Core/damage/license.md delete mode 100644 mods/lord/Core/damage/mod.conf delete mode 100644 mods/lord/Core/damage/src/damage.lua delete mode 100644 mods/lord/Core/damage/src/damage/Event.lua delete mode 100644 mods/lord/Core/damage/src/damage/Periodical.lua delete mode 100644 mods/lord/Core/damage/src/damage/Type.lua delete mode 100644 mods/lord/Core/damage/src/damage/Type/Event.lua delete mode 100644 mods/lord/Core/damage/src/damage/Type/Resolver.lua delete mode 100644 mods/lord/Core/damage/src/damage/api.lua delete mode 100644 mods/lord/Core/defense/init.lua delete mode 100644 mods/lord/Core/defense/license.md delete mode 100644 mods/lord/Core/defense/mod.conf delete mode 100644 mods/lord/Core/defense/src/defense.lua delete mode 100644 mods/lord/Core/defense/src/defense/Event.lua delete mode 100644 mods/lord/Core/defense/src/defense/PlayerDefense.lua delete mode 100644 mods/lord/Core/defense/src/defense/damage_avoid.lua delete mode 100644 mods/lord/Core/effects/init.lua delete mode 100644 mods/lord/Core/effects/license.md delete mode 100644 mods/lord/Core/effects/mod.conf delete mode 100644 mods/lord/Core/effects/src/effects.lua delete mode 100644 mods/lord/Core/effects/src/effects/Effect.lua delete mode 100644 mods/lord/Core/effects/src/effects/ForPlayer.lua delete mode 100644 mods/lord/Core/effects/src/effects/Processor.lua delete mode 100644 mods/lord/Core/effects/src/effects/Registered.lua delete mode 100644 mods/lord/Core/equipment/init.lua delete mode 100644 mods/lord/Core/equipment/license.md delete mode 100644 mods/lord/Core/equipment/mod.conf delete mode 100644 mods/lord/Core/equipment/src/equipment.lua delete mode 100644 mods/lord/Core/equipment/src/equipment/Event.lua delete mode 100644 mods/lord/Core/equipment/src/equipment/ForPlayer.lua delete mode 100644 mods/lord/Core/equipment/src/equipment/Kind.lua delete mode 100644 mods/lord/Core/factions/init.lua delete mode 100644 mods/lord/Core/factions/license.md delete mode 100644 mods/lord/Core/factions/mod.conf delete mode 100644 mods/lord/Core/factions/src/factions.lua delete mode 100644 mods/lord/Core/factions/src/factions/Collection.lua delete mode 100644 mods/lord/Core/factions/src/factions/Faction.lua delete mode 100644 mods/lord/Core/fuel_device/init.lua delete mode 100644 mods/lord/Core/fuel_device/license.md delete mode 100644 mods/lord/Core/fuel_device/locale/fuel_device.en.tr delete mode 100644 mods/lord/Core/fuel_device/locale/fuel_device.ru.tr delete mode 100644 mods/lord/Core/fuel_device/mod.conf delete mode 100644 mods/lord/Core/fuel_device/src/fuel_device.lua delete mode 100644 mods/lord/Core/fuel_device/src/fuel_device/Device.lua delete mode 100644 mods/lord/Core/fuel_device/src/fuel_device/Processor.lua delete mode 100644 mods/lord/Core/fuel_device/src/fuel_device/api.lua delete mode 100644 mods/lord/Core/fuel_device/src/fuel_device/node.lua delete mode 100644 mods/lord/Core/fuel_device/src/fuel_device/node/Form.lua delete mode 100644 mods/lord/Core/fuel_device/src/fuel_device/node/definition/common.lua delete mode 100644 mods/lord/Core/fuel_device/src/fuel_device/node/definition/inventory_callbacks.lua delete mode 100644 mods/lord/Core/helpers/init.lua delete mode 100644 mods/lord/Core/helpers/license.md delete mode 100644 mods/lord/Core/helpers/mod.conf delete mode 100644 mods/lord/Core/helpers/readme.md delete mode 100644 mods/lord/Core/helpers/src/lua_ext/debug.lua delete mode 100644 mods/lord/Core/helpers/src/lua_ext/global.lua delete mode 100644 mods/lord/Core/helpers/src/lua_ext/io.lua delete mode 100644 mods/lord/Core/helpers/src/lua_ext/math.lua delete mode 100644 mods/lord/Core/helpers/src/lua_ext/os.lua delete mode 100644 mods/lord/Core/helpers/src/lua_ext/string.lua delete mode 100644 mods/lord/Core/helpers/src/lua_ext/table.lua delete mode 100644 mods/lord/Core/helpers/src/term.lua delete mode 100644 mods/lord/Core/helpers/src/types.lua delete mode 100644 mods/lord/Core/http/init.lua delete mode 100644 mods/lord/Core/http/license.md delete mode 100644 mods/lord/Core/http/mod.conf delete mode 100644 mods/lord/Core/http/src/http.lua delete mode 100644 mods/lord/Core/http/src/http/Client.lua delete mode 100644 mods/lord/Core/http/src/http/Resource.lua delete mode 100644 mods/lord/Core/map/init.lua delete mode 100644 mods/lord/Core/map/license.md delete mode 100644 mods/lord/Core/map/mod.conf delete mode 100644 mods/lord/Core/map/src/map.lua delete mode 100644 mods/lord/Core/map/src/map/Corridor.lua delete mode 100644 mods/lord/Core/map/src/map/Cuboid.lua delete mode 100644 mods/lord/Core/map/src/map/Room.lua delete mode 100644 mods/lord/Core/map/src/map/room/Connector.lua delete mode 100644 mods/lord/Core/map/src/map/room/Exit.lua delete mode 100644 mods/lord/Core/map/src/map/room/ExitsDefinition.lua delete mode 100644 mods/lord/Core/map/src/map/room/Wall.lua delete mode 100644 mods/lord/Core/map/src/map/room/Walls.lua delete mode 100644 mods/lord/Core/map/src/map/room/wall/Type.lua delete mode 100644 mods/lord/Core/physics/init.lua delete mode 100644 mods/lord/Core/physics/license.md delete mode 100644 mods/lord/Core/physics/mod.conf delete mode 100644 mods/lord/Core/physics/src/physics.lua delete mode 100644 mods/lord/Core/physics/src/physics/Event.lua delete mode 100644 mods/lord/Core/physics/src/physics/PlayerPhysics.lua delete mode 100644 mods/lord/Core/player_nametag/init.lua delete mode 100644 mods/lord/Core/player_nametag/license.md delete mode 100644 mods/lord/Core/player_nametag/locale/player_nametag.en.tr delete mode 100644 mods/lord/Core/player_nametag/locale/player_nametag.ru.tr delete mode 100644 mods/lord/Core/player_nametag/mod.conf delete mode 100644 mods/lord/Core/player_nametag/readme.md delete mode 100644 mods/lord/Core/player_nametag/src/nametag.lua delete mode 100644 mods/lord/Core/player_nametag/src/nametag/NameTag.lua delete mode 100644 mods/lord/Core/player_nametag/src/nametag/NameTag/Segment.lua delete mode 100644 mods/lord/Core/player_nametag/src/nametag/Segments.lua delete mode 100644 mods/lord/Core/projectiles/init.lua delete mode 100644 mods/lord/Core/projectiles/license.md delete mode 100644 mods/lord/Core/projectiles/mod.conf delete mode 100644 mods/lord/Core/projectiles/src/projectiles.lua delete mode 100644 mods/lord/Core/projectiles/src/projectiles/api.lua delete mode 100644 mods/lord/Core/projectiles/src/projectiles/entity.lua delete mode 100644 mods/lord/Core/wield_item/init.lua delete mode 100644 mods/lord/Core/wield_item/license.md delete mode 100644 mods/lord/Core/wield_item/mod.conf delete mode 100644 mods/lord/Core/wield_item/src/wield_item.lua delete mode 100644 mods/lord/Core/wield_item/src/wield_item/Event.lua delete mode 100644 mods/lord/Core/wield_item/src/wield_item/api.lua diff --git a/.gitmodules b/.gitmodules index 10c25a136..62c36c6de 100644 --- a/.gitmodules +++ b/.gitmodules @@ -101,3 +101,6 @@ [submodule "mods/_various/mobs"] path = mods/_various/mobs url = https://codeberg.org/tenplus1/mobs_redo.git +[submodule "mods/Voxrame"] + path = mods/Voxrame + url = https://github.com/Voxrame/Voxrame.git diff --git a/.luacheckrc b/.luacheckrc index 17437a4ea..eb1a3c90d 100644 --- a/.luacheckrc +++ b/.luacheckrc @@ -1,117 +1,43 @@ -unused_args = false -allow_defined_top = true - -std = "lua51" - -globals = { - "minetest", "core", - - -- MTG APIs - "default", "doors", "farming", "player_api", - "sethome.set", "beds.day_interval.finish", - - -- Other APIs (mods/_various) - "hbhunger", "tt", "flowerpot", -} - -read_globals = { - table = { fields = { - -- Luanti Builtin: - "copy", "copy_with_metatables", "insert_all", - "indexof", "keyof", "key_value_swap", "shuffle", - -- Voxrame/helpers: - "contains", "has_value", "has_key", "merge", "join", "merge_values", - "is_empty", "overwrite", "keys_of", "count", "keys", "values", - "only", "except", "keys_has_one_of_values", "equals", "multiply_each_value", - "map", "add_values", "sub_values", "mul_values", "div_values", - "generate_sequence", "is_position", "walk" - } }, - - string = { fields = { - -- Luanti Builtin: - "split", "trim", "pack", "unpack", "packsize", - -- Voxrame/helpers: - "is_one_of", "replace", "contains", "starts_with", "ends_with", "vxr_split", "or_nil" - } }, - - math = { fields = { - -- Luanti Builtin: - "sign", "hypot", "factorial", "round", - -- Voxrame/helpers: - "limit", "clamp", - "is_within", "is_among", "is_in_range", "is_near", "point_on_circle" - } }, - - io = { fields = { - -- Voxrame/helpers: - "file_exists", "write_to_file", "read_from_file", "dirname", "get_file_error" - } }, - - os = { fields = { - -- Voxrame/helpers: - "DIRECTORY_SEPARATOR", - } }, - - debug = { fields = { - -- Voxrame/helpers: - "get_function_code", "get_passed_params", "get_file_code", - "measure", "measure_print" - } }, - - -- Builtin - "vector", "nodeupdate", "PseudoRandom", - "VoxelManip", "VoxelArea", - "ItemStack", "Settings", - "dump", "DIR_DELIM", - - -- MTG - "beds", "sfinv", "creative", "dungeon_loot", - "dye", "stairs", "sethome", "walls", "bucket", - - -- Lord specific - "lord", "hb", - - -- Mods APIs - "screwdriver", - "armor", -- lottarmor - "multiskin", -- lottarmor - "mobs", - "worldedit", - "areas", - "hopper", - "legacy_mobs", - - -- Functions: - "within_limits", -- mobs api - - -- Legacy - "spawn_falling_node", -} - -exclude_files = { - -- External mods: - - -- наследие из LOTT (требует переработки): - --"mods/lord/World/Generation/lottmapgen", - - -- Остальное: - "mods/_various/", - "util", -} - --- Don't report on legacy definitions of globals. -files["mods/_minetest_game/default/legacy.lua"].global = false - --- Extend built-in globals only in specific files: -files["mods/lord/Core/builtin_ext/src/**/*.lua"] = { - globals = { "VoxelArea", "vector" }, -} - --- Lua extending only in specific files: -files["mods/lord/Core/helpers/src/lua_ext/**/*.lua"] = { - globals = { "table", "string", "math", "io", "os", "debug" } -} --- WorldEdit extending: -files["mods/lord/World/worldedit_ext/**/*.lua"] = { - globals = { "worldedit" } -} +return dofile("mods/Voxrame/game.luacheckrc"):extend({ + globals = { + -- MTG APIs + "default", "doors", "farming", "player_api", + "sethome.set", "beds.day_interval.finish", + + -- Other APIs (mods/_various) + "hbhunger", "tt", "flowerpot", + }, + + read_globals = { + -- MTG + "creative", "dungeon_loot", + "dye", "stairs", "sethome", "walls", "bucket", + + -- Lord specific + "lord", "hb", + + -- Mods APIs + "screwdriver", + "armor", -- lottarmor + "multiskin", -- lottarmor + "mobs", + "worldedit", + "areas", + "hopper", + "legacy_mobs", + + -- Functions: + "within_limits", -- mobs api + }, + + exclude_files = { + "mods/_various/", + }, + + files = { + -- Don't report on legacy definitions of globals. + ["mods/_minetest_game/default/legacy.lua"] = { global = false }, + -- WorldEdit extending: + ["mods/lord/World/worldedit_ext/**/*.lua"] = { globals = { "worldedit" } } + } +}) diff --git a/mods/Voxrame b/mods/Voxrame new file mode 160000 index 000000000..7d774b2e1 --- /dev/null +++ b/mods/Voxrame @@ -0,0 +1 @@ +Subproject commit 7d774b2e1d2725e07106b20b7c9f062fd8cd355a diff --git a/mods/lord/Blocks/ArtisanBenches/anvil/mod.conf b/mods/lord/Blocks/ArtisanBenches/anvil/mod.conf index 876f24630..566ab3325 100644 --- a/mods/lord/Blocks/ArtisanBenches/anvil/mod.conf +++ b/mods/lord/Blocks/ArtisanBenches/anvil/mod.conf @@ -1,2 +1,2 @@ name = anvil -depends = builtin_ext +depends = builtin_ext, base_classes diff --git a/mods/lord/Blocks/campfire/mod.conf b/mods/lord/Blocks/campfire/mod.conf index 0827cb923..10ac218e4 100644 --- a/mods/lord/Blocks/campfire/mod.conf +++ b/mods/lord/Blocks/campfire/mod.conf @@ -1,2 +1,2 @@ name = campfire -depends = fire +depends = fire, builtin_ext diff --git a/mods/lord/Blocks/lord_beds/mod.conf b/mods/lord/Blocks/lord_beds/mod.conf index bc0c3f372..618eda77a 100644 --- a/mods/lord/Blocks/lord_beds/mod.conf +++ b/mods/lord/Blocks/lord_beds/mod.conf @@ -1,3 +1,3 @@ name = lord_beds description = Modifyed Minetest Game mod for LORD: lord_beds -depends = default, wool, stairs +depends = default, wool, stairs, builtin_ext diff --git a/mods/lord/Blocks/lord_default/mod.conf b/mods/lord/Blocks/lord_default/mod.conf index 8efeabcc5..f569d790e 100644 --- a/mods/lord/Blocks/lord_default/mod.conf +++ b/mods/lord/Blocks/lord_default/mod.conf @@ -1,3 +1,3 @@ name = lord_default description = Lord Default Nodes mod -depends = default +depends = default, builtin_ext diff --git a/mods/lord/Blocks/lord_doors/mod.conf b/mods/lord/Blocks/lord_doors/mod.conf index 3560e3c53..6b6a54b9b 100644 --- a/mods/lord/Blocks/lord_doors/mod.conf +++ b/mods/lord/Blocks/lord_doors/mod.conf @@ -1,2 +1,2 @@ name = lord_doors -depends = doors, default, lord_overwrites_mtg_doors +depends = doors, default, lord_overwrites_mtg_doors, builtin_ext diff --git a/mods/lord/Blocks/lord_flowers/mod.conf b/mods/lord/Blocks/lord_flowers/mod.conf index 9e7d4b322..21168a379 100644 --- a/mods/lord/Blocks/lord_flowers/mod.conf +++ b/mods/lord/Blocks/lord_flowers/mod.conf @@ -1,2 +1,2 @@ name = lord_flowers -depends = default +depends = default, builtin_ext diff --git a/mods/lord/Blocks/lord_gems/mod.conf b/mods/lord/Blocks/lord_gems/mod.conf index 8f501e93c..7c141c091 100644 --- a/mods/lord/Blocks/lord_gems/mod.conf +++ b/mods/lord/Blocks/lord_gems/mod.conf @@ -1,3 +1,3 @@ name = lord_gems description = Gemstones and gemblocks -depends = default +depends = default, builtin_ext diff --git a/mods/lord/Blocks/lord_ropes/mod.conf b/mods/lord/Blocks/lord_ropes/mod.conf index 4afc9e51a..dba8ec094 100644 --- a/mods/lord/Blocks/lord_ropes/mod.conf +++ b/mods/lord/Blocks/lord_ropes/mod.conf @@ -1,3 +1,3 @@ name = lord_ropes description = Some ropes -depends = default +depends = default, builtin_ext diff --git a/mods/lord/Blocks/lord_wool/mod.conf b/mods/lord/Blocks/lord_wool/mod.conf index d79186845..1ca9c48d5 100644 --- a/mods/lord/Blocks/lord_wool/mod.conf +++ b/mods/lord/Blocks/lord_wool/mod.conf @@ -1,3 +1,3 @@ name = lord_wool description = Lord: wool stairs and slabs -depends = wool, dye, stairs +depends = wool, dye, stairs, builtin_ext diff --git a/mods/lord/Blocks/quest_node/mod.conf b/mods/lord/Blocks/quest_node/mod.conf index 5f09c82bf..6fe7a8ec0 100644 --- a/mods/lord/Blocks/quest_node/mod.conf +++ b/mods/lord/Blocks/quest_node/mod.conf @@ -1,3 +1,3 @@ name = quest_node -depends = builtin_ext, default +depends = builtin_ext, base_classes, default optional_depends = quest_system diff --git a/mods/lord/Blocks/roads/mod.conf b/mods/lord/Blocks/roads/mod.conf index 8444e3464..a254bcc5b 100644 --- a/mods/lord/Blocks/roads/mod.conf +++ b/mods/lord/Blocks/roads/mod.conf @@ -1,2 +1,2 @@ name = roads -depends = default +depends = default, builtin_ext diff --git a/mods/lord/Blocks/signs_lib/mod.conf b/mods/lord/Blocks/signs_lib/mod.conf index f24d419e0..d1bfeddbe 100644 --- a/mods/lord/Blocks/signs_lib/mod.conf +++ b/mods/lord/Blocks/signs_lib/mod.conf @@ -1,3 +1,3 @@ name = signs_lib -depends = default +depends = default, builtin_ext optional_depends = screwdriver, keyword_interact diff --git a/mods/lord/Core/archery/init.lua b/mods/lord/Core/archery/init.lua deleted file mode 100644 index 704c7a249..000000000 --- a/mods/lord/Core/archery/init.lua +++ /dev/null @@ -1,3 +0,0 @@ -minetest.mod(function(mod) - require("archery").init() -end) diff --git a/mods/lord/Core/archery/license.md b/mods/lord/Core/archery/license.md deleted file mode 100644 index 02dd26a45..000000000 --- a/mods/lord/Core/archery/license.md +++ /dev/null @@ -1,7 +0,0 @@ -Copyright (c) 2022-present [Александр Чибрикин](https://github.com/alek13) & [Lord Team](https://github.com/lord-server/lord?tab=readme-ov-file#contributors--%D1%83%D1%87%D0%B0%D1%81%D1%82%D0%BD%D0%B8%D0%BA%D0%B8) - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/mods/lord/Core/archery/mod.conf b/mods/lord/Core/archery/mod.conf deleted file mode 100644 index d0a998042..000000000 --- a/mods/lord/Core/archery/mod.conf +++ /dev/null @@ -1,2 +0,0 @@ -name = archery -depends = builtin_ext, controls, projectiles, diff --git a/mods/lord/Core/archery/src/archery.lua b/mods/lord/Core/archery/src/archery.lua deleted file mode 100644 index 2e1c73fa6..000000000 --- a/mods/lord/Core/archery/src/archery.lua +++ /dev/null @@ -1,15 +0,0 @@ -local public_api = require("archery.public_api") -local processor = require("archery.processor") - -archery = {} - -local function register_api() - _G.archery = public_api -end - -return { - init = function() - register_api() - return processor - end -} diff --git a/mods/lord/Core/archery/src/archery/processor.lua b/mods/lord/Core/archery/src/archery/processor.lua deleted file mode 100644 index 274c1351c..000000000 --- a/mods/lord/Core/archery/src/archery/processor.lua +++ /dev/null @@ -1,257 +0,0 @@ -local api = require("archery.processor.processing_api") -local S = minetest.get_translator("archery") - --- Archery item charge on hold -controls.on_hold(function(player, key, hold_time) - -- Charging on holding api.CONTROL_CHARGE - if key ~= api.CONTROL_CHARGE then - return - end - - local stack = player:get_wielded_item() - local stack_def = stack:get_definition() - - -- Check if wielded item is not an archery_item - if not stack_def.groups or not stack_def.groups.archery_item then - return - end - - local meta = stack:get_meta() - - if not meta:contains("loaded_projectile") then - return - end - - api.player_slowdown(player) - - local new_stack = api.charge(stack, hold_time, api.reg_from_archery_item(stack:get_name()).stage_conf, player) - if new_stack then - player:set_wielded_item(new_stack) - end -end) - --- Bow loading on starting holding -controls.on_press(function(player, key) - if key ~= api.CONTROL_CHARGE then - return - end - - local stack = player:get_wielded_item() - local stack_def = stack:get_definition() - - if not stack_def.groups or not stack_def.groups.bow or stack_def.groups.is_loaded then - return - end - - local inv = player:get_inventory() - local meta = stack:get_meta() - local wield_index = player:get_wield_index() - - local projectile_item = api.find_matching_projectile(player, stack) - - if projectile_item and not meta:contains("loaded_projectile") then - inv:remove_item("main", projectile_item) - meta:set_string("loaded_projectile", projectile_item) - inv:set_stack("main", wield_index, stack) - - return - end -end) - --- Bow discharge on release -controls.on_release(function(player, key, hold_time) - if key ~= api.CONTROL_CHARGE then - return - end - - local stack = player:get_wielded_item() - local stack_def = stack:get_definition() - - if not stack_def.groups or not (stack_def.groups.bow and stack_def.groups.is_loaded) then - return - end - - local inv = player:get_inventory() - local meta = stack:get_meta() - local wield_index = player:get_wield_index() - - local power = api.calculate_power(stack, hold_time) - - local projectile_item = meta:get_string("loaded_projectile") - if projectile_item and api.projectile_shoot(player, ItemStack(projectile_item), power) then - minetest.sound_play(stack:get_definition()["_sound_on_release"], { object = player }) - local uses = api.reg_from_archery_item(stack:get_name()).definition.uses - stack:add_wear(65535/uses) - end - - api.player_reset_slowdown(player) - local new_stack = api.discharge(stack) - if new_stack then - local new_meta = new_stack:get_meta() - if new_meta:contains("loaded_projectile") then - new_meta:set_string("loaded_projectile", "") - end - api.player_reset_slowdown(player) - inv:set_stack("main", wield_index, new_stack) - end -end) - --- Crossbow loading on starting holding -controls.on_press(function(player, key) - if key ~= api.CONTROL_CHARGE then - return - end - - local stack = player:get_wielded_item() - local stack_def = stack:get_definition() - - if not stack_def.groups or not stack_def.groups.crossbow or stack_def.groups.is_loaded then - return - end - - local inv = player:get_inventory() - local meta = stack:get_meta() - local wield_index = player:get_wield_index() - - local projectile_item = api.find_matching_projectile(player, stack) - - if projectile_item and not meta:contains("loaded_projectile") then - inv:remove_item("main", projectile_item) - meta:set_string("loaded_projectile", projectile_item) - inv:set_stack("main", wield_index, stack) - return - end -end) - --- Charged crossbow discharge on release -controls.on_press(function(player, key) - if key ~= api.CONTROL_CHARGE then - return - end - - local stack = player:get_wielded_item() - local stack_def = stack:get_definition() - - if not stack_def.groups or not stack_def.groups.crossbow_charged then - return - end - - local inv = player:get_inventory() - local meta = stack:get_meta() - local wield_index = player:get_wield_index() - - local projectile_item = meta:get_string("loaded_projectile") - local power = api.calculate_power(stack, nil, true) - if projectile_item and projectile_item ~= "" and api.projectile_shoot(player, ItemStack(projectile_item), power) then - minetest.sound_play(stack:get_definition()["_sound_on_release"], { object = player }) - local uses = api.reg_from_archery_item(stack:get_name()).definition.uses - stack:add_wear(65535/uses) - end - - local new_stack = api.discharge(stack) - if new_stack then - player:set_wielded_item(new_stack) - if not meta:contains("loaded_projectile") then - minetest.chat_send_player(player:get_player_name(), S("No projectile loaded, discharged safely.")) - end - meta:set_string("loaded_projectile", "") - inv:set_stack("main", wield_index, new_stack) - end -end) - --- Unload crossbow if charging is interrupted -controls.on_release(function(player, key) - if key ~= api.CONTROL_CHARGE then - return - end - - local stack = player:get_wielded_item() - local stack_def = stack:get_definition() - - if not stack_def.groups or not (stack_def.groups.crossbow and stack_def.groups.allow_hold_abort) then - return - end - - local meta = stack:get_meta() - if not meta:contains("loaded_projectile") then - return - end - - local inv = player:get_inventory() - local wield_index = player:get_wield_index() - - local new_stack = api.discharge(stack) - if new_stack then - local new_meta = new_stack:get_meta() - if new_meta:contains("loaded_projectile") then - local projectile_item = new_meta:get_string("loaded_projectile") - minetest.give_or_drop(player, projectile_item) - new_meta:set_string("loaded_projectile", "") - end - api.player_reset_slowdown(player) - inv:set_stack("main", wield_index, new_stack) - end -end) - --- Throwable item throw on release -controls.on_release(function(player, key, hold_time) - if key ~= api.CONTROL_CHARGE then - return - end - - local stack = player:get_wielded_item() - local stack_def = stack:get_definition() - - if not stack_def.groups or not stack_def.groups.throwable then - return - end - - local stage_conf = api.reg_from_archery_item(stack:get_name()).stage_conf - - if hold_time < stage_conf.charging_time[1] then - return - end - - local inv = player:get_inventory() - --local meta = stack:get_meta() - local wield_index = player:get_wield_index() - - local power = api.calculate_power(stack, hold_time) - local new_stack = ItemStack(table.copy(stack:to_table() or {})) - - local uses = api.reg_from_archery_item(new_stack:get_name()).definition.uses - if uses then - new_stack:add_wear(65535/uses) - end - - local projectile_item = archery.get_throwables()[stack:get_name()].entity_name - if projectile_item and api.projectile_shoot(player, new_stack, power) then - minetest.sound_play(stack:get_definition()["_sound_on_release"], { object = player }) - stack:take_item(1) - end - - api.player_reset_slowdown(player) - inv:set_stack("main", wield_index, stack) -end) - --- If the wielded item changed while bow was charging, discharge without shooting the arrow -wield_item.on_index_change(function(player, _, player_last_wield_index) - local inv = player:get_inventory() - local stack = inv:get_stack('main', player_last_wield_index) - local definition = stack:get_definition() - if not definition.groups or not definition.groups.allow_hold_abort then - return - end - - api.player_reset_slowdown(player) - local new_stack = api.discharge(stack) - if new_stack then - local meta = new_stack:get_meta() - if meta:contains("loaded_projectile") then - local projectile_item = meta:get_string("loaded_projectile") - minetest.give_or_drop(player, projectile_item) - meta:set_string("loaded_projectile", "") - end - inv:set_stack("main", player_last_wield_index, stack) - end -end) diff --git a/mods/lord/Core/archery/src/archery/processor/processing_api.lua b/mods/lord/Core/archery/src/archery/processor/processing_api.lua deleted file mode 100644 index ba7602af9..000000000 --- a/mods/lord/Core/archery/src/archery/processor/processing_api.lua +++ /dev/null @@ -1,191 +0,0 @@ -local CONTROL_CHARGE = "RMB" --- local PLAYER_SLOWDOWN_SPEED = 0.25 - ---- @param tool_name string name of a stage of an archery item ---- @return string name of the stage 0 archery item -local function to_original_state(tool_name) - local name = minetest.registered_items[tool_name]._original_state or tool_name - return name -end - -local function reg_from_archery_item(name) - local common_table = table.join(table.join(archery.get_bows(), archery.get_crossbows()), archery.get_throwables()) - local reg = common_table[to_original_state(name)] - return reg -end - ---- @param stack ItemStack a stack with the archery item ---- @param hold_time number the time the player was holding CONTROL_CHARGE down ---- @param stage_conf archery.StageConf the StageConf table ---- @param player Player a player that charges the archery item ---- @return false|ItemStack # a stack with the different name if charge is succesful, or false -local function charge(stack, hold_time, stage_conf, player) - local name = player:get_player_name() - - if not name then - return false - end - local stage_list = stage_conf.stages - - for position, current_stage in pairs(stage_list) do - local next_pos = position + 1 - local next_stage_time = stage_conf.charging_time[next_pos] - local next_stage_stack = stage_list[next_pos] - if stack:get_name() == current_stage then - if next_stage_time and (hold_time >= next_stage_time) then - stack:set_name(next_stage_stack) - return stack - end - end - end - return false -end - ---- @param stack ItemStack a stack with the archery item ---- @return ItemStack resulting archery item stack -local function discharge(stack) - stack:set_name(to_original_state(stack:get_name())) - return stack -end - - --- See #1855 ---- @param player Player a player to slow down -local function player_slowdown(player) - --physics.for_player(player):set({ - -- speed = PLAYER_SLOWDOWN_SPEED, - --}, - --{ - -- name = "archery:draw_slowdown", - --}) -end - --- See #1855 ---- @param player Player a player to reset the effect of slowing down for -local function player_reset_slowdown(player) - --physics.for_player(player):revert({ - -- name = "archery:draw_slowdown", - --}) -end - -local function calculate_power(stack, hold_time, no_hold) - local charging_time = reg_from_archery_item(stack:get_name()).stage_conf.charging_time - local draw_power = reg_from_archery_item(stack:get_name()).definition.draw_power - local max_holding = charging_time[#charging_time] - - if no_hold then - return draw_power - end - - local time_until_stage1 = charging_time[1] - hold_time = hold_time-time_until_stage1 - - if hold_time >= max_holding then - hold_time = max_holding - end - - local power = draw_power*hold_time/max_holding - - if power > 1 then - power = 1 - elseif hold_time < 0.1 then - power = 0.1 - end - - return power -end - ---- @param shooter ObjectRef a player or mob that shoots the projectile ---- @param projectile_stack ItemStack itemstack with item to shoot ---- @param power number power multiplier ---- @param forced_direction? vector forced shooting direction (normalized vector) ---- @param forced_start_position? vector forced position to spawn the projectile on ---- ---- @return boolean -local function projectile_shoot(shooter, projectile_stack, power, forced_direction, forced_start_position) - local shooter_pos = shooter:get_pos() - local look_dir = forced_direction - local projectile_pos = forced_start_position - - if shooter and shooter:is_player() then - --- @cast shooter Player - look_dir = look_dir or shooter:get_look_dir() - projectile_pos = forced_start_position or vector.new(shooter_pos.x, shooter_pos.y + 1.5, shooter_pos.z) - elseif shooter then - --- @cast shooter Entity - local yaw = shooter:get_yaw() - look_dir = look_dir or vector.new(-math.sin(yaw), 0.25, math.cos(yaw)) - projectile_pos = forced_start_position or vector.new(shooter_pos.x, shooter_pos.y, shooter_pos.z) - end - --- @cast look_dir vector - - local projectile_item = projectile_stack:get_name() - - local projectile_reg = projectiles.get_projectiles()[projectile_item] - - local projectile_entity = minetest.add_entity(projectile_pos, projectile_reg.entity_name) - if not projectile_entity then - minetest.get_mod_logger().error('Can\'t add projectile entity "%s" into world.') - - return false - end - - local initial_vel = vector.multiply(look_dir, projectile_reg.entity_reg.max_speed * power) - local rotation_formula = projectile_reg.entity_reg.rotation_formula - projectile_entity:set_rotation(projectiles.get_rotation_pattern(rotation_formula, initial_vel)) - projectile_entity:get_luaentity()._rotation_formula = rotation_formula - projectile_entity:add_velocity(initial_vel) - projectile_entity:set_acceleration(vector.new(0, -GRAVITY, 0)) - --- @type projectiles.Entity.LuaEntity - local lua_entity = projectile_entity:get_luaentity() - lua_entity._shooter = shooter - lua_entity._projectile_stack = projectile_stack - lua_entity._remove_on_object_hit = projectile_reg.entity_reg.remove_on_object_hit - - return true -end - ---- Check if there are projectiles in player inventory ---- ---- @param player Player # the player to check the inventory of ---- ---- @return false|string # item name if player has projectiles, or false -local function check_projectiles(player, type) - type = type or "arrow" - local inv = player:get_inventory() - for item_name, reg in pairs(projectiles.get_projectiles()) do - if reg.type == type and inv:contains_item("main", item_name) then - return item_name - end - end - - return false -end - ---- @param player Player ---- @param archery_item ItemStack ---- ---- @return false|string|nil -local function find_matching_projectile(player, archery_item) - local used_projectiles = archery_item:get_definition()._used_projectiles - - -- luacheck: globals g1 g2, ignore 512 - for _, projectile_type in ipairs(used_projectiles) do - local found_projectile = check_projectiles(player, projectile_type) - - return found_projectile - end -end - -return { - find_matching_projectile = find_matching_projectile, - player_reset_slowdown = player_reset_slowdown, - reg_from_archery_item = reg_from_archery_item, - to_original_state = to_original_state, - projectile_shoot = projectile_shoot, - calculate_power = calculate_power, - player_slowdown = player_slowdown, - discharge = discharge, - charge = charge, - CONTROL_CHARGE = CONTROL_CHARGE, -} diff --git a/mods/lord/Core/archery/src/archery/public_api.lua b/mods/lord/Core/archery/src/archery/public_api.lua deleted file mode 100644 index b51facaa6..000000000 --- a/mods/lord/Core/archery/src/archery/public_api.lua +++ /dev/null @@ -1,264 +0,0 @@ -local api = require("archery.processor.processing_api") - -local registered_bows = {} -local registered_crossbows = {} -local registered_throwables = {} - ---- @class archery.Definition: NodeDefinition ---- @field inventory_image string texture name without file format (`.png`) ---- @field description string item description shown on hovering on it in an inventory ---- @field groups table minetest item definition groups table ---- @field uses number number of shots available until the archery item breaks - ---- @class archery.StageConf ---- @field charging_time table a numerical table starting from 0 containing charging times for each stage ---- @field stages table a numerical table starting from 0 containing stage names (itemstring) - ---- @class archery.Registration ---- @field definition archery.Definition definition for creating the base archery item and stages ---- @field stage_conf archery.StageConf the StageConf table ---- @field projectile_reg projectiles.Registration the StageConf table - ---- @param name string itemstring ":" ---- @param reg archery.Registration archery item registration table -local function register_bow(name, reg) - local def = reg.definition - local wield_scale = { x = 2, y = 2, z = 0.75, } - local stage_groups = table.merge({ - not_in_creative_inventory = 1, - is_loaded = 1, - }, def.groups) - - minetest.register_tool(name, { - range = def.range or 3, - description = def.description, - wield_scale = wield_scale, - inventory_image = def.inventory_image .. ".png", - wield_image = def.inventory_image .. ".png", - groups = def.groups, - tool_capabilities = def.tool_capabilities, - touch_interaction = { - pointed_nothing = "short_dig_long_place", - pointed_node = "long_dig_short_place", - pointed_object = "short_dig_long_place", - }, - _original_state = name, - _sound_on_release = def.sound_on_release, - _used_projectiles = def.used_projectiles, - }) - - local stages = {} - stages[0] = name - - for i = 1, 3 do - local stage_name = name .. "_" .. i - stages[i] = stage_name - minetest.register_tool(stage_name, { - description = def.description, - range = 0, - wield_scale = wield_scale, - inventory_image = def.inventory_image .. "_" .. i .. ".png", - wield_image = def.inventory_image .. "_" .. i .. ".png", - groups = stage_groups, - tool_capabilities = def.tool_capabilities, - touch_interaction = { - pointed_nothing = "short_dig_long_place", - pointed_node = "long_dig_short_place", - pointed_object = "short_dig_long_place", - }, - _original_state = name, - _sound_on_release = def.sound_on_release, - _used_projectiles = def.used_projectiles, - }) - end - registered_bows[name] = { - definition = def, - stage_conf = { - stages = stages, - charging_time = reg.stage_conf.charging_time or { - [0] = 0, - [1] = 0.5, - [2] = 1, - [3] = 1.5, - }, - }, - } -end - ---- @param name string itemstring ":" ---- @param reg archery.Registration archery item registration table -local function register_crossbow(name, reg) - local def = reg.definition - local wield_scale = { x = 2, y = 2, z = 0.75, } - - local stage_groups = table.merge({ - not_in_creative_inventory = 1, - is_loaded = 1, - allow_hold_abort = 1, - }, def.groups) - - minetest.register_tool(name, { - range = def.range or 3, - description = def.description, - wield_scale = def.wield_scale or wield_scale, - inventory_image = def.inventory_image .. ".png", - wield_image = def.inventory_image .. ".png", - groups = table.merge({ allow_hold_abort = 1 }, def.groups), - tool_capabilities = def.tool_capabilities, - touch_interaction = { - pointed_nothing = "short_dig_long_place", - pointed_node = "long_dig_short_place", - pointed_object = "short_dig_long_place", - }, - _original_state = name, - _sound_on_release = def.sound_on_release, - _used_projectiles = def.used_projectiles, - }) - - local stages = {} - stages[0] = name - local max_stage = 3 - - for i = 1, max_stage do - local stage_name = name .. "_" .. i - stages[i] = stage_name - local stage_groups_temp = table.copy(stage_groups) - if i == max_stage then - stage_groups_temp["allow_hold_abort"] = nil - stage_groups_temp["crossbow_charged"] = 1 - end - - minetest.register_tool(stage_name, { - description = def.description, - range = 0, - wield_scale = wield_scale, - inventory_image = def.inventory_image .. "_" .. i .. ".png", - wield_image = def.inventory_image .. "_" .. i .. ".png", - groups = stage_groups_temp, - tool_capabilities = def.tool_capabilities, - touch_interaction = { - pointed_nothing = "short_dig_long_place", - pointed_node = "long_dig_short_place", - pointed_object = "short_dig_long_place", - }, - _original_state = name, - _sound_on_release = def.sound_on_release, - _used_projectiles = def.used_projectiles, - }) - end - - registered_crossbows[name] = { - definition = def, - stage_conf = { - stages = stages, - charging_time = reg.stage_conf.charging_time or { - [0] = 0, - [1] = 0.5, - [2] = 1, - [3] = 1.5, - }, - }, - } -end - -local function register_throwable(name, reg) - local def = reg.definition - local wield_scale = { x = 2, y = 2, z = 0.75, } - - if reg.definition.just_an_item == true then - minetest.register_craftitem(name, { - range = def.range or 3, - description = def.description, - wield_scale = def.wield_scale or wield_scale, - inventory_image = def.inventory_image .. ".png", - wield_image = def.inventory_image .. ".png", - groups = def.groups, - touch_interaction = def.touch_interaction or { - pointed_nothing = "short_dig_long_place", - pointed_node = "long_dig_short_place", - pointed_object = "short_dig_long_place", - }, - _original_state = name, - _sound_on_release = def.sound_on_release, - _used_projectiles = name, - }) - else - minetest.register_tool(name, { - range = def.range or 3, - description = def.description, - wield_scale = def.wield_scale or wield_scale, - inventory_image = def.inventory_image .. ".png", - wield_image = def.inventory_image .. ".png", - groups = def.groups, - tool_capabilities = def.tool_capabilities, - touch_interaction = def.touch_interaction or { - pointed_nothing = "short_dig_long_place", - pointed_node = "long_dig_short_place", - pointed_object = "short_dig_long_place", - }, - _original_state = name, - _sound_on_release = def.sound_on_release, - _used_projectiles = def.used_projectiles, - }) - end - - local stages = {} - stages[0] = name - - for i = 1, 1 do - stages[i] = name - end - - projectiles.register_projectile(reg.projectile_reg.entity_name, reg.projectile_reg, true) - - registered_throwables[name] = { - definition = def, - entity_name = reg.projectile_reg.entity_name, - stage_conf = { - stages = stages, - charging_time = reg.stage_conf.charging_time or { - [0] = 0, - [1] = 0.5, - [2] = 1.5, - }, - }, - } -end - ---WIP: ---[[ -local function link_existing_throwable(name, reg) - local stages = {} - stages[0] = name - - for i = 1, 1 do - stages[i] = name - end - - projectiles.register_projectile(reg.projectile_reg.entity_name, reg.projectile_reg, true) - - registered_throwables[name] = { - definition = minetest.registered_items[name], - stage_conf = { - stages = stages, - charging_time = reg.stage_conf.charging_time or { - [0] = 0, - [1] = 0.5, - [2] = 1.5, - }, - }, - } -end -]] - -return { - register_bow = register_bow, - projectile_shoot = api.projectile_shoot, - register_crossbow = register_crossbow, - register_throwable = register_throwable, - --WIP: - --link_existing_throwable = link_existing_throwable, - get_bows = function() return registered_bows end, - get_crossbows = function() return registered_crossbows end, - get_throwables = function() return registered_throwables end, -} diff --git a/mods/lord/Core/base_classes/init.lua b/mods/lord/Core/base_classes/init.lua deleted file mode 100644 index 0b5481b9a..000000000 --- a/mods/lord/Core/base_classes/init.lua +++ /dev/null @@ -1,5 +0,0 @@ - - -minetest.mod(function(mod) - require("base_classes").init(mod) -end) diff --git a/mods/lord/Core/base_classes/license.md b/mods/lord/Core/base_classes/license.md deleted file mode 100644 index 02dd26a45..000000000 --- a/mods/lord/Core/base_classes/license.md +++ /dev/null @@ -1,7 +0,0 @@ -Copyright (c) 2022-present [Александр Чибрикин](https://github.com/alek13) & [Lord Team](https://github.com/lord-server/lord?tab=readme-ov-file#contributors--%D1%83%D1%87%D0%B0%D1%81%D1%82%D0%BD%D0%B8%D0%BA%D0%B8) - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/mods/lord/Core/base_classes/mod.conf b/mods/lord/Core/base_classes/mod.conf deleted file mode 100644 index 77e272dbc..000000000 --- a/mods/lord/Core/base_classes/mod.conf +++ /dev/null @@ -1,5 +0,0 @@ -name = base_classes -title = Base Classes -description = Very handly common base classes to make life easier -depends = builtin_ext -author = alek13 diff --git a/mods/lord/Core/base_classes/src/base_classes.lua b/mods/lord/Core/base_classes/src/base_classes.lua deleted file mode 100644 index 5466dfb69..000000000 --- a/mods/lord/Core/base_classes/src/base_classes.lua +++ /dev/null @@ -1,34 +0,0 @@ -local Event = require('base_classes.Event') -local Form = require('base_classes.Form') -local DetachedInventory = require('base_classes.DetachedInventory') -local ObjectState = require('base_classes.ObjectState') -local HUD = require('base_classes.HUD') -local Meta = require('base_classes.Meta') - - -base_classes = {} -- luacheck: ignore unused global variable base_classes - -local function register_api() - _G.base_classes = { - --- @type base_classes.Event - Event = Event, - --- @type base_classes.Form - Form = Form, - --- @type base_classes.DetachedInventory - DetachedInventory = DetachedInventory, - --- @type base_classes.ObjectState - ObjectState = ObjectState, - --- @type base_classes.HUD - HUD = HUD, - --- @type base_classes.Meta - Meta = Meta, - } -end - - -return { - --- @param mod minetest.Mod - init = function(mod) - register_api() - end, -} diff --git a/mods/lord/Core/base_classes/src/base_classes/DetachedInventory.lua b/mods/lord/Core/base_classes/src/base_classes/DetachedInventory.lua deleted file mode 100644 index 315abb0c3..000000000 --- a/mods/lord/Core/base_classes/src/base_classes/DetachedInventory.lua +++ /dev/null @@ -1,119 +0,0 @@ - - ---- @class base_classes.DetachedInventory -local DetachedInventory = { - --- @protected - --- @type string - player_name = nil, --- @diagnostic disable-line: assign-type-mismatch - --- @protected - --- @type string - id = nil, --- @diagnostic disable-line: assign-type-mismatch - --- @overridable - --- @static - --- @protected - --- @type DetachedInventoryCallbacksDef - callbacks = {}, - --- @overridable - --- @static - --- @protected - --- @type string[] - lists_for_return = {} -} - ---- @public ---- @generic GenericDetachedInventory: base_classes.DetachedInventory ---- @param child_class GenericDetachedInventory ---- @return GenericDetachedInventory -function DetachedInventory:extended(child_class) - return setmetatable(child_class or {}, { __index = self }) -end - ---- Constructor ---- @public ---- @generic GenericDetachedInventory: base_classes.DetachedInventory ---- @param player Player ---- @return GenericDetachedInventory -function DetachedInventory:new(player) - local class = self - self = {} - - self.player_name = player:get_player_name() - - return setmetatable(self, { __index = class }) -end - ---- @protected ---- @abstract ---- @return string -function DetachedInventory:generate_id() - error('You should override method `DetachedInventory:generate_id()` in your inventory class') -end - ---- @protected ---- @abstract ---- @param detached InvRef ---- @generic GenericDetachedInventory: base_classes.DetachedInventory ---- @return GenericDetachedInventory -function DetachedInventory:build(detached) - error('You should override method `DetachedInventory:build()` in your inventory class') -end - ---- @protected ---- @generic GenericDetachedInventory: base_classes.DetachedInventory ---- @return GenericDetachedInventory -function DetachedInventory:create() - local detached = minetest.create_detached_inventory(self.id, self.callbacks, self.player_name) - self:build(detached) - - return self -end - ---- @return InvRef -function DetachedInventory:get_detached() - return minetest.get_inventory({ type = 'detached', name = self.id }) -end - ---- @protected ---- @generic GenericDetachedInventory: base_classes.DetachedInventory ---- @return GenericDetachedInventory -function DetachedInventory:get_or_create() - self.id = self:generate_id() - local exists = self:get_detached() - - return exists and self or self:create() -end - ---- @public ---- @return string -function DetachedInventory:get_id() - return self.id or self:get_or_create().id -end - ---- @public -function DetachedInventory:return_forgotten() - if table.is_empty(self.lists_for_return) then return end - - local player_inventory = minetest.get_inventory({ type = 'player', name = self.player_name }) - local detached_inventory = self:get_detached() - local player = minetest.get_player_by_name(self.player_name) - if not player_inventory or not detached_inventory or not player then - return - end - local position = player:get_pos() - - for _, list in pairs(self.lists_for_return) do - for i, stack in pairs(detached_inventory:get_list(list)) do - if not stack:is_empty() then - detached_inventory:set_stack(list, i, nil) - if player_inventory:room_for_item('main', stack) then - player_inventory:add_item('main', stack) - else - minetest.item_drop(stack, player, position) - end - end - end - end -end - - -return DetachedInventory diff --git a/mods/lord/Core/base_classes/src/base_classes/Event.lua b/mods/lord/Core/base_classes/src/base_classes/Event.lua deleted file mode 100644 index 5c5592122..000000000 --- a/mods/lord/Core/base_classes/src/base_classes/Event.lua +++ /dev/null @@ -1,72 +0,0 @@ -local pairs - = pairs - - ---- @alias base_classes.Event.callback fun(...):void - ---- @abstract ---- @class base_classes.Event -local Event = { - --- @alias base_classes.Event.Type table - --- @type base_classes.Event.Type - Type = nil, --- @diagnostic disable-line: assign-type-mismatch - --- @type table - subscribers = nil, --- @diagnostic disable-line: assign-type-mismatch -} - ---- @generic GenericEvent: base_classes.Event ---- @param child_class GenericEvent? ---- @return GenericEvent -function Event:extended(child_class) - self = setmetatable(child_class or {}, { __index = self }) - - self.Type = self.Type or {} - self.subscribers = self.subscribers or {} - - return self -end - ---- @generic GenericEvent: base_classes.Event ---- @param event string name of event (One of `Event.Type::`) ---- @param base GenericEvent if you want to link returned function to this `base` class|object ---- @return fun(callback:base_classes.Event.callback) -function Event:on(event, base) - return base - and - function(callback) - base:subscribe(event, callback) - end - or - function(callback) - self:subscribe(event, callback) - end -end - ---- @param event string name of event (One of `Event.Type::`) ---- @param callback base_classes.Event.callback -function Event:subscribe(event, callback) - assert(self.Type[event] ~= nil, "Unknown Event.Type: " .. event) - assert(type(callback) == "function") - - table.insert(self.subscribers[event], callback) -end - ---- @private ---- @param event string name of event (One of `Event.Type::`) ---- @vararg any pass args that will be passed to subscribers callbacks. -function Event:notify(event, ...) - assert(self.Type[event] ~= nil, "Unknown Event.Type: " .. event) - - for _, func in pairs(self.subscribers[event]) do - func(...) - end -end - ---- @param event string name of event (One of `Event.Type::`) ---- @vararg any pass args that will be passed to subscribers callbacks. -function Event:trigger(event, ...) - self:notify(event, ...) -end - - -return Event diff --git a/mods/lord/Core/base_classes/src/base_classes/Form.lua b/mods/lord/Core/base_classes/src/base_classes/Form.lua deleted file mode 100644 index c63a336ed..000000000 --- a/mods/lord/Core/base_classes/src/base_classes/Form.lua +++ /dev/null @@ -1,77 +0,0 @@ -local BaseForm = require('base_classes.Form.Base') -local Mixin = require('base_classes.Form.Mixin') -local Element = require('base_classes.Form.Element') - - - ---- Facade `Form`: Factory(Generator) for Form Classes & its Elements. ---- This class constructs for you a base form class. ---- Use methods to mix functionality you need and then call `:extended()` method. ---- ---- @class base_classes.Form ---- @field personal fun(self:self): self ---- @field for_node fun(self:self): self ---- @field with_detached fun(self:self): self ---- @field with_tabs fun(self:self, tabs:table): self -local Form = { - --- @type table - will_mixed = {}, - - --- @type base_classes.Form.Mixin[]|table - mixins = { - personal = Mixin.Personal, - for_node = Mixin.ForNode, - with_detached = Mixin.WithDetached, - with_tabs = Mixin.WithTabs, - }, - - Element = Element, -} -setmetatable(Form, { - --- @param self base_classes.Form - --- @param mixin string - __index = function(self, mixin) - if not self.mixins[mixin] then - errorlf('Undefined mixin `%s`', 3, mixin) - end - - --- @param _ self - --- @vararg any all params passed to mix method (`for_node`, `with_tabs`), that will be passed to `'mixin':mix_to()` - return function(_, ...) - self.will_mixed[mixin] = { ... } - - return self - end - end -}) - ---- @public ---- ---- @generic GenericForm: base_classes.Form.Base ---- @param child_class GenericForm ---- ---- @return GenericForm -function Form:extended(child_class) - local class = BaseForm:extended(child_class or {}) - - for name, params in pairs(self.will_mixed) do - class:mix(self.mixins[name], unpack(params)) - end - - self.will_mixed = {} - - return class -end - ---- @public ---- @param mix_method_name string ---- @param mixin base_classes.Form.Mixin ---- @return self -function Form:register_mixin(mix_method_name, mixin) - self.mixins[mix_method_name] = mixin - - return self -end - - -return Form diff --git a/mods/lord/Core/base_classes/src/base_classes/Form/Base.lua b/mods/lord/Core/base_classes/src/base_classes/Form/Base.lua deleted file mode 100644 index 6bb569070..000000000 --- a/mods/lord/Core/base_classes/src/base_classes/Form/Base.lua +++ /dev/null @@ -1,206 +0,0 @@ -local FormEvent = require('base_classes.Form.Event') - - ---- @class base_classes.Form.Base ---- @field on_register fun(callback:base_classes.Form.callback.on_register) ---- @field on_instance fun(callback:base_classes.Form.callback.on_instance) ---- @field on_open fun(callback:base_classes.Form.callback.on_open) ---- @field on_close fun(callback:base_classes.Form.callback.on_close) ---- @field on_handle fun(callback:base_classes.Form.callback.on_handle) -local BaseForm = { - --- @const - --- @type string - NAME = '', - - --- @protected - --- @type base_classes.Form.Event - event = nil, --- @diagnostic disable-line: assign-type-mismatch - - --- @type string - player_name = nil, --- @diagnostic disable-line: assign-type-mismatch -} - ---- @param mixin base_classes.Form.Mixin -function BaseForm:mix(mixin, ...) - --- @type base_classes.Form.Base - self = setmetatable(self, { __index = table.overwrite( - table.copy(getmetatable(self).__index), - mixin - )}) - mixin.mix_to(self, ...) -end - ---- @public ---- @generic GenericForm: base_classes.Form.Base ---- @param child_class GenericForm ---- @return GenericForm -function BaseForm:extended(child_class) - self = setmetatable(child_class or {}, { __index = self }) - - self.event = FormEvent:extended() - - self.on_register = self.event:on(self.event.Type.on_register, self.event) - self.on_instance = self.event:on(self.event.Type.on_instance, self.event) - self.on_open = self.event:on(self.event.Type.on_open, self.event) - self.on_close = self.event:on(self.event.Type.on_close, self.event) - self.on_handle = self.event:on(self.event.Type.on_handle, self.event) - - return self -end - ---- Constructor. ---- ---- You can pass additional own params into this method. ---- This params will be passed to `on_instance` event subscribers and into `:instantiate()` implementation. ---- ---- Do not override this method unless necessary. Instead override `:instantiate()`. ---- If you still need to override this method, you need to replicate its behavior and add your own logic. ---- ---- @public ---- @param player Player ---- @return base_classes.Form.Base -function BaseForm:new(player, ...) - local class = self - self = {} - - self.player_name = player:get_player_name() - self = setmetatable(self, { __index = class }) - - self.event:trigger(self.event.Type.on_instance, self, player, ...) - self:instantiate(player, ...) - - return self -end - ---- Shorten for `minetest.get_player_by_name(self.player_name)` ---- @return Player? -function BaseForm:player() - return minetest.get_player_by_name(self.player_name) -end - ---- Override this method instead constructor (`:new()`), if you want to add some logic on instance creating. ---- All additional params from constructor will be passed here. ---- @protected ---- @param player Player -function BaseForm:instantiate(player, ...) -end - ---- You should override this method and implement and return form specification for your form. ---- @public ---- @abstract -function BaseForm:get_spec(...) - error('You need to override method `:get_spec()`') -end - ---- Opens the form for the player specified in the constructor (`:new()` method). ---- ---- You can pass additional own params into this method. ---- This params will be passed to `on_open` event subscribers and into your `:get_spec()` implementation. ---- ---- Example: ---- ``` ---- minetest.register_tool('...:...', { ---- on_use = function(itemstack, player, pointed_thing) ---- MyForm:new(player):open(my_param) ---- ``` ---- ---- @public -function BaseForm:open(...) - self.event:trigger(self.event.Type.on_open, self, ...) - minetest.show_formspec(self.player_name, self.NAME, self:get_spec(...)) -end - ---- This function should be used when you override method `:handler()`, ---- and when user press `esc` or click outside the form. ---- ---- Example: ---- ```lua ---- function MyForm:handler(player, form_name, fields) ---- if form_name ~= self.NAME then return end ---- ---- self:trigger_handle(player, fields) ---- ``` ---- ---- When you want to close form forcibly, use the `:close()` method. ---- ---- @protected -function BaseForm:trigger_handle(player, fields) - self.event:trigger(self.event.Type.on_handle, self, player, fields) -end - ---- This function should be used when you override method `:handler()`, ---- and when user press `esc` or click outside the form. ---- ---- Example: ---- ```lua ---- function MyForm:handler(player, form_name, fields) ---- -- ... ---- if fields.quit then ---- self:trigger_close() ---- end ---- ``` ---- ---- When you want to close form forcibly, use the `:close()` method. ---- ---- @protected -function BaseForm:trigger_close(...) - self.event:trigger(self.event.Type.on_close, self, ...) -end - ---- Triggers `on_close` event & call `minetest.close_formspec()`. ---- @public -function BaseForm:close(...) - self.event:trigger(self.event.Type.on_close, self, ...) - minetest.close_formspec(self.player_name, self.NAME) -end - ---- Override this method to implement some form handling and your own logic. ---- ---- @protected ---- @param fields table ---- @return nil|boolean return `true` for stop propagation of handling -function BaseForm:handle(fields) - return -end - ---- If you want just add some handling to your form, just override `:handle()` method. ---- ---- If you still need to override this method, you need to replicate its behavior and add your own logic. ---- ---- Exactly this method itself is registering as a form handler in the Luanti core. ---- ---- @protected ---- @param player Player ---- @param form_name string ---- @param fields table -function BaseForm:handler(player, form_name, fields) - if form_name ~= self.NAME then - return - end - - self:trigger_handle(player, fields) - if self:handle(fields) then - return - end - - - if fields.quit then - self:trigger_close() - end -end - ---- You should to call this method after you declare your form class. ---- @public ---- @return base_classes.Form.Base -function BaseForm:register(...) - self.event:trigger(self.event.Type.on_register, self, ...) - - minetest.register_on_player_receive_fields(function(player, form_name, fields) - self:handler(player, form_name, fields) - end) - - return self -end - - -return BaseForm diff --git a/mods/lord/Core/base_classes/src/base_classes/Form/Element.lua b/mods/lord/Core/base_classes/src/base_classes/Form/Element.lua deleted file mode 100644 index 796b8da21..000000000 --- a/mods/lord/Core/base_classes/src/base_classes/Form/Element.lua +++ /dev/null @@ -1,6 +0,0 @@ - - ---- @namespace base_classes.Form.Element -return { - Tab = require('base_classes.Form.Element.Tab') -} diff --git a/mods/lord/Core/base_classes/src/base_classes/Form/Element/Tab.lua b/mods/lord/Core/base_classes/src/base_classes/Form/Element/Tab.lua deleted file mode 100644 index 30c27b717..000000000 --- a/mods/lord/Core/base_classes/src/base_classes/Form/Element/Tab.lua +++ /dev/null @@ -1,57 +0,0 @@ -local setmetatable - = setmetatable - - ---- @class base_classes.Form.Element.Tab -local Tab = { - --- @type string - title = nil, --- @diagnostic disable-line: assign-type-mismatch - --- @type base_classes.Form.Base - form = nil, --- @diagnostic disable-line: assign-type-mismatch - --- @abstract - --- @public - --- @type fun(self:base_classes.Form.Element.Tab):string - get_spec = function(self) - return error('You should override method `Tab:get_spec()` in your tab class.') - end, - --- @abstract - --- @protected - --- @type nil|fun(self:base_classes.Form.Element.Tab,fields:table):nil|boolean - handle = nil, -} - ---- @public ---- @generic GenericTab: base_classes.Form.Element.Tab ---- @param child_class GenericTab ---- @return GenericTab -function Tab:extended(child_class) - return setmetatable(child_class or {}, { __index = self }) -end - ---- @public ---- Don't override this method, use `:instantiate()` instead. ---- @overload fun(form:base_classes.Form): base_classes.Form.Element.Tab ---- @param form base_classes.Form.Base parent form instance. ---- @param instance base_classes.Form.Element.Tab for quick instantiate [optional]. ---- @return base_classes.Form.Element.Tab -function Tab:new(form, instance, ...) - local class = self - - self = instance or {} - self.form = form - - self = setmetatable(self, { __index = class }) - self:instantiate(...) - - return self -end - ---- Override this method instead constructor (`:new()`), if you want to add some logic on instance creating. ---- All additional params from constructor will be passed here. ---- Neither `form` nor `instance` will not be passed, as it assign to `self.form` & `self` respectively. ---- @protected -function Tab:instantiate(...) -end - - -return Tab diff --git a/mods/lord/Core/base_classes/src/base_classes/Form/Event.lua b/mods/lord/Core/base_classes/src/base_classes/Form/Event.lua deleted file mode 100644 index 7eefdfd3f..000000000 --- a/mods/lord/Core/base_classes/src/base_classes/Form/Event.lua +++ /dev/null @@ -1,56 +0,0 @@ -local BaseEvent = require('base_classes.Event') - - --- luacheck: no max line length ---- @alias base_classes.Form.callback.on_register fun(form:base_classes.Form.Base) ---- @alias base_classes.Form.callback.on_instance fun(form:base_classes.Form.Base, player:Player, ...) ---- @alias base_classes.Form.callback.on_open fun(form:base_classes.Form.Base) ---- @alias base_classes.Form.callback.on_close fun(form:base_classes.Form.Base) ---- @alias base_classes.Form.callback.on_handle fun(form:base_classes.Form.Base, player:Player, fields:table): nil|boolean ---- @alias base_classes.Form.callback base_classes.Form.callback.on_register|base_classes.Form.callback.on_instance|base_classes.Form.callback.on_open|base_classes.Form.callback.on_close|base_classes.Form.callback.on_handle - - ---- @generic GenericEvent: base_classes.Form.Event ---- @class base_classes.Form.Event: base_classes.Event ---- @field on fun(self:self, event:string, base:GenericEvent): fun(callback:base_classes.Form.callback) ---- @field trigger fun(self:self, event:string, ...): void -local Event = BaseEvent:extended() - ---- @class base_classes.Form.Event.Type -Event.Type = { - on_register = 'on_register', - on_instance = 'on_instance', - on_open = 'on_open', - on_close = 'on_close', - on_handle = 'on_handle', -} - ---- @type table -Event.subscribers = { - --- @type base_classes.Form.callback.on_register[] - on_register = {}, - --- @type base_classes.Form.callback.on_instance[] - on_instance = {}, - --- @type base_classes.Form.callback.on_open[] - on_open = {}, - --- @type base_classes.Form.callback.on_close[] - on_close = {}, - --- @type base_classes.Form.callback.on_handle[] - on_handle = {}, -} - ---- @generic GenericEvent: base_classes.Form.Event ---- @param child_class GenericEvent? ---- @return GenericEvent -function Event:extended(child_class) - --- @type GenericEvent - child_class = child_class or {} - - child_class.Type = child_class.Type or table.copy(Event.Type) - child_class.subscribers = child_class.subscribers or table.copy(Event.subscribers) - - return BaseEvent:extended(child_class) -end - - -return Event diff --git a/mods/lord/Core/base_classes/src/base_classes/Form/Mixin.lua b/mods/lord/Core/base_classes/src/base_classes/Form/Mixin.lua deleted file mode 100644 index c4eeac699..000000000 --- a/mods/lord/Core/base_classes/src/base_classes/Form/Mixin.lua +++ /dev/null @@ -1,11 +0,0 @@ - ---- @class base_classes.Form.Mixin: base_classes.Form.Base ---- @field mix_to fun(base_class:base_classes.Form.Base, ...) - ---- @namespace base_classes.Form.Mixin -return { - Personal = require('base_classes.Form.Mixin.Personal'), - ForNode = require('base_classes.Form.Mixin.ForNode'), - WithDetached = require('base_classes.Form.Mixin.WithDetached'), - WithTabs = require('base_classes.Form.Mixin.WithTabs'), -} diff --git a/mods/lord/Core/base_classes/src/base_classes/Form/Mixin/ForNode.lua b/mods/lord/Core/base_classes/src/base_classes/Form/Mixin/ForNode.lua deleted file mode 100644 index fd2de842e..000000000 --- a/mods/lord/Core/base_classes/src/base_classes/Form/Mixin/ForNode.lua +++ /dev/null @@ -1,25 +0,0 @@ - ---- @class base_classes.Form.Mixin.ForNode: base_classes.Form.Mixin -local ForNode = { - --- @protected - --- @type Position - node_position = nil, --- @diagnostic disable-line: assign-type-mismatch - --- @protected - --- @type NodeMetaRef - node_meta = nil, --- @diagnostic disable-line: assign-type-mismatch -} - ---- @static ---- @param class base_classes.Form.Base -function ForNode.mix_to(class) - --- @param self base_classes.Form.Mixin.ForNode - --- @param _ Player - --- @param pos Position - class.on_instance(function(self, _, pos) - self.node_position = pos - self.node_meta = minetest.get_meta(pos) - end) -end - - -return ForNode diff --git a/mods/lord/Core/base_classes/src/base_classes/Form/Mixin/Personal.lua b/mods/lord/Core/base_classes/src/base_classes/Form/Mixin/Personal.lua deleted file mode 100644 index f63567b10..000000000 --- a/mods/lord/Core/base_classes/src/base_classes/Form/Mixin/Personal.lua +++ /dev/null @@ -1,87 +0,0 @@ -local Logger = minetest.get_mod_logger() - - ---- @class base_classes.Form.Mixin.Personal: base_classes.Form.Mixin -local Personal = { - --- @static late - --- @protected - --- @type table - opened_for = nil, --- @diagnostic disable-line: assign-type-mismatch - --- Set `true` if you don't need to cleanup `self.opened_for[player_name]` on each close form. - --- In this case it will be removed only on player leave. - --- Useful for player inventory specified by `player:set_inventory_formspec()` MT function. - --- @type boolean - no_cleanup_on_close = false, -} - ---- @public ---- @static late ---- @param player Player ---- @return base_classes.Form.Base|nil -function Personal:get_opened_for(player) - return self.opened_for[player:get_player_name()] -end - ---- @protected ---- @param player Player ---- @param form_name string ---- @param fields table -function Personal:handler(player, form_name, fields) - if form_name ~= self.NAME then - return - end - - local form = self:get_opened_for(player) - if not form then - Logger.error('[Form.Mixin.Personal]: opened form for player `%s` not found.', player:get_player_name()) - return - end - - self.event:trigger(self.event.Type.on_handle, form, player, fields) - if form:handle(fields) then - return - end - - if fields.quit then - form:trigger_close() - end -end - ---- @protected ---- @param player Player -function Personal:player_leave(player, _) - local form = self:get_opened_for(player); - if form then - form:trigger_close() - if self.no_cleanup_on_close then - self.opened_for[self.player_name] = nil - end - end -end - - ---- @static ---- @param class base_classes.Form.Base|base_classes.Form.Mixin.Personal -function Personal.mix_to(class) - class.opened_for = {} - - --- @param self base_classes.Form.Mixin.Personal - class.on_open(function(self) - self.opened_for[self.player_name] = self; - end) - --- @param self base_classes.Form.Mixin.Personal - class.on_close(function(self) - if not self.no_cleanup_on_close then - self.opened_for[self.player_name] = nil - end - end) - --- @param self base_classes.Form.Mixin.Personal - class.on_register(function(self) - minetest.register_on_leaveplayer(function(player, _) - self:player_leave(player) - end) - end) -end - - -return Personal diff --git a/mods/lord/Core/base_classes/src/base_classes/Form/Mixin/WithDetached.lua b/mods/lord/Core/base_classes/src/base_classes/Form/Mixin/WithDetached.lua deleted file mode 100644 index 213f54736..000000000 --- a/mods/lord/Core/base_classes/src/base_classes/Form/Mixin/WithDetached.lua +++ /dev/null @@ -1,29 +0,0 @@ - ---- @class base_classes.Form.Mixin.WithDetached: base_classes.Form.Mixin -local WithDetached = { - --- @protected - --- @generic GenericDetachedInventory: base_classes.DetachedInventory - --- @type GenericDetachedInventory - inventory = nil, - --- @static - --- @private - --- @generic GenericDetachedInventory: base_classes.DetachedInventory - --- @type GenericDetachedInventory - Inventory_class = false, -} - ---- @static ---- @param class base_classes.Form.Base|base_classes.Form.Mixin.WithDetached ---- @param Inventory_class base_classes.DetachedInventory -function WithDetached.mix_to(class, Inventory_class) - class.Inventory_class = Inventory_class - - --- @param self base_classes.Form.Mixin.WithDetached - --- @param player Player - class.on_instance(function(self, player) - self.inventory = self.Inventory_class:new(player) - end) -end - - -return WithDetached diff --git a/mods/lord/Core/base_classes/src/base_classes/Form/Mixin/WithTabs.lua b/mods/lord/Core/base_classes/src/base_classes/Form/Mixin/WithTabs.lua deleted file mode 100644 index a7a384989..000000000 --- a/mods/lord/Core/base_classes/src/base_classes/Form/Mixin/WithTabs.lua +++ /dev/null @@ -1,108 +0,0 @@ -local pairs, table_concat, tonumber - = pairs, table.concat, tonumber - -local Tab = require('base_classes.Form.Element.Tab') - - ---- @class base_classes.Form.Mixin.WithTabs: base_classes.Form.Mixin -local WithTabs = { - --- @static - --- @protected - --- @type table table with constants of tabs & theirs numbers - tab = nil, --- @diagnostic disable-line: assign-type-mismatch - --- @protected - --- @type base_classes.Form.Element.Tab[] - tabs = nil, --- @diagnostic disable-line: assign-type-mismatch - --- @protected - --- @type number - current_tab = nil, --- @diagnostic disable-line: assign-type-mismatch -} - ---- @protected ---- @param tab_number number? one of self.tab.'ants. -function WithTabs:switch_tab(tab_number) - self.current_tab = tab_number - self:open() -end - ---- @public ---- @param tab base_classes.Form.Element.Tab ---- @return self|base_classes.Form.Mixin.WithTabs -function WithTabs:add_tab(tab) - tab = (tab.form ~= nil) and tab or Tab:new(self, tab) - self.tabs[#self.tabs+1] = tab - - return self -end - ---- @protected ---- @return string -function WithTabs:get_spec_head() - return 'size[8,9]' -end - ---- @protected ---- @param tab_number number? one of self.tab.'ants. Default: `self.current_tab` -function WithTabs:get_tab_spec(tab_number) - tab_number = tab_number or self.current_tab or 1 - - local tab = self.tabs[tab_number] - - return tab and tab:get_spec() or '' -end - ---- @protected ---- @return string -function WithTabs:get_spec() - local tabs_titles = {} - for number, tab in pairs(self.tabs) do - tabs_titles[#tabs_titles+1] = tab.title - end - - local formspec = self:get_spec_head() .. - 'tabheader[0,0;current_tab;' .. table_concat(tabs_titles, ',') .. ';'.. (self.current_tab or 1) ..']' - formspec = formspec .. self:get_tab_spec() - - return formspec -end - ---- @param fields table ---- @return nil|boolean return `true` for stop propagation of handling -function WithTabs:handle(fields) - local tab = self.tabs[self.current_tab] - --- @diagnostic disable-next-line: access-invisible (friendly class) - local has_handle = tab and tab.handle and type(tab.handle) == 'function' - if has_handle then - --- @cast tab base_classes.Form.Element.Tab - --- @diagnostic disable-next-line: need-check-nil - return tab:handle(fields) --- @diagnostic disable-line: access-invisible (friendly class) - end -end - ---- @static ---- @param class base_classes.Form.Base|base_classes.Form.Mixin.WithTabs ---- @param tabs_numbers table -function WithTabs.mix_to(class, tabs_numbers) - class.tab = class.tab or tabs_numbers or {} -- constants `[TAB_NAME] = number` - class.tabs = class.tabs or {} - class.current_tab = table.is_empty(class.tabs) and 0 or 1 - - --- @param self base_classes.Form.Base|base_classes.Form.Mixin.WithTabs - class.on_instance(function(self, _, _) - self.current_tab = 1 - self.tabs = table.copy(self.tabs or class.tabs) - end) - --- @param self base_classes.Form.Base|base_classes.Form.Mixin.WithTabs - --- @param _ Player - --- @param fields table|{current_tab:number} - class.on_handle(function(self, _, fields) - if fields.current_tab then - self:switch_tab(tonumber(fields.current_tab)) - - return true -- stop handling propagation - end - end) -end - - -return WithTabs diff --git a/mods/lord/Core/base_classes/src/base_classes/HUD.lua b/mods/lord/Core/base_classes/src/base_classes/HUD.lua deleted file mode 100644 index a5cdad883..000000000 --- a/mods/lord/Core/base_classes/src/base_classes/HUD.lua +++ /dev/null @@ -1,100 +0,0 @@ -local setmetatable, ipairs, table_insert - = setmetatable, ipairs, table.insert - - ---- @class base_classes.HUD -local HUD = { - --- @private - --- @type number[] - IDs = {}, - --- @protected - --- @type Player - player = nil, --- @diagnostic disable-line: assign-type-mismatch - --- @protected - --- @type HudDefinition - common = {}, - --- @private - --- @generic GenericHUD: base_classes.HUD - --- @type table - hud = nil, --- @diagnostic disable-line: assign-type-mismatch -} - ---- @public ---- @generic GenericHUD: base_classes.HUD ---- @param child_class GenericHUD ---- @return GenericHUD -function HUD:extended(child_class) - child_class = child_class or {} - child_class.hud = {} - - return setmetatable(child_class, { __index = self }) -end - ---- @private ---- @generic GenericHUD: base_classes.HUD ---- @return GenericHUD -function HUD:new(player) - local class = self - - self = {} - self.player = player - - return setmetatable(self, { __index = class }) -end - ---- @param player Player ---- @generic GenericHUD: base_classes.HUD ---- @return GenericHUD -function HUD:for_player(player) - local player_name = player:get_player_name() - if not self.hud[player_name] then - self.hud[player_name] = self:new(player) - end - - return self.hud[player_name] -end - ---- @protected ---- @param ... any[] ---- @return HudDefinition[] -function HUD:get_definitions(...) - error('You should to override method `:get_definitions()`') -end - ---- You can pass any params here, as defined in your child HUD-class for `:get_definitions()` method. ---- @param ... any Any params that will be passed into `:get_definitions()` of child class. ---- @generic GenericHUD: base_classes.HUD ---- @return GenericHUD -function HUD:show(...) - for _, definition in ipairs(self:get_definitions(...)) do - table_insert(self.IDs, self.player:hud_add(table.merge(self.common, definition))) - end - - return self -end - ---- @generic GenericHUD: base_classes.HUD ---- @return GenericHUD -function HUD:hide() - for _, id in ipairs(self.IDs) do - self.player:hud_remove(id) - end - - self.hud[self.player:get_player_name()] = nil - - return self -end - ---- You should to call this method after you declare your HUD class. ---- @generic GenericHUD: base_classes.HUD ---- @return GenericHUD -function HUD:register() - minetest.register_on_leaveplayer(function(player, timed_out) - self.hud[player:get_player_name()] = nil - end) - - return self -end - - -return HUD diff --git a/mods/lord/Core/base_classes/src/base_classes/Meta.lua b/mods/lord/Core/base_classes/src/base_classes/Meta.lua deleted file mode 100644 index 774a0a416..000000000 --- a/mods/lord/Core/base_classes/src/base_classes/Meta.lua +++ /dev/null @@ -1,21 +0,0 @@ -local BaseMeta = require('base_classes.Meta.Base') -local FieldType = require('base_classes.Meta.FieldType') - - ---- Facade for accessing and extending Meta functionality. ---- @class base_classes.Meta -local Meta = { - --- @type base_classes.Meta.FieldType - FieldType = FieldType, - - --- @static - --- @generic GenericMeta: base_classes.Meta.Base - --- @param child_class GenericMeta - --- @return GenericMeta - extended = function(child_class) - return BaseMeta:extended(child_class) - end, -} - - -return Meta diff --git a/mods/lord/Core/base_classes/src/base_classes/Meta/Base.lua b/mods/lord/Core/base_classes/src/base_classes/Meta/Base.lua deleted file mode 100644 index 19b2625cd..000000000 --- a/mods/lord/Core/base_classes/src/base_classes/Meta/Base.lua +++ /dev/null @@ -1,160 +0,0 @@ -local setmetatable, table_walk, tonumber, table_is_empty, tostring_or_nil, type - = setmetatable, table.walk, tonumber, table.is_empty, string.or_nil, type - -local FieldType = require('base_classes.Meta.FieldType') - - ---- @class base_classes.Meta.Base -local BaseMeta = { - key_prefix = nil, - --- @protected - --- @type MetaDataRef - meta = nil, --- @diagnostic disable-line: assign-type-mismatch - --- @protected - --- @type table key - name of field, value - field-type (one of base_classes.Meta.FieldType::) - field_type = {}, -} - ---- @public ---- @generic GenericMeta: base_classes.Meta.Base ---- @param child_class GenericMeta ---- @return GenericMeta -function BaseMeta:extended(child_class) - assert(type(child_class) == 'table') - assert(child_class.field_type and type(child_class.field_type) == 'table') - table.walk(child_class.field_type, function(value, key) - assert(type(value) == 'string') - assertf(value:is_one_of(FieldType), 'Unknown type `%s` for field `%s`', value, key) - end) - - return setmetatable(child_class, { __index = self }) -end - ---- @public ---- @overload fun(meta:MetaDataRef) ---- @param meta MetaDataRef ---- @param key_prefix string|nil ---- @generic GenericMeta: base_classes.Meta.Base ---- @return GenericMeta -function BaseMeta:new(meta, key_prefix) - local class = self - - self = {} - self.meta = meta - self.key_prefix = key_prefix or class.key_prefix or '' - - return setmetatable(self, { - --- @generic GenericMeta: base_classes.Meta.Base - --- @param instance GenericMeta - __index = function(instance, field) - local field_value = class[field] - if field_value ~= nil then - return field_value - end - - return instance:get(field) - end, - __newindex = class.set, - }) -end - ---- @public ---- @param key string ---- @return boolean|nil -function BaseMeta:contains(key) - return self.meta:contains(key) -end - -BaseMeta.has = BaseMeta.contains - ---- @param field string ---- @return string -function BaseMeta:get_type(field) - local field_type = self.field_type[field] - if not field_type then - errorlf('Undefined field: `%s`', 4, field or 'nil') - end - - return field_type -end - ---- @protected ---- @param field_type string one of base_classes.Meta.FieldType:: ---- @param key string ---- @param default any ---- @return nil|any -function BaseMeta:get_typified(field_type, key, default) - key = self.key_prefix .. key - - if field_type == FieldType.BOOLEAN then - local value = self.meta:get(key) - if value == nil then return default end - - return minetest.is_yes(tonumber(value)) - elseif field_type == FieldType.INTEGER then - return tonumber(self.meta:get(key) or default) - elseif field_type == FieldType.STRING then - return self.meta:get(key) or default - elseif field_type == FieldType.TABLE then - return minetest.parse_json(self.meta:get(key) or 'null', default) - else - errorf('Something went wrong...') - end -end - ---- @public ---- @param field string ---- @param default any ---- @return any -function BaseMeta:get(field, default) - return self:get_typified(self:get_type(field), field, default) -end - ---- @protected ---- @param field_type string one of base_classes.Meta.FieldType:: ---- @param key string ---- @param value any ---- @generic GenericMeta: base_classes.Meta.Base ---- @return GenericMeta -function BaseMeta:set_typified(field_type, key, value) - key = self.key_prefix .. key - - if field_type == FieldType.BOOLEAN then - self.meta:set_int(key, minetest.is_yes(value) and 1 or 0) - elseif field_type == FieldType.INTEGER then - --- @diagnostic disable-next-line: param-type-not-match -- TODO: consider to use `tonumber(value) or 0` instead - self.meta:set_int(key, tonumber(value)) - elseif field_type == FieldType.STRING then - --- @diagnostic disable-next-line: param-type-not-match -- TODO: consider to use `tostring_or_nil(value) or ''` - self.meta:set_string(key, tostring_or_nil(value)) - elseif field_type == FieldType.TABLE then - if type(value) ~= 'table' then - errorlf('Type mismatch for meta-field `%s`: `table` expected, got `%s`', 3, key, type(value)) - end - --- @diagnostic disable-next-line: param-type-not-match -- we checked the type above and that not table.is_empty - self.meta:set_string(key, table_is_empty(value) and '[]' or minetest.write_json(value)) - else - errorf('Something went wrong...') - end - - return self -end - ---- @param key_or_pairs string|table ---- @param value any ---- @generic GenericMeta: base_classes.Meta.Base ---- @return GenericMeta -function BaseMeta:set(key_or_pairs, value) - if type(key_or_pairs) == 'table' then - table_walk(key_or_pairs, function(val, key) - self:set_typified(self:get_type(key), key, val) - end) - else - self:set_typified(self:get_type(key_or_pairs), key_or_pairs, value) - end - - return self -end - - -return BaseMeta diff --git a/mods/lord/Core/base_classes/src/base_classes/Meta/FieldType.lua b/mods/lord/Core/base_classes/src/base_classes/Meta/FieldType.lua deleted file mode 100644 index dbdcee34e..000000000 --- a/mods/lord/Core/base_classes/src/base_classes/Meta/FieldType.lua +++ /dev/null @@ -1,11 +0,0 @@ - ---- @class base_classes.Meta.FieldType -local FieldType = { - BOOLEAN = 'boolean', - INTEGER = 'integer', - STRING = 'string', - TABLE = 'table', -} - - -return FieldType diff --git a/mods/lord/Core/base_classes/src/base_classes/ObjectState.lua b/mods/lord/Core/base_classes/src/base_classes/ObjectState.lua deleted file mode 100644 index 93d19b6c3..000000000 --- a/mods/lord/Core/base_classes/src/base_classes/ObjectState.lua +++ /dev/null @@ -1,54 +0,0 @@ -local Storage = require("base_classes.ObjectState.Storage") - - ---- @class base_classes.ObjectState -local ObjectState = { - --- @private - --- @type table - state_table = {}, -} - ---- @param object table Table of all state entries ---- @return base_classes.ObjectState -function ObjectState:new(object) - local class = self - - self = setmetatable({}, { __index = class }) - self:load(object) - - return self -end - ---- @param name string ---- @return any -function ObjectState:get_entry(name) - return self.state_table[name] -end - ---- @param name string ---- @param value any ---- @return base_classes.ObjectState -function ObjectState:set_entry(name, value) - self.state_table[name] = value - - return self -end ---- @param name string ---- @return base_classes.ObjectState -function ObjectState:del_entry(name) - return self:set_entry(name, nil) -end - ---- @param object ObjectRef ---- @return boolean -function ObjectState:save(object) - return Storage.set_state_of(object, self.state_table) -end - ---- @param object Player|Entity -function ObjectState:load(object) - self.state_table = Storage.get_state_of(object) -end - - -return ObjectState diff --git a/mods/lord/Core/base_classes/src/base_classes/ObjectState/Storage.lua b/mods/lord/Core/base_classes/src/base_classes/ObjectState/Storage.lua deleted file mode 100644 index 42955e272..000000000 --- a/mods/lord/Core/base_classes/src/base_classes/ObjectState/Storage.lua +++ /dev/null @@ -1,46 +0,0 @@ ---- @static ---- @class base_classes.ObjectState.Storage -local Storage = {} - ---- Obtains `ObjectState` from meta or object properties depending on whether `object` is a player or not ---- @param object Player|Entity ---- @return table -function Storage.get_state_of(object) - if not object then - return {} - end - - return object:is_player() - and minetest.deserialize(object:get_meta():get("object_state") or "return {}") - or object:get_luaentity().object_state or {} --- @diagnostic disable-line: undefined-field -end - ---- Obtains `ObjectState` from meta or object properties depending on whether `object` is a player or not ---- ---- @param object Player|Entity a player or an entity to apply `ObjectState` to ---- @param state_table table ---- ---- @return boolean success or not -function Storage.set_state_of(object, state_table) - if not object then - return false - end - - local state_string = minetest.serialize(state_table) - - if object:is_player() then - local meta = object:get_meta() - meta:set_string("object_state", state_string) - else - local entity = object:get_luaentity() - if not entity then - return false - end - entity.object_state = state_table --- @diagnostic disable-line: inject-field TODO?: @class with `object_state` field - end - - return true -end - - -return Storage diff --git a/mods/lord/Core/builtin_ext/init.lua b/mods/lord/Core/builtin_ext/init.lua deleted file mode 100644 index 81ef09f78..000000000 --- a/mods/lord/Core/builtin_ext/init.lua +++ /dev/null @@ -1,21 +0,0 @@ -local DS = os.DIRECTORY_SEPARATOR -local mod_path = minetest.get_modpath(minetest.get_current_modname()) -local old_require = require -require = function(name) return dofile(mod_path .. DS .. 'src' .. DS .. name:gsub('%.', DS) .. '.lua') end - - -require('map.VoxelArea') -require('map.manipulations') -require('map.dungeons_gen') -require('FormSpec') -require('globalstep') -require('mod') -require('node') -require('stack') -require('craft') -require('Texture') -require('Tile') -require('vector') - - -require = old_require diff --git a/mods/lord/Core/builtin_ext/license.md b/mods/lord/Core/builtin_ext/license.md deleted file mode 100644 index 02dd26a45..000000000 --- a/mods/lord/Core/builtin_ext/license.md +++ /dev/null @@ -1,7 +0,0 @@ -Copyright (c) 2022-present [Александр Чибрикин](https://github.com/alek13) & [Lord Team](https://github.com/lord-server/lord?tab=readme-ov-file#contributors--%D1%83%D1%87%D0%B0%D1%81%D1%82%D0%BD%D0%B8%D0%BA%D0%B8) - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/mods/lord/Core/builtin_ext/mod.conf b/mods/lord/Core/builtin_ext/mod.conf deleted file mode 100644 index d6ea20863..000000000 --- a/mods/lord/Core/builtin_ext/mod.conf +++ /dev/null @@ -1,3 +0,0 @@ -name = builtin_ext -depends = dev_helpers -description = Extension of `minetest` API functionality. diff --git a/mods/lord/Core/builtin_ext/src/FormSpec.lua b/mods/lord/Core/builtin_ext/src/FormSpec.lua deleted file mode 100644 index f7777eb01..000000000 --- a/mods/lord/Core/builtin_ext/src/FormSpec.lua +++ /dev/null @@ -1,990 +0,0 @@ -local e = minetest.formspec_escape - - ---- @class minetest.FormSpec -local FormSpec = {} - -minetest.formspec = FormSpec - - ---- @param bool boolean|string ---- @return string -local function bool_str(bool) - return (bool==true and 'true' or (bool==false and 'false' or tostring(bool))) -end ---- @param param any ---- @param separator string? [optional] default: `;` ---- @return string -local function optional(param, separator) - separator = separator or ';' - - return param and (separator.. param) or '' -end ---- @param list table ---- @param separator string? [optional] default: `;` ---- @return string -local function key_value_list(list, separator) - separator = separator or ';' - - local list_strings = {} - for key, value in pairs(list) do - table.insert(list_strings, key..'='..value) - end - - return table.concat(list_strings, separator) -end - - -FormSpec.escape = e ---- You can use this as `name` of some fields to make them read-only -FormSpec.read_only = '' - - ---- ---- * Set the formspec version to a certain number. If not specified, ---- version 1 is assumed. ---- * Must be specified before `size` element. ---- * Clients older than this version can neither show newer elements nor display ---- elements with new arguments correctly. ---- * Available since feature `formspec_version_element`. ---- * See also: [Version History] ---- @param version number -function FormSpec.formspec_version(version) - return 'formspec_version['..version..']' -end - ---- ---- * Define the size of the menu in inventory slots ---- * `fixed_size`: `true`/`false` (optional) ---- * deprecated: `invsize[,;]` ---- ---- @return string -function FormSpec.size(W,H,fixed_size) - return 'size['..W..','..H..optional(fixed_size,',')..']' -end - ---- ---- * Must be used after `size` element. ---- * Defines the position on the game window of the formspec's `anchor` point. ---- * For X and Y, 0.0 and 1.0 represent opposite edges of the game window, ---- for example: ---- * [0.0, 0.0] sets the position to the top left corner of the game window. ---- * [1.0, 1.0] sets the position to the bottom right of the game window. ---- * Defaults to the center of the game window [0.5, 0.5]. ---- ---- @return string -function FormSpec.position(X,Y) - return 'position['..X..','..Y..']' -end - ---- ---- * Must be used after both `size` and `position` (if present) elements. ---- * Defines the location of the anchor point within the formspec. ---- * For X and Y, 0.0 and 1.0 represent opposite edges of the formspec, ---- for example: ---- * [0.0, 1.0] sets the anchor to the bottom left corner of the formspec. ---- * [1.0, 0.0] sets the anchor to the top right of the formspec. ---- * Defaults to the center of the formspec [0.5, 0.5]. ---- ---- * `position` and `anchor` elements need suitable values to avoid a formspec ---- extending off the game window due to particular game window sizes. ---- ---- @return string -function FormSpec.anchor(X,Y) - return 'anchor['..X..','..Y..']' -end - ---- ---- * Must be used after the `size`, `position`, and `anchor` elements (if present). ---- * Defines how much space is padded around the formspec if the formspec tries to ---- increase past the size of the screen and coordinates have to be shrunk. ---- * For X and Y, 0.0 represents no padding (the formspec can touch the edge of the ---- screen), and 0.5 represents half the screen (which forces the coordinate size ---- to 0). If negative, the formspec can extend off the edge of the screen. ---- * Defaults to [0.05, 0.05]. ---- ---- @return string -function FormSpec.padding(X,Y) - return 'padding['..X..','..Y..']' -end - ---- ---- * Must be used after the `size`, `position`, `anchor`, and `padding` elements ---- (if present). ---- * Disables player:set_formspec_prepend() from applying to this formspec. ---- ---- @return string -function FormSpec.no_prepend() - return 'no_prepend[]' -end - ---- ---- * INFORMATION: Enable it automatically using `formspec_version` version 2 or newer. ---- * When set to true, all following formspec elements will use the new coordinate system. ---- * If used immediately after `size`, `position`, `anchor`, and `no_prepend` elements ---- (if present), the form size will use the new coordinate system. ---- * **Note**: Formspec prepends are not affected by the coordinates in the main form. ---- They must enable it explicitly. ---- * For information on converting forms to the new coordinate system, see `Migrating ---- to Real Coordinates`. ---- ---- @return string -function FormSpec.real_coordinates(bool) - return 'real_coordinates['..bool_str(bool)..']' -end - ---- ---- * Start of a container block, moves all physical elements in the container by ---- (X, Y). ---- * Must have matching `container_end` ---- * Containers can be nested, in which case the offsets are added ---- (child containers are relative to parent containers) ---- ---- ### `container_end[]` ---- ---- * End of a container, following elements are no longer relative to this ---- container. ---- ---- @return string -function FormSpec.container(X,Y) - return 'container['..X..','..Y..']' -end - ---- ---- * End of a container, following elements are no longer relative to this ---- container. ---- ---- @return string -function FormSpec.container_end() - return 'container_end[]' -end - ---- ---- * Start of a scroll_container block. All contained elements will ... ---- * take the scroll_container coordinate as position origin, ---- * be additionally moved by the current value of the scrollbar with the name ---- `scrollbar name` times `scroll factor` along the orientation `orientation` and ---- * be clipped to the rectangle defined by `X`, `Y`, `W` and `H`. ---- * `orientation`: possible values are `vertical` and `horizontal`. ---- * `scroll factor`: optional, defaults to `0.1`. ---- * Nesting is possible. ---- * Some elements might work a little different if they are in a scroll_container. ---- * Note: If you want the scroll_container to actually work, you also need to add a ---- scrollbar element with the specified name. Furthermore, it is highly recommended ---- to use a scrollbaroptions element on this scrollbar. ---- ---- @return string -function FormSpec.scroll_container(X,Y,W,H,scrollbar_name,orientation,scroll_factor) - return string.format( - 'scroll_container[%s,%s;%s,%s;%s;%s;%s]', - X,Y,W,H,scrollbar_name,orientation,scroll_factor - ) -end - ---- ---- * End of a scroll_container, following elements are no longer bound to this container. ---- ---- @return string -function FormSpec.scroll_container_end() - return 'scroll_container_end[]' -end - - ---- ---- * Show an inventory list if it has been sent to the client. ---- * If the inventory list changes (eg. it didn't exist before, it's resized, or its items ---- are moved) while the formspec is open, the formspec element may (but is not guaranteed ---- to) adapt to the new inventory list. ---- * Item slots are drawn in a grid from left to right, then up to down, ordered ---- according to the slot index. ---- * `W` and `H` are in inventory slots, not in coordinates. ---- * `starting item index` (Optional): The index of the first (upper-left) item to draw. ---- Indices start at `0`. Default is `0`. ---- * The number of shown slots is the minimum of `W*H` and the inventory list's size minus ---- `starting item index`. ---- * **Note**: With the new coordinate system, the spacing between inventory ---- slots is one-fourth the size of an inventory slot by default. Also see ---- [Styling Formspecs] for changing the size of slots and spacing. ---- ---- **Inventory locations** ---- * "context": Selected node metadata (deprecated: "current_name") ---- * "current_player": Player to whom the menu is shown ---- * "player:\": Any player ---- * "nodemeta:\,\,\": Any node metadata ---- * "detached:\": A detached inventory ---- ---- @return string -function FormSpec.list(inventory_location,list_name,X,Y,W,H,starting_item_index) - return string.format( - 'list[%s;%s;%s,%s;%s,%s%s]', - inventory_location,list_name,X,Y,W,H,optional(starting_item_index) - ) -end - ---- ---- * Appends to an internal ring of inventory lists. ---- * Shift-clicking on items in one element of the ring ---- will send them to the next inventory list inside the ring ---- * The first occurrence of an element inside the ring will ---- determine the inventory where items will be sent to ---- ---- * `listring[]` - Shorthand for doing `listring[;]` ---- for the last two inventory lists added by list[...] ---- ---- @overload fun():string ---- @return string -function FormSpec.listring(inventory_location,list_name) - return not inventory_location - and 'listring[]' - or 'listring['..inventory_location..';'..list_name..']' -end - ---- ---- * Sets background color of slots as `ColorString` ---- * Sets background color of slots on mouse hovering ---- * (optional) Sets color of slots border ---- * (optional) Sets default background color of tooltips ---- * (optional) Sets default font color of tooltips ---- ---- @overload fun(slot_bg_normal,slot_bg_hover) ---- @overload fun(slot_bg_normal,slot_bg_hover,slot_border) ---- @overload fun(slot_bg_normal,slot_bg_hover,slot_border,tooltip_bgcolor) ---- @return string -function FormSpec.listcolors(slot_bg_normal,slot_bg_hover,slot_border,tooltip_bgcolor,tooltip_fontcolor) - return 'listcolors['.. - slot_bg_normal..';'..slot_bg_hover.. - optional(slot_border)..optional(tooltip_bgcolor)..optional(tooltip_fontcolor).. - ']' -end - ---- ---- * Adds tooltip for an element ---- * `bgcolor` tooltip background color as `ColorString` (optional) ---- * `fontcolor` tooltip font color as `ColorString` (optional) ---- ---- @return string -function FormSpec.tooltip(gui_element_name,tooltip_text,bgcolor,fontcolor) - return 'tooltip['..gui_element_name..';'..e(tooltip_text)..optional(bgcolor)..optional(fontcolor)..']' -end - ---- ---- * Adds tooltip for an area. Other tooltips will take priority when present. ---- * `bgcolor` tooltip background color as `ColorString` (optional) ---- * `fontcolor` tooltip font color as `ColorString` (optional) ---- ---- @return string -function FormSpec.tooltip2(X,Y,W,H,tooltip_text,bgcolor,fontcolor) - return string.format( - 'tooltip[%s,%s;%s,%s;%s%s%s]', - X,Y,W,H,e(tooltip_text),optional(bgcolor),optional(fontcolor) - ) -end - ---- ---- * Show an image. ---- * `middle` (optional): Makes the image render in 9-sliced mode and defines the middle rect. ---- * Requires formspec version >= 6. ---- * See `background9[]` documentation for more information. ---- ---- @return string -function FormSpec.image(X,Y,W,H,texture_name,middle) - return string.format( - 'image[%s,%s;%s,%s;%s%s]', - X,Y,W,H,texture_name,optional(middle) - ) -end - ---- ---- * Show an animated image. The image is drawn like a "vertical_frames" tile ---- animation (See [Tile animation definition]), but uses a frame count/duration for simplicity ---- * `name`: Element name to send when an event occurs. The event value is the index of the current frame. ---- * `texture name`: The image to use. ---- * `frame count`: The number of frames animating the image. ---- * `frame duration`: Milliseconds between each frame. `0` means the frames don't advance. ---- * `frame start` (optional): The index of the frame to start on. Default `1`. ---- * `middle` (optional): Makes the image render in 9-sliced mode and defines the middle rect. ---- * Requires formspec version >= 6. ---- * See `background9[]` documentation for more information. ---- ---- @return string -function FormSpec.animated_image(X,Y,W,H,name,texture_name,frame_count,frame_duration,frame_start,middle) - return string.format( - 'animated_image[%s,%s;%s,%s;%s;%s;%s;%s%s%s]', - X,Y,W,H,name,texture_name,frame_count,frame_duration,optional(frame_start),optional(middle) - ) -end - ---- ---- * Show a mesh model. ---- * `name`: Element name that can be used for styling ---- * `mesh`: The mesh model to use. ---- * `textures`: The mesh textures to use according to the mesh materials. ---- Texture names must be separated by commas. ---- * `rotation` (Optional): Initial rotation of the camera, format `x,y`. ---- The axes are euler angles in degrees. ---- * `continuous` (Optional): Whether the rotation is continuous. Default `false`. ---- * `mouse control` (Optional): Whether the model can be controlled with the mouse. Default `true`. ---- * `frame loop range` (Optional): Range of the animation frames. ---- * Defaults to the full range of all available frames. ---- * Syntax: `,` ---- * `animation speed` (Optional): Sets the animation speed. Default 0 FPS. ---- ---- @overload fun(X,Y,W,H,name,mesh,textures):string ---- @return string -function FormSpec.model(X,Y,W,H,name,mesh,textures,rotation,continuous,mouse_control,frame_loop_range,animation_speed) - return 'model['.. - X..','..Y..';' ..W..','..H..';'.. - name..';'..mesh..';'..textures.. - optional(rotation).. - optional(continuous).. - optional(mouse_control).. - optional(frame_loop_range).. - optional(animation_speed).. - ']' -end - ---- ---- * Show an inventory image of registered item/node ---- ---- @return string -function FormSpec.item_image(X,Y,W,H,item_name) - return 'item_image['..X..','..Y..';' ..W..','..H..';'..item_name..']' -end - ---- ---- * Sets background color of formspec. ---- * `bgcolor` and `fbgcolor` (optional) are `ColorString`s, they define the color ---- of the non-fullscreen and the fullscreen background. ---- * `fullscreen` (optional) can be one of the following: ---- * `false`: Only the non-fullscreen background color is drawn. (default) ---- * `true`: Only the fullscreen background color is drawn. ---- * `both`: The non-fullscreen and the fullscreen background color are drawn. ---- * `neither`: No background color is drawn. ---- * Note: Leave a parameter empty to not modify the value. ---- * Note: `fbgcolor`, leaving parameters empty and values for `fullscreen` that ---- are not bools are only available since formspec version 3. ---- ---- @overload fun(bgcolor:string):string ---- @overload fun(bgcolor:string,fullscreen:string):string ---- @param bgcolor string is `ColorString` ---- @param fullscreen string one of `"true"`|`"false"`|`"both"`|`"neither"` ---- @param fbgcolor string is `ColorString` ---- @return string -function FormSpec.bgcolor(bgcolor,fullscreen,fbgcolor) - return 'bgcolor['..bgcolor..optional(fullscreen)..optional(fbgcolor)..']' -end - ---- ---- * Example for formspec 8x4 in 16x resolution: ---- image shall be sized 8 times 16px times 4 times 16px ---- * `auto_clip`: (optional). If is `true`, the background is clipped to the formspec size ---- (`x` and `y` are used as offset values, `w` and `h` are ignored) ---- @overload fun(X,Y,W,H,texture_name):string ---- @return string -function FormSpec.background(X,Y,W,H,texture_name,auto_clip) - return 'background['.. - X..','..Y..';' ..W..','..H..';'.. - texture_name.. - optional(auto_clip).. - ']' -end - ---- ---- * 9-sliced background. See https://en.wikipedia.org/wiki/9-slice_scaling ---- * Middle is a rect which defines the middle of the 9-slice. ---- * `x` - The middle will be x pixels from all sides. ---- * `x,y` - The middle will be x pixels from the horizontal and y from the vertical. ---- * `x,y,x2,y2` - The middle will start at x,y, and end at x2, y2. Negative x2 and y2 values ---- will be added to the width and height of the texture, allowing it to be used as the ---- distance from the far end. ---- * All numbers in middle are integers. ---- * If `auto_clip` is `true`, the background is clipped to the formspec size ---- (`x` and `y` are used as offset values, `w` and `h` are ignored) ---- * Available since formspec version 2 ---- ---- @return string -function FormSpec.background9(X,Y,W,H,texture_name,auto_clip,middle) - return 'background9['..X..','..Y..';' ..W..','..H..';'..texture_name..';'..auto_clip..';'..middle..']' -end - ---- ---- * Textual password style field; will be sent to server when a button is clicked ---- * When enter is pressed in field, `fields.key_enter_field` will be sent with the ---- name of this field. ---- * With the old coordinate system, fields are a set height, but will be vertically ---- centered on `H`. With the new coordinate system, `H` will modify the height. ---- * `name` is the name of the field as returned in fields to `on_receive_fields` ---- * `label`, if not blank, will be text printed on the top left above the field ---- * See `field_close_on_enter` to stop enter closing the formspec ---- ---- @return string -function FormSpec.pwdfield(X,Y,W,H,name,label) - return 'pwdfield['..X..','..Y..';' ..W..','..H..';'..name..optional(e(label))..']' -end - ---- ---- * Textual field; will be sent to server when a button is clicked ---- * When enter is pressed in field, `fields.key_enter_field` will be sent with ---- the name of this field. ---- * With the old coordinate system, fields are a set height, but will be vertically ---- centered on `H`. With the new coordinate system, `H` will modify the height. ---- * `name` is the name of the field as returned in fields to `on_receive_fields` ---- * `label`, if not blank, will be text printed on the top left above the field ---- * `default` is the default value of the field ---- * `default` may contain variable references such as `${text}` which ---- will fill the value from the metadata value `text` ---- * **Note**: no extra text or more than a single variable is supported ATM. ---- * See `field_close_on_enter` to stop enter closing the formspec ---- ---- @return string -function FormSpec.field(X,Y,W,H,name,label,default) - return 'field['..X..','..Y..';' ..W..','..H..';'..name..optional(e(label))..optional(e(default))..']' -end - ---- ---- * As above (`.field()`), but without position/size units ---- * When enter is pressed in field, `fields.key_enter_field` will be sent with ---- the name of this field. ---- * Special field for creating simple forms, such as sign text input ---- * Must be used without a `size[]` element ---- * A "Proceed" button will be added automatically ---- * See `field_close_on_enter` to stop enter closing the formspec ---- ---- @return string -function FormSpec.field2(name,label,default) - return 'field['..name..optional(e(label))..optional(e(default))..']' -end - ---- ---- * Experimental, may be subject to change or removal at any time. ---- * Only affects Android clients. ---- * `` is the name of the field. ---- * If `` is true, pressing the "Done" button in the Android ---- text input dialog will simulate an Enter keypress. ---- * Defaults to false when not specified (i.e. no tag for a field). ---- ---- @return string -function FormSpec.field_enter_after_edit(name,enter_after_edit) - return 'field_enter_after_edit['..name..optional(enter_after_edit)..']' -end - ---- ---- * `` is the name of the field. ---- * If `` is false, pressing Enter in the field will ---- submit the form but not close it. ---- * Defaults to true when not specified (i.e. no tag for a field). ---- ---- @return string -function FormSpec.field_close_on_enter(name,close_on_enter) - return 'field_close_on_enter['..name..optional(bool_str(close_on_enter))..']' -end - ---- ---- * Same as fields above, but with multi-line input ---- * If the text overflows, a vertical scrollbar is added. ---- * If the name is empty, the textarea is read-only and ---- the background is not shown, which corresponds to a multi-line label. ---- ---- @return string -function FormSpec.textarea(X,Y,W,H,name,label,default) - return 'textarea['..X..','..Y..';' ..W..','..H..';'..name..optional(e(label))..optional(e(default))..']' -end - ---- ---- * The label formspec element displays the text set in `label` ---- at the specified position. ---- * **Note**: If the new coordinate system is enabled, labels are ---- positioned from the center of the text, not the top. ---- * The text is displayed directly without automatic line breaking, ---- so label should not be used for big text chunks. Newlines can be ---- used to make labels multiline. ---- * **Note**: With the new coordinate system, newlines are spaced with ---- half a coordinate. With the old system, newlines are spaced 2/5 of ---- an inventory slot. ---- ---- @return string -function FormSpec.label(X,Y,label) - return 'label['..X..','..Y..';'..e(label)..']' -end - ---- * Displays a static formatted text with hyperlinks. ---- * **Note**: This element is currently unstable and subject to change. ---- * `x`, `y`, `w` and `h` work as per field ---- * `name` is the name of the field as returned in fields to `on_receive_fields` in case of action in text. ---- * `text` is the formatted text using `Markup Language` described below. ---- ---- @return string -function FormSpec.hypertext(X,Y,W,H,name,text) - return 'hypertext['..X..','..Y..';' ..W..','..H..';'..name..';'..e(text)..']' -end - ---- * Textual label drawn vertically ---- * `label` is the text on the label ---- * **Note**: If the new coordinate system is enabled, vertlabels are ---- positioned from the center of the text, not the left. ---- ---- @return string -function FormSpec.vertlabel(X,Y,label) - return 'vertlabel['..X..','..Y..';'..e(label)..']' -end - ---- ---- * Clickable button. When clicked, fields will be sent. ---- * With the old coordinate system, buttons are a set height, but will be vertically ---- centered on `H`. With the new coordinate system, `H` will modify the height. ---- * `label` is the text on the button ---- ---- @return string -function FormSpec.button(X,Y,W,H,name,label) - return 'button['..X..','..Y..';' ..W..','..H..';'..name..optional(e(label))..']' -end - ---- ---- * Clickable button. When clicked, fields will be sent and the user will be given the ---- option to open the URL in a browser. ---- * With the old coordinate system, buttons are a set height, but will be vertically ---- centered on `H`. With the new coordinate system, `H` will modify the height. ---- * To make this into an `image_button`, you can use formspec styling. ---- * `label` is the text on the button. ---- * `url` must be a valid web URL, starting with `http://` or `https://`. ---- ---- @return string -function FormSpec.button_url(X,Y,W,H,name,label,url) - return 'button_url['..X..','..Y..';' ..W..','..H..';'..name..';'..e(label)..';'..e(url)..']' -end - ---- ---- * `texture name` is the filename of an image ---- * **Note**: Height is supported on both the old and new coordinate systems ---- for image_buttons. ---- * `noclip=true` means the image button doesn't need to be within specified formsize. ---- * `drawborder`: draw button border or not ---- * `pressed texture name` is the filename of an image on pressed state ---- ---- @overload fun(X,Y,W,H,texture_name,name,label):string ---- @return string -function FormSpec.image_button(X,Y,W,H,texture_name,name,label,noclip,drawborder,pressed_texture_name) - return 'image_button['.. - X..','..Y..';' ..W..','..H..';'.. - texture_name..';'..name..';'..optional(e(label)).. - optional(bool_str(noclip))..optional(bool_str(drawborder))..optional(pressed_texture_name).. - ']' -end - ---- ---- * `item name` is the registered name of an item/node ---- * `name` is non-optional and must be unique, or else tooltips are broken. ---- * The item description will be used as the tooltip. This can be overridden with ---- a tooltip element. ---- ---- @return string -function FormSpec.item_image_button(X,Y,W,H,item_name,name,label) - return 'item_image_button['..X..','..Y..';' ..W..','..H..';'..item_name..';'..name..';'..e(label)..']' -end - ---- ---- * When clicked, fields will be sent and the form will quit. ---- * Same as `button` in all other respects. ---- ---- @return string -function FormSpec.button_exit(X,Y,W,H,name,label) - return 'button_exit['..X..','..Y..';' ..W..','..H..';'..name..';'..e(label)..']' -end - ---- ---- * When clicked, fields will be sent and the form will quit. ---- * Same as `button_url` in all other respects. ---- ---- @return string -function FormSpec.button_url_exit(X,Y,W,H,name,label,url) - return 'button_url_exit['..X..','..Y..';' ..W..','..H..';'..name..';'..e(label)..';'..e(url)..']' -end - ---- ---- * When clicked, fields will be sent and the form will quit. ---- * Same as `image_button` in all other respects. ---- ---- @return string -function FormSpec.image_button_exit(X,Y,W,H,texture_name,name,label) - return 'image_button_exit['..X..','..Y..';' ..W..','..H..';'..texture_name..';'..name..optional(e(label))..']' -end - ---- ---- * Scrollable item list showing arbitrary text elements ---- * `name` fieldname sent to server on double-click value is current selected ---- element. ---- * `listelements` can be prepended by #color in hexadecimal format RRGGBB ---- (only). ---- * if you want a listelement to start with "#" write "##". ---- * Index to be selected within textlist ---- * `true`/`false`: draw transparent background ---- * See also `minetest.explode_textlist_event` ---- (main menu: `core.explode_textlist_event`). ---- ---- @param list_elements table ---- @param selected_idx number ---- @param transparent boolean ---- @return string -function FormSpec.textlist(X,Y,W,H,name,list_elements,selected_idx,transparent) - return 'textlist['.. - X..','..Y..';' ..W..','..H..';'.. - name..';'.. - table.concat(list_elements,',').. - optional(selected_idx).. - optional(transparent).. - ']' -end - ---- ---- * Show a tab**header** at specific position (ignores formsize) ---- * `X` and `Y`: position of the tabheader ---- * *Note*: Width and height are automatically chosen with this syntax ---- * `name` fieldname data is transferred to Lua ---- * `caption 1`...: name shown on top of tab ---- * `current_tab`: index of selected tab 1... ---- * `transparent` (optional): if true, tabs are semi-transparent ---- * `draw_border` (optional): if true, draw a thin line at tab base ---- ---- @return string -function FormSpec.tabheader(X,Y,name,captions_array,current_tab,transparent,draw_border) - return 'tabheader['.. - X..','..Y..';'.. - name..';'.. - table.concat(captions_array,',')..';'..current_tab.. - optional(transparent).. - optional(draw_border).. - ']' -end - ---- ---- * Show a tab**header** at specific position (ignores formsize) ---- * **Important note**: This syntax for tabheaders can only be used with the ---- new coordinate system. ---- * `X` and `Y`: position of the tabheader ---- * `H`: height of the tabheader. Width is automatically determined with this syntax. ---- * `name` fieldname data is transferred to Lua ---- * `caption 1`...: name shown on top of tab ---- * `current_tab`: index of selected tab 1... ---- * `transparent` (optional): show transparent ---- * `draw_border` (optional): draw border ---- ---- @return string -function FormSpec.tabheader_H(X,Y,H,name,captions_array,current_tab,transparent,draw_border) - return 'tabheader['.. - X..','..Y..';'.. H..';'.. - name..';'.. - table.concat(captions_array,',')..';'..current_tab.. - optional(transparent).. - optional(draw_border).. - ']' -end - ---- ---- * Show a tab**header** at specific position (ignores formsize) ---- * **Important note**: This syntax for tabheaders can only be used with the ---- new coordinate system. ---- * `X` and `Y`: position of the tabheader ---- * `W` and `H`: width and height of the tabheader ---- * `name` fieldname data is transferred to Lua ---- * `caption 1`...: name shown on top of tab ---- * `current_tab`: index of selected tab 1... ---- * `transparent` (optional): show transparent ---- * `draw_border` (optional): draw border ---- ---- @return string -function FormSpec.tabheader_WH(X,Y,W,H,name,captions_array,current_tab,transparent,draw_border) - return 'tabheader['.. - X..','..Y..';' ..W..','..H..';'.. - name..';'.. - table.concat(captions_array,',')..';'..current_tab.. - optional(transparent).. - optional(draw_border).. - ']' -end - ---- ---- * Simple colored box ---- * `color` is color specified as a `ColorString`. ---- If the alpha component is left blank, the box will be semitransparent. ---- If the color is not specified, the box will use the options specified by ---- its style. If the color is specified, all styling options will be ignored. ---- ---- @return string -function FormSpec.box(X,Y,W,H,color) - return 'box['..X..','..Y..';' ..W..','..H.. optional(color) ..']' -end - ---- ---- * Show a dropdown field ---- * **Important note**: There are two different operation modes: ---- 1. handle directly on change (only changed dropdown is submitted) ---- 2. read the value on pressing a button (all dropdown values are available) ---- * `X` and `Y`: position of the dropdown ---- * `W`: width of the dropdown. Height is automatically chosen with this syntax. ---- * Fieldname data is transferred to Lua ---- * Items to be shown in dropdown ---- * Index of currently selected dropdown item ---- * `index event` (optional, allowed parameter since formspec version 4): Specifies the ---- event field value for selected items. ---- * `true`: Selected item index ---- * `false` (default): Selected item value ---- ---- @return string -function FormSpec.dropdown_W(X,Y,W,name,items_array,selected_idx,index_event) - return 'dropdown['.. - X..','..Y..';' ..W..';'.. - name..';'.. - table.concat(items_array,',').. - optional(selected_idx).. - optional(index_event).. - ']' -end - ---- ---- * Show a dropdown field ---- * **Important note**: This syntax for dropdowns can only be used with the ---- new coordinate system. ---- * **Important note**: There are two different operation modes: ---- 1. handle directly on change (only changed dropdown is submitted) ---- 2. read the value on pressing a button (all dropdown values are available) ---- * `X` and `Y`: position of the dropdown ---- * `W` and `H`: width and height of the dropdown ---- * Fieldname data is transferred to Lua ---- * Items to be shown in dropdown ---- * Index of currently selected dropdown item ---- * `index event` (optional, allowed parameter since formspec version 4): Specifies the ---- event field value for selected items. ---- * `true`: Selected item index ---- * `false` (default): Selected item value ---- ---- @return string -function FormSpec.dropdown_WH(X,Y,W,H,name,items_array,selected_idx,index_event) - return 'dropdown['.. - X..','..Y..';' ..W..','..H..';'.. - name..';'.. - table.concat(items_array,',').. - optional(selected_idx).. - optional(index_event).. - ']' -end - ---- ---- * Show a checkbox ---- * `name` fieldname data is transferred to Lua ---- * `label` to be shown left of checkbox ---- * `selected` (optional): `true`/`false` ---- * **Note**: If the new coordinate system is enabled, checkboxes are ---- positioned from the center of the checkbox, not the top. ---- ---- @param selected boolean ---- @return string -function FormSpec.checkbox(X,Y,name,label,selected) - return 'checkbox['..X..','..Y..';' .. name..optional(e(label))..optional(bool_str(selected))..']' -end - ---- ---- * Show a scrollbar using options defined by the previous `scrollbaroptions[]` ---- * There are two ways to use it: ---- 1. handle the changed event (only changed scrollbar is available) ---- 2. read the value on pressing a button (all scrollbars are available) ---- * `orientation`: `vertical`/`horizontal`. Default horizontal. ---- * Fieldname data is transferred to Lua ---- * Value of this trackbar is set to (`0`-`1000`) by default ---- * See also `minetest.explode_scrollbar_event` ---- (main menu: `core.explode_scrollbar_event`). ---- ---- @return string -function FormSpec.scrollbar(X,Y,W,H,orientation,name,value) - return 'scrollbar['..X..','..Y..';' ..W..','..H..';'..orientation..';'..name..optional(value)..']' -end - ---- * Sets options for all following `scrollbar[]` elements ---- * `min=` ---- * Sets scrollbar minimum value, defaults to `0`. ---- * `max=` ---- * Sets scrollbar maximum value, defaults to `1000`. ---- If the max is equal to the min, the scrollbar will be disabled. ---- * `smallstep=` ---- * Sets scrollbar step value when the arrows are clicked or the mouse wheel is ---- scrolled. ---- * If this is set to a negative number, the value will be reset to `10`. ---- * `largestep=` ---- * Sets scrollbar step value used by page up and page down. ---- * If this is set to a negative number, the value will be reset to `100`. ---- * `thumbsize=` ---- * Sets size of the thumb on the scrollbar. Size is calculated in the number of ---- units the thumb spans out of the range of the scrollbar values. ---- * Example: If a scrollbar has a `min` of 1 and a `max` of 100, a thumbsize of 10 ---- would span a tenth of the scrollbar space. ---- * If this is set to zero or less, the value will be reset to `1`. ---- * `arrows=` ---- * Whether to show the arrow buttons on the scrollbar. `default` hides the arrows ---- when the scrollbar gets too small, but shows them otherwise. ---- ---- @return string -function FormSpec.scrollbaroptions(options) - return 'scrollbaroptions['..key_value_list(options)..']' -end - ---- ---- * Show scrollable table using options defined by the previous `tableoptions[]` ---- * Displays cells as defined by the previous `tablecolumns[]` ---- * `name`: fieldname sent to server on row select or double-click ---- * `cell 1`...`cell n`: cell contents given in row-major order ---- * `selected idx`: index of row to be selected within table (first row = `1`) ---- * See also `minetest.explode_table_event` ---- (main menu: `core.explode_table_event`). ---- ---- @return string -function FormSpec.table(X,Y,W,H,name,cells_array,selected_idx) - return 'table['..X..','..Y..';' ..W..','..H..';'..name..';'..table.concat(cells_array)..optional(selected_idx)..']' -end - ---- ---- * Sets options for `table[]` ---- * `color=#RRGGBB` ---- * default text color (`ColorString`), defaults to `#FFFFFF` ---- * `background=#RRGGBB` ---- * table background color (`ColorString`), defaults to `#000000` ---- * `border=` ---- * should the table be drawn with a border? (default: `true`) ---- * `highlight=#RRGGBB` ---- * highlight background color (`ColorString`), defaults to `#466432` ---- * `highlight_text=#RRGGBB` ---- * highlight text color (`ColorString`), defaults to `#FFFFFF` ---- * `opendepth=` ---- * all subtrees up to `depth < value` are open (default value = `0`) ---- * only useful when there is a column of type "tree" ---- ---- @return string -function FormSpec.tableoptions(options) - return 'tableoptions['..key_value_list(options)..']' -end - ---- ---- * Sets columns for `table[]` ---- * Types: `text`, `image`, `color`, `indent`, `tree` ---- * `text`: show cell contents as text ---- * `image`: cell contents are an image index, use column options to define ---- images. images are scaled down to fit the row height if necessary. ---- * `color`: cell contents are a ColorString and define color of following ---- cell. ---- * `indent`: cell contents are a number and define indentation of following ---- cell. ---- * `tree`: same as indent, but user can open and close subtrees ---- (treeview-like). ---- * Column options: ---- * `align=` ---- * for `text` and `image`: content alignment within cells. ---- Available values: `left` (default), `center`, `right`, `inline` ---- * `width=` ---- * for `text` and `image`: minimum width in em (default: `0`) ---- * for `indent` and `tree`: indent width in em (default: `1.5`) ---- * `padding=`: padding left of the column, in em (default `0.5`). ---- Exception: defaults to 0 for indent columns ---- * `tooltip=`: tooltip text (default: empty) ---- * `image` column options: ---- * `0=` sets image for image index 0 ---- * `1=` sets image for image index 1 ---- * `2=` sets image for image index 2 ---- * and so on; defined indices need not be contiguous. empty or ---- non-numeric cells are treated as `0`. ---- * `color` column options: ---- * `span=`: number of following columns to affect ---- (default: infinite). ---- ---- @param columns {type:string,options:table}[] ---- @return string -function FormSpec.tablecolumns(columns) - local columns_strings = {} - for _, column in pairs(columns) do - table.insert( - columns_strings, - column.type..','..key_value_list(column.options,',') - ) - end - return 'tablecolumns['.. table.concat(columns_strings,';') ..']' -end - ---- ---- * Set the style for the element(s) matching `selector` by name. ---- * `selector` can be one of: ---- * `` - An element name. Includes `*`, which represents every element. ---- * `:` - An element name, a colon, and one or more states. ---- * `state` is a list of states separated by the `+` character. ---- * If a state is provided, the style will only take effect when the element is in that state. ---- * All provided states must be active for the style to apply. ---- * Note: this **must** be before the element is defined. ---- * See [Styling Formspecs]. ---- ---- ### Valid States ---- * *all elements* ---- * default - Equivalent to providing no states ---- * button, button_exit, image_button, item_image_button ---- * focused - Active when button has focus ---- * hovered - Active when the mouse is hovering over the element ---- * pressed - Active when the button is pressed ---- ---- @param selectors string|string[] ---- @param properties minetest.FormSpec.Style ---- @return string -function FormSpec.style(selectors, properties) - selectors = type(selectors) == 'table' and selectors or { selectors } - - return 'style['.. table.concat(selectors,',') ..';'.. key_value_list(properties) ..']' -end - ---- ---- * Set the style for the element(s) matching `selector` by type. ---- * `selector` can be one of: ---- * `` - An element type. Includes `*`, which represents every element. ---- * `:` - An element type, a colon, and one or more states. ---- * `state` is a list of states separated by the `+` character. ---- * If a state is provided, the style will only take effect when the element is in that state. ---- * All provided states must be active for the style to apply. ---- * See [Styling Formspecs]. ---- ---- ### Valid States ---- * *all elements* ---- * default - Equivalent to providing no states ---- * button, button_exit, image_button, item_image_button ---- * focused - Active when button has focus ---- * hovered - Active when the mouse is hovering over the element ---- * pressed - Active when the button is pressed ---- ---- @param selectors string|string[] ---- @param properties minetest.FormSpec.Style ---- @return string -function FormSpec.style_type(selectors, properties) - selectors = type(selectors) == 'table' and selectors or { selectors } - - return 'style_type['.. table.concat(selectors,',') ..';'.. key_value_list(properties) ..']' -end - ---- ---- * Sets the focus to the element with the same `name` parameter. ---- * **Note**: This element must be placed before the element it focuses. ---- * `force` (optional, default `false`): By default, focus is not applied for ---- re-sent formspecs with the same name so that player-set focus is kept. ---- `true` sets the focus to the specified element for every sent formspec. ---- * The following elements have the ability to be focused: ---- * checkbox ---- * button ---- * button_exit ---- * image_button ---- * image_button_exit ---- * item_image_button ---- * table ---- * textlist ---- * dropdown ---- * field ---- * pwdfield ---- * textarea ---- * scrollbar ---- @return string -function FormSpec.set_focus(name,force) - return 'set_focus['..name..optional(force)..']' -end - - -return FormSpec diff --git a/mods/lord/Core/builtin_ext/src/FormSpec/Style.lua b/mods/lord/Core/builtin_ext/src/FormSpec/Style.lua deleted file mode 100644 index 512a10257..000000000 --- a/mods/lord/Core/builtin_ext/src/FormSpec/Style.lua +++ /dev/null @@ -1,128 +0,0 @@ - ---- @class minetest.FormSpec.Style -local Style = { -- luacheck: ignore unused variable Style - --- set to true to allow the element to exceed formspec bounds. - --- Defaults to false in formspec_version version 3 or higher - --- @type boolean? - noclip = false, - - --- **Note**: accept multiple input types: - --- * Single value (e.g. `#FF0`): All corners/borders. - --- * Two values (e.g. `red,#FFAAFF`): top-left and bottom-right,top-right and bottom-left/ - --- top and bottom,left and right. - --- * Four values (e.g. `blue,#A0F,green,#FFFA`): top-left/top and rotates clockwise. - --- * These work similarly to CSS borders. - ---`ColorString`. Sets the color(s) of the box corners. Default `black`. - --- @type string? - colors = 'black', - --- **Note**: accept multiple input types: - --- * Single value (e.g. `#FF0`): All corners/borders. - --- * Two values (e.g. `red,#FFAAFF`): top-left and bottom-right,top-right and bottom-left/ - --- top and bottom,left and right. - --- * Four values (e.g. `blue,#A0F,green,#FFFA`): top-left/top and rotates clockwise. - --- * These work similarly to CSS borders. - --- `ColorString`. Sets the color(s) of the borders. Default `black`. - --- @type ColorString? - bordercolors = 'black', - --- Integer! Sets the width(s) of the borders in pixels. If the width is - --- negative, the border will extend inside the box, whereas positive extends outside - --- the box. A width of zero results in no border; this is default. - --- @type number? - borderwidths = 0, - --- whether to draw alpha in bgimg. Default true. - --- @type boolean? - alpha = true, - --- color, sets button tint. - --- @type string? - bgcolor = '', - --- color when hovered. Defaults to a lighter bgcolor when not provided. - --- This is deprecated, use states instead. - --- @deprecated - --- @type string? - bgcolor_hovered = nil, - --- color when pressed. Defaults to a darker bgcolor when not provided. - --- This is deprecated, use states instead. - --- @deprecated - --- @type string? - bgcolor_pressed = nil, - --- standard background image. Defaults to none. - --- @type string? - bgimg = nil, - --- background image when hovered. Defaults to bgimg when not provided. - --- This is deprecated, use states instead. - --- @deprecated - --- @type string? - bgimg_hovered = nil, - --- Makes the bgimg textures render in 9-sliced mode and defines the middle rect. - --- See background9[] documentation for more details. This property also pads the - --- button's content when set. - --- @type string? - bgimg_middle = nil, - --- background image when pressed. Defaults to bgimg when not provided. - --- This is deprecated, use states instead. - --- @type string? - bgimg_pressed = nil, - --- Sets font type. This is a comma separated list of options. Valid options: - --- * Main font type options. These cannot be combined with each other: - --- * `normal`: Default font - --- * `mono`: Monospaced font - --- * Font modification options. If used without a main font type, `normal` is used: - --- * `bold`: Makes font bold. - --- * `italic`: Makes font italic. - --- Default `normal`. - --- @type string? - font = 'normal', - --- Sets font size. Default is user-set. Can have multiple values: - --- * ``: Sets absolute font size to `number`. - --- * `+`/`-`: Offsets default font size by `number` points. - --- * `*`: Multiplies default font size by `number`, similar to CSS `em`. - --- @type number? - font_size = nil, - --- draw border. Set to false to hide the bevelled button pane. Default true. - --- @type boolean? - border = true, - --- 2d vector, shifts the position of the button's content without resizing it. - --- @type Position2d? - content_offset = nil, - --- rect, adds space between the edges of the button and the content. This value is relative to bgimg_middle. - --- @type string? - padding = nil, - --- a sound to be played when triggered. - --- @type string? - sound = nil, - --- color, default white. - --- @type ColorString? - textcolor = '#fff', - - --- 2d vector, sets the size of inventory slots in coordinates. (for `list`) - --- Default is 1,1 - --- @type Position2d? - size = nil, - --- 2d vector, sets the space between inventory slots in coordinates. (for `list`) - --- Default is 0,0 - --- @type Position2d? - spacing = nil, - - - --- (additional properties for `image_button`) - --- standard image. Defaults to none. - --- @type string? - fgimg = nil, - --- (additional properties for `image_button`) - --- image when hovered. Defaults to fgimg when not provided. - --- This is deprecated, use states instead. - --- @deprecated - --- @type string? - fgimg_hovered = nil, - --- (additional properties for `image_button`) - --- image when pressed. Defaults to fgimg when not provided. - --- This is deprecated, use states instead. - --- @deprecated - --- @type string? - fgimg_pressed = nil, - --- (additional properties for `image_button`) - --- Makes the fgimg textures render in 9-sliced mode and defines the middle rect. - --- See background9[] documentation for more details. - --- @type string? - fgimg_middle = nil, -} diff --git a/mods/lord/Core/builtin_ext/src/SettingsGroup.lua b/mods/lord/Core/builtin_ext/src/SettingsGroup.lua deleted file mode 100644 index 45219bc12..000000000 --- a/mods/lord/Core/builtin_ext/src/SettingsGroup.lua +++ /dev/null @@ -1,88 +0,0 @@ -local pairs, setmetatable, assert, type - = pairs, setmetatable, assert, type - - ---- @class Voxrame.SettingsGroup -local SettingsGroup = { - --- @type string name of the Group, which used as prefix of setting key. - group_name = nil, --- @diagnostic disable-line: assign-type-mismatch - --- @type table stripped key names are used (without group-name prefixes). - settings = nil, --- @diagnostic disable-line: assign-type-mismatch -} - ---- @protected ---- @param from_settings table table of all settings from which the settings of Group to load. ---- @return table -function SettingsGroup:load(from_settings) - --- @type table - local settings = {} - local prefix = self.group_name .. '.' - - for key, value in pairs(from_settings) do - if key:starts_with(prefix) then - settings[key:replace('^' .. prefix, '')] = value - end - end - - return settings -end - ---- If no `from_settings` table specified, ---- the all `minetest.settings:to_table()` is used to search & filter settings for the Group. ---- @overload fun(group_name:string) ---- @param group_name string ---- @param from_settings table optional table of all settings from which the settings of Group to load. ---- @return Voxrame.SettingsGroup -function SettingsGroup:new(group_name, from_settings) - self = setmetatable({}, { __index = self }) - from_settings = from_settings or minetest.settings:to_table() - - self.group_name = group_name - self.settings = self:load(from_settings) - - return self -end - ---- @param subgroup_name string ---- @return Voxrame.SettingsGroup -function SettingsGroup:group(subgroup_name) - return SettingsGroup:new(subgroup_name, self.settings) -end - ---- Return all settings of the Group. ---- ---- Stripped key names are used (without group-name prefixes). ---- ---- @return table -function SettingsGroup:all() - return self.settings -end - ---- @overload fun(name:string) ---- @param name string name of the setting (key). Stripped key names are used (without group-name prefixes). ---- @param default any default value, if setting not found. [optional] ---- @return string|nil returns `nil` if setting not found and `default` not specified. -function SettingsGroup:get(name, default) - return self.settings[name] or default -end - ---- @param name string name of the setting (key). Stripped key names are used (without group-name prefixes). ---- @return Position|nil -function SettingsGroup:get_position(name) - return minetest.string_to_pos(self.settings[name]) -end - ---- @overload fun(name:string) ---- @param name string name of the setting (key). Stripped key names are used (without group-name prefixes). ---- @param default boolean default value, if setting not found. [optional] ---- @return boolean|nil returns `nil` if setting not found and `default` not specified. -function SettingsGroup:get_bool(name, default) - assert(default == nil or type(default) == 'boolean') - - local value = self.settings[name] - - return value and minetest.is_yes(value) or default -end - - -return SettingsGroup diff --git a/mods/lord/Core/builtin_ext/src/Texture.lua b/mods/lord/Core/builtin_ext/src/Texture.lua deleted file mode 100644 index 9e6b010da..000000000 --- a/mods/lord/Core/builtin_ext/src/Texture.lua +++ /dev/null @@ -1,26 +0,0 @@ - - ---- @class minetest.Texture -local Texture = {} - -minetest.texture = Texture - ---- @static ---- @overload fun(texture:string, times:number) ---- ---- @param texture string name of texture to repeat. ---- @param times number count how many times to repeat. ---- @param height number height of specified `texture`. Default: `16` ---- ---- @return string returns `[combine` string ---- [See `[combine` docs](https://api.luanti.org/textures/#combinewxhx1y1file1x2y2file2) -function Texture.repeat_vertically(texture, times, height) - height = height or 16 - - local repeated = '[combine:16x' .. height * times - for i = 0, times - 1 do - repeated = repeated .. ":0," .. (i*height) .. "=" .. texture - end - - return repeated -end diff --git a/mods/lord/Core/builtin_ext/src/Tile.lua b/mods/lord/Core/builtin_ext/src/Tile.lua deleted file mode 100644 index a5b3a9e22..000000000 --- a/mods/lord/Core/builtin_ext/src/Tile.lua +++ /dev/null @@ -1,38 +0,0 @@ -local texture = minetest.texture - ---- @class minetest.Tile -local Tile = {} - -minetest.tile = Tile - ---- @static ---- @overload fun(anim_texture:string, period:number) ---- @overload fun(anim_texture:string, period:number, bg_texture:string, frames_count:number) ---- ---- @param anim_texture string animated texture. ---- @param period number period in seconds of full animation loop. ---- @param bg_texture string @(optional) background texture, that will be vertically repeated. ---- @param frames_count number @(optional) count to repeat `bg_texture` (count of frames in `anim_texture`). ---- @param frame_width number @(optional). Default: `16` ---- @param frame_height number @(optional). Default: `16` ---- ---- @return TileDefinition|table -function Tile.anim_vertical_frames(anim_texture, period, bg_texture, frames_count, frame_width, frame_height) - frame_width = frame_width or 16 - frame_height = frame_height or 16 - - if bg_texture then - assert(frames_count and frames_count > 1, 'You should specify `frames_count`, if you need background') - anim_texture = texture.repeat_vertically(bg_texture, frames_count, frame_height) .. "^" .. anim_texture - end - - return { - name = anim_texture, - animation = { - type = 'vertical_frames', - aspect_w = frame_width, - aspect_h = frame_height, - length = period, - } - } -end diff --git a/mods/lord/Core/builtin_ext/src/craft.lua b/mods/lord/Core/builtin_ext/src/craft.lua deleted file mode 100644 index 9ebf62bec..000000000 --- a/mods/lord/Core/builtin_ext/src/craft.lua +++ /dev/null @@ -1,28 +0,0 @@ -require("craft.method") -require("craft.recipe") - - ---- @param grid string[][] ---- @return string[][] -local function mirrored_grid(grid) - local mirrored = {} - for i, row in ipairs(grid) do - mirrored[i] = {} - local row_length = #row - for j, item in ipairs(row) do - mirrored[i][row_length - j +1] = item - end - end - - return mirrored -end - ---- @param recipe minetest.CraftRecipe -function minetest.register_mirrored_crafts(recipe) - --- @type minetest.CraftRecipe - local mirrored = table.copy(recipe) - mirrored.recipe = mirrored_grid(mirrored.recipe) - - minetest.register_craft(recipe) - minetest.register_craft(mirrored) -end diff --git a/mods/lord/Core/builtin_ext/src/craft/method.lua b/mods/lord/Core/builtin_ext/src/craft/method.lua deleted file mode 100644 index 6f3329873..000000000 --- a/mods/lord/Core/builtin_ext/src/craft/method.lua +++ /dev/null @@ -1,401 +0,0 @@ --- Unexpectedly: --- minetest.register_craft({ ... type = 'shaped' | 'shapeless' | 'toolrepair' | 'cooking' | 'fuel' }) --- minetest.get_craft_result({ ... method = 'normal' | 'cooking' | 'fuel' }) - --- Ok, Lets try fix this. And add custom craft methods. - -local assert, pairs, ipairs, table_copy, table_insert, math_min, type - = assert, pairs, ipairs, table.copy, table.insert, math.min, type - - - ---- @class minetest.CraftType -minetest.CraftType = { - NORMAL = 'normal', - COOKING = 'cooking', - FUEL = 'fuel', - REPAIR = 'repair', -- ? -} ---- @class minetest.CraftMethod -minetest.CraftMethod = { - --- like in minetest itself. - DEFAULT = 'default', -} -local mt_methods = { 'normal', 'cooking', 'fuel' } - - ---- @class minetest.CraftRecipe ---- @field type string one of minetest.CraftType.. default: `"normal"` ---- @field method string one of minetest.CraftMethod.. default: `"default"` (as in minetest) ---- @field shapeless boolean default: `false`. Not used as for now. (It will be better, if in MT it will separate) ---- @field input string[][] array like craft grid slots with tech names of ingredients ({{`"mod:node_name"`}}) ---- @field output string result item tech name (`"mod:node_name"`) ---- @field recipe string[][] alias for `input` filed. ---- @field time number time required for cooking. Use only for type `"cooking"`. In seconds. ---- @field cooktime number alias for `time` filed. - - ---- @type table>> -local method_registered_recipes = { - -- [method] = { - -- [type] = { - -- [output] = { - -- , - -- , - -- , - -- ... - -- } - -- } - -- } -} - ---- @param grid ItemStack[][]|string[][] ---- @param grid ItemStack[][]|string[][] -local function shift_top_left(grid) - --- @type number - local shift_top_on = #grid - --- @type number - local shift_left_on = #grid[1] - - -- find on how many rows & columns to shift - for i, row in pairs(grid) do - local row_is_empty = true - for j, item in pairs(row) do - local str = type(item) == 'string' and item or item:get_name() - if str ~= '' then - row_is_empty = false - shift_left_on = math_min(j - 1, shift_left_on) - end - end - if not row_is_empty then - shift_top_on = math_min(i - 1, shift_top_on) - end - end - - -- shift itself - local result = {} - for i = 1+shift_top_on, #grid do - local row = {} - for j = 1+shift_left_on, #grid[i] do - row[#row+1] = grid[i][j] - end - result[#result+1] = row - end - - return result -end - ---- @param items ItemStack[] ---- @return ItemStack[][] -local function to_grid(items, width) - if not items or not width or width == 0 then - minetest.log('error', 'Args `items` or `width` comes as `nil` or `0`') - return {} - end - - local grid = {} - local row = {} - for i, item in ipairs(items) do - row[#row+1] = item - if i % width == 0 then - grid[#grid+1] = row - row = {} - end - end - if #row ~= 0 then - grid[#grid+1] = row - minetest.log('warning', 'Last row is less than others') - end - - return grid -end - ---- @param grid ItemStack[][]|string[][] ---- @param callback fun(item:ItemStack|string,row:number,col:number):boolean|nil return `true` for stop traverse -local function foreach_item_in_grid(grid, callback) - --- @type boolean|nil - local stop_propagation = false - for i, row in pairs(grid) do - for j, item in pairs(row) do - stop_propagation = callback(item, i, j) - if stop_propagation then break; end - end - if stop_propagation then break; end - end -end - ---- Its not necessary to use this function. ---- Just use `minetest.CraftType.YOUR_TYPE = 'your-type`` ---- @param name string -function minetest.register_craft_method(name) - minetest.CraftMethod[name:upper()] = name:lower() - method_registered_recipes[name:lower()] = {} -end - - ---- @param recipe minetest.CraftRecipe -local function validate_recipe_for_custom_method(recipe) - assert( - recipe.type:is_one_of({minetest.CraftType.NORMAL, minetest.CraftType.COOKING}), - 'sorry, only `"normal"` & `"cooking"` type currently supported for custom methods' - ) - - assert(type(recipe.method) == 'string', '`recipe.method` must be of type `string`') - assert(recipe.method:is_one_of(minetest.CraftMethod), 'unknown craft method: ' .. recipe.method) - if not method_registered_recipes[recipe.method] then - method_registered_recipes[recipe.method] = {} - end - if not method_registered_recipes[recipe.method][recipe.type] then - method_registered_recipes[recipe.method][recipe.type] = {} - end - - assert(not recipe.shapeless, 'sorry, only shaped grid currently supported for custom methods') - - assert( - type(recipe.input) == 'table' and type(recipe.input[1]) == 'table', - '`recipe.input` must of type `string`, or `string[], or `string[][]' - ) - local any_not_empty = false - foreach_item_in_grid(recipe.input, function(item) - assert(type(item) == 'string', 'all ingredients of `recipe.input` must be of type `string`') - if item ~= '' then any_not_empty = true end - end) - assert(any_not_empty, 'at least one ingredient must be not empty string') - - assert(type(recipe.output) == 'string', '`recipe.output` must be of type string') - - --- @diagnostic disable-next-line: undefined-field - assert(recipe.replacements == nil, 'sorry, `recipe.replacements` currently not supported for custom methods') -end - -local mt_register_craft = minetest.register_craft - ---- Set `recipe.method` to your own to use non MT standard craft system. ---- @param recipe minetest.CraftRecipe -function minetest.register_craft(recipe) - local method = recipe.method or minetest.CraftMethod.DEFAULT - - -- Minetest - if method == minetest.CraftMethod.DEFAULT then - recipe.recipe = recipe.recipe or recipe.input - recipe.input = nil - return mt_register_craft(recipe) - end - - -- Custom - recipe.type = recipe.type or minetest.CraftType.NORMAL - recipe.shapeless = recipe.shapeless == nil and false - recipe.input = recipe.input or recipe.recipe - recipe.recipe = nil - - if type(recipe.input) == 'string' then recipe.input = { { recipe.input } } end - --- @diagnostic disable-next-line: assign-type-mismatch - if type(recipe.input[1]) ~= 'table' then recipe.input = { recipe.input } end - validate_recipe_for_custom_method(recipe) - - --- @cast recipe.input string[][] - recipe.input = shift_top_left(recipe.input) - - --- @type string - local output_name = recipe.output:split(' ')[1]--[[@as string # `:split()` always have at least 1 element]] - if (not method_registered_recipes[method][recipe.type][output_name]) then - method_registered_recipes[method][recipe.type][output_name] = {} - end - table_insert(method_registered_recipes[method][recipe.type][output_name], recipe) - - return -end - ---- @type RecipeOutput -local EMPTY_OUTPUT = { time = 0, replacements = {}, item = ItemStack("") } - ---- @type fun(input: RecipeInput): RecipeOutput, RecipeInput -local mt_get_craft_result = minetest.get_craft_result - - ---- @param stack ItemStack ---- @param recipe_item string -local function take_item(stack, recipe_item) - --- @diagnostic disable-next-line: assign-type-mismatch - recipe_item = recipe_item:split(' ') - local recipe_item_name = recipe_item[1] --- @as string `:split()` always have at least 1 element - local recipe_item_count = tonumber(recipe_item[2]) or 1 - - if recipe_item_name:starts_with('group:') then - local group = recipe_item_name:split(':')[2] - if - minetest.get_item_group(stack:get_name(), group) == 0 or - stack:take_item(recipe_item_count):get_count() ~= recipe_item_count - then - return false - end - else - if - stack:get_name() ~= recipe_item_name or - stack:take_item(recipe_item_count):get_count() ~= recipe_item_count - then - return false - end - end - - return true -end - ---- @param input RecipeInput ---- @param recipe minetest.CraftRecipe ---- @return RecipeInput|nil -local function decrement_input(input, recipe) - input = table_copy(input) - - local item_not_taken = false - - foreach_item_in_grid(recipe.input, function(recipe_item, i, j) - recipe_item = recipe_item or '' - if recipe_item == '' then - return -- skip `foreach_item_in_grid()` iteration with empty item - end - - local stack = input.items[(i - 1) * input.width + j] - if not stack then - minetest.log('error', 'get_craft_result(): decrement_input() failed') - item_not_taken = true - return true -- break `foreach_item_in_grid()` cycle - end - - if not take_item(stack, recipe_item) then - item_not_taken = true - return true -- break `foreach_item_in_grid()` cycle - end - end) - - if item_not_taken then - return nil - end - - return input -end - ---- @param item ItemStack ---- @param recipe_item string ---- @return boolean -local function item_is_correspond_to_recipe(item, recipe_item) - local recipe_item_parts = recipe_item:split(' ') - - local recipe_item_name = recipe_item_parts[1] or '' - local recipe_item_count = tonumber(recipe_item_parts[2]) or 1 - - if recipe_item_name:starts_with('group:') then - local group = recipe_item_name:split(':')[2] - if - minetest.get_item_group(item:get_name(), group) == 0 or - item:get_count() < recipe_item_count - then - return false - end - else - if - item:get_name() ~= recipe_item_name or - (item:get_count() < recipe_item_count and recipe_item_name ~= '') - then - return false - end - end - - return true -end - ---- @param items_grid ItemStack[][] ---- @param recipe_grid string[][] ---- @return boolean -local function items_is_correspond_to_recipe(items_grid, recipe_grid) - local correspond = true - --- @param item ItemStack - foreach_item_in_grid(items_grid, function(item, i, j) - local recipe_item = recipe_grid[i] and (recipe_grid[i][j] or '') or '' - - if not item_is_correspond_to_recipe(item, recipe_item) then - correspond = false - return true -- break `foreach_item_in_grid()` - end - end) - - return correspond -end - ---- @param input RecipeInput you can use your own `input.method` ---- @return RecipeOutput, RecipeInput, minetest.CraftRecipe? -function minetest.get_craft_result(input) - if not input.method or input.method:is_one_of(mt_methods) then - return mt_get_craft_result(input) - end - - if not input.method:is_one_of(minetest.CraftMethod) then - minetest.log('error', 'unknown craft method: ' .. input.method) - return table_copy(EMPTY_OUTPUT), input - end - - --- @diagnostic disable-next-line: inject-field, undefined-field # native luabti `RecipeInput` does not have `type` - input.type = input.type or minetest.CraftType.NORMAL - - local shifted_grid = shift_top_left(to_grid(input.items, input.width)) - - --- @type RecipeOutput - local output = table_copy(EMPTY_OUTPUT) - --- @diagnostic disable-next-line: undefined-field # native luabti `RecipeInput` does not have `type` - for output_item, recipes in pairs(method_registered_recipes[input.method][input.type]) do - for i, recipe in pairs(recipes) do - if items_is_correspond_to_recipe(shifted_grid, recipe.input) then - local new_input = decrement_input(input, recipe) - if not new_input then - return output, input - end - - output.item = ItemStack(recipe.output) - --- @diagnostic disable-next-line: undefined-field # native luabti `RecipeInput` does not have `type` - if input.type == minetest.CraftType.COOKING then - output.time = recipe.time - end - - return output, new_input, recipe - end - end - end - - return output, input -end - - ---- @param output string ---- @return minetest.CraftRecipe|nil -local function find_craft_recipe(output) - for method, method_recipes in pairs(method_registered_recipes) do - for craft_type, type_recipes in pairs(method_recipes) do - for recipe_item_name, recipes in pairs(type_recipes) do - if recipe_item_name == output then - return recipes[1] - end - end - end - end -end - -local mt_get_craft_recipe = minetest.get_craft_recipe ---- @param output string ---- @return RecipeInput|minetest.CraftRecipe|nil -function minetest.get_craft_recipe(output, method, craft_type) - method = method or minetest.CraftMethod.DEFAULT - craft_type = craft_type or minetest.CraftType.NORMAL - - if method == minetest.CraftMethod.DEFAULT then - local found = mt_get_craft_recipe(output) - if found then - return found - end - - return find_craft_recipe(output) - end - - local r = method_registered_recipes - - return r[method] and r[method][craft_type] and r[method][craft_type][output] and r[method][craft_type][output][1] -end diff --git a/mods/lord/Core/builtin_ext/src/craft/recipe.lua b/mods/lord/Core/builtin_ext/src/craft/recipe.lua deleted file mode 100644 index a48f553fb..000000000 --- a/mods/lord/Core/builtin_ext/src/craft/recipe.lua +++ /dev/null @@ -1,61 +0,0 @@ -local minetest_registered_items - = minetest.registered_items - - - ----foreach_items_with_recipes ----@param items table ----@param callback fun(name:string,item:ItemDefinition,recipes:RecipeEntryTable[]) -local function foreach_items_with_recipes(items, callback) - for name, item in pairs(items) do - local recipes = minetest.get_all_craft_recipes(name) - if recipes then - callback(name, item, recipes) - end - end -end - ----foreach_recipe_with_ingredient ----@param recipes RecipeEntryTable[] ----@param ingredient string ----@param callback fun(recipe:RecipeEntryTable) -local function foreach_recipe_with_ingredient(recipes, ingredient, callback) - for i, recipe in pairs(recipes) do - if recipe.items and table.contains(recipe.items, ingredient) then - callback(recipe) - end - end -end - ---- Returns all recipes from `item_name` ingredient. ---- ---- @param ingredient string item technical name (fro ex. `"default:apple"`) ---- @param recursively boolean whether to search recursively or not ---- @param max_depth number max search depth, when search recursively. [default: `10`] ---- @param except table mostly internal var to no recursion in graph. This items will be ignored. ---- ---- @return RecipeEntryTable[] -function minetest.get_all_craft_recipes_from(ingredient, recursively, max_depth, except) - recursively = recursively or false - max_depth = max_depth or 10 - except = except or {} - - local found_recipes = {} - foreach_items_with_recipes(minetest_registered_items, function(_, _, recipes) - foreach_recipe_with_ingredient(recipes, ingredient, function(recipe) - --- @type string - local out_item_name = recipe.output:split(' ')[1]--- @as string `:split()` always have at least 1 element - found_recipes[out_item_name] = recipe - if recursively and max_depth > 0 and not except[out_item_name] then - except[out_item_name] = true - found_recipes = table.overwrite( - found_recipes, - minetest.get_all_craft_recipes_from(out_item_name, true, max_depth - 1, except) - ) - end - - end) - end) - - return found_recipes -end diff --git a/mods/lord/Core/builtin_ext/src/globalstep.lua b/mods/lord/Core/builtin_ext/src/globalstep.lua deleted file mode 100644 index 205e0c8c4..000000000 --- a/mods/lord/Core/builtin_ext/src/globalstep.lua +++ /dev/null @@ -1,43 +0,0 @@ ---- @class ForeachPlayerEverySecondsCallback ---- @field every_seconds number ---- @field current_timer number ---- @field callback fun(player:Player,delta_time:number) - ---- @type ForeachPlayerEverySecondsCallback[] -local callbacks = {} - ---- @param every_seconds number|nil|0 ---- @param callback fun(player:Player,delta_time:number) -minetest.foreach_player_every = function(every_seconds, callback) - assert(type(callback) == "function") - callbacks[#callbacks + 1] = { - every_seconds = every_seconds or 0, - current_timer = 0, - callback = callback, - } -end - ---- @param delta_time number ---- @return fun(player:Player,delta_time:number)[] -local function get_now_to_call(delta_time) - local now_to_call = {} - for _, callback in pairs(callbacks) do - callback.current_timer = callback.current_timer + delta_time - if callback.current_timer > callback.every_seconds then - callback.current_timer = 0 - now_to_call[#now_to_call + 1] = callback.callback - end - end - - return now_to_call -end - -minetest.register_globalstep(function(delta_time) - local now_to_call = get_now_to_call(delta_time) - - for _, player in pairs(minetest.get_connected_players()) do - for _, call in pairs(now_to_call) do - call(player, delta_time) - end - end -end) diff --git a/mods/lord/Core/builtin_ext/src/map/VoxelArea.lua b/mods/lord/Core/builtin_ext/src/map/VoxelArea.lua deleted file mode 100644 index 3cb5c034b..000000000 --- a/mods/lord/Core/builtin_ext/src/map/VoxelArea.lua +++ /dev/null @@ -1,274 +0,0 @@ -local type, math_floor, math_random, math_is_among, vector_sort, v - = type, math.floor, math.random, math.is_among, vector.sort, vector.new -local id, name_by_id - = core.get_content_id, core.get_name_from_content_id - - -local id_air = id('air') - ---- Returns just `value` if `is_random` is false, ---- or random value from `value` if `value` is array and `is_random` is true. ---- ---- @param value integer|integer[] ---- @param is_random boolean ---- @param count integer ---- @return integer -local function get_self_or_random(value, is_random, count) - return is_random - and value[math_random(count)] - or value--[[@as integer]] -end - - ---- @param data integer[] -function VoxelArea:set_data(data) - self.data = data -end - ---- @param data_param2 integer[] -function VoxelArea:set_data_param2(data_param2) - self.data_param2 = data_param2 -end - ---- @param data_light integer[] -function VoxelArea:set_data_light(data_light) - self.data_light = data_light -end - ---- Iterate over positions in area. ---- Use `data[i]` to set/get node at position. ---- Usage: ---- ```lua ---- vox_area:foreach(function(i, data, data_param2, data_light) ---- data[i] = id('default:stone') -- id('default:stone') <==> core.get_content_id('default:stone') ---- ---- return true -- [optional] return true if you want to break `foreach` loop ---- end) ---- ``` ---- **Note:** use preloaded ids for better performance. ---- ---- @overload fun(callback: fun(i:integer, data:integer[], data_param2:integer[], data_light:integer[]):boolean?):self ---- @param from Position ---- @param to Position ---- @param callback fun(i:integer, data:integer[], data_param2:integer[], data_light:integer[]):boolean? ---- @return self -function VoxelArea:foreach(from, to, callback) - if type(from) == 'function' then - callback = from - from = self.MinEdge - to = self.MaxEdge - end - - for i in self:iterp(from, to) do - if callback(i, self.data, self.data_param2, self.data_light) then - break - end - end - - return self -end - ---- Returns the node ID at the specified position. ---- @param position Position ---- @return integer?, integer?, integer? -function VoxelArea:get_node_id_at(position, with_param2, with_light) - local i = self:indexp(position) - - return - self.data[i], - with_param2 and self.data_param2[i], - with_light and self.data_light[i] -end - ---- Returns the node name at the specified position. ---- Prefer to use `get_node_id_at()` and compare with preloaded node IDs. ---- ---- @param position Position ---- @return string?, integer?, integer? -function VoxelArea:get_node_name_at(position, with_param2, with_light) - local node_id, param2, light = self:get_node_id_at(position, with_param2, with_light) - - return name_by_id(node_id), param2, light -end - ---- Sets the node at the specified position to the given node ID. ---- Preloaded node IDs are recommended for better performance; use `core.get_content_id(name)` to preload. ---- @param position Position ---- @param node_id integer ---- ---- @return self -function VoxelArea:set_node_at(position, node_id, param2, light) - local i = self:indexp(position) - self.data[i] = node_id - if param2 then self.data_param2[i] = param2 end - if light then self.data_light [i] = light end - - return self -end - ---- Calculates the fraction of the area occupied by the specified node ID(s). ---- @param node_id table|integer if table, counts all IDs in the table. ---- @return number # content of area occupied by the node ID (0..1) -function VoxelArea:content_of(node_id) - --- @type integer[] - node_id = type(node_id) == 'table' and node_id or { node_id } - - local count = 0 - self:foreach(function(i, data, data_param2, data_light) - if table.contains(node_id, data[i]) then - count = count + 1 - end - end) - - return count / self:getVolume() -end - ---- @protected ---- @param node_id integer|integer[] ---- @param from Position ---- @param to Position ---- @param chance number ---- @param param2? integer|integer[] ---- ---- @return self -function VoxelArea:fill_with_chance(node_id, from, to, chance, param2) - local is_random = type(node_id) == 'table' - local is_random_param2 = type(param2) == 'table' - local nodes_count = is_random and #node_id or 0 - local param2_count = is_random_param2 and #param2 or 0 - - local data = self.data - local data_param2 = self.data_param2 - - for i in self:iterp(from, to) do - if math_random() <= chance then - data[i] = get_self_or_random(node_id, is_random, nodes_count) - if param2 then - data_param2[i] = get_self_or_random(param2, is_random_param2, param2_count) - end - end - end - - return self -end - ---- Sets all nodes in the specified area to the given node ID or random IDs. ---- @param node_id integer|integer[] if is array of integers, than area part wil be filled with random nodes from it. ---- @param from? Position position from which to start filling. ---- @param to? Position position to which to fill. ---- @param chance? number chance to fill each node (0..1), default is 1 (fill all). ---- @param param2? integer|integer[] if is array of integers, than random param2 will be set from it. ---- ---- @return self -function VoxelArea:fill_with(node_id, from, to, chance, param2) - from = from or self.MinEdge - to = to or self.MaxEdge - - if chance and chance < 1 then - return self:fill_with_chance(node_id, from, to, chance, param2) - end - - local is_random = type(node_id) == 'table' - local nodes_count = is_random and #node_id or 0 - local data = self.data - for i in self:iterp(from, to) do - data[i] = get_self_or_random(node_id, is_random, nodes_count) - end - - return self -end - ---- Checks if the node at the specified position matches the given node ID. ---- @param position vector|nil if nil, returns false. ---- @param node_id integer node ID to check against. ---- @param check_contain? boolean if true, checks if position is inside area, default is false. ---- @return boolean -function VoxelArea:is(position, node_id, check_contain) - check_contain = check_contain or false - - return position and (not check_contain or self:containsp(position)) - and self.data[self:indexp(position)] == node_id - or false -end - ---- Checks if the node at the specified position does not match the given node ID. ---- @param position vector|nil if nil, returns false. ---- @param node_id integer node ID to check against. ---- @param check_contain? boolean if true, checks if position is inside area, default is false. ---- @return boolean -function VoxelArea:is_not(position, node_id, check_contain) - check_contain = check_contain or false - - return position and (not check_contain or self:containsp(position)) - and self.data[self:indexp(position)] ~= node_id - or false -end - ---- Places a pile of nodes randomly within the specified area in cuboid [from, to]. ---- Nodes are only placed above non-air nodes, with a 50% chance at each valid position. ---- Note: Preloaded node IDs are recommended for better performance; use `core.get_content_id(name)` to preload. ---- Cubaoid [from, to] is inclusive and will be sorted automatically. ---- ---- @param node_id integer|integer[] if is array, random nodes will be placed. ---- @param from? Position position from which to start placing pile. ---- @param to? Position position to which to place pile. ---- @param peak? Position peak position of the pile. ---- @param fillness? number fillness of the pile, 0..1 (default is 0.75). ---- @param param2? integer|integer[] if is array, random param2 will be set. ---- ---- @return self -function VoxelArea:place_pile(node_id, from, to, peak, fillness, param2) - from = from or self.MinEdge - to = to or self.MaxEdge - fillness = fillness or 0.75 - from, to = vector_sort(from, to) - - peak = peak or v( - math_floor((from.x + to.x) / 2), - to.y, - math_floor((from.z + to.z) / 2) - ) - local height = to.y - from.y + 1 - -- Deltas from peak to sides of base of pile (pyramid) - local peak_from_dx = peak.x - from.x - local peak_from_dz = peak.z - from.z - local peak_to_dx = to.x - peak.x - local peak_to_dz = to.z - peak.z - - local data = self.data - - local is_random = type(node_id) == 'table' - local is_random_param2 = type(param2) == 'table' - local nodes_count = is_random and #node_id or 0 - local param2_count = is_random_param2 and #param2 or 0 - - self:foreach(from, to, function(i) - - local pos = v(self:position(i)) - - -- place above, only if below is not air - if self:is(pos:under(), id_air, true) then - return - end - - local layer = pos.y - from.y -- 0..height-1 - - local layer_from_dx = from.x + peak_from_dx * layer / height - local layer_to_dx = to.x - peak_to_dx * layer / height - local layer_from_dz = from.z + peak_from_dz * layer / height - local layer_to_dz = to.z - peak_to_dz * layer / height - - if - math_is_among(pos.x, layer_from_dx, layer_to_dx) and - math_is_among(pos.z, layer_from_dz, layer_to_dz) and - math_random() <= fillness - then - data[i] = get_self_or_random(node_id, is_random, nodes_count) - if param2 then - self.data_param2[i] = get_self_or_random(param2, is_random_param2, param2_count) - end - end - end) - - return self -end diff --git a/mods/lord/Core/builtin_ext/src/map/dungeons_gen.lua b/mods/lord/Core/builtin_ext/src/map/dungeons_gen.lua deleted file mode 100644 index 2f5fec0a8..000000000 --- a/mods/lord/Core/builtin_ext/src/map/dungeons_gen.lua +++ /dev/null @@ -1,152 +0,0 @@ -local pairs, table_insert, vector_new, id - = pairs, table.insert, vector.new, minetest.get_content_id - - -local on_generated_is_registered = false -local on_dungeon_generated_handlers = {} - -local c_air = id("air") - ---- При генерации комнат данжей движок использует следующие размеры: ---- - Обычные комнаты: 8×8×6 (макс.). ---- - Большие залы: 16×16×16 (редко). ---- - Коридоры: 1×2 блока и длиной до 13. ---- ---- При этом бывает так, что соседние комнаты и коридоры пересекаются. ---- Движок не передаёт размеры комнат, только их центры. ---- ---- Т.о. при поиске стен "вручную" мы можем наткнуться на то, ---- что стены очень далеко, -- дальше, чем заявлено. ---- ---- Кроме того, бывает так, что комната сгенерировалась на стыке с пещерой ---- и тогда стены попросту нет вообще. ---- ---- Мы ищем от центра во все стороны, поэтому нам нужна только половина ---- (если пересекутся больше комнат и коридоров, то стены не запишутся) -local MAX_NODES_TO_WALL = math.ceil((8 + 16 + 13) / 2) ---- Центр комнаты движок указывает на полу, тут нам нужна вся высота, а не половина -local MAX_NODES_TO_CEIL = 8 + 16 + 2 - ---- @class RoomWall ---- @field start_pos PositionVector ---- @field end_pos PositionVector - ---- @class RoomWalls ---- @field north RoomWall ---- @field south RoomWall ---- @field east RoomWall ---- @field west RoomWall ---- @field floor RoomWall ---- @field ceiling RoomWall - - ----@param rc Position room center ----@param data table ----@param area VoxelArea -local function find_room_walls_positions(rc, data, area) - local wx_plus, wx_minus, wz_plus, wz_minus - for delta = 1, MAX_NODES_TO_WALL do - if wx_plus == nil and data[area:index(rc.x + delta, rc.y, rc.z)] ~= c_air then wx_plus = rc.x + delta end - if wx_minus == nil and data[area:index(rc.x - delta, rc.y, rc.z)] ~= c_air then wx_minus = rc.x - delta end - if wz_plus == nil and data[area:index(rc.x, rc.y, rc.z + delta)] ~= c_air then wz_plus = rc.z + delta end - if wz_minus == nil and data[area:index(rc.x, rc.y, rc.z - delta)] ~= c_air then wz_minus = rc.z - delta end - end - - return wx_plus, wx_minus, wz_plus, wz_minus -end - ---- @param rc Position room center ---- @param wx_minus number ---- @param wx_plus number ---- @param wz_minus number ---- @param wz_plus number ---- @param data table ---- @param area VoxelArea ---- @return number|nil -local function find_room_ceiling_y(rc, wx_minus, wx_plus, wz_minus, wz_plus, data, area) - for dy = 1, MAX_NODES_TO_CEIL do - if - data[area:index(wx_plus - 1, rc.y + dy, rc.z )] ~= c_air or - data[area:index(wx_minus + 1, rc.y + dy, rc.z )] ~= c_air or - data[area:index(rc.x, rc.y + dy, wz_plus - 1)] ~= c_air or - data[area:index(rc.x, rc.y + dy, wz_minus + 1)] ~= c_air - then - return rc.y + dy - end - end - - return nil -end - ---- @param room_center Position ---- @param data table ---- @param area VoxelArea ---- @return RoomWalls|RoomWall[]|table -local function find_room_walls(room_center, data, area) - local rc = room_center - - local wx_plus, wx_minus, wz_plus, wz_minus = find_room_walls_positions(rc, data, area) - if wx_plus == nil or wx_minus == nil or wz_plus == nil or wz_minus == nil then - return {} - end - - local ceil_y = find_room_ceiling_y(rc, wx_minus, wx_plus, wz_minus, wz_plus, data, area) - if ceil_y == nil then - return {} - end - local floor_y = rc.y - 1 - - local v = vector_new - - return { - west = { start_pos = v(wx_minus, floor_y, wz_minus), end_pos = v(wx_minus, ceil_y, wz_plus), }, - east = { start_pos = v(wx_plus, floor_y, wz_minus), end_pos = v(wx_plus, ceil_y, wz_plus), }, - south = { start_pos = v(wx_minus, floor_y, wz_minus), end_pos = v(wx_plus, ceil_y, wz_minus), }, - north = { start_pos = v(wx_minus, floor_y, wz_plus), end_pos = v(wx_plus, ceil_y, wz_plus), }, - floor = { start_pos = v(wx_minus, floor_y, wz_minus), end_pos = v(wx_plus, floor_y, wz_plus), }, - ceiling = { start_pos = v(wx_minus, ceil_y, wz_minus), end_pos = v(wx_plus, ceil_y, wz_plus), }, - } -end - ---- @param data table ---- @param area VoxelArea ---- @param rooms_centers Position[] ---- @return RoomWalls[] -local function detect_rooms_walls(data, area, rooms_centers) - local rooms_walls = {} - for _, room_center in pairs(rooms_centers) do - table_insert(rooms_walls, find_room_walls(room_center, data, area)) - end - - return rooms_walls -end - --- luacheck: no max line length ---- @param callback fun(minp:Position, maxp:Position, data:table, param2_data:table, area:VoxelArea, rooms_centers:Position[], rooms_walls:RoomWalls[]) -minetest.register_on_dungeon_generated = function(callback) - table_insert(on_dungeon_generated_handlers, callback) - - if on_generated_is_registered then - return - end - - minetest.set_gen_notify("dungeon") - minetest.register_on_generated(function(minp, maxp, seed) - local notify = minetest.get_mapgen_object("gennotify") - if not notify or not notify.dungeon then - return - end - - local is_on_mapgen, with_param2 = true, true - minetest.with_map_part_do(minp, maxp, function(area, data, param2_data) - - local rooms_walls = detect_rooms_walls(data, area, notify.dungeon) - - for _, on_dungeon_generated_handler in pairs(on_dungeon_generated_handlers) do - on_dungeon_generated_handler(minp, maxp, data, param2_data, area, notify.dungeon, rooms_walls) - end - - end, is_on_mapgen, with_param2) - end) - on_generated_is_registered = true -end diff --git a/mods/lord/Core/builtin_ext/src/map/manipulations.lua b/mods/lord/Core/builtin_ext/src/map/manipulations.lua deleted file mode 100644 index e40c0ac28..000000000 --- a/mods/lord/Core/builtin_ext/src/map/manipulations.lua +++ /dev/null @@ -1,42 +0,0 @@ - ---- @param pos1 Position min position of loaded part of map. ---- @param pos2 Position max position of loaded part of map. ---- @param callback fun(area: VoxelArea, data:integer[], param2_data:integer[], light_data:integer[]) ---- @param is_on_mapgen? boolean this function is called inside 'on_generated()' callbacks. ---- @param with_param2? boolean also load param2 data & pass in specified `callback()` function as `param2_data` arg.. ---- @param with_light? boolean also load light data & pass in specified `callback()` function as `light_data` arg.. -function core.with_map_part_do(pos1, pos2, callback, is_on_mapgen, with_param2, with_light) - is_on_mapgen = is_on_mapgen or false - --- @type VoxelManip, Position, Position - local voxel_manipulator, e_min, e_max - if is_on_mapgen then - voxel_manipulator, e_min, e_max = core.get_mapgen_object('voxelmanip') - else - voxel_manipulator = core.get_voxel_manip() - e_min, e_max = voxel_manipulator:read_from_map(pos1, pos2) - end - - local area = VoxelArea:new({ MinEdge = e_min, MaxEdge = e_max }) - - --- @type integer[], integer[], integer[] - local data, param2_data, light_data - - data = voxel_manipulator:get_data() - area:set_data(data) - - if with_param2 then param2_data = voxel_manipulator:get_param2_data(); area:set_data_param2(param2_data) end - if with_light then light_data = voxel_manipulator:get_light_data() ; area:set_data_light(light_data) end - - - callback(area, data, param2_data, light_data) - - - voxel_manipulator:set_data(data) - if with_param2 then voxel_manipulator:set_param2_data(param2_data) end - if with_light then voxel_manipulator:set_light_data(light_data) end - if is_on_mapgen then - voxel_manipulator:set_lighting({ day = 0, night = 0 }) - voxel_manipulator:calc_lighting() - end - voxel_manipulator:write_to_map(true) -end diff --git a/mods/lord/Core/builtin_ext/src/mod.lua b/mods/lord/Core/builtin_ext/src/mod.lua deleted file mode 100644 index fae589eae..000000000 --- a/mods/lord/Core/builtin_ext/src/mod.lua +++ /dev/null @@ -1,87 +0,0 @@ -local RequireFactory = require('mod.require') -local LoggerFactory = require('mod.logger') -local Translator = require('mod.Translator') -local ModSettings = require('mod.Settings') - -minetest.get_mod_require = RequireFactory.get_mod_require -minetest.get_mod_logger = LoggerFactory.get_mod_logger -minetest.get_mod_translator = Translator.get ---- @return Voxrame.mod.Settings -minetest.get_mod_settings = function(mod_name) - return ModSettings:new(mod_name) -end - - ---- @type string -local DS = os.DIRECTORY_SEPARATOR -local debug_mode = minetest.settings:get_bool('debug', false) - ---- @param sub_folder string ---- @return string -function minetest.get_mod_textures_folder(sub_folder) - sub_folder = sub_folder and (sub_folder .. DS) or '' - local mod_path = minetest.get_modpath(minetest.get_current_modname()) - - return mod_path .. DS .. 'textures' .. DS .. sub_folder -end - - ---- @class minetest.Mod ---- @field name string name of the mod ---- @field path string path of the mad ---- @field debug boolean whether debug mode is enabled for this mod ---- @field require fun(name:string) require function for the mod ---- @field translator fun(str: string, ...):string translator for this mod ---- @field logger helpers.Logger lazy loaded logger instance for this mod ---- @field settings Voxrame.mod.Settings lazy loaded settings for this mod ---- @field measure fun(self:self, name:string, callback:fun(), print_result?:boolean) time and avg t. of `callback` - ---- @param mod_init_function fun(mod:minetest.Mod) -function minetest.mod(mod_init_function) - local mod_name = minetest.get_current_modname() - local mod_path = minetest.get_modpath(mod_name) - local mod_debug = minetest.settings:get_bool(mod_name .. '.debug', debug_mode) - - local old_require = require - require = minetest.get_mod_require(mod_name, mod_path) - - --- @type minetest.Mod - local mod = setmetatable( - { - name = mod_name, - path = mod_path, - debug = mod_debug, - require = require, - translator = Translator.get(), - measure = function(self, name, callback, print_result) - if not self.debug then - return callback() - end - - return debug.measure(name, callback, print_result or true) - end - }, { - -- Lazy Loading - __index = function(self, key) - if key == 'logger' then - self.logger = LoggerFactory.get_mod_logger(mod_name) - - return self.logger - elseif key == 'settings' then - self.settings = ModSettings:new(mod_name) - - return self.settings - end - - return self[key] - end - } - ) - mod_init_function(mod) - - require = old_require - - if debug_mode then - minetest.log(string.format('Mod loaded: [%s]', mod_name)) - end -end diff --git a/mods/lord/Core/builtin_ext/src/mod/Settings.lua b/mods/lord/Core/builtin_ext/src/mod/Settings.lua deleted file mode 100644 index 84abe7f1a..000000000 --- a/mods/lord/Core/builtin_ext/src/mod/Settings.lua +++ /dev/null @@ -1,16 +0,0 @@ -local SettingsGroup = require('SettingsGroup') - ---- @class Voxrame.mod.Settings: Voxrame.SettingsGroup -local ModSettings = {} - ---- @param mod_name string ---- @return Voxrame.mod.Settings -function ModSettings:new(mod_name) -- luacheck: ignore - --- @type Voxrame.mod.Settings - self = setmetatable({}, { __index = SettingsGroup }) - - return self:new(mod_name or minetest.get_current_modname()) -end - - -return ModSettings diff --git a/mods/lord/Core/builtin_ext/src/mod/Translator.lua b/mods/lord/Core/builtin_ext/src/mod/Translator.lua deleted file mode 100644 index 8973ba5b0..000000000 --- a/mods/lord/Core/builtin_ext/src/mod/Translator.lua +++ /dev/null @@ -1,14 +0,0 @@ - ---- @class Voxrame.mod.Translator -local Translator = {} - ---- @static ---- @overload fun():fun(str: string, ...):string ---- @param mod_name string|nil ---- @return fun(str: string, ...):string -function Translator.get(mod_name) - return minetest.get_translator(mod_name or minetest.get_current_modname()) -end - - -return Translator diff --git a/mods/lord/Core/builtin_ext/src/mod/logger.lua b/mods/lord/Core/builtin_ext/src/mod/logger.lua deleted file mode 100644 index 9dcc10e26..000000000 --- a/mods/lord/Core/builtin_ext/src/mod/logger.lua +++ /dev/null @@ -1,50 +0,0 @@ -local game = minetest.get_game_info().title - - ---- @type table -local mod_loggers = {} - ---- @static ---- @class helpers.Logger ---- @field error fun(message:string, ...) ---- @field warning fun(message:string, ...) ---- @field action fun(message:string, ...) ---- @field info fun(message:string, ...) ---- @field verbose fun(message:string, ...) -local Logger = { - prefix = "[" .. game .. "] ", - __index = function(self, level) - return function(message, ...) - minetest.log(level, self.prefix .. string.format(message, ...)) - end - end -} - ---- @param level string ---- @param message string -function Logger.log(level, message) - Logger[level](message) -end - ---- @param mod_name string ---- @return helpers.Logger -local function create_logger_for_mod(mod_name) - return setmetatable({ prefix = "[" .. mod_name .. "] "}, Logger) -end - - -return { - --- @param mod_name string? - --- @return helpers.Logger - get_mod_logger = function(mod_name) - mod_name = mod_name or minetest.get_current_modname() - - if mod_loggers[mod_name] then - return mod_loggers[mod_name] - end - - mod_loggers[mod_name] = create_logger_for_mod(mod_name) - - return mod_loggers[mod_name] - end -} diff --git a/mods/lord/Core/builtin_ext/src/mod/require.lua b/mods/lord/Core/builtin_ext/src/mod/require.lua deleted file mode 100644 index de6ae9ff4..000000000 --- a/mods/lord/Core/builtin_ext/src/mod/require.lua +++ /dev/null @@ -1,58 +0,0 @@ -local package_loaded, dofile - = package.loaded, dofile - -if not package_loaded then - package_loaded = {} - package.loaded = package_loaded -end - ---- @type string -local DS = os.DIRECTORY_SEPARATOR ---- @type table -local mod_requires = {} - - ---- @param mod_name string ---- @param mod_path string ---- @return fun(name:string):any -local function create_require_for_mod(mod_name, mod_path) - --- @param name string - --- @return any - return function(name) - local full_name = mod_name .. ".." .. name - - local module = package_loaded[full_name] - if module ~= nil then - return module - end - - local result = dofile(mod_path .. DS .. "src" .. DS .. name:gsub("%.", DS) .. ".lua") - - if result ~= nil then - package_loaded[full_name] = result - else - package_loaded[full_name] = true - end - - return package_loaded[full_name] - end -end - - -return { - --- @param mod_name string - --- @param mod_path string - --- @return fun(name:string):any - get_mod_require = function(mod_name, mod_path) - mod_name = mod_name or minetest.get_current_modname() - mod_path = mod_path or minetest.get_modpath(mod_name) - - if mod_requires[mod_name] then - return mod_requires[mod_name] - end - - mod_requires[mod_name] = create_require_for_mod(mod_name, mod_path) - - return mod_requires[mod_name] - end -} diff --git a/mods/lord/Core/builtin_ext/src/node.lua b/mods/lord/Core/builtin_ext/src/node.lua deleted file mode 100644 index cdc4f1d4f..000000000 --- a/mods/lord/Core/builtin_ext/src/node.lua +++ /dev/null @@ -1,114 +0,0 @@ -local v = vector.new - ---- Swaps node if node is not same and return old node name. ---- @see minetest.swap_node (https://dev.minetest.net/minetest.swap_node) ---- ---- @private ---- @param position Position position of node ---- @param node_name string technical node name (`":"`, for ex. `"default:dirt"`) ---- @return string old node name. -function minetest.swap_node_if_not_same(position, node_name) - local node = minetest.get_node(position) - if node.name ~= node_name then - node.name = node_name - minetest.swap_node(position, node) - end - - return node.name -end - ---- Finds nodes near position. ---- ---- @param position Position Center position to search around. ---- @param radius number Search radius. ---- @param node_names table|string Nodes to search. (e.g. `{"ignore", "group:tree"}` or `"default:dirt"`) ---- @param search_in_center boolean Optional. If true `pos` is also checked for the nodes. (default: `false`). ---- ---- @return table Found nodes. -function minetest.find_nodes_near(position, radius, node_names, search_in_center) - local pos1 = v(position):subtract(radius) - local pos2 = v(position):add(radius) - - local all_found_at = minetest.find_nodes_in_area(pos1, pos2, node_names) - - --- @type table - local result = {} - for i, found_at in ipairs(all_found_at) do - if search_in_center or (not search_in_center and v(found_at) ~= v(position)) then - result[found_at] = minetest.get_node(found_at) - end - end - - return result -end - ---- @param node NodeTable ---- @param except_node_names table Nodes to exclude. (e.g. `{"ignore", "group:tree"}` or `"default:dirt"`) -local function should_be_excluded(node, except_node_names) - for _, except in ipairs(except_node_names) do - local group = except:match("^group:(.+)$") - if group then - if minetest.get_item_group(node.name, group) > 0 then - return true - end - elseif node.name == except then - return true - end - end - - return false -end - ---- Finds node(s) near position, excluding specified nodes/groups. ---- ---- If no node(s) found, returns: ---- - `nil, nil` - for `only_first` ---- - `{}, nil` - for not `only_first` ---- ---- @param position Position Center position to search around. ---- @param radius number Search radius. ---- @param node_names table|string Nodes to search. (e.g. `{"ignore", "group:tree"}` or `"default:dirt"`) ---- @param except_node_names table|string Nodes to exclude. (e.g. `{"ignore", "group:tree"}` or `"default:dirt"`) ---- @param search_in_center boolean Optional. Include center position (default: false) ---- @param only_first boolean Optional. Return only first found node (default: false) ---- @return table|Position|nil, nil|NodeTable Found filtered node(s). -function minetest.find_nodes_near_except(position, radius, node_names, except_node_names, search_in_center, only_first) - --- @type table - except_node_names = type(except_node_names) == 'string' and { except_node_names } or except_node_names or {} - - local all_found = minetest.find_nodes_near(position, radius, node_names, search_in_center) - - --- @type table - local filtered = {} - for pos, node in pairs(all_found) do - local excluded = should_be_excluded(node, except_node_names) - - if not excluded then - if only_first then - return pos, node - end - - filtered[pos] = node - end - end - - if only_first then - return nil, nil - else - return filtered, nil - end -end - ---- Finds first matching node near position (with exceptions). ---- ---- @param position Position Center position to search around. ---- @param radius number Search radius. ---- @param node_names table|string Nodes to search. (e.g. `{"ignore", "group:tree"}` or `"default:dirt"`) ---- @param except_node_names table|string Nodes to exclude. (e.g. `{"ignore", "group:tree"}` or `"default:dirt"`) ---- @param search_in_center boolean Optional. Include center position (default: false) ---- ---- @return Position|nil, NodeTable|nil -function minetest.find_node_near_except(position, radius, node_names, except_node_names, search_in_center) - --- @diagnostic disable-next-line: return-type-mismatch - return minetest.find_nodes_near_except(position, radius, node_names, except_node_names, search_in_center, true) -end diff --git a/mods/lord/Core/builtin_ext/src/stack.lua b/mods/lord/Core/builtin_ext/src/stack.lua deleted file mode 100644 index eef668567..000000000 --- a/mods/lord/Core/builtin_ext/src/stack.lua +++ /dev/null @@ -1,67 +0,0 @@ -local ipairs, pi, math_random, math_point_on_circle - = ipairs, math.pi, math.random, math.point_on_circle -local hypot = math.hypot - ---- Places an item in the inventory of the specified player ---- or drops it on the ground nearby, if there is not enough space in the inventory. ---- @param player Player ---- @param stack ItemStack|ItemStackString ---- @return boolean `true` if the item is put into inventory, and `false` if the item is dropped to the world. -function minetest.give_or_drop(player, stack) - local inv = player:get_inventory() - if inv:room_for_item("main", stack) then - inv:add_item("main", stack) - return true - else - minetest.item_drop(stack, player, player:get_pos()) - return false - end -end - ---- Function of drops random items into world. ---- @param lootnode_pos Position position of loot throw node. ---- @param player_pos Position position of player. ---- @param player_look number radians angle of get_look_horizontal. ---- @param items remains.drop.config list of items to drop to world as loot. ---- @param scenario "random_distance"|"default"|nil ---- 'default' or nil - drop loot on a circle with calc radius node<->player, ---- 'random_distance' - drop loot on a circle with fixed random range radius -function drop_items_to_world(lootnode_pos, player_pos, player_look, items, scenario) - local radian_offset = 0 -- initial offset - local angle = pi - player_look -- mirrired angle of player_look - local sign_offset = 1 -- displacement sign, for alternating left-right drops - local coefficient_offset = 0.3 -- coefficient of angle offset - local drop_direction = { - x = (player_pos.x - lootnode_pos.x), - y = (player_pos.y - lootnode_pos.y + 4.5), - z = (player_pos.z - lootnode_pos.z), - } - local radius - if scenario == nil or scenario == 'default' then - radius = hypot(drop_direction.x, drop_direction.z) - end - if scenario == 'random_distance' then - radius = 2.5 - end - local function coefficient_radius() - if scenario == nil or scenario == 'default' then - return 0.8 - end - if scenario == 'random_distance' then - return 0.1*math_random(6,10) - end - end - for _, loot in ipairs(items) do - if loot then - --- @type Entity - local item = minetest.add_item(lootnode_pos, loot) - if item then - drop_direction.x, drop_direction.z = math_point_on_circle(radius*coefficient_radius(), angle) - item:set_velocity(drop_direction) - radian_offset = radian_offset + coefficient_offset - angle = sign_offset * radian_offset + angle - sign_offset = -1 * sign_offset - end - end - end -end diff --git a/mods/lord/Core/builtin_ext/src/vector.lua b/mods/lord/Core/builtin_ext/src/vector.lua deleted file mode 100644 index 17b489ebc..000000000 --- a/mods/lord/Core/builtin_ext/src/vector.lua +++ /dev/null @@ -1,114 +0,0 @@ -local math_max, math_abs, v - = math.max, math.abs, vector.new - - ---- @experimental ---- @unstable ---- @enum WorldSide: string -local WorldSide = { - ceiling = 'ceiling', - floor = 'floor', - north = 'north', - south = 'south', - east = 'east', - west = 'west', -} - ---- @enum (key) Position.OffsetSide: WorldSide -local offset_method = { - ceiling = 'above', - floor = 'under', - north = 'at_north', - south = 'at_south', - east = 'at_east', - west = 'at_west', - -- additional "aliases" - up = 'above', - down = 'under', - above = 'above', - under = 'under', - below = 'under', - ['x+'] = 'at_east', - ['x-'] = 'at_west', - ['y+'] = 'above', - ['y-'] = 'under', - ['z+'] = 'at_north', - ['z-'] = 'at_south', -} - ---- Returns position above this one by `n` nodes. ---- @param n? integer default is `1` ---- @return self -function vector:above(n) - return self:offset(0, n or 1, 0) -end - ---- Returns position below this one by `n` nodes. ---- @param n? integer default is `1` ---- @return self -function vector:under(n) - return self:offset(0, -(n or 1), 0) -end - ---- Returns position to the north of this one by `n` nodes. ---- @param n? integer default is `1` ---- @return self -function vector:at_north(n) - return self:offset(0, 0, n or 1) -end - ---- Returns position to the south of this one by `n` nodes. ---- @param n? integer default is `1` ---- @return self -function vector:at_south(n) - return self:offset(0, 0, -(n or 1)) -end - ---- Returns position to the east of this one by `n` nodes. ---- @param n? integer default is `1` ---- @return self -function vector:at_east(n) - return self:offset(n or 1, 0, 0) -end - ---- Returns position to the west of this one by `n` nodes. ---- @param n? integer default is `1` ---- @return self -function vector:at_west(n) - return self:offset(-(n or 1), 0, 0) -end - ---- Returns position to the specified `side` of this one by `n` nodes. ---- @param side Position.OffsetSide|WorldSide ---- @param n? integer default is `1` ---- @return self -function vector:at(side, n) - return self[offset_method[side]](self, n) --- @diagnostic disable-line: param-type-mismatch -end - ---- Returns the dominant axis direction as a vector, normalized to 1 and kept direction sign. ---- @return self -function vector:direction_axis() - -- keep only max coordinate, make others 0, keep sign - local max = math_max(math_abs(self.x), math_abs(self.y), math_abs(self.z)) - if math_abs(self.x) == max then - return v(self.x, 0, 0):sign() - elseif math_abs(self.y) == max then - return v(0, self.y, 0):sign() - else - return v(0, 0, self.z):sign() - end -end - ---- Returns the dominant axis direction as a side string. ---- @return WorldSide -function vector:direction_side() - local axis = self:direction_axis() - if axis.x ~= 0 then - return axis.x > 0 and WorldSide.east or WorldSide.west - elseif axis.y ~= 0 then - return axis.y > 0 and WorldSide.ceiling or WorldSide.floor - else - return axis.z > 0 and WorldSide.north or WorldSide.south - end -end diff --git a/mods/lord/Core/controls/init.lua b/mods/lord/Core/controls/init.lua deleted file mode 100644 index 7618669a2..000000000 --- a/mods/lord/Core/controls/init.lua +++ /dev/null @@ -1,5 +0,0 @@ - - -minetest.mod(function(mod) - require("controls").init() -end) diff --git a/mods/lord/Core/controls/license.md b/mods/lord/Core/controls/license.md deleted file mode 100644 index 02dd26a45..000000000 --- a/mods/lord/Core/controls/license.md +++ /dev/null @@ -1,7 +0,0 @@ -Copyright (c) 2022-present [Александр Чибрикин](https://github.com/alek13) & [Lord Team](https://github.com/lord-server/lord?tab=readme-ov-file#contributors--%D1%83%D1%87%D0%B0%D1%81%D1%82%D0%BD%D0%B8%D0%BA%D0%B8) - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/mods/lord/Core/controls/locale/controls.en.tr b/mods/lord/Core/controls/locale/controls.en.tr deleted file mode 100644 index 479b1c032..000000000 --- a/mods/lord/Core/controls/locale/controls.en.tr +++ /dev/null @@ -1 +0,0 @@ -# textdomain: controls \ No newline at end of file diff --git a/mods/lord/Core/controls/locale/controls.ru.tr b/mods/lord/Core/controls/locale/controls.ru.tr deleted file mode 100644 index 479b1c032..000000000 --- a/mods/lord/Core/controls/locale/controls.ru.tr +++ /dev/null @@ -1 +0,0 @@ -# textdomain: controls \ No newline at end of file diff --git a/mods/lord/Core/controls/mod.conf b/mods/lord/Core/controls/mod.conf deleted file mode 100644 index 6b43bb431..000000000 --- a/mods/lord/Core/controls/mod.conf +++ /dev/null @@ -1,2 +0,0 @@ -name = controls -depends = builtin_ext, base_classes diff --git a/mods/lord/Core/controls/src/controls.lua b/mods/lord/Core/controls/src/controls.lua deleted file mode 100644 index 20dee60a4..000000000 --- a/mods/lord/Core/controls/src/controls.lua +++ /dev/null @@ -1,15 +0,0 @@ -local api = require("controls.api") - - -controls = {} - -local function register_api() - _G.controls = api -end - - -return { - init = function() - register_api() - end, -} diff --git a/mods/lord/Core/controls/src/controls/Event.lua b/mods/lord/Core/controls/src/controls/Event.lua deleted file mode 100644 index b3a7f99bc..000000000 --- a/mods/lord/Core/controls/src/controls/Event.lua +++ /dev/null @@ -1,29 +0,0 @@ ---- @alias controls.callbacks.OnPress fun(player:Player, key:string) ---- @alias controls.callbacks.OnHold fun(player:Player, key:string, hold_time:number) ---- @alias controls.callbacks.OnRelease fun(player:Player, key:string, hold_time:number) ---- @alias controls.callback controls.callbacks.OnPress|controls.callbacks.OnHold|controls.callbacks.OnRelease - - ---- @class controls.Event: base_classes.Event ---- @field on fun(self:self,event:string|controls.Event.Type): fun(callback:controls.callback) ---- @field trigger fun(self:self,event:string|controls.Event.Type, ...): void -local Event = base_classes.Event:extended() - ---- @class controls.Event.Type -Event.Type = { - on_press = "on_press", - on_hold = "on_hold", - on_release = "on_release", -} ---- @type table -Event.subscribers = { - ---@type controls.callbacks.OnPress[] - on_press = {}, - ---@type controls.callbacks.OnHold[] - on_hold = {}, - ---@type controls.callbacks.OnRelease[] - on_release = {}, -} - - -return Event diff --git a/mods/lord/Core/controls/src/controls/api.lua b/mods/lord/Core/controls/src/controls/api.lua deleted file mode 100644 index 1682ac3bb..000000000 --- a/mods/lord/Core/controls/src/controls/api.lua +++ /dev/null @@ -1,81 +0,0 @@ -local Event = require("controls.Event") - - --- Для перевода микросекунд в секунды -local MICROSECONDS = 1000000 - -local last_player_controls = {} - -local was_pressed = 1 -local pressed_at = 2 - - -minetest.register_on_joinplayer(function(player) - local player_name = player:get_player_name() - if not player_name then return end - - last_player_controls[player_name] = {} - for key in pairs(player:get_player_control()) do - last_player_controls[player_name][key] = { - [was_pressed] = false, - } - end -end) - -minetest.register_on_leaveplayer(function(player) - local player_name = player:get_player_name() - if not player_name then return end - - last_player_controls[player_name] = nil -end) - - -minetest.foreach_player_every(0, function(player, _) - local player_name = player:get_player_name() - local last_controls = last_player_controls[player_name] - - if not player_name or not last_controls then - return - end - - local now = minetest.get_us_time() - for key, is_pressed in pairs(player:get_player_control()) do - - -- Нажатие - if is_pressed and not last_controls[key][was_pressed] then - - Event:trigger(Event.Type.on_press, player, key) - last_controls[key] = { - [was_pressed] = true, - [pressed_at] = now, - } - - -- Удержание - elseif is_pressed and last_controls[key][was_pressed] then - - local hold_time = (now - last_controls[key][pressed_at]) / MICROSECONDS - Event:trigger(Event.Type.on_hold, player, key, hold_time) - - -- Отпуск - elseif not is_pressed and last_controls[key][was_pressed] then - - local hold_time = (now - last_controls[key][pressed_at]) / MICROSECONDS - Event:trigger(Event.Type.on_release, player, key, hold_time) - last_controls[key] = { - [was_pressed] = false, - } - - end - end - - last_player_controls[player_name] = last_controls -end) - -return { - --- @type fun(callback:controls.callbacks.OnPress) - on_press = Event:on(Event.Type.on_press), - --- @type fun(callback:controls.callbacks.OnHold) - on_hold = Event:on(Event.Type.on_hold), - --- @type fun(callback:controls.callbacks.OnRelease) - on_release = Event:on(Event.Type.on_release), -} diff --git a/mods/lord/Core/damage/init.lua b/mods/lord/Core/damage/init.lua deleted file mode 100644 index 3fde2f2fb..000000000 --- a/mods/lord/Core/damage/init.lua +++ /dev/null @@ -1,5 +0,0 @@ - - -minetest.mod(function(mod) - require('damage').init() -end) diff --git a/mods/lord/Core/damage/license.md b/mods/lord/Core/damage/license.md deleted file mode 100644 index 02dd26a45..000000000 --- a/mods/lord/Core/damage/license.md +++ /dev/null @@ -1,7 +0,0 @@ -Copyright (c) 2022-present [Александр Чибрикин](https://github.com/alek13) & [Lord Team](https://github.com/lord-server/lord?tab=readme-ov-file#contributors--%D1%83%D1%87%D0%B0%D1%81%D1%82%D0%BD%D0%B8%D0%BA%D0%B8) - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/mods/lord/Core/damage/mod.conf b/mods/lord/Core/damage/mod.conf deleted file mode 100644 index 3564b969d..000000000 --- a/mods/lord/Core/damage/mod.conf +++ /dev/null @@ -1,2 +0,0 @@ -name = damage -depends = builtin_ext, base_classes diff --git a/mods/lord/Core/damage/src/damage.lua b/mods/lord/Core/damage/src/damage.lua deleted file mode 100644 index 77fce32f8..000000000 --- a/mods/lord/Core/damage/src/damage.lua +++ /dev/null @@ -1,15 +0,0 @@ -local api = require("damage.api") - - -damage = {} -- luacheck: ignore unused global variable damage - -local function register_api() - _G.damage = api -end - - -return { - init = function() - register_api() - end, -} diff --git a/mods/lord/Core/damage/src/damage/Event.lua b/mods/lord/Core/damage/src/damage/Event.lua deleted file mode 100644 index 57e0b11c1..000000000 --- a/mods/lord/Core/damage/src/damage/Event.lua +++ /dev/null @@ -1,19 +0,0 @@ ---- @alias damage.callbacks.OnDamage fun(player:Player,amount:number,reason:PlayerHPChangeReason,damage_type:string) - ---- @class damage.Event: base_classes.Event ---- @field on fun(self:self,event:string|damage.Event.Type): fun(callback:damage.callbacks.OnDamage) ---- @field trigger fun(self:self,event:string|damage.Event.Type, ...): void -local Event = base_classes.Event:extended() - ---- @class damage.Event.Type -Event.Type = { - on_damage = "on_damage", -} ---- @type table -Event.subscribers = { - --- @type damage.callbacks.OnDamage[] - on_damage = {}, -} - - -return Event diff --git a/mods/lord/Core/damage/src/damage/Periodical.lua b/mods/lord/Core/damage/src/damage/Periodical.lua deleted file mode 100644 index a57b514a0..000000000 --- a/mods/lord/Core/damage/src/damage/Periodical.lua +++ /dev/null @@ -1,75 +0,0 @@ -local pairs, os_time, setmetatable - = pairs, os.time, setmetatable - ---- @class damage.Periodical.Active ---- @field value string delta value, that will be applied every second. ---- @field till number time when periodical damage will be stopped. ---- @field reason PlayerHPChangeReason reason, which will be passed into `player:set_hp()` - ---- Local storage of now active damages for players. ---- @type damage.Periodical.Active[string][string] -local active_for = { - -- [player_name] = { fleshy = { value = -7, till =